Move can_box to tui_gen_win_info
[deliverable/binutils-gdb.git] / gdb / ChangeLog
... / ...
CommitLineData
12019-12-11 Tom Tromey <tom@tromey.com>
2
3 * tui/tui-data.h (struct tui_gen_win_info) <can_box>: New method.
4 (struct tui_win_info) <can_box>: Update.
5
62019-12-11 Tom Tromey <tom@tromey.com>
7
8 * tui/tui-stack.h (struct tui_locator_window) <max_height>: New
9 method.
10 * tui/tui-regs.h (struct tui_data_item_window) <max_height>: New
11 method.
12 * tui/tui-data.h (struct tui_gen_win_info) <max_height>: New
13 method.
14 (struct tui_win_info) <max_height>: Now override.
15
162019-12-11 Joel Brobecker <brobecker@adacore.com>
17
18 * NEWS: Create a new section for the next release branch.
19 Rename the section of the current branch, now that it has
20 been cut.
21
222019-12-11 Joel Brobecker <brobecker@adacore.com>
23
24 GDB 9 branch created (27f7b2f64062ac9e52afc60509263c2702a9ebd0):
25 * version.in: Bump version to 10.0.50.DATE-git.
26
272019-12-11 Tom Tromey <tromey@adacore.com>
28
29 PR build/25268:
30 * gdbsupport/thread-pool.c (set_thread_name): New function.
31 (thread_pool::set_thread_count): Don't call pthread_setname_np.
32 (thread_pool::thread_function): Call set_thread_name.
33
342019-12-11 Tom Tromey <tromey@adacore.com>
35
36 * fbsd-tdep.c (fbsd_core_info_proc_status): Cast result of
37 bfd_get_signed_8.
38
392019-12-11 Philippe Waroquiers <philippe.waroquiers@skynet.be>
40
41 * NEWS: Document -raw-values option and the related setting commands.
42 * printcmd.c (print_command_parse_format): Do not set opts->raw off,
43 only set it on when /r is given.
44 * valprint.c (value_print_option_defs): New element raw-values.
45 * Makefile.in: Add the new file.
46
472019-12-10 Christian Biesinger <cbiesinger@google.com>
48
49 * gdbsupport/safe-strerror.c: Supress the unused function warning
50 for select_strerror_r.
51
522019-12-10 Christian Biesinger <cbiesinger@google.com>
53
54 * config.in: Regenerate.
55 * configure: Regenerate.
56 * gdbsupport/agent.c (gdb_connect_sync_socket): Call
57 safe_strerror instead of strerror.
58 * gdbsupport/common.m4: Don't check for strerror.
59 * gdbsupport/safe-strerror.c: Support both the glibc version
60 of strerror_r and the XSI version.
61
622019-12-10 Tom Tromey <tromey@adacore.com>
63
64 * ada-typeprint.c (print_choices): Use a single "?".
65 (print_variant_part): Print "?" if the discriminant name
66 is not known.
67
682019-12-10 George Barrett <bob@bob131.so>
69
70 Fix scripted probe breakpoints.
71 * breakpoint.c (tracepoint_probe_breakpoint_ops): Move
72 declaration forward.
73 (breakpoint_ops_for_event_location_type)
74 (breakpoint_ops_for_event_location): Add function definitions.
75 (break_command_1, trace_command): Use
76 breakpoint_ops_for_event_location.
77 * breakpoint.h (breakpoint_ops_for_event_location): Add function
78 declarations.
79 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Use
80 breakpoint_ops_for_event_location.
81 * python/py-breakpoint.c (bppy_init): Use
82 breakpoint_ops_for_event_location.
83
842019-12-09 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
85
86 * gdbtypes.c (rank_one_type): Return INCOMPATIBLE_TYPE_BADNESS
87 when ranking an lvalue argument for an rvalue parameter.
88
892019-12-08 Wataru Ashihara <wataash@wataash.com>
90
91 * darwin-nat.c (darwin_nat_target::create_inferior): Fix
92 template argument for scoped_restore_tmpl from bool to int.
93
942019-12-07 Keith Seitz <keiths@redhat.com>
95
96 * build-id.c (build_id_bfd_get): Permit bfd_core, too.
97 (build_id_to_debug_bfd): Make static, rewriting to use
98 build_id_to_bfd_suffix.
99 (build_id_to_bfd_suffix): Copy of build_id_to_debug_bfd,
100 adding `suffix' parameter. Append SUFFIX to file names
101 when searching for matching files.
102 (build_id_to_debug_bfd): Use build_id_to_bfd_suffix.
103 (build_id_to_exec_bfd): Likewise.
104 * build-id.h (build_id_to_debug_bfd): Clarify that function
105 searches for BFD of debug info file.
106 (build_id_to_exec_bfd): Declare.
107 * corelow.c: Include build-id.h.
108 (locate_exec_from_corefile_build_id): New function.
109 (core_target_open): If no executable BFD is found,
110 search for a core file BFD using build-id.
111
1122019-12-06 Christian Biesinger <cbiesinger@google.com>
113
114 * bcache.c: Put in namespace gdb.
115 * bcache.h: Likewise.
116 * gdbtypes.c (check_types_worklist): Update.
117 (types_deeply_equal): Update.
118 * macrotab.c (struct macro_table) <bcache>: Update.
119 (new_macro_table): Update.
120 * macrotab.h (struct bcache): Put this forward declaration
121 inside namespace gdb.
122 (new_macro_table): Update.
123 * objfiles.h (struct objfile_per_bfd_storage) <filename_cache>:
124 Update.
125 <macro_cache>: Update.
126 * psymtab.h: (psymtab_storage) <psymbol_cache>: Update.
127
1282019-12-06 Tom de Vries <tdevries@suse.de>
129
130 PR symtab/24971
131 * block.c (best_symbol, better_symbol): New function.
132 (block_lookup_symbol_primary, block_lookup_symbol): Prefer def over
133 decl.
134
1352019-12-06 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
136
137 * gdbtypes.h: Define the REFERENCE_SEE_THROUGH_BADNESS value.
138 * gdbtypes.c (rank_one_type): Use REFERENCE_SEE_THROUGH_BADNESS
139 for ranking see-through reference cases.
140
1412019-12-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
142 * stack.c (faas_command): Check a command is provided.
143 * thread.c (taas_command, tfaas_command): Likewise.
144
1452019-12-05 Philippe Waroquiers <philippe.waroquiers@skynet.be>
146 * inferior.c (prune_inferiors): Only call delete_inferior,
147 Do not modify the inferior list.
148
1492019-12-05 Simon Marchi <simon.marchi@polymtl.ca>
150
151 * c-exp.y: Update calls to lookup_typename,
152 lookup_signed_typename and lookup_unsigned_typename.
153 * c-lang.c (evaluate_subexp_c): Likewise.
154 * cp-namespace.c (cp_lookup_symbol_imports_or_template):
155 Likewise.
156 * eval.c (binop_promote): Likewise.
157 * gdbtypes.c (lookup_typename): Remove gdbarch parameter.
158 (lookup_unsigned_typename): Likewise.
159 (lookup_signed_typename): Likewise.
160 * gdbtypes.h (lookup_unsigned_typename): Likewise.
161 (lookup_signed_typename): Likewise.
162 (lookup_typename): Likewise.
163 * guile/scm-type.c (tyscm_lookup_typename): Update calls to
164 lookup_typename, lookup_signed_typename,
165 lookup_unsigned_typename.
166 * m2-exp.y: Likewise.
167 * printcmd.c (printf_wide_c_string): Likewise.
168 (ui_printf): Likewise.
169 * python/py-type.c (typy_lookup_typename): Likewise.
170 * python/py-xmethods.c (python_xmethod_worker::invoke):
171 Likewise.
172 * rust-exp.y: Likewise.
173
1742019-12-04 Christian Biesinger <cbiesinger@google.com>
175
176 * configure.nat (obsd64): Add missing files x86-nat.o and
177 nat/x86-dregs.o.
178
1792019-12-04 Tom Tromey <tom@tromey.com>
180
181 * valprint.c (val_print_string): Use metadata_style.
182 * go-valprint.c (print_go_string): Use metadata style.
183 * p-valprint.c (pascal_object_print_static_field): Use metadata
184 style.
185 * cp-valprint.c (cp_print_static_field): Use metadata style.
186
1872019-12-04 Andrew Burgess <andrew.burgess@embecosm.com>
188 Chris January <chris.january@arm.com>
189
190 * f-exp.y (COMPLEX_KEYWORD, SINGLE, DOUBLE, PRECISION): New
191 tokens.
192 (typebase): New patterns for complex, single/double precision, and
193 single/double complex.
194 (f77_keywords): Change token for complex keyword, and add single,
195 double, and precision keywords.
196
1972019-12-04 Simon Marchi <simon.marchi@polymtl.ca>
198
199 * avr-tdep.c (_initialize_avr_tdep): Improve help of command
200 "info io_registers".
201
2022019-12-04 Simon Marchi <simon.marchi@polymtl.ca>
203
204 * regcache.c (cooked_read_test): Initialize thread list of
205 mock_inferior.
206
2072019-12-04 Simon Marchi <simon.marchi@polymtl.ca>
208
209 * aarch64-linux-tdep.c: Remove includes.
210
2112019-12-04 Simon Marchi <simon.marchi@polymtl.ca>
212
213 * aarch64-tdep.c: Remove includes.
214
2152019-12-04 Simon Marchi <simon.marchi@efficios.com>
216
217 * filtered-iterator.h (filtered_iterator) <operator==,
218 operator!=>: Compare wrapped iterators, not wrapped pointers.
219 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
220 unittests/filtered_iterator-selftests.c.
221 * unittests/filtered_iterator-selftests.c: New file.
222
2232019-12-04 Tom Tromey <tromey@adacore.com>
224
225 * gdbtypes.c (create_range_type): Inherit endianity
226 from base type.
227
2282019-12-04 Tom Tromey <tromey@adacore.com>
229
230 * ada-lang.c (decode_constrained_packed_array)
231 (ada_value_assign, value_assign_to_component): Update.
232 * dwarf2loc.c (rw_pieced_value, access_memory)
233 (dwarf2_compile_expr_to_ax): Update.
234 * dwarf2read.c (dwarf2_add_field): Update.
235 * eval.c (evaluate_subexp_standard): Update.
236 * gdbarch.c, gdbarch.h: Rebuild.
237 * gdbarch.sh (bits_big_endian): Remove.
238 * gdbtypes.h (union field_location): Update comment.
239 * target-descriptions.c (make_gdb_type): Update.
240 * valarith.c (value_bit_index): Update.
241 * value.c (struct value) <bitpos>: Update comment.
242 (unpack_bits_as_long, modify_field): Update.
243 * value.h (value_bitpos): Update comment.
244
2452019-12-04 Tom Tromey <tromey@adacore.com>
246
247 * gdbtypes.c (type_byte_order): Move earlier. Assert for unknown
248 endian-ness.
249
2502019-12-04 Tom Tromey <tromey@adacore.com>
251
252 * dwarf2read.c (dwarf2_init_float_type)
253 (dwarf2_init_complex_target_type): Add byte_order parameter.
254 (read_base_type): Compute byte order earlier.
255 * gdbtypes.c (init_float_type): Add byte_order parameter.
256 * gdbtypes.h (init_float_type): Add byte_order parameter.
257
2582019-12-04 Tom Tromey <tromey@adacore.com>
259
260 * unittests/tui-selftests.c: Conditionally include tui-winsource.h.
261
2622019-12-04 Tom Tromey <tromey@adacore.com>
263
264 * dwarf2read.c (process_structure_scope): Initialize
265 "discr_offset".
266
2672019-12-04 Andrew Burgess <andrew.burgess@embecosm.com>
268
269 * mi/mi-symbol-cmds.c (mi_symbol_info): Take extra parameter, and
270 add it into the search spec.
271 (parse_max_results_option): New function.
272 (mi_info_functions_or_variables): Parse -max-results flag and pass
273 it to mi_symbol_info.
274 (mi_cmd_symbol_info_modules): Likewise.
275 (mi_cmd_symbol_info_types): Likewise.
276 * symtab.c (global_symbol_searcher::add_matching_symbols): Change
277 return type to bool, change result container into a set, and don't
278 add new results if we have enough already.
279 (global_symbol_searcher::add_matching_msymbols): Change return
280 type to bool, and don't add new results if we have enough already.
281 (sort_search_symbols_remove_dups): Delete.
282 (global_symbol_searcher::search): Early exit from search loop when
283 we have enough results. Use a std::set to collect the results
284 from calling add_matching_symbols.
285 * symtab.h (global_symbol_searcher) <set_max_seach_results>: New
286 member function.
287 (global_symbol_searcher) <m_max_search_results>: New member
288 variable.
289 (global_symbol_searcher) <add_matching_symbols>: Update header
290 comment and change return type to bool.
291 (global_symbol_searcher) <add_matching_msymbols>: Update header
292 comment and change return type to bool.
293
2942019-12-04 Andrew Burgess <andrew.burgess@embecosm.com>
295
296 * symtab.c (symbol_search::compare_search_syms): Update header
297 comment.
298 (global_symbol_searcher::is_suitable_msymbol): New function.
299 (global_symbol_searcher::expand_symtabs): New function.
300 (global_symbol_searcher::add_matching_symbols): New function.
301 (global_symbol_searcher::add_matching_msymbols): New function.
302 (global_symbol_searcher::search): Move most of the content
303 into the new functions above, and call them as needed.
304 * symtab.h (global_symbol_searcher) <expand_symtabs>: New member
305 function.
306 (global_symbol_searcher) <add_matching_symbols>: New member
307 function.
308 (global_symbol_searcher) <add_matching_msymbols>: New member
309 function.
310 (global_symbol_searcher) <is_suitable_msymbol>: New member
311 function.
312
3132019-12-04 Andrew Burgess <andrew.burgess@embecosm.com>
314
315 * mi/mi-cmds.c (mi_cmds): Add -symbol-info-module-functions and
316 -symbol-info-module-variables entries.
317 * mi/mi-cmds.h (mi_cmd_symbol_info_module_functions): Declare.
318 (mi_cmd_symbol_info_module_variables): Declare.
319 * mi/mi-symbol-cmds.c
320 (module_symbol_search_iterator): New typedef.
321 (output_module_symbols_in_single_module_and_file): New function.
322 (output_module_symbols_in_single_module): New function.
323 (mi_info_module_functions_or_variables): New function.
324 (mi_cmd_symbol_info_module_functions): New function.
325 (mi_cmd_symbol_info_module_variables): New function.
326 * NEWS: Mention new MI command.
327
3282019-12-03 Christian Biesinger <cbiesinger@google.com>
329
330 * bcache.c (hash): Remove.
331 (hash_continue): Remove.
332 * bcache.h (hash): Remove.
333 (hash_continue): Remove.
334 (struct bcache) <ctor>: Update.
335 * psymtab.c (psymbol_hash): Update.
336 * stabsread.c (hashname): Update.
337 * utils.h (fast_hash): Add an argument for a start value,
338 defaulting to zero.
339
3402019-12-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
341 * symtab.c (symbol_cache_clear_slot): Move close to cleared type.
342 (destroy_block_symbol_cache): New function.
343 (symbol_cache:~symbol_cache) Call destroy_block_symbol_cache.
344 (resize_symbol_cache): Likewise.
345
3462019-12-02 Tom Tromey <tom@tromey.com>
347
348 * unittests/tui-selftests.c (run_tests): Make conditional.
349 (_initialize_tui_selftest): Make conditional.
350
3512019-12-02 Christian Biesinger <cbiesinger@google.com>
352
353 * aix-thread.c (debug_aix_thread): Change type to bool.
354
3552019-12-02 Luis Machado <luis.machado@linaro.org>
356
357 * infrun.c (follow_fork_inferior): Remove outdated FIXME comment.
358
3592019-12-01 Andrew Burgess <andrew.burgess@embecosm.com>
360
361 * dwarf2read.c (read_tag_string_type): Read the fields required to
362 make a dynamic string, and possibly create a dynamic range for the
363 string.
364 (attr_to_dynamic_prop): Setup is_reference based on the type of
365 attribute being processed.
366 * gdbtypes.c (is_dynamic_type_internal): Handle TYPE_CODE_STRING.
367 (resolve_dynamic_array): Rename to...
368 (resolve_dynamic_array_or_string): ...this, update header comment,
369 and accept TYPE_CODE_STRING.
370 (resolve_dynamic_type_internal): Handle TYPE_CODE_STRING.
371
3722019-12-01 Andrew Burgess <andrew.burgess@embecosm.com>
373
374 * dwarf2read.c (dwarf2_per_cu_int_type): New function, takes most
375 of its implementation from...
376 (dwarf2_per_cu_addr_sized_int_type): ...here, which now just calls
377 the new function.
378
3792019-12-01 Andrew Burgess <andrew.burgess@embecosm.com>
380
381 * dwarf2read.c (read_subrange_type): Read bit and byte stride and
382 create a range with stride where appropriate.
383 * f-valprint.c: Include 'gdbarch.h'.
384 (f77_print_array_1): Take the stride into account when walking the
385 array. Also convert the stride into addressable units.
386 * gdbtypes.c (create_range_type): Initialise the stride to
387 constant zero.
388 (create_range_type_with_stride): New function, initialise the
389 range as normal, and then setup the stride.
390 (has_static_range): Include the stride here. Also change the
391 return type to bool.
392 (create_array_type_with_stride): Consider the range stride if the
393 array isn't given its own stride.
394 (resolve_dynamic_range): Resolve the stride if needed.
395 * gdbtypes.h (struct range_bounds) <stride>: New member variable.
396 (struct range_bounds) <flag_is_byte_stride>: New member variable.
397 (TYPE_BIT_STRIDE): Define.
398 (TYPE_ARRAY_BIT_STRIDE): Define.
399 (create_range_type_with_stride): Declare.
400 * valarith.c (value_subscripted_rvalue): Take range stride into
401 account when walking the array.
402
4032019-12-01 Tom Tromey <tom@tromey.com>
404
405 * tui/tui-win.c (tui_all_windows_info): Treat inactive TUI
406 specially.
407
4082019-12-01 Tom Tromey <tom@tromey.com>
409
410 * tui/tui-winsource.c (tui_copy_source_line): Don't advance past
411 \0.
412 * unittests/tui-selftests.c: New file.
413 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add tui-selftests.c.
414
4152019-12-01 Tom Tromey <tom@tromey.com>
416
417 * tui/tui.c (tui_enable): Call tui_update_variables earlier.
418
4192019-12-01 Tom Tromey <tom@tromey.com>
420
421 * NEWS: Document new settings.
422 * tui/tui-wingeneral.c (box_win): Apply appropriate border style.
423 * tui/tui-win.c (_initialize_tui_win): Add border style
424 observers.
425 * tui/tui-io.h (tui_apply_style): Declare.
426 * tui/tui-io.c (tui_apply_style): Rename from apply_style. No
427 longer static.
428 (apply_ansi_escape, tui_set_reverse_mode): Update.
429 * cli/cli-style.h (class cli_style_option) <add_setshow_commands>:
430 Add "skip_intensity" parameter.
431 <changed>: New member.
432 <do_set_value>: Declare.
433 (tui_border_style, tui_active_border_style): Declare.
434 * cli/cli-style.c (tui_border_style, tui_active_border_style): New
435 globals.
436 (cli_style_option): Initialize "changed".
437 (cli_style_option::do_set_value): New function.
438 (cli_style_option::add_setshow_commands): Add "skip_intensity"
439 parameter. Update.
440 (STYLE_ADD_SETSHOW_COMMANDS): Add "SKIP" parameter.
441 (_initialize_cli_style): Update. Create TUI border style
442 commands.
443
4442019-12-01 Tom Tromey <tom@tromey.com>
445
446 * tui/tui-winsource.h (tui_copy_source_line): Add "ndigits"
447 parameter.
448 * tui/tui-winsource.c (tui_copy_source_line): Add "ndigits"
449 parameter.
450 * tui/tui-win.h (compact_source): Declare.
451 * tui/tui-win.c (compact_source): New global.
452 (tui_set_compact_source, tui_show_compact_source): New functions.
453 (_initialize_tui_win): Add "compact-source" setting.
454 * tui/tui-source.c (tui_source_window::set_contents): Handle
455 compact_source setting.
456 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
457 * NEWS: Document new setting.
458
4592019-11-30 Tom Tromey <tom@tromey.com>
460
461 * dwarf2read.c (dwarf2_add_field): Include field offset when
462 computing variant part length.
463
4642019-11-30 Philippe Waroquiers <philippe.waroquiers@skynet.be>
465 * NEWS: Mention define-prefix. Tell that command names can now
466 contain a . character.
467
4682019-11-30 Philippe Waroquiers <philippe.waroquiers@skynet.be>
469
470 * command.h (valid_cmd_char_p): Declare.
471 * cli/cli-decode.c (valid_cmd_char_p): New function factorizing
472 the check of valid command char.
473 (find_command_name_length, valid_user_defined_cmd_name_p): Use
474 valid_cmd_char_p.
475 * cli/cli-script.c (validate_comname): Likewise.
476 * completer.c (gdb_completer_command_word_break_characters):
477 Do not remove . from the word break char, update comments.
478 (complete_line_internal_1): Use valid_cmd_char_p.
479 * guile/scm-cmd.c (gdbscm_parse_command_name): Likewise.
480 * python/py-cmd.c (gdbpy_parse_command_name): Likewise.
481
4822019-11-30 Philippe Waroquiers <philippe.waroquiers@skynet.be>
483
484 * cli/cli-script.c (do_define_command): Ensure a redefined
485 prefix command is kept as a prefix command.
486 (define_prefix_command): New function.
487 (show_user_1): Report user defined prefixes.
488 (_initialize_cli_script): Create the new 'define-prefix' command.
489 Add completers for 'define' and 'document'.
490 * top.c (execute_command): If command is a user-defined prefix only
491 command, report the list of commands for this prefix command.
492
4932019-11-29 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
494
495 * valops.c (find_oload_champ): Improve debug output.
496
4972019-11-29 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
498
499 * valops.c (find_oload_champ): Print part of debug messages
500 before the badness vector is std::move'd.
501
5022019-11-28 Tom Tromey <tom@tromey.com>
503
504 * value.c (creal_internal_fn): Fix comment.
505
5062019-11-28 Tom Tromey <tom@tromey.com>
507
508 * gdbtypes.h (struct range_bounds) <flag_upper_bound_is_count,
509 flag_bound_evaluated>: Now unsigned.
510
5112019-11-28 Tom Tromey <tom@tromey.com>
512
513 * guile/guile-internal.h (vlscm_scm_from_value_unsafe): Don't
514 declare.
515
5162019-11-28 Mihails Strasuns <mihails.strasuns@intel.com>
517
518 * jit.c (jit_bfd_try_read_symtab): Fix printed function name in the
519 debug output.
520 * jit.c (jit_unregister_code): Add debug print to match
521 `jit_register_code`.
522
5232019-11-27 Christian Biesinger <cbiesinger@google.com>
524
525 * NEWS: Mention the new multithreaded symbol loading.
526
5272019-11-27 Christian Biesinger <cbiesinger@google.com>
528
529 * maint.c (n_worker_threads): Default to 0.
530 (worker_threads_disabled): New function.
531 * maint.h (worker_threads_disabled): New function.
532 * minsyms.c (minimal_symbol_reader::record_full): Call symbol_set_names
533 here if worker_threads_disabled () is true.
534 (minimal_symbol_reader::install): Skip all threading if
535 worker_threads_disabled () is true.
536
5372019-11-27 Christian Biesinger <cbiesinger@google.com>
538
539 * minsyms.c (add_minsym_to_hash_table): Use a previously computed
540 hash code if possible.
541 (add_minsym_to_demangled_hash_table): Likewise.
542 (minimal_symbol_reader::install): Compute the hash codes for msymbol
543 on the background thread.
544 * symtab.h (struct minimal_symbol) <hash_value, demangled_hash_value>:
545 Add these fields.
546
5472019-11-27 Christian Biesinger <cbiesinger@google.com>
548
549 * minsyms.c (minimal_symbol_reader::install): Also compute the hash
550 of the mangled name on the background thread.
551 * symtab.c (symbol_set_names): Allow passing in the hash of the
552 linkage_name.
553 * symtab.h (symbol_set_names): Likewise.
554
5552019-11-27 Kevin Buettner <kevinb@redhat.com>
556
557 * dwarf2read.c (inherit_abstract_dies): Ensure that delayed
558 physnames are computed for inherited DIEs.
559
5602019-11-27 Tom Tromey <tromey@adacore.com>
561
562 * dwarf2read.h (struct dwarf2_per_objfile): Remove unnecessary
563 backslashes.
564 * cp-support.c: Remove unnecessary backslashes.
565
5662019-11-27 Christian Biesinger <cbiesinger@google.com>
567
568 * ada-exp.y (write_ambiguous_var): Replace SYMBOL_SET_LINKAGE_NAME
569 with sym->set_linkage_name.
570 * coffread.c (coff_read_enum_type): Likewise.
571 * mdebugread.c (parse_symbol): Likewise.
572 * stabsread.c (patch_block_stabs): Likewise.
573 (define_symbol): Likewise.
574 (read_enum_type): Likewise.
575 (common_block_end): Likewise.
576 * symtab.h (struct general_symbol_info) <set_linkage_name>: New
577 function.
578 (SYMBOL_SET_LINKAGE_NAME): Remove.
579 * xcoffread.c (process_xcoff_symbol): Replace SYMBOL_SET_LINKAGE_NAME
580 with sym->set_linkage_name.
581
5822019-11-27 Andrew Burgess <andrew.burgess@embecosm.com>
583
584 * mi/mi-cmds.c (mi_cmds): Add 'symbol-info-modules' entry.
585 * mi/mi-cmds.h (mi_cmd_symbol_info_modules): Declare.
586 * mi/mi-symbol-cmds.c (mi_cmd_symbol_info_modules): New function.
587 * NEWS: Mention new MI command.
588
5892019-11-27 Andrew Burgess <andrew.burgess@embecosm.com>
590
591 * mi/mi-cmds.c (mi_cmds): Add '-symbol-info-functions',
592 '-symbol-info-types', and '-symbol-info-variables'.
593 * mi/mi-cmds.h (mi_cmd_symbol_info_functions): Declare.
594 (mi_cmd_symbol_info_types): Declare.
595 (mi_cmd_symbol_info_variables): Declare.
596 * mi/mi-symbol-cmds.c: Add 'source.h' and 'mi-getopt.h' includes.
597 (output_debug_symbol): New function.
598 (output_nondebug_symbol): New function.
599 (mi_symbol_info): New function.
600 (mi_info_functions_or_variables): New function.
601 (mi_cmd_symbol_info_functions): New function.
602 (mi_cmd_symbol_info_types): New function.
603 (mi_cmd_symbol_info_variables): New function.
604 * NEWS: Mention new commands.
605
6062019-11-27 Andrew Burgess <andrew.burgess@embecosm.com>
607
608 * symtab.c (symbol_to_info_string): New function, most content
609 moved from print_symbol_info, but updated to return a std::string.
610 (print_symbol_info): Update to use symbol_to_info_string and print
611 returned string.
612 * symtab.h (symbol_to_info_string): Declare new function.
613
6142019-11-27 Andrew Burgess <andrew.burgess@embecosm.com>
615
616 * python/python.c (gdbpy_rbreak): Convert to using
617 global_symbol_searcher.
618 * symtab.c (file_matches): Convert return type to bool, change
619 file list to std::vector, update header comment.
620 (search_symbols): Rename to...
621 (global_symbol_searcher::search): ...this and update now its
622 a member function of global_symbol_searcher. Take account of the
623 changes to file_matches.
624 (symtab_symbol_info): Convert to using global_symbol_searcher.
625 (rbreak_command): Likewise.
626 (search_module_symbols): Likewise.
627 * symtab.h (enum symbol_search): Update comment.
628 (search_symbols): Remove declaration.
629 (class global_symbol_searcher): New class.
630
6312019-11-26 Tom Tromey <tromey@adacore.com>
632
633 * cp-support.c (_initialize_cp_support): Conditionally initialize
634 gdb_demangle_attempt_core_dump.
635
6362019-11-26 Tom Tromey <tom@tromey.com>
637
638 * python/py-function.c (fnpy_init): Update.
639 * value.h (add_internal_function): Adjust declaration.
640 * value.c (function_destroyer): Remove.
641 (do_add_internal_function): Don't set destroyer or copy name.
642 (add_internal_function): Take unique_xmalloc_ptr<char> for name.
643 Set name_allocated.
644 * python/py-cmd.c (cmdpy_destroyer): Don't free "name".
645 (cmdpy_init): Set name_allocated.
646 * cli/cli-decode.h (struct cmd_list_element) <name_allocated>: New
647 member.
648 (~cmd_list_element): Free "name" if needed.
649
6502019-11-26 Tom Tromey <tom@tromey.com>
651
652 * value.h (add_internal_function): Add new overload. Move
653 documentation from value.h.
654 * value.c (do_add_internal_function): New function.
655 (add_internal_function): Use it. Add new overload.
656 (function_destroyer): Don't free doc.
657 * python/py-function.c (fnpy_init): Update.
658
6592019-11-26 Tom Tromey <tom@tromey.com>
660
661 * python/py-cmd.c (cmdpy_destroyer): Don't free "doc".
662 (cmdpy_init): Set "doc_allocated".
663
6642019-11-26 Tom Tromey <tom@tromey.com>
665
666 * gdbsupport/thread-pool.c (thread_pool::set_thread_count): Set
667 name of worker thread.
668 * gdbsupport/common.m4 (GDB_AC_COMMON): Check for
669 pthread_setname_np.
670 * configure, config.in: Rebuild.
671
6722019-11-26 Tom Tromey <tom@tromey.com>
673
674 * python/python.c (class gdbpy_gil): New.
675 (struct gdbpy_event): Add constructor, destructor, operator().
676 (gdbpy_post_event): Use run_on_main_thread.
677 (gdbpy_initialize_events): Remove.
678 (do_start_initialization): Update.
679
6802019-11-26 Tom Tromey <tom@tromey.com>
681
682 * NEWS: Add entry.
683 * maint.c (_initialize_maint_cmds): Add "worker-threads" maint
684 commands. Call update_thread_pool_size.
685 (update_thread_pool_size, maintenance_set_worker_threads): New
686 functions.
687 (n_worker_threads): New global.
688
6892019-11-26 Christian Biesinger <cbiesinger@google.com>
690 Tom Tromey <tom@tromey.com>
691
692 * minsyms.c (minimal_symbol_reader::install): Use
693 parallel_for_each.
694 * gdbsupport/parallel-for.h: New file.
695 * Makefile.in (HFILES_NO_SRCDIR): Add gdbsupport/parallel-for.h.
696
6972019-11-26 Christian Biesinger <cbiesinger@google.com>
698 Tom Tromey <tom@tromey.com>
699
700 * gdbsupport/thread-pool.h: New file.
701 * gdbsupport/thread-pool.c: New file.
702 * Makefile.in (COMMON_SFILES): Add thread-pool.c.
703 (HFILES_NO_SRCDIR): Add thread-pool.h.
704
7052019-11-26 Tom Tromey <tom@tromey.com>
706
707 * event-top.h (thread_local_segv_handler): Declare.
708 * event-top.c (thread_local_segv_handler): New global.
709 (install_handle_sigsegv, handle_sigsegv): New functions.
710 (async_init_signals): Install SIGSEGV handler.
711 * cp-support.c (gdb_demangle_jmp_buf): Change type. Now
712 thread-local.
713 (report_failed_demangle): New function.
714 (gdb_demangle): Make core_dump_allowed atomic. Remove signal
715 handler-setting code, instead use segv_handler. Run warning code
716 on main thread.
717
7182019-11-26 Tom Tromey <tom@tromey.com>
719
720 * run-on-main-thread.c: New file.
721 * run-on-main-thread.h: New file.
722 * unittests/main-thread-selftests.c: New file.
723 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
724 main-thread-selftests.c.
725 (HFILES_NO_SRCDIR): Add run-on-main-thread.h.
726 (COMMON_SFILES): Add run-on-main-thread.c.
727
7282019-11-26 Tom Tromey <tom@tromey.com>
729
730 * main.c (setup_alternate_signal_stack): Remove.
731 (captured_main_1): Use gdb::alternate_signal_stack.
732 * gdbsupport/alt-stack.h: New file.
733
7342019-11-26 Tom Tromey <tom@tromey.com>
735
736 * gdbsupport/signals-state-save-restore.c (original_signal_mask):
737 Remove comment.
738 (save_original_signals_state, restore_original_signals_state): Use
739 gdb_sigmask.
740 * linux-nat.c (block_child_signals, restore_child_signals_mask)
741 (_initialize_linux_nat): Use gdb_sigmask.
742 * guile/guile.c (_initialize_guile): Use block_signals.
743 * Makefile.in (HFILES_NO_SRCDIR): Add gdb-sigmask.h.
744 * gdbsupport/gdb-sigmask.h: New file.
745 * event-top.c (async_sigtstp_handler): Use gdb_sigmask.
746 * cp-support.c (gdb_demangle): Use gdb_sigmask.
747 * gdbsupport/common.m4 (GDB_AC_COMMON): Check for
748 pthread_sigmask.
749 * configure, config.in: Rebuild.
750 * gdbsupport/block-signals.h: New file.
751
7522019-11-26 Tom Tromey <tom@tromey.com>
753
754 * acinclude.m4: Include ax_pthread.m4.
755 * Makefile.in (PTHREAD_CFLAGS, PTHREAD_LIBS): New variables.
756 (INTERNAL_CFLAGS_BASE): Use PTHREAD_CFLAGS.
757 (CLIBS): Use PTHREAD_LIBS.
758 (aclocal_m4_deps): Add ax_pthread.m4.
759 * config.in, configure: Rebuild.
760 * gdbsupport/common.m4 (GDB_AC_COMMON): Check for std::thread.
761
7622019-11-26 Tom Tromey <tom@tromey.com>
763
764 * symtab.h (struct minimal_symbol) <name_set>: New member.
765 * minsyms.c (minimal_symbol_reader::record_full): Copy name.
766 Don't call symbol_set_names.
767 (minimal_symbol_reader::install): Call symbol_set_names.
768
7692019-11-26 Philippe Waroquiers <philippe.waroquiers@skynet.be>
770
771 * python/python.c (gdbpy_enter::~gdbpy_enter): Release GIL after
772 restore_active_ext_lang, as GIL is needed for (indirectly)
773 called PyOS_InterruptOccurred.
774
7752019-11-26 Simon Marchi <simon.marchi@efficios.com>
776
777 * sparc-nat.c (sparc_xfer_wcookie): Sync declaration with
778 definition.
779
7802019-11-26 Simon Marchi <simon.marchi@efficios.com>
781
782 * remote-sim.c (simulator_command): Make static, remove
783 declaration.
784
7852019-11-26 Simon Marchi <simon.marchi@efficios.com>
786
787 * unittests/array-view-selftests.c (check_ptr_size_ctor2): Make
788 static.
789 * unittests/basic_string_view/capacity/1.cc (test01): Likewise.
790 * unittests/basic_string_view/cons/char/1.cc (test01): Likewise.
791 (main): Likewise.
792 * unittests/basic_string_view/cons/char/2.cc (test03): Likewise.
793 (main): Likewise.
794 * unittests/basic_string_view/cons/char/3.cc (test05): Likewise.
795 (main): Likewise.
796 * unittests/basic_string_view/element_access/char/1.cc (test01):
797 Likewise.
798 (main): Likewise.
799 * unittests/basic_string_view/element_access/char/empty.cc (main):
800 Likewise.
801 * unittests/basic_string_view/element_access/char/front_back.cc
802 (test01): Likewise.
803 (main): Likewise.
804 * unittests/basic_string_view/inserters/char/2.cc (test05):
805 Likewise.
806 (main): Likewise.
807 * unittests/basic_string_view/modifiers/remove_prefix/char/1.cc
808 (test01): Likewise.
809 (main): Likewise.
810 * unittests/basic_string_view/modifiers/remove_suffix/char/1.cc
811 (test01): Likewise.
812 (main): Likewise.
813 * unittests/basic_string_view/modifiers/swap/char/1.cc (test01):
814 Likewise.
815 * unittests/basic_string_view/operations/compare/char/1.cc
816 (test01): Likewise.
817 (main): Likewise.
818 * unittests/basic_string_view/operations/compare/char/13650.cc
819 (test01): Likewise.
820 * unittests/basic_string_view/operations/copy/char/1.cc (test01):
821 Likewise.
822 (main): Likewise.
823 * unittests/basic_string_view/operations/data/char/1.cc (test01):
824 Likewise.
825 (main): Likewise.
826 * unittests/basic_string_view/operations/find/char/1.cc (test01):
827 Likewise.
828 (main): Likewise.
829 * unittests/basic_string_view/operations/find/char/2.cc (test02):
830 Likewise.
831 (main): Likewise.
832 * unittests/basic_string_view/operations/find/char/3.cc (test03):
833 Likewise.
834 (main): Likewise.
835 * unittests/basic_string_view/operations/find/char/4.cc (main):
836 Likewise.
837 * unittests/basic_string_view/operations/rfind/char/1.cc (test01):
838 Likewise.
839 (main): Likewise.
840 * unittests/basic_string_view/operations/rfind/char/2.cc (test02):
841 Likewise.
842 (main): Likewise.
843 * unittests/basic_string_view/operations/rfind/char/3.cc (test03):
844 Likewise.
845 (main): Likewise.
846 * unittests/basic_string_view/operations/substr/char/1.cc
847 (test01): Likewise.
848 (main): Likewise.
849 * unittests/basic_string_view/operators/char/2.cc (main):
850 Likewise.
851 * unittests/optional/assignment/1.cc (test): Likewise.
852 * unittests/optional/assignment/2.cc (test): Likewise.
853 * unittests/optional/assignment/3.cc (test): Likewise.
854 * unittests/optional/assignment/4.cc (test): Likewise.
855 * unittests/optional/assignment/5.cc (test): Likewise.
856 * unittests/optional/assignment/6.cc (test): Likewise.
857 * unittests/optional/assignment/7.cc (test): Likewise.
858 * unittests/optional/cons/copy.cc (test): Likewise.
859 * unittests/optional/cons/default.cc (test): Likewise.
860 * unittests/optional/cons/move.cc (test): Likewise.
861 * unittests/optional/cons/value.cc (test): Likewise.
862 * unittests/optional/in_place.cc (test): Likewise.
863 * unittests/optional/observers/1.cc (test): Likewise.
864 * unittests/optional/observers/2.cc (test): Likewise.
865
8662019-11-26 Simon Marchi <simon.marchi@efficios.com>
867
868 * tui-win.h (tui_set_var_cmd): Remove.
869 * tui-win.c (tui_set_var_cmd): Make static.
870
8712019-11-26 Simon Marchi <simon.marchi@efficios.com>
872
873 * breakpoint.h (hbreak_command_wrapper, thbreak_command_wrapper,
874 rbreak_command_wrapper): Remove.
875 * symtab.c (rbreak_command_wrapper): Remove.
876
8772019-11-26 Simon Marchi <simon.marchi@efficios.com>
878
879 * inferior.h (info_terminal_command): Remove declaration.
880 * inflow.c (info_terminal_command): Make static.
881
8822019-11-26 Simon Marchi <simon.marchi@efficios.com>
883
884 * inferior.c (exit_inferior_silent): Remove.
885
8862019-11-26 Simon Marchi <simon.marchi@efficios.com>
887
888 * dictionary.c (dict_empty, mdict_empty): Remove.
889 * dictionary.c (mdict_empty): Remove.
890
8912019-11-26 Simon Marchi <simon.marchi@efficios.com>
892
893 * arc-tdep.c (arc_insn_get_memory_base_reg): Make static.
894 (arc_insn_get_memory_offset): Likewise.
895 (arc_insn_dump): Likewise.
896 * cp-support.c (test_cp_symbol_name_matches): Likewise.
897 * csky-linux-tdep.c (csky_supply_fregset): Likewise.
898 * dictionary.c (dict_iterator_next): Likewise.
899 (dict_iter_match_first): Likewise.
900 (dict_iter_match_next): Likewise.
901 * f-lang.c (evaluate_subexp_f): Likewise.
902 * hppa-tdep.c (hppa_read_pc): Likewise.
903 * i386-tdep.c (i386_floatformat_for_type): Likewise.
904 * parse.c (write_exp_elt_msym): Likewise.
905 * ppc-linux-tdep.c (ppc_floatformat_for_type): Likewise.
906 * remote.c (remote_packet_size): Likewise.
907 (remote_notif_stop_parse): Likewise.
908 * rs6000-aix-tdep.c (aix_sighandle_frame_sniffer): Likewise.
909 * s12z-tdep.c (s12z_disassemble_info): Likewise.
910 * source.c (prepare_path_for_appending): Likewise.
911 * sparc64-linux-tdep.c
912 (sparc64_linux_handle_segmentation_fault); Likewise.
913 * stack.c (frame_selection_by_function_completer): Likewise.
914
9152019-11-26 Simon Marchi <simon.marchi@efficios.com>
916
917 * completer.c (set_gdb_completion_word_break_characters):
918 Remove.
919
9202019-11-26 Simon Marchi <simon.marchi@efficios.com>
921
922 * dwarf-index-write.c: Include dwarf-index-write.h.
923 * mi/mi-interp.c: Include mi/mi-interp.h.
924
9252019-11-26 Simon Marchi <simon.marchi@efficios.com>
926
927 * aarch32-tdep.c: Include aarch32-tdep.h.
928 * aarch32-tdep.h: Forward-declare struct target_desc.
929
9302019-11-26 Christian Biesinger <cbiesinger@google.com>
931
932 * linux-nat.c (detach_one_lwp): Call safe_strerror instead of
933 strerror.
934 * nto-procfs.c (nto_procfs_target::create_inferior): Likewise.
935 * windows-nat.c (windows_nat_target::create_inferior): Likewise.
936
9372019-11-25 Tom de Vries <tdevries@suse.de>
938
939 * contrib/words.sh: Add -c option.
940
9412019-11-25 Christian Biesinger <cbiesinger@google.com>
942
943 * solib.c (solib_find_1): Change int to bool.
944 (exec_file_find): Change int to bool.
945 (solib_find): Change int to bool.
946 (solib_read_symbols): Change int to bool.
947 (solib_used): Change int to bool.
948 (solib_add): Change int to bool.
949 (info_sharedlibrary_command): Change int to bool.
950 (solib_contains_address_p): Change int to bool.
951 (solib_keep_data_in_core): Change int to bool.
952 (in_solib_dynsym_resolve_code): Change int to bool.
953 (reload_shared_libraries_1): Change int to bool.
954 (gdb_sysroot_changed): Change int to bool.
955 * solib.h (solib_read_symbols): Change int to bool.
956 (solib_contains_address_p): Change int to bool.
957 (solib_keep_data_in_core): Change int to bool.
958 (in_solib_dynsym_resolve_code): Change int to bool.
959 (libpthread_name_p): Change int to bool.
960
9612019-11-25 Luis Machado <luis.machado@linaro.org>
962
963 * NEWS (New Commands): Mention "set debug remote-packet-max-chars".
964 * remote.c (REMOTE_DEBUG_MAX_CHAR): Remove.
965 (remote_packet_max_chars): New static global.
966 (show_remote_packet_max_chars): New function.
967 (remote_target::putpkt_binary): Adjust to use new
968 remote_packet_max_chars option.
969 (remote_target::getpkt_or_notif_sane_1): Likewise.
970 (_initialize_remote): Register new remote-packet-max-chars option.
971
9722019-11-24 Simon Marchi <simon.marchi@efficios.com>
973
974 * m68k-linux-nat.c: Include gdbarch.h.
975
9762019-11-24 Tom Tromey <tom@tromey.com>
977
978 * symfile.c (read_symbols): Update.
979 * psymtab.c (require_partial_symbols): Change type of "verbose" to
980 bool.
981 (psym_map_symtabs_matching_filename, find_pc_sect_psymtab)
982 (psym_lookup_symbol, psym_find_last_source_symtab)
983 (psym_forget_cached_source_info, psym_print_stats)
984 (psym_expand_symtabs_for_function, psym_expand_all_symtabs)
985 (psym_expand_symtabs_with_fullname, psym_map_symbol_filenames)
986 (psym_map_matching_symbols, psym_expand_symtabs_matching)
987 (psym_find_compunit_symtab_by_address)
988 (maintenance_print_psymbols, maintenance_info_psymtabs)
989 (maintenance_check_psymtabs): Update.
990 * psymtab.h (require_partial_symbols): Change type of "verbose" to
991 bool.
992
9932019-11-22 Tom Tromey <tom@tromey.com>
994
995 * observable.h: Update comments.
996
9972019-11-22 Tom Tromey <tromey@adacore.com>
998
999 * ada-tasks.c (ada_task_is_alive): Make parameter const.
1000 (print_ada_task_info): Don't try to fetch thread id if task is not
1001 alive.
1002
10032019-11-22 Christian Biesinger <cbiesinger@google.com>
1004
1005 * ada-exp.y: Update.
1006 * ada-lang.c (sort_choices): Update.
1007 (ada_print_symbol_signature): Update.
1008 (resolve_subexp): Update.
1009 (ada_parse_renaming): Update.
1010 (ada_read_renaming_var_value): Update.
1011 (lesseq_defined_than): Update.
1012 (remove_extra_symbols): Update.
1013 (remove_irrelevant_renamings): Update.
1014 (ada_add_block_symbols): Update.
1015 (ada_collect_symbol_completion_matches): Update.
1016 (ada_is_renaming_symbol): Update.
1017 (aggregate_assign_from_choices): Update.
1018 (ada_evaluate_subexp): Update.
1019 (ada_has_this_exception_support): Update.
1020 (ada_is_non_standard_exception_sym): Update.
1021 (ada_add_exceptions_from_frame): Update.
1022 (ada_add_global_exceptions): Update.
1023 (ada_print_subexp): Update.
1024 * ax-gdb.c (gen_var_ref): Update.
1025 (gen_maybe_namespace_elt): Update.
1026 (gen_expr_for_cast): Update.
1027 (gen_expr): Update.
1028 * block.h: Update.
1029 * blockframe.c (find_pc_partial_function): Update.
1030 * breakpoint.c (print_breakpoint_location): Update.
1031 (update_static_tracepoint): Update.
1032 * btrace.c (ftrace_print_function_name): Update.
1033 (ftrace_function_switched): Update.
1034 * buildsym.c (find_symbol_in_list): Update.
1035 * c-exp.y: Update.
1036 * c-typeprint.c (c_print_typedef): Update.
1037 (c_type_print_template_args): Update.
1038 * cli/cli-cmds.c (edit_command): Update.
1039 (list_command): Update.
1040 (print_sal_location): Update.
1041 * coffread.c (patch_opaque_types): Update.
1042 (process_coff_symbol): Update.
1043 (coff_read_enum_type): Update.
1044 * compile/compile-c-symbols.c (c_symbol_substitution_name): Update.
1045 (convert_one_symbol): Update.
1046 (hash_symname): Update.
1047 (eq_symname): Update.
1048 * compile/compile-cplus-symbols.c (convert_one_symbol): Update.
1049 * compile/compile-cplus-types.c (debug_print_scope): Update.
1050 * compile/compile-loc2c.c (do_compile_dwarf_expr_to_c): Update.
1051 * compile/compile-object-load.c (get_out_value_type): Update.
1052 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
1053 (search_symbol_list): Update.
1054 (cp_lookup_symbol_imports_or_template): Update.
1055 * cp-support.c (overload_list_add_symbol): Update.
1056 * ctfread.c (psymtab_to_symtab): Update.
1057 * dbxread.c (cp_set_block_scope): Update.
1058 * dictionary.c (iter_match_first_hashed): Update.
1059 (iter_match_next_hashed): Update.
1060 (insert_symbol_hashed): Update.
1061 (iter_match_next_linear): Update.
1062 * dictionary.h: Update.
1063 * dwarf2loc.c (func_get_frame_base_dwarf_block): Update.
1064 (locexpr_describe_location_piece): Update.
1065 (locexpr_describe_location_1): Update.
1066 (locexpr_generate_c_location): Update.
1067 (loclist_describe_location): Update.
1068 (loclist_generate_c_location): Update.
1069 * dwarf2read.c (dw2_debug_names_lookup_symbol): Update.
1070 (read_func_scope): Update.
1071 (process_enumeration_scope): Update.
1072 (new_symbol): Update.
1073 (dwarf2_const_value): Update.
1074 (dwarf2_symbol_mark_computed): Update.
1075 * eval.c (evaluate_funcall): Update.
1076 (evaluate_subexp_standard): Update.
1077 * expprint.c (print_subexp_standard): Update.
1078 (dump_subexp_body_standard): Update.
1079 * f-valprint.c (info_common_command_for_block): Update.
1080 * findvar.c (get_hosting_frame): Update.
1081 (default_read_var_value): Update.
1082 * go-lang.c (go_symbol_package_name): Update.
1083 * guile/scm-block.c (bkscm_print_block_smob): Update.
1084 * guile/scm-symbol.c (syscm_print_symbol_smob): Update.
1085 (gdbscm_symbol_name): Update.
1086 (gdbscm_symbol_linkage_name): Update.
1087 (gdbscm_symbol_print_name): Update.
1088 * infcall.c (get_function_name): Update.
1089 * infcmd.c (jump_command): Update.
1090 (finish_command): Update.
1091 * infrun.c (insert_exception_resume_breakpoint): Update.
1092 * linespec.c (canonicalize_linespec): Update.
1093 (create_sals_line_offset): Update.
1094 (convert_linespec_to_sals): Update.
1095 (complete_label): Update.
1096 (find_label_symbols_in_block): Update.
1097 * m2-typeprint.c (m2_print_typedef): Update.
1098 * mdebugread.c (mdebug_reg_to_regnum): Update.
1099 (parse_symbol): Update.
1100 (mylookup_symbol): Update.
1101 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
1102 (list_args_or_locals): Update.
1103 * objc-lang.c (compare_selectors): Update.
1104 (info_selectors_command): Update.
1105 (compare_classes): Update.
1106 (info_classes_command): Update.
1107 (find_imps): Update.
1108 * p-typeprint.c (pascal_print_typedef): Update.
1109 * printcmd.c (build_address_symbolic): Update.
1110 (info_address_command): Update.
1111 (print_variable_and_value): Update.
1112 * python/py-framefilter.c (extract_sym): Update.
1113 (py_print_single_arg): Update.
1114 * python/py-symbol.c (sympy_str): Update.
1115 (sympy_get_name): Update.
1116 (sympy_get_linkage_name): Update.
1117 * python/python.c (gdbpy_rbreak): Update.
1118 * record-btrace.c (btrace_get_bfun_name): Update.
1119 (btrace_call_history): Update.
1120 * rust-lang.c (rust_print_typedef): Update.
1121 * solib-frv.c (frv_fdpic_find_canonical_descriptor): Update.
1122 * stabsread.c (stab_reg_to_regnum): Update.
1123 (define_symbol): Update.
1124 (read_enum_type): Update.
1125 (common_block_end): Update.
1126 (cleanup_undefined_types_1): Update.
1127 (scan_file_globals): Update.
1128 * stack.c (print_frame_arg): Update.
1129 (print_frame_args): Update.
1130 (find_frame_funname): Update.
1131 (info_frame_command_core): Update.
1132 (iterate_over_block_locals): Update.
1133 (print_block_frame_labels): Update.
1134 (do_print_variable_and_value): Update.
1135 (iterate_over_block_arg_vars): Update.
1136 (return_command): Update.
1137 * symmisc.c (dump_symtab_1): Update.
1138 (print_symbol): Update.
1139 * symtab.c (eq_symbol_entry): Update.
1140 (symbol_cache_dump): Update.
1141 (lookup_language_this): Update.
1142 (find_pc_sect_line): Update.
1143 (skip_prologue_sal): Update.
1144 (symbol_search::compare_search_syms): Update.
1145 (treg_matches_sym_type_name): Update.
1146 (search_symbols): Update.
1147 (print_symbol_info): Update.
1148 (rbreak_command): Update.
1149 (completion_list_add_symbol): Update.
1150 (find_gnu_ifunc): Update.
1151 (get_symbol_address): Update.
1152 (search_module_symbols): Update.
1153 (info_module_subcommand): Update.
1154 * symtab.h (SYMBOL_NATURAL_NAME): Remove.
1155 (SYMBOL_LINKAGE_NAME): Remove.
1156 (SYMBOL_DEMANGLED_NAME): Remove.
1157 (SYMBOL_PRINT_NAME): Remove.
1158 (SYMBOL_SEARCH_NAME): Remove.
1159 * tracepoint.c (set_traceframe_context): Update.
1160 (validate_actionline): Update.
1161 (collection_list::collect_symbol): Update.
1162 (encode_actions_1): Update.
1163 (info_scope_command): Update.
1164 (print_one_static_tracepoint_marker): Update.
1165 * typeprint.c (typedef_hash_table::add_template_parameters): Update.
1166 * valops.c (address_of_variable): Update.
1167 (find_overload_match): Update.
1168 (find_oload_champ): Update.
1169
11702019-11-22 Christian Biesinger <cbiesinger@google.com>
1171
1172 * ada-lang.c (ada_lookup_simple_minsym): Update.
1173 (ada_collect_symbol_completion_matches): Update.
1174 * ada-tasks.c (read_atcb): Update.
1175 * amd64-windows-tdep.c (amd64_skip_main_prologue): Update.
1176 (amd64_windows_skip_trampoline_code): Update.
1177 * arm-tdep.c (skip_prologue_function): Update.
1178 (arm_skip_stack_protector): Update.
1179 * arm-wince-tdep.c (arm_pe_skip_trampoline_code): Update.
1180 (arm_wince_skip_main_prologue): Update.
1181 * ax-gdb.c (gen_expr): Update.
1182 * block.c (call_site_for_pc): Update.
1183 * blockframe.c (find_pc_partial_function): Update.
1184 * breakpoint.c (set_breakpoint_location_function): Update.
1185 * btrace.c (ftrace_print_function_name): Update.
1186 (ftrace_function_switched): Update.
1187 * c-valprint.c (print_unpacked_pointer): Update.
1188 * coffread.c (coff_symfile_read): Update.
1189 * compile/compile-c-symbols.c (convert_symbol_bmsym): Update.
1190 * compile/compile-cplus-symbols.c (convert_symbol_bmsym): Update.
1191 * dwarf-index-write.c (write_psymbols): Update.
1192 * dwarf2loc.c (call_site_to_target_addr): Update.
1193 (func_verify_no_selftailcall): Update.
1194 (tailcall_dump): Update.
1195 (call_site_find_chain_1): Update.
1196 (dwarf_expr_reg_to_entry_parameter): Update.
1197 * elfread.c (elf_gnu_ifunc_record_cache): Update.
1198 * eval.c (evaluate_funcall): Update.
1199 (evaluate_subexp_standard): Update.
1200 (evaluate_subexp_for_sizeof): Update.
1201 * expprint.c (print_subexp_standard): Update.
1202 (dump_subexp_body_standard): Update.
1203 * frame.c (get_prev_frame_always_1): Update.
1204 * frv-tdep.c (frv_skip_main_prologue): Update.
1205 * gnu-v2-abi.c (gnuv2_value_rtti_type): Update.
1206 * gnu-v3-abi.c (gnuv3_rtti_type): Update.
1207 (gnuv3_get_typename_from_type_info): Update.
1208 (gnuv3_skip_trampoline): Update.
1209 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Update.
1210 * i386-tdep.c (i386_skip_main_prologue): Update.
1211 (i386_pe_skip_trampoline_code): Update.
1212 * ia64-tdep.c (ia64_convert_from_func_ptr_addr): Update.
1213 * infcall.c (get_function_name): Update.
1214 * linespec.c (minsym_found): Update.
1215 * linux-fork.c (info_checkpoints_command): Update.
1216 * m32c-tdep.c (m32c_m16c_address_to_pointer): Update.
1217 (m32c_m16c_pointer_to_address): Update.
1218 * maint.c (maintenance_translate_address): Update.
1219 * minsyms.c (add_minsym_to_hash_table): Update.
1220 (add_minsym_to_demangled_hash_table): Update.
1221 (lookup_minimal_symbol_mangled): Update.
1222 (lookup_minimal_symbol_demangled): Update.
1223 (lookup_minimal_symbol_linkage): Update.
1224 (lookup_minimal_symbol_text): Update.
1225 (lookup_minimal_symbol_by_pc_name): Update.
1226 (minimal_symbol_is_less_than): Update.
1227 (compact_minimal_symbols): Update.
1228 (build_minimal_symbol_hash_tables): Update.
1229 (find_solib_trampoline_target): Update.
1230 * mips-tdep.c (mips_stub_frame_sniffer): Update.
1231 (mips_skip_pic_trampoline_code): Update.
1232 * msp430-tdep.c (msp430_skip_trampoline_code): Update.
1233 * objc-lang.c (info_selectors_command): Update.
1234 (info_classes_command): Update.
1235 (find_methods): Update.
1236 (find_imps): Update.
1237 * p-valprint.c (pascal_val_print): Update.
1238 * ppc-linux-tdep.c (powerpc_linux_in_dynsym_resolve_code): Update.
1239 * ppc-sysv-tdep.c (convert_code_addr_to_desc_addr): Update.
1240 * printcmd.c (build_address_symbolic): Update.
1241 (info_symbol_command): Update.
1242 * psymtab.c (psymbol_name_matches): Update.
1243 (match_partial_symbol): Update.
1244 (lookup_partial_symbol): Update.
1245 (print_partial_symbols): Update.
1246 (sort_pst_symbols): Update.
1247 (maintenance_check_psymtabs): Update.
1248 * python/py-framefilter.c (py_print_frame): Update.
1249 * python/python.c (gdbpy_rbreak): Update.
1250 * record-btrace.c (btrace_get_bfun_name): Update.
1251 (btrace_call_history): Update.
1252 * rs6000-tdep.c (rs6000_skip_main_prologue): Update.
1253 (rs6000_skip_trampoline_code): Update.
1254 * sol-thread.c (info_cb): Update.
1255 * stabsread.c (scan_file_globals): Update.
1256 * stack.c (find_frame_funname): Update.
1257 (info_frame_command_core): Update.
1258 * symmisc.c (dump_msymbols): Update.
1259 * symtab.c (symbol_natural_name): Rename to..,
1260 (general_symbol_info::natural_name): ...this.
1261 (symbol_demangled_name): Rename to...
1262 (general_symbol_info::demangled_name): ...this.
1263 (symbol_search_name): Rename to...
1264 (general_symbol_info::search_name): ...this.
1265 (symbol_matches_search_name): Update.
1266 (find_pc_sect_line): Update.
1267 (skip_prologue_sal): Update.
1268 (search_symbols): Update.
1269 (print_msymbol_info): Update.
1270 (rbreak_command): Update.
1271 (completion_list_add_msymbol): Update.
1272 (completion_list_objc_symbol): Update.
1273 (get_msymbol_address): Update.
1274 * symtab.h (struct general_symbol_info): Add member functions
1275 natural_name (), linkage_name (), print_name (), demangled_name (),
1276 and search_name ().
1277 (SYMBOL_NATURAL_NAME): Update.
1278 (symbol_natural_name): Move to a member function on general_symbol_info.
1279 (SYMBOL_DEMANGLED_NAME): Update.
1280 (symbol_demangled_name): Move to a member function on
1281 general_symbol_info.
1282 (SYMBOL_SEARCH_NAME): Update.
1283 (symbol_search_name): Move to a member function on general_symbol_info.
1284 (MSYMBOL_NATURAL_NAME): Remove.
1285 (MSYMBOL_LINKAGE_NAME): Remove.
1286 (MSYMBOL_PRINT_NAME): Remove.
1287 (MSYMBOL_DEMANGLED_NAME): Remove.
1288 (MSYMBOL_SEARCH_NAME): Remove.
1289 * x86-tdep.c (x86_in_indirect_branch_thunk): Update.
1290
12912019-11-22 Christian Biesinger <cbiesinger@google.com>
1292
1293 * symtab.c (create_demangled_names_hash): Use per_bfd->
1294 minimal_symbol_count for computing the initial size, if greater
1295 than our default size.
1296
12972019-11-22 Tom de Vries <tdevries@suse.de>
1298
1299 * contrib/words.sh: Improve words extraction.
1300
13012019-11-22 Tom de Vries <tdevries@suse.de>
1302
1303 * contrib/words.sh: Combine sed invocations.
1304
13052019-11-21 Christian Biesinger <cbiesinger@google.com>
1306
1307 * Makefile.in: Update.
1308 * demangle.c: Rename to...
1309 * gdb-demangle.c: ..this.
1310 (is_cplus_marker): Change return type to bool.
1311 (_initialize_demangler): Rename to...
1312 (_initialize_gdb_demangle): ...this.
1313 * gdb-demangle.h (is_cplus_marker): Change return type to bool.
1314 * symtab.h (demangle): Remove declaration; instead include
1315 gdb-demangle.h.
1316
13172019-11-21 Tom Tromey <tromey@adacore.com>
1318
1319 * gdbsupport/format.c (format_pieces): Parse %I64d.
1320 * unittests/format_pieces-selftests.c (test_windows_formats): New
1321 function.
1322 (run_tests): Call it.
1323
13242019-11-21 Peeter Joot <peeter.joot@lzlabs.com>
1325
1326 Byte reverse display of variables with DW_END_big, DW_END_little
1327 (DW_AT_endianity) dwarf attributes if different than the native
1328 byte order.
1329 * ada-lang.c (ada_value_binop):
1330 Use type_byte_order instead of gdbarch_byte_order.
1331 * ada-valprint.c (printstr):
1332 (ada_val_print_string):
1333 * ada-lang.c (value_pointer):
1334 (ada_value_binop):
1335 Use type_byte_order instead of gdbarch_byte_order.
1336 * c-lang.c (c_get_string):
1337 Use type_byte_order instead of gdbarch_byte_order.
1338 * c-valprint.c (c_val_print_array):
1339 Use type_byte_order instead of gdbarch_byte_order.
1340 * cp-valprint.c (cp_print_class_member):
1341 Use type_byte_order instead of gdbarch_byte_order.
1342 * dwarf2loc.c (rw_pieced_value):
1343 Use type_byte_order instead of gdbarch_byte_order.
1344 * dwarf2read.c (read_base_type): Handle DW_END_big,
1345 DW_END_little
1346 * f-lang.c (f_get_encoding):
1347 Use type_byte_order instead of gdbarch_byte_order.
1348 * findvar.c (default_read_var_value):
1349 Use type_byte_order instead of gdbarch_byte_order.
1350 * gdbtypes.c (check_types_equal):
1351 Require matching TYPE_ENDIANITY_NOT_DEFAULT if set.
1352 (recursive_dump_type): Print TYPE_ENDIANITY_BIG,
1353 and TYPE_ENDIANITY_LITTLE if set.
1354 (type_byte_order): new function.
1355 * gdbtypes.h (TYPE_ENDIANITY_NOT_DEFAULT): New macro.
1356 (struct main_type) <flag_endianity_not_default>:
1357 New field.
1358 (type_byte_order): New function.
1359 * infcmd.c (default_print_one_register_info):
1360 Use type_byte_order instead of gdbarch_byte_order.
1361 * p-lang.c (pascal_printstr):
1362 Use type_byte_order instead of gdbarch_byte_order.
1363 * p-valprint.c (pascal_val_print):
1364 Use type_byte_order instead of gdbarch_byte_order.
1365 * printcmd.c (print_scalar_formatted):
1366 Use type_byte_order instead of gdbarch_byte_order.
1367 * solib-darwin.c (darwin_current_sos):
1368 Use type_byte_order instead of gdbarch_byte_order.
1369 * solib-svr4.c (solib_svr4_r_ldsomap):
1370 Use type_byte_order instead of gdbarch_byte_order.
1371 * stap-probe.c (stap_modify_semaphore):
1372 Use type_byte_order instead of gdbarch_byte_order.
1373 * target-float.c (target_float_same_format_p):
1374 Use type_byte_order instead of gdbarch_byte_order.
1375 * valarith.c (scalar_binop):
1376 (value_bit_index):
1377 Use type_byte_order instead of gdbarch_byte_order.
1378 * valops.c (value_cast):
1379 Use type_byte_order instead of gdbarch_byte_order.
1380 * valprint.c (generic_emit_char):
1381 (generic_printstr):
1382 (val_print_string):
1383 Use type_byte_order instead of gdbarch_byte_order.
1384 * value.c (unpack_long):
1385 (unpack_bits_as_long):
1386 (unpack_value_bitfield):
1387 (modify_field):
1388 (pack_long):
1389 (pack_unsigned_long):
1390 Use type_byte_order instead of gdbarch_byte_order.
1391 * findvar.c (unsigned_pointer_to_address):
1392 (signed_pointer_to_address):
1393 (unsigned_address_to_pointer):
1394 (address_to_signed_pointer):
1395 (default_read_var_value):
1396 (default_value_from_register):
1397 Use type_byte_order instead of gdbarch_byte_order.
1398 * gnu-v3-abi.c (gnuv3_make_method_ptr):
1399 Use type_byte_order instead of gdbarch_byte_order.
1400 * riscv-tdep.c (riscv_print_one_register_info):
1401 Use type_byte_order instead of gdbarch_byte_order.
1402
14032019-11-21 Simon Marchi <simon.marchi@polymtl.ca>
1404
1405 * top.c (current_ui_gdb_stdout_ptr): Spell out by hand.
1406 (current_ui_gdb_stdin_ptr): Likewise.
1407 (current_ui_gdb_stderr_ptr): Likewise.
1408 (current_ui_gdb_stdlog_ptr): Likewise.
1409 (current_ui_current_uiout_ptr): Likewise.
1410 (gen_ret_current_ui_field_ptr): Remove.
1411
14122019-11-21 Tom de Vries <tdevries@suse.de>
1413
1414 PR gdb/24956
1415 * cli/cli-script.c (execute_control_command): Only switch to
1416 INTERP_CONSOLE's ui_out when INTERP_MI is active.
1417
14182019-11-19 Tom Tromey <tom@tromey.com>
1419
1420 * tui/tui-win.c (tui_partial_win_by_name): Move from tui-data.c.
1421 Now static. Change type of "name".
1422 (tui_set_win_height_command): Don't copy "arg".
1423 * tui/tui-data.h (tui_partial_win_by_name): Don't declare.
1424 * tui/tui-data.c (tui_partial_win_by_name): Move to tui-win.c.
1425
14262019-11-19 Ali Tamur <tamur@google.com>
1427
1428 * dwarf2read.c (dw2_get_file_names_reader): Replace "if (attr)" with
1429 "if (attr != nullptr)".
1430 (dwarf2_find_base_address): Likewise.
1431 (dwarf2_build_include_psymtabs): Likewise.
1432 (read_cutu_die_from_dwo): Likewise.
1433 (read_func_scope): Likewise.
1434 (read_call_site_scope): Likewise.
1435 (dwarf2_get_pc_bounds): Likewise.
1436 (dwarf2_record_block_ranges): Likewise.
1437 (dwarf2_add_field): Likewise.
1438 (dwarf2_add_member_fn): Likewise.
1439 (read_structure_type): Likewise.
1440 (read_enumeration_type): Likewise.
1441 (read_array_type): Likewise.
1442 (read_array_order): Likewise.
1443 (read_set_type): Likewise.
1444 (read_common_block): Likewise.
1445 (read_tag_reference_type): Likewise.
1446 (read_tag_string_type): Likewise.
1447 (read_subroutine_type): Likewise.
1448 (read_base_type): Likewise.
1449 (read_subrange_type): Likewise.
1450 (new_symbol): Likewise.
1451 (prepare_one_comp_unit): Likewise.
1452
14532019-11-19 Tom Tromey <tromey@adacore.com>
1454
1455 * windows-nat.c (windows_nat_target::attach): Include GetLastError
1456 result in error when DebugActiveProcess fails.
1457
14582019-11-18 Sergio Durigan Junior <sergiodj@redhat.com>
1459 Pedro Alves <palves@redhat.com>
1460
1461 https://bugzilla.redhat.com/show_bug.cgi?id=1765117
1462 * target.c (target_stack::push): Call 'unpush' if there's a
1463 target on top of the stack.
1464
14652019-11-18 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1466
1467 * python/py-block.c (blpy_dealloc): Call tp_free.
1468 (blpy_block_syms_dealloc): Likewise.
1469 * python/py-finishbreakpoint.c (bpfinishpy_dealloc): Likewise.
1470 * python/py-inferior.c (infpy_dealloc): Likewise.
1471 * python/py-lazy-string.c (stpy_dealloc): Likewise.
1472 * python/py-linetable.c (ltpy_iterator_dealloc): Likewise.
1473 * python/py-symbol.c (sympy_dealloc): Likewise.
1474 * python/py-symtab.c (stpy_dealloc): Likewise.
1475 * python/py-type.c (typy_iterator_dealloc): Likewise.
1476
14772019-11-18 Christian Biesinger <cbiesinger@google.com>
1478
1479 * symtab.h (struct symbol) <owner>: Initialize explicitly in the
1480 constructor instead of using a class initializer.
1481
14822019-11-15 Christian Biesinger <cbiesinger@google.com>
1483
1484 * Makefile.in: Replace {posix,mingw}-strerror.c with safe-strerror.c.
1485 * configure: Regenerate.
1486 * configure.ac: Don't source common.host.
1487 * gdbsupport/common.host: Remove.
1488 * gdbsupport/mingw-strerror.c: Remove.
1489 * gdbsupport/posix-strerror.c: Rename to...
1490 * gdbsupport/safe-strerror.c: ...this.
1491
14922019-11-15 Christian Biesinger <cbiesinger@google.com>
1493
1494 * maint.c (scoped_command_stats::print_time): Use localtime_r
1495 instead of localtime (provided through gnulib if necessary).
1496 * nat/linux-osdata.c (time_from_time_t): Use ctime_r instead
1497 of ctime.
1498
14992019-11-15 Christian Biesinger <cbiesinger@google.com>
1500
1501 * gdbsupport/common-defs.h: Include time.h before pathmax.h to
1502 avoid compile errors.
1503
15042019-11-15 Christian Biesinger <cbiesinger@google.com>
1505
1506 * config.in: Regenerate.
1507 * configure: Regenerate.
1508 * gdbsupport/common.m4: No longer check for strerror_r.
1509 * gdbsupport/posix-strerror.c (safe_strerror): Always call the
1510 POSIX version of strerror_r, now that gnulib provides it if
1511 necessary.
1512
15132019-11-14 Christian Biesinger <cbiesinger@google.com>
1514
1515 * README (`configure' options): Update.
1516
15172019-11-14 Tom Tromey <tromey@adacore.com>
1518
1519 * eval.c (evaluate_subexp_standard) <BINOP_ASSIGN>: Do not pass an
1520 expected type for the RHS if the LHS is a convenience variable.
1521
15222019-11-14 Simon Marchi <simon.marchi@polymtl.ca>
1523
1524 * unittests/vec-utils-selftests.c (unordered_remove_tests::obj):
1525 Provide explicit default and copy constructor.
1526
15272019-11-14 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1528
1529 * python/py-finishbreakpoint.c (gdbpy_breakpoint_created):
1530 only call Py_INCREF (newbp) in the bppy_pending_object case.
1531
15322019-11-13 Tom Tromey <tromey@adacore.com>
1533
1534 PR build/25182:
1535 * psympriv.h (partial_symbol): Remove static assert.
1536 * symtab.h (general_symbol_info, symbol): Remove static assert.
1537
15382019-11-12 Andrew Burgess <andrew.burgess@embecosm.com>
1539
1540 * gdbsupport/format.c (format_pieces::format_pieces): Support
1541 printf 'z' size modifier.
1542 * gdbsupport/format.h (enum argclass): Add size_t_arg.
1543 * printcmd.c (ui_printf): Handle size_t_arg.
1544 * ui-out.c (ui_out::vmessage): Likewise.
1545 * unittests/format_pieces-selftests.c (test_format_int_sizes): New
1546 function.
1547 (run_tests): Call test_format_int_sizes.
1548
15492019-11-12 Christian Biesinger <cbiesinger@google.com>
1550
1551 * ada-exp.y (write_ambiguous_var): Update.
1552 * buildsym.c (add_symbol_to_list): Update.
1553 * dwarf2read.c (read_variable): Update.
1554 (new_symbol): Update.
1555 * jit.c (finalize_symtab): Update.
1556 * language.c (language_alloc_type_symbol): Update.
1557 * symtab.c (fixup_symbol_section): Update.
1558 (initialize_objfile_symbol_1): Move code to...
1559 (initialize_objfile_symbol): ...here. Remove now-unnecessary memset.
1560 (allocate_symbol): Update.
1561 (allocate_template_symbol): Update.
1562 (get_symbol_address): Update.
1563 * symtab.h (struct symbol): Inherit from general_symbol_info instead
1564 of having as a field, and add a constructor.
1565 (SYMBOL_VALUE): Update.
1566 (SYMBOL_VALUE_ADDRESS): Update.
1567 (SET_SYMBOL_VALUE_ADDRESS): Update.
1568 (SYMBOL_VALUE_BYTES): Update.
1569 (SYMBOL_VALUE_COMMON_BLOCK): Update.
1570 (SYMBOL_BLOCK_VALUE): Update.
1571 (SYMBOL_VALUE_CHAIN): Update.
1572 (SYMBOL_LANGUAGE): Update.
1573 (SYMBOL_SECTION): Update.
1574 (SYMBOL_OBJ_SECTION): Update.
1575 (SYMBOL_SET_LANGUAGE): Update.
1576 (SYMBOL_SET_LINKAGE_NAME): Update.
1577 (SYMBOL_SET_NAMES): Update.
1578 (SYMBOL_NATURAL_NAME): Update.
1579 (SYMBOL_LINKAGE_NAME): Update.
1580 (SYMBOL_DEMANGLED_NAME): Update.
1581 (SYMBOL_SEARCH_NAME): Update.
1582 (SYMBOL_MATCHES_SEARCH_NAME): Update.
1583 (struct symbol): Update.
1584 (struct template_symbol): Update.
1585 (struct rust_vtable_symbol): Update.
1586 * xcoffread.c (SYMBOL_DUP): Update.
1587
15882019-11-12 Tom Tromey <tom@tromey.com>
1589
1590 * tui/tui-layout.c (show_layout): Set current_layout.
1591 (show_source_disasm_command, show_data)
1592 (show_source_or_disasm_and_command): Don't set current_layout.
1593
15942019-11-12 Tom Tromey <tom@tromey.com>
1595
1596 * tui/tui-layout.c (_initialize_tui_layout): Move to end.
1597
15982019-11-12 Tom Tromey <tom@tromey.com>
1599
1600 * tui/tui-win.c (resize_message): New global.
1601 (show_tui_resize_message): New function.
1602 (tui_async_resize_screen): Print message if requested.
1603 (_initialize_tui_win): Add tui-resize-message setting.
1604 * NEWS: Add entry for new commands.
1605
16062019-11-11 Tom Tromey <tom@tromey.com>
1607
1608 * tui/tui.c (tui_initialize_readline): Add new bindable readline
1609 functions.
1610
16112019-11-11 Christian Biesinger <cbiesinger@google.com>
1612
1613 * nat/linux-osdata.c (user_from_uid): Use getpwuid_r.
1614
16152019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
1616
1617 * python/py-symbol.c (gdbpy_lookup_static_symbols): New
1618 function.
1619 * python/python-internal.h (gdbpy_lookup_static_symbols):
1620 Declare new function.
1621 * python/python.c (python_GdbMethods): Add
1622 gdb.lookup_static_symbols method.
1623 * NEWS: Mention gdb.lookup_static_symbols.
1624
16252019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
1626
1627 * python/py-symbol.c (gdbpy_lookup_static_symbol): Lookup in
1628 static block of current object file first. Also fix typo in
1629 header comment.
1630
16312019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
1632
1633 * stack.c (set_last_displayed_sal): Delete.
1634 (last_displayed_sal_valid): Delete.
1635 (last_displayed_pspace): Delete.
1636 (last_displayed_addr): Delete.
1637 (last_displayed_symtab): Delete.
1638 (last_displayed_line): Delete.
1639 (class last_displayed_symtab_info_type): New.
1640 (last_displayed_symtab_info): New static global variable.
1641 (print_frame_info): Call methods on last_displayed_symtab_info.
1642 (clear_last_displayed_sal): Update header comment, and make use of
1643 last_displayed_symtab_info.
1644 (last_displayed_sal_is_valid): Likewise.
1645 (get_last_displayed_pspace): Likewise.
1646 (get_last_displayed_addr): Likewise.
1647 (get_last_displayed_symtab): Likewise.
1648 (get_last_displayed_line): Likewise.
1649 (get_last_displayed_sal): Likewise.
1650 * stack.h (clear_last_displayed_sal): Update header comment.
1651 (last_displayed_sal_is_valid): Likewise.
1652 (get_last_displayed_pspace): Likewise.
1653 (get_last_displayed_addr): Likewise.
1654 (get_last_displayed_symtab): Likewise.
1655 (get_last_displayed_line): Likewise.
1656 (get_last_displayed_sal): Likewise.
1657
16582019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
1659
1660 * stack.c (frame_show_address): Convert return type to bool.
1661 * stack.h (frame_show_address): Likewise, and update header
1662 comment.
1663
16642019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
1665
1666 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add new file to the list.
1667 * unittests/vec-utils-selftests.c: New file.
1668 * gdbsupport/gdb_vecs.h (unordered_remove): Avoid self move assign.
1669
16702019-11-10 Tom Tromey <tom@tromey.com>
1671
1672 * tui/tui-wingeneral.c (tui_unhighlight_win): Use can_box.
1673 (tui_highlight_win): Likewise.
1674 (tui_win_info::check_and_display_highlight_if_needed): Likewise.
1675 * tui/tui-data.h (struct tui_win_info) <can_highlight>: Remove.
1676 * tui/tui-command.h (struct tui_cmd_window) <tui_cmd_window>:
1677 Don't set can_highlight.
1678
16792019-11-10 Tom Tromey <tom@tromey.com>
1680
1681 * cli/cli-style.h (class cli_style_option) <cli_style_option>:
1682 Remove unused declaration.
1683
16842019-11-08 Tom Tromey <tromey@adacore.com>
1685
1686 * top.c (read_command_file): Update.
1687 (command_line_input): Make return type const.
1688 * python/py-gdb-readline.c: Update.
1689 * linespec.c (decode_line_2): Update.
1690 * defs.h (command_line_input): Make return type const.
1691 * cli/cli-script.c (read_next_line): Make return type const.
1692 * ada-lang.c (get_selections): Update.
1693
16942019-11-06 Christian Biesinger <cbiesinger@google.com>
1695
1696 * linux-tdep.c (linux_info_proc): Use strtok_r instead of strtok.
1697 * mi/mi-main.c (output_cores): Likewise.
1698 * nat/linux-osdata.c (linux_xfer_osdata_cpus): Likewise.
1699 (linux_xfer_osdata_modules): Likewise.
1700 * remote.c (register_remote_support_xml): Likewise.
1701 * sparc64-tdep.c (adi_is_addr_mapped): Likewise.
1702 * xml-syscall.c (syscall_create_syscall_desc): Likewise.
1703
17042019-11-06 Tom Tromey <tom@tromey.com>
1705
1706 * tui/tui-interp.c: Don't include readline.h.
1707 * tui/tui-hooks.c: Don't include readline.h.
1708 * symmisc.c: Include tilde.h, not readline.h.
1709 * symfile.c: Include tilde.h, not readline.h.
1710 * source.c: Include tilde.h, not readline.h.
1711 * solib.c: Include tilde.h, not readline.h.
1712 * psymtab.c: Include tilde.h, not readline.h.
1713 * exec.c: Include tilde.h, not readline.h.
1714 * corelow.c: Include tilde.h, not readline.h.
1715 * cli/cli-dump.c: Include tilde.h, not readline.h.
1716 * cli/cli-cmds.c: Don't include readline.h.
1717
17182019-11-05 Tom Tromey <tom@tromey.com>
1719
1720 * tui/tui-disasm.c (struct tui_asm_line) <addr_size>: New member.
1721 (tui_disassemble): Set addr_size.
1722 (tui_disasm_window::set_contents): Use addr_size.
1723
17242019-11-05 Tom Tromey <tom@tromey.com>
1725
1726 * rust-lang.c (rust_language_defn): Update.
1727 * python/py-value.c (valpy_string): Call c_get_string.
1728 * p-lang.c (pascal_language_defn): Update.
1729 * opencl-lang.c (opencl_language_defn): Update.
1730 * objc-lang.c (objc_language_defn): Update.
1731 * m2-lang.c (m2_language_defn): Update.
1732 * language.c (unknown_language_defn, auto_language_defn): Update.
1733 (default_get_string): Remove.
1734 * guile/scm-value.c (gdbscm_value_to_string): Use c_get_string.
1735 * go-lang.c (go_language_defn): Update.
1736 * f-lang.c (f_language_defn): Update.
1737 * d-lang.c (d_language_defn): Update.
1738 * c-lang.c (c_language_defn, cplus_language_defn)
1739 (asm_language_defn, minimal_language_defn): Update.
1740 * ada-lang.c (ada_language_defn): Update.
1741 * language.h (struct language_defn) <la_get_string>: Remove.
1742 (LA_GET_STRING): Remove.
1743 (default_get_string): Don't declare.
1744
17452019-11-05 Tom Tromey <tom@tromey.com>
1746
1747 * tui/tui-source.h (struct tui_source_window): Inline
1748 constructor. Remove destructor.
1749 <style_changed, m_observable>: Move to superclass.
1750 * tui/tui-winsource.h (tui_copy_source_line): Declare.
1751 (struct tui_source_window_base): Move private members to end.
1752 <style_changed, m_observable>: Move from tui_source_window.
1753 * tui/tui-winsource.c (tui_copy_source_line): Move from
1754 tui-source.c. Rename from copy_source_line. Add special handling
1755 for negative line number.
1756 (tui_source_window_base::style_changed): Move from
1757 tui_source_window.
1758 (tui_source_window_base): Register observer.
1759 (~tui_source_window_base): New.
1760 * tui/tui-source.c (copy_source_line): Move to tui-winsource.c;
1761 rename.
1762 (tui_source_window::set_contents): Use tui_copy_source_line.
1763 (tui_source_window::tui_source_window): Move to tui-source.h.
1764 (tui_source_window::~tui_source_window): Remove.
1765 (tui_source_window::style_changed): Move to superclass.
1766 * tui/tui-disasm.c (tui_disassemble): Create string file with
1767 styling, when possible. Add "addr_size" parameter.
1768 (tui_disasm_window::set_contents): Use tui_copy_source_line.
1769 Don't compute maximum size.
1770 (len_without_escapes): New function
1771
17722019-11-05 Tom Tromey <tom@tromey.com>
1773
1774 * tui/tui-winsource.h (struct tui_source_element) <line>: Now a
1775 std::string.
1776 * tui/tui-winsource.c (tui_show_source_line): Update.
1777 * tui/tui-source.c (tui_source_window::set_contents): Update.
1778 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
1779
17802019-11-05 Christian Biesinger <cbiesinger@google.com>
1781
1782 * symtab.h (gdb_static_assert): Put && operator at the beginning
1783 of the line instead of the end.
1784
17852019-11-04 Christian Biesinger <cbiesinger@google.com>
1786
1787 * psympriv.h: Add static_asserts for sizeof (general_symbol_info)
1788 and sizeof (symbol).
1789 * symtab.h: Add a static_assert for sizeof (partial_symbol).
1790
17912019-11-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1792
1793 * NEWS (Changes since GDB 8.3): Document Solaris 10 removal.
1794 * configure.host: Mark *-*-solaris2.10* obsolete.
1795 * configure.tgt: Mark Solaris < 11 obsolete.
1796 * MAINTAINERS (Target Instruction Set Architectures) <sparc>:
1797 Update target triplet.
1798
17992019-11-01 Tom Tromey <tromey@adacore.com>
1800
1801 * utils.c (print_sys_errmsg): Simplify.
1802
18032019-11-01 Tom Tromey <tromey@adacore.com>
1804
1805 * gdbsupport/mingw-strerror.c (safe_strerror): Constify result.
1806
18072019-11-01 Christian Biesinger <cbiesinger@google.com>
1808
1809 * configure: Regenerate.
1810 * configure.ac: Remove check for strerror_r.
1811 * gdbsupport/common.m4: Check for strerror_r.
1812
18132019-11-01 Luis Machado <luis.machado@linaro.org>
1814
1815 PR gdb/25124
1816
1817 * arm-tdep.c (arm_per_objfile): Rename to ...
1818 (arm_per_bfd): ... this.
1819 (arm_objfile_data_key): Rename to ...
1820 (arm_bfd_data_key): ... this.
1821 (arm_find_mapping_symbol): Adjust access to new bfd_key-based
1822 data.
1823 (arm_record_special_symbol): Likewise.
1824
18252019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
1826
1827 * ada-typeprint.c (ada_print_typedef): Don't print newline at the
1828 end.
1829 * c-typeprint.c (c_print_typedef): Likewise.
1830 * f-typeprint.c (f_print_typedef): Likewise.
1831 * m2-typeprint.c (m2_print_typedef): Likewise.
1832 * p-typeprint.c (pascal_print_typedef): Likewise.
1833 * rust-lang.c (rust_print_typedef): Likewise.
1834 * symtab.c (print_symbol_info): Print a newline after calling
1835 typedef_print.
1836
18372019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
1838
1839 * symtab.c (info_module_cmdlist): New variable.
1840 (info_module_command): New function.
1841 (search_module_symbols): New function.
1842 (info_module_subcommand): New function.
1843 (struct info_modules_var_func_options): New struct.
1844 (info_modules_var_func_options_defs): New variable.
1845 (make_info_modules_var_func_options_def_group): New function.
1846 (info_module_functions_command): New function.
1847 (info_module_variables_command): New function.
1848 (info_module_var_func_command_completer): New function.
1849 (_initialize_symtab): Register new 'info module functions' and
1850 'info module variables' commands.
1851 * symtab.h (typedef symbol_search_in_module): New typedef.
1852 (search_module_symbols): Declare new function.
1853 * NEWS: Mention new commands.
1854
18552019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
1856
1857 * dwarf2read.c (dw2_symtab_iter_next): Handle MODULE_DOMAIN.
1858 (dw2_expand_marked_cus): Handle MODULES_DOMAIN.
1859 (dw2_debug_names_iterator::next): Handle MODULE_DOMAIN and
1860 MODULES_DOMAIN.
1861 (scan_partial_symbols): Only create partial module symbols for non
1862 declarations.
1863 * psymtab.c (recursively_search_psymtabs): Handle MODULE_DOMAIN
1864 and MODULES_DOMAIN.
1865 * symtab.c (search_domain_name): Likewise.
1866 (search_symbols): Likewise.
1867 (print_symbol_info): Likewise.
1868 (symtab_symbol_info): Likewise.
1869 (info_modules_command): New function.
1870 (_initialize_symtab): Register 'info modules' command.
1871 * symtab.h (enum search_domain): Add MODULES_DOMAIN.
1872 * NEWS: Mention new 'info modules' command.
1873
18742019-10-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1875
1876 * NEWS: Mention $_gdb_setting, $_gdb_setting_str, $_gdb_maint_setting
1877 and $_gdb_maint_setting_str.
1878
18792019-10-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1880
1881 * cli/cli-cmds.c (setting_cmd, value_from_setting)
1882 (gdb_setting_internal_fn, gdb_maint_setting_internal_fn)
1883 (str_value_from_setting, gdb_setting_str_internal_fn)
1884 (gdb_maint_setting_str_internal_fn): New functions.
1885 (_initialize_cli_cmds): Define the new convenience functions.
1886 * gdb/cli/cli-setshow.h (get_setshow_command_value_string): Constify.
1887 * gdb/cli/cli-setshow.c (get_setshow_command_value_string): Constify.
1888
18892019-10-31 Christian Biesinger <cbiesinger@google.com>
1890
1891 * agent.c (set_can_use_agent): When the setting is turned on,
1892 look up agent symbols if we don't have them yet.
1893 (agent_new_objfile): Don't look up agent symbols when the agent
1894 setting is off.
1895
18962019-10-31 Christian Biesinger <cbiesinger@google.com>
1897
1898 * config.in: Regenerate.
1899
19002019-10-31 Christian Biesinger <cbiesinger@google.com>
1901
1902 * configure: Regenerate.
1903 * configure.ac: Check for strerror_r.
1904 * gdbsupport/common-utils.h (safe_strerror): Change return value
1905 to const char * and document that this function is now threadsafe.
1906 * gdbsupport/posix-strerror.c (safe_strerror): Make buf
1907 thread_local and call strerror_r, if available.
1908 * utils.c (perror_string): Update.
1909 (print_sys_errmsg): Update.
1910
19112019-10-31 Luis Machado <luis.machado@linaro.org>
1912
1913 * arm-tdep.c (arm_exidx_data_key): Use bfd_key instead of
1914 objfile_key.
1915 (arm_exidx_new_objfile): Adjust to use objfile->obfd instead of
1916 objfile to fetch per-bfd data.
1917 (arm_find_exidx_entry): Likewise.
1918
19192019-10-31 Christian Biesinger <cbiesinger@google.com>
1920
1921 * gdbsupport/agent.c (debug_agent): Change type to bool.
1922 (use_agent): Likewise.
1923 (all_agent_symbols_look_up): Likewise.
1924 (agent_loaded_p): Change return value to bool.
1925 (agent_look_up_symbols): Update.
1926 (agent_capability_check): Change return value to bool.
1927 * gdbsupport/agent.h (agent_loaded_p): Likewise.
1928 (debug_agent): Change type to bool.
1929 (use_agent): Likewise.
1930 (agent_capability_check): Change return value to bool.
1931
19322019-10-30 Christian Biesinger <cbiesinger@google.com>
1933
1934 * minsyms.c (clear_minimal_symbol_hash_tables): New function.
1935 (build_minimal_symbol_hash_tables): Code to clear the table moved
1936 to clear_minimal_symbol_hash_tables.
1937 (minimal_symbol_reader::install): Call clear_minimal_symbol_hash_tables
1938 when needed.
1939
19402019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
1941
1942 * infcmd.c: Remove includes.
1943 * infrun.c: Remove includes.
1944
19452019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
1946
1947 * ada-lang.h (GROW_VECT): Move to ada-lang.c.
1948 (grow_vect): Remove declaration.
1949 (ada_type_of_array): Remove declaration.
1950 (ada_update_initial_language): Remove declaration.
1951 (ada_fold_name): Remove declaration.
1952 (ada_fill_in_ada_prototype): Remove declaration.
1953 (user_select_syms): Remove declaration.
1954 (get_selections): Remove declaration.
1955 (ada_tag_type): Remove declaration.
1956 (ada_value_tag): Remove declaration.
1957 (ada_is_others_clause): Remove declaration.
1958 (ada_in_variant): Remove declaration.
1959 (ada_value_struct_elt): Remove declaration.
1960 (ada_attribute_name): Remove declaration.
1961 (ada_system_address_type): Remove declaration.
1962 * ada-lang.c (ada_watch_location_expression): Make static.
1963 (GROW_VECT): Move here from ada-lang.h.
1964 (grow_vect): Make static.
1965 (ada_update_initial_language): Make static.
1966 (ada_fold_name): Make static.
1967 (ada_type_of_array): Make static.
1968 (encoded_ordered_before): Move up.
1969 (sort_choices): Move up.
1970 (print_signatures): Move up.
1971 (ada_print_symbol_signature): Move up.
1972 (get_selections): Move up and make static.
1973 (user_select_syms): Move up and make static.
1974 (ada_value_struct_elt): Move up and make static.
1975 (ada_tag_type): Make static.
1976 (ada_value_tag): Make static.
1977 (ada_is_others_clause): Make static.
1978 (ada_in_variant): Make static.
1979 (ada_attribute_name): Make static.
1980
19812019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
1982
1983 * ada-lang.c: Remove includes.
1984 * ada-typeprint.c: Remove includes.
1985 * ada-valprint.c: Remove includes.
1986
19872019-10-29 Simon Marchi <simon.marchi@efficios.com>
1988
1989 * addrmap.c: Add static assertions of type size, moved from
1990 _initialize_addrmap.
1991 (_initialize_addrmap): Remove.
1992
19932019-10-29 Christian Biesinger <cbiesinger@google.com>
1994
1995 * coffread.c (record_minimal_symbol): Update.
1996 (process_coff_symbol): Update.
1997 * dbxread.c (read_dbx_symtab): Update.
1998 * dwarf2read.c (add_partial_symbol): Update.
1999 (fixup_go_packaging): Update.
2000 (load_partial_dies): Update.
2001 (new_symbol): Update.
2002 * elfread.c (record_minimal_symbol): Change signature to use
2003 gdb::string_view instead of name+len.
2004 (elf_symtab_read): Update.
2005 (elf_rel_plt_read): Update.
2006 * mdebugread.c (parse_partial_symbols): Update.
2007 (handle_psymbol_enumerators): Update.
2008 (new_symbol): Update.
2009 * minsyms.c (minimal_symbol_reader::record_full): Change signature
2010 to use gdb::string_view instead of name+len.
2011 * minsyms.h (class minimal_symbol_reader) <record_full>: Likewise.
2012 * psympriv.h (add_psymbol_to_list): Likewise.
2013 * psymtab.c (add_psymbol_to_bcache): Likewise.
2014 (add_psymbol_to_list): Likewise.
2015 * stabsread.c (define_symbol): Update.
2016 * symtab.c (symbol_set_names): Change signature to use gdb::string_view.
2017 * symtab.h (SYMBOL_SET_NAMES): Likewise.
2018 (symbol_set_names): Likewise.
2019 * xcoffread.c (scan_xcoff_symtab): Update.
2020
20212019-10-29 Christian Biesinger <cbiesinger@google.com>
2022
2023 * symtab.h (symbol_set_names): Document that copy_name must be
2024 set to true for non-nullterminated strings.
2025 * symtab.c (symbol_set_names): Only make a nullterminated copy of
2026 linkage_name if the entry was not found and we need to demangle.
2027
20282019-10-29 Christian Biesinger <cbiesinger@google.com>
2029
2030 * Makefile.in (HFILES_NO_SRCDIR): Add gdb_binary_search.h.
2031 * dwarf2-frame.c (bsearch_fde_cmp): Update.
2032 (dwarf2_frame_find_fde): Replace bsearch with gdb::binary_search.
2033 * gdbsupport/gdb_binary_search.h: New file.
2034
20352019-10-29 Christian Biesinger <cbiesinger@google.com>
2036
2037 * NEWS: Mention new --with-system-gdbinit-dir option.
2038 * config.in: Regenerate.
2039 * configure: Regenerate.
2040 * configure.ac: Add new option --with-system-gdbinit-dir.
2041 * extension.c (get_ext_lang_of_file): Return extension_language_gdb
2042 for a ".gdb" suffix.
2043 * main.c (get_init_files): Change system_gdbinit argument to
2044 a vector and return the files in SYSTEM_GDBINIT_DIR in
2045 addition to SYSTEM_GDBINIT.
2046 (captured_main_1): Update.
2047 (print_gdb_help): Update.
2048 * top.c (print_gdb_configuration): Also print the value of
2049 SYSTEM_GDBINIT_DIR.
2050
20512019-10-28 Christian Biesinger <cbiesinger@google.com>
2052
2053 * gdbsupport/common-utils.h (startswith): Add an overloaded version
2054 that takes gdb::string_view arguments.
2055
20562019-10-26 Tom de Vries <tdevries@suse.de>
2057
2058 * aarch64-linux-tdep.c: Fix typos in comments.
2059 * aarch64-tdep.c: Same.
2060 * ada-lang.c: Same.
2061 * amd64-nat.c: Same.
2062 * arc-tdep.c: Same.
2063 * arch/aarch64-insn.c: Same.
2064 * block.c: Same.
2065 * breakpoint.h: Same.
2066 * btrace.h: Same.
2067 * c-varobj.c: Same.
2068 * cli/cli-decode.c: Same.
2069 * cli/cli-script.c: Same.
2070 * cli/cli-utils.h: Same.
2071 * coff-pe-read.c: Same.
2072 * coffread.c: Same.
2073 * compile/compile-cplus-symbols.c: Same.
2074 * compile/compile-object-run.c: Same.
2075 * completer.c: Same.
2076 * corelow.c: Same.
2077 * cp-support.c: Same.
2078 * demangle.c: Same.
2079 * dwarf-index-write.c: Same.
2080 * dwarf2-frame.c: Same.
2081 * dwarf2-frame.h: Same.
2082 * eval.c: Same.
2083 * frame-base.h: Same.
2084 * frame.h: Same.
2085 * gdbcmd.h: Same.
2086 * gdbtypes.h: Same.
2087 * gnu-nat.c: Same.
2088 * guile/scm-objfile.c: Same.
2089 * i386-tdep.c: Same.
2090 * i386-tdep.h: Same.
2091 * infcall.c: Same.
2092 * infcall.h: Same.
2093 * linux-nat.c: Same.
2094 * m68k-tdep.c: Same.
2095 * macroexp.c: Same.
2096 * memattr.c: Same.
2097 * mi/mi-cmd-disas.c: Same.
2098 * mi/mi-getopt.h: Same.
2099 * mi/mi-main.c: Same.
2100 * minsyms.c: Same.
2101 * nat/aarch64-sve-linux-sigcontext.h: Same.
2102 * objfiles.h: Same.
2103 * ppc-linux-nat.c: Same.
2104 * ppc-linux-tdep.c: Same.
2105 * ppc-tdep.h: Same.
2106 * progspace.h: Same.
2107 * prologue-value.h: Same.
2108 * python/py-evtregistry.c: Same.
2109 * python/py-instruction.h: Same.
2110 * record-btrace.c: Same.
2111 * record-full.c: Same.
2112 * remote.c: Same.
2113 * rs6000-tdep.c: Same.
2114 * ser-tcp.c: Same.
2115 * sol-thread.c: Same.
2116 * sparc-sol2-tdep.c: Same.
2117 * sparc64-tdep.c: Same.
2118 * stabsread.c: Same.
2119 * symfile.c: Same.
2120 * symtab.h: Same.
2121 * target.c: Same.
2122 * tracepoint.c: Same.
2123 * tui/tui-data.h: Same.
2124 * tui/tui-io.c: Same.
2125 * tui/tui-win.c: Same.
2126 * tui/tui.c: Same.
2127 * unittests/rsp-low-selftests.c: Same.
2128 * user-regs.h: Same.
2129 * utils.c: Same.
2130 * utils.h: Same.
2131 * valarith.c: Same.
2132 * valops.c: Same.
2133 * valprint.c: Same.
2134 * valprint.h: Same.
2135 * value.c: Same.
2136 * value.h: Same.
2137 * varobj.c: Same.
2138 * x86-nat.h: Same.
2139 * xtensa-tdep.c: Same.
2140
21412019-10-25 Ali Tamur <tamur@google.com>
2142
2143 * charset.c (find_charset_names): Reflect API change.
2144
21452019-10-25 Christian Biesinger <cbiesinger@google.com>
2146
2147 * symtab.c (struct demangled_name_entry): Change demangled name
2148 to a unique_xmalloc_ptr<char>, now that we don't allocate it as
2149 part of the struct anymore.
2150 (symbol_set_names): No longer obstack allocate + copy the demangled
2151 name, just store the allocated name from bfd.
2152
21532019-10-25 Tom Tromey <tromey@adacore.com>
2154
2155 * dwarf2-frame.c (dwarf2_cie_table): Now a typedef.
2156 (bsearch_cie_cmp, add_cie): Remove.
2157 (find_cie): Reimplement.
2158 (decode_frame_entry_1, decode_frame_entry): Change type. Update.
2159 (dwarf2_build_frame_info): Update.
2160
21612019-10-24 H.J. Lu <hongjiu.lu@intel.com>
2162
2163 PR gdb/25126
2164 * symfile.c (reread_symbols): Call forget_cached_source_info to
2165 clear the stale source cache.
2166
21672019-10-24 Christian Biesinger <cbiesinger@google.com>
2168
2169 * configure: Regenerate.
2170 * configure.ac: Remove code that sets python_has_threads.
2171
21722019-10-24 Christian Biesinger <cbiesinger@google.com>
2173
2174 * config.in: Regenerate.
2175 * configure: Regenerate.
2176 * configure.ac: Remove the code that uses sed to get the python
2177 version and defines HAVE_LIBPYTHON2_6 / HAVE_LIBPYTHON2_7.
2178
21792019-10-24 Andrew Burgess <andrew.burgess@embecosm.com>
2180
2181 * python/py-progspace.c (pspy_block_for_pc): Return None for all
2182 error paths.
2183
21842019-10-23 Tom Tromey <tom@tromey.com>
2185
2186 * arc-tdep.c: Remove ".." from include.
2187 * frv-tdep.c: Remove ".." from include.
2188 * lm32-tdep.c: Remove ".." from include.
2189 * microblaze-tdep.c: Remove ".." from include.
2190 * or1k-tdep.h: Remove ".." from include.
2191 * s12z-tdep.c: Remove ".." from include.
2192 * Makefile.in (OPCODES_CFLAGS): Add comment.
2193 (TOP_CFLAGS): New variable.
2194 (INTERNAL_CFLAGS_BASE): Add TOP_CFLAGS.
2195
21962019-10-23 Tom Tromey <tom@tromey.com>
2197
2198 * Makefile.in (READLINE_DIR): Update.
2199
22002019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
2201
2202 * infcall.c (call_function_by_hand_dummy): Fix the function
2203 comment. And extract out a code section into...
2204 (reserve_stack_space): ...this new function.
2205
22062019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
2207
2208 * infcall.c (value_arg_coerce): Remove an unused parameter.
2209 (call_function_by_hand_dummy): Update the call to
2210 'value_arg_coerce'.
2211
22122019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
2213
2214 * infcall.c (call_function_by_hand_dummy): Refactor.
2215
22162019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
2217
2218 * MAINTAINERS (Write After Approval): Add Tankut Baris Aktemur.
2219
22202019-10-23 Tom Tromey <tom@tromey.com>
2221
2222 * configure: Rebuild.
2223 * configure.ac: Don't check for sigprocmask.
2224 * gdbsupport/common.m4 (GDB_AC_COMMON): Check for sigprocmask.
2225
22262019-10-23 Tom Tromey <tom@tromey.com>
2227
2228 * configure: Rebuild.
2229 * acinclude.m4: Use m4_include, not sinclude.
2230
22312019-10-23 Tom de Vries <tdevries@suse.de>
2232
2233 PR breakpoints/24687
2234 * symtab.c (iterate_over_some_symtabs): Apply gdb_realpath on fullname.
2235
22362019-10-22 Christian Biesinger <cbiesinger@google.com>
2237
2238 * symtab.c (struct demangled_name_entry) <language>: Change from
2239 bitfield to regular variable.
2240
22412019-10-22 Christian Biesinger <cbiesinger@google.com>
2242
2243 * symtab.c (struct demangled_name_entry): Add a constructor.
2244 (free_demangled_name_entry): New function to call the destructor
2245 for demangled_name_entry.
2246 (create_demangled_names_hash): Pass free_demangled_name_entry to
2247 htab_create_alloc.
2248 (symbol_set_names): Call placement new for demangled_name_entry.
2249 * utils.c: No longer include xxhash.h here, now that fast_hash
2250 is inlined in the header.
2251 * utils.h: Instead, include it here.
2252
22532019-10-22 Christian Biesinger <cbiesinger@google.com>
2254
2255 * Makefile.in: Link with libxxhash.
2256 * config.in: Regenerate.
2257 * configure: Regenerate.
2258 * configure.ac: Search for libxxhash.
2259 * utils.c (fast_hash): Use xxhash if present.
2260
22612019-10-22 Christian Biesinger <cbiesinger@google.com>
2262
2263 * utils.h (fast_hash): New function.
2264 * symtab.c (hash_demangled_name_entry): Call new function
2265 fast_hash.
2266
22672019-10-22 Christian Biesinger <cbiesinger@google.com>
2268
2269 * symtab.c (struct demangled_name_entry): Change type of mangled
2270 to gdb::string_view. Also adds a constructor that takes the
2271 mangled name.
2272 (hash_demangled_name_entry): Update.
2273 (eq_demangled_name_entry): Update.
2274 (free_demangled_name_entry): New function to call the destructor
2275 now that this is not a POD anymore.
2276 (create_demangled_names_hash): Pass free_demangled_name_entry to
2277 htab_create_alloc.
2278 (symbol_set_names): Update.
2279
22802019-10-21 Ali Tamur <tamu@google.com>
2281
2282 * dwarf2read.c (dir_index): Change type.
2283 (file_name_index): Likewise.
2284 (line_header::include_dir_at): Change comment and implementation on
2285 whether it is DWARF 5.
2286 (line_header::is_valid_file_index): New function.
2287 (line_header::file_name_at): Change comment and implementation on
2288 whether it is DWARF 5.
2289 (line_header::file_names): Change to private field renamed as
2290 m_file_names and introduce a new accessor method.
2291 (line_header::file_names_size): New method.
2292 (line_header::include_dirs): Change to private field and rename as
2293 m_include_dirs.
2294 (dw2_get_file_names_reader): Define local var at a smaller scope and
2295 reflect API change.
2296 (dwarf2_cu::setup_type_unit_groups): Reflect API change.
2297 (process_structure_scope): Likewise.
2298 (line_header::add_include_dir): Change message and reflect renaming.
2299 (line_header::add_file_name): Likewise.
2300 (read_formatted_entries): Handle DW_FORM_data16.
2301 (dwarf_decode_line_header): Fix line header length calculation.
2302 (psymtab_include_file_name): Change comment and API.
2303 (lnp_state_machine::m_file): Update comment and reflect type change.
2304 (lnp_state_machine::record_line): Reflect type change.
2305 (dwarf_decode_lines): Reflect API change.
2306 (file_file_name): Likewise.
2307 (file_full_name): Likewise.
2308
23092019-10-21 Andrew Burgess <andrew.burgess@embecosm.com>
2310
2311 * objfiles.c (sort_cmp): Ensure that !(a < a) holds true.
2312
23132019-10-21 Tom Tromey <tom@tromey.com>
2314
2315 * tui/tui-winsource.h (tui_exec_info_content): Remove typedef.
2316
23172019-10-21 Tom Tromey <tom@tromey.com>
2318
2319 * configure.ac (nm.h): Conditionally create nm.h link. Subst
2320 NM_H. Use AC_CONFIG_LINKS.
2321 * configure: Rebuild.
2322 * Makefile.in (NM_H): New variable.
2323 (generated_files): Add NM_H. Remove gcore.
2324 (nm.h, stamp-nmh): New targets.
2325
23262019-10-20 Tom Tromey <tom@tromey.com>
2327
2328 * objfiles.h (unlink_objfile, put_objfile_before): Don't declare.
2329 * objfiles.c (unlink_objfile): Move earlier. Now static. Remove
2330 obsolete comment.
2331 (put_objfile_before): Now static.
2332
23332019-10-19 Simon Marchi <simon.marchi@polymtl.ca>
2334
2335 * gdbsupport/common-utils.h (startswith): Change return type to
2336 bool.
2337
23382019-10-19 Christian Biesinger <cbiesinger@google.com>
2339
2340 * bcache.c (bcache::print_statistics): Use std::sort instead of qsort.
2341 * breakpoint.c (bp_locations_compare): Rename to...
2342 (bp_location_is_less_than): ...this, and change to std::sort semantics.
2343 (update_global_location_list): Use std::sort instead of qsort.
2344 * buildsym.c (compare_line_numbers): Rename to...
2345 (lte_is_less_than): ...this, and change to std::sort semantics.
2346 (buildsym_compunit::end_symtab_with_blockvector): Use std::sort
2347 instead of qsort.
2348 * disasm.c (compare_lines): Rename to...
2349 (line_is_less_than): ...this, and change to std::sort semantics.
2350 (do_mixed_source_and_assembly_deprecated): Call std::sort instead
2351 of qsort.
2352 * dwarf2-frame.c (qsort_fde_cmp): Rename to...
2353 (fde_is_less_than): ...this, and change to std::sort semantics.
2354 (dwarf2_build_frame_info): Call std::sort instead of qsort.
2355 * mdebugread.c (compare_blocks):
2356 (block_is_less_than): ...this, and change to std::sort semantics.
2357 (sort_blocks): Call std::sort instead of qsort.
2358 * objfiles.c (qsort_cmp): Rename to...
2359 (sort_cmp): ...this, and change to std::sort semantics.
2360 (update_section_map): Call std::sort instead of qsort.
2361 * remote.c (compare_pnums): Remove.
2362 (map_regcache_remote_table): Call std::sort instead of qsort.
2363 * utils.c (compare_positive_ints): Remove.
2364 * utils.h (compare_positive_ints): Remove.
2365 * xcoffread.c (compare_lte): Remove.
2366 (arrange_linetable): Call std::sort instead of qsort.
2367
23682019-10-19 Sergio Durigan Junior <sergiodj@redhat.com>
2369
2370 * symfile.c (init_entry_point_info): Fix typo.
2371 * i386-darwin-tdep.c (darwin_dwarf_signal_frame_p): Fix typo.
2372
23732019-10-18 Tom de Vries <tdevries@suse.de>
2374
2375 * aarch64-tdep.c: Fix typos in comments.
2376 * ada-lang.c: Same.
2377 * ada-tasks.c: Same.
2378 * alpha-tdep.c: Same.
2379 * alpha-tdep.h: Same.
2380 * amd64-nat.c: Same.
2381 * amd64-windows-tdep.c: Same.
2382 * arc-tdep.c: Same.
2383 * arc-tdep.h: Same.
2384 * arch-utils.c: Same.
2385 * arm-nbsd-tdep.c: Same.
2386 * arm-tdep.c: Same.
2387 * ax-gdb.c: Same.
2388 * blockframe.c: Same.
2389 * btrace.c: Same.
2390 * c-varobj.c: Same.
2391 * coff-pe-read.c: Same.
2392 * coffread.c: Same.
2393 * cris-tdep.c: Same.
2394 * darwin-nat.c: Same.
2395 * dbxread.c: Same.
2396 * dcache.c: Same.
2397 * disasm.c: Same.
2398 * dtrace-probe.c: Same.
2399 * dwarf-index-write.c: Same.
2400 * dwarf2-frame-tailcall.c: Same.
2401 * dwarf2-frame.c: Same.
2402 * dwarf2read.c: Same.
2403 * eval.c: Same.
2404 * exceptions.c: Same.
2405 * fbsd-tdep.c: Same.
2406 * findvar.c: Same.
2407 * frame.c: Same.
2408 * frv-tdep.c: Same.
2409 * gnu-v3-abi.c: Same.
2410 * go32-nat.c: Same.
2411 * h8300-tdep.c: Same.
2412 * hppa-tdep.c: Same.
2413 * i386-linux-tdep.c: Same.
2414 * i386-tdep.c: Same.
2415 * ia64-libunwind-tdep.c: Same.
2416 * ia64-tdep.c: Same.
2417 * infcmd.c: Same.
2418 * infrun.c: Same.
2419 * linespec.c: Same.
2420 * linux-nat.c: Same.
2421 * linux-thread-db.c: Same.
2422 * machoread.c: Same.
2423 * mdebugread.c: Same.
2424 * mep-tdep.c: Same.
2425 * mn10300-tdep.c: Same.
2426 * namespace.c: Same.
2427 * objfiles.c: Same.
2428 * opencl-lang.c: Same.
2429 * or1k-tdep.c: Same.
2430 * osabi.c: Same.
2431 * ppc-linux-nat.c: Same.
2432 * ppc-linux-tdep.c: Same.
2433 * ppc-sysv-tdep.c: Same.
2434 * printcmd.c: Same.
2435 * procfs.c: Same.
2436 * record-btrace.c: Same.
2437 * record-full.c: Same.
2438 * remote-fileio.c: Same.
2439 * remote.c: Same.
2440 * rs6000-tdep.c: Same.
2441 * s12z-tdep.c: Same.
2442 * score-tdep.c: Same.
2443 * ser-base.c: Same.
2444 * ser-go32.c: Same.
2445 * skip.c: Same.
2446 * sol-thread.c: Same.
2447 * solib-svr4.c: Same.
2448 * solib.c: Same.
2449 * source.c: Same.
2450 * sparc-nat.c: Same.
2451 * sparc-sol2-tdep.c: Same.
2452 * sparc-tdep.c: Same.
2453 * sparc64-tdep.c: Same.
2454 * stabsread.c: Same.
2455 * stack.c: Same.
2456 * symfile.c: Same.
2457 * symtab.c: Same.
2458 * target-descriptions.c: Same.
2459 * target-float.c: Same.
2460 * thread.c: Same.
2461 * utils.c: Same.
2462 * valops.c: Same.
2463 * valprint.c: Same.
2464 * value.c: Same.
2465 * varobj.c: Same.
2466 * windows-nat.c: Same.
2467 * xcoffread.c: Same.
2468 * xstormy16-tdep.c: Same.
2469 * xtensa-tdep.c: Same.
2470
24712019-10-17 Tom Tromey <tromey@adacore.com>
2472
2473 * configure: Rebuild.
2474 * configure.ac: Use AC_CONFIG_HEADERS. Create stamp-h there, not
2475 in AC_CONFIG_FILES invocation.
2476 * Makefile.in (Makefile, data-directory/Makefile, stamp-h): Use
2477 new-style config.status invocation.
2478
24792019-10-17 Tom de Vries <tdevries@suse.de>
2480
2481 * arm-nbsd-nat.c: Fix typos in comments.
2482 * arm-tdep.c: Same.
2483 * darwin-nat-info.c: Same.
2484 * dwarf2read.c: Same.
2485 * elfread.c: Same.
2486 * event-top.c: Same.
2487 * findvar.c: Same.
2488 * gdbtypes.c: Same.
2489 * hppa-tdep.c: Same.
2490 * i386-tdep.c: Same.
2491 * jit.c: Same.
2492 * main.c: Same.
2493 * mdebugread.c: Same.
2494 * moxie-tdep.c: Same.
2495 * nto-procfs.c: Same.
2496 * osabi.c: Same.
2497 * ppc-linux-tdep.c: Same.
2498 * remote.c: Same.
2499 * riscv-tdep.c: Same.
2500 * s390-tdep.c: Same.
2501 * sh-tdep.c: Same.
2502 * sparc-linux-tdep.c: Same.
2503 * sparc-nat.c: Same.
2504 * stack.c: Same.
2505 * target-descriptions.c: Same.
2506 * top.c: Same.
2507 * varobj.c: Same.
2508
25092019-10-16 Tom Tromey <tom@tromey.com>
2510
2511 * objfiles.h (struct objfile) <original_name>: Now const.
2512
25132019-10-16 Christian Biesinger <cbiesinger@google.com>
2514
2515 * gdbsupport/gdb_setjmp.h (SIGSETJMP): Allow passing in the value to
2516 pass on to sigsetjmp's second argument.
2517 * cp-support.c (gdb_demangle): Unblock SIGSEGV if we caught a crash.
2518
25192019-10-16 Keith Seitz <keiths@redhat.com>
2520
2521 PR gdb/23567
2522 * dwarf2read.c (dwarf2_per_objfile::locate_sections): Discard
2523 sections whose size is greater than the file size.
2524
25252019-10-16 Jim Wilson <jimw@sifive.com>
2526
2527 * riscv-tdep.c (riscv_gcc_target_options): New.
2528 (riscv_gnu_triplet_regexp): New.
2529 (riscv_gdbarch_init): Call set_gdbarch_gcc_triplet_options and
2530 set_gdbarch_gnu_triplet_regexp.
2531
25322019-10-16 Christian Biesinger <cbiesinger@google.com>
2533
2534 * Makefile.in: Add xml-builtin.h.
2535 * features/feature_to_c.sh: Add an include for xml-builtin.h
2536 to ensure that the compiler checks that the types match.
2537 * xml-builtin.h: New file.
2538 * xml-support.c (fetch_xml_builtin): Add missing const.
2539 * xml-support.h: Remove declaration of xml_builtins.
2540
25412019-10-16 Tom de Vries <tdevries@suse.de>
2542
2543 PR tdep/25096
2544 * amd64-tdep.c (amd64_classify_aggregate_field): Factor out of ...
2545 (amd64_classify_aggregate): ... here.
2546 (amd64_classify_aggregate_field): Handled fiels of nested structs
2547 recursively.
2548
25492019-10-16 Tom de Vries <tdevries@suse.de>
2550
2551 PR tdep/24104
2552 * amd64-tdep.c (amd64_push_arguments): Handle AMD64_NO_CLASS in loop
2553 that handles 'theclass'.
2554
25552019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
2556
2557 * linespec.c (decode_digits_ordinary): Update comment.
2558 * make-target-delegates: No longer need to handle VEC case.
2559 * memrange.c (normalize_mem_ranges): Update comment.
2560 * namespace.c (add_using_directive): Update comment.
2561 * objc-lang.c (uniquify_strings): Update comment.
2562 * ppc-linux-nat.c (struct thread_points): Update comment.
2563 * probe.h (find_probes_in_objfile): Update comment.
2564 * target.h (enum flash_preserve_mode): Update comment.
2565 * varobj.c (varobj_restrict_range): Update comment.
2566 * varobj.h (varobj_list_children): Update comment.
2567
25682019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
2569
2570 * Makefile.in: Remove references to vec.h and vec.c.
2571 * aarch64-tdep.c: No longer include vec.h.
2572 * ada-lang.c: Likewise.
2573 * ada-lang.h: Likewise.
2574 * arm-tdep.c: Likewise.
2575 * ax.h: Likewise.
2576 * breakpoint.h: Likewise.
2577 * charset.c: Likewise.
2578 * cp-support.h: Likewise.
2579 * dtrace-probe.c: Likewise.
2580 * dwarf2read.c: Likewise.
2581 * extension.h: Likewise.
2582 * gdb_bfd.c: Likewise.
2583 * gdbsupport/gdb_vecs.h: Likewise.
2584 * gdbsupport/vec.c: Remove.
2585 * gdbsupport/vec.h: Remove.
2586 * gdbthread.h: Likewise.
2587 * guile/scm-type.c: Likewise.
2588 * inline-frame.c: Likewise.
2589 * machoread.c: Likewise.
2590 * memattr.c: Likewise.
2591 * memrange.h: Likewise.
2592 * namespace.h: Likewise.
2593 * nat/linux-btrace.h: Likewise.
2594 * osdata.c: Likewise.
2595 * parser-defs.h: Likewise.
2596 * progspace.h: Likewise.
2597 * python/py-type.c: Likewise.
2598 * record-btrace.c: Likewise.
2599 * rust-exp.y: Likewise.
2600 * solib-target.c: Likewise.
2601 * stap-probe.c: Likewise.
2602 * target-descriptions.c: Likewise.
2603 * target-memory.c: Likewise.
2604 * target.h: Likewise.
2605 * varobj.c: Likewise.
2606 * varobj.h: Likewise.
2607 * xml-support.h: Likewise.
2608
26092019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
2610
2611 * gdb/dwarf2read.c (dwarf2_per_objfile::~dwarf2_per_objfile):
2612 Update for new std::vector based implementation.
2613 (process_psymtab_comp_unit_reader): Likewise.
2614 (scan_partial_symbols): Likewise.
2615 (recursively_compute_inclusions): Likewise.
2616 (compute_compunit_symtab_includes): Likewise.
2617 (process_imported_unit_die): Likewise.
2618 (queue_and_load_dwo_tu): Likewise.
2619 (follow_die_sig_1): Likewise.
2620 * gdb/dwarf2read.h: Remove DEF_VEC_P.
2621 (typedef dwarf2_per_cu_ptr): Remove.
2622 (struct dwarf2_per_cu_data) <imported_symtabs_empty>: New
2623 function.
2624 (struct dwarf2_per_cu_data) <imported_symtabs_push>: New function.
2625 (struct dwarf2_per_cu_data) <imported_symtabs_size>: New function.
2626 (struct dwarf2_per_cu_data) <imported_symtabs_free>: New function.
2627 (struct dwarf2_per_cu_data) <imported_symtabs>: Change to
2628 std::vector.
2629
26302019-10-15 Tom Tromey <tromey@adacore.com>
2631
2632 * windows-nat.c (windows_nat_target::resume): Use %x when logging
2633 TID.
2634
26352019-10-15 Tom Tromey <tromey@adacore.com>
2636
2637 * windows-nat.c (windows_nat_target::fetch_registers)
2638 (windows_nat_target::store_registers): Rename "pid" to "tid".
2639
26402019-10-15 Tom Tromey <tromey@adacore.com>
2641
2642 * gdbarch.h, gdbarch.c: Rebuild.
2643 * gdbarch.sh (gcc_target_options): Change return type to
2644 std::string.
2645 * compile/compile.c (get_args): Update.
2646 * nios2-tdep.c (nios2_gcc_target_options): Return std::string.
2647 * arm-linux-tdep.c (arm_linux_gcc_target_options): Return
2648 std::string.
2649 * aarch64-linux-tdep.c (aarch64_linux_gcc_target_options): Return
2650 std::string.
2651 * arch-utils.c (default_gcc_target_options): Return std::string.
2652 * arch-utils.h (default_gcc_target_options): Return std::string.
2653 * s390-tdep.c (s390_gcc_target_options): Return std::string.
2654
26552019-10-15 Christian Biesinger <cbiesinger@google.com>
2656
2657 * breakpoint.c (breakpoint_chain): Make static.
2658 * tui/tui-winsource.c: Call iterate_over_breakpoints instead
2659 of accessing breakpoint_chain.
2660
26612019-10-15 Christian Biesinger <cbiesinger@google.com>
2662
2663 * breakpoint.c (iterate_over_breakpoints): Change function pointer
2664 to a gdb::function_view and return value to bool.
2665 * breakpoint.h (iterate_over_breakpoints): Likewise.
2666 * dummy-frame.c (pop_dummy_frame_bpt): Update.
2667 (pop_dummy_frame): Update.
2668 * guile/scm-breakpoint.c (bpscm_build_bp_list): Update.
2669 (gdbscm_breakpoints): Update.
2670 * python/py-breakpoint.c (build_bp_list): Update.
2671 (gdbpy_breakpoints): Update.
2672 * python/py-finishbreakpoint.c (bpfinishpy_detect_out_scope_cb):
2673 Update.
2674 (bpfinishpy_handle_stop): Update.
2675 (bpfinishpy_handle_exit): Update.
2676 * solib-svr4.c (svr4_update_solib_event_breakpoint): Update.
2677 (svr4_update_solib_event_breakpoints): Update.
2678
26792019-10-15 Andreas Arnez <arnez@linux.ibm.com>
2680
2681 * s390-tdep.c (s390_effective_inner_type): Ignore static fields
2682 when unwrapping single-field structs.
2683
26842019-10-14 Simon Marchi <simon.marchi@polymtl.ca>
2685
2686 * dwarf2read.c: Remove includes.
2687
26882019-10-13 Simon Marchi <simon.marchi@polymtl.ca>
2689
2690 * ui-out.c (ui_out::call_do_message): Silence
2691 -Wformat-nonliteral warning.
2692
26932019-10-12 Simon Marchi <simon.marchi@polymtl.ca>
2694
2695 * breakpoint.c: Remove some includes: continuations.h, skip.h,
2696 mi/mi-main.h, readline/readline.h, readline/history.h. Add
2697 include: readline/tilde.h.
2698
26992019-10-12 Christian Biesinger <cbiesinger@google.com>
2700
2701 * remote.c (remote_target::get_trace_status): Remove declaration of
2702 trace_regblock_size.
2703
27042019-10-12 Christian Biesinger <cbiesinger@google.com>
2705
2706 * cli/cli-cmds.c (max_user_call_depth): Move comment to header.
2707 (show_user): Remove declaration of cmdlist.
2708 * cli/cli-cmds.h (max_user_call_depth): Declare.
2709 * cli/cli-script.c (execute_user_command): Remove declaration
2710 of max_user_call_depth.
2711
27122019-10-11 Jim Wilson <jimw@sifive.com>
2713
2714 * gdbsupport/print-utils.h (pulongest): Fix comment.
2715 (plongest): Likewise.
2716 (phex): Add missing comment, mention leading zeros.
2717 (phex_nz): Add mention of no leading zeros to comment.
2718
2719 * riscv-tdep.c (riscv_push_dummy_code): Change %lld to %s and use
2720 plongest instead of unsigned long long cast.
2721
27222019-10-10 Christian Biesinger <cbiesinger@google.com>
2723
2724 * main.c (captured_main_1): Include gdbtk.h and remove declarations
2725 for external_editor_command and gdbtk_test.
2726
27272019-10-10 Christian Biesinger <cbiesinger@google.com>
2728
2729 * mi/mi-cmd-var.c (varobjdebug): Remove declaration.
2730 * varobj.c (varobjdebug): Move comment to...
2731 * varobj.h (varobjdebug): ...here, and declare.
2732
27332019-10-09 Tom Tromey <tom@tromey.com>
2734
2735 * tui/tui-regs.c (tui_data_window::show_registers): Don't call
2736 erase_data_content.
2737
27382019-10-09 Tom Tromey <tom@tromey.com>
2739
2740 * tui/tui-wingeneral.h (tui_delete_win): Don't declare.
2741 * tui/tui-stack.c (tui_locator_window::rerender): Update.
2742 * tui/tui-command.c (tui_cmd_window::resize)
2743 (tui_refresh_cmd_win): Update.
2744 * tui/tui-win.c (tui_resize_all, tui_set_focus_command): Update.
2745 * tui/tui.c (tui_rl_other_window, tui_enable): Update.
2746 * tui/tui-data.c (~tui_gen_win_info): Remove.
2747 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
2748 * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts)
2749 (tui_redisplay_readline, tui_mld_flush)
2750 (tui_mld_erase_entire_line, tui_mld_getc, tui_getc): Update.
2751 * tui/tui-regs.c (tui_data_window::delete_data_content_windows)
2752 (tui_data_window::erase_data_content)
2753 (tui_data_item_window::rerender)
2754 (tui_data_item_window::refresh_window): Update.
2755 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window)
2756 (box_win, tui_gen_win_info::make_window)
2757 (tui_gen_win_info::make_visible): Update.
2758 (tui_delete_win): Remove.
2759 * tui/tui-winsource.c
2760 (tui_source_window_base::do_erase_source_content): Update.
2761 (tui_show_source_line, tui_source_window_base::update_tab_width)
2762 (tui_source_window_base::update_exec_info): Update.
2763 * tui/tui-data.h (struct curses_deleter): New.
2764 (struct tui_gen_win_info) <handle>: Now a unique_ptr.
2765 (struct tui_gen_win_info) <~tui_gen_win_info>: Define.
2766
27672019-10-09 Tom Tromey <tom@tromey.com>
2768
2769 * tui/tui-wingeneral.h (struct tui_gen_win_info): Don't declare.
2770
27712019-10-09 Tom Tromey <tom@tromey.com>
2772
2773 * tui/tui-data.c (tui_win_is_auxiliary): Remove.
2774 * tui/tui-data.h (tui_win_is_auxiliary): Don't declare.
2775
27762019-10-09 Tom Tromey <tom@tromey.com>
2777
2778 * tui/tui-disasm.c (tui_get_low_disassembly_address): Compute
2779 window height directly.
2780 * tui/tui-layout.h (tui_default_win_viewport_height): Don't
2781 declare.
2782 * tui/tui-layout.c (tui_default_win_height): Remove.
2783 (tui_default_win_viewport_height): Remove.
2784
27852019-10-09 Tom Tromey <tom@tromey.com>
2786
2787 * tui/tui.h: Remove comments.
2788
27892019-10-09 Tom de Vries <tdevries@suse.de>
2790
2791 * python/lib/gdb/printer/bound_registers.py: Use
2792 '^builtin_type_bound128' as regexp argument for
2793 add_builtin_pretty_printer.
2794
27952019-10-09 Christian Biesinger <cbiesinger@google.com>
2796
2797 * guile/guile.c (guile_extension_script_ops): Remove forward
2798 declaration and mark as static.
2799 (guile_script_ops): Likewise.
2800 (extension_language_guile): Move further down in the file so
2801 it can reference the definitions for guile_{extension_,}script_ops.
2802
28032019-10-09 Andreas Arnez <arnez@linux.ibm.com>
2804
2805 * s390-tdep.c (390_process_record): Handle new arch13 instructions
2806 except SORTL, DFLTCC, and KDSA.
2807
28082019-10-08 Tom Tromey <tromey@adacore.com>
2809
2810 * windows-nat.c (struct windows_thread_info_struct) <sf>: Remove.
2811 (struct safe_symbol_file_add_args): Remove.
2812
28132019-10-08 Tom Tromey <tromey@adacore.com>
2814
2815 * windows-nat.c: Don't include buildsym-legacy.h.
2816
28172019-10-08 Tom Tromey <tromey@adacore.com>
2818
2819 * contrib/ari/gdb_ari.sh (%p): Allow gdb-specific %p extensions.
2820
28212019-10-08 Christian Biesinger <cbiesinger@google.com>
2822
2823 * gdbtypes.c (overload_debug): Move comment to header.
2824 * gdbtypes.h (overload_debug): Declare.
2825 * valops.c: Remove declaration of overload_debug, instead
2826 include gdbtypes.h.
2827
28282019-10-08 Christian Biesinger <cbiesinger@google.com>
2829
2830 * language.c (show_language_command): Pass lang_frame_mismatch_warn
2831 through _().
2832 (lang_frame_mismatch_warn): Make const, mark with N_(), and
2833 move comment...
2834 * language.h (lang_frame_mismatch_warn): ... here. Also add
2835 declaration.
2836 * top.c (lang_frame_mismatch_warn): Remove declaration.
2837 (check_frame_language_change): Pass lang_frame_mismatch_warn
2838 through _().
2839
28402019-10-07 Christian Biesinger <cbiesinger@google.com>
2841
2842 * c-lang.h (vtbl_ptr_name): Declare.
2843 * cp-valprint.c (vtbl_ptr_name): Remove "extern" now that we get
2844 it from the header.
2845 * stabsread.c (define_symbol): Remove declaration of vtbl_ptr_name.
2846
28472019-10-07 Christian Biesinger <cbiesinger@google.com>
2848
2849 * charset.c (your_gdb_wchar_t_is_bogus): Replace with a
2850 gdb_static_assert.
2851
28522019-10-07 Weimin Pan <weimin.pan@oracle.com>
2853
2854 * ../Makefile.def (dependencies): Add all-libctf to all-gdb
2855 * ../Makefile.in: Add "all-gdb: maybe-all-libctf"
2856 * ctfread.c: New file.
2857 * ctfread.h: New file.
2858 * elfread.c: Include ctfread.h.
2859 (struct elfinfo text_p): New member ctfsect.
2860 (elf_locate_sections): Mark CTF section.
2861 (elf_symfile_read): Call elfctf_build_psymtabs.
2862 * Makefile.in (LIBCTF): Add.
2863 (CLIBS): Use it.
2864 (CDEPS): Likewise.
2865 (DIST): Add ctfread.c.
2866
28672019-10-07 Andrew Burgess <andrew.burgess@embecosm.com>
2868
2869 * ctfread.c (struct nextfield): Renamed to ...
2870 (struct ctf_nextfield): ... this.
2871 (struct field_info): Renamed to ...
2872 (strut ctf_field_info): ... this.
2873 (attach_fields_to_type): Update for renamed structures.
2874 (ctf_add_member_cb): Likewise.
2875 (ctf_add_enum_member_cb): Likewise.
2876 (process_struct_members): Likewise.
2877 (process_enum_type): Likewise.
2878
28792019-10-07 Weimin Pan <weimin.pan@oracle.com>
2880
2881 * tracectf.h: Rename, was ctf.h.
2882 * tracectf.c: Rename, was ctf.c, replace ctf.h with tracectf.h.
2883 * tracefile.c: Likewise.
2884 * tracepoint.c: Remove unused include ctf.h.
2885 * mi/mi-main.c: Likewise.
2886 * Makefile.in Replace ctf.c with tracectf.c.
2887
28882019-10-06 Joel Brobecker <brobecker@adacore.com>
2889
2890 * version.in: Change version number to "9.0.50.DATE-git".
2891
28922019-10-03 Tom Tromey <tom@tromey.com>
2893
2894 PR rust/24976:
2895 * dwarf2read.c (quirk_rust_enum): Handle single-element unions.
2896
28972019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
2898
2899 * f-lang.c (f_language_defn): Use cp_get_symbol_name_matcher and
2900 cp_search_name_hash.
2901 * NEWS: Add entry about nested function support.
2902
29032019-10-03 Bernhard Heckel <bernhard.heckel@intel.com>
2904 Andrew Burgess <andrew.burgess@embecosm.com>
2905
2906 * cp-namespace.c (cp_search_static_and_baseclasses): Only search
2907 for nested static variables when searchin VAR_DOMAIN.
2908 * dwarf2read.c (add_partial_symbol): Add nested subroutines to the
2909 global scope, update comment.
2910 (add_partial_subprogram): Call add_partial_subprogram recursively
2911 for nested subroutines when processinng Fortran.
2912 (load_partial_dies): Process the child entities of a subprogram
2913 when processing Fortran.
2914 (partial_die_parent_scope): Handle building scope
2915 for Fortran nested functions.
2916 (process_die): Record that nested functions have a scope.
2917 (new_symbol): Always record Fortran subprograms on the global
2918 symbol list.
2919 (determine_prefix): How to build the prefix for Fortran
2920 subprograms.
2921
29222019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
2923
2924 * linux-nat.c (linux_nat_filter_event): Don't ignore SIGSTOP if we
2925 have just sent the thread a SIGSTOP and are waiting for it to
2926 arrive.
2927
29282019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
2929
2930 * btrace.c (btrace_add_pc): Remove whitespace before the template
2931 parameter in 'std::vector <...>'.
2932 (parse_xml_btrace_block): Likewise.
2933 (btrace_maint_decode_pt): Likewise.
2934 (btrace_maint_update_packets): Likewise.
2935 (btrace_maint_print_packets): Likewise.
2936 * btrace.h (struct btrace_maint_info): Likewise.
2937 * dwarf2read.c (struct type_unit_group): Likewise.
2938 (build_type_psymtabs_reader): Likewise.
2939 * gdbsupport/btrace-common.c (btrace_data_append): Likewise.
2940 * gdbsupport/btrace-common.h (struct btrace_data_bts): Likewise.
2941 * nat/linux-btrace.c (perf_event_read_bts): Likewise.
2942
29432019-10-03 Tom de Vries <tdevries@suse.de>
2944
2945 * cli/cli-style.c (_initialize_cli_style): Adding a '.' at the end of
2946 the first line of the help text for set/show style metadata.
2947
29482019-10-02 Tom Tromey <tromey@adacore.com>
2949
2950 * Makefile.in (COMMON_SFILES): Add common-inferior.c.
2951 * gdbsupport/common-inferior.c: New file.
2952 * infcmd.c (startup_with_shell): Don't define.
2953 * nat/fork-inferior.h (startup_with_shell): Don't declare.
2954 * gdbsupport/common-inferior.h (startup_with_shell): Declare.
2955 * inferior.h (startup_with_shell): Don't declare.
2956
29572019-10-02 Christian Biesinger <cbiesinger@google.com>
2958
2959 * gdbsupport/gdb_assert.h: Include errors.h.
2960 * gdbsupport/gdb_string_view.h: Include gdb_assert.h.
2961
29622019-10-02 Tom Tromey <tromey@adacore.com>
2963
2964 * NEWS: Add $_ada_exception entry.
2965 * ada-lang.c (struct ada_catchpoint): Add constructor.
2966 <m_kind>: New member.
2967 (allocate_location_exception, re_set_exception): Remove
2968 "ex" parameter.
2969 (should_stop_exception): Compute $_ada_exception.
2970 (check_status_exception, print_it_exception)
2971 (print_one_exception, print_mention_exception): Remove
2972 "ex" parameter.
2973 (allocate_location_catch_exception, re_set_catch_exception)
2974 (check_status_exception, print_it_catch_exception)
2975 (print_one_catch_exception, print_mention_catch_exception)
2976 (print_recreate_catch_exception)
2977 (allocate_location_catch_exception_unhandled)
2978 (re_set_catch_exception_unhandled)
2979 (check_status_exception, print_it_catch_exception_unhandled)
2980 (print_one_catch_exception_unhandled)
2981 (print_mention_catch_exception_unhandled)
2982 (print_recreate_catch_exception_unhandled)
2983 (allocate_location_catch_assert, re_set_catch_assert)
2984 (check_status_assert, print_it_catch_assert)
2985 (print_one_catch_assert, print_mention_catch_assert)
2986 (print_recreate_catch_assert)
2987 (allocate_location_catch_handlers, re_set_catch_handlers)
2988 (check_status_handlers, print_it_catch_handlers)
2989 (print_one_catch_handlers, print_mention_catch_handlers)
2990 (print_recreate_catch_handlers): Remove.
2991 (create_ada_exception_catchpoint): Update.
2992 (initialize_ada_catchpoint_ops): Update.
2993
29942019-10-02 Tom Tromey <tromey@adacore.com>
2995
2996 * ada-lang.c (ada_lookup_simple_minsyms): Remove.
2997 (create_excep_cond_exprs): Simplify exception string computation.
2998 (ada_exception_catchpoint_cond_string): Likewise.
2999
30002019-10-02 Tom Tromey <tromey@adacore.com>
3001
3002 * symmisc.c (dump_msymbols): Don't use MSYMBOL_VALUE_ADDRESS.
3003 * ada-lang.c (lesseq_defined_than): Handle
3004 LOC_STATIC.
3005 * dwarf2read.c (dwarf2_per_objfile): Add can_copy
3006 parameter.
3007 (dwarf2_has_info): Likewise.
3008 (new_symbol): Set maybe_copied on symbol when
3009 appropriate.
3010 * dwarf2read.h (dwarf2_per_objfile): Add can_copy
3011 parameter.
3012 <can_copy>: New member.
3013 * elfread.c (record_minimal_symbol): Set maybe_copied
3014 on symbol when appropriate.
3015 (elf_symfile_read): Update call to dwarf2_has_info.
3016 * minsyms.c (lookup_minimal_symbol_linkage): New
3017 function.
3018 * minsyms.h (lookup_minimal_symbol_linkage): Declare.
3019 * symtab.c (get_symbol_address, get_msymbol_address):
3020 New functions.
3021 * symtab.h (get_symbol_address, get_msymbol_address):
3022 Declare.
3023 (SYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_ADDRESS): Handle
3024 maybe_copied.
3025 (struct symbol, struct minimal_symbol) <maybe_copied>:
3026 New member.
3027
30282019-10-02 Tom Tromey <tromey@adacore.com>
3029
3030 * source.c (struct current_source_location): New.
3031 (current_source_key): New global.
3032 (current_source_symtab, current_source_line)
3033 (current_source_pspace): Remove.
3034 (get_source_location): New function.
3035 (get_current_source_symtab_and_line)
3036 (set_default_source_symtab_and_line)
3037 (set_current_source_symtab_and_line)
3038 (clear_current_source_symtab_and_line, select_source_symtab)
3039 (info_source_command, print_source_lines_base)
3040 (info_line_command, search_command_helper, _initialize_source):
3041 Update.
3042
30432019-10-02 Tom Tromey <tromey@adacore.com>
3044
3045 * source.c (select_source_symtab): Don't call
3046 decode_line_with_current_source.
3047
30482019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
3049
3050 * symtab.c (lookup_global_symbol): Search global block.
3051
30522019-10-02 Tom Tromey <tromey@adacore.com>
3053
3054 * coffread.c (process_coff_symbol): Update.
3055 * dwarf2read.c (var_decode_location, new_symbol): Update.
3056 * mdebugread.c (parse_symbol): Update.
3057 * objfiles.c (relocate_one_symbol): Update.
3058 * stabsread.c (define_symbol, fix_common_block)
3059 (scan_file_globals): Update.
3060 * symtab.h (SYMBOL_VALUE_ADDRESS): Expand to an rvalue.
3061 (SET_SYMBOL_VALUE_ADDRESS): New macro.
3062 * xcoffread.c (process_xcoff_symbol): Update.
3063
30642019-10-02 Andreas Arnez <arnez@linux.ibm.com>
3065
3066 * MAINTAINERS: Update my email address.
3067
30682019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
3069
3070 * dwarf2read.c (struct type_unit_group) <tus>: Convert to
3071 std::vector.
3072 (build_type_psymtabs_reader): Update for std::vector.
3073 (build_type_psymtab_dependencies): Likewise.
3074 * dwarf2read.h: Remove use of DEF_VEC_P.
3075 (typedef sig_type_ptr): Delete.
3076
30772019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
3078
3079 * btrace.c (btrace_maint_clear): Update to handle change from VEC
3080 to std::vector.
3081 (btrace_maint_decode_pt): Likewise, and move allocation of the
3082 vector outside of the loop.
3083 (btrace_maint_update_packets): Update to handle change from VEC to
3084 std::vector.
3085 (btrace_maint_print_packets): Likewise.
3086 (maint_info_btrace_cmd): Likewise.
3087 * btrace.h: Remove use of DEF_VEC_O.
3088 (typedef btrace_pt_packet_s): Delete.
3089 (struct btrace_maint_info) <packets>: Change fromm VEC to
3090 std::vector.
3091 * gdbsupport/btrace-common.h: Remove 'vec.h' include.
3092
30932019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
3094
3095 * btrace.c (btrace_compute_ftrace_bts): Update for std::vector,
3096 make accesses into the vector constant references.
3097 (btrace_add_pc): Update for std::vector.
3098 (btrace_stitch_bts): Likewise.
3099 (parse_xml_btrace_block): Likewise.
3100 (btrace_maint_update_packets): Likewise.
3101 (btrace_maint_print_packets): Likewise.
3102 (maint_info_btrace_cmd): Likewise.
3103 * gdbsupport/btrace-common.c (btrace_data::fini): Update for
3104 std::vector.
3105 (btrace_data::empty): Likewise.
3106 (btrace_data_append): Likewise.
3107 * gdbsupport/btrace-common.h: Remove use of DEF_VEC_O.
3108 (typedef btrace_block_s): Delete.
3109 (struct btrace_block): Add constructor.
3110 (struct btrace_data_bts) <blocks>: Change to std::vector.
3111 * nat/linux-btrace.c (perf_event_read_bts): Update for
3112 std::vector.
3113 (linux_read_bts): Likewise.
3114
31152019-10-01 Tom Tromey <tom@tromey.com>
3116
3117 * cli/cli-logging.c (show_logging_filename): Use styled_string.
3118
31192019-10-01 Tom Tromey <tom@tromey.com>
3120
3121 * stack.c (print_frame, info_frame_command_core): Use
3122 styled_string.
3123 * linux-thread-db.c (try_thread_db_load_1)
3124 (try_thread_db_load_from_pdir_1): Use styled_string.
3125 * auto-load.c (file_is_auto_load_safe, execute_script_contents)
3126 (auto_load_section_scripts, info_auto_load_local_gdbinit)
3127 (maybe_print_unsupported_script_warning)
3128 (maybe_print_script_not_found_warning): Use styled_string.
3129 * ada-lang.c (user_select_syms): Use styled_string.
3130
31312019-10-01 Tom Tromey <tom@tromey.com>
3132
3133 * p-lang.c (pascal_printstr): Use metadata style.
3134 * value.c (show_convenience): Use metadata style.
3135 * valprint.c (valprint_check_validity, val_print_optimized_out)
3136 (val_print_not_saved, val_print_unavailable)
3137 (val_print_invalid_address, generic_val_print, val_print)
3138 (value_check_printable, val_print_array_elements): Use metadata
3139 style.
3140 * ui-out.h (class ui_out) <field_fmt>: New overload.
3141 <do_field_fmt>: Add style parameter.
3142 * ui-out.c (ui_out::field_fmt): New overload.
3143 * typeprint.c (type_print_unknown_return_type)
3144 (val_print_not_allocated, val_print_not_associated): Use metadata
3145 style.
3146 * tui/tui-out.h (class tui_ui_out) <do_field_fmt>: Add style
3147 parameter.
3148 * tui/tui-out.c (tui_ui_out::do_field_fmt): Update.
3149 * tracepoint.c (tvariables_info_1): Use metadata style.
3150 * stack.c (print_frame_arg, print_frame_info, print_frame)
3151 (info_frame_command_core): Use metadata style.
3152 * skip.c (info_skip_command): Use metadata style.
3153 * rust-lang.c (rust_print_enum): Use metadata style.
3154 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
3155 metadata style.
3156 * python/py-framefilter.c (py_print_single_arg): Use metadata
3157 style.
3158 * printcmd.c (do_one_display, print_variable_and_value): Use
3159 metadata style.
3160 * p-valprint.c (pascal_val_print)
3161 (pascal_object_print_value_fields): Use metadata style.
3162 * p-typeprint.c (pascal_type_print_base): Use metadata style.
3163 * mi/mi-out.h (class mi_ui_out) <do_field_fmt>: Add style
3164 parameter.
3165 * mi/mi-out.c (mi_ui_out::do_field_fmt): Update.
3166 * m2-valprint.c (m2_print_long_set): Use metadata style.
3167 * m2-typeprint.c (m2_print_type): Use metadata style.
3168 * infcmd.c (print_return_value_1): Use metadata style.
3169 * gnu-v3-abi.c (print_one_vtable): Use metadata style.
3170 * f-valprint.c (info_common_command_for_block): Use metadata
3171 style.
3172 * f-typeprint.c (f_type_print_base): Use metadata style.
3173 * expprint.c (print_subexp_standard): Use metadata style.
3174 * cp-valprint.c (cp_print_value_fields): Use metadata style.
3175 * cli/cli-style.h (class cli_style_option): Add constructor.
3176 (metadata_style): Declare.
3177 * cli/cli-style.c (metadata_style): New global.
3178 (_initialize_cli_style): Register metadata style.
3179 * cli-out.h (class cli_ui_out) <do_field_fmt>: Add style
3180 parameter.
3181 * cli-out.c (cli_ui_out::do_field_fmt): Update.
3182 * c-typeprint.c (c_type_print_base_struct_union)
3183 (c_type_print_base_1): Use metadata style.
3184 * breakpoint.c (watchpoint_value_print)
3185 (print_one_breakpoint_location): Use metadata style.
3186 * break-catch-syscall.c (print_one_catch_syscall): Use metadata
3187 style.
3188 * break-catch-sig.c (signal_catchpoint_print_one): Use metadata
3189 style.
3190 * ada-valprint.c (val_print_packed_array_elements, printstr)
3191 (print_field_values, ada_val_print_ref, ada_val_print): Use
3192 metadata style.
3193 * ada-typeprint.c (print_array_type, ada_print_type): Use metadata
3194 style.
3195 * ada-tasks.c (print_ada_task_info, info_task): Use metadata
3196 style.
3197 * ada-lang.c (user_select_syms): Use metadata style.
3198
31992019-10-01 Tom Tromey <tom@tromey.com>
3200
3201 * cli/cli-cmds.c (pwd_command): Style output.
3202
32032019-10-01 Pedro Alves <palves@redhat.com>
3204 Tom Tromey <tom@tromey.com>
3205
3206 * symtab.c (print_symbol_info): Use %ps.
3207 (print_msymbol_info): Use %ps.
3208 * symfile.c (symbol_file_add_with_addrs): Use %ps.
3209 * printcmd.c (print_variable_and_value): Use %ps.
3210 * macrocmd.c (show_pp_source_pos): Use %ps.
3211 * infrun.c (print_exited_reason): Use ui_out::message.
3212 * breakpoint.c (watchpoint_check, print_one_breakpoint_location)
3213 (describe_other_breakpoints): Use ui_out::message and new
3214 formats.
3215 (say_where): Use new formats.
3216 (bkpt_print_it, tracepoint_print_one_detail): Use ui_out::message
3217 and new formats.
3218
32192019-10-01 Pedro Alves <palves@redhat.com>
3220 Tom Tromey <tom@tromey.com>
3221
3222 * unittests/format_pieces-selftests.c: Add gdb_format parameter.
3223 (test_gdb_formats): New function.
3224 (run_tests): Call it.
3225 (test_format_specifier): Update.
3226 * utils.h (fputs_filtered): Update comment.
3227 (vfprintf_styled, vfprintf_styled_no_gdbfmt)
3228 (fputs_styled_unfiltered): Declare.
3229 * utils.c (fputs_styled_unfiltered): New function.
3230 (vfprintf_maybe_filtered): Add gdbfmt parameter.
3231 (vfprintf_filtered): Update.
3232 (vfprintf_unfiltered, vprintf_filtered): Update.
3233 (vfprintf_styled, vfprintf_styled_no_gdbfmt): New functions.
3234 * ui-out.h (enum ui_out_flag) <unfiltered_output,
3235 disallow_ui_out_field>: New constants.
3236 (enum class field_kind): New.
3237 (struct base_field_s, struct signed_field_s): New.
3238 (signed_field): New function.
3239 (struct string_field_s): New.
3240 (string_field): New function.
3241 (struct styled_string_s): New.
3242 (styled_string): New function.
3243 (class ui_out) <message>: Add comment.
3244 <vmessage, call_do_message>: New methods.
3245 <do_message>: Add style parameter.
3246 * ui-out.c (ui_out::call_do_message, ui_out::vmessage): New
3247 methods.
3248 (ui_out::message): Rewrite.
3249 * mi/mi-out.h (class mi_ui_out) <do_message>: Add style
3250 parameter.
3251 * mi/mi-out.c (mi_ui_out::do_message): Add style parameter.
3252 * gdbsupport/format.h (class format_pieces) <format_pieces>: Add
3253 gdb_extensions parameter.
3254 (class format_piece): Add parameter to constructor.
3255 (n_int_args): New field.
3256 * gdbsupport/format.c (format_pieces::format_pieces): Add
3257 gdb_extensions parameter. Handle '*'.
3258 * cli-out.h (class cli_ui_out) <do_message>: Add style parameter.
3259 * cli-out.c (cli_ui_out::do_message): Add style parameter. Call
3260 vfprintf_styled_no_gdbfmt.
3261 (cli_ui_out::do_field_string, cli_ui_out::do_spaces)
3262 (cli_ui_out::do_text, cli_ui_out::field_separator): Allow
3263 unfiltered output.
3264 * ui-style.h (struct ui_file_style) <ptr>: New method.
3265
32662019-10-01 Tom Tromey <tom@tromey.com>
3267
3268 * unittests/format_pieces-selftests.c: Update. Add final format.
3269 * gdbsupport/format.c (format_pieces::format_pieces): Don't add
3270 empty literal pieces.
3271
32722019-10-01 Tom Tromey <tom@tromey.com>
3273
3274 * ui-out.h (enum class ui_out_style_kind): Remove.
3275 (class ui_out) <field_string, field_stsream, do_field_string>:
3276 Change type of "style".
3277 * ui-out.c (ui_out::field_core_addr, ui_out::field_stream)
3278 (ui_out::field_string): Update.
3279 * tui/tui-out.h (class tui_ui_out) <do_field_string>: Change type
3280 of "style".
3281 * tui/tui-out.c (tui_ui_out::do_field_string): Update.
3282 * tracepoint.c (print_one_static_tracepoint_marker): Update.
3283 * stack.c (print_frame_arg, print_frame_info, print_frame):
3284 Update.
3285 * source.c (print_source_lines_base): Update.
3286 * solib.c (info_sharedlibrary_command): Update.
3287 * skip.c (info_skip_command): Update.
3288 * record-btrace.c (btrace_call_history_src_line)
3289 (btrace_call_history): Update.
3290 * python/py-framefilter.c (py_print_frame): Update.
3291 * mi/mi-out.h (class mi_ui_out) <do_field_string>: Change type of
3292 "style".
3293 * mi/mi-out.c (mi_ui_out::do_table_header)
3294 (mi_ui_out::do_field_signed, mi_ui_out::do_field_unsigned)
3295 (mi_ui_out::do_field_string): Update.
3296 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
3297 Update.
3298 * cli-out.h (class cli_ui_out) <do_field_string>: Change type of
3299 "style".
3300 * cli-out.c (cli_ui_out::do_table_header)
3301 (cli_ui_out::do_field_signed, cli_ui_out::do_field_unsigned)
3302 (cli_ui_out::do_field_skip, cli_ui_out::do_field_string)
3303 (cli_ui_out::do_field_fmt): Update.
3304 * breakpoint.c (print_breakpoint_location): Update.
3305 (update_static_tracepoint): Update.
3306
33072019-10-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3308
3309 * main.c (relocate_gdbinit_path_maybe_in_datadir): Remove std::string
3310 conversion of gdb_datadir.
3311 (captured_main_1): Remove xstrdup when assigning to gdb_datadir,
3312 remove not needed c_str ().
3313
33142019-09-30 Ali Tamur <tamur@google.com>
3315
3316 * dwarf2read.c (skip_one_die): Handle DW_FORM_strx forms.
3317 (dwarf2_string_attr): Likewise.
3318
33192019-09-30 Ali Tamur <tamur@google.com>
3320
3321 * dwarf2read.c (process_full_comp_unit): Remove whitespace at the EOL.
3322 (process_full_type_unit): Likewise.
3323 (dump_die_shallow): Likewise.
3324 (cu_debug_loc_section): Likewise.
3325
33262019-09-28 Christian Biesinger <cbiesinger@google.com>
3327
3328 * minsyms.c (compare_minimal_symbols): Rename to...
3329 (minimal_symbol_is_less_than): ...this, and adjust to STL
3330 conventions (return bool, take arguments as references)
3331 (minimal_symbol_reader::install): Call std::sort instead
3332 of qsort.
3333
33342019-09-29 Christian Biesinger <cbiesinger@google.com>
3335
3336 * minsyms.h (msymbol_hash): Document that this is a case-insensitive
3337 hash and why.
3338 * objfiles.h (struct objfile_per_bfd_storage) <demangled_names_hash,
3339 msymbol_hash, msymbol_demangled_hash>: Improve comments.
3340
33412019-09-30 Simon Marchi <simon.marchi@polymtl.ca>
3342
3343 * psymtab.c (add_psymbol_to_list): Move comment to psympriv.h.
3344 * psympriv.h (add_psymbol_to_list): Move comment here and update
3345 it.
3346
33472019-09-29 Tom de Vries <tdevries@suse.de>
3348
3349 * contrib/cc-with-tweaks.sh (get_tmpdir): New function.
3350 Use $tmpdir/$(basename "$output_file").dwz instead of
3351 "${output_file}.dwz".
3352
33532019-09-28 Simon Marchi <simon.marchi@polymtl.ca>
3354
3355 PR gdb/25045
3356 * hppa-linux-nat.c: Include gdbarch.h.
3357
33582019-09-26 Christian Biesinger <cbiesinger@google.com>
3359
3360 * blockframe.c (find_pc_partial_function): Change return type to bool.
3361 * elfread.c (elf_gnu_ifunc_resolve_name): Likewise.
3362 * minsyms.c (in_gnu_ifunc_stub): Likewise.
3363 (stub_gnu_ifunc_resolve_name): Likewise.
3364 * symtab.c (compare_filenames_for_search): Likewise.
3365 (compare_glob_filenames_for_search): Likewise.
3366 (matching_obj_sections): Likewise.
3367 (symbol_matches_domain): Likewise.
3368 (find_line_symtab): Change out param EXACT_MATCH to bool *.
3369 (find_line_pc): Change return type to bool.
3370 (find_line_pc_range): Likewise.
3371 (producer_is_realview): Likewise.
3372 * symtab.h (symbol_matches_domain): Likewise.
3373 (find_pc_partial_function): Likewise.
3374 (find_pc_line_pc_range): Likewise.
3375 (in_gnu_ifunc_stub): Likewise.
3376 (struct gnu_ifunc_fns) <gnu_ifunc_resolve_name>: Likewise.
3377 (find_line_pc): Likewise.
3378 (find_line_pc_range): Likewise.
3379 (matching_obj_sections): Likewise.
3380 (find_line_symtab): Change out parameter to bool.
3381 (producer_is_realview): Change return type to bool.
3382 (compare_filenames_for_search): Likewise.
3383 (compare_glob_filenames_for_search): Likewise.
3384
33852019-09-26 Tom Tromey <tom@tromey.com>
3386
3387 * Makefile.in (COMMON_SFILES): Remove gdb_usleep.c.
3388 (HFILES_NO_SRCDIR): Remove gdb_usleep.h.
3389 * gdb_usleep.h: Remove.
3390 * gdb_usleep.c: Remove.
3391 * utils.c: Don't include gdb_usleep.h.
3392
33932019-09-26 Tom Tromey <tromey@adacore.com>
3394
3395 * python/py-type.c (type_to_type_object): Call check_typedef
3396 for stub types.
3397
33982019-09-26 Tom Tromey <tom@tromey.com>
3399
3400 * utils.h (initialize_utils): Don't declare.
3401 * top.c (gdb_init): Don't call initialize_utils.
3402 * utils.c (initialize_utils): Remove. Move contents...
3403 (_initialize_utils): ... here.
3404
34052019-09-25 Tom Tromey <tom@tromey.com>
3406
3407 * python/py-objfile.c (objfpy_get_build_id): Use bin2hex.
3408 * utils.h (make_hex_string): Don't declare.
3409 * utils.c (make_hex_string): Remove.
3410
34112019-09-24 Tom de Vries <tdevries@suse.de>
3412
3413 PR gdb/23815
3414 * amd64-linux-nat.c (amd64_linux_nat_target::fetch_registers):
3415 Initialize xstateregs before ptrace PTRACE_GETREGSET call.
3416
34172019-09-23 Dimitar Dimitrov <dimitar@dinux.eu>
3418
3419 * NEWS: Mention new simulator port for PRU.
3420
34212019-09-23 Christian Biesinger <cbiesinger@google.com>
3422
3423 * ada-exp.y (write_object_remaining): Update.
3424 * ada-lang.c (ada_decode): Return a std::string instead of a char*
3425 and eliminate the static buffer.
3426 (ada_decode_symbol): Update.
3427 (ada_la_decode): Update.
3428 (ada_sniff_from_mangled_name): Update.
3429 (is_valid_name_for_wild_match): Update.
3430 (ada_lookup_name_info::matches): Update and simplify.
3431 (name_matches_regex): Update.
3432 (ada_add_global_exceptions): Update.
3433 * ada-lang.h (ada_decode): Update signature.
3434 * ada-varobj.c (ada_varobj_describe_simple_array_child): Update.
3435 * dwarf-index-write.c (debug_names::insert): Update.
3436
34372019-09-21 Simon Marchi <simon.marchi@polymtl.ca>
3438
3439 * solib-svr4.c (svr4_iterate_over_objfiles_in_search_order): Fix
3440 formatting.
3441
34422019-09-21 Simon Marchi <simon.marchi@polymtl.ca>
3443
3444 * breakpoint.h (bp_location) <inserted, permanent, duplicate>:
3445 Change "nonzero" to "true" in documentation.
3446
34472019-09-20 Christian Biesinger <cbiesinger@google.com>
3448
3449 * solib-darwin.c (darwin_lookup_lib_symbol): Remove.
3450 (_initialize_darwin_solib): Don't set
3451 darwin_so_ops.lookup_lib_global_symbol.
3452 * solib-svr4.c (set_solib_svr4_fetch_link_map_offsets): Call
3453 set_gdbarch_iterate_over_objfiles_in_search_order.
3454 (elf_lookup_lib_symbol): Rename to...
3455 (svr4_iterate_over_objfiles_in_search_order): this, and update
3456 to iterate semantics.
3457 (_initialize_svr4_solib): Don't set lookup_lib_global_symbol.
3458 * solib.c (solib_global_lookup): Remove.
3459 * solist.h (struct target_so_ops): Remove lookup_lib_global_symbol.
3460 (solib_global_lookup): Remove.
3461 * symtab.c (lookup_global_or_static_symbol): Remove call to
3462 solib_global_lookup.
3463
34642019-09-20 Joel Brobecker <brobecker@adacore.com>
3465
3466 * NEWS: Move entries about default MI version now being
3467 version 3, and about the GDB/MI fix for multi-location
3468 breakpoints to the "since GDB 8.3" section.
3469
34702019-09-20 Joel Brobecker <brobecker@adacore.com>
3471
3472 GDB 8.3.1 released.
3473
34742019-09-20 Ulrich Weigand <uweigand@de.ibm.com>
3475
3476 * NEWS: Mention that Cell/B.E. debugging support was removed.
3477 * MAINTAINERS: Remove spu target.
3478
3479 * config/djgpp/fnchange.lst: Remove entries for removed files.
3480
3481 * Makefile.in (ALL_TARGET_OBS): Remove solib-spu.o,
3482 spu-multiarch.o, and spu-tdep.o.
3483 (HFILES_NO_SRCDIR): Remove solib-spu.h and spu-tdep.h.
3484 (ALLDEPFILES): Remove solib-spu.c, spu-linux-nat.c,
3485 spu-multiarch.c, and spu-tdep.c.
3486 * spu-linux-nat.c: Remove file.
3487 * spu-multiarch.c: Remove file.
3488 * spu-tdep.c: Remove file.
3489 * spu-tdep.h: Remove file.
3490 * solib-spu.c: Remove file.
3491 * solib-spu.h: Remove file.
3492
3493 * configure.host (powerpc64*-*-linux*): Remove Cell/B.E. support.
3494 * configure.nat (spu-linux): Remove.
3495 * configure.tgt (powerpc*-*-linux*): Remove solib-spu.o and
3496 solib-multiarch.o from gdb_target_obs.
3497 (spu*-*-*): Remove.
3498
3499 * arch/ppc-linux-common.h (struct ppc_linux_features): Remove "cell"
3500 feature flag.
3501 (ppc_linux_no_features): Update.
3502 * arch/ppc-linux-common.c (ppc_linux_match_description): Remove
3503 Cell/B.E. support.
3504 * arch/ppc-linux-tdesc.h (tdesc_powerpc_cell32l): Remove declaration.
3505 (tdesc_powerpc_cell64l): Likewise.
3506 * nat/ppc-linux.h (PPC_FEATURE_CELL): Remove.
3507 * ppc-linux-nat.c (ppc_linux_nat_target::read_description): Remove
3508 Cell/B.E. support.
3509 * ppc-linux-tdep.h: Do not include "solib-spu.h" or "spu-tdep.h".
3510 Do not include "features/rs6000/powerpc-cell32l.c" or
3511 "features/rs6000/powerpc-cell64l.c".
3512 (ppc_linux_spu_section): Remove.
3513 (ppc_linux_core_read_description): Remove Cell/B.E. support.
3514 (spe_context_objfile, spe_context_lm_addr, spe_context_offset,
3515 spe_context_cache_ptid, spe_context_cache_ptid): Remove.
3516 (ppc_linux_spe_context_lookup): Remove.
3517 (ppc_linux_spe_context_inferior_created): Remove.
3518 (ppc_linux_spe_context_solib_loaded): Remove.
3519 (ppc_linux_spe_context_solib_unloaded): Remove.
3520 (ppc_linux_spe_context): Remove.
3521 (struct ppu2spu_cache): Remove.
3522 (ppu2spu_prev_arch, ppu2spu_this_id, ppu2spu_prev_register): Remove.
3523 (struct ppu2spu_data): Remove.
3524 (ppu2spu_unwind_register, ppu2spu_sniffer, ppu2spu_dealloc_cache,
3525 ppu2spu_unwind): Remove.
3526 (ppc_linux_init_abi): Remove Cell/B.E. support.
3527 * rs6000-tdep.h (rs6000_gdbarch_init): Remove Cell/B.E. support.
3528
3529 * features/Makefile (rs6000/powerpc-cell32l-expedite): Remove.
3530 (rs6000/powerpc-cell64l-expedite): Likewise
3531 (WHICH): Remove rs6000/powerpc-cell32l and rs6000/powerpc-cell64l.
3532 (XMLTOC): Remove rs6000/powerpc-cell32l.xml and
3533 rs6000/powerpc-cell64l.xml.
3534 * features/rs6000/powerpc-cell32l.xml: Remove.
3535 * features/rs6000/powerpc-cell64l.xml: Likewise.
3536 * features/rs6000/powerpc-cell32l.c: Remove generated file.
3537 * features/rs6000/powerpc-cell64l.c: Likewise.
3538 * regformats/rs6000/powerpc-cell32l.dat: Remove generated file.
3539 * regformats/rs6000/powerpc-cell64l.dat: Likewise.
3540 * regformats/reg-spu.dat: Remove.
3541
3542 * target.h (enum target_object): Remove TARGET_OBJECT_SPU.
3543 * corelow.c (struct spuid_list): Remove.
3544 (add_to_spuid_list): Remove.
3545 (core_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
3546 * remote.c (PACKET_qXfer_spu_read, PACKET_qXfer_spu_write): Remove.
3547 (remote_protocol_features): Remove associated entries.
3548 (_initialize_remote): No longer initialize them.
3549 (remote_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
3550 * linux-nat.c (SPUFS_MAGIC): Remove.
3551 (linux_proc_xfer_spu): Remove.
3552 (spu_enumerate_spu_ids): Remove.
3553 (linux_nat_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
3554 * linux-tdep.c (-linux_spu_make_corefile_notes): Remove.
3555 (linux_make_corefile_notes): No longer call it.
3556
3557 * regcache.c (cooked_read_test): Remove bfd_arch_spu special case.
3558 (cooked_write_test): Likewise.
3559
35602019-09-20 Tom Tromey <tom@tromey.com>
3561
3562 * NEWS: Mention case-sensitivity of TUI commands.
3563 * tui/tui-win.c (tui_set_focus_command): Now case-sensitive.
3564 (tui_set_win_height_command, parse_scrolling_args): Likewise.
3565 * tui/tui-layout.c (tui_layout_command): Now case-sensitive.
3566
35672019-09-20 Tom Tromey <tom@tromey.com>
3568
3569 * tui/tui-source.c (tui_source_window::set_contents): Use
3570 make_unique_xstrdup.
3571 * tui/tui-disasm.c (tui_disasm_window::set_contents): Use
3572 make_unique_xstrdup.
3573
35742019-09-20 Tom Tromey <tom@tromey.com>
3575
3576 * tui/tui-data.c: Remove separator comments.
3577 * tui/tui-layout.c: Remove separator comments.
3578 * tui/tui-win.c: Remove separator comments.
3579 * tui/tui-wingeneral.c: Remove separator comments.
3580
35812019-09-20 Tom Tromey <tom@tromey.com>
3582
3583 * tui/tui.h (strcat_to_buf): Don't declare.
3584 * tui/tui.c (strcat_to_buf): Remove.
3585
35862019-09-20 Tom Tromey <tom@tromey.com>
3587
3588 * tui/tui-source.h (struct tui_source_window) <m_fullname>: Rename
3589 from "fullname".
3590 * tui/tui-source.c (tui_source_window::set_contents)
3591 (tui_source_window::location_matches_p)
3592 (tui_source_window::maybe_update): Update.
3593
35942019-09-20 Tom Tromey <tom@tromey.com>
3595
3596 * tui/tui-regs.h (struct tui_data_window) <get_current_group>:
3597 Update.
3598 <m_regs_content, m_regs_column_count, m_current_group>: Add "m_"
3599 prefix.
3600 * tui/tui-regs.c (tui_data_window::last_regs_line_no)
3601 (tui_data_window::line_from_reg_element_no)
3602 (tui_data_window::first_reg_element_no_inline)
3603 (tui_data_window::show_registers)
3604 (tui_data_window::show_register_group)
3605 (tui_data_window::display_registers_from)
3606 (tui_data_window::display_registers_from_line)
3607 (tui_data_window::first_data_item_displayed)
3608 (tui_data_window::delete_data_content_windows)
3609 (tui_data_window::erase_data_content)
3610 (tui_data_window::do_scroll_vertical)
3611 (tui_data_window::refresh_window)
3612 (tui_data_window::check_register_values): Update.
3613
36142019-09-20 Tom Tromey <tom@tromey.com>
3615
3616 * tui/tui-stack.h (MAX_LOCATOR_ELEMENT_LEN): Remove define.
3617 (struct tui_locator_window) <full_name, proc_name>: Now
3618 std::string.
3619 * tui/tui-stack.c (tui_locator_window::make_status_line)
3620 (tui_locator_window::set_locator_fullname)
3621 (tui_locator_window::set_locator_info): Update.
3622 * tui/tui-source.c (tui_source_window::set_contents)
3623 (tui_source_window::showing_source_p): Update.
3624
36252019-09-20 Tom Tromey <tom@tromey.com>
3626
3627 * tui/tui-stack.c (tui_locator_window::set_locator_fullname):
3628 Don't call tui_locator_win_info_ptr.
3629
36302019-09-20 Tom Tromey <tom@tromey.com>
3631
3632 * tui/tui-win.c (tui_resize_all): Don't call refresh.
3633
36342019-09-20 Tom Tromey <tom@tromey.com>
3635
3636 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Use 1 as
3637 height for locator.
3638 * tui/tui-stack.c (tui_locator_window::rerender): Call scrollok.
3639 * tui/tui-layout.c (show_source_disasm_command, show_data)
3640 (show_source_or_disasm_and_command): Use 1 as height for locator.
3641
36422019-09-20 Tom Tromey <tom@tromey.com>
3643
3644 * tui/tui.c (tui_enable): Update.
3645 * tui/tui-win.c (tui_sigwinch_handler, tui_async_resize_screen):
3646 Update.
3647 * tui/tui-data.h (tui_win_resized, tui_set_win_resized_to):
3648 Update.
3649 * tui/tui-data.c (win_resized): Now bool.
3650 (tui_win_resized): Return bool.
3651 (tui_set_win_resized_to): Accept a bool.
3652
36532019-09-20 Tom Tromey <tom@tromey.com>
3654
3655 * tui/tui-regs.h (struct tui_data_window) <show_register_group>:
3656 Change type of "refresh_values_only".
3657 * tui/tui-regs.c (tui_data_window::show_register_group): Change
3658 type of "refresh_values_only".
3659
36602019-09-20 Tom Tromey <tom@tromey.com>
3661
3662 * tui/tui-disasm.c (struct tui_asm_line) <addr_string, insn>: Now
3663 std::string.
3664 (tui_disassemble): Add "pos" parameter.
3665 (tui_disasm_window::set_contents): Simplify.
3666
36672019-09-20 Tom Tromey <tom@tromey.com>
3668
3669 * tui/tui-winsource.h (struct tui_source_window_base)
3670 <show_source_content>: Now private.
3671 * tui/tui-winsource.c
3672 (tui_source_window_base::show_source_content): Don't handle empty
3673 content case.
3674
36752019-09-20 Tom Tromey <tom@tromey.com>
3676
3677 * tui/tui-layout.c (show_source_disasm_command)
3678 (show_source_or_disasm_and_command): Don't call
3679 show_source_content.
3680
36812019-09-20 Tom Tromey <tom@tromey.com>
3682
3683 * tui/tui-stack.h (struct tui_locator_window) <make_status_line>:
3684 Declare.
3685 * tui/tui-stack.c (tui_locator_window::make_status_line): Rename
3686 from tui_make_status_line.
3687 (tui_locator_window::rerender): Update.
3688
36892019-09-20 Tom Tromey <tom@tromey.com>
3690
3691 * tui/tui-stack.c (tui_make_status_line): Return std::string.
3692 (tui_locator_window::rerender): Update.
3693
36942019-09-20 Tom Tromey <tom@tromey.com>
3695
3696 * tui/tui-winsource.h (struct tui_source_window_base)
3697 <~tui_source_window_base>: Don't declare.
3698 <fullname>: Remove.
3699 * tui/tui-winsource.c (~tui_source_window_base): Remove.
3700 * tui/tui-source.h (struct tui_source_window) <fullname>: New
3701 member.
3702 * tui/tui-source.c (tui_source_window::set_contents): Update.
3703 (tui_source_window::location_matches_p)
3704 (tui_source_window::maybe_update): Update.
3705
37062019-09-20 Tom Tromey <tom@tromey.com>
3707
3708 * tui/tui-winsource.h (~tui_source_element): Remove.
3709 (tui_source_element): Update.
3710 (struct tui_source_element) <line>: Now a unique_xmalloc_ptr.
3711 * tui/tui-winsource.c (tui_show_source_line): Update.
3712 * tui/tui-source.c (tui_source_window::set_contents): Update.
3713 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
3714
37152019-09-20 Tom Tromey <tom@tromey.com>
3716
3717 * tui/tui-data.h (tui_clear_source_windows_detail): Don't
3718 declare.
3719 * tui/tui-layout.c (tui_add_win_to_layout): Don't call
3720 tui_clear_source_windows_detail.
3721 * tui/tui-winsource.h (struct tui_source_window_base)
3722 <clear_detail>: Don't declare.
3723 * tui/tui-winsource.c (tui_source_window_base::clear_detail):
3724 Remove.
3725 * tui/tui-data.c (tui_clear_source_windows_detail): Remove.
3726
37272019-09-20 Tom Tromey <tromey@adacore.com>
3728
3729 PR ada/24919:
3730 * block.c (contained_in): Fix final return value.
3731
37322019-09-20 Alan Modra <amodra@gmail.com>
3733
3734 * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Use bfd_set_usrdata.
3735 * dwarf2read.c (dwarf2_read_gdb_index, dwarf2_read_debug_names),
3736 (read_indirect_string_from_dwz): Use bfd accessor.
3737 * dwarf2read.h (struct dwz_file <filename>): Likewise.
3738 * machoread.c (macho_symfile_read_all_oso): Likewise.
3739 * solib.c (solib_bfd_open): Likewise.
3740
37412019-09-19 Christian Biesinger <cbiesinger@google.com>
3742
3743 * eval.c: Move declaration of overload_resolution to...
3744 * value.h: ...here.
3745
37462019-09-19 Christian Biesinger <cbiesinger@google.com>
3747
3748 * arm-linux-nat.c: Remove extern declaration for arm_apcs_32.
3749 * arm-linux-tdep.c: Likewise.
3750 * arm-nbsd-nat.c: Likewise.
3751 * arm-tdep.h: Declare arm_apcs_32.
3752 * arm-tdep.c: Move documentation for arm_apcs_32 to arm-tdep.h.
3753
37542019-09-19 Christian Biesinger <cbiesinger@google.com>
3755
3756 * dwarf2loc.c: Remove extern declaration of dwarf_always_disassemble.
3757 * dwarf2read.h: Declare dwarf_always_disassemble.
3758
37592019-09-19 Tom de Vries <tdevries@suse.de>
3760
3761 PR gdb/25009
3762 * source-cache.c (source_cache::ensure): Catch exception thrown during
3763 construction of the highlighter.
3764
37652019-09-18 Alan Modra <amodra@gmail.com>
3766
3767 * aarch64-linux-tdep.c, * arm-tdep.c, * auto-load.c,
3768 * coff-pe-read.c, * coffread.c, * corelow.c, * dbxread.c,
3769 * dicos-tdep.c, * dwarf2-frame.c, * dwarf2read.c, * elfread.c,
3770 * exec.c, * fbsd-tdep.c, * gcore.c, * gdb_bfd.c, * gdb_bfd.h,
3771 * hppa-tdep.c, * i386-cygwin-tdep.c, * i386-fbsd-tdep.c,
3772 * i386-linux-tdep.c, * jit.c, * linux-tdep.c, * machoread.c,
3773 * maint.c, * mdebugread.c, * minidebug.c, * mips-linux-tdep.c,
3774 * mips-sde-tdep.c, * mips-tdep.c, * mipsread.c, * nto-tdep.c,
3775 * objfiles.c, * objfiles.h, * osabi.c, * ppc-linux-tdep.c,
3776 * ppc64-tdep.c, * record-btrace.c, * record-full.c, * remote.c,
3777 * rs6000-aix-tdep.c, * rs6000-tdep.c, * s390-linux-tdep.c,
3778 * s390-tdep.c, * solib-aix.c, * solib-dsbt.c, * solib-frv.c,
3779 * solib-spu.c, * solib-svr4.c, * solib-target.c,
3780 * spu-linux-nat.c, * spu-tdep.c, * symfile-mem.c, * symfile.c,
3781 * symmisc.c, * symtab.c, * target.c, * windows-nat.c,
3782 * xcoffread.c, * cli/cli-dump.c, * compile/compile-object-load.c,
3783 * mi/mi-interp.c: Update throughout for bfd section macro and
3784 function changes.
3785 * gcore (gcore_create_callback): Use bfd_set_section_lma.
3786 * spu-tdep.c (spu_overlay_new_objfile): Likewise.
3787
37882019-09-18 Tom Tromey <tom@tromey.com>
3789
3790 * NEWS: Add entry.
3791 * tui/tui.c (tui_initialize_readline): Set name of keymap. Do not
3792 call rl_initialize.
3793 (tui_enable): Do not call rl_initialize.
3794
37952019-09-18 Christian Groessler <chris@groessler.org>
3796
3797 * alpha-linux-nat.c: Include gdbarch.h.
3798
37992019-09-18 Simon Marchi <simon.marchi@polymtl.ca>
3800
3801 * ui-file.c: Include cli/cli-style.h.
3802 (term_cli_styling): Remove cli_styling declaration.
3803
38042019-09-18 Alan Modra <amodra@gmail.com>
3805
3806 * arm-tdep.c (arm_record_special_symbol): Update bfd_get_section
3807 to bfd_asymbol_section.
3808
38092019-09-18 Alan Modra <amodra@gmail.com>
3810
3811 * amd64-dicos-tdep.c (amd64_dicos_osabi_sniffer): Constify target.
3812 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
3813 * i386-dicos-tdep.c (i386_dicos_osabi_sniffer): Likewise.
3814
38152019-09-18 Alan Modra <amodra@gmail.com>
3816
3817 * solib-spu.c (spu_bfd_open): Use bfd_set_filename.
3818 * spu-linux-nat.c (spu_bfd_open): Likewise.
3819
38202019-09-18 Christian Biesinger <cbiesinger@google.com>
3821
3822 * dwarf2loc.c: Change extern declaration of dwarf_always_disassemble
3823 to bool to match definition in dwarf2read.c.
3824
38252019-09-17 Christian Biesinger <cbiesinger@google.com>
3826
3827 * ada-lang.c (ada_ignore_descriptive_types_p): Change to bool.
3828 (print_signatures): Likewise.
3829 (trust_pad_over_xvs): Likewise.
3830 * arch/aarch64-insn.c (aarch64_debug): Likewise.
3831 * arch/aarch64-insn.h (aarch64_debug): Likewise.
3832 * arm-linux-nat.c (arm_apcs_32): Likewise.
3833 * arm-linux-tdep.c (arm_apcs_32): Likewise.
3834 * arm-nbsd-nat.c (arm_apcs_32): Likewise.
3835 * arm-tdep.c (arm_debug): Likewise.
3836 (arm_apcs_32): Likewise.
3837 * auto-load.c (debug_auto_load): Likewise.
3838 (auto_load_gdb_scripts): Likewise.
3839 (global_auto_load): Likewise.
3840 (auto_load_local_gdbinit): Likewise.
3841 (auto_load_local_gdbinit_loaded): Likewise.
3842 * auto-load.h (global_auto_load): Likewise.
3843 (auto_load_local_gdbinit): Likewise.
3844 (auto_load_local_gdbinit_loaded): Likewise.
3845 * breakpoint.c (disconnected_dprintf): Likewise.
3846 (breakpoint_proceeded): Likewise.
3847 (automatic_hardware_breakpoints): Likewise.
3848 (always_inserted_mode): Likewise.
3849 (target_exact_watchpoints): Likewise.
3850 (_initialize_breakpoint): Update.
3851 * breakpoint.h (target_exact_watchpoints): Change to bool.
3852 * btrace.c (maint_btrace_pt_skip_pad): Likewise.
3853 * cli/cli-cmds.c (trace_commands): Likewise.
3854 * cli/cli-cmds.h (trace_commands): Likewise.
3855 * cli/cli-decode.c (add_setshow_boolean_cmd): Change int* argument
3856 to bool*.
3857 * cli/cli-logging.c (logging_overwrite): Change to bool.
3858 (logging_redirect): Likewise.
3859 (debug_redirect): Likewise.
3860 * cli/cli-option.h (option_def) <boolean>: Change return type to bool*.
3861 (struct boolean_option_def) <get_var_address_cb_>: Change return type
3862 to bool.
3863 <boolean_option_def>: Update.
3864 (struct flag_option_def): Change default type of Context to bool
3865 from int.
3866 <flag_option_def>: Change return type of var_address_cb_ to bool*.
3867 * cli/cli-setshow.c (do_set_command): Cast to bool* instead of int*.
3868 (get_setshow_command_value_string): Likewise.
3869 * cli/cli-style.c (cli_styling): Change to bool.
3870 (source_styling): Likewise.
3871 * cli/cli-style.h (source_styling): Likewise.
3872 (cli_styling): Likewise.
3873 * cli/cli-utils.h (struct qcs_flags) <quiet, cont, silent>: Change
3874 to bool.
3875 * command.h (var_types): Update comment.
3876 (add_setshow_boolean_cmd): Change int* var argument to bool*.
3877 * compile/compile-cplus-types.c (debug_compile_cplus_types): Change to
3878 bool.
3879 (debug_compile_cplus_scopes): Likewise.
3880 * compile/compile-internal.h (compile_debug): Likewise.
3881 * compile/compile.c (compile_debug): Likewise.
3882 (struct compile_options) <raw>: Likewise.
3883 * cp-support.c (catch_demangler_crashes): Likewise.
3884 * cris-tdep.c (usr_cmd_cris_version_valid): Likewise.
3885 (usr_cmd_cris_dwarf2_cfi): Likewise.
3886 * csky-tdep.c (csky_debug): Likewise.
3887 * darwin-nat.c (enable_mach_exceptions): Likewise.
3888 * dcache.c (dcache_enabled_p): Likewise.
3889 * defs.h (info_verbose): Likewise.
3890 * demangle.c (demangle): Likewise.
3891 (asm_demangle): Likewise.
3892 * dwarf-index-cache.c (debug_index_cache): Likewise.
3893 * dwarf2-frame.c (dwarf2_frame_unwinders_enabled_p): Likewise.
3894 * dwarf2-frame.h (dwarf2_frame_unwinders_enabled_p): Likewise.
3895 * dwarf2read.c (check_physname): Likewise.
3896 (use_deprecated_index_sections): Likewise.
3897 (dwarf_always_disassemble): Likewise.
3898 * eval.c (overload_resolution): Likewise.
3899 * event-top.c (set_editing_cmd_var): Likewise.
3900 (exec_done_display_p): Likewise.
3901 * event-top.h (set_editing_cmd_var): Likewise.
3902 (exec_done_display_p): Likewise.
3903 * exec.c (write_files): Likewise.
3904 * fbsd-nat.c (debug_fbsd_lwp): Likewise
3905 (debug_fbsd_nat): Likewise.
3906 * frame.h (struct frame_print_options) <print_raw_frame_arguments>:
3907 Likewise.
3908 (struct set_backtrace_options) <backtrace_past_main>: Likewise.
3909 <backtrace_past_entry> Likewise.
3910 * gdb-demangle.h (demangle): Likewise.
3911 (asm_demangle): Likewise.
3912 * gdb_bfd.c (bfd_sharing): Likewise.
3913 * gdbcore.h (write_files): Likewise.
3914 * gdbsupport/common-debug.c (show_debug_regs): Likewise.
3915 * gdbsupport/common-debug.h (show_debug_regs): Likewise.
3916 * gdbthread.h (print_thread_events): Likewise.
3917 * gdbtypes.c (opaque_type_resolution): Likewise.
3918 (strict_type_checking): Likewise.
3919 * gnu-nat.c (gnu_debug_flag): Likewise.
3920 * guile/scm-auto-load.c (auto_load_guile_scripts): Likewise.
3921 * guile/scm-param.c (pascm_variable): Add boolval.
3922 (add_setshow_generic): Update.
3923 (pascm_param_value): Update.
3924 (pascm_set_param_value_x): Update.
3925 * hppa-tdep.c (hppa_debug): Change to bool..
3926 * infcall.c (may_call_functions_p): Likewise.
3927 (coerce_float_to_double_p): Likewise.
3928 (unwind_on_signal_p): Likewise.
3929 (unwind_on_terminating_exception_p): Likewise.
3930 * infcmd.c (startup_with_shell): Likewise.
3931 * inferior.c (print_inferior_events): Likewise.
3932 * inferior.h (startup_with_shell): Likewise.
3933 (print_inferior_events): Likewise.
3934 * infrun.c (step_stop_if_no_debug): Likewise.
3935 (detach_fork): Likewise.
3936 (debug_displaced): Likewise.
3937 (disable_randomization): Likewise.
3938 (non_stop): Likewise.
3939 (non_stop_1): Likewise.
3940 (observer_mode): Likewise.
3941 (observer_mode_1): Likewise.
3942 (set_observer_mode): Update.
3943 (sched_multi): Change to bool.
3944 * infrun.h (debug_displaced): Likewise.
3945 (sched_multi): Likewise.
3946 (step_stop_if_no_debug): Likewise.
3947 (non_stop): Likewise.
3948 (disable_randomization): Likewise.
3949 * linux-tdep.c (use_coredump_filter): Likewise.
3950 (dump_excluded_mappings): Likewise.
3951 * linux-thread-db.c (auto_load_thread_db): Likewise.
3952 (check_thread_db_on_load): Likewise.
3953 * main.c (captured_main_1): Update.
3954 * maint-test-options.c (struct test_options_opts) <flag_opt, xx1_opt,
3955 xx2_opt, boolean_opt>: Change to bool.
3956 * maint-test-settings.c (maintenance_test_settings_boolean): Likewise.
3957 * maint.c (maintenance_profile_p): Likewise.
3958 (per_command_time): Likewise.
3959 (per_command_space): Likewise.
3960 (per_command_symtab): Likewise.
3961 * memattr.c (inaccessible_by_default): Likewise.
3962 * mi/mi-main.c (mi_async): Likewise.
3963 (mi_async_1): Likewise.
3964 * mips-tdep.c (mips64_transfers_32bit_regs_p): Likewise.
3965 * nat/fork-inferior.h (startup_with_shell): Likewise.
3966 * nat/linux-namespaces.c (debug_linux_namespaces): Likewise.
3967 * nat/linux-namespaces.h (debug_linux_namespaces): Likewise.
3968 * nios2-tdep.c (nios2_debug): Likewise.
3969 * or1k-tdep.c (or1k_debug): Likewise.
3970 * parse.c (parser_debug): Likewise.
3971 * parser-defs.h (parser_debug): Likewise.
3972 * printcmd.c (print_symbol_filename): Likewise.
3973 * proc-api.c (procfs_trace): Likewise.
3974 * python/py-auto-load.c (auto_load_python_scripts): Likewise.
3975 * python/py-param.c (union parmpy_variable): Add "bool boolval" field.
3976 (set_parameter_value): Update.
3977 (add_setshow_generic): Update.
3978 * python/py-value.c (copy_py_bool_obj): Change argument from int*
3979 to bool*.
3980 * python/python.c (gdbpy_parameter_value): Cast to bool* instead of
3981 int*.
3982 * ravenscar-thread.c (ravenscar_task_support): Change to bool.
3983 * record-btrace.c (record_btrace_target::store_registers): Update.
3984 * record-full.c (record_full_memory_query): Change to bool.
3985 (record_full_stop_at_limit): Likewise.
3986 * record-full.h (record_full_memory_query): Likewise.
3987 * remote-notif.c (notif_debug): Likewise.
3988 * remote-notif.h (notif_debug): Likewise.
3989 * remote.c (use_range_stepping): Likewise.
3990 (interrupt_on_connect): Likewise.
3991 (remote_break): Likewise.
3992 * ser-tcp.c (tcp_auto_retry): Likewise.
3993 * ser-unix.c (serial_hwflow): Likewise.
3994 * skip.c (debug_skip): Likewise.
3995 * solib-aix.c (solib_aix_debug): Likewise.
3996 * spu-tdep.c (spu_stop_on_load_p): Likewise.
3997 (spu_auto_flush_cache_p): Likewise.
3998 * stack.c (struct backtrace_cmd_options) <full, no_filters, hide>:
3999 Likewise.
4000 (struct info_print_options) <quiet>: Likewise.
4001 * symfile-debug.c (debug_symfile): Likewise.
4002 * symfile.c (auto_solib_add): Likewise.
4003 (separate_debug_file_debug): Likewise.
4004 * symfile.h (auto_solib_add): Likewise.
4005 (separate_debug_file_debug): Likewise.
4006 * symtab.c (basenames_may_differ): Likewise.
4007 (struct filename_partial_match_opts) <dirname, basename>: Likewise.
4008 (struct info_print_options) <quiet, exclude_minsyms>: Likewise.
4009 (struct info_types_options) <quiet>: Likewise.
4010 * symtab.h (demangle): Likewise.
4011 (basenames_may_differ): Likewise.
4012 * target-dcache.c (stack_cache_enabled_1): Likewise.
4013 (code_cache_enabled_1): Likewise.
4014 * target.c (trust_readonly): Likewise.
4015 (may_write_registers): Likewise.
4016 (may_write_memory): Likewise.
4017 (may_insert_breakpoints): Likewise.
4018 (may_insert_tracepoints): Likewise.
4019 (may_insert_fast_tracepoints): Likewise.
4020 (may_stop): Likewise.
4021 (auto_connect_native_target): Likewise.
4022 (target_stop_and_wait): Update.
4023 (target_async_permitted): Change to bool.
4024 (target_async_permitted_1): Likewise.
4025 (may_write_registers_1): Likewise.
4026 (may_write_memory_1): Likewise.
4027 (may_insert_breakpoints_1): Likewise.
4028 (may_insert_tracepoints_1): Likewise.
4029 (may_insert_fast_tracepoints_1): Likewise.
4030 (may_stop_1): Likewise.
4031 * target.h (target_async_permitted): Likewise.
4032 (may_write_registers): Likewise.
4033 (may_write_memory): Likewise.
4034 (may_insert_breakpoints): Likewise.
4035 (may_insert_tracepoints): Likewise.
4036 (may_insert_fast_tracepoints): Likewise.
4037 (may_stop): Likewise.
4038 * thread.c (struct info_threads_opts) <show_global_ids>: Likewise.
4039 (make_thread_apply_all_options_def_group): Change argument from int*
4040 to bool*.
4041 (thread_apply_all_command): Update.
4042 (print_thread_events): Change to bool.
4043 * top.c (confirm): Likewise.
4044 (command_editing_p): Likewise.
4045 (history_expansion_p): Likewise.
4046 (write_history_p): Likewise.
4047 (info_verbose): Likewise.
4048 * top.h (confirm): Likewise.
4049 (history_expansion_p): Likewise.
4050 * tracepoint.c (disconnected_tracing): Likewise.
4051 (circular_trace_buffer): Likewise.
4052 * typeprint.c (print_methods): Likewise.
4053 (print_typedefs): Likewise.
4054 * utils.c (debug_timestamp): Likewise.
4055 (sevenbit_strings): Likewise.
4056 (pagination_enabled): Likewise.
4057 * utils.h (sevenbit_strings): Likewise.
4058 (pagination_enabled): Likewise.
4059 * valops.c (overload_resolution): Likewise.
4060 * valprint.h (struct value_print_options) <prettyformat_arrays,
4061 prettyformat_structs, vtblprint, unionprint, addressprint, objectprint,
4062 stop_print_at_null, print_array_indexes, deref_ref, static_field_print,
4063 pascal_static_field_print, raw, summary, symbol_print, finish_print>:
4064 Likewise.
4065 * windows-nat.c (new_console): Likewise.
4066 (cygwin_exceptions): Likewise.
4067 (new_group): Likewise.
4068 (debug_exec): Likewise.
4069 (debug_events): Likewise.
4070 (debug_memory): Likewise.
4071 (debug_exceptions): Likewise.
4072 (useshell): Likewise.
4073 * windows-tdep.c (maint_display_all_tib): Likewise.
4074 * xml-support.c (debug_xml): Likewise.
4075
40762019-09-17 Mike Gulick <mgulick@mathworks.com>
4077
4078 * source.c (prepare_path_for_appending): New function.
4079 (openp): Make use of new function.
4080 (find_and_open_source): Search for the compilation directory and
4081 source file as a relative path beneath the directory search path.
4082
40832019-09-17 Andrew Burgess <andrew.burgess@embecosm.com>
4084
4085 * source-cache.c (source_cache::get_line_charpos): Catch
4086 exceptions and return false, this matches the behaviour documented
4087 in the header file.
4088
40892019-09-17 Joel Brobecker <brobecker@adacore.com>
4090
4091 * ada-tasks.c (info_task): Remove quoting of the task's name.
4092
40932019-09-16 Christian Biesinger <cbiesinger@google.com>
4094
4095 * symfile.c (auto_solib_add): Replace comment with a reference
4096 to the header file.
4097
40982019-09-14 Christian Biesinger <cbiesinger@google.com>
4099
4100 * NEWS: Mention that gdb can now be compiled with Python 3
4101 on Windows.
4102
41032019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
4104
4105 * maint.c (maint_print_section_data::maint_print_section_data):
4106 Force use of 'float log10 (float)' by casting the argument to
4107 float.
4108
41092019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
4110
4111 * maint.c: Add 'cmath' include.
4112 (struct maint_print_section_data): New structure.
4113 (print_section_index): New function.
4114 (print_bfd_section_info): Add header comment, small whitespace
4115 cleanup, and update to call new print_section_index function.
4116 (print_objfile_section_info): Likewise.
4117 (maint_obj_section_from_bfd_section): New function.
4118 (print_bfd_section_info_maybe_relocated): New function.
4119 (maintenance_info_sections): Add header comment, always use
4120 bfd_map_over_sections instead of ALL_OBJFILE_OSECTIONS.
4121
41222019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
4123
4124 * psymtab.c (find_pc_sect_psymtab): Move baseaddr local into more
4125 inner scope, add check that the objfile has psymtabs before
4126 checking psymtabs_addrmap.
4127 * psymtab.h (psymtab_storage) <psymtabs_addrmap>: Extend comment.
4128
41292019-09-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4130
4131 * NEWS: Announce that Ada task names are now shown at more places,
4132 and between quotes (except in info task output).
4133 * gdb/ada-tasks.c (task_to_str): New function.
4134 (display_current_task_id): Call task_to_str.
4135 (task_command_1): Likewise.
4136 (print_ada_task_info): In non-mi mode, Properly align headers and data
4137 when task-id length is > 9 (9 is the default for a 32 bits CORE_ADDR).
4138
41392019-09-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4140
4141 * procfs.c (procfs_target::wait) <PR_FAULTED>: Get signal from
4142 prstatus.pr_lwp.pr_info instead of making it up.
4143
41442019-09-11 Christian Biesinger <cbiesinger@google.com>
4145
4146 * auto-load.c (auto_load_expand_dir_vars): Update.
4147 * defs.h (gdb_datadir): Change to std::string.
4148 (python_libdir): Likewise.
4149 (relocate_gdb_directory): Change return type to std::string.
4150 * guile/guile.c (gdbscm_data_directory): Update.
4151 (initialize_scheme_side): Update.
4152 * jit.c (jit_reader_dir): Change to std::string.
4153 (jit_reader_load_command): Update.
4154 * main.c (gdb_datadir): Change to std::string.
4155 (python_libdir): Likewise.
4156 (set_gdb_data_directory): Update.
4157 (relocate_path): Change to return std::string.
4158 (relocate_gdb_directory): Change to return std::string.
4159 (relocate_gdbinit_path_maybe_in_datadir): Update.
4160 (captured_main_1): Update.
4161 * python/python.c (do_start_initialization): Update.
4162 * top.c (show_gdb_datadir): Update.
4163 * xml-syscall.c (xml_init_syscalls_info): Update.
4164 (init_syscalls_info): Update.
4165
41662019-09-11 Christian Biesinger <cbiesinger@google.com>
4167
4168 * main.c (relocate_gdbinit_path_maybe_in_datadir): Factor this code
4169 out of get_init_files.
4170 (get_init_files): Update.
4171
41722019-09-11 Christian Biesinger <cbiesinger@google.com>
4173
4174 * main.c (get_init_files): Change to use std::string.
4175 (captured_main_1): Update.
4176 (print_gdb_help): Update.
4177
41782019-09-11 Ali Tamur <tamur@google.com>
4179
4180 *gdb/target-float.c (host_float_ops<T>::to_longest): Update
4181 implementation.
4182
41832019-09-11 Christian Biesinger <cbiesinger@google.com>
4184
4185 * dbxread.c (read_dbx_symtab): Update.
4186 * dwarf2read.c (load_partial_dies): Update.
4187 * mdebugread.c (parse_partial_symbols): Update.
4188 (handle_psymbol_enumerators): Update.
4189 * psympriv.h (add_psymbol_to_list): Change type of copy_names to bool.
4190 * psymtab.c (add_psymbol_to_bcache): Likewise.
4191 (add_psymbol_to_list): Likewise.
4192 * symtab.c (symbol_set_names): Likewise.
4193 * symtab.h (symbol_set_names): Likewise.
4194 * xcoffread.c (scan_xcoff_symtab): Update.
4195
41962019-09-11 Tom Tromey <tom@tromey.com>
4197
4198 * symfile-mem.c (symbol_file_add_from_memory): Use
4199 bfd_set_filename.
4200 * solib-darwin.c (darwin_bfd_open): Use bfd_set_filename.
4201 * solib-aix.c (solib_aix_bfd_open): Use bfd_set_filename.
4202
42032019-09-10 Tom Tromey <tromey@adacore.com>
4204
4205 * dwarf-index-write.c (write_psymbols): Extend error message.
4206 (debug_names::insert): Add Ada code.
4207 (debug_names::write_psymbols): Remove Ada check.
4208 (debug_names) <m_string_obstack>: New member.
4209 * dwarf2read.c (gdb_index_symbol_name_matcher): Remove.
4210 (gdb_index_symbol_name_matcher::matches): Remove.
4211 (mapped_index_base::find_name_components_bounds): Add "lang"
4212 parameter.
4213 (mapped_index_base::build_name_components): Also split names
4214 according to Ada syntax.
4215 (dw2_expand_symtabs_matching_symbol): Loop over languages. Change
4216 type of "match_callback".
4217 (check_match, check_find_bounds_finds)
4218 (dw2_expand_symtabs_matching): Update.
4219 (dw2_debug_names_iterator): Add new constructor.
4220 (dw2_debug_names_map_matching_symbols): New function.
4221 (dw2_debug_names_expand_symtabs_matching): Update.
4222 (dwarf2_debug_names_functions): Use
4223 dw2_debug_names_map_matching_symbols.
4224
42252019-09-10 Tom Tromey <tromey@adacore.com>
4226
4227 * dwarf2read.c (dw2_get_file_names_reader): Add the
4228 CU's file name to the results.
4229
42302019-09-10 Tom Tromey <tromey@adacore.com>
4231
4232 * ada-lang.c (add_nonlocal_symbols): Combine calls to
4233 map_matching_symbols. Update.
4234 * dwarf2read.c (dw2_map_matching_symbols): Update.
4235 * psymtab.c (match_partial_symbol): Change type; update.
4236 (psym_map_matching_symbols): Likewise.
4237 * symfile-debug.c (debug_qf_map_matching_symbols): Change
4238 type; update.
4239 * symfile.h (struct quick_symbol_functions)
4240 <map_matching_symbols>: Change "name" to be a lookup_name_info.
4241 Remove "match".
4242
42432019-09-10 Tom Tromey <tromey@adacore.com>
4244
4245 * psymtab.c (map_block): Remove.
4246 (psym_map_matching_symbols): Use iterate_over_symbols_terminated.
4247 * symtab.c (iterate_over_symbols_terminated): New function.
4248 * symtab.c (iterate_over_symbols_terminated): Declare.
4249
42502019-09-10 Tom Tromey <tromey@adacore.com>
4251
4252 * ada-lang.c (ada_iterate_over_symbols): Return bool.
4253 * language.h (struct language_defn) <la_iterate_over_symbols>:
4254 Return bool.
4255 * symtab.c (iterate_over_symbols): Return bool.
4256 * symtab.h (iterate_over_symbols): Return bool.
4257
42582019-09-10 Tom Tromey <tromey@adacore.com>
4259
4260 * ada-lang.c (aux_add_nonlocal_symbols): Change type.
4261 (add_nonlocal_symbols): Update.
4262 * dwarf2read.c (dw2_map_matching_symbols): Change type.
4263 * psymtab.c (map_block, psym_map_matching_symbols): Change type.
4264 * symfile-debug.c (debug_qf_map_matching_symbols): Change type.
4265 * symfile.h (struct quick_symbol_functions) <map_matching_symbols>:
4266 Change type of "callback". Remove "data".
4267
4268
42692019-09-09 Ali Tamur <tamur@google.com>
4270
4271 * dwarf2read.c (comp_unit_head): Update comment.
4272 (dwarf2_dwo_name): New function declaration.
4273 (dwarf_unit_type_name): New function declaration.
4274 (read_comp_unit_head): Add support for new compilation units,
4275 DW_UT_partial, DW_UT_skeleton, DW_UT_split_compile, DW_UT_split_type.
4276 Particularly, DW_UT_skeleton and DW_UT_split_compile have dwo_id
4277 (currently named as "signature") in their header. Also clarify error
4278 messages.
4279 (lookup_dwo_id): New function. Returns the dwo id of the given
4280 compile unit.
4281 (lookup_dwo_unit): Use the new lookup_dwo_id function.
4282 (init_cutu_and_read_dies): Use the new dwarf2_dwo_name and lookup_dwo_id
4283 functions.
4284 (create_dwo_cu_reader): Use the added lookup_dwo_id function.
4285 (dwarf2_dwo_name): Get the dwo name if present.
4286 (dwarf_unit_type_name): Convert DW_UT_* types to string for diagnostic
4287 purposes.
4288
42892019-09-09 Tom Tromey <tom@tromey.com>
4290
4291 * tui/tui-win.c (tui_all_windows_info): Use ui_out.
4292
42932019-09-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4294
4295 * python/python.c (do_start_initialization): Make progname_copy static,
4296 to avoid a leak report.
4297
42982019-09-08 Tom Tromey <tom@tromey.com>
4299
4300 * tui/tui-wingeneral.c (box_win): Truncate long window titles.
4301
43022019-09-07 Simon Marchi <simon.marchi@efficios.com>
4303
4304 * dwarf2read.c (struct dw2_symtab_iterator) <block_index>:
4305 Change type to gdb::optional<block_enum>.
4306 (dw2_symtab_iter_init): Change block_index parameter type
4307 to gdb::optional<block_enum>.
4308 (dw2_lookup_symbol): Change block_index parameter
4309 type to block_enum.c
4310 (dw2_debug_names_lookup_symbol): Likewise.
4311 * psymtab.c (psym_lookup_symbol): Likewise.
4312 * symfile-debug.c (debug_qf_lookup_symbol): Likewise.
4313 * symfile.h (struct quick_symbol_functions) <lookup_symbol>:
4314 Likewise.
4315
43162019-09-06 Christian Biesinger <cbiesinger@google.com>
4317
4318 * defs.h (relocate_gdb_directory): Change int to bool in
4319 signature and rename flag to relocatable.
4320 * main.c (relocate_path): Likewise.
4321 (relocate_gdb_directory): Likewise.
4322
43232019-09-06 Alan Modra <amodra@gmail.com>
4324
4325 * coffread.c (coff_symfile_read): Constify filename variable.
4326 * dbxread.c (dbx_symfile_init, coffstab_build_psymtabs),
4327 (elfstab_build_psymtabs, stabsect_build_psymtabs): Likewise.
4328 * gdb_bfd.c (gdb_bfd_close_or_warn): Likewise.
4329 * solib.c (reload_shared_libraries_1): Likewise.
4330 * symfile.c (reread_symbols): Likewise.
4331 * solib-aix.c (solib_aix_bfd_open): Add cast for xfree of filename.
4332 * solib-darwin.c (darwin_bfd_open): Likewise.
4333 * symfile-mem.c (symbol_file_add_from_memory): Likewise.
4334
43352019-09-03 Andrew Burgess <andrew.burgess@embecosm.com>
4336
4337 * psymtab.c (print_partial_symbols): Handle missing domain_enum
4338 values MODULE_DOMAIN and COMMON_BLOCK_DOMAIN.
4339
43402019-09-03 Tom Tromey <tromey@adacore.com>
4341
4342 * ada-valprint.c (ada_val_print_num): Don't recurse for range
4343 types.
4344 (has_negatives): Unbias a range type bound.
4345 * dwarf2read.c (read_subrange_type): Handle DW_AT_GNU_bias.
4346 * gdbtypes.c (operator==): Handle new field.
4347 (create_range_type): Add "bias" parameter.
4348 (create_static_range_type, resolve_dynamic_range): Update.
4349 * gdbtypes.h (struct range_bounds) <bias>: New member.
4350 (create_range_type): Add bias parameter.
4351 * printcmd.c (print_scalar_formatted): Unbias range types.
4352 * value.c (unpack_long): Unbias range types.
4353 (pack_long): Bias range types.
4354
43552019-09-02 Alan Hayward <alan.hayward@arm.com>
4356
4357 * solib-svr4.c (svr4_find_and_create_probe_breakpoints): Check all
4358 probe arguments.
4359
43602019-09-02 Alan Hayward <alan.hayward@arm.com>
4361
4362 * break-catch-throw.c (fetch_probe_arguments): Use gdbarch.
4363 * dtrace-probe.c (dtrace_probe::get_argument_count): Likewise.
4364 * probe.c (probe_safe_evaluate_at_pc) (compute_probe_arg)
4365 (compile_probe_arg): Likewise.
4366 * probe.h (get_argument_count): Likewise.
4367 * solib-svr4.c (solib_event_probe_action): Likewise.
4368 * stap-probe.c (stap_probe::get_argument_count): Likewise.
4369
43702019-09-02 Alan Hayward <alan.hayward@arm.com>
4371
4372 * solib-svr4.c (svr4_find_and_create_probe_breakpoints): Move
4373 code to here...
4374 (svr4_create_solib_event_breakpoints): ...from here.
4375
43762019-08-30 Sergio Durigan Junior <sergiodj@redhat.com>
4377
4378 * nat/fork-inferior.c (trace_start_error): Remove "\nError: "
4379 suffix from warning message.
4380
43812019-08-30 Tom Tromey <tom@tromey.com>
4382
4383 * tui/tui-winsource.h (struct tui_source_window_base)
4384 <refresh_all>: Don't declare.
4385 * tui/tui-winsource.c (tui_source_window_base::refresh_all):
4386 Remove.
4387 * tui/tui-win.c (tui_refresh_all_win): Don't call refresh_all or
4388 tui_show_locator_content.
4389 * tui/tui-regs.h (struct tui_data_window) <refresh_all>: Don't
4390 declare.
4391 * tui/tui-regs.c (tui_data_window::refresh_all): Remove.
4392 * tui/tui-data.h (struct tui_win_info) <refresh_all>: Don't
4393 declare.
4394
43952019-08-30 Tom Tromey <tom@tromey.com>
4396
4397 * tui/tui-io.c (tui_cont_sig): Don't call wrefresh.
4398
43992019-08-30 Tom Tromey <tom@tromey.com>
4400
4401 * tui/tui-stack.c (_initialize_tui_stack): Move later.
4402 Remove unnecessary forward declarations.
4403
44042019-08-30 Tom Tromey <tom@tromey.com>
4405
4406 * tui/tui-stack.c (tui_locator_window::set_locator_fullname): Call
4407 rerender.
4408 (tui_update_locator_fullname, tui_show_frame_info): Don't call
4409 tui_show_locator_content.
4410
44112019-08-30 Tom Tromey <tom@tromey.com>
4412
4413 * tui/tui-stack.c (tui_show_locator_content): Move lower. Rewrite.
4414 (tui_locator_window::rerender): Rewrite using body of previous
4415 tui_show_locator_content.
4416
44172019-08-30 Tom Tromey <tom@tromey.com>
4418
4419 * tui/tui-stack.h (struct tui_locator_window) <set_locator_info,
4420 set_locator_fullname>: New methods.
4421 * tui/tui-stack.c (tui_locator_window::set_locator_fullname):
4422 Rename from tui_set_locator_fullname.
4423 (tui_locator_window::set_locator_info): Rename from
4424 tui_set_locator_info. Return bool.
4425 (tui_update_locator_fullname, tui_show_frame_info): Update.
4426
44272019-08-30 Tom Tromey <tom@tromey.com>
4428
4429 * tui/tui-layout.c (show_layout): Don't call tui_refresh_all.
4430
44312019-08-30 Tom Tromey <tom@tromey.com>
4432
4433 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Don't
4434 call touchwin.
4435
44362019-08-30 Tom Tromey <tom@tromey.com>
4437
4438 * tui/tui-wingeneral.c (box_win): Assume win_info and
4439 win_info->handle cannot be NULL.
4440
44412019-08-30 Tom Tromey <tom@tromey.com>
4442
4443 * tui/tui-regs.h (struct tui_data_item_window) <rerender,
4444 refresh_window>: Declare.
4445 * tui/tui-regs.c (tui_data_window::display_registers_from): Call
4446 resize.
4447 (tui_data_item_window::rerender): Rename from
4448 tui_display_register.
4449 (tui_data_item_window::refresh_window): New method.
4450 * tui/tui-layout.c (tui_gen_win_info::resize): Do nothing on
4451 no-op.
4452
44532019-08-30 Tom Tromey <tom@tromey.com>
4454
4455 * tui/tui-regs.h (struct tui_data_window) <regs_content,
4456 regs_column_count, current_group>: Move later. Now private.
4457 <get_current_group>: New method.
4458 * tui/tui-regs.c (tui_reg_command): Update.
4459 * tui/tui-layout.c (tui_set_layout): Update.
4460
44612019-08-30 Tom Tromey <tom@tromey.com>
4462
4463 * tui/tui-regs.c (tui_data_window::display_registers_from_line)
4464 (tui_data_window::rerender): Don't call
4465 check_and_display_highlight_if_needed.
4466 (tui_data_window::refresh_all): Remove call to
4467 erase_data_content.
4468
44692019-08-30 Tom Tromey <tom@tromey.com>
4470
4471 * tui/tui-regs.c (tui_data_window::last_regs_line_no)
4472 (tui_data_window::display_registers_from)
4473 (tui_data_window::display_reg_element_at_line)
4474 (tui_data_window::display_registers_from_line): Remove checks of
4475 "empty".
4476
44772019-08-30 Tom Tromey <tom@tromey.com>
4478
4479 * tui/tui-regs.h (struct tui_data_window) <display_all_data>:
4480 Don't declare.
4481 * tui/tui-regs.c (tui_data_window::show_registers): Call
4482 rerender.
4483 (tui_data_window::rerender): Rename from display_all_data.
4484 (tui_data_window::rerender): Remove old implementation.
4485
44862019-08-30 Tom Tromey <tom@tromey.com>
4487
4488 * tui/tui-regs.c (tui_data_window::display_all_data): Change
4489 text.
4490 * tui/tui-data.h (NO_DATA_STRING): Remove define.
4491
44922019-08-29 Bernhard Wodok <barto@gmx.net>
4493 Sergio Durigan Junior <sergiodj@redhat.com>
4494
4495 PR win32/24284
4496 * mingw-hdep.c (gdb_select): Handle case when 'n' is zero.
4497
44982019-08-28 Andrew Burgess <andrew.burgess@embecosm.com>
4499
4500 * symtab.c (search_symbols): Don't include MODULE_DOMAIN symbols
4501 when searching for types.
4502
45032019-08-28 Andrew Burgess <andrew.burgess@embecosm.com>
4504
4505 * f-lang.c (f_language_defn): Use f_print_typedef.
4506 * f-lang.h (f_print_typedef): Declare.
4507 * f-typeprint.c (f_print_typedef): Define.
4508
45092019-08-27 Christian Biesinger <cbiesinger@google.com>
4510
4511 * nat/linux-namespaces.c (mnsh_main): Initialize fd (to -1).
4512
45132019-08-27 Andrew Burgess <andrew.burgess@embecosm.com>
4514
4515 * cli/cli-utils.c (info_print_options_defs): Delete.
4516 (make_info_print_options_def_group): Delete.
4517 (extract_info_print_options): Delete.
4518 (info_print_command_completer): Delete.
4519 (info_print_args_help): Add extra parameter, and optionally
4520 include text about -n flag.
4521 * cli/cli-utils.h (struct info_print_options): Delete.
4522 (extract_info_print_options): Delete declaration.
4523 (info_print_command_completer): Delete declaration.
4524 (info_print_args_help): Add extra parameter, extend header
4525 comment.
4526 * python/python.c (gdbpy_rbreak): Pass additional parameter to
4527 search_symbols.
4528 * stack.c (struct info_print_options): New type.
4529 (info_print_options_defs): New file scoped variable.
4530 (make_info_print_options_def_group): New static function.
4531 (info_print_command_completer): New static function.
4532 (info_locals_command): Update to use new local functions.
4533 (info_args_command): Likewise.
4534 (_initialize_stack): Add extra parameter to calls to
4535 info_print_args_help.
4536 * symtab.c (search_symbols): Add extra parameter, use this to
4537 possibly excluse non-debug symbols.
4538 (symtab_symbol_info): Add extra parameter, which is passed on to
4539 search_symbols.
4540 (struct info_print_options): New type.
4541 (info_print_options_defs): New file scoped variable.
4542 (make_info_print_options_def_group): New static function.
4543 (info_print_command_completer): New static function.
4544 (info_variables_command): Update to use local functions, and pass
4545 extra parameter through to symtab_symbol_info.
4546 (info_functions_command): Likewise.
4547 (info_types_command): Pass additional argument through to
4548 symtab_symbol_info.
4549 (rbreak_command): Pass extra argument to search_symbols.
4550 (_initialize_symtab): Add extra arguments for calls to
4551 info_print_args_help, and update help text for 'info variables',
4552 'whereis', and 'info functions' commands.
4553 * symtab.h (search_symbols): Add extra argument to declaration.
4554 * NEWS: Mention new flags.
4555
45562019-08-26 Christian Biesinger <cbiesinger@google.com>
4557
4558 * symtab.c (lookup_static_symbol): Call the new function (and move
4559 it down to be next to lookup_global_symbol).
4560 (struct global_sym_lookup_data): Add block_enum member and rename to...
4561 (struct global_or_static_sym_lookup_data): ...this.
4562 (lookup_symbol_global_iterator_cb): Pass block_index instead of
4563 GLOBAL_BLOCK to lookup_symbol_in_objfile and rename to...
4564 (lookup_symbol_global_or_static_iterator_cb): ...this.
4565 (lookup_global_or_static_symbol): New function.
4566 (lookup_global_symbol): Call new function.
4567
45682019-08-26 Tom de Vries <tdevries@suse.de>
4569
4570 PR c++/24852
4571 * break-catch-throw.c (fetch_probe_arguments): Improve error mesage
4572 when pc_probe.prob == NULL.
4573
45742019-08-25 Simon Marchi <simon.marchi@efficios.com>
4575
4576 * dwarf2read.c (dw2_debug_names_iterator::next): Rename local
4577 variable symbol_linkage to symbol_linkage_.
4578
45792019-08-25 Simon Marchi <simon.marchi@efficios.com>
4580
4581 * dwarf2read.c (dw2_debug_names_iterator::next): Use enum to
4582 represent whether the symbol is static, dynamic, or we don't
4583 know.
4584
45852019-08-25 Yoshinori Sato <ysato@users.sourceforge.jp>
4586
4587 * gdb/rx-tdep.c (rx_register_names): New.
4588 (rx_register_name): Delete.
4589 (rx_psw_type): Delete.
4590 (rx_fpsw_type): Delete.
4591 (rx_register_type): Delete.
4592 (rx_gdbarch_init): Convert target-descriptions.
4593 (_initialize_rx_tdep): Add initialize_tdesc_rx.
4594 * gdb/features/Makefile: Add rx.xml.
4595 * gdb/features/rx.xml: New.
4596 * gdb/features/rx.c: Generated.
4597 * gdb/NEWS: Mention target description support.
4598
45992019-08-22 Christian Biesinger <cbiesinger@google.com>
4600
4601 * symtab.c (symbol_cache_lookup): Always initialize *bsc_ptr and
4602 *slot_ptr.
4603
46042019-08-23 Sergio Durigan Junior <sergiodj@redhat.com>
4605
4606 * configure.ac: Don't check for 'dlfcn.h' (moved to
4607 gdbsupport/common.m4).
4608 * Makefile.in (COMMON_SFILES): Move 'gdb-dlfcn.c' to
4609 'gdbsupport/'.
4610 (HFILES_NO_SRCDIR): Likewise, for 'gdb-dlfcn.h'.
4611 * compile/compile-c-support.c: Include
4612 'gdbsupport/gdb-dlfcn.h'.
4613 * gdbsupport/common.m4: Check for 'dlfcn.h'.
4614 * gdb-dlfcn.c: Move to...
4615 * gdbsupport/gdb-dlfcn.c: ... here.
4616 * gdb-dlfcn.h: Move to...
4617 * gdbsupport/gdb-dlfcn.h: ... here.
4618
46192019-08-23 Sandra Loosemore <sandra@codesourcery.com>
4620
4621 * nios2-tdep.c (struct reg_value): Improve comments. Make
4622 the offset field signed.
4623
46242019-08-22 Christian Biesinger <cbiesinger@google.com>
4625
4626 * python/lib/gdb/__init__.py (_execute_file): New function.
4627 * python/python.c (python_run_simple_file): Call gdb._execute_file
4628 on Windows.
4629
46302019-08-22 Andrew Burgess <andrew.burgess@embecosm.com>
4631
4632 * f-exp.y (yylex): Remove is_a_field_of_this local variable, and
4633 all uses as this was never set to anything but a zero value.
4634
46352019-08-21 Bogdan Harjoc <harjoc@gmail.com>
4636
4637 * cli/cli-cmds.c (with_command_1): Error out if no arguments.
4638
46392019-08-21 Christian Biesinger <cbiesinger@google.com>
4640
4641 * tui/tui-data.h (tui_gen_win_info): Add an =default
4642 move constructor, required by some GCC versions.
4643
46442019-08-21 Jinke Fan <fanjinke51@yeah.net>
4645
4646 * go32-nat.c (go32_sysinfo): Add hygon_p.
4647
46482019-08-20 Tom Tromey <tom@tromey.com>
4649
4650 * tui/tui-regs.h (struct tui_data_window) <last_regs_line_no,
4651 line_from_reg_element_no, first_reg_element_no_inline,
4652 display_all_data, delete_data_content_windows,
4653 erase_data_content>: Now private.
4654
46552019-08-20 Tom Tromey <tom@tromey.com>
4656
4657 * tui/tui-wingeneral.c (box_win): Change type of highlight_flag.
4658 (tui_unhighlight_win, tui_highlight_win)
4659 (tui_win_info::make_window): Update.
4660 * tui/tui-data.h (HILITE, NO_HILITE): Remove.
4661
46622019-08-20 Tom Tromey <tom@tromey.com>
4663
4664 * tui/tui-data.h (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
4665 (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
4666 (MAX_PID_WIDTH): Move to tui-stack.c.
4667 * tui/tui-stack.c (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
4668 (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
4669 (MAX_PID_WIDTH): Move from tui-data.h.
4670
46712019-08-20 Tom Tromey <tom@tromey.com>
4672
4673 * tui/tui-wingeneral.h (tui_make_window): Don't declare.
4674 * tui/tui-wingeneral.c (box_win): Change type of win_info.
4675 (box_win): Update.
4676 (tui_gen_win_info::make_window): Rename from tui_make_window.
4677 (tui_win_info::make_window): New method.
4678 (tui_gen_win_info::make_visible): Update.
4679 * tui/tui-source.c (tui_source_window::set_contents): Update.
4680 * tui/tui-regs.c (tui_data_window::show_register_group): Update.
4681 (tui_data_window::display_registers_from): Update.
4682 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
4683 * tui/tui-data.h (struct tui_gen_win_info) <make_window>:
4684 Declare.
4685 <can_box>: Remove.
4686 <title>: Remove.
4687 (struct tui_win_info) <make_window>: Declare.
4688 <can_box>: Now virtual.
4689 <title>: New member.
4690 * tui/tui-data.c (~tui_gen_win_info): Don't free title.
4691 * tui/tui-command.c (tui_cmd_window::resize): Update.
4692
46932019-08-20 Tom Tromey <tom@tromey.com>
4694
4695 * tui/tui-regs.h (struct tui_data_window) <display_regs>: Remove.
4696 * tui/tui-regs.c (tui_data_window::show_registers): Update.
4697 (tui_data_window::check_register_values): Update.
4698
46992019-08-20 Tom Tromey <tom@tromey.com>
4700
4701 * tui/tui-regs.h (struct tui_data_window): Use
4702 DISABLE_COPY_AND_ASSIGN.
4703 <regs_content>: Change type, removing unique_ptr.
4704 <tui_data_window>: Add move constructor.
4705 * tui/tui-regs.c (tui_data_window::show_registers)
4706 (tui_data_window::show_register_group)
4707 (tui_data_window::display_registers_from)
4708 (tui_data_window::display_registers_from)
4709 (tui_data_window::first_data_item_displayed)
4710 (tui_data_window::delete_data_content_windows)
4711 (tui_data_window::rerender, tui_data_window::refresh_window)
4712 (tui_data_window::check_register_values): Update.
4713
47142019-08-20 Tom Tromey <tom@tromey.com>
4715
4716 * tui/tui-regs.h (struct tui_data_window) <show_registers,
4717 show_register_group>: Declare.
4718 (tui_show_register_group): Don't declare.
4719 * tui/tui-regs.c (tui_data_window::show_registers): Rename from
4720 tui_show_registers.
4721 (tui_data_window::show_register_group): Rename from
4722 tui_show_register_group.
4723 (tui_data_window::check_register_values, tui_reg_command):
4724 Update.
4725 * tui/tui-layout.c (tui_set_layout): Update.
4726
47272019-08-20 Tom Tromey <tom@tromey.com>
4728
4729 * tui/tui-regs.h (struct tui_data_window) <check_register_values>:
4730 Declare.
4731 (tui_check_register_values): Don't declare.
4732 * tui/tui-regs.c (tui_data_window::check_register_values): Rename
4733 from tui_check_register_values.
4734 * tui/tui-hooks.c (tui_register_changed): Update.
4735
47362019-08-20 Tom Tromey <tom@tromey.com>
4737
4738 * tui/tui-regs.c (tui_reg_layout): Move later.
4739 (tui_show_registers): Don't enable TUI mode or change layout.
4740
47412019-08-20 Tom Tromey <tom@tromey.com>
4742
4743 * tui/tui-regs.h (struct tui_data_item_window)
4744 <~tui_data_item_window>: Remove.
4745 <content>: Now a unique_xmalloc_ptr.
4746 * tui/tui-regs.c (tui_register_format): Return a
4747 unique_xmalloc_ptr.
4748 (tui_get_register): Update.
4749 (~tui_data_item_window): Remove.
4750 (tui_data_window::display_registers_from, tui_display_register):
4751 Update.
4752 * tui/tui-io.h (tui_expand_tabs): Update.
4753 * tui/tui-io.c (tui_expand_tabs): Return a unique_xmalloc_ptr.
4754 Remove "col" parameter.
4755
47562019-08-20 Tom Tromey <tom@tromey.com>
4757
4758 * tui/tui-regs.h (struct tui_data_item_window) <value>: Remove
4759 field.
4760 * tui/tui-regs.c (~tui_data_item_window): Update.
4761
47622019-08-20 Tom Tromey <tom@tromey.com>
4763
4764 * tui/tui-regs.c (tui_register_format, tui_get_register): Move
4765 earlier.
4766
47672019-08-20 Tom Tromey <tom@tromey.com>
4768
4769 * tui/tui-regs.c (tui_reg_command): Remove NULL check.
4770
47712019-08-20 Tom Tromey <tom@tromey.com>
4772
4773 * tui/tui-source.h (struct tui_source_window): Update.
4774 * tui/tui-regs.c (tui_show_registers): Update.
4775 * tui/tui-disasm.h (struct tui_disasm_window): Update.
4776 * tui/tui-data.h (NO_SRC_STRING, NO_DISASSEM_STRING)
4777 (NO_REGS_STRING): Remove defines.
4778
47792019-08-20 Conrad Meyer <cem@FreeBSD.org>
4780
4781 * remote.c (remote_target::remote_btrace_maybe_reopen): Avoid
4782 unnecessary thread walk if remote doesn't support the packet.
4783
47842019-08-19 Tom Tromey <tromey@adacore.com>
4785
4786 * python/py-value.c (value_has_field): Fix indentation.
4787
47882019-08-19 Tom Tromey <tromey@adacore.com>
4789
4790 * printcmd.c (do_one_display, info_display_command): Update.
4791 * block.h (contained_in): Return bool. Add allow_nested
4792 parameter.
4793 * block.c (contained_in): Return bool. Add allow_nested
4794 parameter.
4795
47962019-08-19 Tom Tromey <tom@tromey.com>
4797
4798 * configure: Rebuild.
4799 * configure.ac: Disallow the combination of -static-libstdc++ and
4800 source highlight.
4801 * source-cache.c (get_language_name): Handle rust.
4802 (source_cache::get_source_lines): Ignore highlighting exceptions.
4803
48042019-08-16 Tom Tromey <tom@tromey.com>
4805
4806 * tui/tui.h (enum tui_win_type) <EXEC_INFO_WIN>: Remove.
4807 * tui/tui-winsource.h (struct tui_exec_info_window): Remove.
4808 (struct tui_source_window_base) <make_visible, refresh_window,
4809 resize>: Remove methods.
4810 <execution_info>: Remove field.
4811 * tui/tui-winsource.c (tui_source_window_base::do_erase_source_content)
4812 (tui_show_source_line, tui_source_window_base)
4813 (~tui_source_window_base): Update.
4814 (tui_source_window_base::resize)
4815 (tui_source_window_base::make_visible)
4816 (tui_source_window_base::refresh_window): Remove.
4817 (tui_source_window_base::update_exec_info): Update.
4818 * tui/tui-source.c (tui_source_window::set_contents): Update.
4819 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
4820
48212019-08-16 Tom Tromey <tom@tromey.com>
4822
4823 * tui/tui-hooks.c (tui_remove_hooks): Don't set
4824 deprecated_query_hook.
4825
48262019-08-16 Tom Tromey <tom@tromey.com>
4827
4828 * tui/tui-winsource.c (tui_update_source_windows_with_addr)
4829 (tui_update_source_windows_with_line): Update.
4830 * tui/tui-source.h (struct tui_source_window)
4831 <show_symtab_source>: Declare.
4832 (tui_show_symtab_source): Don't declare.
4833 * tui/tui-source.c (tui_show_symtab_source): Rename from
4834 tui_show_symtab_source.
4835
48362019-08-16 Tom Tromey <tom@tromey.com>
4837
4838 * tui/tui-winsource.h (struct tui_source_window_base)
4839 <set_contents>: Declare.
4840 * tui/tui-winsource.c
4841 (tui_source_window_base::update_source_window_as_is): Update.
4842 * tui/tui-source.h (struct tui_source_window) <set_contents>:
4843 Declare.
4844 (tui_set_source_content): Don't declare.
4845 * tui/tui-source.c (tui_source_window::set_contents): Rename from
4846 tui_set_source_content.
4847 * tui/tui-disasm.h (struct tui_disasm_window) <set_contents>:
4848 Declare.
4849 (tui_set_disassem_content): Don't declare.
4850 * tui/tui-disasm.c (tui_disasm_window::set_contents): Rename from
4851 tui_set_disassem_content.
4852
48532019-08-16 Tom Tromey <tom@tromey.com>
4854
4855 * tui/tui-winsource.h (struct tui_source_window_base)
4856 <update_breakpoint_info>: Declare.
4857 (tui_update_breakpoint_info): Don't declare.
4858 * tui/tui-winsource.c (tui_source_window_base::update_source_window_as_is)
4859 (tui_update_all_breakpoint_info): Update.
4860 (tui_source_window_base::update_breakpoint_info): Rename from
4861 tui_update_breakpoint_info.
4862 (tui_source_window_base::update_exec_info): Update.
4863
48642019-08-16 Tom Tromey <tom@tromey.com>
4865
4866 * tui/tui-winsource.h (struct tui_source_window_base)
4867 <update_source_window>: Declare.
4868 (tui_update_source_window): Don't declare.
4869 * tui/tui-winsource.c
4870 (tui_source_window_base::update_source_window): Rename from
4871 tui_update_source_window.
4872 (tui_source_window_base::rerender): Update.
4873 * tui/tui-source.c (tui_source_window::maybe_update): Update.
4874 * tui/tui-disasm.c (tui_show_disassem)
4875 (tui_show_disassem_and_update_source)
4876 (tui_disasm_window::maybe_update): Update.
4877
48782019-08-16 Tom Tromey <tom@tromey.com>
4879
4880 * tui/tui-winsource.h (struct tui_source_window_base)
4881 <update_source_window_as_is>: Declare.
4882 (tui_update_source_window_as_is): Don't declare.
4883 * tui/tui-winsource.c (tui_update_source_window): Update
4884 (tui_source_window_base::update_source_window_as_is): Rename from
4885 tui_update_source_window_as_is.
4886 (tui_source_window_base::refill): Update.
4887 * tui/tui-source.c (tui_show_symtab_source): Update.
4888 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical):
4889 Update.
4890
48912019-08-16 Tom Tromey <tom@tromey.com>
4892
4893 * tui/tui-winsource.h (tui_update_source_window)
4894 (tui_update_source_window_as_is): Remove "noerror" parameter.
4895 * tui/tui-winsource.c (tui_update_source_window)
4896 (tui_update_source_window_as_is): Remove "noerror" parameter.
4897 (tui_update_source_windows_with_addr)
4898 (tui_update_source_windows_with_line)
4899 (tui_source_window_base::rerender)
4900 (tui_source_window_base::refill): Update.
4901 * tui/tui-source.h (tui_set_source_content)
4902 (tui_show_symtab_source): Remove "noerror" parameter.
4903 * tui/tui-source.c (tui_set_source_content): Remove "noerror"
4904 parameter.
4905 (tui_show_symtab_source): Likewise.
4906 (tui_source_window::maybe_update): Update.
4907 * tui/tui-disasm.c (tui_show_disassem)
4908 (tui_show_disassem_and_update_source)
4909 (tui_disasm_window::do_scroll_vertical)
4910 (tui_disasm_window::maybe_update): Update.
4911
49122019-08-16 Tom Tromey <tom@tromey.com>
4913
4914 * tui/tui.c (tui_is_window_visible): Update.
4915 * tui/tui-wingeneral.c (tui_make_window)
4916 (tui_gen_win_info::make_visible, tui_refresh_all): Update.
4917 * tui/tui-win.c (window_name_completer, tui_refresh_all_win)
4918 (tui_set_focus_command, tui_all_windows_info, update_tab_width)
4919 (tui_set_win_height_command, parse_scrolling_args): Update.
4920 * tui/tui-source.c (tui_source_window::style_changed): Update.
4921 * tui/tui-regs.c (tui_show_registers)
4922 (tui_data_window::first_data_item_displayed)
4923 (tui_data_window::delete_data_content_windows)
4924 (tui_check_register_values, tui_reg_command): Update.
4925 * tui/tui-disasm.c (tui_show_disassem): Update.
4926 * tui/tui-data.h (struct tui_gen_win_info) <is_visible>: New
4927 method.
4928 <is_visible>: Remove field.
4929 * tui/tui-data.c (tui_next_win, tui_prev_win)
4930 (tui_delete_invisible_windows): Update.
4931
49322019-08-16 Tom Tromey <tom@tromey.com>
4933
4934 * tui/tui-winsource.h (struct tui_source_window_base)
4935 <m_has_locator>: Remove.
4936 * tui/tui-layout.c (show_source_disasm_command, show_data)
4937 (show_source_or_disasm_and_command): Update.
4938
49392019-08-16 Alan Hayward <alan.hayward@arm.com>
4940
4941 * NEWS (Other MI changes): New subsection.
4942 * aarch64-tdep.c (aarch64_get_pc_address_flags): New function.
4943 (aarch64_gdbarch_init): Add aarch64_get_pc_address_flags.
4944 * arch-utils.c (default_get_pc_address_flags): New function.
4945 * arch-utils.h (default_get_pc_address_flags): New declaration.
4946 * gdbarch.sh: Add get_pc_address_flags.
4947 * gdbarch.c: Regenerate.
4948 * gdbarch.h: Likewise.
4949 * stack.c (print_pc): New function.
4950 (print_frame_info) (print_frame): Call print_pc.
4951
49522019-08-16 Tom de Vries <tdevries@suse.de>
4953
4954 * maint.c (maintenance_info_sections): Also handle !ALLOBJ case using
4955 print_objfile_section_info.
4956
49572019-08-15 Tom Tromey <tom@tromey.com>
4958
4959 * tui/tui-io.c (tui_puts_internal): Check TUI_CMD_WIN before
4960 calling update_cmdwin_start_line.
4961 * tui/tui-winsource.h (struct tui_source_window_base)
4962 <do_make_visible_with_new_height, set_new_height>: Don't declare.
4963 <rerender>: Declare.
4964 * tui/tui-winsource.c (tui_source_window_base::update_tab_width):
4965 Call rerender.
4966 (tui_source_window_base::set_new_height): Remove.
4967 (tui_source_window_base::rerender): Rename from
4968 do_make_visible_with_new_height.
4969 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Use
4970 resize method.
4971 (tui_win_info::make_invisible_and_set_new_height)
4972 (tui_win_info::make_visible_with_new_height): Remove.
4973 * tui/tui-stack.h (struct tui_locator_window) <rerender>:
4974 Declare.
4975 * tui/tui-stack.c (tui_locator_window::rerender): New method.
4976 * tui/tui-regs.h (struct tui_data_window) <set_new_height,
4977 do_make_visible_with_new_height>: Don't declare.
4978 <rerender>: Declare.
4979 * tui/tui-regs.c (tui_data_window::rerender): Rename from
4980 set_new_height.
4981 (tui_data_window::do_make_visible_with_new_height): Remove.
4982 * tui/tui-layout.c (show_source_disasm_command, show_data): Don't
4983 call tui_show_locator_content.
4984 (tui_gen_win_info::resize): Call rerender.
4985 (show_source_or_disasm_and_command): Don't call
4986 tui_show_locator_content.
4987 * tui/tui-data.h (struct tui_gen_win_info) <rerender>: New
4988 method.
4989 (struct tui_win_info) <rerender>: Declare.
4990 <set_new_height, make_invisible_and_set_new_height,
4991 make_visible_with_new_height>: Don't declare.
4992 * tui/tui-data.c (tui_win_list::rerender): New method.
4993 * tui/tui-command.h (struct tui_cmd_window)
4994 <do_make_visible_with_new_height>: Don't declare.
4995 * tui/tui-command.c
4996 (tui_cmd_window::do_make_visible_with_new_height): Remove.
4997
49982019-08-15 Tom Tromey <tromey@adacore.com>
4999
5000 * ada-exp.y (convert_char_literal): Handle "Q%c" encoding.
5001 * ada-lang.c (ada_enum_name): Likewise.
5002
50032019-08-15 Christian Biesinger <cbiesinger@google.com>
5004
5005 * python/lib/gdb/__init__.py (GdbOutputFile): Rename to have a
5006 leading underscore.
5007 (GdbOutputErrorFile): Likewise.
5008 (global scope): Adjust constructor calls to GdbOutput{,Error}File
5009 accordingly.
5010 (execute_unwinders): Rename to have a leading underscore.
5011 (auto_load_packages): Likewise.
5012 (global scope): Adjust call to auto_load_packages accordingly.
5013 (GdbSetPythonDirectory): Likewise.
5014 * python/py-unwind.c (pyuw_sniffer): Call _execute_unwinders
5015 instead of execute_unwinders.
5016
50172019-08-15 Tom Tromey <tom@tromey.com>
5018
5019 * tui/tui-layout.c (show_layout, show_source_disasm_command)
5020 (show_data): Don't change window visibility.
5021 (tui_gen_win_info::resize): Remove special case for command
5022 window. Use wresize, when available.
5023 (show_source_or_disasm_and_command): Don't change window
5024 visibility.
5025 * tui/tui-command.h (struct tui_cmd_window) <resize>: Declare.
5026 <make_visible>: New method.
5027 * tui/tui-command.c (tui_cmd_window::resize): New method.
5028
50292019-08-15 Tom Tromey <tom@tromey.com>
5030
5031 * tui/tui-winsource.h (struct tui_source_window_iterator): New.
5032 (struct tui_source_windows): New.
5033 * tui/tui-winsource.c (tui_display_main): Update.
5034 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
5035 (new_height_ok, parse_scrolling_args): Update.
5036 * tui/tui-layout.c (show_layout, show_data): Update.
5037 * tui/tui-data.h (tui_source_windows, tui_clear_source_windows)
5038 (tui_add_to_source_windows): Don't declare.
5039 * tui/tui-data.c (source_windows, tui_source_windows)
5040 (tui_clear_source_windows, tui_add_to_source_windows): Remove.
5041
50422019-08-15 Tom Tromey <tom@tromey.com>
5043
5044 * tui/tui-winsource.h (struct tui_source_window_base) <resize>:
5045 Rename from reset.
5046 * tui/tui-winsource.c (tui_source_window_base::resize): Rename.
5047 * tui/tui-layout.c (show_source_disasm_command, show_data):
5048 Update.
5049 (tui_gen_win_info::resize): Rename.
5050 (show_source_or_disasm_and_command): Update.
5051 * tui/tui-data.h (struct tui_gen_win_info) <resize>: Rename from
5052 reset.
5053
50542019-08-15 Tom Tromey <tom@tromey.com>
5055
5056 * tui/tui-stack.c (tui_initialize_static_data): Remove.
5057 * tui/tui-interp.c (tui_interp::init): Don't call
5058 tui_initialize_static_data.
5059 * tui/tui-data.h (tui_initialize_static_data): Don't declare.
5060
50612019-08-15 Tom Tromey <tom@tromey.com>
5062
5063 * tui/tui-layout.c (tui_default_win_viewport_height): Don't
5064 examine tui_win_list.
5065
50662019-08-15 Tom Tromey <tom@tromey.com>
5067
5068 * tui/tui-winsource.h (tui_clear_source_content): Don't declare.
5069 * tui/tui-winsource.c (tui_update_source_window_as_is): Don't call
5070 tui_clear_source_content.
5071 (tui_clear_source_content): Remove.
5072 (tui_source_window_base::do_erase_source_content): Hoist call to
5073 content.clear().
5074 * tui/tui-stack.c (tui_show_frame_info): Don't call
5075 tui_clear_source_content.
5076
50772019-08-15 Tom Tromey <tom@tromey.com>
5078
5079 * tui/tui-winsource.h (struct tui_source_window_base)
5080 <do_erase_source_content>: New method.
5081 <erase_source_content>: New method.
5082 (tui_erase_source_content): Don't declare.
5083 * tui/tui-winsource.c (tui_clear_source_content): Update.
5084 (tui_source_window_base::do_erase_source_content): Rename from
5085 tui_erase_source_content.
5086 (tui_source_window_base::show_source_content): Update.
5087 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
5088 * tui/tui-source.h (struct tui_source_window)
5089 <erase_source_content>: New method.
5090 * tui/tui-disasm.h (struct tui_disasm_window)
5091 <erase_source_content>: New method.
5092
50932019-08-15 Tom Tromey <tom@tromey.com>
5094
5095 * tui/tui-winsource.h (tui_alloc_source_buffer): Don't declare.
5096 (struct tui_source_element): Add DISABLE_COPY_AND_ASSIGN, and move
5097 constructor.
5098 * tui/tui-winsource.c (tui_alloc_source_buffer): Remove.
5099 * tui/tui-source.c (tui_set_source_content): Update.
5100 * tui/tui-disasm.c (tui_set_disassem_content): Update.
5101
51022019-08-15 Tom Tromey <tom@tromey.com>
5103
5104 * tui/tui-winsource.h (tui_line_is_displayed): Don't declare.
5105 * tui/tui-winsource.c (tui_line_is_displayed): Move to
5106 tui-source.c.
5107 * tui/tui-source.h (struct tui_source_window) <line_is_displayed>:
5108 Declare.
5109 * tui/tui-source.c (tui_source_window::line_is_displayed): New
5110 method.
5111 (tui_source_window::maybe_update): Update.
5112
51132019-08-15 Tom Tromey <tom@tromey.com>
5114
5115 * tui/tui-winsource.h (tui_addr_is_displayed): Don't declare.
5116 * tui/tui-winsource.c (tui_addr_is_displayed): Move to
5117 tui-disasm.c.
5118 * tui/tui-disasm.h (struct tui_disasm_window) <addr_is_displayed>:
5119 Declare.
5120 * tui/tui-disasm.c (tui_disasm_window::addr_is_displayed): New
5121 method.
5122 (tui_disasm_window::maybe_update): Update.
5123
51242019-08-15 Tom Tromey <tom@tromey.com>
5125
5126 * tui/tui-winsource.h (struct tui_source_window_base)
5127 <maybe_update>: Declare.
5128 * tui/tui-stack.c (tui_show_frame_info): Call maybe_update
5129 method.
5130 * tui/tui-source.h (struct tui_source_window) <maybe_update>:
5131 Declare.
5132 * tui/tui-source.c (tui_source_window::maybe_update): New method.
5133 * tui/tui-disasm.h (struct tui_disasm_window) <maybe_update>:
5134 Declare.
5135 * tui/tui-disasm.c (tui_disasm_window::maybe_update): New method.
5136
51372019-08-15 Tom Tromey <tom@tromey.com>
5138
5139 * tui/tui-stack.c (tui_make_status_line): Use string constructor.
5140
51412019-08-15 Tom Tromey <tom@tromey.com>
5142
5143 * tui/tui-wingeneral.c: Include tui-stack.h.
5144 * tui/tui-stack.h (MAX_LOCATOR_ELEMENT_LEN)
5145 (struct tui_locator_window): Move from tui-data.h.
5146 * tui/tui-stack.c (_locator, tui_locator_win_info_ptr)
5147 (tui_initialize_static_data): Move from tui-data.c.
5148 * tui/tui-data.h (MAX_LOCATOR_ELEMENT_LEN)
5149 (struct tui_locator_window): Move to tui-stack.c.
5150 * tui/tui-data.c (_locator, tui_locator_win_info_ptr)
5151 (tui_initialize_static_data): Move to tui-stack.c.
5152
51532019-08-15 Tom Tromey <tom@tromey.com>
5154
5155 * tui/tui-layout.c (show_source_disasm_command)
5156 (show_source_or_disasm_and_command): Use make_visible method, not
5157 tui_make_window.
5158 * tui/tui-command.h (struct tui_cmd_window) <make_visible>:
5159 Remove.
5160
51612019-08-15 Tom Tromey <tom@tromey.com>
5162
5163 * tui/tui-wingeneral.h (tui_make_window): Update.
5164 * tui/tui-wingeneral.c (tui_make_window): Remove "box_it"
5165 parameter.
5166 (tui_gen_win_info::make_visible): Update.
5167 * tui/tui-regs.c (tui_data_window::display_registers_from):
5168 Update.
5169 * tui/tui-layout.c (show_source_disasm_command)
5170 (show_source_or_disasm_and_command): Update.
5171 * tui/tui-data.h (struct tui_gen_win_info) <can_box>: New method.
5172 (enum tui_box): Remove.
5173 (struct tui_win_info) <can_box>: New method.
5174 * tui/tui-command.h (struct tui_cmd_window) <can_box>: New
5175 method.
5176
51772019-08-15 Tom de Vries <tdevries@suse.de>
5178
5179 * linux-nat-trad.c: Include gdbarch.h.
5180
51812019-08-14 Alan Hayward <alan.hayward@arm.com>
5182
5183 * aarch64-tdep.c (aarch64_analyze_prologue): Allow any valid
5184 register sizes.
5185
51862019-08-14 Tom Tromey <tromey@adacore.com>
5187
5188 * darwin-nat.c: Include gdbarch.h.
5189 * darwin-nat-info.c: Include gdbarch.h.
5190
51912019-08-13 Tom Tromey <tom@tromey.com>
5192
5193 * tui/tui-data.h (struct tui_gen_win_info) <last_visible_line>:
5194 Remove.
5195 * tui/tui-data.c (tui_initialize_static_data): Update.
5196
51972019-08-13 Tom Tromey <tom@tromey.com>
5198
5199 * tui/tui-winsource.h (struct tui_exec_info_window)
5200 <~tui_exec_info_window, maybe_allocate_content, get_content,
5201 m_content>: Remove.
5202 (struct tui_source_window_base) <set_exec_info_content,
5203 show_exec_info_content>: Don't declare.
5204 * tui/tui-winsource.c
5205 (tui_exec_info_window::maybe_allocate_content): Remove.
5206 (tui_source_window_base::update_exec_info): Rename from
5207 set_exec_info_content.
5208 (tui_source_window_base::show_exec_info_content)
5209 (tui_source_window_base::update_exec_info): Remove.
5210
52112019-08-13 Tom Tromey <tom@tromey.com>
5212
5213 * tui/tui-winsource.h (tui_clear_exec_info_content): Don't
5214 declare.
5215 * tui/tui-winsource.c (tui_update_source_window_as_is)
5216 (tui_update_source_windows_with_addr, tui_erase_source_content):
5217 Update.
5218 (tui_clear_exec_info_content): Remove.
5219
52202019-08-13 Tom Tromey <tom@tromey.com>
5221
5222 * tui/tui-winsource.h (tui_erase_exec_info_content): Don't
5223 declare.
5224 * tui/tui-winsource.c (tui_source_window_base::refresh_all): Don't
5225 call tui_erase_exec_info_content.
5226 (tui_clear_exec_info_content): Rename from
5227 tui_erase_exec_info_content.
5228 (tui_clear_exec_info_content): Delete.
5229
52302019-08-13 Tom Tromey <tom@tromey.com>
5231
5232 * tui/tui-winsource.h (struct tui_source_window_base)
5233 <show_exec_info_content>: Declare.
5234 (tui_show_exec_info_content): Don't declare.
5235 * tui/tui-winsource.c
5236 (tui_source_window_base::show_exec_info_content): Rename from
5237 tui_show_exec_info_content.
5238 (tui_source_window_base::update_exec_info): Update.
5239
52402019-08-13 Tom Tromey <tom@tromey.com>
5241
5242 * tui/tui-data.h (enum tui_bp_flag, tui_bp_flags, struct tui_source_element)
5243 (TUI_BP_HIT_POS, TUI_BP_BREAK_POS, TUI_EXEC_POS)
5244 (TUI_EXECINFO_SIZE, tui_exec_info_content): Move ...
5245 * tui/tui-winsource.h (enum tui_bp_flag, tui_bp_flags, struct
5246 tui_source_element, TUI_BP_HIT_POS, TUI_BP_BREAK_POS)
5247 (TUI_EXEC_POS, TUI_EXECINFO_SIZE, tui_exec_info_content):
5248 ... here.
5249
52502019-08-13 Tom Tromey <tom@tromey.com>
5251
5252 * tui/tui-winsource.h (struct tui_source_window_base)
5253 <update_exec_info>: Declare.
5254 (tui_update_exec_info): Don't declare.
5255 * tui/tui-winsource.c (tui_update_source_window_as_is)
5256 (tui_source_window_base::refresh_all)
5257 (tui_update_all_breakpoint_info): Update.
5258 (tui_source_window_base::update_exec_info): Rename from
5259 tui_update_exec_info.
5260 * tui/tui-stack.c (tui_show_frame_info): Update.
5261
52622019-08-13 Tom Tromey <tom@tromey.com>
5263
5264 * tui/tui-winsource.h (struct tui_source_window_base)
5265 <set_exec_info_content>: Declare.
5266 (tui_set_exec_info_content): Don't declare.
5267 * tui/tui-winsource.c
5268 (tui_source_window_base::set_exec_info_content): Rename from
5269 tui_set_exec_info_content.
5270 (tui_update_exec_info): Update.
5271
52722019-08-13 Tom Tromey <tom@tromey.com>
5273
5274 * tui/tui-winsource.h (struct tui_source_window_base)
5275 <show_source_content>: Declare.
5276 (tui_show_source_content): Don't declare.
5277 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
5278 (tui_source_window_base::show_source_content): Rename from
5279 tui_show_source_content.
5280 (tui_source_window_base::refresh_all): Update.
5281 * tui/tui-layout.c (show_source_disasm_command)
5282 (show_source_or_disasm_and_command): Update.
5283
52842019-08-13 Tom Tromey <tom@tromey.com>
5285
5286 * tui/tui-winsource.c (tui_erase_source_content)
5287 (tui_show_source_content, tui_source_window_base::refresh_all):
5288 Update.
5289 * tui/tui-wingeneral.h
5290 (tui_check_and_display_highlight_if_needed): Don't declare.
5291 * tui/tui-wingeneral.c
5292 (tui_win_info::check_and_display_highlight_if_needed): Rename from
5293 check_and_display_highlight_if_needed.
5294 * tui/tui-win.c (tui_rehighlight_all)
5295 (tui_win_info::make_visible_with_new_height): Update.
5296 * tui/tui-regs.c (tui_data_window::display_registers_from_line)
5297 (tui_data_window::erase_data_content)
5298 (tui_data_window::display_all_data): Update.
5299 * tui/tui-data.h (struct tui_win_info)
5300 <check_and_display_highlight_if_needed>: Declare.
5301
53022019-08-13 Tom Tromey <tom@tromey.com>
5303
5304 * tui/tui-win.c (tui_resize_all): Call
5305 tui_delete_invisible_windows.
5306 * tui/tui-layout.c (show_layout): Call
5307 tui_delete_invisible_windows.
5308 * tui/tui-data.h (tui_delete_invisible_windows): Declare.
5309 * tui/tui-data.c (tui_delete_invisible_windows): New function.
5310
53112019-08-13 Tom Tromey <tom@tromey.com>
5312
5313 * tui/tui-disasm.c (tui_show_disassem): Add assertion. Don't call
5314 tui_add_win_to_layout.
5315
53162019-08-13 Tom Tromey <tom@tromey.com>
5317
5318 * tui/tui-layout.h (tui_default_win_height): Don't declare.
5319 * tui/tui-layout.c (tui_default_win_height): Now static.
5320
53212019-08-13 Tom Tromey <tom@tromey.com>
5322
5323 * tui/tui-layout.c (show_layout): Unify all layout cases into a
5324 single switch.
5325 (show_source_disasm_command, show_source_or_disasm_and_command):
5326 Don't check current layout.
5327
53282019-08-13 Tom Tromey <tom@tromey.com>
5329
5330 * tui/tui-wingeneral.c (make_all_visible): Remove.
5331 (tui_make_all_invisible): Simplify.
5332 * tui/tui-layout.c (tui_make_all_invisible): Move from
5333 tui-wingeneral.c; simplify.
5334 (show_layout): Hoist call to tui_make_all_invisible.
5335 (show_data): Don't call tui_make_all_invisible.
5336
53372019-08-13 Tom Tromey <tom@tromey.com>
5338
5339 * tui/tui-wingeneral.h (tui_make_all_visible): Don't declare.
5340 * tui/tui-wingeneral.c (tui_make_all_visible): Remove.
5341
53422019-08-13 Tom Tromey <tom@tromey.com>
5343
5344 * tui/tui-layout.c (current_layout, tui_current_layout): Move from
5345 tui-data.c.
5346 (show_source_disasm_command, show_data)
5347 (show_source_or_disasm_and_command): Don't use
5348 tui_set_current_layout_to.
5349 * tui/tui-data.h (tui_set_current_layout_to): Don't declare.
5350 * tui/tui-data.c (current_layout, tui_current_layout): Move to
5351 tui-layout.c.
5352 (tui_set_current_layout_to): Remove.
5353
53542019-08-13 Tom Tromey <tom@tromey.com>
5355
5356 * tui/tui-layout.c (tui_set_layout): Update.
5357 * tui/tui-data.h (struct tui_layout_def): Remove.
5358 (tui_layout_def): Don't declare.
5359 * tui/tui-data.c (layout_def): Remove.
5360 (tui_layout_def): Remove.
5361
53622019-08-13 Tom Tromey <tom@tromey.com>
5363
5364 * tui/tui-winsource.h (struct tui_source_window_base)
5365 <clear_detail>: No longer "override".
5366 * tui/tui-regs.h (struct tui_data_window) <clear_detail>: Remove.
5367 * tui/tui-regs.c (tui_data_window::clear_detail): Remove.
5368 * tui/tui-data.h (struct tui_win_info) <clear_detail>: Remove.
5369 * tui/tui-command.h (struct tui_cmd_window) <clear_detail>:
5370 Remove.
5371 * tui/tui-command.c (tui_cmd_window::clear_detail): Remove.
5372
53732019-08-13 Tom Tromey <tromey@adacore.com>
5374
5375 * tracepoint.c: Don't include readline.h or history.h.
5376
53772019-08-12 Tom Tromey <tom@tromey.com>
5378
5379 * configure: Rebuild.
5380 * configure.ac: Check for readline 7.
5381 * NEWS: Mention readline 7 requirement.
5382 * README: Update.
5383
53842019-08-12 Tom Tromey <tom@tromey.com>
5385
5386 * mingw-hdep.c (gdb_select): Remove readline hack.
5387
53882019-08-09 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
5389
5390 * blockframe.c (find_pc_partial_function): Set *block to nullptr
5391 when the function fails.
5392
53932019-08-09 Andreas Arnez <arnez@linux.ibm.com>
5394
5395 * s390-tdep.c (s390_type_align): New function.
5396 (s390_gdbarch_init): Set it as type_align gdbarch method.
5397
53982019-08-09 Tom de Vries <tdevries@suse.de>
5399
5400 PR gdb/24591
5401 * dwarf2read.c (dwarf2_fetch_die_loc_sect_off): Adjust pc_high and
5402 pc_low with relocation offset.
5403
54042019-08-07 Tom Tromey <tromey@adacore.com>
5405
5406 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
5407 (print_frame_args): Update.
5408 * python/py-framefilter.c (py_print_single_arg, enumerate_args):
5409 Update.
5410 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
5411 * frame.h (struct frame_arg): Add initializers.
5412 <error>: Now a unique_xmalloc_ptr.
5413
54142019-08-07 Alan Hayward <alan.hayward@arm.com>
5415
5416 * NEWS: Expand the Pointer Authentication entry.
5417 * aarch64-tdep.c (aarch64_frame_unmask_address): Rename from this.
5418 (aarch64_frame_unmask_lr): ... to this.
5419 (aarch64_prologue_prev_register, aarch64_dwarf2_prev_register):
5420 Call aarch64_frame_unmask_lr.
5421 * frame.c (struct frame_info): Add "masked" variable.
5422 (frame_set_previous_pc_masked) (frame_get_pc_masked): New functions.
5423 (fprint_frame): Check for masked pc.
5424 * frame.h (frame_set_previous_pc_masked) (frame_get_pc_masked): New
5425 declarations.
5426 * python/py-framefilter.c (py_print_frame): Check for masked pc.
5427 * stack.c (print_frame): Check for masked pc.
5428
54292019-08-06 Tom Tromey <tom@tromey.com>
5430
5431 * stabsread.c (patch_block_stabs, read_one_struct_field)
5432 (read_enum_type): Use obstack_strndup.
5433 * rust-exp.y (rust_parser::copy_name): Use obstack_strndup.
5434 * gdb_obstack.h (obstack_strndup): Use obstack_strndup.
5435 * dwarf2read.c (guess_full_die_structure_name)
5436 (anonymous_struct_prefix): Use obstack_strndup.
5437 * dbxread.c (cp_set_block_scope): Use obstack_strndup.
5438 * c-exp.y (yylex): Use obstack_strndup.
5439 * ada-exp.y (write_object_renaming, write_ambiguous_var)
5440 (write_var_or_type): Use obstack_strndup.
5441
54422019-08-06 Tom Tromey <tom@tromey.com>
5443
5444 * symfile.c (reread_symbols): Use obstack_strdup.
5445 * stabsread.c (read_type): Use obstack_strdup.
5446 * gdb_obstack.h (obstack_strdup): New overload.
5447 * dwarf2read.c (dwarf2_compute_name, create_dwo_unit_in_dwp_v1)
5448 (create_dwo_unit_in_dwp_v2, build_error_marker_type)
5449 (dwarf2_canonicalize_name): Use obstack_strdup.
5450 * dbxread.c (read_dbx_symtab): Use obstack_strdup.
5451 * cp-support.c (inspect_type, replace_typedefs_qualified_name):
5452 Use obstack_strdup.
5453
54542019-08-06 Tom Tromey <tom@tromey.com>
5455
5456 * gdb_obstack.h (obstack_strdup): Define.
5457 * gdb_obstack.c (obstack_strdup): Don't define.
5458
54592019-08-06 Tom Tromey <tom@tromey.com>
5460
5461 * xcoffread.c (SYMNAME_ALLOC, process_xcoff_symbol): Use
5462 obstack_strdup.
5463 * typeprint.c (typedef_hash_table::find_global_typedef): Use
5464 obstack_strdup.
5465 * symfile.c (allocate_compunit_symtab): Use obstack_strdup.
5466 * stabsread.c (common_block_start): Use obstack_strdup.
5467 * objfiles.c (set_objfile_main_name, objfile): Use
5468 obstack_strdup.
5469 * namespace.c (add_using_directive): Use obstack_strdup.
5470 * mdebugread.c (parse_symbol, parse_type): Use obstack_strdup.
5471 * jit.c (finalize_symtab): Use obstack_strdup.
5472 * dwarf2read.c (fixup_go_packaging, dwarf2_physname)
5473 (guess_partial_die_structure_name, partial_die_info::fixup)
5474 (dwarf2_name): Use obstack_strdup.
5475 * coffread.c (coff_read_struct_type, coff_read_enum_type): Use
5476 obstack_strdup.
5477 * c-exp.y (scan_macro_expansion): Use obstack_strdup.
5478 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
5479 obstack_strdup.
5480 * ada-lang.c (ada_decode_symbol): Use obstack_strdup.
5481
54822019-08-07 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5483
5484 * unittests/help-doc-selftests.c: New file.
5485 * Makefile.in: Add the new file.
5486
54872019-08-07 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5488
5489 * cli/cli-decode.h (print_doc_line): Add for_value_prefix argument.
5490 * cli/cli-decode.c (print_doc_line): Likewise. It now prints
5491 the full first line, except when FOR_VALUE_PREFIX. In this case,
5492 the trailing '.' is not output, and the first character is uppercased.
5493 (print_help_for_command): Update call to print_doc_line.
5494 (print_doc_of_command): Likewise.
5495 * cli/cli-setshow.c (deprecated_show_value_hack): Likewise.
5496 * cli/cli-option.c (append_indented_doc): Do not append newline.
5497 (build_help_option): Append newline after first appended_indented_doc
5498 only if a second call is done.
5499 (build_help): Append 2 new lines before each option, except the first
5500 one.
5501 * compile/compile.c (_initialize_compile): Add new lines after
5502 %OPTIONS%, when not at the end of the help.
5503 Change help doc or code
5504 producing the help doc to respect the invariants.
5505 * maint-test-options.c (_initialize_maint_test_options): Likewise.
5506 Also removed the new line after 'Options:', as all other commands
5507 do not put an empty line between 'Options:' and the first option.
5508 * printcmd.c (_initialize_printcmd): Likewise.
5509 * stack.c (_initialize_stack): Likewise.
5510 * interps.c (interpreter_exec_cmd): Fix "Usage:" line that was
5511 incorrectly telling COMMAND is optional.
5512 * ada-lang.c (_initialize_ada_language): Change help doc or code
5513 producing the help doc to respect the invariants.
5514 * ada-tasks.c (_initialize_ada_tasks): Likewise.
5515 * breakpoint.c (_initialize_breakpoint): Likewise.
5516 * cli/cli-cmds.c (_initialize_cli_cmds): Likewise.
5517 * cli/cli-logging.c (_initialize_cli_logging): Likewise.
5518 * cli/cli-setshow.c (_initialize_cli_setshow): Likewise.
5519 * cli/cli-style.c (cli_style_option::add_setshow_commands,
5520 _initialize_cli_style): Likewise.
5521 * corelow.c (core_target_info): Likewise.
5522 * dwarf-index-cache.c (_initialize_index_cache): Likewise.
5523 * dwarf2read.c (_initialize_dwarf2_read): Likewise.
5524 * filesystem.c (_initialize_filesystem): Likewise.
5525 * frame.c (_initialize_frame): Likewise.
5526 * gnu-nat.c (add_task_commands): Likewise.
5527 * infcall.c (_initialize_infcall): Likewise.
5528 * infcmd.c (_initialize_infcmd): Likewise.
5529 * interps.c (_initialize_interpreter): Likewise.
5530 * language.c (_initialize_language): Likewise.
5531 * linux-fork.c (_initialize_linux_fork): Likewise.
5532 * maint-test-settings.c (_initialize_maint_test_settings): Likewise.
5533 * maint.c (_initialize_maint_cmds): Likewise.
5534 * memattr.c (_initialize_mem): Likewise.
5535 * printcmd.c (_initialize_printcmd): Likewise.
5536 * python/lib/gdb/function/strfns.py (_MemEq, _StrLen, _StrEq,
5537 _RegEx): Likewise.
5538 * ravenscar-thread.c (_initialize_ravenscar): Likewise.
5539 * record-btrace.c (_initialize_record_btrace): Likewise.
5540 * record-full.c (_initialize_record_full): Likewise.
5541 * record.c (_initialize_record): Likewise.
5542 * regcache-dump.c (_initialize_regcache_dump): Likewise.
5543 * regcache.c (_initialize_regcache): Likewise.
5544 * remote.c (add_packet_config_cmd, init_remote_threadtests,
5545 _initialize_remote): Likewise.
5546 * ser-tcp.c (_initialize_ser_tcp): Likewise.
5547 * serial.c (_initialize_serial): Likewise.
5548 * skip.c (_initialize_step_skip): Likewise.
5549 * source.c (_initialize_source): Likewise.
5550 * stack.c (_initialize_stack): Likewise.
5551 * symfile.c (_initialize_symfile): Likewise.
5552 * symtab.c (_initialize_symtab): Likewise.
5553 * target-descriptions.c (_initialize_target_descriptions): Likewise.
5554 * top.c (init_main): Likewise.
5555 * tracefile-tfile.c (tfile_target_info): Likewise.
5556 * tracepoint.c (_initialize_tracepoint): Likewise.
5557 * tui/tui-win.c (_initialize_tui_win): Likewise.
5558 * utils.c (add_internal_problem_command): Likewise.
5559 * valprint.c (value_print_option_defs): Likewise.
5560
55612019-08-06 Frank Ch. Eigler <fche@redhat.com>
5562
5563 PR build/24886
5564 * configure.ac: Drop enable-libmcheck support.
5565 * configure, config.in: Rebuild.
5566 * libmcheck.m4: Remove.
5567 * acinclude.m4: Don't include it.
5568 * Makefile.in: Don't distribute it.
5569 * top.c (print_gdb_configuration): Don't mention it.
5570
55712019-08-06 Tom Tromey <tom@tromey.com>
5572
5573 * utils.c (set_output_style): Sometimes pass stream to
5574 emit_style_escape.
5575 * ui-out.h (class ui_out) <can_emit_style_escape>: Declare.
5576 * record-btrace.c (btrace_insn_history): Update.
5577 * mi/mi-out.h (class mi_ui_out) <can_emit_style_escape>: New
5578 method.
5579 * disasm.h (gdb_pretty_print_disassembler): Add uiout parameter.
5580 Update initializers.
5581 <m_uiout>: New field.
5582 <m_di>: Move lower.
5583 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
5584 Remove "uiout" parameter.
5585 (dump_insns): Update.
5586 * cli-out.h (class cli_ui_out) <can_emit_style_escape>: Declare.
5587 * cli-out.c (cli_ui_out::can_emit_style_escape): New method.
5588
55892019-08-06 Christian Biesinger <cbiesinger@google.com>
5590
5591 * symtab.c (symbol_cache_lookup): Change int to enum block_enum.
5592 (error_in_psymtab_expansion): Likewise.
5593 (lookup_symbol_via_quick_fns): Likewise.
5594 (basic_lookup_transparent_type_quick): Likewise.
5595 (basic_lookup_transparent_type_1): Likewise.
5596
55972019-08-06 Tom Tromey <tromey@adacore.com>
5598
5599 * source.c (last_source_error): Now bool.
5600 (print_source_lines_base): Make "noprint" bool. Only open
5601 source file when last_source_visited changes.
5602
56032019-08-06 Tom Tromey <tromey@adacore.com>
5604
5605 * annotate.c (annotate_source_line): Use g_source_cache.
5606 * source-cache.c (source_cache::get_plain_source_lines): Change
5607 parameters. Populate m_offset_cache.
5608 (source_cache::ensure): New method.
5609 (source_cache::get_line_charpos): New method.
5610 (extract_lines): Move lower. Change parameters.
5611 (source_cache::get_source_lines): Move lower.
5612 * source-cache.h (class source_cache): Update comment.
5613 <get_line_charpos>: New method.
5614 <get_source_lines>: Update comment.
5615 <clear>: Clear m_offset_cache.
5616 <get_plain_source_lines>: Change parameters.
5617 <ensure>: New method
5618 <m_offset_cache>: New member.
5619 * source.c (forget_cached_source_info_for_objfile): Update.
5620 (info_source_command): Use g_source_cache.
5621 (find_source_lines, open_source_file_with_line_charpos): Remove.
5622 (print_source_lines_base, search_command_helper): Use g_source_cache.
5623 * source.h (open_source_file_with_line_charpos): Don't declare.
5624 * symtab.h (struct symtab) <nlines, line_charpos>: Remove.
5625 * tui/tui-source.c (tui_source_window::do_scroll_vertical):
5626 Use g_source_cache.
5627
56282019-08-06 Tom Tromey <tromey@adacore.com>
5629
5630 * source-cache.c (source_cache::get_plain_source_lines):
5631 Remove "first_line" and "last_line" parameters.
5632 (source_cache::get_source_lines): Cache plain text.
5633 * source-cache.h (class source_cache)
5634 <get_plain_source_lines>: Update.
5635
56362019-08-06 Tom Tromey <tromey@adacore.com>
5637
5638 * source-cache.c (extract_lines): No longer a method.
5639 Changed type of parameter. Include final newline.
5640 (selftests::extract_lines_test): New function.
5641 (_initialize_source_cache): Likewise.
5642 * source-cache.h (class source_cache)
5643 <extract_lines>: Don't declare.
5644
56452019-08-06 Tom Tromey <tromey@adacore.com>
5646
5647 * breakpoint.c (init_breakpoint_sal): Update.
5648 (breakpoint): Update.
5649 * breakpoint.h (struct breakpoint) <filter>: Now a
5650 unique_xmalloc_ptr.
5651
56522019-08-05 Christian Biesinger <cbiesinger@google.com>
5653
5654 * NEWS: Mention dictionary access on blocks.
5655 * python/py-block.c (blpy_getitem): New function.
5656 (block_object_as_mapping): New struct.
5657 (block_object_type): Use new struct for tp_as_mapping field.
5658
56592019-08-05 Christian Biesinger <cbiesinger@google.com>
5660
5661 * objfiles.h (objfile): Add a comment describing partial symbols.
5662
56632019-08-05 Tom Tromey <tromey@adacore.com>
5664
5665 * compile/compile.c (_initialize_compile): Use _(), not N_().
5666 * thread.c (_initialize_thread): Use _(), not N_().
5667 * stack.c (_initialize_stack): Use _(), not N_().
5668 * printcmd.c (_initialize_printcmd): Use _(), not N_().
5669
56702019-08-04 Simon Marchi <simon.marchi@polymtl.ca>
5671
5672 * dwarf2read.c (struct dw2_symtab_iterator):
5673 <want_specific_block>: Remove.
5674 <block_index>: Change type to gdb::optional.
5675 (dw2_symtab_iter_init): Remove WANT_SPECIFIC_BLOCK parameter,
5676 change type of BLOCK_INDEX parameter to gdb::optional.
5677 (dw2_symtab_iter_next): Re-write in function of gdb::optional.
5678 (dw2_lookup_symbol): Don't pass argument for
5679 WANT_SPECIFIC_BLOCK.
5680 (dw2_expand_symtabs_for_function): Don't pass argument for
5681 WANT_SPECIFIC_BLOCK, pass empty optional for BLOCK_INDEX.
5682 (class dw2_debug_names_iterator)
5683 <dw2_debug_names_iterator>: Remove WANT_SPECIFIC_BLOCK
5684 parameter, change BLOCK_INDEX type to gdb::optional.
5685 <m_want_specific_block>: Remove.
5686 <m_block_index>: Change type to gdb::optional.
5687 (dw2_debug_names_iterator::next): Change type of IS_STATIC to
5688 gdb::optional. Re-write in function of gdb::optional.
5689 (dw2_debug_names_lookup_symbol): Don't pass argument for
5690 WANT_SPECIFIC_BLOCK.
5691 (dw2_debug_names_expand_symtabs_for_function): Don't pass
5692 argument for WANT_SPECIFIC_BLOCK, pass empty optional for
5693 BLOCK_INDEX.
5694
56952019-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5696
5697 * NEWS: Mention changes to "info sources" command.
5698
56992019-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5700
5701 * symtab.c (filename_partial_match_opts): New struct type.
5702 (struct output_source_filename_data): New members
5703 regexp, c_regexp, partial_match.
5704 (output_source_filename): Use new members to decide to print file.
5705 (info_sources_option_defs): New variable.
5706 (make_info_sources_options_def_group, print_info_sources_header,
5707 info_sources_command_completer):
5708 New functions.
5709 (info_sources_command): Read new optional arguments.
5710 (_initialize_symtab): Update info sources help.
5711
57122019-08-02 Alexandre Oliva <oliva@adacore.com>
5713
5714 * ada-lang.c (exception_support_info_v0): Renamed from...
5715 (default_exception_support_info): ... this. Create new
5716 definition for v1.
5717 (ada_has_this_exception_support): Look up catch_handlers_sym.
5718 (ada_exception_support_info_sniffer): Try v0 after default.
5719
57202019-08-01 Tom Tromey <tromey@adacore.com>
5721
5722 * ia64-libunwind-tdep.h (struct libunwind_descr): Include
5723 gdbarch.h.
5724
57252019-08-01 Christian Biesinger <cbiesinger@google.com>
5726
5727 * s12z-tdep.c: Fix include path for s12z-opc.h.
5728
57292019-08-01 Alan Hayward <alan.hayward@arm.com>
5730
5731 * NEWS: Require GNU make 3.82.
5732
57332019-07-16 Tom Tromey <tom@tromey.com>
5734
5735 * tui/tui-wingeneral.h (tui_copy_win, tui_box_win): Don't
5736 declare.
5737
57382019-07-30 Tom Tromey <tromey@adacore.com>
5739
5740 * block.c (contained_in): Remove BLOCK_FUNCTION check.
5741
57422019-07-30 Kevin Buettner <kevinb@redhat.com>
5743
5744 * printcmd.c (print_address_symbolic): Print negative offsets.
5745 (build_address_symbolic): Force signed arithmetic when computing
5746 offset.
5747
57482019-07-30 Christian Biesinger <cbiesinger@google.com>
5749
5750 PR/24474: Add a function to lookup static variables.
5751 * NEWS: Mention this new function.
5752 * python/py-symbol.c (gdbpy_lookup_static_symbol): New function.
5753 * python/python-internal.h (gdbpy_lookup_static_symbol): New function.
5754 * python/python.c (python_GdbMethods): Add new function.
5755
57562019-07-29 Christian Biesinger <cbiesinger@google.com>
5757
5758 * NEWS: Mention new functions Objfile.lookup_{global,static}_symbol.
5759 * python/py-objfile.c (objfpy_lookup_global_symbol): New function.
5760 (objfpy_lookup_static_symbol): New function.
5761 (objfile_object_methods): Add new functions.
5762
57632019-07-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5764
5765 * NEWS: Mention 'set|show print frame-info'. Mention new
5766 'presence' value for 'frame-arguments'. Mention new '-frame-info'
5767 backtrace argument. Mention that python frame filtering code
5768 is now consistent with what 'backtrace' command prints.
5769
57702019-07-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5771
5772 * frame.h (enum print_what): New value 'SHORT_LOCATION', update
5773 comments.
5774 (print_frame_info_auto, print_frame_info_source_line,
5775 print_frame_info_location, print_frame_info_source_and_location,
5776 print_frame_info_location_and_address, print_frame_info_short_location):
5777 New declarations.
5778 (struct frame_print_options): New member print_frame_info.
5779 * extension.h (enum ext_lang_frame_args): New value CLI_PRESENCE.
5780 * stack.h (get_user_print_what_frame_info): New declaration.
5781 (frame_show_address): New declaration.
5782 * stack.c (print_frame_arguments_choices): New value 'presence'.
5783 (print_frame_info_auto, print_frame_info_source_line,
5784 print_frame_info_location, print_frame_info_source_and_location,
5785 print_frame_info_location_and_address, print_frame_info_short_location,
5786 print_frame_info_choices, print_frame_info_print_what): New definitions.
5787 (print_frame_args): Only print dots for args if print frame-arguments
5788 is 'presence'.
5789 (frame_print_option_defs): New element for "frame-info".
5790 (get_user_print_what_frame_info): New function.
5791 (frame_show_address): Make non static. Move comment to stack.h.
5792 (print_frame_info_to_print_what): New function.
5793 (print_frame_info): Update comment. Use fp_opts.print_frame_info
5794 to decide what to print.
5795 (backtrace_command_1): Handle the new print_frame_arguments_presence
5796 value.
5797 (_initialize_stack): Call add_setshow_enum_cmd for frame-info.
5798 * python/py-framefilter.c (py_print_args): Handle CLI_PRESENCE.
5799 (py_print_frame): In non-mi mode, use LOCATION as default for
5800 print_what, similarly to frame information printed directly by
5801 backtrace command. Handle frame-info user option in non MI mode.
5802
58032019-07-27 Kevin Buettner <kevinb@redhat.com>
5804
5805 * linux-thread-db.c (thread_db_target::thread_handle_to_thread_info):
5806 Add case for debugging 32-bit target on 64-bit host. Revise
5807 comment.
5808
58092019-07-27 Kevin Buettner <kevinb@redhat.com>
5810
5811 * infrun.c (fill_in_stop_func): Use find_pc_partial_function
5812 instead of find_function_entry_range_from_pc.
5813
58142019-07-27 Kevin Buettner <kevinb@redhat.com>
5815
5816 * stack.c (find_frame_funname): Remove code which preferred
5817 minsym over symtab sym in "certain pathological cases".
5818
5819 * valprint.h (build_address_symbolic): Add "prefer_sym_over_minsym"
5820 parameter. Change type of "do_demangle" to bool.
5821 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
5822 Pass suitable "prefer_sym_over_minsym" flag to
5823 build_address_symbolic(). Don't output "+" for negative offsets.
5824 * printcmd.c (print_address_symbolic): Update invocation of
5825 build_address_symbolic to include a "prefer_sym_over_minsym"
5826 flag.
5827 (build_address_symbolic): Add "prefer_sym_over_minsym" parameter.
5828 Restrict cases in which use of minimal symbol is preferred to that
5829 of a found symbol. Update comments.
5830
5831 * dwarf2-frame.c (dwarf2_frame_cache): Don't decode FDE instructions
5832 for entry pc when entry pc is out of range for that FDE.
5833
58342019-07-26 Brian Callahan <bcallah@openbsd.org>
5835
5836 PR gdb/24839:
5837 * gdb/obsd-nat.c (obsd_nat_target::pid_to_str): Fix typo in return
5838 type.
5839
58402019-07-25 Christian Biesinger <cbiesinger@google.com>
5841
5842 * python/py-objfile.c (add_separate_debug_file): Fix comment about
5843 this function's Python signature.
5844
5845
58462019-07-24 Christian Biesinger <cbiesinger@google.com>
5847
5848 * compile/compile-object-load.c (compile_object_load): Pass GLOBAL_SCOPE.
5849 * solib-spu.c (spu_lookup_lib_symbol): Pass GLOBAL_SCOPE.
5850 * solib-svr4.c (elf_lookup_lib_symbol): Pass GLOBAL_SCOPE.
5851 * symtab.c (lookup_global_symbol_from_objfile): Add a scope parameter.
5852 * symtab.h (lookup_global_symbol_from_objfile): Likewise.
5853
5854
58552019-07-24 Yoshinori Sato <ysato@users.sourceforge.jp>
5856
5857 * h8300-tdep.c (h8300_register_name_common): New.
5858 h8300_register_name): Use h8300_register_name_common.
5859 (h8300s_register_name): Likewise.
5860 (h8300sx_register_name): Likewise.
5861 (h8300h_register_nam): New.
5862 (h8300_gdbarch_init): Use h8300h_register_name in h8300h machine.
5863
5864
58652019-07-23 Srinath Parvathaneni <srinath.parvathaneni@arm.com>
5866
5867 * arm-tdep.c (arm_skip_cmse_entry): New function.
5868 (arm_is_sgstubs_section): New function.
5869 (arm_skip_stub): Add call to arm_skip_cmse_entry function.
5870
58712019-07-22 Tom Tromey <tom@tromey.com>
5872
5873 * tui/tui-win.c (tui_win_info::make_invisible_and_set_new_height):
5874 Don't self-assign.
5875
58762019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
5877
5878 * c-typeprint.c (c_print_typedef): Pass -1 instead of 0 to
5879 type_print.
5880
58812019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
5882
5883 * symtab.c (search_symbols): Adjust msymbol matching type arrays
5884 so that GDB doesn't match any msymbols when searching in the
5885 TYPES_DOMAIN.
5886 (print_symbol_info): Print using typedef_print or type_print based
5887 on the type of the symbol. Add updated FIXME comment moved from...
5888 (_initialize_symtab): ... move and update FIXME comment to above.
5889
58902019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
5891
5892 * NEWS: Mention adding -q option to "info types".
5893 * symtab.c (struct info_types_options): New struct.
5894 (info_types_options_defs): New variable.
5895 (make_info_types_options_def_group): New function.
5896 (info_types_command): Use gdb::option framework to parse options.
5897 (info_types_command_completer): New function.
5898 (_initialize_symtab): Extend the help text on "info types" and
5899 register command completer.
5900
59012019-07-21 Christian Biesinger <cbiesinger@google.com>
5902
5903 * symtab.c (lookup_symbol_in_objfile_symtabs): Change int to block_enum.
5904 (lookup_symbol_in_objfile): Change int to block_enum and add a
5905 gdb_assert to make sure block_index is GLOBAL_BLOCK or STATIC_BLOCK.
5906
59072019-07-20 Christian Biesinger <cbiesinger@google.com>
5908
5909 * MAINTAINERS (Write After Approval): Add self.
5910
59112019-07-19 Andrew Burgess <andrew.burgess@embecosm.com>
5912
5913 * riscv-tdep.c (riscv_push_dummy_code): Write a 4-byte nop
5914 instruction to the dummy code region.
5915
59162019-07-19 Tom Tromey <tromey@adacore.com>
5917
5918 * contrib/ari/gdb_ari.sh: Mention C++11, not ISO C 90.
5919 (ARGSUSED, PARAMS, __func__): Remove rules.
5920
59212019-07-19 Alan Hayward <alan.hayward@arm.com>
5922
5923 * arm-tdep.c (_initialize_arm_tdep): Remove xml tests.
5924 * features/arm/arm-with-iwmmxt.c: Remove.
5925 * features/arm/arm-with-iwmmxt.xml: Remove.
5926 * features/arm/arm-with-m-fpa-layout.c: Remove.
5927 * features/arm/arm-with-m-fpa-layout.xml: Remove.
5928 * features/arm/arm-with-m-vfp-d16.c: Remove.
5929 * features/arm/arm-with-m-vfp-d16.xml: Remove.
5930 * features/arm/arm-with-m.c: Remove.
5931 * features/arm/arm-with-m.xml: Remove.
5932 * features/arm/arm-with-neon.c: Remove.
5933 * features/arm/arm-with-neon.xml: Remove.
5934 * features/arm/arm-with-vfpv2.c: Remove.
5935 * features/arm/arm-with-vfpv2.xml: Remove.
5936 * features/arm/arm-with-vfpv3.c: Remove.
5937 * features/arm/arm-with-vfpv3.xml: Remove.
5938
59392019-07-19 Alan Hayward <alan.hayward@arm.com>
5940
5941 * arm-tdep.c (_initialize_arm_tdep): Add xml regression tests.
5942
59432019-07-19 Alan Hayward <alan.hayward@arm.com>
5944
5945 * arch/aarch32.c (aarch32_create_target_description): Create
5946 target descriptions using features.
5947 * arch/arm.c (arm_create_target_description)
5948 (arm_create_mprofile_target_description): Likewise.
5949 * arm-tdep.c (_initialize_arm_tdep): Remove tdesc init calls.
5950
59512019-07-19 Alan Hayward <alan.hayward@arm.com>
5952
5953 * Makefile.in: Add new files.
5954 * aarch32-tdep.c: New file.
5955 * aarch32-tdep.h: New file.
5956 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
5957 Call aarch32_read_description.
5958 * arch/aarch32.c: New file.
5959 * arch/aarch32.h: New file.
5960 * arch/arm.c (arm_create_target_description)
5961 (arm_create_mprofile_target_description): New function.
5962 * arch/arm.h (arm_fp_type, arm_m_profile_type): New enum.
5963 (arm_create_target_description)
5964 (arm_create_mprofile_target_description): New declaration.
5965 * arm-fbsd-tdep.c (arm_fbsd_read_description_auxv): Call
5966 read_description functions.
5967 * arm-linux-nat.c (arm_linux_nat_target::read_description):
5968 Likewise.
5969 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
5970 * arm-tdep.c (tdesc_arm_list): New variable.
5971 (arm_register_g_packet_guesses): Call create description functions.
5972 (arm_read_description) (arm_read_mprofile_description): New
5973 function.
5974 * arm-tdep.h (arm_read_description)
5975 (arm_read_mprofile_description): Add declaration.
5976 * configure.tgt: Add new files.
5977
59782019-07-18 Guillaume LABARTHE <guillaume.labarthe@gmail.com>
5979
5980 * top.c (new_ui_command): Open specified terminal just once.
5981
59822019-07-18 Tom Tromey <tromey@adacore.com>
5983
5984 * symtab.c (main_name): Constify return type.
5985 * symfile.c (set_initial_language): Update.
5986 * symtab.h (main_name): Constify return type.
5987
59882019-07-17 Tom Tromey <tom@tromey.com>
5989
5990 * tui/tui-winsource.c (tui_update_source_window)
5991 (tui_update_source_window_as_is)
5992 (tui_update_source_windows_with_line): Remove return.
5993 * tui/tui-disasm.c (tui_show_disassem)
5994 (tui_show_disassem_and_update_source): Remove return.
5995 * tui/tui.c (tui_reset): Remove return.
5996 * tui/tui-wingeneral.c
5997 (tui_check_and_display_highlight_if_needed): Remove return.
5998
59992019-07-17 Tom Tromey <tom@tromey.com>
6000
6001 * tui/tui-win.c (parse_scrolling_args): Throw separate errors.
6002
60032019-07-17 Tom Tromey <tom@tromey.com>
6004
6005 * tui/tui-winsource.h (struct tui_exec_info_window)
6006 (struct tui_source_window_base): Move from tui-data.h.
6007 * tui/tui-winsource.c: Move many method definitions from
6008 elsewhere. Remove "structuring" comments.
6009 * tui/tui-wingeneral.c (tui_source_window_base::make_visible)
6010 (tui_source_window_base::refresh_window): Move to
6011 tui-winsource.c.
6012 * tui/tui-win.c (tui_source_window_base::refresh_all)
6013 (tui_source_window_base::update_tab_width)
6014 (tui_source_window_base::set_new_height)
6015 (tui_source_window_base::do_make_visible_with_new_height): Move to
6016 tui-winsource.c.
6017 * tui/tui-source.h: Update.
6018 * tui/tui-source.c (tui_source_window_base::reset): Move to
6019 tui-winsource.c.
6020 * tui/tui-disasm.h: Update.
6021 * tui/tui-data.h (struct tui_exec_info_window): Move to
6022 tui-winsource.h.
6023 (struct tui_source_window_base): Likewise.
6024 * tui/tui-data.c (tui_source_window_base::clear_detail)
6025 (tui_source_window_base, ~tui_source_window_base): Move to
6026 tui-winsource.c.
6027
60282019-07-17 Tom Tromey <tom@tromey.com>
6029
6030 * tui/tui-win.c (tui_resize_all)
6031 (tui_source_window_base::update_tab_width)
6032 (tui_adjust_win_heights): Update.
6033 (tui_win_info::make_invisible_and_set_new_height): Rename from
6034 make_invisible_and_set_new_height.
6035 * tui/tui-data.h (struct tui_win_info)
6036 <make_invisible_and_set_new_height>: New method.
6037
60382019-07-17 Tom Tromey <tom@tromey.com>
6039
6040 * tui/tui.c: Update.
6041 * tui/tui-source.h (struct tui_source_window): Move from
6042 tui-data.h.
6043 * tui/tui-layout.c: Update.
6044 * tui/tui-disasm.c: Update.
6045 * tui/tui-data.h (struct tui_source_window): Move to
6046 tui-source.h.
6047
60482019-07-17 Tom Tromey <tom@tromey.com>
6049
6050 * tui/tui-disasm.h (struct tui_disasm_window): Move from
6051 tui-data.h.
6052 * tui/tui-data.h (struct tui_disasm_window): Move to
6053 tui-disasm.h.
6054
60552019-07-17 Tom Tromey <tom@tromey.com>
6056
6057 * tui/tui-regs.h (struct tui_data_item_window): Move from
6058 tui-data.h.
6059 * tui/tui-regs.c (tui_data_item_window): Move from tui-data.c.
6060 * tui/tui-data.h (struct tui_data_item_window): Move to
6061 tui-regs.h.
6062 * tui/tui-data.c (~tui_data_item_window): Move to tui-regs.c.
6063
60642019-07-17 Tom Tromey <tom@tromey.com>
6065
6066 * tui/tui.c: Update.
6067 * tui/tui-win.c (tui_cmd_window::do_make_visible_with_new_height)
6068 (tui_cmd_window::max_height): Move to tui-command.c.
6069 * tui/tui-layout.c: Update.
6070 * tui/tui-data.h (struct tui_cmd_window): Move to tui-command.h.
6071 * tui/tui-data.c (tui_cmd_window::clear_detail): Move to
6072 tui-command.c.
6073 * tui/tui-command.h (struct tui_cmd_window): Move from
6074 tui-data.h.
6075 * tui/tui-command.c: Remove "structuring" comments.
6076 (tui_cmd_window::clear_detail)
6077 (tui_cmd_window::do_make_visible_with_new_height)
6078 (tui_cmd_window::max_height): Move from elsewhere.
6079
60802019-07-17 Tom Tromey <tom@tromey.com>
6081
6082 * tui/tui-io.c (tui_dispatch_ctrl_char): Move from tui-command.c.
6083 Now static.
6084 * tui/tui-command.h (tui_dispatch_ctrl_char): Don't declare.
6085 * tui/tui-command.c (tui_dispatch_ctrl_char): Move to tui-io.c.
6086
60872019-07-17 Tom Tromey <tom@tromey.com>
6088
6089 * tui/tui.c: Update.
6090 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Move to
6091 tui-regs.c.
6092 * tui/tui-windata.h: Remove file.
6093 * tui/tui-windata.c: Remove file.
6094 * tui/tui-win.c (tui_data_window::set_new_height)
6095 (tui_data_window::do_make_visible_with_new_height): Move to
6096 tui-regs.c.
6097 * tui/tui-regs.h (struct tui_data_window): Move from tui-data.h.
6098 * tui/tui-regs.c: Remove "structuring" comments.
6099 (tui_data_window::first_data_item_displayed)
6100 (tui_data_window::delete_data_content_windows)
6101 (tui_data_window::erase_data_content)
6102 (tui_data_window::display_all_data)
6103 (tui_data_window::refresh_all)
6104 (tui_data_window::do_scroll_vertical)
6105 (tui_data_window::clear_detail, tui_data_window::set_new_height)
6106 (tui_data_window::do_make_visible_with_new_height)
6107 (tui_data_window::refresh_window): Move from elsewhere.
6108 (_initialize_tui_regs): Move to end of file.
6109 * tui/tui-layout.c: Update.
6110 * tui/tui-hooks.c: Update.
6111 * tui/tui-data.h (struct tui_data_window): Move to tui-regs.h.
6112 * tui/tui-data.c (tui_data_window::clear_detail): Move to
6113 tui-regs.c.
6114 * Makefile.in (SUBDIR_TUI_SRCS): Remove tui-windata.c.
6115
61162019-07-17 Tom Tromey <tom@tromey.com>
6117
6118 * tui/tui-io.c (tui_puts_internal): Call wrefresh if newline is
6119 seen.
6120
61212019-07-17 Tom Tromey <tom@tromey.com>
6122
6123 * tui/tui-win.c (tui_source_window_base::set_new_height)
6124 (tui_source_window_base::do_make_visible_with_new_height): Use
6125 m_has_locator field directly.
6126 * tui/tui-data.h (struct tui_win_info) <has_locator>: Remove
6127 method.
6128 (struct tui_source_window_base) <has_locator>: Likewise.
6129
61302019-07-17 Tom Tromey <tom@tromey.com>
6131
6132 * tui/tui-wingeneral.h (tui_make_visible, tui_make_invisible):
6133 Don't declare.
6134 * tui/tui-wingeneral.c (tui_make_visible, tui_make_invisible):
6135 Remove.
6136 * tui/tui-win.c (tui_source_window_base::set_new_height)
6137 (tui_source_window_base::set_new_height)
6138 (make_invisible_and_set_new_height)
6139 (tui_source_window_base::do_make_visible_with_new_height)
6140 (tui_source_window_base::do_make_visible_with_new_height):
6141 Update.
6142 * tui/tui-layout.c (show_source_disasm_command, show_data)
6143 (show_source_or_disasm_and_command): Update.
6144 * tui/tui-layout.c (show_layout): Update.
6145
61462019-07-17 Tom Tromey <tom@tromey.com>
6147
6148 * tui/tui-layout.c (make_data_window): Remove.
6149 (show_data): Unify creation and re-initialization cases.
6150
61512019-07-17 Tom Tromey <tom@tromey.com>
6152
6153 * tui/tui-layout.c (make_source_window, make_disasm_window):
6154 Remove.
6155 (show_data): Unify creation and re-initialization cases.
6156
61572019-07-17 Tom Tromey <tom@tromey.com>
6158
6159 * tui/tui-layout.c (make_command_window): Remove.
6160 (show_source_disasm_command, show_source_or_disasm_and_command):
6161 Unify creation and re-initialization cases.
6162
61632019-07-17 Tom Tromey <tom@tromey.com>
6164
6165 * tui/tui-layout.c (show_source_or_disasm_and_command): Unify
6166 creation and re-initialization cases.
6167
61682019-07-17 Tom Tromey <tom@tromey.com>
6169
6170 * tui/tui-regs.c (tui_get_register): Return void.
6171
61722019-07-17 Tom Tromey <tom@tromey.com>
6173
6174 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible):
6175 Simplify.
6176
61772019-07-17 Tom Tromey <tom@tromey.com>
6178
6179 * tui/tui-layout.c (show_source_disasm_command): Simplify window
6180 resetting.
6181
61822019-07-17 Tom Tromey <tom@tromey.com>
6183
6184 * tui/tui.h (tui_set_layout_by_name): Don't declare.
6185 * tui/tui-regs.c (tui_reg_layout): New function.
6186 (tui_show_registers, tui_reg_command): Use it.
6187 * tui/tui-layout.c (LAYOUT_USAGE): Remove.
6188 (tui_layout_command): Rename from tui_set_layout_by_name. Change
6189 parameters.
6190 (tui_layout_command): Remove.
6191
61922019-07-17 Tom Tromey <tom@tromey.com>
6193
6194 * tui/tui-layout.h (tui/tui-layout): Return void.
6195 * tui/tui-layout.c (tui_set_layout): Return void. Add assert.
6196
61972019-07-17 Tom Tromey <tom@tromey.com>
6198
6199 * tui/tui-layout.c (show_source_disasm_command, show_data):
6200 Update.
6201 (reset_locator): Remove.
6202 (show_source_or_disasm_and_command): Update.
6203
62042019-07-17 Tom Tromey <tom@tromey.com>
6205
6206 * tui/tui-source.c (tui_source_window_base::reset): Remove
6207 win_type parameter.
6208 * tui/tui-layout.c (make_command_window, make_source_window)
6209 (make_disasm_window, make_data_window)
6210 (show_source_disasm_command, show_data, tui_gen_win_info::reset)
6211 (reset_locator, show_source_or_disasm_and_command): Update.
6212 * tui/tui-data.h (struct tui_gen_win_info) <reset>: Remove
6213 win_type parameter.
6214 (struct tui_source_window_base) <reset>: Likewise.
6215
62162019-07-17 Tom Tromey <tom@tromey.com>
6217
6218 * tui/tui-layout.c (show_source_disasm_command): Use
6219 reset_locator.
6220 (reset_locator): New function.
6221 (init_and_make_win): Remove.
6222 (show_source_or_disasm_and_command): Use reset_locator.
6223
62242019-07-17 Tom Tromey <tom@tromey.com>
6225
6226 * tui/tui-winsource.c (tui_set_exec_info_content): Remove
6227 condition.
6228 * tui/tui-wingeneral.c (tui_source_window_base::make_visible):
6229 Remove condition.
6230 * tui/tui-source.c (tui_source_window_base::reset): New method.
6231 * tui/tui-layout.c (make_command_window): Don't call
6232 init_and_make_win.
6233 (make_source_window, make_disasm_window): Don't call
6234 make_source_or_disasm_window.
6235 (make_data_window): Don't call init_and_make_win. Change calling
6236 convention.
6237 (show_source_disasm_command, show_data): Simplify.
6238 (make_source_or_disasm_window): Remove.
6239 (show_source_or_disasm_and_command): Simplify.
6240 * tui/tui-data.h (struct tui_gen_win_info) <reset>: Now virtual.
6241 (struct tui_source_window_base) <reset>: Likewise.
6242 <execution_info>: Remove initializer.
6243 * tui/tui-data.c (tui_source_window_base): Initialize
6244 execution_info.
6245
62462019-07-17 Tom Tromey <tom@tromey.com>
6247
6248 * tui/tui-layout.c (tui_set_layout): Remove regs_populate
6249 variable.
6250
62512019-07-17 Tom Tromey <tom@tromey.com>
6252
6253 * tui/tui.c (tui_rl_other_window): Update.
6254 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Call
6255 superclass method first. Always iterate over regs_content.
6256 (tui_unhighlight_win, tui_highlight_win): Use refresh_window
6257 method.
6258 * tui/tui-win.c (tui_set_focus_command): Update.
6259
62602019-07-17 Tom Tromey <tom@tromey.com>
6261
6262 * tui/tui-win.c (tui_set_focus_command): Rename from
6263 tui_set_focus. Call tui_enable.
6264 (tui_set_focus_command): Remove.
6265
62662019-07-17 Tom Tromey <tom@tromey.com>
6267
6268 * tui/tui-winsource.c (tui_show_exec_info_content): Don't call
6269 refresh_window.
6270 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Call
6271 touchwin.
6272 (tui_data_window::refresh_window): Call refresh_window on data
6273 items. Always call superclass refresh_window.
6274 (tui_win_info::refresh): Remove.
6275 (tui_source_window_base::refresh_window): Update.
6276 (tui_refresh_all): Update.
6277 * tui/tui-layout.c (show_source_disasm_command): Remove call to
6278 refresh_window.
6279 (show_source_or_disasm_and_command): Likewise.
6280 * tui/tui-data.h (struct tui_win_info) <refresh>: Remove.
6281 (struct tui_source_window_base) <refresh>: Likewise.
6282
62832019-07-17 Tom Tromey <tom@tromey.com>
6284
6285 * tui/tui-winsource.c (tui_clear_source_content)
6286 (tui_show_source_content): Update.
6287 * tui/tui-source.c (tui_source_window::showing_source_p): Check
6288 whether content is empty.
6289 * tui/tui-data.h (struct tui_source_window_base) <content_in_use>:
6290 Remove.
6291
62922019-07-17 Tom Tromey <tom@tromey.com>
6293
6294 * tui/tui-winsource.c (tui_erase_source_content): Clear the
6295 window's contents.
6296 * tui/tui-source.h (tui_set_source_content_nil): Don't declare.
6297 * tui/tui-source.c (tui_set_source_content_nil): Remove.
6298
62992019-07-17 Tom Tromey <tom@tromey.com>
6300
6301 * tui/tui-data.h (UNDEFINED_ITEM): Remove define.
6302 (struct tui_data_item_window): Update.
6303
63042019-07-17 Tom Tromey <tom@tromey.com>
6305
6306 * tui/tui-data.h (MAX_CONTENT_COUNT, TUI_NULL_STR)
6307 (DEFAULT_HISTORY_COUNT, WITH_LOCATOR, NO_LOCATOR): Remove
6308 defines.
6309
63102019-07-17 Tom Tromey <tom@tromey.com>
6311
6312 * tui/tui-winsource.h (tui_erase_source_content)
6313 (tui_clear_source_content): Remove "display_prompt" parameter.
6314 * tui/tui-winsource.c (tui_update_source_window_as_is)
6315 (tui_update_source_windows_with_addr): Update.
6316 (tui_clear_source_content): Remove "display_prompt" parameter.
6317 (tui_erase_source_content): Likewise. Simplify.
6318 (tui_show_source_content): Update.
6319 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
6320 * tui/tui-stack.c (tui_show_frame_info): Update.
6321 * tui/tui-data.h (EMPTY_SOURCE_PROMPT, NO_EMPTY_SOURCE_PROMPT):
6322 Remove defines.
6323
63242019-07-17 Tom Tromey <tom@tromey.com>
6325
6326 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
6327 * tui/tui-disasm.h (tui_set_disassem_content): Add win_info
6328 parameter.
6329 * tui/tui-disasm.c (tui_set_disassem_content): Add win_info
6330 parameter.
6331
63322019-07-17 Tom Tromey <tom@tromey.com>
6333
6334 * tui/tui-winsource.c (tui_clear_source_content)
6335 (tui_show_source_content, tui_show_exec_info_content)
6336 (tui_clear_exec_info_content): Update.
6337 * tui/tui-stack.c (tui_show_locator_content): Update.
6338 (tui_show_frame_info): Update.
6339 * tui/tui-source.h (tui_source_window): Don't declare.
6340 * tui/tui-source.c (tui_source_window::showing_source_p): Rename
6341 from tui_source_is_displayed.
6342 * tui/tui-data.h (struct tui_gen_win_info) <content_in_use>:
6343 Remove field.
6344 (struct tui_source_window_base) <content_in_use>: New field. Now
6345 bool.
6346 (struct tui_source_window) <showing_source_p>: New method.
6347 (TUI_SRC_WIN): Change cast.
6348 * tui/tui-data.c (tui_initialize_static_data): Update.
6349
63502019-07-17 Tom Tromey <tom@tromey.com>
6351
6352 * tui/tui-winsource.c (tui_update_breakpoint_info): Use
6353 location_matches_p.
6354 * tui/tui-source.c (tui_source_window::location_matches_p): New
6355 method.
6356 * tui/tui-disasm.c (tui_disasm_window::location_matches_p): New
6357 method.
6358 * tui/tui-data.h (struct tui_source_window_base)
6359 <location_matches_p>: New method.
6360 (struct tui_source_window, struct tui_disasm_window)
6361 <location_matches_p>: Likewise.
6362
63632019-07-17 Tom Tromey <tom@tromey.com>
6364
6365 * tui/tui-win.c (tui_set_win_height_command): Rename from
6366 tui_set_win_height.
6367 (tui_set_win_height_command): Remove.
6368
63692019-07-17 Tom Tromey <tom@tromey.com>
6370
6371 * tui/tui-source.c (tui_source_window): New constructor. Add
6372 observer.
6373 (~tui_source_window): New destructor.
6374 (tui_source_window::style_changed): New method.
6375 * tui/tui-hooks.c (tui_redisplay_source): Remove.
6376 (tui_attach_detach_observers): Update.
6377 * tui/tui-data.h (struct tui_source_window): Make constructor not
6378 inline. Add destructor.
6379 (struct tui_source_window) <style_changed>: New method.
6380 <m_observable>: New member.
6381
63822019-07-17 Tom Tromey <tom@tromey.com>
6383
6384 * tui/tui-data.c (tui_clear_source_windows_detail): Fix typo.
6385 * tui/tui-win.c (tui_resize_all): Fix typo.
6386
63872019-07-17 Tom Tromey <tom@tromey.com>
6388
6389 * tui/tui-wingeneral.h (tui_refresh_all): Update.
6390 * tui/tui-wingeneral.c (make_all_visible): Use foreach.
6391 (tui_refresh_all): Remove "list" parameter. Use foreach.
6392 * tui/tui-win.c (window_name_completer): Use foreach.
6393 (tui_refresh_all_win, tui_rehighlight_all, tui_all_windows_info)
6394 (update_tab_width): Likewise.
6395 * tui/tui-layout.c (show_layout): Update.
6396 * tui/tui-data.h (class tui_window_iterator): New.
6397 (struct all_tui_windows): New.
6398 * tui/tui-data.c (tui_partial_win_by_name): Use foreach.
6399
64002019-07-17 Tom Tromey <tom@tromey.com>
6401
6402 * tui/tui-regs.c (tui_reg_next, tui_reg_prev): Add "current_group"
6403 parameter. Don't reference globals.
6404 (tui_reg_command): Update.
6405
64062019-07-17 Tom Tromey <tom@tromey.com>
6407
6408 * tui/tui-regs.c (tui_show_registers): Simplify.
6409
64102019-07-17 Tom Tromey <tom@tromey.com>
6411
6412 * tui/tui-regs.c (tui_show_registers): Update.
6413 (tui_show_register_group): Add win_info parameter.
6414
64152019-07-17 Tom Tromey <tom@tromey.com>
6416
6417 * tui/tui-regs.c (tui_data_window::display_reg_element_at_line):
6418 Rename from tui_display_reg_element_at_line.
6419 (tui_data_window::display_registers_from_line): Update.
6420 * tui/tui-data.h (struct tui_data_window)
6421 <display_reg_element_at_line>: New method.
6422
64232019-07-17 Tom Tromey <tom@tromey.com>
6424
6425 * tui/tui-regs.h (tui_display_registers_from)
6426 (tui_display_registers_from_line): Don't declare.
6427 * tui/tui-windata.c (tui_data_window::display_all_data)
6428 (tui_data_window::refresh_all)
6429 (tui_data_window::do_scroll_vertical): Update.
6430 * tui/tui-regs.c (tui_data_window::display_registers_from): Rename
6431 from tui_display_registers_from.
6432 (tui_display_reg_element_at_line): Update.
6433 (tui_data_window::display_registers_from_line): Rename from
6434 tui_display_registers_from_line.
6435 * tui/tui-data.h (struct tui_data_window) <display_registers_from,
6436 display_registers_from_line>: New methods.
6437
64382019-07-17 Tom Tromey <tom@tromey.com>
6439
6440 * tui/tui-windata.h (tui_erase_data_content): Don't declare.
6441 * tui/tui-windata.c (tui_data_window::erase_data_content): Rename
6442 from tui_erase_data_content.
6443 (tui_data_window::display_all_data)
6444 (tui_data_window::refresh_all)
6445 (tui_data_window::do_scroll_vertical): Update.
6446 * tui/tui-regs.c (tui_show_registers): Update.
6447 * tui/tui-data.h (struct tui_data_window) <erase_data_content>:
6448 New method.
6449
64502019-07-17 Tom Tromey <tom@tromey.com>
6451
6452 * tui/tui-windata.h (tui_delete_data_content_windows): Don't
6453 declare.
6454 * tui/tui-windata.c
6455 (tui_data_window::delete_data_content_windows): Rename from
6456 tui_delete_data_content_windows.
6457 (tui_data_window::display_all_data)
6458 (tui_data_window::do_scroll_vertical): Update.
6459 * tui/tui-data.h (struct tui_data_window)
6460 <delete_data_content_windows>: New method.
6461
64622019-07-17 Tom Tromey <tom@tromey.com>
6463
6464 * tui/tui-windata.h (tui_refresh_data_win): Don't declare.
6465 * tui/tui-regs.h (tui_first_reg_element_inline): Don't declare.
6466
64672019-07-17 Tom Tromey <tom@tromey.com>
6468
6469 * tui/tui-windata.h (tui_display_all_data): Don't declare.
6470 * tui/tui-windata.c (tui_data_window::display_all_data): Rename
6471 from tui_display_all_data.
6472 * tui/tui-win.c
6473 (tui_data_window::do_make_visible_with_new_height): Update.
6474 * tui/tui-regs.c (tui_show_registers): Update.
6475 * tui/tui-layout.c (tui_set_layout): Update.
6476 * tui/tui-data.h (struct tui_data_window) <display_all_data>: New
6477 method.
6478
64792019-07-17 Tom Tromey <tom@tromey.com>
6480
6481 * tui/tui-windata.h (tui_display_data_from): Don't declare.
6482 * tui/tui-windata.c (tui_display_data_from): Remove.
6483 (tui_data_window::refresh_all): Update.
6484
64852019-07-17 Tom Tromey <tom@tromey.com>
6486
6487 * tui/tui-windata.h (tui_display_data_from_line): Don't declare.
6488 * tui/tui-windata.c (tui_display_data_from_line): Remove.
6489 (tui_display_data_from, tui_data_window::do_scroll_vertical): Call
6490 tui_display_registers_from_line.
6491 * tui/tui-regs.h (tui_display_registers_from_line): Update.
6492 * tui/tui-regs.c (tui_display_registers_from_line): Remove
6493 "force_display" parameter.
6494
64952019-07-17 Tom Tromey <tom@tromey.com>
6496
6497 * tui/tui-regs.h (tui_first_reg_element_no_inline): Don't
6498 declare.
6499 * tui/tui-regs.c (tui_data_window::first_reg_element_no_inline):
6500 Rename from tui_first_reg_element_no_inline.
6501 (tui_display_reg_element_at_line)
6502 (tui_display_registers_from_line): Update.
6503 * tui/tui-data.h (struct tui_data_window)
6504 <first_reg_element_no_inline>: New method.
6505
65062019-07-17 Tom Tromey <tom@tromey.com>
6507
6508 * tui/tui-windata.c (tui_display_data_from)
6509 (tui_data_window::do_scroll_vertical): Update.
6510 * tui/tui-regs.h (tui_line_from_reg_element_no): Don't declare.
6511 * tui/tui-regs.c (tui_data_window::line_from_reg_element_no):
6512 Rename from tui_line_from_reg_element_no.
6513 (tui_display_registers_from_line): Update.
6514 * tui/tui-data.h (struct tui_data_window)
6515 <line_from_reg_element_no>: New method.
6516
65172019-07-17 Tom Tromey <tom@tromey.com>
6518
6519 * tui/tui-regs.h (tui_last_regs_line_no): Don't declare.
6520 * tui/tui-regs.c (tui_data_window::last_regs_line_no): Rename from
6521 tui_last_regs_line_no.
6522 (tui_display_reg_element_at_line)
6523 (tui_display_registers_from_line): Update.
6524 * tui/tui-data.h (struct tui_data_window) <last_regs_line_no>: New
6525 method.
6526
65272019-07-17 Tom Tromey <tom@tromey.com>
6528
6529 PR tui/24722:
6530 * tui/tui-winsource.h (tui_update_all_breakpoint_info)
6531 (tui_update_breakpoint_info): Add "being_deleted" parameter.
6532 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
6533 (tui_update_all_breakpoint_info): Add "being_deleted" parameter.
6534 (tui_update_breakpoint_info): Likewise.
6535 * tui/tui-hooks.c (tui_event_create_breakpoint)
6536 (tui_event_delete_breakpoint, tui_event_modify_breakpoint):
6537 Update.
6538
65392019-07-17 Tom Tromey <tom@tromey.com>
6540
6541 * tui/tui-stack.c (tui_show_frame_info): Consolidate "if"s.
6542
65432019-07-17 Tom Tromey <tom@tromey.com>
6544
6545 * tui/tui-winsource.c (tui_update_source_window_as_is)
6546 (tui_update_source_windows_with_addr): Update.
6547 * tui/tui-source.h (tui_set_source_content)
6548 (tui_show_symtab_source): Add "win_info" parameter.
6549 * tui/tui-source.c (tui_set_source_content): Add "win_info"
6550 parameter.
6551 (tui_show_symtab_source): Likewise.
6552
65532019-07-17 Tom Tromey <tom@tromey.com>
6554
6555 * tui/tui-wingeneral.c
6556 (tui_check_and_display_highlight_if_needed): Check can_highlight.
6557
65582019-07-17 Tom Tromey <tom@tromey.com>
6559
6560 * tui/tui-data.h (struct tui_win_info) <can_scroll>: New method.
6561 (struct tui_cmd_window) <can_scroll>: New method.
6562 * tui/tui-command.c (tui_dispatch_ctrl_char): Use can_scroll
6563 method.
6564
65652019-07-17 Tom Tromey <tromey@adacore.com>
6566
6567 * ui-out.h (class ui_out) <field_signed, field_fmt_signed,
6568 do_field_signed>: Rename. Change type of "value".
6569 * ui-out.c (ui_out::field_signed): Rename from field_int.
6570 Change type of "value".
6571 (ui_out::field_fmt_signed): Rename from field_fmt_int. Change
6572 type of "value".
6573 * tui/tui-out.h (class tui_ui_out) <do_field_signed>: Rename from
6574 do_field_int. Change type of "value".
6575 * tui/tui-out.c (tui_ui_out::do_field_signed): Rename from
6576 do_field_int. Change type of "value".
6577 * tracepoint.c (trace_status_mi, tfind_1)
6578 (print_one_static_tracepoint_marker): Update.
6579 * thread.c (print_thread_info_1, print_selected_thread_frame):
6580 Update.
6581 * stack.c (print_frame, print_frame_info): Update.
6582 * spu-tdep.c (info_spu_signal_command, info_spu_dma_cmdlist):
6583 Update.
6584 * source.c (print_source_lines_base): Update.
6585 * skip.c (info_skip_command): Update.
6586 * record-btrace.c (btrace_ui_out_decode_error)
6587 (btrace_call_history_src_line): Update.
6588 * python/py-framefilter.c (py_print_single_arg, py_print_frame):
6589 Update.
6590 * progspace.c (print_program_space): Update.
6591 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Update.
6592 * mi/mi-out.h (class mi_ui_out) <do_field_signed>: Rename from
6593 do_field_int. Change type of "value".
6594 * mi/mi-out.c (mi_ui_out::do_table_begin)
6595 (mi_ui_out::do_table_header): Update.
6596 (mi_ui_out::do_field_signed): Rename from do_field_int. Change
6597 type of "value".
6598 * mi/mi-main.c (mi_cmd_thread_list_ids, print_one_inferior)
6599 (mi_cmd_data_list_changed_registers, output_register)
6600 (mi_cmd_data_read_memory, mi_load_progress)
6601 (mi_cmd_trace_frame_collected): Update.
6602 * mi/mi-interp.c (mi_on_normal_stop_1, mi_output_solib_attribs):
6603 Update.
6604 * mi/mi-cmd-var.c (print_varobj, mi_cmd_var_create)
6605 (mi_cmd_var_delete, mi_cmd_var_info_num_children)
6606 (mi_cmd_var_list_children, varobj_update_one): Update.
6607 * mi/mi-cmd-stack.c (mi_cmd_stack_info_depth)
6608 (mi_cmd_stack_list_args, list_arg_or_local): Update.
6609 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Update.
6610 * inferior.c (print_inferior): Update.
6611 * gdb_bfd.c (print_one_bfd): Update.
6612 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
6613 Update.
6614 * darwin-nat-info.c (darwin_debug_regions_recurse): Update.
6615 * cli-out.h (class cli_ui_out) <do_field_signed>: Rename from
6616 do_field_int. Change type of "value".
6617 * cli-out.c (cli_ui_out::do_field_signed): Rename from
6618 do_field_int. Change type of "value".
6619 * breakpoint.c (watchpoint_check, print_breakpoint_location)
6620 (print_one_breakpoint_location, print_it_catch_fork)
6621 (print_one_catch_fork, print_it_catch_vfork)
6622 (print_one_catch_vfork, print_it_catch_solib)
6623 (print_it_catch_exec, print_it_ranged_breakpoint)
6624 (print_mention_watchpoint, print_mention_masked_watchpoint)
6625 (bkpt_print_it, update_static_tracepoint): Update.
6626 * break-catch-throw.c (print_it_exception_catchpoint): Update.
6627 * break-catch-syscall.c (print_it_catch_syscall): Update.
6628 * ada-tasks.c (print_ada_task_info): Update.
6629 * ada-lang.c (print_it_exception, print_mention_exception):
6630 Update.
6631
66322019-07-17 Andrew Burgess <andrew.burgess@embecosm.com>
6633
6634 PR breakpoints/24541
6635 * gdbarch.c: Regenerate.
6636 * gdbarch.h: Regenerate.
6637 * gdbarch.sh: Adjust return type and parameter types for
6638 'stap_adjust_register'.
6639 (i386_stap_adjust_register): Adjust signature and return new
6640 register name.
6641 * stap-probe.c (stap_parse_register_operand): Adjust use of
6642 'gdbarch_stap_adjust_register'.
6643
66442019-07-17 Tom Tromey <tromey@adacore.com>
6645
6646 * s390-linux-nat.c (s390_watch_area): Remove typedef. Don't
6647 declare VEC.
6648 (struct s390_debug_reg_state) <watch_areas, break_areas>: Now
6649 std::vector.
6650 (struct s390_process_info): Add initializers.
6651 (s390_add_process): Use new.
6652 (s390_linux_nat_target::low_forget_process): Use delete.
6653 (s390_linux_nat_target::low_new_fork)
6654 (s390_linux_nat_target::stopped_by_watchpoint)
6655 (s390_linux_nat_target::low_prepare_to_resume)
6656 (s390_linux_nat_target::insert_watchpoint)
6657 (s390_linux_nat_target::insert_hw_breakpoint)
6658 (s390_linux_nat_target::remove_watchpoint)
6659 (s390_linux_nat_target::remove_hw_breakpoint): Update.
6660
66612019-07-16 John Baldwin <jhb@FreeBSD.org>
6662
6663 * aarch64-fbsd-nat.c: Include regcache.h.
6664 (getregs_supplies, getfpregs_supplies): Remove unused gdbarch
6665 argument.
6666 (aarch64_fbsd_nat_target::fetch_registers)
6667 (aarch64_fbsd_nat_target::store_registers): Remove gdbarch
6668 variable.
6669 * arm-fbsd-nat.c, riscv-fbsd-nat.c: Likewise.
6670
66712019-07-16 John Baldwin <jhb@FreeBSD.org>
6672
6673 * fbsd-nat.c: Include gdbarch.h.
6674
66752019-07-15 Tom Tromey <tromey@adacore.com>
6676
6677 * mi/mi-out.c (mi_ui_out::do_field_int): Use plongest.
6678
66792019-07-15 Tom Tromey <tromey@adacore.com>
6680
6681 * mi/mi-out.h (class mi_ui_out) <do_field_unsigned>: Declare.
6682 * mi/mi-out.c (mi_ui_out::do_field_unsigned): New method.
6683 * cli-out.h (class cli_ui_out) <do_field_unsigned>: Declare.
6684 * cli-out.c (cli_ui_out::do_field_int): New method.
6685 * ui-out.c (ui_out::field_unsigned): New method.
6686 * symfile.c (generic_load): Use field_unsigned.
6687 (print_transfer_performance): Likewise.
6688 * record-btrace.c (ui_out_field_uint): Remove.
6689 (btrace_call_history_insn_range, btrace_call_history): Use
6690 field_unsigned.
6691 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn): Use
6692 field_unsigned.
6693 * ui-out.h (class ui_out) <field_unsigned>: New method.
6694 <do_field_unsigned>: Likewise.
6695
66962019-07-15 Tom Tromey <tromey@adacore.com>
6697
6698 * mi/mi-main.c (list_available_thread_groups): Use field_string.
6699 * mi/mi-interp.c (mi_memory_changed): Use field_string.
6700 * target.c (flash_erase_command): Use field_string.
6701 * infrun.c (print_signal_received_reason): Use field_string.
6702 * i386-tdep.c (i386_mpx_print_bounds): Use field_string.
6703 * breakpoint.c (maybe_print_thread_hit_breakpoint): Use
6704 field_string.
6705 * ada-tasks.c (print_ada_task_info): Use field_string.
6706
67072019-07-15 Tom Tromey <tromey@adacore.com>
6708
6709 * target.c (flash_erase_command): Use field_core_addr.
6710 * symfile.c (generic_load): Use field_core_addr.
6711 * sparc64-linux-tdep.c (sparc64_linux_handle_segmentation_fault):
6712 Use field_core_addr.
6713 * i386-linux-tdep.c (i386_linux_handle_segmentation_fault): Use
6714 field_core_addr.
6715
67162019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
6717
6718 * dwarf2loc.c (dwarf2_evaluate_property): Sign extend property
6719 value if its desired type is smaller than a CORE_ADDR and signed.
6720
67212019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
6722
6723 * dwarf2loc.c (dwarf2_evaluate_property): Update to take account
6724 of changes to field names, and use new is_reference field to
6725 decide if a property is a reference or not.
6726 * dwarf2loc.h (struct dwarf2_locexpr_baton): Add 'is_reference'
6727 field.
6728 (struct dwarf2_property_baton): Update header comment, rename
6729 'referenced_type' to 'property_type' and update comments.
6730 * dwarf2read.c (attr_to_dynamic_prop): Add extra parameter to hold
6731 default property type, store in property baton, update to take
6732 accound of renamed field.
6733 (read_func_scope): Update call to attr_to_dynamic_prop.
6734 (read_array_type): Likewise.
6735 (dwarf2_per_cu_addr_sized_int_type): New function.
6736 (read_subrange_index_type): Move type finding code to
6737 dwarf2_per_cu_addr_sized_int_type.
6738 (read_subrange_type): Update calls to attr_to_dynamic_prop.
6739 (dwarf2_per_cu_addr_type): New function.
6740 (set_die_type): Update calls to attr_to_dynamic_prop.
6741
67422019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
6743
6744 * dwarf2read.c (read_subrange_index_type): New function.
6745 (read_subrange_type): Move code into new function and call it.
6746 * gdbtypes.c (create_range_type): Add some asserts.
6747
67482019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
6749
6750 * dwarf2loc.c (dwarf2_evaluate_property): Change return type, and
6751 update return statements.
6752 * dwarf2loc.h (dwarf2_evaluate_property): Update return type on
6753 declaration, and update comment to match.
6754 * gdbtypes.c (resolve_dynamic_array): Update call to
6755 dwarf2_evaluate_property to match new return type.
6756
67572019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
6758
6759 * valarith.c (value_subscripted_rvalue): Change lowerbound
6760 parameter type from int to LONGEST.
6761 * value.h (value_subscripted_rvalue): Likewise in declaration.
6762
67632019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
6764
6765 * cli/cli-utils.c (info_print_command_completer): New function.
6766 * cli/cli-utils.h: Add 'completer.h' include, and forward
6767 declaration for 'struct cmd_list_element'.
6768 (info_print_command_completer): Declare.
6769 * stack.c (_initialize_stack): Add completer for 'info locals' and
6770 'info args'.
6771 * symtab.c (_initialize_symtab): Add completer for 'info
6772 variables' and 'info functions'.
6773 * NEWS: Mention completion for additional info commands.
6774
67752019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
6776
6777 * cli/cli-utils.c (extract_info_print_args): Delete.
6778 (extract_arg_maybe_quoted): Delete.
6779 (info_print_options_defs): New variable.
6780 (make_info_print_options_def_group): New function.
6781 (extract_info_print_options): Define new function.
6782 * cli/cli-utils.h (extract_info_print_args): Delete.
6783 (struct info_print_options): New structure.
6784 (extract_info_print_options): Declare new function.
6785 * stack.c (info_locals_command): Update to use new
6786 extract_info_print_options, also add a header comment.
6787 (info_args_command): Likewise.
6788 * symtab.c (info_variables_command): Likewise.
6789 (info_functions_command): Likewise.
6790
67912019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
6792
6793 * cli/cli-option.c (parse_option): Use extract_string_maybe_quoted
6794 to extract string arguments.
6795 * common/common-utils.c (extract_string_maybe_quoted): New function.
6796 * common/common-utils.h (extract_string_maybe_quoted): Declare.
6797
67982019-07-11 Tom Tromey <tromey@adacore.com>
6799
6800 * main.c (get_init_files): Use GDBINIT, not gdbinit.
6801 * auto-load.c (file_is_auto_load_safe): Use GDBINIT, not gdbinit.
6802 * top.h (gdbinit): Don't declare.
6803 * cli/cli-cmds.c (init_cli_cmds): Remove, merging contents
6804 into...
6805 (_initialize_cli_cmds): ...here. Use GDBINIT, not gdbinit.
6806 * top.c (gdb_init): Don't call init_cli_cmds.
6807 (gdbinit): Remove.
6808 * cli/cli-cmds.h (init_cli_cmds): Don't declare.
6809
68102019-07-11 Tom Tromey <tromey@adacore.com>
6811
6812 * python/py-inferior.c (add_thread_object): Don't use thread_obj
6813 after it has been moved.
6814
68152019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
6816
6817 * valops.c (value_must_coerce_to_target): Change return type to
6818 bool.
6819 * value.h (value_must_coerce_to_target): Likewise.
6820
68212019-07-10 Simon Marchi <simon.marchi@efficios.com>
6822
6823 * breakpoint.c (is_hardware_watchpoint): Remove
6824 forward-declaration.
6825 (is_masked_watchpoint): Change return type to bool.
6826 (is_tracepoint): Likewise.
6827 (is_breakpoint): Likewise.
6828 (is_hardware_watchpoint): Likewise.
6829 (is_watchpoint): Likewise.
6830 (is_no_memory_software_watchpoint): Likewise.
6831 (is_catchpoint): Likewise.
6832 (breakpoint_1): Make FILTER parameter's return type bool.
6833 is_masked_watchpoint): Change return type to bool.
6834 (save_breakpoints): Make FILTER parameter's return type bool.
6835 * breakpoint.h (is_breakpoint): Change return type to bool.
6836 (is_watchpoint): Likewise.
6837 (is_catchpoint): Likewise.
6838 (is_tracepoint): Likewise.
6839
68402019-07-10 Tom Tromey <tom@tromey.com>
6841
6842 * defs.h: Don't include gdbarch.h.
6843 * aarch64-ravenscar-thread.c, aarch64-tdep.c, alpha-bsd-tdep.h,
6844 alpha-linux-tdep.c, alpha-mdebug-tdep.c, arch-utils.h, arm-tdep.h,
6845 ax-general.c, btrace.c, buildsym-legacy.c, buildsym.h, c-lang.c,
6846 cli/cli-decode.h, cli/cli-dump.c, cli/cli-script.h,
6847 cli/cli-style.h, coff-pe-read.h, compile/compile-c-support.c,
6848 compile/compile-cplus.h, compile/compile-loc2c.c, corefile.c,
6849 cp-valprint.c, cris-linux-tdep.c, ctf.c, d-lang.c, d-namespace.c,
6850 dcache.c, dicos-tdep.c, dictionary.c, disasm-selftests.c,
6851 dummy-frame.c, dummy-frame.h, dwarf2-frame-tailcall.c,
6852 dwarf2expr.c, expression.h, f-lang.c, frame-base.c,
6853 frame-unwind.c, frv-linux-tdep.c, gdbarch-selftests.c, gdbtypes.h,
6854 go-lang.c, hppa-nbsd-tdep.c, hppa-obsd-tdep.c, i386-dicos-tdep.c,
6855 i386-tdep.h, ia64-vms-tdep.c, interps.h, language.c,
6856 linux-record.c, location.h, m2-lang.c, m32r-linux-tdep.c,
6857 mem-break.c, memattr.c, mn10300-linux-tdep.c, nios2-linux-tdep.c,
6858 objfiles.h, opencl-lang.c, or1k-linux-tdep.c, p-lang.c,
6859 parser-defs.h, ppc-tdep.h, probe.h, python/py-record-btrace.c,
6860 record-btrace.c, record.h, regcache-dump.c, regcache.h,
6861 riscv-fbsd-tdep.c, riscv-linux-tdep.c, rust-exp.y,
6862 sh-linux-tdep.c, sh-nbsd-tdep.c, source-cache.c,
6863 sparc-nbsd-tdep.c, sparc-obsd-tdep.c, sparc-ravenscar-thread.c,
6864 sparc64-fbsd-tdep.c, std-regs.c, target-descriptions.h,
6865 target-float.c, tic6x-linux-tdep.c, tilegx-linux-tdep.c, top.c,
6866 tracefile.c, trad-frame.c, type-stack.h, ui-style.c, utils.c,
6867 utils.h, valarith.c, valprint.c, varobj.c, x86-tdep.c,
6868 xml-support.h, xtensa-linux-tdep.c, cli/cli-cmds.h: Update.
6869 * s390-linux-nat.c, procfs.c, inf-ptrace.c: Likewise.
6870
68712019-07-10 Tom Tromey <tromey@adacore.com>
6872
6873 * ada-lang.h (is_ada_exception_catchpoint): Declare.
6874 * breakpoint.c (init_ada_exception_breakpoint): Register as
6875 bp_catchpoint.
6876 (print_one_breakpoint_location, print_one_breakpoint): Use
6877 is_ada_exception_catchpoint.
6878 * ada-lang.c (class ada_catchpoint_location): Pass
6879 bp_loc_software_breakpoint to bp_location constructor.
6880 (is_ada_exception_catchpoint): New function.
6881
68822019-07-10 Tom Tromey <tromey@adacore.com>
6883
6884 * arm-tdep.c (arm_exidx_entry_s): Remove typedef. Don't define
6885 VEC.
6886 (struct arm_exidx_entry): New method operator<.
6887 (struct arm_exidx_data) <section_maps>: Change type.
6888 (arm_exidx_data_free): Remove.
6889 (arm_exidx_data_key): Change type. Move lower.
6890 (arm_exidx_new_objfile): Update.
6891 (arm_compare_exidx_entries): Remove.
6892 (arm_find_exidx_entry, _initialize_arm_tdep)
6893
68942019-07-10 Tom Tromey <tromey@adacore.com>
6895
6896 * solib-spu.c (ocl_program_data_key): Change type.
6897 (append_ocl_sos, ocl_enable_break, _initialize_spu_solib):
6898 Update.
6899
69002019-07-10 Tom Tromey <tromey@adacore.com>
6901
6902 * solib-aix.c (lm_info_aix_p): Remove typedef. Don't define VEC.
6903 (struct solib_aix_inferior_data) <library_list>: Change type.
6904 (solib_aix_inferior_data_handle): Change type.
6905 (get_solib_aix_inferior_data): Update.
6906 (solib_aix_free_library_list): Remove.
6907 (library_list_start_library): Update.
6908 (solib_aix_parse_libraries, solib_aix_get_library_list): Change
6909 return type.
6910 (solib_aix_get_library_list)
6911 (solib_aix_solib_create_inferior_hook, solib_aix_current_sos)
6912 (solib_aix_normal_stop_observer, _initialize_solib_aix): Update.
6913
69142019-07-10 Tom Tromey <tromey@adacore.com>
6915
6916 * solib-dsbt.c (struct dsbt_info): Add initializers.
6917 (solib_dsbt_pspace_data): Change type.
6918 (dsbt_pspace_data_cleanup): Remove.
6919 (get_dsbt_info, _initialize_dsbt_solib): Update.
6920
69212019-07-10 Tom Tromey <tromey@adacore.com>
6922
6923 * spu-tdep.c (spu_overlay_data): Change type.
6924 (spu_get_overlay_table, spu_overlay_new_objfile)
6925 (_initialize_spu_tdep): Update.
6926
69272019-07-10 Tom Tromey <tromey@adacore.com>
6928
6929 * gdb-stabs.h (struct dbx_symfile_info): Add initializers and
6930 destructor.
6931 (dbx_objfile_data_key): Change type and declare later.
6932 (DBX_SYMFILE_INFO): Rewrite.
6933 * dbxread.c (dbx_objfile_data_key): Change type.
6934 (dbx_symfile_init): Update.
6935 (~dbx_symfile_info): Rename from dbx_free_symfile_info. Update.
6936 (coffstab_build_psymtabs, elfstab_build_psymtabs)
6937 (stabsect_build_psymtabs, _initialize_dbxread): Update.
6938
69392019-07-10 Tom Tromey <tromey@adacore.com>
6940
6941 * jit.c (jit_program_space_key): Change type. Move lower.
6942 (get_jit_program_space_data): Update.
6943 (jit_program_space_data_cleanup): Remove.
6944 (jit_breakpoint_deleted, free_objfile_data, _initialize_jit):
6945 Update.
6946 (struct jit_program_space_data): Add initializers.
6947
69482019-07-10 Tom Tromey <tromey@adacore.com>
6949
6950 * solib-darwin.c (struct darwin_info): Add initializers.
6951 (solib_darwin_pspace_data): Change type.
6952 (darwin_pspace_data_cleanup): Remove.
6953 (get_darwin_info, _initialize_darwin_solib): Update.
6954
69552019-07-10 Tom Tromey <tromey@adacore.com>
6956
6957 * remote-sim.c (struct sim_inferior_data): Add initializers,
6958 constructor, and destructor.
6959 (sim_inferior_data_key): Change type. Move lower.
6960 (check_for_duplicate_sim_descriptor): Update.
6961 (get_sim_inferior_data): Use new. Update.
6962 (~sim_inferior_data_cleanup): Rename from
6963 sim_inferior_data_cleanup. Simplify.
6964 (gdbsim_close_inferior, simulator_command)
6965 (sim_command_completer, _initialize_remote_sim): Update.
6966 (next_pid, INITIAL_PID): Move earlier.
6967
69682019-07-10 Tom Tromey <tromey@adacore.com>
6969
6970 * python/python-internal.h (create_thread_object): Return
6971 gdbpy_ref.
6972 * python/py-infthread.c (create_thread_object): Return gdbpy_ref.
6973 * python/py-inferior.c (struct threadlist_entry): Add
6974 constructor.
6975 <thread_obj>: Now a gdbpy_ref.
6976 (thread_to_thread_object): Update.
6977 (add_thread_object): Use new.
6978 (delete_thread_object): Use delete.
6979 (infpy_threads): Update.
6980 (py_free_inferior): Update. Construct "inf_obj" after acquiring
6981 GIL.
6982
69832019-07-10 Tom Tromey <tromey@adacore.com>
6984
6985 * valops.c (value_cast): Specialize error message for Ada.
6986
69872019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
6988
6989 * breakpoint.c (breakpoint_1): Update doc and parameter names.
6990
69912019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
6992
6993 * breakpoint.h (bpstat_explains_signal, bpstat_causes_stop,
6994 bpstat_should_step): Return bool, adjust comments.
6995 * breakpoint.c (bpstat_explains_signal, bpstat_causes_stop,
6996 bpstat_should_step): Likewise.
6997
69982019-07-10 Alan Hayward <alan.hayward@arm.com>
6999
7000 * features/Makefile: Use feature target descriptions for Arm.
7001 * features/arm/arm-core.c: Generate new file.
7002 * features/arm/arm-fpa.c: Likewise.
7003 * features/arm/arm-m-profile-with-fpa.xml: Likewise.
7004 * features/arm/arm-m-profile.c: Likewise.
7005 * features/arm/arm-vfpv2.c: Likewise.
7006 * features/arm/arm-vfpv3.c: Likewise.
7007 * features/arm/xscale-iwmmxt.c: Likewise.
7008 * target-descriptions.c (maint_print_c_tdesc_cmd): Add Arm.
7009
70102019-07-10 Alan Hayward <alan.hayward@arm.com>
7011
7012 * arm-linux-nat.c (arm_linux_nat_target::read_description): Check
7013 ptrace earlier.
7014
70152019-07-10 Alan Hayward <alan.hayward@arm.com>
7016
7017 * features/aarch64-pauth.c: Regenerate.
7018
70192019-07-09 Simon Marchi <simon.marchi@polymtl.ca>
7020
7021 * breakpoint.h (struct bpstat_what) <is_longjmp>: Change type to
7022 bool.
7023 (bpstat_what): Use false instead of 0.
7024
70252019-07-09 Pedro Alves <palves@redhat.com>
7026
7027 * break-catch-throw.c (is_exception_catchpoint): New.
7028 * breakpoint.c (print_one_breakpoint_location): New parameter
7029 'raw_loc'. Handle it. Use
7030 is_watchpoint/is_catchpoint/is_exception_catchpoint instead of
7031 looking at the breakpoint's type.
7032 (print_one_breakpoint): If handling "maint info breakpoints", also
7033 print locations of exception catchpoints.
7034 * breakpoint.h (is_exception_catchpoint): Declare.
7035
70362019-07-09 Pedro Alves <palves@redhat.com>
7037
7038 * break-catch-throw.c (print_one_exception_catchpoint): Skip the
7039 "addr" field.
7040 (allocate_location_exception_catchpoint): New.
7041 (handle_gnu_v3_exceptions): Don't reset 'type' to bp_breakpoint.
7042 (initialize_throw_catchpoint_ops): Install
7043 allocate_location_exception_catchpoint as allocate_location
7044 method.
7045 * breakpoint.c (bpstat_what) <bp_catch>: Set action to
7046 BPSTAT_WHAT_SINGLE if not stopping and the location's type is not
7047 bp_loc_other.
7048 (breakpoint_address_is_meaningful): Delete.
7049 (bl_address_is_meaningful): New.
7050 (breakpoint_locations_match): Adjust comment.
7051 (bp_location_from_bp_type): New, factored out of...
7052 (bp_location::bp_location(breakpoint *)): ... this.
7053 (bp_location::bp_location(breakpoint *, bp_loc_type)): New,
7054 factored out of...
7055 (bp_location::bp_location(breakpoint *)): ... this. Reimplement.
7056 (bp_loc_is_permanent): Use bl_address_is_meaningful instead of
7057 breakpoint_address_is_meaningful.
7058 (bp_locations_compare): Adjust comment.
7059 (update_global_location_list): Use bl_address_is_meaningful
7060 instead of breakpoint_address_is_meaningful.
7061 * breakpoint.h (bp_location::bp_location(breakpoint *)): New
7062 explicit.
7063 (bp_location::bp_location(breakpoint *, bp_loc_type)): Declare.
7064 * python/py-breakpoint.c (bppy_get_location): No longer check
7065 whether location is null.
7066
70672019-07-09 Pedro Alves <palves@redhat.com>
7068
7069 PR c++/15468
7070 * breakpoint.c (print_one_breakpoint_location): Remove
7071 single-location assert.
7072
70732019-07-09 Tom Tromey <tom@tromey.com>
7074
7075 * contrib/ari/gdb_ari.sh: Change common to gdbsupport.
7076 * configure: Rebuild.
7077 * configure.ac: Change common to gdbsupport.
7078 * gdbsupport: Rename from common.
7079 * acinclude.m4: Change common to gdbsupport.
7080 * Makefile.in (CONFIG_SRC_SUBDIR, COMMON_SFILES)
7081 (HFILES_NO_SRCDIR, stamp-version, ALLDEPFILES): Change common to
7082 gdbsupport.
7083 * aarch64-tdep.c, ada-lang.c, ada-lang.h, agent.c, alloc.c,
7084 amd64-darwin-tdep.c, amd64-dicos-tdep.c, amd64-fbsd-nat.c,
7085 amd64-fbsd-tdep.c, amd64-linux-nat.c, amd64-linux-tdep.c,
7086 amd64-nbsd-tdep.c, amd64-obsd-tdep.c, amd64-sol2-tdep.c,
7087 amd64-tdep.c, amd64-windows-tdep.c, arch-utils.c,
7088 arch/aarch64-insn.c, arch/aarch64.c, arch/aarch64.h, arch/amd64.c,
7089 arch/amd64.h, arch/arm-get-next-pcs.c, arch/arm-linux.c,
7090 arch/arm.c, arch/i386.c, arch/i386.h, arch/ppc-linux-common.c,
7091 arch/riscv.c, arch/riscv.h, arch/tic6x.c, arm-tdep.c, auto-load.c,
7092 auxv.c, ax-gdb.c, ax-general.c, ax.h, breakpoint.c, breakpoint.h,
7093 btrace.c, btrace.h, build-id.c, build-id.h, c-lang.h, charset.c,
7094 charset.h, cli/cli-cmds.c, cli/cli-cmds.h, cli/cli-decode.c,
7095 cli/cli-dump.c, cli/cli-option.h, cli/cli-script.c,
7096 coff-pe-read.c, command.h, compile/compile-c-support.c,
7097 compile/compile-c.h, compile/compile-cplus-symbols.c,
7098 compile/compile-cplus-types.c, compile/compile-cplus.h,
7099 compile/compile-loc2c.c, compile/compile.c, completer.c,
7100 completer.h, contrib/ari/gdb_ari.sh, corefile.c, corelow.c,
7101 cp-support.c, cp-support.h, cp-valprint.c, csky-tdep.c, ctf.c,
7102 darwin-nat.c, debug.c, defs.h, disasm-selftests.c, disasm.c,
7103 disasm.h, dtrace-probe.c, dwarf-index-cache.c,
7104 dwarf-index-cache.h, dwarf-index-write.c, dwarf2-frame.c,
7105 dwarf2expr.c, dwarf2loc.c, dwarf2read.c, event-loop.c,
7106 event-top.c, exceptions.c, exec.c, extension.h, fbsd-nat.c,
7107 features/aarch64-core.c, features/aarch64-fpu.c,
7108 features/aarch64-pauth.c, features/aarch64-sve.c,
7109 features/i386/32bit-avx.c, features/i386/32bit-avx512.c,
7110 features/i386/32bit-core.c, features/i386/32bit-linux.c,
7111 features/i386/32bit-mpx.c, features/i386/32bit-pkeys.c,
7112 features/i386/32bit-segments.c, features/i386/32bit-sse.c,
7113 features/i386/64bit-avx.c, features/i386/64bit-avx512.c,
7114 features/i386/64bit-core.c, features/i386/64bit-linux.c,
7115 features/i386/64bit-mpx.c, features/i386/64bit-pkeys.c,
7116 features/i386/64bit-segments.c, features/i386/64bit-sse.c,
7117 features/i386/x32-core.c, features/riscv/32bit-cpu.c,
7118 features/riscv/32bit-csr.c, features/riscv/32bit-fpu.c,
7119 features/riscv/64bit-cpu.c, features/riscv/64bit-csr.c,
7120 features/riscv/64bit-fpu.c, features/tic6x-c6xp.c,
7121 features/tic6x-core.c, features/tic6x-gp.c, filename-seen-cache.h,
7122 findcmd.c, findvar.c, fork-child.c, gcore.c, gdb_bfd.c, gdb_bfd.h,
7123 gdb_proc_service.h, gdb_regex.c, gdb_select.h, gdb_usleep.c,
7124 gdbarch-selftests.c, gdbthread.h, gdbtypes.h, gnu-nat.c,
7125 go32-nat.c, guile/guile.c, guile/scm-ports.c,
7126 guile/scm-safe-call.c, guile/scm-type.c, i386-fbsd-nat.c,
7127 i386-fbsd-tdep.c, i386-go32-tdep.c, i386-linux-nat.c,
7128 i386-linux-tdep.c, i386-tdep.c, i387-tdep.c,
7129 ia64-libunwind-tdep.c, ia64-linux-nat.c, inf-child.c,
7130 inf-ptrace.c, infcall.c, infcall.h, infcmd.c, inferior-iter.h,
7131 inferior.c, inferior.h, inflow.c, inflow.h, infrun.c, infrun.h,
7132 inline-frame.c, language.h, linespec.c, linux-fork.c, linux-nat.c,
7133 linux-tdep.c, linux-thread-db.c, location.c, machoread.c,
7134 macrotab.h, main.c, maint.c, maint.h, memattr.c, memrange.h,
7135 mi/mi-cmd-break.h, mi/mi-cmd-env.c, mi/mi-cmd-stack.c,
7136 mi/mi-cmd-var.c, mi/mi-interp.c, mi/mi-main.c, mi/mi-parse.h,
7137 minsyms.c, mips-linux-tdep.c, namespace.h,
7138 nat/aarch64-linux-hw-point.c, nat/aarch64-linux-hw-point.h,
7139 nat/aarch64-linux.c, nat/aarch64-sve-linux-ptrace.c,
7140 nat/amd64-linux-siginfo.c, nat/fork-inferior.c,
7141 nat/linux-btrace.c, nat/linux-btrace.h, nat/linux-namespaces.c,
7142 nat/linux-nat.h, nat/linux-osdata.c, nat/linux-personality.c,
7143 nat/linux-procfs.c, nat/linux-ptrace.c, nat/linux-ptrace.h,
7144 nat/linux-waitpid.c, nat/mips-linux-watch.c,
7145 nat/mips-linux-watch.h, nat/ppc-linux.c, nat/x86-dregs.c,
7146 nat/x86-dregs.h, nat/x86-linux-dregs.c, nat/x86-linux.c,
7147 nto-procfs.c, nto-tdep.c, objfile-flags.h, objfiles.c, objfiles.h,
7148 obsd-nat.c, observable.h, osdata.c, p-valprint.c, parse.c,
7149 parser-defs.h, ppc-linux-nat.c, printcmd.c, probe.c, proc-api.c,
7150 procfs.c, producer.c, progspace.h, psymtab.h,
7151 python/py-framefilter.c, python/py-inferior.c, python/py-ref.h,
7152 python/py-type.c, python/python.c, record-btrace.c, record-full.c,
7153 record.c, record.h, regcache-dump.c, regcache.c, regcache.h,
7154 remote-fileio.c, remote-fileio.h, remote-sim.c, remote.c,
7155 riscv-tdep.c, rs6000-aix-tdep.c, rust-exp.y, s12z-tdep.c,
7156 selftest-arch.c, ser-base.c, ser-event.c, ser-pipe.c, ser-tcp.c,
7157 ser-unix.c, skip.c, solib-aix.c, solib-target.c, solib.c,
7158 source-cache.c, source.c, source.h, sparc-nat.c, spu-linux-nat.c,
7159 stack.c, stap-probe.c, symfile-add-flags.h, symfile.c, symfile.h,
7160 symtab.c, symtab.h, target-descriptions.c, target-descriptions.h,
7161 target-memory.c, target.c, target.h, target/waitstatus.c,
7162 target/waitstatus.h, thread-iter.h, thread.c, tilegx-tdep.c,
7163 top.c, top.h, tracefile-tfile.c, tracefile.c, tracepoint.c,
7164 tracepoint.h, tui/tui-io.c, ui-file.c, ui-out.h,
7165 unittests/array-view-selftests.c,
7166 unittests/child-path-selftests.c, unittests/cli-utils-selftests.c,
7167 unittests/common-utils-selftests.c,
7168 unittests/copy_bitwise-selftests.c, unittests/environ-selftests.c,
7169 unittests/format_pieces-selftests.c,
7170 unittests/function-view-selftests.c,
7171 unittests/lookup_name_info-selftests.c,
7172 unittests/memory-map-selftests.c, unittests/memrange-selftests.c,
7173 unittests/mkdir-recursive-selftests.c,
7174 unittests/observable-selftests.c,
7175 unittests/offset-type-selftests.c, unittests/optional-selftests.c,
7176 unittests/parse-connection-spec-selftests.c,
7177 unittests/ptid-selftests.c, unittests/rsp-low-selftests.c,
7178 unittests/scoped_fd-selftests.c,
7179 unittests/scoped_mmap-selftests.c,
7180 unittests/scoped_restore-selftests.c,
7181 unittests/string_view-selftests.c, unittests/style-selftests.c,
7182 unittests/tracepoint-selftests.c, unittests/unpack-selftests.c,
7183 unittests/utils-selftests.c, unittests/xml-utils-selftests.c,
7184 utils.c, utils.h, valarith.c, valops.c, valprint.c, value.c,
7185 value.h, varobj.c, varobj.h, windows-nat.c, x86-linux-nat.c,
7186 xml-support.c, xml-support.h, xml-tdesc.h, xstormy16-tdep.c,
7187 xtensa-linux-nat.c, dwarf2read.h: Change common to gdbsupport.
7188
71892019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
7190
7191 * linespec.c (decode_digits_list_mode): Set explicit_line to a
7192 bool value.
7193 (decode_digits_ordinary): Set explicit_line field in sal.
7194 * symtab.c (skip_prologue_sal): Don't skip prologue for a
7195 symtab_and_line that was set on an explicit line number in
7196 assembler code. Do always update the recorded symtab and line if
7197 we do skip the prologue.
7198
71992019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
7200
7201 * breakpoint.c (set_breakpoint_location_function): Remove
7202 explicit_loc parameter.
7203 (momentary_breakpoint_from_master): Update call to
7204 set_breakpoint_location_function.
7205 (add_location_to_breakpoint): Likewise.
7206
72072019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
7208
7209 * riscv-tdep.c (riscv_features_from_gdbarch_info): Don't modify
7210 required features based on default bfd type when no specific bfd
7211 is present.
7212
72132019-07-08 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7214
7215 * NEWS: Mention that GDB printf and eval commands can now print
7216 C-style and Ada-style convenience var strings without
7217 calling the inferior.
7218 * printcmd.c (printf_c_string): Locally print GDB internal var
7219 instead of transiting via the inferior.
7220 (printf_wide_c_string): Likewise.
7221
72222019-07-04 Alan Hayward <alan.hayward@arm.com>
7223
7224 PR breakpoints/25011
7225 * symfile.c (symbol_file_command): Call solib_create_inferior_hook.
7226
72272019-07-04 Tom Tromey <tom@tromey.com>
7228
7229 PR tui/24724:
7230 * tui/tui-winsource.c (tui_clear_source_content): Update.
7231 (tui_source_window_base::set_is_exec_point_at): Fix comment.
7232 (tui_update_breakpoint_info): Update.
7233 (tui_set_exec_info_content): Update.
7234 * tui/tui-source.c (tui_set_source_content_nil): Update.
7235 * tui/tui-disasm.c (tui_set_disassem_content): Don't set
7236 has_break.
7237 * tui/tui-data.h (enum tui_bp_flag): New.
7238 (tui_bp_flags): New enum flags type.
7239 (struct tui_source_element) <break_mode>: Change type. Rename
7240 from has_break.
7241 (TUI_BP_ENABLED, TUI_BP_DISABLED, TUI_BP_HIT)
7242 (TUI_BP_CONDITIONAL, TUI_BP_HARDWARE): Don't define. Now enum
7243 constants.
7244 * tui/tui-winsource.h: Fix comment.
7245
72462019-07-04 Alan Hayward <alan.hayward@arm.com>
7247
7248 * aarch32-linux-nat.h (VFP_REGS_SIZE): Remove define.
7249 * aarch64-linux-nat.c (fetch_fpregs_from_thread)
7250 (store_fpregs_to_thread)
7251 (aarch64_linux_nat_target::read_description): Use ARM_VFP3_REGS_SIZE.
7252 * arch/arm.h (IWMMXT_VEC_REGISTER_SIZE, ARM_CORE_REGS_SIZE)
7253 (ARM_FP_REGS_SIZE, ARM_VFP2_REGS_SIZE, ARM_VFP3_REGS_SIZE)
7254 (IWMMXT_REGS_SIZE): Add define.
7255 * arm-linux-nat.c (IWMMXT_REGS_SIZE): Remove define.
7256 (fetch_vfp_regs, store_vfp_regs)
7257 (arm_linux_nat_target::read_description): Use ARM_VFP3_REGS_SIZE.
7258 * arm-tdep.c (arm_register_g_packet_guesses): Use new defines.
7259
72602019-07-04 Alan Hayward <alan.hayward@arm.com>
7261
7262 * arch/arm-get-next-pcs.c (thumb_get_next_pcs_raw): Use ARM_
7263 defines.
7264 * arch/arm-linux.c (arm_linux_sigreturn_next_pc_offset): Likewise.
7265 * arch/arm.h (INT_REGISTER_SIZE) Rename from...
7266 (ARM_INT_REGISTER_SIZE): ...to this.
7267 (ARM_FP_REGISTER_SIZE) (ARM_VFP_REGISTER_SIZE): Add define.
7268 * arm-linux-tdep.c (ARM_LINUX_JB_ELEMENT_SIZE)
7269 (ARM_LINUX_SIZEOF_GREGSET, arm_linux_supply_gregset)
7270 (arm_linux_collect_gregset, supply_nwfpe_register)
7271 (collect_nwfpe_register, arm_linux_collect_nwfpe): Use ARM_
7272 defines.
7273 * arm-linux-tdep.h (ARM_LINUX_SIZEOF_NWFPE, NWFPE_FPSR_OFFSET)
7274 (NWFPE_FPCR_OFFSET, NWFPE_TAGS_OFFSET): Likewise
7275 * arm-nbsd-tdep.c (ARM_NBSD_JB_ELEMENT_SIZE): Likewise.
7276 * arm-tdep.c (arm_push_dummy_call, arm_extract_return_value)
7277 (arm_return_in_memory, arm_store_return_value)
7278 (arm_get_longjmp_target, arm_register_g_packet_guesses)
7279 (arm_record_ld_st_multiple): Likewise.
7280 * arm-tdep.h (FP_REGISTER_SIZE, VFP_REGISTER_SIZE): Remove.
7281 * arm-wince-tdep.c (ARM_WINCE_JB_ELEMENT_SIZE): Use ARM_ defines.
7282
72832019-07-04 Alan Hayward <alan.hayward@arm.com>
7284
7285 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Use
7286 AARCH64_DISPLACED_MODIFIED_INSNS.
7287 * aarch64-tdep.c (struct aarch64_displaced_step_data)
7288 (aarch64_displaced_step_copy_insn): Likewise.
7289 * aarch64-tdep.h (DISPLACED_MODIFIED_INSNS): Rename from..
7290 (AARCH64_DISPLACED_MODIFIED_INSNS): ...to this.
7291 * arm-linux-tdep.c (arm_linux_cleanup_svc): Use
7292 ARM_DISPLACED_MODIFIED_INSNS.
7293 * arm-tdep.c (arm_gdbarch_init): Likewise.
7294 * arm-tdep.h (DISPLACED_MODIFIED_INSNS): Rename from..
7295 (ARM_DISPLACED_MODIFIED_INSNS): ...to this.
7296 (struct arm_displaced_step_closure): Use
7297 ARM_DISPLACED_MODIFIED_INSNS.
7298
72992019-07-04 Alan Hayward <alan.hayward@arm.com>
7300
7301 * features/Makefile: Remove unused xml files.
7302 * features/aarch64.xml: Remove.
7303 * features/i386/amd64-avx-avx512-linux.xml: Remove.
7304 * features/i386/amd64-avx-avx512.xml: Remove.
7305 * features/i386/amd64-avx-linux.xml: Remove.
7306 * features/i386/amd64-avx-mpx-avx512-pku-linux.xml: Remove.
7307 * features/i386/amd64-avx-mpx-avx512-pku.xml: Remove.
7308 * features/i386/amd64-avx-mpx-linux.xml: Remove.
7309 * features/i386/amd64-avx-mpx.xml: Remove.
7310 * features/i386/amd64-avx.xml: Remove.
7311 * features/i386/amd64-linux.xml: Remove.
7312 * features/i386/amd64-mpx-linux.xml: Remove.
7313 * features/i386/amd64-mpx.xml: Remove.
7314 * features/i386/amd64.xml: Remove.
7315 * features/i386/i386-avx-avx512-linux.xml: Remove.
7316 * features/i386/i386-avx-avx512.xml: Remove.
7317 * features/i386/i386-avx-linux.xml: Remove.
7318 * features/i386/i386-avx-mpx-avx512-pku-linux.xml: Remove.
7319 * features/i386/i386-avx-mpx-avx512-pku.xml: Remove.
7320 * features/i386/i386-avx-mpx-linux.xml: Remove.
7321 * features/i386/i386-avx-mpx.xml: Remove.
7322 * features/i386/i386-avx.xml: Remove.
7323 * features/i386/i386-linux.xml: Remove.
7324 * features/i386/i386-mmx-linux.xml: Remove.
7325 * features/i386/i386-mmx.xml: Remove.
7326 * features/i386/i386-mpx-linux.xml: Remove.
7327 * features/i386/i386-mpx.xml: Remove.
7328 * features/i386/i386.xml: Remove.
7329 * features/i386/x32-avx-avx512-linux.xml: Remove.
7330 * features/i386/x32-avx-linux.xml: Remove.
7331 * features/i386/x32-linux.xml: Remove.
7332
73332019-07-04 Alan Hayward <alan.hayward@arm.com>
7334
7335 * regformats/aarch64.dat: Remove.
7336 * regformats/i386/amd64-avx-avx512-linux.dat: Remove.
7337 * regformats/i386/amd64-avx-linux.dat: Remove.
7338 * regformats/i386/amd64-avx-mpx-avx512-pku-linux.dat: Remove.
7339 * regformats/i386/amd64-avx-mpx-linux.dat: Remove.
7340 * regformats/i386/amd64-linux.dat: Remove.
7341 * regformats/i386/amd64-mpx-linux.dat: Remove.
7342 * regformats/i386/amd64.dat: Remove.
7343 * regformats/i386/i386-avx-avx512-linux.dat: Remove.
7344 * regformats/i386/i386-avx-linux.dat: Remove.
7345 * regformats/i386/i386-avx-mpx-avx512-pku-linux.dat: Remove.
7346 * regformats/i386/i386-avx-mpx-linux.dat: Remove.
7347 * regformats/i386/i386-linux.dat: Remove.
7348 * regformats/i386/i386-mmx-linux.dat: Remove.
7349 * regformats/i386/i386-mpx-linux.dat: Remove.
7350 * regformats/i386/i386.dat: Remove.
7351 * regformats/i386/x32-avx-avx512-linux.dat: Remove.
7352 * regformats/i386/x32-avx-linux.dat: Remove.
7353 * regformats/i386/x32-linux.dat: Remove.
7354
73552019-07-04 Alan Hayward <alan.hayward@arm.com>
7356
7357 * aarch64-tdep.c: Remove xml self tests.
7358 * amd64-linux-tdep.c: Likewise.
7359 * amd64-tdep.c: Likewise.
7360 * i386-linux-tdep.c: Likewise.
7361 * i386-tdep.c: Likewise.
7362
73632019-07-03 Pedro Alves <palves@redhat.com>
7364
7365 PR cli/24732
7366 * cli/cli-cmds.c (struct pipe_cmd_opts): New.
7367 (pipe_cmd_option_defs): New.
7368 (make_pipe_cmd_options_def_group): New.
7369 (pipe_command): Use gdb::option::process_options.
7370 (pipe_command_completer): New function.
7371 (_initialize_cli_cmds): Install completer for "pipe" command.
7372
73732019-07-03 Pedro Alves <palves@redhat.com>
7374
7375 * cli/cli-option.c (union option_value) <string>: New field.
7376 (struct option_def_and_value): Add ctor, move ctor, dtor and
7377 use DISABLE_COPY_AND_ASSIGN.
7378 (option_def_and_value::clear_value): New.
7379 (parse_option, save_option_value_in_ctx, get_val_type_str)
7380 (add_setshow_cmds_for_options): Handle var_string.
7381 * cli-option.h (union option_def::var_address) <string>: New
7382 field.
7383 (struct string_option_def): New.
7384 * maint-test-options.c (struct test_options_opts): Add default
7385 ctor and use DISABLE_COPY_AND_ASSIGN.
7386 <string_opt>: New field.
7387 (test_options_opts::~test_options_opts): New.
7388 (test_options_opts::dump): Also dump "-string".
7389 (test_options_option_defs): Install "string.
7390
73912019-07-03 Pedro Alves <palves@redhat.com>
7392
7393 * cli/cli-option.c (parse_option) <var_enum>: Don't return an
7394 option_value with a null enumeration.
7395 (complete_options): Save the option values in the context.
7396 (save_option_value_in_ctx): New, factored out from ...
7397 (process_options): ... here.
7398 * cli/cli-utils.c (get_ulongest): Don't advance PP until the end
7399 of the function.
7400 * maint-test-options.c (test_options_opts::dump): New, factored
7401 out from ...
7402 (maintenance_test_options_command_mode): ... here.
7403 (maintenance_test_options_command_completion_result): Delete.
7404 (maintenance_test_options_command_completion_text): Update
7405 comment.
7406 (maintenance_show_test_options_completion_result): Change
7407 prototype. Just print
7408 maintenance_test_options_command_completion_text.
7409 (save_completion_result): New.
7410 (maintenance_test_options_completer_mode): Pass options context to
7411 complete_options, and then save a dump.
7412 (_initialize_maint_test_options): Use add_cmd to install "maint
7413 show test-options-completion-result".
7414
74152019-07-03 Pedro Alves <palves@redhat.com>
7416
7417 * NEWS (New commands): Mention "with" and "maint with".
7418 * cli/cli-cmds.c (with_command_1, with_command_completer_1)
7419 (with_command, with_command_completer): New.
7420 (pipe_command): Adjust to new repeat_previous
7421 interface.
7422 (_initialize_cli_cmds): Install the "with" command and its "w"
7423 alias.
7424 * cli/cli-cmds.h (with_command_1, with_command_completer_1): New
7425 declarations.
7426 * cli/cli-setshow.c (parse_cli_var_uinteger)
7427 (parse_cli_var_zuinteger_unlimited, do_set_command): Handle empty
7428 argument strings for all var_types.
7429 (get_setshow_command_value_string): New, factored out from ...
7430 (do_show_command): ... this.
7431 * cli/cli-setshow.h: Include <string>.
7432 (get_setshow_command_value_string): Declare.
7433 * command.h (repeat_previous): Now returns const char *. Adjust
7434 comment.
7435 * maint.c: Include "cli/cli-cmds.h".
7436 (maintenance_with_cmd, maintenance_with_cmd_completer): New.
7437 (_initialize_maint_cmds): Register the "maintenance with" command.
7438 * top.c (repeat_previous): Move bits from pipe_command here:
7439 Return the saved command line, if any; error out if there's no
7440 command to relaunch.
7441
74422019-07-03 Pedro Alves <palves@redhat.com>
7443
7444 * NEWS (New commands): Mention "maint set/show test-settings"
7445 instead of "maint test-settings".
7446 * maint-test-settings.c (maintenance_test_settings_list): Delete.
7447 (maintenance_test_settings_set_list): Rename to ...
7448 (maintenance_set_test_settings_list): ... this.
7449 (maintenance_test_settings_show_list): Rename to ...
7450 (maintenance_show_test_settings_list): ... this.
7451 (maintenance_test_settings_cmd): Delete.
7452 (maintenance_test_settings_set_cmd): ...
7453 (maintenance_set_test_settings_cmd): ... this.
7454 (maintenance_test_settings_show_cmd): ...
7455 (maintenance_show_test_settings_cmd): ... this.
7456 (maintenance_test_settings_show_value_cmd):
7457 (maintenance_show_test_settings_value_cmd): ... this.
7458 (_initialize_maint_test_settings): No longer install the "maint
7459 test-settings" prefix command. Rename "maint test-settings set"
7460 to "maint set test-settings", and "maint test-settings show" to
7461 "maint show test-settings". Adjust all subcommands.
7462
74632019-07-03 Pedro Alves <palves@redhat.com>
7464
7465 * maint-test-settings.c: Fix file's intro comment. Replace all
7466 references to "test-options" with references to "test-settings",
7467 in comments.
7468
74692019-07-03 Pedro Alves <palves@redhat.com>
7470
7471 * maint-test-settings.c (maintenance_test_settings_xxx)
7472 (maintenance_test_settings_yyy, maintenance_test_settings_zzz):
7473 New.
7474 (maintenance_test_settings_enums): Use them.
7475 (maintenance_test_settings_enum): Default to
7476 maintenance_test_settings_xxx.
7477 (_initialize_maint_test_settings): Initialize
7478 MAINTENANCE_TEST_SETTINGS_FILENAME.
7479
74802019-07-02 Simon Marchi <simon.marchi@polymtl.ca>
7481
7482 * breakpoint.h (remove_breakpoints_inf): Change return type to
7483 void, move function documentation here.
7484 * breakpoint.c (remove_breakpoints_inf): Change return type to
7485 void, move function documentation to header.
7486
74872019-07-02 Pedro Alves <palves@redhat.com>
7488
7489 * NEWS (Completion improvements): Mention "info threads".
7490 * thread.c (struct info_threads_opts, info_threads_option_defs)
7491 (make_info_threads_options_def_group): New.
7492 (info_threads_command): Use gdb::option::process_options.
7493 (info_threads_command_completer): New.
7494 (_initialize_thread): Use gdb::option::build_help to build the
7495 help text for "info threads".
7496
74972019-07-02 Simon Marchi <simon.marchi@polymtl.ca>
7498
7499 * defs.h (generic_load): Move from here...
7500 * symfile.h (generic_load): ... to here. Rename name parameter
7501 to args.
7502 * symfile.c (generic_load): Add comment.
7503
75042019-07-01 Tom Tromey <tromey@adacore.com>
7505
7506 * dwarf2read.c
7507 (dw2_debug_names_iterator::find_vec_in_debug_names): Hoist
7508 declaration of without_params. Fix formatting.
7509
75102019-07-01 Tom Tromey <tromey@adacore.com>
7511
7512 * ada-exp.y (find_primitive_type): Update.
7513 * ada-lang.h (ada_lookup_symbol): Update.
7514 * ada-lang.c (ada_lookup_symbol): Remove "is_a_field_of_this"
7515 parameter.
7516 (ada_lookup_encoded_symbol, ada_lookup_symbol_nonlocal): Update.
7517
75182019-06-28 Sergio Durigan Junior <sergiodj@redhat.com>
7519
7520 PR breakpoints/24541
7521 * gdbarch.c: Regenerate.
7522 * gdbarch.h: Regenerate.
7523 * gdbarch.sh: Add 'stap_adjust_register'.
7524 * i386-tdep.c: Include '<unordered_set>'.
7525 (i386_stap_adjust_register): New function.
7526 (i386_elf_init_abi): Register 'i386_stap_adjust_register'.
7527 * stap-probe.c (stap_parse_register_operand): Call
7528 'gdbarch_stap_adjust_register'.
7529
75302019-06-28 Sergio Durigan Junior <sergiodj@redhat.com>
7531
7532 PR python/24742
7533 https://bugzilla.redhat.com/show_bug.cgi?id=1723564
7534 * python/python.c (do_start_initialization): Use 'xmalloc'
7535 instead of 'PyMem_Malloc'.
7536
75372019-06-28 Tom Tromey <tromey@adacore.com>
7538
7539 * dwarf2read.c (partial_die_info::read): Prefer the linkage name
7540 for Ada.
7541
75422019-06-27 Tom Tromey <tromey@adacore.com>
7543
7544 * arm-tdep.c (arm_objfile_data_key): Move lower. Change type to
7545 objfile_key.
7546 (arm_find_mapping_symbol, arm_record_special_symbol)
7547 (_initialize_arm_tdep): Update.
7548 (arm_objfile_data_free): Remove.
7549
75502019-06-27 Tom Tromey <tromey@adacore.com>
7551
7552 * cp-valprint.c (cp_print_value_fields): Pass opts, not options,
7553 to cp_print_static_field.
7554
75552019-06-26 Tom Tromey <tromey@adacore.com>
7556
7557 * minsyms.c (lookup_minimal_symbol_solib_trampoline): Remove.
7558 * minsyms.h (lookup_minimal_symbol_solib_trampoline): Don't
7559 declare.
7560
75612019-06-26 Alan Hayward <alan.hayward@arm.com>
7562
7563 * features/aarch64-core.c (create_feature_aarch64_core):
7564 Regenerate.
7565 * features/aarch64-core.xml: Add cpsr flags.
7566
75672019-06-26 Alan Hayward <alan.hayward@arm.com>
7568
7569 * arm-tdep.c (arm_gnu_triplet_regexp): New function.
7570 (arm_gdbarch_init): Add arm_gnu_triplet_regexp.
7571
75722019-06-25 Simon Marchi <simon.marchi@polymtl.ca>
7573
7574 * arm-tdep.c (struct arm_per_objfile) <section_maps_sorted>: New
7575 field.
7576 (arm_find_mapping_symbol): Sort mapping symbol vectors on first
7577 use.
7578 (arm_record_special_symbol): Don't insert new symbol in sorted
7579 position, push it at the end.
7580
75812019-06-25 Simon Marchi <simon.marchi@polymtl.ca>
7582
7583 * arm-tdep.c (struct arm_mapping_symbol) (operator <): New.
7584 (arm_mapping_symbol_s): Remove.
7585 (DEF_VEC_O(arm_mapping_symbol_s)): Remove.
7586 (arm_mapping_symbol_vec): New typedef.
7587 (struct arm_per_objfile): Add constructor.
7588 <section_maps>: Change type to
7589 std::unique_ptr<arm_mapping_symbol_vec[]>.
7590 (arm_compare_mapping_symbols): Remove.
7591 (arm_find_mapping_symbol): Adjust to section_maps type change.
7592 (arm_objfile_data_free): Call delete on arm_per_objfile.
7593 (arm_record_special_symbol): Adjust to section_maps type change.
7594 Allocate arm_per_objfile with new.
7595
75962019-06-25 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7597
7598 * cli/cli-cmds.c (alias_command): Compare the alias prefix
7599 with the command prefix.
7600
76012019-06-25 Tom Tromey <tom@tromey.com>
7602
7603 * tui/tui-wingeneral.c (tui_delete_win): Remove "return".
7604 * tui/tui-data.c (~tui_gen_win_info): Remove "if".
7605
76062019-06-25 Tom Tromey <tom@tromey.com>
7607
7608 * tui/tui-layout.c (init_and_make_win): Assert on unrecognized
7609 type.
7610 * tui/tui-data.h (struct tui_gen_win_info): Make constructor
7611 protected.
7612
76132019-06-25 Tom Tromey <tom@tromey.com>
7614
7615 * tui/tui-winsource.c
7616 (tui_source_window_base::set_is_exec_point_at): Add check against
7617 LOA_ADDRESS.
7618
76192019-06-25 Tom Tromey <tom@tromey.com>
7620
7621 * tui/tui-source.c (tui_set_source_content): Don't check before
7622 xfree.
7623 * tui/tui-disasm.c (tui_disassemble): Don't check before xfree.
7624
76252019-06-25 Tom Tromey <tom@tromey.com>
7626
7627 * tui/tui-winsource.h (tui_update_source_window_as_is)
7628 (tui_alloc_source_buffer, tui_line_is_displayed)
7629 (tui_addr_is_displayed): Change type of win_info.
7630 * tui/tui-winsource.c (tui_update_source_window_as_is)
7631 (tui_clear_source_content, tui_show_source_line)
7632 (tui_show_source_content, tui_source_window_base::refill)
7633 (tui_source_window_base::set_is_exec_point_at)
7634 (tui_source_window_base::set_is_exec_point_at)
7635 (tui_update_breakpoint_info, tui_set_exec_info_content): Update.
7636 (tui_alloc_source_buffer, tui_line_is_displayed)
7637 (tui_addr_is_displayed): Change type of win_info. Update.
7638 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
7639 (tui_source_window_base::do_make_visible_with_new_height):
7640 Update.
7641 * tui/tui-source.c (tui_set_source_content)
7642 (tui_set_source_content_nil)
7643 (tui_source_window::do_scroll_vertical): Update.
7644 * tui/tui-layout.c (show_layout): Update.
7645 * tui/tui-disasm.c (tui_set_disassem_content)
7646 (tui_disasm_window::do_scroll_vertical): Update.
7647 * tui/tui-data.h (tui_win_content): Remove.
7648 (struct tui_gen_win_info) <content, content_size>: Remove.
7649 (struct tui_source_element): Add initializers and destructor.
7650 (union tui_which_element, struct tui_win_element): Remove.
7651 (struct tui_source_window_base) <content>: New field.
7652 (struct tui_data_window): Remove destructor.
7653 (tui_alloc_content, tui_free_win_content)
7654 (tui_free_all_source_wins_content): Don't declare.
7655 * tui/tui-data.c (tui_initialize_static_data): Update.
7656 (init_content_element, tui_alloc_content): Remove.
7657 (~tui_gen_win_info): Update.
7658 (~tui_data_window, tui_free_all_source_wins_content)
7659 (tui_free_win_content, free_content, free_content_elements):
7660 Remove.
7661
76622019-06-25 Tom Tromey <tom@tromey.com>
7663
7664 * tui/tui-winsource.h (tui_clear_source_content)
7665 (tui_erase_source_content, tui_show_source_content): Change type
7666 of win_info.
7667 * tui/tui-winsource.c (tui_clear_source_content)
7668 (tui_erase_source_content, tui_show_source_content): Change type
7669 of win_info.
7670 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
7671 * tui/tui-source.h (tui_set_source_content_nil): Change type of
7672 win_info.
7673 * tui/tui-source.c (tui_set_source_content_nil): Change type of
7674 win_info.
7675 * tui/tui-layout.c (show_source_or_disasm_and_command): Update.
7676
76772019-06-25 Tom Tromey <tom@tromey.com>
7678
7679 * tui/tui-winsource.c (tui_clear_source_content)
7680 (tui_source_window_base::set_is_exec_point_at): Update.
7681 * tui/tui-source.c (tui_set_source_content_nil): Update.
7682 * tui/tui-data.h (struct tui_source_element) <is_exec_point>: Now
7683 a bool.
7684 * tui/tui-data.c (init_content_element): Update.
7685
76862019-06-25 Tom Tromey <tom@tromey.com>
7687
7688 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Update.
7689 * tui/tui-win.c (make_invisible_and_set_new_height): Update.
7690 * tui/tui-layout.c (init_and_make_win): Update.
7691 * tui/tui.h (enum tui_win_type): Update.
7692 * tui/tui-data.h (tui_win_is_auxiliary): Rename from
7693 tui_win_is_auxillary.
7694 * tui/tui-data.c (tui_win_is_auxiliary): Rename from
7695 tui_win_is_auxillary.
7696
76972019-06-25 Tom Tromey <tom@tromey.com>
7698
7699 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Update.
7700 * tui/tui-windata.c (tui_data_window::first_data_item_displayed)
7701 (tui_delete_data_content_windows, tui_display_all_data)
7702 (tui_data_window::do_scroll_vertical, tui_display_data_from):
7703 Update.
7704 * tui/tui-win.c (tui_data_window::set_new_height): Simplify.
7705 * tui/tui-regs.c (tui_last_regs_line_no)
7706 (tui_line_from_reg_element_no, tui_first_reg_element_no_inline)
7707 (tui_show_registers): Update.
7708 (tui_show_register_group): Return void. Update.
7709 (tui_display_registers_from, tui_display_reg_element_at_line)
7710 (tui_display_registers_from_line, tui_check_register_values):
7711 Update.
7712 * tui/tui-data.h (union tui_which_element) <data_window>: Remove
7713 member.
7714 (struct tui_data_window) <regs_content>: Now a std::vector.
7715 <regs_content_count>: Remove.
7716 (tui_add_content_elements, tui_free_data_content): Don't declare.
7717 * tui/tui-data.c (tui_data_window::clear_detail): Update.
7718 (init_content_element): Remove DATA_WIN case. Add assert.
7719 (tui_add_content_elements): Remove.
7720 (tui_data_window): Update.
7721 (tui_free_data_content): Remove.
7722 (free_content_elements): Remove DATA_WIN case.
7723
77242019-06-25 Tom Tromey <tom@tromey.com>
7725
7726 * tui/tui-data.c (tui_data_item_window): Update.
7727 * tui/tui-windata.h (tui_check_data_values): Don't declare.
7728 * tui/tui-windata.c (tui_display_all_data)
7729 (tui_display_data_from_line): Update.
7730 (tui_check_data_values): Remove.
7731 * tui/tui-regs.c (tui_show_register_group)
7732 (tui_display_reg_element_at_line): Update.
7733 * tui/tui-hooks.c (tui_register_changed)
7734 (tui_refresh_frame_and_register_information): Call
7735 tui_check_register_values.
7736 * tui/tui-data.h (struct tui_data_window) <data_content,
7737 data_content_count, data_type>: Remove.
7738 (enum tui_data_type): Remove.
7739
7740 * tui/tui-data.c (tui_data_window::clear_detail)
7741 (~tui_data_window): Update.
7742
77432019-06-25 Tom Tromey <tom@tromey.com>
7744
7745 * tui/tui-windata.h (tui_first_data_item_displayed): Don't
7746 declare.
7747 * tui/tui-windata.c (tui_data_window::first_data_item_displayed):
7748 Rename from tui_first_data_item_displayed. Update.
7749 (tui_data_window::refresh_all)
7750 (tui_data_window::do_scroll_vertical): Update.
7751 * tui/tui-data.h (struct tui_data_window)
7752 <first_data_item_displayed>: Declare new method.
7753
77542019-06-25 Tom Tromey <tom@tromey.com>
7755
7756 * tui/tui-data.h (tui_init_generic_part): Don't declare.
7757 * tui/tui-data.c (tui_init_generic_part): Remove, moving
7758 contents...
7759 (tui_initialize_static_data): ...here.
7760
77612019-06-25 Tom Tromey <tom@tromey.com>
7762
7763 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
7764 (tui_display_registers_from, tui_check_register_values): Update.
7765 (tui_display_register): Remove win_info parameter; update.
7766 (tui_get_register): Change type of parameters.
7767 * tui/tui-data.h (struct tui_data_element): Remove.
7768 (union tui_which_element) <data>: Remove.
7769 <data_window>: Change type.
7770 (struct tui_data_item_window): New.
7771 * tui/tui-data.c (init_content_element): Remove DATA_ITEM_WIN
7772 case. Add assert.
7773 (~tui_data_item_window): New destructor.
7774 (free_content_elements): Remove DATA_ITEM_WIN case.
7775
77762019-06-25 Tom Tromey <tom@tromey.com>
7777
7778 * tui/tui.h (enum tui_win_type) <MAX_WINDOWS, UNDEFINED_WIN>:
7779 Remove.
7780
77812019-06-25 Tom Tromey <tom@tromey.com>
7782
7783 * tui/tui-data.h (struct tui_command_element): Remove.
7784 (union tui_which_element) <command>: Remove.
7785 * tui/tui-data.c (init_content_element): Remove CMD_WIN case. Add
7786 assert.
7787 (free_content_elements): Remove CMD_WIN case.
7788
77892019-06-25 Tom Tromey <tom@tromey.com>
7790
7791 * tui/tui-layout.c (tui_set_layout): Update.
7792 * tui/tui-data.h (struct tui_layout_def) <split>: Remove.
7793 * tui/tui-data.c (layout_def): Update.
7794
77952019-06-25 Tom Tromey <tom@tromey.com>
7796
7797 * tui/tui-wingeneral.c (tui_refresh_all): Update.
7798 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
7799 (tui_source_window_base::set_new_height): Update.
7800 * tui/tui-stack.c (tui_make_status_line): Change parameter type.
7801 Update.
7802 (tui_set_locator_fullname, tui_set_locator_info)
7803 (tui_show_frame_info): Update.
7804 * tui/tui-source.c (tui_set_source_content)
7805 (tui_source_is_displayed): Update.
7806 * tui/tui-layout.c (show_source_disasm_command, show_data)
7807 (show_source_or_disasm_and_command): Update.
7808 * tui/tui-disasm.c (tui_set_disassem_content)
7809 (tui_get_begin_asm_address): Update.
7810 * tui/tui-data.h (struct tui_locator_element): Remove.
7811 (union tui_which_element) <locator>: Remove.
7812 (struct tui_locator_window): New.
7813 (tui_locator_win_info_ptr): Change return type.
7814 * tui/tui-data.c (_locator): Change type.
7815 (tui_locator_win_info_ptr): Change return type.
7816 (init_content_element): Remove LOCATOR_WIN case. Add assert.
7817 (tui_alloc_content): Add assert.
7818
78192019-06-25 Tom Tromey <tom@tromey.com>
7820
7821 * tui/tui-winsource.c
7822 (tui_exec_info_window::maybe_allocate_content): New method.
7823 (tui_set_exec_info_content, tui_show_exec_info_content): Update.
7824 * tui/tui-layout.c (init_and_make_win): Add EXEC_INFO_WIN case.
7825 (make_source_or_disasm_window): Add cast.
7826 * tui/tui-data.h (union tui_which_element) <simple_string>:
7827 Remove.
7828 (struct tui_source_info): New.
7829 (struct tui_source_window_base) <execution_info>: Change type.
7830 * tui/tui-data.c (init_content_element): Remove EXEC_INFO_WIN
7831 case, and add assert.
7832 (tui_alloc_content): Add assert.
7833
78342019-06-25 Tom Tromey <tom@tromey.com>
7835
7836 * tui/tui-data.h (tui_alloc_win_info): Don't declare.
7837 * tui/tui-layout.c (init_and_make_win): Use "new" directly.
7838 * tui/tui-data.c (tui_alloc_win_info): Remove.
7839
78402019-06-25 Tom Tromey <tom@tromey.com>
7841
7842 * tui/tui-win.c (tui_set_win_focus_to): Don't check window type.
7843 * tui/tui-wingeneral.c (tui_unhighlight_win): Check
7844 can_highlight.
7845
78462019-06-25 Tom Tromey <tom@tromey.com>
7847
7848 * tui/tui-win.c (tui_source_window_base::update_tab_width): Call
7849 make_visible_with_new_height method.
7850 (tui_win_info::make_visible_with_new_height): New method.
7851 (tui_source_window_base::do_make_visible_with_new_height)
7852 (tui_data_window::do_make_visible_with_new_height)
7853 (tui_cmd_window::do_make_visible_with_new_height): New methods.
7854 (make_visible_with_new_height): Remove.
7855 (tui_resize_all, tui_adjust_win_heights): Use
7856 make_visible_with_new_height method.
7857 * tui/tui-data.h (struct tui_win_info)
7858 <do_make_visible_with_new_height, make_visible_with_new_height>:
7859 New methods.
7860 (struct tui_source_window_base, struct tui_data_window)
7861 (struct tui_cmd_window) <do_make_visible_with_new_height>: New
7862 methods.
7863
78642019-06-25 Tom Tromey <tom@tromey.com>
7865
7866 * tui/tui-win.c (tui_source_window_base::update_tab_width): New
7867 method.
7868 (update_tab_width): Call update_tab_width method.
7869 * tui/tui-data.h (struct tui_win_info)
7870 (struct tui_source_window_base) <update_tab_width>: New methods.
7871
78722019-06-25 Tom Tromey <tom@tromey.com>
7873
7874 * tui/tui-wingeneral.h (tui_make_window): Change type of "box_it"
7875 parameter.
7876 * tui/tui-wingeneral.c (tui_make_window): Change type of "box_it"
7877 parameter.
7878 (tui_gen_win_info::make_visible): Update.
7879 * tui/tui-layout.c (init_and_make_win): Change type of "box_it"
7880 parameter.
7881 * tui/tui-data.h (enum tui_box): New enum.
7882 (BOX_WINDOW, DONT_BOX_WINDOW): Remove defines.
7883
78842019-06-25 Tom Tromey <tom@tromey.com>
7885
7886 * tui/tui-layout.c (make_source_or_disasm_window): Always use
7887 init_and_make_win for EXEC_INFO_WIN.
7888 * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>: No
7889 longer inline.
7890 (struct tui_win_info) <~tui_win_info>: Inline.
7891 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
7892 Don't declare.
7893 * tui/tui-data.c (source_win, disasm_win): Remove globals.
7894 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
7895 Remove.
7896 (tui_initialize_static_data): Update.
7897 (~tui_gen_win_info): Handle more cleanup here.
7898 (~tui_source_window_base): Delete "execution_info".
7899 (~tui_win_info): Move code to ~tui_gen_win_info; remove.
7900
79012019-06-25 Tom Tromey <tom@tromey.com>
7902
7903 * tui/tui-layout.c (make_command_window): Don't set
7904 can_highlight.
7905 (show_source_disasm_command): Call the reset method.
7906 (show_data): Don't set can_highlight. Call the reset method.
7907 (tui_gen_win_info::reset): Rename from init_gen_win_info
7908 (init_and_make_win): Simplify. Return tui_gen_win_info.
7909 (show_source_or_disasm_and_command): Call the reset method.
7910 * tui/tui-data.h (struct tui_gen_win_info) <reset>: New method.
7911 (struct tui_cmd_window): Set can_highlight.
7912
79132019-06-25 Tom Tromey <tom@tromey.com>
7914
7915 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Rename
7916 from make_visible.
7917 (tui_make_visible, tui_make_invisible): Rewrite.
7918 (tui_win_info::make_visible): Remove.
7919 (tui_source_window_base::make_visible): Update.
7920 * tui/tui-data.h (struct tui_gen_win_info) <make_visible>: New
7921 method. Moved from...
7922 (struct tui_win_info) <make_visible>: ...here.
7923
79242019-06-25 Tom Tromey <tom@tromey.com>
7925
7926 * tui/tui-winsource.c
7927 (tui_source_window_base::do_scroll_horizontal): Remove direction
7928 parameter.
7929 * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Remove
7930 direction parameter.
7931 * tui/tui-win.c (tui_win_info::forward_scroll)
7932 (tui_win_info::backward_scroll, tui_win_info::left_scroll)
7933 (tui_win_info::right_scroll): Update.
7934 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Remove
7935 direction parameter.
7936 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Remove
7937 direction parameter.
7938 * tui/tui-data.h (enum tui_scroll_direction): Remove.
7939 (struct tui_win_info) <do_scroll_vertical, do_scroll_horizontal>:
7940 Remove direction parameter.
7941 (struct tui_source_window_base, struct tui_source_window)
7942 (struct tui_disasm_window, struct tui_data_window)
7943 (struct tui_cmd_window): Update.
7944
79452019-06-25 Tom Tromey <tom@tromey.com>
7946
7947 * tui/tui-winsource.h (tui_set_exec_info_content)
7948 (tui_show_exec_info_content, tui_erase_exec_info_content)
7949 (tui_clear_exec_info_content, tui_update_exec_info): Change
7950 argument to tui_source_window_base.
7951 * tui/tui-winsource.c (tui_set_exec_info_content)
7952 (tui_show_exec_info_content, tui_erase_exec_info_content)
7953 (tui_clear_exec_info_content, tui_update_exec_info): Change
7954 argument to tui_source_window_base.
7955
79562019-06-25 Tom Tromey <tom@tromey.com>
7957
7958 * tui/tui-winsource.h (tui_set_exec_info_content): Return void.
7959 * tui/tui-winsource.c (tui_set_exec_info_content): Return void.
7960
79612019-06-25 Tom Tromey <tom@tromey.com>
7962
7963 * tui/tui-winsource.c (tui_set_exec_info_content): Remove NULL
7964 check.
7965
79662019-06-25 Tom Tromey <tom@tromey.com>
7967
7968 * tui/tui-winsource.h (tui_alloc_source_buffer): Change return
7969 type to void.
7970 * tui/tui-winsource.c (tui_alloc_source_buffer): Change return
7971 type to void.
7972 * tui/tui-source.c (tui_set_source_content): Update.
7973 * tui/tui-disasm.c (tui_set_disassem_content): Update.
7974
79752019-06-25 Tom Tromey <tom@tromey.com>
7976
7977 * tui/tui-win.c (window_name_completer, tui_set_focus)
7978 (tui_all_windows_info): Use name method.
7979 * tui/tui-data.h (struct tui_gen_win_info)
7980 (struct tui_source_window, struct tui_disasm_window)
7981 (struct tui_data_window, struct tui_cmd_window) <name>: New
7982 method.
7983 (tui_win_name): Don't declare.
7984 * tui/tui-data.c (tui_partial_win_by_name): Use name method.
7985 (tui_win_name): Remove.
7986
79872019-06-25 Tom Tromey <tom@tromey.com>
7988
7989 * tui/tui-winsource.h (tui_update_source_window)
7990 (tui_update_source_window_as_is): Change parameter type.
7991 * tui/tui-winsource.c (tui_update_source_window): Change win_info
7992 to be a tui_source_window_base.
7993 (tui_update_source_window_as_is): Likewise.
7994 * tui/tui-win.c (make_visible_with_new_height): Update.
7995
79962019-06-25 Tom Tromey <tom@tromey.com>
7997
7998 * tui/tui-winsource.c (tui_erase_source_content)
7999 (tui_show_source_content, tui_show_exec_info_content)
8000 (tui_erase_exec_info_content): Use refresh_window method.
8001 * tui/tui-wingeneral.h (tui_refresh_win): Don't declare.
8002 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Rename
8003 from tui_refresh_win.
8004 (tui_data_window::refresh_window): New method.
8005 (tui_win_info::refresh, tui_source_window_base::refresh)
8006 (tui_refresh_all): Use refresh_window method.
8007 * tui/tui-stack.c (tui_show_locator_content): Call refresh_window
8008 method.
8009 * tui/tui-regs.c (tui_display_register): Call refresh_window
8010 method.
8011 * tui/tui-layout.c (show_source_disasm_command)
8012 (show_source_or_disasm_and_command): Call refresh_window method.
8013 * tui/tui-data.h (struct tui_gen_win_info)
8014 (struct tui_data_window, struct tui_cmd_window) <refresh_window>:
8015 New method.
8016
80172019-06-25 Tom Tromey <tom@tromey.com>
8018
8019 * tui/tui.c (tui_rl_other_window, tui_enable)
8020 (tui_is_window_visible, tui_get_command_dimension): Update.
8021 * tui/tui-winsource.c (tui_update_source_window_as_is)
8022 (tui_clear_source_content, tui_erase_source_content)
8023 (tui_show_source_line, tui_source_window_base::refill)
8024 (tui_source_window_base::do_scroll_horizontal)
8025 (tui_source_window_base::set_is_exec_point_at)
8026 (tui_update_breakpoint_info, tui_set_exec_info_content)
8027 (tui_alloc_source_buffer, tui_line_is_displayed)
8028 (tui_addr_is_displayed): Update.
8029 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win)
8030 (tui_check_and_display_highlight_if_needed)
8031 (tui_win_info::make_visible, tui_win_info::refresh)
8032 (tui_refresh_all): Update.
8033 * tui/tui-windata.c (tui_first_data_item_displayed)
8034 (tui_delete_data_content_windows, tui_erase_data_content)
8035 (tui_display_all_data, tui_data_window::refresh_all)
8036 (tui_check_data_values): Update.
8037 * tui/tui-win.c (window_name_completer, tui_update_gdb_sizes)
8038 (tui_set_win_focus_to, tui_win_info::forward_scroll)
8039 (tui_win_info::backward_scroll, tui_refresh_all_win)
8040 (tui_resize_all, tui_set_focus, tui_all_windows_info)
8041 (update_tab_width, tui_set_win_height, tui_adjust_win_heights)
8042 (tui_source_window_base::set_new_height)
8043 (tui_data_window::set_new_height)
8044 (make_invisible_and_set_new_height)
8045 (make_visible_with_new_height, new_height_ok)
8046 (parse_scrolling_args): Update.
8047 * tui/tui-stack.c (tui_show_frame_info): Update.
8048 * tui/tui-source.c (tui_set_source_content)
8049 (tui_set_source_content_nil, tui_source_is_displayed)
8050 (tui_source_window::do_scroll_vertical): Update.
8051 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
8052 (tui_display_registers_from, tui_display_reg_element_at_line)
8053 (tui_check_register_values, tui_reg_command): Update.
8054 * tui/tui-layout.c (tui_default_win_height)
8055 (show_source_disasm_command, show_data, init_and_make_win)
8056 (show_source_or_disasm_and_command): Update.
8057 * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts)
8058 (tui_redisplay_readline, tui_mld_flush)
8059 (tui_mld_erase_entire_line, tui_mld_getc, tui_cont_sig)
8060 (tui_getc): Update.
8061 * tui/tui-disasm.c (tui_set_disassem_content)
8062 (tui_disasm_window::do_scroll_vertical): Update.
8063 * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>:
8064 Now virtual.
8065 (struct tui_win_info): Derive from tui_gen_win_info.
8066 <~tui_win_info>: Mark as override.
8067 <generic>: Remove member.
8068 * tui/tui-data.c (tui_cmd_window::clear_detail, tui_next_win)
8069 (tui_prev_win, tui_partial_win_by_name, tui_win_info)
8070 (~tui_data_window, ~tui_win_info)
8071 (tui_free_all_source_wins_content): Update.
8072 * tui/tui-command.c (tui_refresh_cmd_win): Update.
8073
80742019-06-25 Tom Tromey <tom@tromey.com>
8075
8076 * tui/tui-layout.c (init_and_make_win): Use new.
8077 * tui/tui-data.h (struct tui_gen_win_info): Add constructor,
8078 destructor, initializers.
8079 (tui_alloc_generic_win_info): Don't declare.
8080 * tui/tui-data.c (_locator): Add argument to constructor.
8081 (source_win, disasm_win): New globals.
8082 (exec_info): Remove.
8083 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
8084 Update.
8085 (tui_alloc_generic_win_info): Remove.
8086 (init_content_element): Use new.
8087 (tui_win_info::tui_win_info): Update.
8088 (free_content_elements) <case DATA_WIN>: Use delete.
8089
80902019-06-25 Tom Tromey <tom@tromey.com>
8091
8092 * tui/tui-wingeneral.c (tui_refresh_win): Update.
8093 * tui/tui-windata.c (tui_first_data_item_displayed)
8094 (tui_delete_data_content_windows): Update.
8095 * tui/tui-win.c (tui_data_window::set_new_height): Update.
8096 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
8097 (tui_display_registers_from, tui_check_register_values): Update.
8098 * tui/tui-data.h (union tui_which_element) <data_window>: Now a
8099 pointer.
8100 * tui/tui-data.c (init_content_element): Update. Allocate the new
8101 window.
8102 (tui_free_data_content): Update.
8103 (free_content_elements) <case DATA_WIN>: Free the window.
8104
81052019-06-25 Tom Tromey <tom@tromey.com>
8106
8107 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win):
8108 Update.
8109 * tui/tui-layout.c (make_command_window)
8110 (show_source_disasm_command, show_data, init_and_make_win)
8111 (show_source_or_disasm_and_command): Update.
8112 * tui/tui-data.h (struct tui_win_info) <set_highlight>: New
8113 method.
8114 <can_highight, is_highlighted>: Now bool.
8115 (tui_set_win_highlight): Don't declare.
8116 * tui/tui-data.c (tui_set_win_highlight): Remove.
8117
81182019-06-25 Tom Tromey <tom@tromey.com>
8119
8120 * tui/tui-wingeneral.c (make_visible): Remove check of window
8121 type.
8122
81232019-06-25 Tom Tromey <tom@tromey.com>
8124
8125 * tui/tui-win.c (tui_win_info::max_height)
8126 (tui_cmd_window::max_height): New methods.
8127 (new_height_ok): Call max_height.
8128 * tui/tui-data.h (struct tui_win_info, struct tui_cmd_window)
8129 <max_height>: New method.
8130
81312019-06-25 Tom Tromey <tom@tromey.com>
8132
8133 * tui/tui-win.c (tui_source_window_base::set_new_height)
8134 (tui_data_window::set_new_height): New methods.
8135 (make_invisible_and_set_new_height): Call set_new_height method.
8136 * tui/tui-data.h (struct tui_win_info)
8137 (struct tui_source_window_base, struct tui_data_window)
8138 <set_new_height>: New method.
8139
81402019-06-25 Tom Tromey <tom@tromey.com>
8141
8142 * tui/tui.c (tui_rl_other_window): Call the refresh_all method.
8143 * tui/tui-windata.c (tui_data_window::refresh_all): Rename from
8144 tui_refresh_data_win.
8145 * tui/tui-win.c (tui_source_window_base::refresh_all): New
8146 method.
8147 (tui_refresh_all_win): Call the refresh_all method.
8148 (tui_set_focus): Likewise.
8149 * tui/tui-data.h (struct tui_win_info) <refresh_all>: New method.
8150 (struct tui_source_window_base, struct tui_data_window) <refresh>:
8151 Likewise.
8152
81532019-06-25 Tom Tromey <tom@tromey.com>
8154
8155 * tui/tui-winsource.h (tui_refill_source_window)
8156 (tui_set_is_exec_point_at): Don't declare.
8157 * tui/tui-winsource.c (tui_update_source_windows_with_addr)
8158 (tui_source_window_base::refill): Rename from
8159 tui_refill_source_window.
8160 (tui_source_window_base::do_scroll_horizontal): Update.
8161 (tui_source_window_base::set_is_exec_point_at): Rename from
8162 tui_set_is_exec_point_at.
8163 (tui_update_all_breakpoint_info): Update.
8164 * tui/tui-stack.c (tui_show_frame_info): Update.
8165 * tui/tui-layout.c (show_data): Add cast.
8166 * tui/tui-hooks.c (tui_redisplay_source): Call refill method.
8167 * tui/tui-data.h (struct tui_source_window_base) <refill,
8168 set_is_exec_point_at>: New methods.
8169 (tui_source_windows, tui_add_to_source_windows): Update types.
8170 (tui_add_to_source_windows): Remove redundant declaration.
8171 * tui/tui-data.c (source_windows): Store tui_source_window_base.
8172 (tui_source_windows): Change return type.
8173 (tui_clear_source_windows_detail): Update.
8174 (tui_add_to_source_windows): Change type of parameter.
8175 (tui_free_all_source_wins_content): Update.
8176
81772019-06-25 Tom Tromey <tom@tromey.com>
8178
8179 * tui/tui-wingeneral.c (tui_win_info::refresh)
8180 (tui_source_window_base::refresh): New methods.
8181 (tui_refresh_all): Call the refresh method.
8182 * tui/tui-data.h (struct tui_win_info)
8183 (struct tui_source_window_base) <refresh>: New method.
8184
81852019-06-25 Tom Tromey <tom@tromey.com>
8186
8187 * tui/tui.h (tui_is_window_visible): Return bool.
8188 * tui/tui.c (tui_is_window_visible): Return bool.
8189 * tui/tui-wingeneral.c (tui_make_window, make_visible)
8190 (tui_make_visible, tui_make_invisible)
8191 (tui_win_info::make_visible)
8192 (tui_source_window_base::make_visible, make_all_visible)
8193 (tui_make_all_visible, tui_make_all_invisible): Update.
8194 * tui/tui-windata.c (tui_delete_data_content_windows): Update.
8195 * tui/tui-data.h (struct tui_gen_win_info) <is_visible>: Now
8196 bool.
8197 (struct tui_win_info, struct tui_source_window_base)
8198 (struct tui_cmd_window) <make_visible>: Change parameter to bool.
8199 * tui/tui-data.c (tui_init_generic_part): Update.
8200
82012019-06-25 Tom Tromey <tom@tromey.com>
8202
8203 * tui/tui-wingeneral.c (tui_win_info::make_visible)
8204 (tui_source_window_base::make_visible): New methods.
8205 (make_all_visible): Make method call.
8206 * tui/tui-data.h (struct tui_win_info) <make_visible>: New method.
8207 (struct tui_source_window_base, struct tui_cmd_window): Override
8208 make_visible.
8209 (tui_win_is_source_type): Don't declare.
8210 * tui/tui-data.c (tui_win_is_source_type): Remove.
8211
82122019-06-25 Tom Tromey <tom@tromey.com>
8213
8214 * tui/tui-layout.c (show_source_or_disasm_and_command): Remove
8215 NULL check.
8216
82172019-06-25 Tom Tromey <tom@tromey.com>
8218
8219 * tui/tui-data.h (struct tui_data_window, struct tui_cmd_window):
8220 Inline constructor. Add initializers for members.
8221 * tui/tui-data.c (tui_data_window, tui_cmd_window): Remove
8222 constructors; now inline in class.
8223
82242019-06-25 Tom Tromey <tom@tromey.com>
8225
8226 * tui/tui-regs.c (tui_show_registers): Update.
8227 * tui/tui-data.h (struct tui_data_window) <display_regs>: Now
8228 bool.
8229 * tui/tui-data.c (tui_data_window::clear_detail)
8230 (tui_data_window): Update.
8231
82322019-06-25 Tom Tromey <tom@tromey.com>
8233
8234 * tui/tui-windata.c (tui_display_all_data)
8235 (tui_display_data_from_line, tui_display_data_from)
8236 (tui_check_data_values, tui_data_window::do_scroll_vertical):
8237 Update.
8238 * tui/tui-regs.c (tui_last_regs_line_no)
8239 (tui_line_from_reg_element_no, tui_first_reg_element_no_inline)
8240 (tui_show_registers, tui_show_register_group)
8241 (tui_display_registers_from, tui_display_reg_element_at_line)
8242 (tui_display_registers_from_line, tui_check_register_values)
8243 (tui_reg_next, tui_reg_prev): Update.
8244 * tui/tui-layout.c (tui_set_layout, show_data): Update.
8245 * tui/tui-data.h (struct tui_data_info): Remove. Move contents to
8246 tui_data_window.
8247 (struct tui_win_info) <detail>: Remove. Add new fields from
8248 tui_data_info.
8249 (TUI_DATA_WIN): Add cast.
8250 * tui/tui-data.c (tui_data_window::clear_detail, tui_data_window)
8251 (~tui_data_window): Simplify.
8252
82532019-06-25 Tom Tromey <tom@tromey.com>
8254
8255 * tui/tui-layout.c (show_source_disasm_command)
8256 (show_source_or_disasm_and_command): Update.
8257 * tui/tui-io.c (update_cmdwin_start_line)
8258 (tui_redisplay_readline): Update.
8259 * tui/tui-data.h (struct tui_command_info): Remove.
8260 (struct tui_win_info) <detail>: Remove command_info member.
8261 (struct tui_data_window) <start_line>: New member, from
8262 tui_command_info.
8263 (TUI_CMD_WIN): Add casts.
8264
82652019-06-25 Tom Tromey <tom@tromey.com>
8266
8267 * tui/tui-winsource.c (tui_update_source_window)
8268 (tui_refill_source_window)
8269 (tui_source_window_base::do_scroll_horizontal)
8270 (tui_update_breakpoint_info, tui_set_exec_info_content)
8271 (tui_show_exec_info_content, tui_erase_exec_info_content)
8272 (tui_clear_exec_info_content): Update.
8273 * tui/tui-wingeneral.c (make_all_visible, tui_refresh_all):
8274 Update.
8275 * tui/tui-win.c (make_invisible_and_set_new_height)
8276 (make_visible_with_new_height): Update.
8277 * tui/tui-source.c (tui_set_source_content)
8278 (tui_show_symtab_source): Update.
8279 * tui/tui-layout.c (extract_display_start_addr)
8280 (show_source_disasm_command, show_data)
8281 (make_source_or_disasm_window)
8282 (show_source_or_disasm_and_command): Update.
8283 * tui/tui-disasm.c (tui_set_disassem_content): Simplify.
8284 (tui_disasm_window::do_scroll_vertical): Remove shadowing
8285 "gdbarch".
8286 * tui/tui-data.h (struct tui_source_info): Remove. Move contents
8287 to tui_source_window_base.
8288 (struct tui_win_info) <detail>: Remove source_info member.
8289 (struct tui_source_window_base) <has_locator>: Inline.
8290 Move contents from tui_source_info; rename has_locator member to
8291 m_has_locator.
8292 (TUI_SRC_WIN, TUI_DISASM_WIN): Add casts.
8293 * tui/tui-data.c (tui_source_window_base::has_locator): Move to
8294 header file.
8295 (tui_source_window_base::clear_detail, ~tui_source_window_base):
8296 Simplify.
8297 (tui_free_all_source_wins_content): Cast to
8298 tui_source_window_base.
8299
83002019-06-25 Tom Tromey <tom@tromey.com>
8301
8302 * tui/tui-win.c (make_invisible_and_set_new_height)
8303 (make_visible_with_new_height): Call has_locator method.
8304 * tui/tui-layout.c (show_source_disasm_command, show_data)
8305 (show_source_or_disasm_and_command): Update for bool change.
8306 * tui/tui-data.h (struct tui_source_info) <has_locator>: Now bool.
8307 (tui_win_info) <has_locator>: New method.
8308 (struct tui_source_window_base) <has_locator>: New method.
8309 (tui_win_has_locator): Don't declare.
8310 * tui/tui-data.c (tui_source_window_base::has_locator): Rename
8311 from tui_win_has_locator.
8312 (tui_source_window_base): Use false, not FALSE.
8313
83142019-06-25 Tom Tromey <tom@tromey.com>
8315
8316 * tui/tui-data.h (tui_clear_win_detail): Don't declare.
8317 * tui/tui-data.c (tui_clear_source_windows_detail): Call the
8318 clear_detail method directly.
8319 (tui_clear_win_detail): Remove.
8320
83212019-06-25 Tom Tromey <tom@tromey.com>
8322
8323 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Use
8324 "this", not TUI_DISASM_WIN.
8325
83262019-06-25 Tom Tromey <tom@tromey.com>
8327
8328 * tui/tui-winsource.h (tui_horizontal_source_scroll): Don't
8329 declare.
8330 * tui/tui-winsource.c
8331 (tui_source_window_base::do_scroll_horizontal): Rename from
8332 tui_horizontal_source_scroll.
8333 * tui/tui-windata.h (tui_vertical_data_scroll): Don't declare.
8334 * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Rename
8335 from tui_vertical_data_scroll.
8336 * tui/tui-win.h (tui_scroll): Don't declare.
8337 * tui/tui-win.c (tui_win_info::forward_scroll)
8338 (tui_win_info::backward_scroll, tui_win_info::left_scroll)
8339 (tui_win_info::right_scroll): Rename and update.
8340 (tui_scroll_forward_command, tui_scroll_backward_command)
8341 (tui_scroll_left_command, tui_scroll_right_command): Update.
8342 (tui_scroll): Remove.
8343 * tui/tui-source.h: Don't declare tui_vertical_source_scroll.
8344 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Rename
8345 from tui_vertical_source_scroll.
8346 * tui/tui-disasm.h (tui_vertical_disassem_scroll): Don't declare.
8347 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Rename
8348 from tui_vertical_disassem_scroll.
8349 * tui/tui-data.h (struct tui_win_info) <do_scroll_vertical,
8350 do_scroll_horizontal>: New methods.
8351 <forward_scroll, backward_scroll, left_scroll, right_scroll>:
8352 Likewise.
8353 (struct tui_source_window_base): Add do_scroll_horizontal.
8354 (struct tui_source_window, struct tui_disasm_window): Add
8355 do_scroll_vertical.
8356 (struct tui_data_window, struct tui_cmd_window): Add
8357 do_scroll_horizontal and do_scroll_vertical.
8358 * tui/tui-command.c (tui_dispatch_ctrl_char): Use method calls.
8359
83602019-06-25 Tom Tromey <tom@tromey.com>
8361
8362 * tui/tui-data.h (struct tui_source_window_base): New struct.
8363 (struct tui_source_window): Derive from tui_source_window_base.
8364 (struct tui_disasm_window): New struct.
8365 * tui/tui-data.c (tui_source_window_base::clear_detail): Rename
8366 from tui_source_window::clear_detail.
8367 (tui_source_window_base): Rename from tui_source_window.
8368 (~tui_source_window_base): Rename from ~tui_source_window.
8369 (tui_alloc_win_info): Create a tui_disasm_window.
8370
83712019-06-25 Tom Tromey <tom@tromey.com>
8372
8373 * tui/tui-data.h (struct tui_source_window)
8374 (struct tui_data_window): Declare destructors.
8375 * tui/tui-data.c (~tui_source_window, ~tui_data_window): New
8376 destructors.
8377 (tui_win_info): Simplify.
8378
83792019-06-25 Tom Tromey <tom@tromey.com>
8380
8381 * tui/tui-winsource.c (tui_display_main)
8382 (tui_update_source_windows_with_addr)
8383 (tui_update_all_breakpoint_info): Update.
8384 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
8385 (new_height_ok, parse_scrolling_args): Update.
8386 * tui/tui-stack.c (tui_show_frame_info): Update.
8387 * tui/tui-data.h (struct tui_list): Remove.
8388 (tui_source_windows): Return a reference to a std::vector.
8389 * tui/tui-data.c (source_windows): Now a std::vector.
8390 (tui_source_windows): Change return type.
8391 (tui_clear_source_windows): Rewrite.
8392 (tui_clear_source_windows_detail, tui_add_to_source_windows)
8393 (tui_free_all_source_wins_content): Rewrite.
8394
83952019-06-25 Tom Tromey <tom@tromey.com>
8396
8397 * tui/tui-data.h (struct tui_win_info, struct tui_source_window)
8398 (struct tui_data_window, struct tui_cmd_window): Declare
8399 clear_detail method.
8400 * tui/tui-data.c (tui_source_window::clear_detail)
8401 (tui_cmd_window::clear_detail, tui_data_window::clear_detail): New
8402 methods.
8403 (tui_clear_win_detail): Simplify.
8404
84052019-06-25 Tom Tromey <tom@tromey.com>
8406
8407 * tui/tui-layout.c (make_source_window, make_disasm_window)
8408 (make_source_or_disasm_window): Remove win_info_ptr parameter.
8409 Return the new window.
8410 (show_source_disasm_command, show_data)
8411 (show_source_or_disasm_and_command): Update.
8412
84132019-06-25 Tom Tromey <tom@tromey.com>
8414
8415 * tui/tui-layout.c (make_command_window): Remove win_info_ptr
8416 parameter. Return the new window.
8417 (show_source_disasm_command): Update and remove NULL check.
8418 (show_source_or_disasm_and_command): Update.
8419
84202019-06-25 Tom Tromey <tom@tromey.com>
8421
8422 * tui/tui-layout.c (init_and_make_win): Remove NULL check.
8423
84242019-06-25 Tom Tromey <tom@tromey.com>
8425
8426 * tui/tui-data.h (struct tui_win_info): Make constructor
8427 protected. Make destructor virtual. Add initializers.
8428 (tui_source_window, tui_data_window, tui_cmd_window): New
8429 classes.
8430 * tui/tui-data.c (tui_win_info): Rename from init_win_info. Now a
8431 constructor. Add "type" parameter.
8432 (tui_source_window, tui_data_window, tui_cmd_window): New
8433 constructors.
8434 (tui_alloc_win_info): Instantiate the appropriate subclass.
8435
84362019-06-25 Tom Tromey <tom@tromey.com>
8437
8438 * tui/tui-win.c (tui_resize_all): Use delete.
8439 * tui/tui-data.h (struct tui_win_info) <~tui_win_info>: Declare
8440 destructor.
8441 (tui_free_window): Don't declare.
8442 * tui/tui-data.c (~tui_win_info): Rename from tui_free_window.
8443 Update.
8444
84452019-06-25 Tom Tromey <tom@tromey.com>
8446
8447 * tui/tui-data.h (struct tui_win_info): Add constructor.
8448 * tui/tui-data.c (tui_alloc_win_info): Use new.
8449 (tui_free_window): Use delete.
8450
84512019-06-22 Tom Tromey <tom@tromey.com>
8452
8453 * tui/tui-windata.h (tui_first_data_element_no_in_line): Don't
8454 declare.
8455 * tui/tui-windata.c (tui_first_data_element_no_in_line): Remove.
8456
84572019-06-22 Tom Tromey <tom@tromey.com>
8458
8459 * tui/tui-data.h (tui_del_window, tui_del_data_windows): Don't
8460 declare.
8461 * tui/tui-data.c (tui_del_window, tui_del_data_windows): Remove.
8462
84632019-06-22 Tom de Vries <tdevries@suse.de>
8464
8465 * dwarf2read.c (create_addrmap_from_aranges)
8466 (read_debug_names_from_section): Print ptrdiff_t using '%s' and plongest
8467 instead of '%zu'.
8468
84692019-06-21 Simon Marchi <simon.marchi@efficios.com>
8470
8471 * dwarf2read.h (dwarf2_section_info_def): Remove.
8472 (DEF_VEC_O (dwarf2_section_info_def)): Remove.
8473 * dwarf2read.c (struct dwo_sections) <types>: Change type to
8474 std::vector<dwarf2_section_info>.
8475 (struct dwo_file) <~dwo_file>: Remove.
8476 (dwarf2_per_objfile::~dwarf2_per_objfile): Don't manually free
8477 types field.
8478 (dwarf2_per_objfile::locate_sections): Adjust to std::vector.
8479 (dwarf2_read_debug_names): Likewise.
8480 (create_debug_types_hash_table): Change parameter type to
8481 array_view, adjust code accordingly.
8482 (dwarf2_locate_dwo_sections): Adjust to std::vector.
8483 (partial_die_info::fixup): Likewise.
8484 (determine_prefix): Likewise.
8485 * dwarf-index-write.c (write_psymtabs_to_index): Adjust.
8486
84872019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
8488
8489 * dwarf2read.c (struct dwo_file) <dbfd>: Change type to
8490 gdb_bfd_ref_ptr.
8491 <~dwo_file>: Remove call to gdb_bfd_unref.
8492 (open_and_init_dwo_file): Move gdb_bfd_ref_ptr into dbfd field. Call
8493 gdb_bfd_ref_ptr::get.
8494
84952019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
8496
8497 * dwarf2read.h (struct dwarf2_per_objfile) <dwo_files>: Change
8498 type to htab_up.
8499 * dwarf2read.c (struct dwo_file): Initialize fields.
8500 <~dwo_file>: New.
8501 (free_dwo_file): Remove, move content to ~dwo_file.
8502 (struct dwo_file_deleter): Remove.
8503 (dwo_file_up>: Remove custom deleter.
8504 (free_dwo_files): Remove.
8505 (dwarf2_per_objfile::~dwarf2_per_objfile): Don't explicitly free
8506 dwo_files.
8507 (process_skeletonless_type_units): Call unique_ptr::get.
8508 (allocate_dwo_file_hash_table): Add deleter to created hash
8509 table. Change return type to htab_up.
8510 (lookup_dwo_file_slot): Don't memset dwo_file, call
8511 unique_ptr::get.
8512 (create_dwo_unit_in_dwp_v1): Allocate dwo_file with new.
8513 (create_dwo_unit_in_dwp_v2): Likewise.
8514 (open_and_init_dwo_file): Likewise.
8515 (free_dwo_file_from_slot): Remove.
8516
85172019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
8518
8519 * dwarf2read.h (struct dwarf2_section_info) <readin,
8520 is_virtual>: Change type to bool.
8521 * dwarf2read.c (dwarf2_read_section, create_dwp_v2_section): Use
8522 true instead of 1.
8523
85242019-06-19 Tom Tromey <tom@tromey.com>
8525
8526 * tui/tui-data.h (tui_init_content_element): Don't declare.
8527
85282019-06-19 Tom Tromey <tom@tromey.com>
8529
8530 * tui/tui-data.h (tui_init_win_info): Don't declare.
8531
85322019-06-19 Tom de Vries <tdevries@suse.de>
8533
8534 * dwarf2read.h (abstract_to_concrete): Change type to
8535 std::unordered_map<sect_offset, std::vector<sect_offset>,
8536 gdb::hash_enum<sect_offset>>.
8537
85382019-06-19 Tom Tromey <tromey@adacore.com>
8539
8540 * ada-lang.c (ada_evaluate_subexp) <case OP_ATR_FIRST>: Handle
8541 EVAL_AVOID_SIDE_EFFECTS specially.
8542
85432019-06-19 Tom Tromey <tromey@adacore.com>
8544
8545 * source-cache.c (highlighter): New global.
8546 (source_cache::get_source_lines): Create a highlighter on demand.
8547
85482019-06-18 Andrew Burgess <andrew.burgess@embecosm.com>
8549
8550 * defs.h (deprecated_interactive_hook): Delete declaration.
8551 * interps.c (clear_interpreter_hooks): Remove use of
8552 deprecated_interactive_hook.
8553 * top.c (deprecated_interactive_hook): Delete definition.
8554 * utils.c (maybe_quit): Remove use of deprecated_interactive_hook.
8555
85562019-06-18 Tom de Vries <tdevries@suse.de>
8557
8558 PR gdb/24515
8559 * dwarf2read.h (abstract_to_concrete): Change type from
8560 std::unordered_map<die_info_ptr, std::vector<die_info_ptr>> to
8561 std::unordered_map<sect_offset, std::vector<sect_offset>>.
8562 * dwarf2read.c (read_variable): Update.
8563 (dwarf2_fetch_die_loc_sect_off): Update.
8564
85652019-06-17 Tom de Vries <tdevries@suse.de>
8566
8567 PR gdb/24617
8568 * common/pathstuff.c (child_path): Make sure parent_len > 0 before
8569 accessing parent[parent_len - 1].
8570
85712019-06-17 Paul Pluzhnikov <ppluzhnikov@google.com>
8572
8573 PR gdb/24364
8574 * gdb/dtrace-probe.c (dtrace_static_probe_ops::get_probe): Don't
8575 call dtrace_process_dof with NULL dof.
8576
85772019-06-16 Tom de Vries <tdevries@suse.de>
8578
8579 PR gdb/24445
8580 * contrib/gdb-add-index.sh: Update to handle dwz-m-ed executable.
8581
85822019-06-16 Tom Tromey <tom@tromey.com>
8583
8584 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win)
8585 (make_all_visible): Use address of member.
8586
85872019-06-16 Tom Tromey <tom@tromey.com>
8588
8589 * tui/tui-data.c (tui_clear_win_detail, init_win_info)
8590 (tui_free_window, free_content, free_content_elements): Remove
8591 unnecessary cast.
8592 * tui/tui-windata.c (tui_display_all_data): Remove unnecessary
8593 cast.
8594 * tui/tui-regs.c (tui_show_register_group)
8595 (tui_display_registers_from, tui_display_reg_element_at_line):
8596 Remove unnecessary cast.
8597
85982019-06-16 Andrew Burgess <andrew.burgess@embecosm.com>
8599
8600 * linux-nat.c (normal_mask): Delete.
8601 (_initialize_linux_nat): Don't initialise normal_mask.
8602
86032019-06-16 Simon Marchi <simon.marchi@polymtl.ca>
8604
8605 PR gdb/24445
8606 * dwarf-index-write.h (write_psymtabs_to_index): Add
8607 dwz_basename parameter.
8608 * dwarf-index-write.c (write_gdbindex): Move file writing to
8609 write_gdbindex_1. Change return type void.
8610 (assert_file_size): Move up, remove filename parameter.
8611 (write_gdbindex_1): New function.
8612 (write_debug_names): Change return type to void, call
8613 assert_file_size.
8614 (struct index_wip_file): New struct.
8615 (write_psymtabs_to_index): Add dwz_basename parameter. Move
8616 file logic to index_wip_file. Write index for dwz file if
8617 needed.
8618 (save_gdb_index_command): Pass basename of dwz file, if present.
8619 * dwarf-index-cache.c (index_cache::store): Obtain and pass
8620 build-id of dwz file, if present.
8621 * dwarf2read.c (struct dwz_file): Move to dwarf2read.h.
8622 (dwarf2_get_dwz_file): Likewise.
8623 * dwarf2read.h (struct dwz_file): Move from dwarf2read.c.
8624 (dwarf2_get_dwz_file): Likewise.
8625
86262019-06-16 Tom Tromey <tom@tromey.com>
8627
8628 * coffread.c (process_coff_symbol): Use xstrdup.
8629 * value.c (create_internalvar): Use xstrdup.
8630
86312019-06-16 Tom Tromey <tom@tromey.com>
8632
8633 * valops.c (value_cast, value_slice): Remove unnecessary cast.
8634 * breakpoint.c (stopin_command, stopat_command)
8635 (until_break_command, decode_location_default): Remove unnecessary
8636 cast.
8637 * utils.c (subset_compare): Remove unnecessary cast.
8638 * ada-lang.c (ada_update_initial_language): Remove unnecessary
8639 cast.
8640 * linespec.c (decode_line_with_last_displayed): Remove unnecessary
8641 cast.
8642 * infcmd.c (path_command): Remove unnecessary cast.
8643 * coffread.c (decode_type): Remove unnecessary cast.
8644 * xcoffread.c (read_xcoff_symtab): Remove unnecessary cast.
8645 * mipsread.c (mipscoff_symfile_read): Remove unnecessary cast.
8646 * tui/tui-stack.c (tui_show_locator_content)
8647 (tui_show_frame_info): Remove unnecessary cast.
8648 * tui/tui-win.c (tui_scroll_forward_command)
8649 (tui_scroll_backward_command, tui_set_focus, tui_set_win_height)
8650 (parse_scrolling_args): Remove unnecessary cast.
8651 * tui/tui-data.c (init_win_info, tui_del_window)
8652 (tui_free_window, tui_del_data_windows, tui_free_data_content)
8653 (free_content_elements): Remove unnecessary cast.
8654 * tui/tui-windata.c (tui_first_data_item_displayed): Remove
8655 unnecessary cast.
8656 * tui/tui-source.c (tui_set_source_content)
8657 (tui_vertical_source_scroll): Remove unnecessary cast.
8658 * tui/tui-layout.c (tui_default_win_height): Remove unnecessary
8659 cast.
8660 * tui/tui-io.c (tui_initialize_io): Remove unnecessary cast.
8661 * tui/tui-regs.c (tui_display_registers_from)
8662 (tui_display_register): Remove unnecessary cast.
8663 * tui/tui-wingeneral.c (tui_refresh_win, tui_delete_win)
8664 (tui_unhighlight_win, tui_highlight_win, tui_make_window)
8665 (make_visible): Remove unnecessary cast.
8666 * tui/tui-winsource.c (tui_erase_source_content)
8667 (tui_update_breakpoint_info, tui_set_exec_info_content): Remove
8668 unnecessary cast.
8669 * ax-gdb.c (agent_command_1): Remove unnecessary cast.
8670 * cli/cli-setshow.c (cmd_show_list): Remove unnecessary cast.
8671 * stabsread.c (read_type, read_array_type, read_range_type):
8672 Remove unnecessary cast.
8673 * mdebugread.c (mdebug_build_psymtabs): Remove unnecessary cast.
8674 (parse_symbol, parse_type, upgrade_type, parse_external)
8675 (parse_partial_symbols, psymtab_to_symtab_1, cross_ref): Remove
8676 unnecessary cast.
8677 * gdb_bfd.c (gdb_bfd_map_section): Remove unnecessary cast.
8678
86792019-06-16 Tom Tromey <tom@tromey.com>
8680
8681 * tui/tui-data.c (tui_alloc_generic_win_info)
8682 (tui_alloc_win_info, tui_add_content_elements): Remove NULL
8683 checks.
8684
86852019-06-16 Bernhard Heckel <bernhard.heckel@intel.com>
8686 Andrew Burgess <andrew.burgess@embecosm.com>
8687
8688 * f-typeprint.c (f_print_type): Don't return early for not
8689 associated or not allocated types.
8690 (f_type_print_varspec_suffix): Add print_rank parameter and print
8691 ranks of array types in case they dangling.
8692 (f_type_print_base): Add print_rank parameter.
8693
86942019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
8695
8696 * NEWS: Mention new MI commands.
8697 * break-catch-throw.c (enum exception_event_kind): Move to
8698 breakpoint.h.
8699 (print_mention_exception_catchpoint): Output text as a single
8700 message.
8701 (catch_exception_command_1): Rename to...
8702 (catch_exception_event): ...this, make non-static, update header
8703 command, and change some parameter types.
8704 (catch_catch_command): Update for changes to
8705 catch_exception_command_1.
8706 (catch_throw_command): Likewise.
8707 (catch_rethrow_command): Likewise.
8708 * breakpoint.c (enum exception_event_kind): Delete.
8709 * breakpoint.h (enum exception_event_kind): Moved here from
8710 break-catch-throw.c.
8711 (catch_exception_event): Declare.
8712 * mi/mi-cmd-catch.c (mi_cmd_catch_exception_event): New function.
8713 (mi_cmd_catch_throw): New function.
8714 (mi_cmd_catch_rethrow): New function.
8715 (mi_cmd_catch_catch): New function.
8716 * mi/mi-cmds.c (mi_cmds): Add 'catch-throw', 'catch-rethrow', and
8717 'catch-catch' entries.
8718 * mi/mi-cmds.h (mi_cmd_catch_throw): Declare.
8719 (mi_cmd_catch_rethrow): Declare.
8720 (mi_cmd_catch_catch): Declare.
8721
87222019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
8723
8724 * annotate.c (annotate_source_line): Change return type to void,
8725 update implementation to match.
8726 * annotate.h (annotate_source_line): Change return type to void,
8727 update header comment.
8728 * stack.c (print_frame_info): Don't change what frame information
8729 is printed based on whether annotations are on or not.
8730
87312019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
8732
8733 * annotate.c: Add 'source.h' and 'objfiles.h' includes.
8734 (annotate_source): Make static.
8735 (annotate_source_line): Moved from source.c and renamed from
8736 identify_source_line. Update the return type.
8737 * annotate.h (annotate_source): Delete declaration.
8738 (annotate_source_line): Declaration moved from source.h, and
8739 renamed from identify_source_line. Return type updated.
8740 * source.c (identify_source_line): Moved to annotate.c and renamed
8741 to annotate_source_line.
8742 (info_line_command): Remove check of annotation_level.
8743 * source.h (identify_source_line): Move declaration to annotate.h
8744 and rename to annotate_source_line.
8745 * stack.c: Add 'annotate.h' include.
8746 (print_frame_info): Remove check of annotation_level before
8747 calling annotate_source_line.
8748
87492019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
8750
8751 * source-cache.c (source_cache::get_plain_source_lines): Use
8752 open_source_file_with_line_charpos instead of just
8753 open_source_file, remove call to find_source_lines.
8754 (source_cache::get_source_lines): Likewise.
8755 * source.c (find_source_lines): Make static.
8756 (get_filename_and_charpos): Renamed into...
8757 (open_source_file_with_line_charpos): ..this along with changes to
8758 return a scoped_fd, and some other minor clean ups.
8759 (identify_source_line): Use open_source_file_with_line_charpos.
8760 (search_command_helper): Use open_source_file_with_line_charpos
8761 instead of just open_source_file, remove call to
8762 find_source_lines.
8763 * source.h (open_source_file_with_line_charpos): Declare new
8764 function.
8765 (find_source_lines): Delete declaration.
8766
87672019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
8768
8769 * source.c (get_filename_and_charpos): Remove fullname
8770 parameter.
8771 (identify_source_line): Update call to get_filename_and_charpos.
8772
87732019-06-14 Tom Tromey <tromey@adacore.com>
8774
8775 PR gdb/24502:
8776 * ui-style.h (skip_ansi_escape): Update comment.
8777 * ui-file.h (class no_terminal_escape_file): New class.
8778 * ui-file.c (no_terminal_escape_file::write)
8779 (no_terminal_escape_file::puts): New methods.
8780 * cli/cli-logging.c (handle_redirections): Use
8781 no_terminal_escape_file.
8782
87832019-06-14 Tom Tromey <tromey@adacore.com>
8784
8785 * NEWS: Move convenience variable news above Python news.
8786
87872019-06-14 Tom Tromey <tom@tromey.com>
8788
8789 * gnulib: Move directory to top-level.
8790 * configure.ac: Don't configure gnulib.
8791 * configure: Rebuild.
8792 * common/common-defs.h: Use new path to gnulib.
8793 * Makefile.in (GNULIB_BUILDDIR): Now ../gnulib.
8794 (GNULIB_H): Remove.
8795 (INCGNU): Look in new gnulib location.
8796 (HFILES_NO_SRCDIR): Remove gnulib files.
8797 (SUBDIR, REQUIRED_SUBDIRS): Remove gnulib.
8798 (generated_files): Remove GNULIB_H.
8799 ($(LIBGNU), all-lib): Remove targets.
8800 (distclean): Don't mention GNULIB_BUILDDIR.
8801 ($(GNULIB_BUILDDIR)/Makefile): Remove target.
8802
88032019-06-14 Tom Tromey <tromey@adacore.com>
8804
8805 * symfile.c (add_symbol_file_command): Remove obsolete comment.
8806 Warn if symbol file does not provide any symbols.
8807
88082019-06-14 Tom Tromey <tromey@adacore.com>
8809
8810 * source.c (find_and_open_source): Respect basenames_may_differ.
8811
88122019-06-14 Andrew Burgess <andrew.burgess@embecosm.com>
8813
8814 * annotate.c (annotate_breakpoints_invalid): Make use of
8815 scoped_restore_terminal_state.
8816 (annotate_frames_invalid): Likewise.
8817
88182019-06-14 Tom Tromey <tromey@adacore.com>
8819
8820 * ada-lang.c (ada_evaluate_subexp) <case BINOP_ASSIGN>: Always
8821 allow assignment to an internalvar.
8822
88232019-06-14 Tom Tromey <tromey@adacore.com>
8824
8825 * ada-lex.l: Allow "_" in attribute names.
8826
88272019-06-14 Tom Tromey <tromey@adacore.com>
8828
8829 PR gdb/24653:
8830 * regcache.c (registers_changed): Don't call alloca.
8831 * top.c (execute_command): Don't call alloca.
8832
88332019-06-13 Pedro Alves <palves@redhat.com>
8834
8835 * cli/cli-setshow.c (cli/cli-setshow.c): New parameter
8836 'expression'. When parsing an expression, error out if there's
8837 junk after "unlimited".
8838 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
8839 (do_set_command): Adjust calls to is_unlimited_literal.
8840
88412019-06-13 Pedro Alves <palves@redhat.com>
8842
8843 * compile/compile.c (make_compile_options_def_group): Add braces
8844 around array_view initializer.
8845 * thread.c (make_thread_apply_all_options_def_group)
8846 (make_thread_apply_all_options_def_group): Likewise.
8847
88482019-06-13 Pedro Alves <palves@redhat.com>
8849
8850 * NEWS (New commands): Mention "maint test-options
8851 require-delimiter", "maint test-options unknown-is-error", "maint
8852 test-options unknown-is-operand" and "maint show
8853 test-options-completion-result".
8854 (New command options, command completion): New section.
8855 (Completion improvements): New section.
8856 Mention that you can abbreviate "unlimited".
8857
88582019-06-13 Pedro Alves <palves@redhat.com>
8859
8860 * cli/cli-utils.c (parse_flags, parse_flags_qcs): Delete.
8861 * cli/cli-utils.h (parse_flags, parse_flags_qcs): Delete.
8862 * unittests/cli-utils-selftests.c (test_parse_flags)
8863 (test_parse_flags_qcs): Delete.
8864 (test_cli_utils): Don't call deleted functions.
8865
88662019-06-13 Pedro Alves <palves@redhat.com>
8867
8868 * thread.c: Include "cli/cli-option.h".
8869 (tp_array_compar_ascending): Global.
8870 (tp_array_compar): Delete function.
8871 (tp_array_compar_ascending, tp_array_compar_descending): New
8872 functions.
8873 (ascending_option_def, qcs_flag_option_def)
8874 (thr_qcs_flags_option_defs)
8875 (make_thread_apply_all_options_def_group)
8876 (make_thread_apply_options_def_group): New.
8877 (thread_apply_all_command): Use gdb::option::process_options.
8878 (thread_apply_command_completer)
8879 (thread_apply_all_command_completer): New.
8880 (thread_apply_command): Use gdb::option::process_options.
8881 (_initialize_thread): Delete THREAD_APPLY_FLAGS_HELP, replace it
8882 with a new THREAD_APPLY_OPTION_HELP. Use gdb::option::build_help
8883 to generate help text of "thread apply". Adjust "taas"'s help.
8884 * tid-parse.c (tid_range_parser::in_thread_range): New method.
8885 * tid-parse.h (tid_range_parser::in_thread_range): New method.
8886
88872019-06-13 Pedro Alves <palves@redhat.com>
8888
8889 * thread.c (thread_apply_command): Check for invalid TID with
8890 isdigit instead of !isalpha.
8891
88922019-06-13 Pedro Alves <palves@redhat.com>
8893
8894 * cli/cli-utils.c (parse_flags_qcs): Use validate_flags_qcs.
8895 (validate_flags_qcs): New.
8896 * cli/cli-utils.h (struct qcs_flags): Change field types to int.
8897 (validate_flags_qcs): Declare.
8898 * stack.c (qcs_flag_option_def, fr_qcs_flags_option_defs): New.
8899 (make_frame_apply_options_def_group): New.
8900 (frame_apply_command_count): Process options with
8901 gdb::option::process_options.
8902 (frame_apply_completer): New.
8903 (frame_apply_level_completer, frame_apply_all_completer)
8904 (frame_apply_completer): New.
8905 (_initialize_stack): Update help of "frame apply", "frame apply
8906 level", "frame apply all" and "faas" to mention supported options
8907 and install command completers.
8908 * stack.h (frame_apply_all_completer): Declare.
8909 * thread.c: Include "stack.h".
8910 (tfaas_command): Add "--".
8911 (_initialize_thread): Update help "tfaas" to mention supported
8912 options and install command completer.
8913
89142019-06-13 Pedro Alves <palves@redhat.com>
8915
8916 * completer.c (complete_nested_command_line): New.
8917 (gdb_completion_word_break_characters_throw): Add assertion.
8918 * completer.h (complete_nested_command_line): Declare.
8919
89202019-06-13 Pedro Alves <palves@redhat.com>
8921
8922 * stack.c (parse_backtrace_qualifiers): New.
8923 (backtrace_command): Use it.
8924 (backtrace_command_completer): Complete on qualifiers.
8925
89262019-06-13 Pedro Alves <palves@redhat.com>
8927
8928 * frame.c: Include "cli/cli-option.h.
8929 (user_set_backtrace_options): New.
8930 (backtrace_past_main, backtrace_past_entry, backtrace_limit):
8931 Delete.
8932 (get_prev_frame): Adjust.
8933 (boolean_option_def, uinteger_option_def)
8934 (set_backtrace_option_defs): New.
8935 (_initialize_frame): Adjust and use
8936 gdb::option::add_setshow_cmds_for_options to install "set
8937 backtrace past-main" and "set backtrace past-entry".
8938 * frame.h: Include "cli/cli-option.h".
8939 (struct frame_print_options): Forward declare.
8940 (print_frame_arguments_all, print_frame_arguments_scalars)
8941 (print_frame_arguments_none): Declare.
8942 (print_entry_values): Delete declaration.
8943 (struct frame_print_options, user_frame_print_options): New.
8944 (struct set_backtrace_options): New.
8945 (set_backtrace_option_defs, user_set_backtrace_options): Declare.
8946 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
8947 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
8948 (mi_cmd_stack_list_variables): Pass down USER_FRAME_PRINT_OPTIONS.
8949 (list_args_or_locals): Add frame_print_options parameter.
8950 (mi_cmd_stack_info_frame): Pass down USER_FRAME_PRINT_OPTIONS.
8951 * python/py-framefilter.c (enumerate_args): Pass down
8952 USER_FRAME_PRINT_OPTIONS.
8953 * stack.c: Include "cli/cli-option.h".
8954 (print_frame_arguments_all, print_frame_arguments_scalars)
8955 (print_frame_arguments_none): Declare.
8956 (print_raw_frame_arguments, print_entry_values): Delete.
8957 (user_frame_print_options): New.
8958 (boolean_option_def, enum_option_def, frame_print_option_defs):
8959 New.
8960 (struct backtrace_cmd_options): New.
8961 (bt_flag_option_def): New.
8962 (backtrace_command_option_defs): New.
8963 (print_stack_frame): Pass down USER_FRAME_PRINT_OPTIONS.
8964 (print_frame_arg, read_frame_arg, print_frame_args)
8965 (print_frame_info, print_frame): Add frame_print_options parameter
8966 and use it.
8967 (info_frame_command_core): Pass down USER_FRAME_PRINT_OPTIONS.
8968 (backtrace_command_1): Add frame_print_options and
8969 backtrace_cmd_options parameters and use them.
8970 (make_backtrace_options_def_group): New.
8971 (backtrace_command): Process command options with
8972 gdb::option::process_options.
8973 (backtrace_command_completer): New.
8974 (_initialize_stack): Extend "backtrace"'s help to mention
8975 supported options. Install completer for "backtrace".
8976 Install some settings commands with add_setshow_cmds_for_options.
8977
89782019-06-13 Pedro Alves <palves@redhat.com>
8979
8980 * NEWS (Changed commands): Mention set/show print raw-frame-arguments,
8981 and that "set/show print raw frame-arguments" are now deprecated.
8982
8983 * cli/cli-decode.c (add_setshow_boolean_cmd): Now returns the
8984 command.
8985 * command.h (add_setshow_boolean_cmd): Return cmd_list_element *.
8986 * stack.c (_initialize_stack): Install "set/show print
8987 raw-frame-arguments", and deprecate "set/show print raw
8988 frame-arguments".
8989 * valprint.c (_initialize_valprint): Deprecate "set/show print
8990 raw".
8991
89922019-06-13 Pedro Alves <palves@redhat.com>
8993
8994 * compile/compile.c (struct compile_options): New.
8995 (compile_flag_option_def, compile_command_option_defs)
8996 (make_compile_options_def_group): New.
8997 (compile_file_command): Handle options with
8998 gdb::option::process_options.
8999 (compile_file_command_completer): New function.
9000 (compile_code_command): Handle options with
9001 gdb::option::process_options.
9002 (compile_code_command_completer): New function.
9003 (_initialize_compiler): Install completers for "compile code" and
9004 "compile file". Mention available options in "compile code" and
9005 "compile code"'s help.
9006 * completer.c (advance_to_completion_word): New, factored out from
9007 ...
9008 (advance_to_expression_complete_word_point): ... this.
9009 (advance_to_filename_complete_word_point): New.
9010 * completer.h (advance_to_filename_complete_word_point): New
9011 declaration.
9012
90132019-06-13 Pedro Alves <palves@redhat.com>
9014
9015 * compile/compile.c: Include "cli/cli-option.h".
9016 (compile_print_value): Scope data pointer is now a
9017 value_print_options pointer; adjust.
9018 (compile_print_command): Process options. Scope data pointer is
9019 now a value_print_options pointer; adjust.
9020 (_initialize_compile): Update "compile print"'s help to include
9021 supported options. Install a completer for "compile print".
9022 * cp-valprint.c (show_vtblprint, show_objectprint)
9023 (show_static_field_print): Delete.
9024 (_initialize_cp_valprint): Don't install "set print
9025 static-members", "set print vtbl", "set print object" here.
9026 * printcmd.c: Include "cli/cli-option.h" and
9027 "common/gdb_optional.h".
9028 (print_command_parse_format): Rework to fill in a
9029 value_print_options instead of a format_data.
9030 (print_value): Change parameter type from format_data pointer to
9031 value_print_options reference. Adjust.
9032 (print_command_1): Process options. Adjust to pass down a
9033 value_print_options.
9034 (print_command_completer): New.
9035 (_initialize_printcmd): Install print_command_completer as
9036 handle_brkchars completer for the "print" command. Update
9037 "print"'s help to include supported options.
9038 * valprint.c: Include "cli/cli-option.h".
9039 (show_vtblprint, show_objectprint, show_static_field_print): Moved
9040 here from cp-valprint.c.
9041 (boolean_option_def, uinteger_option_def)
9042 (value_print_option_defs, make_value_print_options_def_group):
9043 New. Use gdb::option::add_setshow_cmds_for_options to install
9044 "set print elements", "set print null-stop", "set print repeats",
9045 "set print pretty", "set print union", "set print array", "set
9046 print address", "set print symbol", "set print array-indexes".
9047 * valprint.h: Include <string> and "cli/cli-option.h".
9048 (make_value_print_options_def_group): Declare.
9049 (print_value): Change parameter type from format_data pointer to
9050 value_print_options reference.
9051 (print_command_completer): Declare.
9052
90532019-06-13 Pedro Alves <palves@redhat.com>
9054
9055 * Makefile.in (SUBDIR_CLI_SRCS): Add cli/cli-option.c.
9056 (COMMON_SFILES): Add maint-test-settings.c.
9057 * cli/cli-decode.c (boolean_enums): New global, factored out from
9058 ...
9059 (add_setshow_boolean_cmd): ... here.
9060 * cli/cli-decode.h (boolean_enums): Declare.
9061 * cli/cli-option.c: New file.
9062 * cli/cli-option.h: New file.
9063 * cli/cli-setshow.c (parse_cli_boolean_value(const char **)): New,
9064 factored out from ...
9065 (parse_cli_boolean_value(const char *)): ... this.
9066 (is_unlimited_literal): Change parameter type to pointer to
9067 pointer. Adjust and advance ARG pointer.
9068 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
9069 (parse_cli_var_enum): New, factored out from ...
9070 (do_set_command): ... this. Adjust.
9071 * cli/cli-setshow.h (parse_cli_boolean_value)
9072 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
9073 (parse_cli_var_enum): Declare.
9074 * cli/cli-utils.c: Include "cli/cli-option.h".
9075 (get_ulongest): New.
9076 * cli/cli-utils.h (get_ulongest): Declare.
9077 (check_for_argument): New overloads.
9078 * maint-test-options.c: New file.
9079
90802019-06-13 Pedro Alves <palves@redhat.com>
9081
9082 * cli/cli-utils.c (number_or_range_parser::get_number): Do not
9083 parse a range if "-" is at the end of the string.
9084
90852019-06-13 Pedro Alves <palves@redhat.com>
9086
9087 * cli/cli-setshow.c (parse_auto_binary_operation)
9088 (parse_cli_boolean_value): Don't allow "o".
9089
90902019-06-13 Pedro Alves <palves@redhat.com>
9091
9092 * Makefile.in (COMMON_SFILES): Add maint-test-settings.c.
9093 * NEWS: Mention maint test-settings KIND.
9094 * maint-test-settings.c: New file.
9095
90962019-06-13 Pedro Alves <palves@redhat.com>
9097
9098 * cli/cli-decode.c (add_setshow_cmd_full): Remove "show"
9099 completer.
9100 (add_setshow_string_cmd, add_setshow_string_noescape_cmd): Remove
9101 "set" completers.
9102
91032019-06-13 Pedro Alves <palves@redhat.com>
9104
9105 * cli/cli-setshow.c (do_set_command) <var_enum>: Detect junk
9106 after item.
9107
91082019-06-13 Pedro Alves <palves@redhat.com>
9109
9110 * cli/cli-setshow.c (is_unlimited_literal): Allow abbreviations.
9111
91122019-06-13 Pedro Alves <palves@redhat.com>
9113
9114 * ax-gdb.c (agent_command_1): Remove skip_spaces call.
9115 * breakpoint.c (watch_maybe_just_location): Remove skip_spaces
9116 call.
9117 * cli/cli-cmds.c (apropos_command): Remove skip_spaces call.
9118 * cli/cli-utils.c (extract_info_print_args): Remove skip_spaces
9119 calls.
9120 (check_for_argument): Skip spaces after argument.
9121
91222019-06-13 Pedro Alves <palves@redhat.com>
9123
9124 * thread.c (thread_apply_command): Adjust TID parsing.
9125 * tid-parse.c (tid_range_parser::finished): Ensure parsing end is
9126 detected before end of string.
9127 (tid_is_in_list): Error out if LIST is invalid.
9128
91292019-06-13 Pedro Alves <palves@redhat.com>
9130
9131 * completer.c (complete_line_internal_1): Rewind completion word
9132 point.
9133 (completion_tracker::advance_custom_word_point_by): Change
9134 parameter type to int.
9135 * completer.h (completion_tracker::advance_custom_word_point_by):
9136 Likewise.
9137
91382019-06-13 Pedro Alves <palves@redhat.com>
9139
9140 * completer.c (advance_to_completion_word): Handle delimiters.
9141
91422019-06-11 Bernhard Heckel <bernhard.heckel@intel.com>
9143
9144 * dwarf2read.c (add_partial_symbol): Skip nameless modules.
9145
91462019-06-11 Tom Tromey <tom@tromey.com>
9147
9148 * common/common-utils.c (xmalloc, xrealloc, xcalloc)
9149 (xmalloc_failed): Move to alloc.c.
9150 * alloc.c: New file.
9151 * Makefile.in (COMMON_SFILES): Add alloc.c.
9152
91532019-06-11 Tom Tromey <tom@tromey.com>
9154
9155 * nat/linux-waitpid.c: Don't include server.h.
9156 (linux_debug): Remove.
9157 (my_waitpid): Update.
9158
91592019-06-11 Tom Tromey <tromey@adacore.com>
9160
9161 * infcall.c (_initialize_infcall): Remove trailing newline from
9162 help.
9163 * user-regs.c (_initialize_user_regs): Remove trailing newline
9164 from help.
9165 * typeprint.c (_initialize_typeprint): Remove trailing newline
9166 from help.
9167 * reverse.c (_initialize_reverse): Remove trailing newlines from
9168 help.
9169 * tracepoint.c (_initialize_tracepoint): Remove trailing newlines
9170 from help.
9171 * language.c (add_set_language_command): Remove trailing newline
9172 from help.
9173 * infcmd.c (_initialize_infcmd): Remove trailing newlines from
9174 help.
9175 * disasm.c (_initialize_disasm): Remove trailing newline from
9176 help.
9177 * top.c (init_main): Remove trailing newline from help.
9178 * interps.c (_initialize_interpreter): Remove trailing newline
9179 from help.
9180 * btrace.c (_initialize_btrace): Remove trailing newlines from
9181 help.
9182 * breakpoint.c (_initialize_breakpoint): Remove trailing newline
9183 from help.
9184 * python/python.c (_initialize_python): Remove trailing newline
9185 from help.
9186 * spu-tdep.c (_initialize_spu_tdep): Remove trailing newlines from
9187 help.
9188 * tui/tui-win.c (_initialize_tui_win): Remove trailing newlines
9189 from help. Reformat some text.
9190 * tui/tui-stack.c (_initialize_tui_stack): Remove trailing newline
9191 from help.
9192 * tui/tui-layout.c (_initialize_tui_layout): Remove trailing
9193 newline from help.
9194
91952019-06-11 Tom Tromey <tromey@adacore.com>
9196
9197 * darwin-nat.c (darwin_decode_exception_message)
9198 (darwin_decode_message, darwin_nat_target::kill): Fix shadowing.
9199
92002019-06-10 Andrew Burgess <andrew.burgess@embecosm.com>
9201
9202 * valops.c (value_slice): Check for not allocated or not
9203 associated values.
9204
92052019-06-10 Tom de Vries <tdevries@suse.de>
9206
9207 PR gdb/24618
9208 * dwarf2read.c (struct mapped_index::symbol_name_slot_invalid): Make
9209 sure an empty slot (defined by a 32-bit zero pair) is recognized as
9210 invalid.
9211
92122019-06-10 Tom de Vries <tdevries@suse.de>
9213
9214 PR gdb/24611
9215 * linespec.c (linespec_lexer_lex_string): Remove incorrect
9216 "++(PARSER_STREAM (parser))" for "[abi"-prefixed colon. Add assert.
9217
92182019-06-10 Tom de Vries <tdevries@suse.de>
9219
9220 PR symtab/24545
9221 * symtab.c (struct demangled_name_entry): Add language field.
9222 (symbol_set_names): Revert "[gdb/symtab] Fix language of duplicate
9223 static minimal symbol". Set and use language field.
9224
92252019-06-10 Tom Tromey <tromey@adacore.com>
9226
9227 * ada-lang.c (_initialize_ada_language): Update help text.
9228
92292019-06-10 Tom Tromey <tromey@adacore.com>
9230
9231 * m32c-tdep.c (m32c_m16c_address_to_pointer): Don't end warning
9232 with a newline.
9233 * guile/guile.c (handle_boot_error): Don't end warning with a
9234 newline.
9235 * cli/cli-cmds.c (exit_status_set_internal_vars): Don't end
9236 warning with a newline.
9237 * s12z-tdep.c (s12z_skip_prologue): Don't end warning with a
9238 newline.
9239 (s12z_frame_cache): Likewise.
9240 * dwarf-index-cache.c (index_cache::store): Don't end warning with
9241 a newline.
9242 * solib-svr4.c (disable_probes_interface): Don't end warning with
9243 a newline.
9244 * nat/fork-inferior.c (fork_inferior): Don't end warning with a
9245 newline.
9246 * python/python.c (do_finish_initialization): Don't end warning
9247 with a newline.
9248
92492019-06-10 Tom Tromey <tom@tromey.com>
9250
9251 * python/py-breakpoint.c (gdbpy_breakpoint_created)
9252 (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
9253 gdbpy_enter.
9254
92552019-06-10 Tom Tromey <tromey@adacore.com>
9256
9257 * elfread.c (elf_read_minimal_symbols): Don't set the dbx objfile
9258 data.
9259 (elf_new_init): Don't call stabsread_new_init.
9260 * dbxread.c (coffstab_build_psymtabs): Set dbx objfile data.
9261 (elfstab_build_psymtabs): Likewise. Call stabsread_new_init.
9262 * coffread.c (coff_symfile_init): Don't set the dbx objfile data.
9263
92642019-06-10 Tom de Vries <tdevries@suse.de>
9265
9266 PR symtab/16264
9267 PR symtab/24517
9268 * dwarf2read.c (read_func_scope): Handle DW_AT_main_subprogram.
9269
92702019-06-06 Руслан Ижбулатов <lrn1986@gmail.com>
9271
9272 * source.c (find_and_open_source): Also rewrite relative file
9273 names.
9274
92752019-04-26 Amos Bird <amosbird@gmail.com>
9276
9277 * annotate.c (annotate_thread_exited): Add "thread-exited"
9278 annotation.
9279
92802019-06-06 Tom Tromey <tromey@adacore.com>
9281
9282 * maint.h (class scoped_command_stats): Use
9283 DISABLE_COPY_AND_ASSIGN.
9284 <print_time>: New method.
9285 * maint.c (scoped_command_stats, ~scoped_command_stats): Call
9286 print_time.
9287 (scoped_command_stats::print_time): New method.
9288
92892019-06-05 Andrew Burgess <andrew.burgess@embecosm.com>
9290
9291 * riscv-tdep.c (riscv_insn::decode): Gracefully ignore
9292 instructions of lengths 6 or 8 bytes.
9293
92942019-06-04 Pedro Alves <palves@redhat.com>
9295
9296 * common/gdb_unique_ptr.h (make_unique_xstrdup): New.
9297
9298 * ada-lang.c (catch_ada_completer): Use make_unique_xstrdup.
9299 * breakpoint.c (condition_completer): Likewise.
9300 * cli/cli-dump.c (scan_expression): Likewise.
9301 * common/filestuff.c (mkdir_recursive): Likewise.
9302 * common/gdb_tilde_expand.c (gdb_tilde_expand_up)
9303 * common/pathstuff.c (gdb_realpath, gdb_realpath_keepfile)
9304 (gdb_abspath): Likewise.
9305 * compile/compile-cplus-types.c
9306 (compile_cplus_instance::decl_name): Likewise.
9307 * completer.c (complete_explicit_location):
9308 (signal_completer, reg_or_group_completer_1): Likewise.
9309 * cp-support.c (cp_remove_params_if_any): Likewise.
9310 * fbsd-tdep.c (fbsd_core_vnode_path): Likewise.
9311 * guile/scm-safe-call.c (gdbscm_safe_eval_string): Likewise.
9312 * infcmd.c (strip_bg_char): Likewise.
9313 * linespec.c (copy_token_string): Likewise.
9314 * mi/mi-main.c (output_cores): Likewise.
9315 * psymtab.c (psymtab_search_name):
9316 * symfile.c (test_set_ext_lang_command): Likewise.
9317 * target.c (target_fileio_read_stralloc): Likewise.
9318 * tui/tui-regs.c (tui_reggroup_completer): Likewise.
9319 * value.c (complete_internalvar): Likewise.
9320
93212019-06-04 Christian Biesinger <cbiesinger@google.com>
9322
9323 Add objfile property to gdb.Type.
9324 * NEWS: Mention Python API addition.
9325 * python/py-type.c (typy_get_objfile): New method.
9326
93272019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9328
9329 * NEWS: Mention the new set|show style [title|highlight].
9330 Mention changes to "show style", "help" and "apropos".
9331
93322019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9333
9334 * cli/cli-decode.h (apropos_cmd): Add verbose argument.
9335 * cli/cli-decode.c (apropos_cmd): Likewise. Use print_doc_of_command
9336 instead of print_help_for_command.
9337 (print_doc_of_command): New function.
9338 (help_list): Add 'apropos -v word' suggestion.
9339 (print_help_for_command): Style the command name using title style.
9340 * cli/cli-cmds.c (apropos_command): Parse optional -v flag.
9341 (_initialize_cli_cmds): Describe -v in apropos_command help.
9342
93432019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9344
9345 * cli/cli-style.h (cli_style_option): Add name in constructor,
9346 add m_name class member, add constructor with intensity,
9347 add name class function.
9348 (cli_style_option::add_setshow_commands): Remove name argument.
9349 (highlight_style, title_style): New styles.
9350 * cli/cli-style.c (do_show): New function that shows a style
9351 characteristic styling the style name with itself.
9352 (set_style_name): New function.
9353 (STYLE_ADD_SETSHOW_COMMANDS): Remove NAME arguments.
9354 Update all callers according to the changes in cli/cli-style.h.
9355 * utils.h (fputs_highlighted): New function.
9356 * utils.c (fputs_highlighted): Likewise.
9357
93582019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9359
9360 * NEWS: Mention new pipe command and new convenience variables.
9361
93622019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9363
9364 * cli/cli-cmds.c (pipe_command): New function.
9365 (_initialize_cli_cmds): Call add_com for pipe_command.
9366 Define | as an alias for pipe.
9367 (exit_status_set_internal_vars): New function.
9368 (shell_escape): Call exit_status_set_internal_vars.
9369 cli/cli-decode.c (find_command_name_length): Recognize | as
9370 a single character command.
9371
93722019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9373
9374 * gdbcmd.h (execute_command_to_ui_file): New declaration.
9375 top.c (execute_command_to_ui_file): New function, mostly a copy
9376 of execute_command_to_string.
9377 (execute_command_to_string): Implement by calling
9378 execute_command_to_ui_file.
9379
93802019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9381
9382 * top.h (saved_command_line): Remove declaration.
9383 * top.c (previous_saved_command_line, previous_repeat_arguments):
9384 New variables.
9385 (saved_command_line): Make static, define together with other
9386 'repeat variables'.
9387 (dont_repeat): Clear repeat_arguments.
9388 (repeat_previous, get_saved_command_line, save_command_line):
9389 New functions.
9390 (gdb_init): Initialize saved_command_line
9391 and previous_saved_command_line.
9392 * main.c (captured_main_1): Remove saved_command_line initialization.
9393 * event-top.c (handle_line_of_input): Update to use
9394 the new 'repeat' related functions instead of direct access to
9395 saved_command_line.
9396 * command.h (repeat_previous, get_saved_command_line,
9397 save_command_line): New declarations.
9398 (dont_repeat): Add comment.
9399
94002019-05-30 Tom Tromey <tromey@adacore.com>
9401
9402 * gdbtypes.h (struct range_bounds) <flag_upper_bound_is_count>:
9403 Fix comment.
9404 (TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED): Rewrite comment.
9405
94062019-05-30 Jan Vrany <jan.vrany@fit.cvut.cz>
9407
9408 PR cli/24587
9409 * completer.c (complete): Initialize variable word.
9410
94112019-05-29 Sergio Durigan Junior <sergiodj@redhat.com>
9412
9413 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192
9414 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1715008
9415 * dwarf2read.c (dwarf_decode_macro_bytes): Move check to see if
9416 'body' is NULL to the outter 'if', protecting the '!is_define'
9417 situation as well.
9418
94192019-05-29 Tom Tromey <tromey@adacore.com>
9420
9421 * dwarf2read.c (partial_die_parent_scope): Call dwarf_tag_name.
9422 (dwarf_unknown): New function.
9423 (dwarf_tag_name, dwarf_attr_name, dwarf_form_name)
9424 (dwarf_type_encoding_name): Use dwarf_unknown.
9425
94262019-05-29 Tom Tromey <tromey@adacore.com>
9427
9428 PR c++/20020:
9429 * cp-valprint.c (cp_print_value_fields): Call
9430 cp_print_static_field inside "try".
9431
94322019-05-29 Tom Tromey <tromey@adacore.com>
9433
9434 * inflow.c (struct terminal_info): Add default operator=.
9435 * configure: Rebuild.
9436 * warning.m4 (AM_GDB_WARNINGS): Add -Wdeprecated-copy,
9437 -Wdeprecated-copy-dtor, -Wredundant-move.
9438
94392019-05-29 Tom Tromey <tromey@adacore.com>
9440
9441 * NEWS: Add entry.
9442 * infcmd.c (print_return_value_1): Handle finish_print
9443 option.
9444 (show_print_finish): New function.
9445 (_initialize_infcmd): Add "set/show print finish" commands.
9446 * valprint.c (user_print_options): Initialize new member.
9447 * valprint.h (struct value_print_options) <finish_print>: New
9448 member.
9449
94502019-05-28 Tom Tromey <tromey@adacore.com>
9451
9452 * ada-lang.c (ada_remove_Xbn_suffix)
9453 (find_old_style_renaming_symbol)
9454 (parse_old_style_renaming): Remove.
9455 (ada_find_renaming_symbol): Don't call
9456 find_old_style_renaming_symbol.
9457 (ada_is_renaming_symbol): Rename from
9458 ada_find_renaming_symbol. Remove "block" parameter. Return
9459 bool. Now static.
9460 (ada_read_var_value): Update and simplify.
9461 * ada-exp.y (write_var_or_type): Remove old code.
9462
94632019-05-28 Alan Hayward <alan.hayward@arm.com>
9464
9465 PR gdb/25010
9466 * event-top.c: Remove include comment.
9467 * inflow.c (class scoped_ignore_sigttou): Move from here...
9468 * inflow.h (class scoped_ignore_sigttou): ...to here.
9469 * ser-unix.c (hardwire_drain_output): Block SIGTTOU during drain.
9470 * top.c: Remove include comment.
9471
94722019-05-27 Tom Tromey <tom@tromey.com>
9473
9474 * NEWS: Fix typo.
9475
94762019-05-22 Tom Tromey <tromey@adacore.com>
9477
9478 * target.c (target_follow_exec): Constify parameter.
9479 * target-delegates.c: Rebuild.
9480 * remote.c (remote_target::follow_exec): Constify parameter.
9481 * infrun.c (follow_exec): Constify parameter.
9482 * target.h (struct target_ops) <follow_exec>: Constify parameter.
9483 (target_follow_exec): Likewise.
9484
94852019-05-22 Alan Hayward <alan.hayward@arm.com>
9486
9487 * aarch64-tdep.c (aarch64_execute_dwarf_cfa_vendor_op): Treat
9488 DW_CFA_AARCH64_negate_ra_state as nop on non pauth targets.
9489
94902019-05-22 Alan Hayward <alan.hayward@arm.com>
9491
9492 * NEWS: Add debugredirect and testsuite sections.
9493
94942019-05-22 Simon Cook <simon.cook@embecosm.com>
9495
9496 * riscv-tdep.c (riscv_gdbarch_init): Support determining flen from
9497 target descriptions using exclusively floating point register name
9498 aliases.
9499
95002019-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
9501
9502 PR gdb/18644:
9503 * f-lang.c (build_fortran_types): Handle the case where
9504 gdbarch_floatformat_for_type returns a nullptr.
9505
95062019-05-21 Tom de Vries <tdevries@suse.de>
9507
9508 PR cli/24587
9509 * cli/cli-cmds.c (complete_command): Fix use of unitialized variable.
9510
95112019-05-18 Andrew Burgess <andrew.burgess@embecosm.com>
9512
9513 PR gdb/18644:
9514 * f-lang.c (build_fortran_types): Use floatformats_ia64_quad for
9515 16-byte floats.
9516 * i386-tdep.c (i386_floatformat_for_type): Use
9517 floatformats_ia64_quad for the 16-byte floating point component
9518 within a fortran 32-byte complex number.
9519
95202019-05-18 Andrew Burgess <andrew.burgess@embecosm.com>
9521
9522 * dwarf2read.c (struct cu_partial_die_info): Add constructor,
9523 delete default constructor.
9524 (find_partial_die): Update to return const struct.
9525 (partial_die_parent_scope): Move variable declaration into scope
9526 of its use and change its type to auto.
9527 (guess_partial_die_structure_name): Likewise.
9528 (partial_die_info::fixup): Likewise.
9529
95302019-05-17 Tom Tromey <tromey@adacore.com>
9531
9532 * source.c (find_and_open_source): Remove cast.
9533
95342019-05-17 Tom Tromey <tromey@adacore.com>
9535
9536 * annotate.c (annotate_source): Make "filename" const.
9537 * annotate.h (annotate_source): Use const.
9538
95392019-05-17 Alan Hayward <alan.hayward@arm.com>
9540
9541 * disasm.c (set_disassembler_options): Send errors to stderr.
9542
95432019-05-17 Alan Hayward <alan.hayward@arm.com>
9544
9545 * cli/cli-interp.c (struct saved_output_files): Add saved entry.
9546 (cli_interp_base::set_logging): Check debug_redirect.
9547 * cli/cli-interp.h (set_logging): Add debug_redirect parameter.
9548 * cli/cli-logging.c (debug_redirect): Add static variable.
9549 (pop_output_files): Add default param.
9550 (handle_redirections): Print debug setting.
9551 (show_logging_command): Likewise.
9552 (_initialize_cli_logging): Add debugredirect command.
9553 * interps.c (current_interp_set_logging): Add debug_redirect
9554 parameter.
9555 * interps.h (set_logging): Add debug_redirect parameter.
9556 (current_interp_set_logging): Likewise.
9557 * mi/mi-common.h: Likewise.
9558 * mi/mi-interp.c (mi_interp::set_logging): Likewise.
9559
95602019-05-17 Alan Hayward <alan.hayward@arm.com>
9561 Tom Tromey <tromey@adacore.com>
9562
9563 * cli/cli-interp.c (cli_interp_base::set_logging): Create tee_file
9564 directly.
9565 * cli/cli-interp.h (make_logging_output): Remove declaration.
9566 * cli/cli-logging.c (make_logging_output): Remove function.
9567 * mi/mi-interp.c (mi_interp::set_logging): Create tee_file
9568 directly.
9569 * ui-file.c (tee_file::tee_file): Remove bools.
9570 (tee_file::~tee_file): Remove deletes.
9571 * ui-file.h (tee_file): Remove bools.
9572
95732019-01-28 Jan Vrany <jan.vrany@fit.cvut.cz>
9574
9575 * mi/mi-cmds.h (mi_cmd_complete): New function.
9576 * mi/mi-main.c (mi_cmd_complete): Likewise.
9577 * mi/mi-cmds.c: Define new MI command -complete.
9578 * NEWS: Mention new -complete command.
9579
95802019-01-24 Jan Vrany <jan.vrany@fit.cvut.cz>
9581
9582 * completer.h (complete): New function.
9583 * completer.c (complete): Likewise.
9584 * cli/cli-cmds.c: (complete_command): Update to use new complete()
9585 function defined in completer.h.
9586
95872019-05-17 Jan Vrany <jan.vrany@fit.cvut.cz>
9588
9589 * MAINTAINERS (Write After Approval): Add myself.
9590
95912019-05-17 Tom de Vries <tdevries@suse.de>
9592
9593 PR gdb/24094
9594 * dwarf2read.c (struct cu_partial_die_info): New struct.
9595 (find_partial_die): Return cu_partial_die_info.
9596 (partial_die_parent_scope, guess_partial_die_structure_name)
9597 (partial_die_info::fixup): Handle new return type of find_partial_die.
9598
95992019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
9600
9601 PR breakpoints/24541
9602 * stap-probe.c (stap_parse_register_operand): Make "regname" an
9603 "std::string", simplifying the algorithm.
9604
96052019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
9606
9607 * stap-probe.c (handle_stap_probe): Fix complaint formatting.
9608 (stap_static_probe_ops::get_probes): Likewise.
9609
96102019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
9611
9612 * stap-probe.c (stap_parse_register_operand): Make "if (*p->arg ==
9613 '-')" and "else if".
9614 (stap_parse_single_operand): Join checks for
9615 "gdbarch_stap_parse_special_token_p" and
9616 "gdbarch_stap_parse_special_token" in the same "if" statement.
9617 Invert check when verifying for operation on register
9618 displacement.
9619
96202019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
9621
9622 * stap-probe.c (stap_get_opcode): Update comment.
9623 (stap_get_expected_argument_type): Likewise.
9624 (handle_stap_probe): Likewise.
9625
96262019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
9627
9628 * i386-tdep.c (i386_stap_parse_special_token_triplet): Change
9629 return type to 'bool'. Adjust comment. Use 'bool' when
9630 appropriate.
9631 (i386_stap_parse_special_token_three_arg_disp): Likewise.
9632 * stap-probe.c (stap_parse_argument_1): Likewise.
9633 (stap_is_operator): Likewise.
9634 (stap_is_generic_prefix): Likewise.
9635 (stap_is_register_prefix): Likewise.
9636 (stap_is_register_indirection_prefix): Likewise.
9637 (stap_is_integer_prefix): Likewise.
9638 (stap_generic_check_suffix): Likewise.
9639 (stap_check_integer_suffix): Likewise.
9640 (stap_check_register_suffix): Likewise.
9641 (stap_check_register_indirection_suffix): Likewise.
9642 (stap_parse_register_operand): Likewise.
9643 (stap_parse_single_operand): Likewise.
9644 (stap_parse_argument_1): Likewise.
9645 (stap_probe::get_argument_count): Likewise.
9646 (stap_is_operator): Likewise.
9647
96482019-05-16 Tom Tromey <tromey@adacore.com>
9649
9650 * darwin-nat.c (thread_info_from_private_thread_info): Add struct
9651 keyword to foreach.
9652
96532019-05-15 Simon Marchi <simon.marchi@efficios.com>
9654
9655 * linux-thread-db.c (try_thread_db_load_1): Change return type
9656 to bool.
9657 (try_thread_db_load): Likewise.
9658 (try_thread_db_load_from_pdir_1): Likewise.
9659 (try_thread_db_load_from_pdir): Likewise.
9660 (try_thread_db_load_from_sdir): Likewise.
9661 (try_thread_db_load_from_dir): Likewise.
9662 (thread_db_load_search): Likewise.
9663 (has_libpthread): Likewise.
9664 (thread_db_load): Likewise.
9665
96662019-05-15 Sergio Durigan Junior <sergiodj@redhat.com>
9667
9668 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192
9669 * dwarf2read.c (parse_macro_definition): Check whether 'body' is
9670 NULL, and complain/return if that's the case.
9671
96722019-05-15 John Darrington <john@darrington.wattle.id.au>
9673
9674 * s12z-tdep.c (push_pull_get_stack_adjustment): New function.
9675 (advance, posn, abstract_read_memory): New functions.
9676 [struct mem_read_abstraction]: New struct.
9677 (s12z_frame_cache): Use opcodes API to interpret stack frame code.
9678
96792019-05-14 Tom Tromey <tromey@adacore.com>
9680
9681 * ada-lang.c (coerce_unspec_val_to_type): Only set address when
9682 value is not lval_memory.
9683
96842019-05-14 Tom Tromey <tromey@adacore.com>
9685
9686 * solib.c (info_sharedlibrary_command): Style the file name.
9687
96882019-05-14 Alan Hayward <alan.hayward@arm.com>
9689
9690 * aarch64-tdep.c (aarch64_vnh_type): Add half view.
9691 (aarch64_vnv_type): Likewise.
9692 * target-descriptions.c (make_gdb_type): Add TDESC_TYPE_IEEE_HALF.
9693 * common/tdesc.c: Likewise.
9694 * common/tdesc.h (enum tdesc_type_kind): Likewise.
9695 * features/aarch64-fpu.c (create_feature_aarch64_fpu): Regenerate.
9696 * features/aarch64-fpu.xml: Add ieee half view.
9697 * features/aarch64-sve.c (create_feature_aarch64_fpu): Likewise.
9698 * gdbtypes.c (gdbtypes_post_init): Add builtin_half
9699 * gdbtypes.h (struct builtin_type): Likewise.
9700 (struct objfile_type): Likewise.
9701
97022019-05-12 Paul Naert <paul.naert@polymtl.ca>
9703
9704 * language.c (language_sniff_from_mangled_name): Fix "langauge"
9705 typo.
9706 * location.h (string_to_event_location): Likewise.
9707
97082019-05-11 Joel Brobecker <brobecker@adacore.com>
9709
9710 GDB 8.3 released.
9711
97122019-05-10 Simon Marchi <simon.marchi@efficios.com>
9713
9714 * breakpoint.h (fix_multi_location_breakpoint_output_globally):
9715 New variable declaration.
9716 * breakpoint.c (fix_multi_location_breakpoint_output_globally):
9717 New variable.
9718 (print_one_breakpoint): Use ui_out::test_flags and new global
9719 variable to compute use_fixed_output.
9720 * mi/mi-main.h (mi_multi_location_breakpoint_output_fixed):
9721 Remove.
9722 * mi/mi-main.c (fix_multi_location_breakpoint_output): Remove.
9723 (mi_multi_location_breakpoint_output_fixed): Remove.
9724 (mi_cmd_fix_multi_location_breakpoint_output): Adjust to set the
9725 new variable.
9726 * mi/mi-out.c (mi_ui_out::mi_ui_out): Set
9727 fix_multi_location_breakpoint_output flag if version >= 3.
9728 * ui-out.h (enum ui_out_flag)
9729 <fix_multi_location_breakpoint_output>: New enumerator.
9730
97312019-05-10 Simon Marchi <simon.marchi@efficios.com>
9732
9733 * contrib/cc-with-tweaks.sh: Validate dwz's work.
9734
97352019-05-10 Tom Tromey <tromey@adacore.com>
9736
9737 * ada-lang.c (catch_ada_completer): New function.
9738 (_initialize_ada_language): Use it.
9739
97402019-05-10 Tom Tromey <tromey@adacore.com>
9741
9742 * thread.c (print_thread_info): Make "requested_threads" const.
9743 * gdbthread.h (print_thread_info): Make "requested_threads"
9744 const.
9745 * ada-tasks.c (print_ada_task_info): Make "taskno_str" const.
9746 * ada-lang.h (print_ada_task_info): Make "taskno_str" const.
9747
97482019-05-08 Tom Tromey <tom@tromey.com>
9749
9750 * gdbtypes.c (objfile_type_data): Change type.
9751 (objfile_type, _initialize_gdbtypes): Update.
9752
97532019-05-08 Tom Tromey <tom@tromey.com>
9754
9755 * dwarf2-frame.c (dwarf2_frame_objfile_data): Change type.
9756 (dwarf2_frame_find_fde, dwarf2_build_frame_info)
9757 (_initialize_dwarf2_frame): Update.
9758
97592019-05-08 Tom Tromey <tom@tromey.com>
9760
9761 * objc-lang.c (objc_objfile_data): Change type.
9762 (find_methods): Update.
9763 (_initialize_objc_lang): Remove.
9764
97652019-05-08 Tom Tromey <tom@tromey.com>
9766
9767 * stabsread.c (rs6000_builtin_type_data): Change type.
9768 (rs6000_builtin_type, _initialize_stabsread): Update.
9769
97702019-05-08 Tom Tromey <tom@tromey.com>
9771
9772 * mips-tdep.c (mips_pdr_data): Remove.
9773 (_initialize_mips_tdep): Update.
9774
97752019-05-08 Tom Tromey <tom@tromey.com>
9776
9777 * hppa-tdep.c (hppa_objfile_priv_data): Change type.
9778 (hppa_init_objfile_priv_data, read_unwind_info)
9779 (find_unwind_entry, _initialize_hppa_tdep): Update.
9780
97812019-05-08 Tom Tromey <tom@tromey.com>
9782
9783 * elfread.c (elf_objfile_gnu_ifunc_cache_data): Change type.
9784 (elf_gnu_ifunc_record_cache): Update. Don't allocate hash table
9785 on obstack.
9786 (elf_gnu_ifunc_resolve_by_cache, _initialize_elfread): Update.
9787
97882019-05-08 Tom Tromey <tom@tromey.com>
9789
9790 * mdebugread.c (basic_type_data): Change type.
9791 (basic_type, _initialize_mdebugread): Update.
9792
97932019-05-08 Tom Tromey <tom@tromey.com>
9794
9795 * common/gdb_unique_ptr.h (struct noop_deleter): New.
9796
97972019-05-08 Tom Tromey <tom@tromey.com>
9798
9799 * nto-tdep.c (nto_inferior_data_reg): Change type.
9800 (nto_inferior_data): Update.
9801 (nto_inferior_data_cleanup, nto_new_inferior_data)
9802 (_initialize_nto_tdep): Remove.
9803 * nto-tdep.h (struct nto_inferior_data): Add initializers.
9804
98052019-05-08 Tom Tromey <tom@tromey.com>
9806
9807 * ada-lang.c (struct ada_inferior_data): Add initializers.
9808 (ada_inferior_data): Change type.
9809 (ada_inferior_data_cleanup): Remove.
9810 (get_ada_inferior_data, ada_inferior_exit)
9811 (struct ada_pspace_data): Add initializers, destructor.
9812 (ada_pspace_data_handle): Change type.
9813 (get_ada_pspace_data): Update.
9814 (ada_pspace_data_cleanup): Remove.
9815
98162019-05-08 Tom Tromey <tom@tromey.com>
9817
9818 * coffread.c (struct coff_symfile_info): Add initializers.
9819 (coff_objfile_data_key): Move lower. Change type.
9820 (coff_symfile_init, coff_symfile_read, _initialize_coffread):
9821 Update.
9822 (coff_free_info): Remove.
9823
98242019-05-08 Tom Tromey <tom@tromey.com>
9825
9826 * fbsd-tdep.c (struct fbsd_pspace_data): Add initializers.
9827 (fbsd_pspace_data_handle): Move lower. Change type.
9828 (get_fbsd_pspace_data): Update.
9829 (fbsd_pspace_data_cleanup): Remove.
9830 (_initialize_fbsd_tdep): Update.
9831
98322019-05-08 Tom Tromey <tom@tromey.com>
9833
9834 * ada-tasks.c (ada_tasks_pspace_data_handle): Change type.
9835 (get_ada_tasks_pspace_data): Update.
9836 (ada_tasks_pspace_data_cleanup): Remove.
9837 (_initialize_tasks): Update.
9838 (ada_tasks_inferior_data_handle): Change type.
9839 (get_ada_tasks_inferior_data): Update.
9840 (ada_tasks_inferior_data_cleanup): Remove.
9841 (struct ada_tasks_pspace_data): Add initializers.
9842
98432019-05-08 Tom Tromey <tom@tromey.com>
9844
9845 * symfile.h (struct sym_probe_fns) <sym_get_probes>: Change type.
9846 * symfile-debug.c (debug_sym_get_probes): Change type.
9847 * stap-probe.c (handle_stap_probe):
9848 (stap_static_probe_ops::get_probes): Change type.
9849 * probe.h (class static_probe_ops) <get_probes>: Change type.
9850 * probe.c (class any_static_probe_ops) <get_probes>: Change type.
9851 (parse_probes_in_pspace): Update.
9852 (find_probes_in_objfile, find_probe_by_pc, collect_probes):
9853 Update.
9854 (any_static_probe_ops::get_probes): Change type.
9855 * elfread.c (elfread_data): New typedef.
9856 (probe_key): Change type.
9857 (elf_get_probes): Likewise. Update.
9858 (probe_key_free): Remove.
9859 (_initialize_elfread): Update.
9860 * dtrace-probe.c (class dtrace_static_probe_ops) <get_probes>:
9861 Change type.
9862 (dtrace_process_dof_probe, dtrace_process_dof)
9863 (dtrace_static_probe_ops::get_probe): Change type.
9864
98652019-05-08 Tom Tromey <tom@tromey.com>
9866
9867 * xcoffread.c (struct xcoff_symfile_info): Rename from
9868 coff_symfile_info. Add initializers.
9869 (xcoff_objfile_data_key): Move lower. Change type.
9870 (XCOFF_DATA): Rewrite.
9871 (xcoff_free_info): Remove.
9872 (xcoff_symfile_init, _initialize_xcoffread, read_xcoff_symtab)
9873 (read_symbol, read_symbol_lineno, find_linenos, init_stringtab)
9874 (xcoff_initial_scan): Update.
9875
98762019-05-08 Tom Tromey <tom@tromey.com>
9877
9878 * solib-svr4.c (struct svr4_info): Add initializers and
9879 destructor.
9880 <probes_table>: Now an htab_up.
9881 (solib_svr4_pspace_data): Change type.
9882 (free_probes_table): Simplify.
9883 (~svr4_info): Rename from svr4_pspace_data_cleanup.
9884 (get_svr4_info, probes_table_htab_remove_objfile_probes)
9885 (probes_table_remove_objfile_probes, register_solib_event_probe)
9886 (solib_event_probe_at, svr4_update_solib_event_breakpoint)
9887 (_initialize_svr4_solib): Update.
9888
98892019-05-08 Tom Tromey <tom@tromey.com>
9890
9891 * remote.c (remote_pspace_data): Change type.
9892 (remote_pspace_data_cleanup): Remove.
9893 (get_remote_exec_file, set_pspace_remote_exec_file)
9894 (_initialize_remote): Update.
9895
98962019-05-08 Tom Tromey <tom@tromey.com>
9897
9898 * breakpoint.c (breakpoint_objfile_key): Change type.
9899 (get_breakpoint_objfile_data): Update.
9900 (free_breakpoint_objfile_data): Remove.
9901 (_initialize_breakpoint): Update.
9902
99032019-05-08 Tom Tromey <tom@tromey.com>
9904
9905 * linux-tdep.c (struct linux_info): Add initializers.
9906 (linux_inferior_data): Move. Change type.
9907 (invalidate_linux_cache_inf): Update.
9908 (linux_inferior_data_cleanup): Remove.
9909 (get_linux_inferior_data, _initialize_linux_tdep): Update.
9910
99112019-05-08 Tom Tromey <tom@tromey.com>
9912
9913 * auxv.c (auxv_inferior_data): Move. Change type.
9914 (auxv_inferior_data_cleanup): Remove.
9915 (invalidate_auxv_cache_inf): Rewrite.
9916 (get_auxv_inferior_data, _initialize_auxv): Update.
9917
99182019-05-08 Tom Tromey <tom@tromey.com>
9919
9920 * symfile-debug.c (struct debug_sym_fns_data): Add initializers.
9921 (symfile_debug_objfile_data_key): Change type.
9922 (symfile_debug_installed, debug_qf_has_symbols)
9923 (debug_qf_find_last_source_symtab)
9924 (debug_qf_forget_cached_source_info)
9925 (debug_qf_map_symtabs_matching_filename, debug_qf_lookup_symbol)
9926 (debug_qf_print_stats, debug_qf_dump)
9927 (debug_qf_expand_symtabs_for_function)
9928 (debug_qf_expand_all_symtabs)
9929 (debug_qf_expand_symtabs_with_fullname)
9930 (debug_qf_map_matching_symbols)
9931 (debug_qf_expand_symtabs_matching)
9932 (debug_qf_find_pc_sect_compunit_symtab)
9933 (debug_qf_map_symbol_filenames)
9934 (debug_qf_find_compunit_symtab_by_address, debug_sym_get_probes)
9935 (debug_sym_new_init, debug_sym_init, debug_sym_read)
9936 (debug_sym_read_psymbols, debug_sym_finish, debug_sym_offsets)
9937 (debug_sym_read_linetable, debug_sym_relocate): Update.
9938 (symfile_debug_free_objfile): Remove.
9939 (install_symfile_debug_logging, _initialize_symfile_debug):
9940 Update.
9941
99422019-05-08 Tom Tromey <tom@tromey.com>
9943
9944 * dwarf2read.h (struct dwarf2_per_objfile): Don't inherit from
9945 allocate_on_obstack.
9946 * dwarf2read.c (dwarf2_objfile_data_key): Change type.
9947 (get_dwarf2_per_objfile): Update.
9948 (set_dwarf2_per_objfile): Remove.
9949 (dwarf2_has_info, dwarf2_get_section_info): Update.
9950 (dwarf2_free_objfile): Remove.
9951 (_initialize_dwarf2_read): Update.
9952
99532019-05-08 Tom Tromey <tom@tromey.com>
9954
9955 * auto-load.c (struct auto_load_pspace_info): Add destructor and
9956 initializers.
9957 <unsupported_script_warning_printed,
9958 script_not_found_warning_printed>: Now bool.
9959 (auto_load_pspace_data): Change type.
9960 (~auto_load_pspace_info): Rename from
9961 auto_load_pspace_data_cleanup.
9962 (get_auto_load_pspace_data, init_loaded_scripts_info)
9963 (clear_section_scripts, maybe_print_unsupported_script_warning)
9964 (maybe_print_script_not_found_warning, _initialize_auto_load):
9965 Update.
9966
99672019-05-08 Tom Tromey <tom@tromey.com>
9968
9969 * objfiles.c (objfile_pspace_info): Add destructor and
9970 initializers.
9971 (objfiles_pspace_data): Change type.
9972 (~objfile_pspace_info): Rename from objfiles_pspace_data_cleanup.
9973 (get_objfile_pspace_data): Update.
9974 (objfiles_bfd_data): Change type.
9975 (get_objfile_bfd_data): Update.
9976 (objfile_bfd_data_free, _initialize_objfiles): Remove.
9977
99782019-05-08 Tom Tromey <tom@tromey.com>
9979
9980 * break-catch-syscall.c (catch_syscall_inferior_data): Move.
9981 Change type.
9982 (get_catch_syscall_inferior_data): Update.
9983 (catch_syscall_inferior_data_cleanup): Remove.
9984 (_initialize_break_catch_syscall): Update.
9985
99862019-05-08 Tom Tromey <tom@tromey.com>
9987
9988 * inflow.c (struct terminal_info): Add destructor and
9989 initializers.
9990 (inflow_inferior_data): Change type.
9991 (~terminal_info): Rename from inflow_inferior_data_cleanup.
9992 (get_inflow_inferior_data, inflow_inferior_exit)
9993 (swap_terminal_info, _initialize_inflow): Update.
9994
99952019-05-08 Tom Tromey <tom@tromey.com>
9996
9997 * target-dcache.c (target_dcache_cleanup): Remove.
9998 (target_dcache_aspace_key): Change type.
9999 (target_dcache_init_p, target_dcache_invalidate)
10000 (target_dcache_get, target_dcache_get_or_init)
10001 (_initialize_target_dcache): Update.
10002 * dcache.h (struct dcache_deleter): New.
10003
100042019-05-08 Tom Tromey <tom@tromey.com>
10005
10006 * symtab.c (struct symbol_cache): Add destructor and
10007 initializers.
10008 (symbol_cache_key): Move. Change type.
10009 (make_symbol_cache, free_symbol_cache): Remove.
10010 (get_symbol_cache): Update.
10011 (symbol_cache_cleanup): Remove.
10012 (ALL_PSPACES, symbol_cache_flush)
10013 (maintenance_print_symbol_cache)
10014 (maintenance_print_symbol_cache_statistics, _initialize_symtab):
10015 Update.
10016
100172019-05-08 Tom Tromey <tom@tromey.com>
10018
10019 * symtab.c (struct main_info): Add destructor and initializers.
10020 (main_progspace_key): Move. Change type.
10021 (get_main_info): Update.
10022 (main_info_cleanup): Remove.
10023 (_initialize_symtab): Update.
10024
100252019-05-08 Tom Tromey <tom@tromey.com>
10026
10027 * registry.h (DECLARE_REGISTRY): Define the _key class.
10028
100292019-05-08 Andrew Burgess <andrew.burgess@embecosm.com>
10030
10031 * NEWS: Merge two 'New commands' sections.
10032
100332019-05-08 Joel Brobecker <brobecker@adacore.com>
10034
10035 * ada-valprint.c (ada_val_print_gnat_array): Remove language
10036 parameter and use Ada language definition instead.
10037 (ada_val_print_ptr): Remove unused language parameter.
10038 (ada_val_print_num): Remove language parameter and use Ada language
10039 definition instead.
10040 (ada_val_print_enum, ada_val_print_flt): Remove unused language
10041 parameter.
10042 (ada_val_print_struct_union, ada_val_print_ref): Remove language
10043 parameter and use Ada language definition instead.
10044 (ada_val_print_1): Update all ada_val_print_xxx calls.
10045 Remove language parameter.
10046 (ada_val_print): Update ada_val_print_1 call.
10047
100482019-05-08 Tom Tromey <tromey@adacore.com>
10049
10050 * remote.c (remote_hw_watchpoint_limit)
10051 (remote_hw_watchpoint_length_limit, remote_hw_breakpoint_limit):
10052 Now static.
10053
100542019-05-08 Tom Tromey <tromey@adacore.com>
10055
10056 * maint.c (_initialize_maint_cmds): Move initialization code to
10057 remote.c.
10058 (watchdog, show_watchdog): Move to remote.c.
10059 * remote.c (watchdog, show_watchdog): Move from maint.c. Make
10060 "watchdog" static.
10061 (_initialize_remote): Move initialization code from maint.c.
10062 * defs.h (watchdog): Don't declare.
10063
100642019-05-08 Tom Tromey <tromey@adacore.com>
10065
10066 * tui/tui-interp.c: Include main.h.
10067 * interps.c: Include main.h.
10068 * main.h (interpreter_p): Declare.
10069 * defs.h (interpreter_p): Don't declare.
10070
100712019-05-08 Tom Tromey <tromey@adacore.com>
10072
10073 * dwarf2loc.c: Include dwarf2read.h.
10074 * defs.h (read_unsigned_leb128): Don't declare.
10075 * dwarf2read.h (read_unsigned_leb128): Declare.
10076
100772019-05-08 Tom Tromey <tromey@adacore.com>
10078
10079 * utils.c (fputs_maybe_filtered): Call can_emit_style_escape as a
10080 method.
10081
100822019-05-08 Tom Tromey <tromey@adacore.com>
10083
10084 * utils.c (fputs_maybe_filtered): Reset style after paging, even
10085 when no wrap column is set.
10086
100872019-05-08 Tom Tromey <tromey@adacore.com>
10088
10089 * c-lang.c (c_get_string): Handle non-C-style arrays.
10090
100912019-05-08 Tom Tromey <tromey@adacore.com>
10092
10093 * typeprint.c (print_offset_data::update): Print the bit offset,
10094 not the number of bits remaining.
10095
100962019-05-08 Tom Tromey <tromey@adacore.com>
10097
10098 * typeprint.c (print_offset_data::maybe_print_hole): Add extra
10099 padding at end of comment.
10100
101012019-05-08 Tom Tromey <tromey@adacore.com>
10102
10103 * dwarf2loc.c (dwarf2_evaluate_property) <PROP_ADDR_OFFSET>:
10104 Compare main types.
10105
101062019-05-06 Tom Tromey <tom@tromey.com>
10107
10108 * common/scoped_mmap.c: Include common-defs.h.
10109 * common/scoped_mmap.h: Don't include config.h.
10110
101112019-05-04 Tom Tromey <tom@tromey.com>
10112
10113 * aarch64-tdep.c (stack_item_t): Remove typedef and DEF_VEC.
10114 (struct aarch64_call_info): Add initializers.
10115 <si>: Now a std::vector.
10116 (pass_on_stack, aarch64_push_dummy_call): Update.
10117
101182019-05-04 Simon Marchi <simon.marchi@efficios.com>
10119 Tom Tromey <tom@tromey.com>
10120
10121 * ppc-linux-nat.c (thread_points_p): Remove typedef and DEF_VEC.
10122 (ppc_threads): Now a std::vector. Now static.
10123 (hwdebug_find_thread_points_by_tid)
10124 (ppc_linux_nat_target::low_new_thread, ppc_linux_thread_exit):
10125 Update.
10126
101272019-05-04 Tom Tromey <tom@tromey.com>
10128
10129 * arc-tdep.c (arc_tdesc_init): Return bool.
10130
101312019-05-04 Tom Tromey <tom@tromey.com>
10132
10133 * arm-linux-nat.c (arm_linux_nat_target::can_use_hw_breakpoint):
10134 Use gdb_assert_not_reached.
10135
101362019-05-04 Tom Tromey <tom@tromey.com>
10137
10138 * compile/compile-cplus-types.c (compile_cplus_convert_enum): Use
10139 "false".
10140
101412019-05-04 Tom Tromey <tom@tromey.com>
10142
10143 * arc-tdep.c (arc_tdesc_init): Use bool.
10144
101452019-05-04 Tom Tromey <tom@tromey.com>
10146
10147 * stack.c (select_frame_for_mi): Use "false", not "FALSE".
10148
101492019-05-04 Tom Tromey <tom@tromey.com>
10150
10151 * cli/cli-cmds.c (valid_command_p): Return bool.
10152
101532019-05-04 Tom Tromey <tom@tromey.com>
10154
10155 * cli/cli-decode.c (valid_user_defined_cmd_name_p): Return bool.
10156 * command.h (valid_user_defined_cmd_name_p): Channge return type.
10157
101582019-05-04 Raul Tambre <raul@tambre.ee>
10159
10160 * python/lib/gdb/prompt.py (_ExtendedPrompt)
10161 <before_prompt_hook, get_show_string>: Fix incorrect use of 'is'
10162 operator for comparison.
10163
101642019-05-04 Tom Tromey <tom@tromey.com>
10165
10166 * psymtab.c (psymbol_name_matches, match_partial_symbol)
10167 (lookup_partial_symbol, print_partial_symbols)
10168 (recursively_search_psymtabs, sort_pst_symbols, psymbol_hash)
10169 (psymbol_compare): Update.
10170 (add_psymbol_to_bcache): Clear the entire psymbol.
10171 (maintenance_check_psymtabs): Update.
10172 * psympriv.h (struct partial_symbol): Don't derive from
10173 general_symbol_info.
10174 <obj_section, unrelocated_address, address,
10175 set_unrelocated_address>: Update.
10176 <ginfo>: New member.
10177 * dwarf-index-write.c (write_psymbols, debug_names::insert)
10178 (debug_names::write_psymbols): Update.
10179
101802019-05-04 Tom de Vries <tdevries@suse.de>
10181
10182 * contrib/cc-with-tweaks.sh: Support -n arg.
10183
101842019-05-04 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10185
10186 * corelow.c (core_target::detach): Ensure frame cache and
10187 register caches are cleared.
10188 inferior.c (exit_inferior_1): Likewise.
10189
101902019-05-03 Sandra Loosemore <sandra@codesourcery.com>
10191 Tom Tromey <tom@tromey.com>
10192
10193 * dictionary.c (collate_pending_symbols_by_language): Remove
10194 "struct" from foreach.
10195 * symtab.c (lookup_global_symbol_from_objfile)
10196 (lookup_symbol_in_objfile_from_linkage_name): Remove "struct" from
10197 foreach.
10198 * ser-tcp.c (net_open): Remove "struct" from foreach.
10199 * objfiles.c (objfile_relocate, objfile_rebase)
10200 (objfile_has_symbols): Remove "struct" from foreach.
10201 * minsyms.c (lookup_minimal_symbol_by_pc_section): Remove "struct"
10202 from foreach.
10203 * dwarf2read.c (handle_struct_member_die): Remove "struct" from
10204 foreach.
10205 * darwin-nat.c (thread_info_from_private_thread_info): Remove
10206 "struct" from foreach.
10207 * ada-lang.c (create_excep_cond_exprs)
10208 (ada_exception_catchpoint_cond_string): Remove "struct" from
10209 foreach.
10210
102112019-05-03 Tom Tromey <tromey@adacore.com>
10212
10213 * ada-exp.y (convert_char_literal): Check suffix of each
10214 enumerator.
10215
102162019-05-03 Dilyan Palauzov <dilyan.palauzov@aegee.org>
10217
10218 PR ada/21406:
10219 * ada-exp.y (yywrap): Don't define.
10220 * ada-lex.l (%option): Add noyywrap
10221 (yywrap): Remove.
10222
102232019-05-03 Eli Zaretskii <eliz@gnu.org>
10224
10225 * common/common-defs.h [__MINGW32__ || __CYGWIN__]: Define
10226 _WIN32_WINNT to the XP level, unless already defined to a higher
10227 level.
10228
10229 * unittests/parse-connection-spec-selftests.c:
10230 * ser-tcp.c:
10231 * common/netstuff.c [USE_WIN32API]: Remove the _WIN32_WINNT
10232 override.
10233
10234 * symfile.c (find_separate_debug_file): Remove colon from the
10235 drive spec of DOS/Windows file names of the target, so that the
10236 file name produced from DEBUGDIR and the target's directory will
10237 be valid on DOS/Windows systems.
10238
102392019-05-02 Andrew Burgess <andrew.burgess@embecosm.com>
10240
10241 * rust-lang.c (val_print_struct): Handle printing structures
10242 containing strings.
10243
102442019-05-02 Tom Tromey <tromey@adacore.com>
10245
10246 * valarith.c (_initialize_valarith): Remove.
10247
102482019-05-01 Tom Tromey <tromey@adacore.com>
10249
10250 * ada-lang.c (ada_value_primitive_field): Treat more fields as
10251 bitfields.
10252
102532019-05-01 Tom Tromey <tromey@adacore.com>
10254
10255 * ada-lang.c (ada_value_assign): Correctly compute starting offset
10256 for big-endian copies.
10257
102582019-04-30 Ali Tamur <tamur@google.com>
10259 * gdb/dwarf2read.c (read_3_bytes): New declaration.
10260 (read_attribute_value): Added DW_FORM_strx1-4 cases.
10261 (read_3_bytes): New function.
10262
102632019-04-30 Joel Brobecker <brobecker@adacore.com>
10264
10265 * windows-nat.c (main_thread_id): Delete.
10266 (handle_output_debug_string): Replace main_thread_id by
10267 current_event.dwThreadId.
10268 (fake_create_process): Likewise.
10269 (get_windows_debug_event) <CREATE_PROCESS_DEBUG_EVENT>:
10270 Do not set main_thread_id.
10271 <LOAD_DLL_DEBUG_EVENT>: Replace main_thread_id by
10272 current_event.dwThreadId.
10273 <UNLOAD_DLL_DEBUG_EVENT>: Likewise.
10274
102752019-04-30 Joel Brobecker <brobecker@adacore.com>
10276
10277 * windows-nat.c (get_windows_debug_event) <EXIT_PROCESS_DEBUG_EVENT>:
10278 Use current_event.dwThreadId instead of main_thread_id.
10279
102802019-04-30 Tom Tromey <tromey@adacore.com>
10281
10282 * ada-lang.c (ada_lookup_simple_minsyms): New function.
10283 (create_excep_cond_exprs): Iterate over program spaces.
10284 (ada_exception_catchpoint_cond_string): Examine all minimal
10285 symbols for exception types.
10286
102872019-04-30 Tom Tromey <tromey@adacore.com>
10288
10289 PR c++/24470:
10290 * dwarf2read.c (process_structure_scope): Handle case where type
10291 has template parameters but no symbol was created.
10292
102932019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
10294 Chris January <chris.january@arm.com>
10295
10296 * f-typeprint.c (f_type_print_base): Print 'allocatable' type
10297 qualifier.
10298 * gdbtypes.h (TYPE_IS_ALLOCATABLE): Define.
10299
103002019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
10301
10302 * f-typeprint.c (f_print_type): Update rules for printing
10303 whitespace.
10304 (f_type_print_varspec_suffix): Likewise.
10305
103062019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
10307 Chris January <chris.january@arm.com>
10308
10309 * f-typeprint.c (f_type_print_varspec_suffix): Handle printing
10310 function arguments.
10311
103122019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
10313
10314 * f-lang.c (build_fortran_types): Change name of void type to
10315 lower case.
10316 * f-typeprint.c (f_type_print_base): Print the name of the void
10317 type, rather than a fixed string.
10318 * f-valprint.c (f_decorations): Use lower case void string.
10319
103202019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
10321 Chris January <chris.january@arm.com>
10322
10323 * dwarf2read.c (dwarf2_init_complex_target_type): Use different
10324 types for Fortran.
10325
103262019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
10327 Chris January <chris.january@arm.com>
10328 David Lecomber <david.lecomber@arm.com>
10329
10330 * f-exp.y (BINOP_INTRINSIC): New token.
10331 (exp): New parser rule handling BINOP_INTRINSIC.
10332 (f77_keywords): Add new builtin procedures.
10333 * f-lang.c (evaluate_subexp_f): Handle BINOP_MOD, UNOP_FORTRAN_CEILING,
10334 UNOP_FORTRAN_FLOOR, BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
10335 (operator_length_f): Handle UNOP_FORTRAN_CEILING,
10336 UNOP_FORTRAN_FLOOR, BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
10337 (print_unop_subexp_f): New function.
10338 (print_binop_subexp_f): New function.
10339 (print_subexp_f): Handle UNOP_FORTRAN_CEILING, UNOP_FORTRAN_FLOOR,
10340 BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
10341 (dump_subexp_body_f): Likewise.
10342 (operator_check_f): Likewise.
10343 * fortran-operator.def: Add UNOP_FORTRAN_CEILING, UNOP_FORTRAN_FLOOR,
10344 BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX
10345
103462019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
10347
10348 * gdb/expprint.c (dump_subexp_body_standard): Remove use of
10349 UNOP_KIND.
10350 * gdb/expression.h (exp_opcode): Include 'fortran-operator.def'.
10351 * gdb/f-exp.y (exp): Rename UNOP_KIND to UNOP_FORTRAN_KIND.
10352 * gdb/f-lang.c (evaluate_subexp_f): Likewise.
10353 (operator_length_f): New fuction.
10354 (print_subexp_f): New function.
10355 (op_name_f): New function.
10356 (dump_subexp_body_f): New function.
10357 (operator_check_f): New function.
10358 (exp_descriptor_f): Replace standard expression handling functions
10359 with new functions.
10360 * gdb/fortran-operator.def: New file.
10361 * gdb/parse.c (operator_length_standard): Remove use of UNOP_KIND.
10362 * gdb/std-operator.def: Remove UNOP_KIND.
10363
103642019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
10365
10366 * std-operator.def: Remove unbalanced, stray double quote
10367 character.
10368
103692019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
10370 Chris January <chris.january@arm.com>
10371 Daniel Everett <daniel.everett@arm.com>
10372 Nick Forrington <nick.forrington@arm.com>
10373 Richard Bunt <richard.bunt@arm.com>
10374
10375 * cp-valprint.c (cp_print_value_fields): Allow an additional level
10376 of depth when printing anonymous structs or unions.
10377 * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer):
10378 Don't print either the top-level value, or the children if the
10379 max-depth is exceeded.
10380 (ppscm_print_children): When printing the key of a map, allow one
10381 extra level of depth.
10382 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Don't
10383 print either the top-level value, or the children if the max-depth
10384 is exceeded.
10385 (print_children): When printing the key of a map, allow one extra
10386 level of depth.
10387 * python/py-value.c (valpy_format_string): Add max_depth keyword.
10388 * valprint.c: (PRINT_MAX_DEPTH_DEFAULT): Define.
10389 (user_print_options): Initialise max_depth field.
10390 (val_print_scalar_or_string_type_p): New function.
10391 (val_print): Check to see if the max depth has been reached.
10392 (val_print_check_max_depth): Define new function.
10393 (show_print_max_depth): New function.
10394 (_initialize_valprint): Add 'print max-depth' option.
10395 * valprint.h (struct value_print_options) <max_depth>: New field.
10396 (val_print_check_max_depth): Declare new function.
10397 * NEWS: Document new feature.
10398
103992019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
10400
10401 * ada-lang.c (ada_language_defn): Initialise new field.
10402 * c-lang.c (c_is_string_type_p): New function.
10403 (c_language_defn): Initialise new field.
10404 (cplus_language_defn): Initialise new field.
10405 (asm_language_defn): Initialise new field.
10406 (minimal_language_defn): Initialise new field.
10407 * c-lang.h (c_is_string_type_p): Declare new function.
10408 * d-lang.c (d_language_defn): Initialise new field.
10409 * f-lang.c (f_is_string_type_p): New function.
10410 (f_language_defn): Initialise new field.
10411 * go-lang.c (go_is_string_type_p): New function.
10412 (go_language_defn): Initialise new field.
10413 * language.c (default_is_string_type_p): New function.
10414 (unknown_language_defn): Initialise new field.
10415 (auto_language_defn): Initialise new field.
10416 * language.h (struct language_defn) <la_is_string_type_p>: New
10417 member variable.
10418 (default_is_string_type_p): Declare new function.
10419 * m2-lang.c (m2_language_defn): Initialise new field.
10420 * objc-lang.c (objc_language_defn): Initialise new field.
10421 * opencl-lang.c (opencl_language_defn): Initialise new field.
10422 * p-lang.c (pascal_is_string_type_p): New function.
10423 (pascal_language_defn): Initialise new field.
10424 * rust-lang.c (rust_is_string_type_p): New function.
10425 (rust_language_defn): Initialise new field.
10426
104272019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
10428
10429 * language.h (struct language_defn) <la_struct_too_deep_ellipsis>:
10430 New field.
10431 * ada-lang.c (ada_language_defn): Initialise new field.
10432 * c-lang.c (c_language_defn): Likewise.
10433 (cplus_language_defn): Likewise.
10434 (asm_language_defn): Likewise.
10435 (minimal_language_defn): Likewise.
10436 * d-lang.c (d_language_defn): Likewise.
10437 * f-lang.c (f_language_defn): Likewise.
10438 * go-lang.c (go_language_defn): Likewise.
10439 * language.c (unknown_language_defn): Likewise.
10440 (auto_language_defn): Likewise.
10441 * m2-lang.c (m2_language_defn): Likewise.
10442 * objc-lang.c (objc_language_defn): Likewise.
10443 * opencl-lang.c (opencl_language_defn): Likewise.
10444 * p-lang.c (pascal_language_defn): Likewise.
10445 * rust-lang.c (rust_language_defn): Likewise.
10446
104472019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
10448
10449 * ada-lang.c (ada_is_character_type): Change return type to bool.
10450 (ada_is_string_type): Likewise.
10451 * ada-lang.h (ada_is_character_type): Update declaration
10452 (ada_is_string_type): Likewise.
10453
104542019-04-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10455
10456 Support style in 'frame|thread apply'
10457
10458 * gdbcmd.h (execute_command_to_string): New term_out parameter.
10459 * record.c (record_start, record_stop): Update callers of
10460 execute_command_to_string with false.
10461 * guile/guile.c (gdbscm_execute_gdb_command): Likewise.
10462 * ui-file.h (class ui_file): New term_out and can_emit_style_escape
10463 methods.
10464 (class string_file): New constructor with term_out parameter.
10465 Override methods term_out and can_emit_style_escape. New member
10466 term_out.
10467 (class stdio_file): Override can_emit_style_escape.
10468 (class tee_file): Override term_out and can_emit_style_escape.
10469 * utils.h (can_emit_style_escape): Remove.
10470 * utils.c (can_emit_style_escape): Likewise.
10471 Update all callers of can_emit_style_escape (SOMESTREAM) to
10472 SOMESTREAM->can_emit_style_escape.
10473 * source-cache.c (source_cache::get_source_lines): Likewise.
10474 * stack.c (frame_apply_command_count): Call execute_command_to_string
10475 passing the term_out characteristic of the current gdb_stdout.
10476 * thread.c (thr_try_catch_cmd): Likewise.
10477 * top.c (execute_command_to_string): pass term_out parameter
10478 to construct the string_file for the command output.
10479 * ui-file.c (term_cli_styling): New function (most code moved
10480 from utils.c can_emit_style_escape).
10481 (string_file::string_file, string_file::can_emit_style_escape,
10482 stdio_file::can_emit_style_escape, tee_file::term_out,
10483 tee_file::can_emit_style_escape): New functions.
10484
104852019-04-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10486
10487 * NEWS: Mention the new set|show may-call-functions.
10488 * infcall.c (may_call_functions_p): New variable.
10489 (show_may_call_functions_p): New function.
10490 (call_function_by_hand_dummy): Throws an error if not
10491 may-call-functions.
10492 (_initialize_infcall): Call add_setshow_boolean_cmd for
10493 may-call-functions.
10494
104952019-04-25 Keith Seitz <keiths@redhat.com>
10496
10497 PR c++/24367
10498 * cp-support.c (inspect_type): Don't attempt substitutions
10499 of symbol with the same name.
10500
105012019-04-25 Tom Tromey <tromey@adacore.com>
10502
10503 PR gdb/24475:
10504 * event-top.c (gdb_rl_callback_handler): Make "gdb_rl_expt"
10505 static.
10506
105072019-04-25 Tom Tromey <tromey@adacore.com>
10508
10509 * xml-support.c (struct gdb_xml_parser) <set_error>: Take an
10510 rvalue reference.
10511 (gdb_xml_start_element_wrapper, gdb_xml_end_element_wrapper)
10512 (gdb_xml_parser::parse): Use std::move.
10513 * python/python-internal.h (gdbpy_convert_exception): Take a const
10514 reference.
10515 * python/py-value.c (valpy_getitem, valpy_nonzero): Use
10516 std::move.
10517 * python/py-utils.c (gdbpy_convert_exception): Take a const
10518 reference.
10519 * python/py-inferior.c (infpy_write_memory, infpy_search_memory):
10520 Use std::move.
10521 * python/py-breakpoint.c (bppy_set_condition, bppy_set_commands):
10522 Use std::move.
10523 * mi/mi-main.c (mi_print_exception): Take a const reference.
10524 * main.c (handle_command_errors): Take a const reference.
10525 * linespec.c (parse_linespec): Use std::move.
10526 * infcall.c (run_inferior_call): Use std::move.
10527 (call_function_by_hand_dummy): Use std::move.
10528 * exec.c (try_open_exec_file): Use std::move.
10529 * exceptions.h (exception_print, exception_fprintf)
10530 (exception_print_same): Update.
10531 * exceptions.c (print_exception, exception_print)
10532 (exception_fprintf, exception_print_same): Change parameters to
10533 const reference.
10534 * event-top.c (gdb_rl_callback_read_char_wrapper): Update.
10535 * common/new-op.c: Use std::move.
10536 * common/common-exceptions.h (struct gdb_exception): Add move
10537 constructor.
10538 (struct gdb_exception_error, struct gdb_exception_quit, struct
10539 gdb_quit_bad_alloc): Change constructor to move constructor.
10540 (throw_exception): Change parameter to rvalue reference.
10541 * common/common-exceptions.c (throw_exception): Take rvalue
10542 reference.
10543 * cli/cli-interp.c (safe_execute_command): Use std::move.
10544 * breakpoint.c (insert_bp_location, location_to_sals): Use
10545 std::move.
10546
105472019-04-25 Tom Tromey <tromey@adacore.com>
10548
10549 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception)
10550 (gdbscm_throw_gdb_exception): Take a gdbscm_gdb_exception.
10551 * guile/scm-block.c, guile/scm-breakpoint.c, guile/scm-cmd.c,
10552 guile/scm-disasm.c, guile/scm-frame.c, guile/scm-lazy-string.c,
10553 guile/scm-math.c, guile/scm-param.c, guile/scm-ports.c,
10554 guile/scm-symbol.c, guile/scm-symtab.c, guile/scm-type.c,
10555 guile/scm-value.c: Use unpack.
10556 * guile/guile-internal.h (gdbscm_scm_from_gdb_exception): Take a
10557 gdbscm_gdb_exception.
10558 (gdbscm_throw_gdb_exception): Likewise.
10559 (struct gdbscm_gdb_exception): New.
10560 (unpack): New function.
10561 (gdbscm_wrap): Use unpack.
10562
105632019-04-25 Tom Tromey <tromey@adacore.com>
10564
10565 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept)
10566 (gdb_rl_callback_handler): Use std::move.
10567 * common/common-exceptions.h (struct gdb_exception): Add move
10568 assignment operator.
10569 (throw_exception_sjlj): Change "exception" to const reference.
10570 * common/common-exceptions.c (exceptions_state_mc_catch): Update.
10571 (throw_exception_sjlj): Change "exception" to const reference.
10572
105732019-04-25 Tom Tromey <tromey@adacore.com>
10574
10575 * xml-support.c (gdb_xml_parser::gdb_xml_parser): Update.
10576 * python/py-value.c (valpy_getitem, valpy_nonzero): Update.
10577 * python/py-inferior.c (infpy_write_memory, infpy_search_memory):
10578 Update.
10579 * python/py-breakpoint.c (bppy_set_condition, bppy_set_commands):
10580 Update.
10581 * mi/mi-interp.c (mi_interp::exec): Update.
10582 * linespec.c (parse_linespec): Update.
10583 * infcall.c (run_inferior_call): Update.
10584 * guile/scm-value.c (gdbscm_value_to_lazy_string): Update.
10585 * guile/scm-symbol.c (gdbscm_lookup_symbol)
10586 (gdbscm_lookup_global_symbol): Update.
10587 * guile/scm-param.c (gdbscm_parameter_value): Update.
10588 * guile/scm-frame.c (gdbscm_frame_read_register)
10589 (gdbscm_frame_read_var): Update.
10590 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Update.
10591 * exec.c (try_open_exec_file): Update.
10592 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept)
10593 (gdb_rl_callback_handler): Update.
10594 * common/common-exceptions.h (exception_none): Don't declare.
10595 * common/common-exceptions.c (exception_none): Don't define.
10596 (struct catcher) <exception>: Update.
10597 * cli/cli-interp.c (safe_execute_command): Update.
10598 * breakpoint.c (insert_bp_location, location_to_sals): Update.
10599
106002019-04-25 Ali Tamur <tamur@google.com>
10601
10602 * dwarf2read.c (skip_one_die): Add DW_FORM_strx.
10603 (read_attribute_value): Likewise.
10604 (dwarf2_read_addr_index): Update comment.
10605 (read_str_index): Add DW_FORM_strx.
10606 (dwarf2_string_attr): Likewise.
10607 (dwarf2_const_value_attr): Likewise.
10608 (dump_die_shallow): Likewise.
10609 (dwarf2_fetch_constant_bytes): Likewise.
10610 (skip_form_bytes): Likewise.
10611 * testsuite/lib/dwarf.exp (_handle_DW_FORM): Add DW_FORM_strx.
10612
106132019-04-25 Sergio Durigan Junior <sergiodj@redhat.com>
10614
10615 PR corefiles/11608
10616 PR corefiles/18187
10617 * linux-tdep.c (dump_mapping_p): Add new parameters ADDR and
10618 OFFSET. Verify if current mapping contains an ELF header.
10619 (linux_find_memory_regions_full): Adjust call to
10620 dump_mapping_p.
10621
106222019-04-25 Sandra Loosemore <sandra@codesourcery.com>
10623 Kang Li <kanglictf@gmail.com>
10624
10625 PR gdb/21600
10626
10627 * dwarf2-frame.c (read_initial_length): Be consistent about using
10628 unsigned representation of length.
10629 (decode_frame_entry_1): Likewise. Check for wraparound of
10630 end pointer as well as buffer overflow.
10631
106322019-04-24 Sergio Durigan Junior <sergiodj@redhat.com>
10633
10634 * aarch64-tdep.c (aarch64_gdbarch_init): Use "pulongest" to print
10635 "vq".
10636
106372019-04-24 Tom Tromey <tromey@adacore.com>
10638
10639 * amd64-tdep.c (amd64_has_unaligned_fields): Ignore bitfields.
10640
106412019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10642
10643 * s12z-tdep.c (s12z_unwind_pc): Delete.
10644 (s12z_unwind_sp): Delete.
10645 (s12z_gdbarch_init): Don't register deleted functions with
10646 gdbarch.
10647
106482019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10649
10650 * rl78-tdep.c (rl78_unwind_sp): Delete.
10651 (rl78_gdbarch_init): Don't register deleted function with gdbarch.
10652
106532019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10654
10655 * xstormy16-tdep.c (xstormy16_unwind_sp): Delete.
10656 (xstormy16_unwind_pc): Delete.
10657 (xstormy16_dummy_id): Delete.
10658 (xstormy16_gdbarch_init): Don't register deleted functions with
10659 gdbarch.
10660
106612019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10662
10663 * vax-tdep.c (vax_unwind_pc): Delete.
10664 (vax_gdbarch_init): Don't register deleted function with gdbarch.
10665
106662019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10667
10668 * v850-tdep.c (v850_unwind_sp): Delete.
10669 (v850_unwind_pc): Delete.
10670 (v850_dummy_id): Delete.
10671 (v850_gdbarch_init): Don't register deleted functions with
10672 gdbarch.
10673
106742019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10675
10676 * tilegx-tdep.c (tilegx_unwind_sp): Delete.
10677 (tilegx_unwind_pc): Delete.
10678 (tilegx_unwind_dummy_id): Delete.
10679 (tilegx_gdbarch_init): Don't register deleted functions with
10680 gdbarch.
10681
106822019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10683
10684 * tic6x-tdep.c (tic6x_unwind_sp): Delete.
10685 (tic6x_dummy_id): Delete.
10686 (tic6x_gdbarch_init): Don't register deleted functions with
10687 gdbarch.
10688
106892019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10690
10691 * sparc-tdep.c (sparc_unwind_pc): Delete.
10692 (sparc32_gdbarch_init): Don't register deleted function with
10693 gdbarch.
10694
106952019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10696
10697 * sh-tdep.c (sh_unwind_sp): Delete.
10698 (sh_unwind_pc): Delete.
10699 (sh_dummy_id): Delete.
10700 (sh_gdbarch_init): Don't register deleted functions with
10701 gdbarch.
10702
107032019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10704
10705 * score-tdep.c (score_unwind_sp): Delete.
10706 (score_unwind_pc): Delete.
10707 (score_dummy_id): Delete.
10708 (score_gdbarch_init): Don't register deleted functions with
10709 gdbarch.
10710
107112019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10712
10713 * rx-tdep.c (rx_unwind_pc): Delete.
10714 (rx_unwind_sp): Delete.
10715 (rx_dummy_id): Delete.
10716 (rx_gdbarch_init): Don't register deleted functions with
10717 gdbarch. Update comment.
10718
107192019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10720
10721 * rs6000-tdep.c (rs6000_unwind_pc): Delete.
10722 (rs6000_dummy_id): Delete.
10723 (rs6000_gdbarch_init): Don't register deleted functions with
10724 gdbarch.
10725
107262019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10727
10728 * or1k-tdep.c (or1k_dummy_id): Delete.
10729 (or1k_gdbarch_init): Don't register deleted function with gdbarch.
10730
107312019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10732
10733 * nios2-tdep.c (nios2_dummy_id): Delete.
10734 (nios2_unwind_sp): Delete.
10735 (nios2_gdbarch_init): Don't register deleted functions with
10736 gdbarch.
10737
107382019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10739
10740 * nds32-tdep.c (nds32_dummy_id): Delete.
10741 (nds32_unwind_pc): Delete.
10742 (nds32_unwind_sp): Delete.
10743 (nds32_gdbarch_init): Don't register deleted functions with
10744 gdbarch.
10745
107462019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10747
10748 * msp430-tdep.c (msp430_unwind_pc): Delete.
10749 (msp430_unwind_sp): Delete.
10750 (msp430_dummy_id): Delete.
10751 (msp430_gdbarch_init): Don't register deleted functions with
10752 gdbarch.
10753
107542019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10755
10756 * moxie-tdep.c (moxie_unwind_sp): Delete.
10757 (moxie_unwind_pc): Delete.
10758 (moxie_dummy_id): Delete.
10759 (moxie_gdbarch_init): Don't register deleted functions with
10760 gdbarch.
10761
107622019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10763
10764 * mn10300-tdep.c (mn10300_dummy_id): Delete.
10765 (mn10300_unwind_pc): Delete.
10766 (mn10300_unwind_sp): Delete.
10767 (mn10300_push_dummy_call): Use gdbarch_unwind_sp not
10768 mn10300_unwind_sp.
10769 (mn10300_frame_unwind_init): Don't register deleted functions with
10770 gdbarch.
10771
107722019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10773
10774 * mep-tdep.c (mep_unwind_pc): Delete.
10775 (mep_unwind_sp): Delete.
10776 (mep_dummy_id): Delete.
10777 (mep_gdbarch_init): Don't register deleted functions with
10778 gdbarch.
10779
107802019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10781
10782 * m68hc11-tdep.c (m68hc11_unwind_pc): Delete.
10783 (m68hc11_unwind_sp): Delete.
10784 (m68hc11_gdbarch_init): Don't register deleted functions with
10785 gdbarch.
10786
107872019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10788
10789 * m32r-tdep.c (m32r_unwind_sp): Delete.
10790 (m32r_unwind_pc): Delete.
10791 (m32r_dummy_id): Delete.
10792 (m32r_gdbarch_init): Don't register deleted functions with
10793 gdbarch.
10794
107952019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10796
10797 * m32c-tdep.c (m32c_unwind_pc): Delete.
10798 (m32c_unwind_sp): Delete.
10799 (m32c_dummy_id): Delete.
10800 (m32c_gdbarch_init): Don't register deleted functions with
10801 gdbarch.
10802
108032019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10804
10805 * gdb/lm32-tdep.c (lm32_unwind_sp): Delete.
10806 (lm32_unwind_pc): Delete.
10807 (lm32_dummy_id): Delete.
10808 (lm32_gdbarch_init): Don't register deleted functions with
10809 gdbarch.
10810
108112019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10812
10813 * gdb/iq2000-tdep.c (iq2000_unwind_sp): Delete.
10814 (iq2000_unwind_pc): Delete.
10815 (iq2000_dummy_id): Delete.
10816 (iq2000_gdbarch_init): Don't register deleted functions with
10817 gdbarch.
10818
108192019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10820
10821 * nds32-tdep.c (nds32_type_align): Delete.
10822 (nds32_push_dummy_call): Use type_align instead.
10823
108242019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10825
10826 * arm-tdep.c (arm_type_align): Only handle vector override case.
10827 (arm_push_dummy_call): Use type_align.
10828 (arm_gdbarch_init): Register arm_type_align gdbarch function.
10829
108302019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10831
10832 * aarch64-tdep.c (aarch64_type_align): Only handle vector override
10833 case.
10834 (pass_on_stack): Use type_align.
10835 (aarch64_gdbarch_init): Register aarch64_type_align gdbarch
10836 function.
10837
108382019-04-23 Tom Tromey <tromey@adacore.com>
10839
10840 * dwarf2read.c (line_header::file_name_at): Remove unused
10841 overload.
10842
108432019-04-23 Tom de Vries <tdevries@suse.de>
10844
10845 PR gdb/24438
10846 * contrib/cc-with-tweaks.sh: Remove superfluous .alt file after dwz
10847 invocation.
10848
10849
108502019-03-27 Ali Tamur <tamur@google.com>
10851
10852 * dwarf2-frame.c(dwarf_expr_executor::get_addr_index): Update comment
10853 * dwarf2expr.c(dwarf_expr_context::execute_stack_op): Add DW_OP_addrx
10854 * dwarf2expr.h(dwarf_expr_context::offset): Update comment
10855 (dwarf_expr_context::get_addr_index): Likewise
10856 * dwarf2loc.c(dwarf_evaluate_loc_desc::get_addr_index): Likewise
10857 (symbol_needs_eval_context::get_addr_index): Likewise
10858 (disassemble_dwarf_expression): Add DW_OP_addrx
10859 * dwarf2read.c(attr_value_as_address): Add DW_FORM_addrx
10860 (read_cutu_die_from_dwo): Update comment
10861 (skip_one_die): Add DW_FORM_addrx
10862 (read_attribute_value): Likewise
10863 (var_decode_location): Add DW_OP_addrx
10864 (dwarf2_const_value_attr): Add DW_FORM_addrx
10865 (dump_die_shallow): Likewise
10866 (dwarf2_fetch_constant_bytes): Likewise
10867 (decode_locdesc): Add DW_OP_addrx
10868 (skip_form_bytes): Add DW_FORM_addrx
10869
108702019-04-22 Ali Tamur <tamur@google.com>
10871
10872 * MAINTAINERS (Write After Approval): Add self.
10873
108742019-04-22 Simon Marchi <simon.marchi@efficios.com>
10875
10876 * solib-svr4.c (get_svr4_info): Add pspace parameter.
10877 (svr4_keep_data_in_core): Pass current_program_space to get_svr4_info.
10878 (open_symbol_file_object): Likewise.
10879 (svr4_default_sos): Add info parameter.
10880 (svr4_read_so_list): Likewise.
10881 (svr4_current_sos_direct): Adjust functions calls to pass down
10882 info.
10883 (svr4_current_sos_1): Add info parameter.
10884 (svr4_current_sos): Call get_svr4_info, pass info down to
10885 svr4_current_sos_1.
10886 (svr4_fetch_objfile_link_map): Pass objfile->pspace to
10887 get_svr4_info.
10888 (svr4_in_dynsym_resolve_code): Pass current_program_space to
10889 get_svr4_info.
10890 (probes_table_htab_remove_objfile_probes): Pass objfile->pspace
10891 to get_svr4_info.
10892 (probes_table_remove_objfile_probes): Likewise.
10893 (register_solib_event_probe): Add info parameter.
10894 (solist_update_incremental): Pass info parameter down to
10895 svr4_read_so_list.
10896 (disable_probes_interface): Add info parameter.
10897 (svr4_handle_solib_event): Pass current_program_space to
10898 get_svr4_info. Adjust disable_probes_interface cleanup.
10899 (svr4_create_probe_breakpoints): Add info parameter, pass it
10900 down to register_solib_event_probe.
10901 (svr4_create_solib_event_breakpoints): Add info parameter,
10902 pass it down to svr4_create_probe_breakpoints.
10903 (enable_break): Pass info down to
10904 svr4_create_solib_event_breakpoints.
10905 (svr4_solib_create_inferior_hook): Pass current_program_space to
10906 get_svr4_info.
10907 (svr4_clear_solib): Likewise.
10908
109092019-04-22 Pedro Alves <palves@redhat.com>
10910
10911 * solib-svr4.c (svr4_free_objfile_observer): New.
10912 (probe_and_action::objfile): New field.
10913 (probes_table_htab_remove_objfile_probes)
10914 (probes_table_remove_objfile_probes): New functions.
10915 (register_solib_event_probe): Add 'objfile' parameter. Store it
10916 in the new probe_and_action. Don't store the probe in 'lookup'.
10917 (svr4_create_probe_breakpoints): Pass objfile to
10918 register_solib_event_probe.
10919 (_initialize_svr4_solib): Register a free_objfile observer.
10920
109212019-04-19 Tom Tromey <tom@tromey.com>
10922
10923 * common/queue.h: Remove.
10924
109252019-04-19 Tom Tromey <tom@tromey.com>
10926
10927 * event-loop.c: Don't include "common/queue.h".
10928
109292019-04-19 Tom Tromey <tom@tromey.com>
10930
10931 * remote.c (remote_target): Use delete.
10932 * remote-notif.h: Include <list>, not "common/queue.h".
10933 (notif_client_p): Remove typedef.
10934 (remote_notif_state): Add constructor, destructor, initializer.
10935 <notif_queue>: Now a std::list.
10936 (remote_notif_state_xfree): Don't declare.
10937 * remote-notif.c (remote_notif_process, handle_notification)
10938 (remote_notif_state_allocate): Update.
10939 (~remote_notif_state): Rename from remote_notif_state_xfree.
10940
109412019-04-19 Tom Tromey <tom@tromey.com>
10942
10943 * symfile.c (reread_symbols): Update.
10944 * objfiles.c (objfile_register_static_link)
10945 (objfile_lookup_static_link): Update
10946 (~objfile) Don't delete static_links.
10947 * objfiles.h (struct objfile) <static_links>: Now an htab_up.
10948
109492019-04-19 Tom Tromey <tom@tromey.com>
10950
10951 * type-stack.h (struct type_stack) <insert>: Constify string.
10952 * type-stack.c (type_stack::insert): Constify string.
10953 * gdbtypes.h (lookup_template_type): Update.
10954 (address_space_name_to_int): Update.
10955 * gdbtypes.c (address_space_name_to_int): Make space_identifier
10956 const.
10957 (lookup_template_type): Make name const.
10958 * c-exp.y: Update rules.
10959 (lex_one_token, classify_name, classify_inner_name)
10960 (c_print_token): Update.
10961 * p-exp.y: Update rules.
10962 (yylex): Update.
10963 * f-exp.y: Update rules.
10964 (yylex): Update.
10965 * d-exp.y: Update rules.
10966 (lex_one_token, classify_name, classify_inner_name): Update.
10967 * parse.c (write_dollar_variable, copy_name): Return std::string.
10968 * parser-defs.h (copy_name): Change return type.
10969 * m2-exp.y: Update rules.
10970 (yylex): Update.
10971 * go-exp.y (lex_one_token): Update.
10972 Update rules.
10973 (classify_unsafe_function, classify_packaged_name)
10974 (classify_name, yylex): Update.
10975
109762019-04-19 Sergei Trofimovich <siarheit@google.com>
10977
10978 * configure.ac: add --enable-source-highlight switch.
10979 * configure: Regenerate.
10980 * top.c (print_gdb_version): plumb --enable-source-highlight
10981 status to "show configuration".
10982
109832019-04-19 Tom Tromey <tromey@adacore.com>
10984
10985 * ada-lang.c (ada_is_variant_part, ada_to_fixed_type_1):
10986 Check ADA_TYPE_P.
10987 (empty_record, ada_template_to_fixed_record_type_1)
10988 (template_to_static_fixed_type)
10989 (to_record_with_fixed_variant_part): Use INIT_NONE_SPECIFIC.
10990 * cp-abi.c (value_rtti_type): Check HAVE_CPLUS_STRUCT.
10991 * gdbtypes.h (INIT_NONE_SPECIFIC, ADA_TYPE_P): New
10992 macros.
10993
109942019-04-19 Ilya Yu. Malakhov <malakhov@mcst.ru>
10995
10996 PR symtab/24423:
10997 * source.c (print_source_lines_base): Advance "iter" when a
10998 control character is seen.
10999
110002019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11001
11002 * inferior.h (struct infcall_suspend_state_deleter):
11003 Catch exception in destructor to avoid crash.
11004
110052019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11006
11007 * cli/cli-cmds.c (_initialize_cli_cmds): Move "shell" "!" alias
11008 close to the add_com "shell".
11009
110102019-04-18 Tom Tromey <tromey@adacore.com>
11011
11012 * process-stratum-target.h (class process_stratum_target)
11013 <stratum>: Add "final".
11014
110152019-04-17 Tom Tromey <tromey@adacore.com>
11016
11017 * dwarf2read.c (dwarf2_init_complex_target_type): Check "tt"
11018 against nullptr before use.
11019
110202019-04-17 Alan Hayward <alan.hayward@arm.com>
11021
11022 * nat/linux-waitpid.c (linux_debug): Call debug_vprintf.
11023
110242019-04-17 Jim Wilson <jimw@sifive.com>
11025 Andrew Burgess <andrew.burgess@embecosm.com>
11026
11027 * riscv-tdep.c (riscv_breakpoint_kind_from_pc): Hanndle case where
11028 code read might fail, assume 4-byte breakpoint in that case.
11029
110302019-04-15 Leszek Swirski <leszeks@google.com>
11031
11032 * amd64-tdep.c (amd64_classify_aggregate): Use cp_pass_by_reference
11033 rather than a hand-rolled POD check when checking for forced MEMORY
11034 classification.
11035
110362019-04-15 Alan Hayward <alan.hayward@arm.com>
11037
11038 * aarch64-linux-nat.c (store_sveregs_to_thread): Set vector length.
11039 * nat/aarch64-sve-linux-ptrace.c (aarch64_sve_set_vq): New
11040 function.
11041 (aarch64_sve_regs_copy_to_reg_buf): Remove VG checks.
11042 (aarch64_sve_regs_copy_from_reg_buf): Likewise.
11043 * nat/aarch64-sve-linux-ptrace.h (aarch64_sve_set_vq): New
11044 declaration.
11045
110462019-04-15 Alan Hayward <alan.hayward@arm.com>
11047
11048 * aarch64-linux-nat.c
11049 (aarch64_linux_nat_target::thread_architecture): Add override.
11050 * aarch64-tdep.c (aarch64_gdbarch_init): Ensure different tdesc for
11051 each VQ.
11052
110532019-04-15 Alan Hayward <alan.hayward@arm.com>
11054
11055 * aarch64-tdep.c (aarch64_gdbarch_init): Move gdbarch lookup.
11056
110572019-04-13 Andrew Burgess <andrew.burgess@embecosm.com>
11058
11059 * dwarf2read.c (dwarf2_init_complex_target_type): Handle complex
11060 target types of size 96-bits, add some additional comments, and
11061 check that the builtin type we found was the correct size.
11062
110632019-04-12 Eli Zaretskii <eliz@gnu.org>
11064
11065 * utils.c (prompt_for_continue): Don't restore the styling at the
11066 end, as applied_style has the wrong value. This fixes styling in
11067 long lists of file names that are interrupted by the "Continue?"
11068 prompt.
11069
110702019-04-12 Andrew Burgess <andrew.burgess@embecosm.com>
11071
11072 * ada-lang.c (ada_language_defn): Remove use of LANG_MAGIC.
11073 * c-lang.c (c_language_defn): Likewise.
11074 (cplus_language_defn): Likewise.
11075 (asm_language_defn): Likewise.
11076 (minimal_language_defn): Likewise.
11077 * d-lang.c (d_language_defn): Likewise.
11078 * f-lang.c (f_language_defn): Likewise.
11079 * go-lang.c (go_language_defn): Likewise.
11080 * language.c (unknown_language_defn): Likewise.
11081 (auto_language_defn): Likewise.
11082 * language.h (struct language_defn): Remove la_magic field.
11083 (LANG_MAGIC): Delete.
11084 * m2-lang.c (m2_language_defn): Remove use of LANG_MAGIC.
11085 * objc-lang.c (objc_language_defn): Likewise.
11086 * opencl-lang.c (opencl_language_defn): Likewise.
11087 * p-lang.c (pascal_language_defn): Likewise.
11088 * rust-lang.c (rust_language_defn): Likewise.
11089
110902019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
11091
11092 * riscv-tdep.c (riscv_type_align): New function.
11093 (riscv_type_alignment): Delete.
11094 (riscv_arg_location): Use 'type_align'.
11095 (riscv_gdbarch_init): Register riscv_type_align gdbarch function.
11096
110972019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
11098
11099 * gdbtypes.c (type_align): A struct with no non-static fields also
11100 has alignment of 1.
11101
111022019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
11103
11104 * riscv-tdep.c (riscv_call_arg_complex_float): Fix offset of first
11105 component to 0.
11106 (riscv_struct_info::riscv_struct_info): Initialise m_offsets
11107 member.
11108 (riscv_struct_info::analyse): New implementation using new
11109 analyse_inner member function.
11110 (riscv_struct_info::field_offset): New member function.
11111 (riscv_struct_info::m_offsets): New member variable.
11112 (riscv_struct_info::analyse_inner): New private member function,
11113 takes the old implementation of riscv_struct_info::analyse but
11114 extended to track field offsets.
11115 (riscv_call_arg_struct): Update the struct folding special cases
11116 to handle cases where empty C++ structs, which are non-zero
11117 length, are found.
11118 (riscv_arg_location): Initialise the length of each location, a
11119 non-zero length now indicates the location is in use.
11120 (riscv_push_dummy_call): Allow for the first location having a
11121 non-zero offset when setting up arguments.
11122 (riscv_return_value): Likewise, but for return values.
11123
111242019-04-11 Tom Tromey <tromey@adacore.com>
11125
11126 * utils.c (internal_vproblem): Make "msg" const.
11127
111282019-04-11 Alan Hayward <alan.hayward@arm.com>
11129
11130 * aarch64-tdep.c (aarch64_analyze_prologue_test): Reset saved regs.
11131 * trad-frame.c (trad_frame_reset_saved_regs): New function.
11132 (trad_frame_alloc_saved_regs): Call trad_frame_reset_saved_regs.
11133 * trad-frame.h (trad_frame_reset_saved_regs): New declaration.
11134
111352019-04-10 Kevin Buettner <kevinb@redhat.com>
11136
11137 * amd64-linux-nat.c (amd64_linux_collect_native_gregset): New
11138 function.
11139 (fill_gregset): Call amd64_linux_collect_native_gregset instead
11140 of amd64_collect_native_gregset.
11141 (amd64_linux_nat_target::store_registers): Likewise.
11142
111432019-04-10 Tom Tromey <tom@tromey.com>
11144
11145 * symtab.c (lookup_global_symbol_from_objfile)
11146 (lookup_symbol_in_objfile_from_linkage_name): Use the iterator.
11147 * objfiles.h (class separate_debug_iterator): New.
11148 (class separate_debug_range): New.
11149 (struct objfile) <separate_debug_objfiles>: New method.
11150 (objfile_separate_debug_iterate): Don't declare.
11151 * objfiles.c (separate_debug_iterator::operator++): Rename from
11152 objfile_separate_debug_iterate.
11153 (objfile_relocate, objfile_rebase, objfile_has_symbols): Use the
11154 iterator.
11155 * minsyms.c (lookup_minimal_symbol_by_pc_section): Use the
11156 iterator.
11157
111582019-04-10 Tom Tromey <tom@tromey.com>
11159
11160 * symfile.c (reread_symbols): Remove old comment.
11161 * objfiles.c (free_all_objfiles): Fix a typo.
11162
111632019-04-10 Tom Tromey <tom@tromey.com>
11164
11165 * ia64-tdep.c (ia64_get_dyn_info_list): Use foreach.
11166 * minsyms.c (lookup_minimal_symbol): Use foreach.
11167 (lookup_minimal_symbol_text, lookup_minimal_symbol_by_pc_name)
11168 (lookup_minimal_symbol_solib_trampoline): Likewise.
11169 * symfile.c (reread_symbols): Use foreach.
11170
111712019-04-09 Ivan Begert <ivanbegert@gmail.com>
11172 Tom Tromey <tromey@adacore.com>
11173
11174 PR rust/24414:
11175 * rust-exp.y (rust_parser::lex_number): Use strtoulst.
11176 (rust_lex_int_test): Change "value" to be LONGEST.
11177 (rust_lex_tests): Add test for long integer literal.
11178
111792019-04-09 Tom Tromey <tromey@adacore.com>
11180
11181 * remote.c (remote_target::remote_add_inferior): Change fake_pid_p
11182 to bool.
11183 (extended_remote_target::attach): Update.
11184 (remote_target::remote_notice_new_inferior): Update.
11185 (remote_target::add_current_inferior_and_thread): Update.
11186 * inferior.c (exit_inferior_1): Use "false".
11187 * corelow.c (add_to_thread_list): Make fake_pid_p bool.
11188
111892019-04-09 Simon Marchi <simon.marchi@efficios.com>
11190
11191 * infcmd.c (run_command_1): Pass -qualified to tbreak when using
11192 the "start" command.
11193
111942019-04-08 Kevin Buettner <kevinb@redhat.com>
11195
11196 * python/py-inferior.c (infpy_thread_from_thread_handle):
11197 Adjust comments to reflect renaming of thread_from_thread_handle
11198 to thread_from_handle. Adjust keywords. Fix type error message.
11199 (inferior_object_methods): Add thread_from_handle. Retain
11200 thread_from_thread_handle, but mark it as deprecated.
11201
112022019-04-08 Kevin Buettner <kevinb@redhat.com>
11203
11204 * gdbthread.h (find_thread_by_handle): Revise declaration.
11205 * thread.c (find_thread_by_handle): Likewise. Adjust
11206 implementation too.
11207 * python/py-inferior.c (infpy_thread_from_thread_handle): Add
11208 support for buffer objects as handles.
11209
112102019-04-08 Kevin Buettner <kevinb@redhat.com>
11211
11212 * python/py-infthread.c (thpy_thread_handle): New function.
11213 (thread_object_methods): Register thpy_thread_handle.
11214
112152019-04-08 Kevin Buettner <kevinb@redhat.com>
11216
11217 * gdbthread.h (thread_to_thread_handle): Declare.
11218 * thread.c (gdbtypes.h): Include.
11219 (thread_to_thread_handle): New function.
11220
11221 * target.h (struct target_ops): Add thread_info_to_thread_handle.
11222 (target_thread_info_to_thread_handle): Declare.
11223 * target.c (target_thread_info_to_thread_handle): New function.
11224 * target-debug.h (target_debug_print_gdb_byte_vector): Define.
11225 * target-delegates.c: Regenerate.
11226
11227 * linux-thread-db.c (class thread_db_target): Add method
11228 thread_info_to_thread_handle.
11229 (thread_db_target::thread_info_to_thread_handle): Define.
11230 * remote.c (class remote_target): Add new method
11231 thread_info_to_thread_handle.
11232 (remote_target::thread_info_to_thread_handle): Define.
11233
112342019-04-08 Pedro Alves <palves@redhat.com>
11235
11236 * common/common-exceptions.c (throw_exception): Don't create
11237 named object to throw; throw directly.
11238 (throw_it): Likewise. Don't initialize gdb_exception::message
11239 here, with new; pass FMT and AP to the ctor instead.
11240 * common/common-exceptions.h: Include <string>.
11241 (gdb_exception::gdb_exception(enum return_reason, enum errors,
11242 const char *, va_list)): New ctor. Use std::make_shared.
11243 (gdb_exception_error::gdb_exception_error(enum return_reason, enum
11244 errors)): Delete.
11245 (gdb_exception_error::gdb_exception_error(enum errors, const char
11246 *, va_list)): New.
11247 (gdb_exception_error::gdb_exception_error(const gdb_exception &)):
11248 Add assertion.
11249 (gdb_exception_quit::gdb_exception_quit(enum return_reason, enum
11250 errors)): Delete.
11251 (gdb_exception_quit::gdb_exception_quit(const char *, va_list)): New.
11252 (gdb_exception_quit::gdb_exception_quit(const gdb_exception &)):
11253 Add assertion.
11254
112552019-04-08 Tom Tromey <tom@tromey.com>
11256
11257 * valops.c (value_rtti_indirect_type): Replace throw_exception
11258 with throw.
11259 * tracefile-tfile.c (tfile_target_open): Replace throw_exception
11260 with throw.
11261 * thread.c (thr_try_catch_cmd): Replace throw_exception with
11262 throw.
11263 * target.c (target_translate_tls_address): Replace throw_exception
11264 with throw.
11265 * stack.c (frame_apply_command_count): Replace throw_exception
11266 with throw.
11267 * solib-spu.c (append_ocl_sos): Replace throw_exception with
11268 throw.
11269 * s390-tdep.c (s390_frame_unwind_cache): Replace throw_exception
11270 with throw.
11271 * rs6000-tdep.c (rs6000_frame_cache)
11272 (rs6000_epilogue_frame_cache): Replace throw_exception with throw.
11273 * remote.c: Replace throw_exception with throw.
11274 * record-full.c (record_full_message, record_full_wait_1)
11275 (record_full_restore): Replace throw_exception with throw.
11276 * record-btrace.c:
11277 (get_thread_current_frame_id, record_btrace_start_replaying)
11278 (cmd_record_btrace_bts_start, cmd_record_btrace_pt_start)
11279 (cmd_record_btrace_start): Replace throw_exception with throw.
11280 * parse.c (parse_exp_in_context_1): Replace throw_exception with
11281 throw.
11282 * linux-nat.c (detach_one_lwp, linux_resume_one_lwp)
11283 (resume_stopped_resumed_lwps): Replace throw_exception with throw.
11284 * linespec.c:
11285 (find_linespec_symbols): Replace throw_exception with throw.
11286 * infrun.c (displaced_step_prepare, resume): Replace
11287 throw_exception with throw.
11288 * infcmd.c (post_create_inferior): Replace throw_exception with
11289 throw.
11290 * inf-loop.c (inferior_event_handler): Replace throw_exception
11291 with throw.
11292 * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache)
11293 (i386_sigtramp_frame_cache): Replace throw_exception with throw.
11294 * frame.c (frame_unwind_pc, get_prev_frame_if_no_cycle)
11295 (get_prev_frame_always, get_frame_pc_if_available)
11296 (get_frame_address_in_block_if_available, get_frame_language):
11297 Replace throw_exception with throw.
11298 * frame-unwind.c (frame_unwind_try_unwinder): Replace
11299 throw_exception with throw.
11300 * eval.c (fetch_subexp_value, evaluate_var_value)
11301 (evaluate_funcall, evaluate_subexp_standard): Replace
11302 throw_exception with throw.
11303 * dwarf2loc.c (call_site_find_chain)
11304 (dwarf2_evaluate_loc_desc_full, dwarf2_locexpr_baton_eval):
11305 Replace throw_exception with throw.
11306 * dwarf2-frame.c (dwarf2_frame_cache): Replace throw_exception
11307 with throw.
11308 * darwin-nat.c (darwin_attach_pid): Replace throw_exception with
11309 throw.
11310 * cp-abi.c (baseclass_offset): Replace throw_exception with throw.
11311 * completer.c (complete_line_internal): Replace throw_exception
11312 with throw.
11313 * compile/compile-object-run.c (compile_object_run): Replace
11314 throw_exception with throw.
11315 * cli/cli-script.c (process_next_line): Replace throw_exception
11316 with throw.
11317 * btrace.c (btrace_compute_ftrace_pt, btrace_compute_ftrace)
11318 (btrace_enable, btrace_maint_update_pt_packets): Replace
11319 throw_exception with throw.
11320 * breakpoint.c (create_breakpoint, save_breakpoints): Replace
11321 throw_exception with throw.
11322 * break-catch-throw.c (re_set_exception_catchpoint): Replace
11323 throw_exception with throw.
11324 * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache)
11325 (amd64_epilogue_frame_cache): Replace throw_exception with throw.
11326 * aarch64-tdep.c (aarch64_make_prologue_cache)
11327 (aarch64_make_stub_cache): Replace throw_exception with throw.
11328
113292019-04-08 Tom Tromey <tom@tromey.com>
11330
11331 * common/common-exceptions.c (throw_exception): Rename from
11332 throw_exception_cxx. Remove old copy. Make argument const.
11333 (throw_it): Create and throw exception objects directly.
11334 * common/common-exceptions.h (throw_exception): Make argument
11335 const.
11336 (struct gdb_exception_error): Add constructor.
11337 (struct gdb_exception_quit): Add constructor.
11338
113392019-04-08 Tom Tromey <tom@tromey.com>
11340
11341 * common/common-exceptions.h (exception_rethrow): Don't declare.
11342 (TRY_SJLJ): Update comment.
11343 (TRY, CATCH, END_CATCH): Remove.
11344 * common/common-exceptions.c (exception_rethrow): Remove.
11345
113462019-04-08 Tom Tromey <tom@tromey.com>
11347
11348 * common/common-exceptions.h (gdb_exception_RETURN_MASK_ALL):
11349 Remove.
11350 (gdb_exception_error): Rename from
11351 gdb_exception_RETURN_MASK_ERROR.
11352 (gdb_exception_quit): Rename from gdb_exception_RETURN_MASK_QUIT.
11353 (gdb_quit_bad_alloc): Update.
11354 * aarch64-tdep.c: Update.
11355 * ada-lang.c: Update.
11356 * ada-typeprint.c: Update.
11357 * ada-valprint.c: Update.
11358 * amd64-tdep.c: Update.
11359 * arch-utils.c: Update.
11360 * break-catch-throw.c: Update.
11361 * breakpoint.c: Update.
11362 * btrace.c: Update.
11363 * c-varobj.c: Update.
11364 * cli/cli-cmds.c: Update.
11365 * cli/cli-interp.c: Update.
11366 * cli/cli-script.c: Update.
11367 * common/common-exceptions.c: Update.
11368 * common/new-op.c: Update.
11369 * common/selftest.c: Update.
11370 * compile/compile-c-symbols.c: Update.
11371 * compile/compile-cplus-symbols.c: Update.
11372 * compile/compile-object-load.c: Update.
11373 * compile/compile-object-run.c: Update.
11374 * completer.c: Update.
11375 * corelow.c: Update.
11376 * cp-abi.c: Update.
11377 * cp-support.c: Update.
11378 * cp-valprint.c: Update.
11379 * darwin-nat.c: Update.
11380 * disasm-selftests.c: Update.
11381 * dtrace-probe.c: Update.
11382 * dwarf-index-cache.c: Update.
11383 * dwarf-index-write.c: Update.
11384 * dwarf2-frame-tailcall.c: Update.
11385 * dwarf2-frame.c: Update.
11386 * dwarf2loc.c: Update.
11387 * dwarf2read.c: Update.
11388 * eval.c: Update.
11389 * event-loop.c: Update.
11390 * event-top.c: Update.
11391 * exec.c: Update.
11392 * f-valprint.c: Update.
11393 * fbsd-tdep.c: Update.
11394 * frame-unwind.c: Update.
11395 * frame.c: Update.
11396 * gdbtypes.c: Update.
11397 * gnu-v3-abi.c: Update.
11398 * guile/guile-internal.h: Update.
11399 * guile/scm-block.c: Update.
11400 * guile/scm-breakpoint.c: Update.
11401 * guile/scm-cmd.c: Update.
11402 * guile/scm-disasm.c: Update.
11403 * guile/scm-frame.c: Update.
11404 * guile/scm-lazy-string.c: Update.
11405 * guile/scm-math.c: Update.
11406 * guile/scm-param.c: Update.
11407 * guile/scm-ports.c: Update.
11408 * guile/scm-pretty-print.c: Update.
11409 * guile/scm-symbol.c: Update.
11410 * guile/scm-symtab.c: Update.
11411 * guile/scm-type.c: Update.
11412 * guile/scm-value.c: Update.
11413 * i386-linux-tdep.c: Update.
11414 * i386-tdep.c: Update.
11415 * inf-loop.c: Update.
11416 * infcall.c: Update.
11417 * infcmd.c: Update.
11418 * infrun.c: Update.
11419 * jit.c: Update.
11420 * language.c: Update.
11421 * linespec.c: Update.
11422 * linux-fork.c: Update.
11423 * linux-nat.c: Update.
11424 * linux-tdep.c: Update.
11425 * linux-thread-db.c: Update.
11426 * main.c: Update.
11427 * mi/mi-cmd-break.c: Update.
11428 * mi/mi-cmd-stack.c: Update.
11429 * mi/mi-interp.c: Update.
11430 * mi/mi-main.c: Update.
11431 * objc-lang.c: Update.
11432 * p-valprint.c: Update.
11433 * parse.c: Update.
11434 * ppc-linux-tdep.c: Update.
11435 * printcmd.c: Update.
11436 * python/py-arch.c: Update.
11437 * python/py-breakpoint.c: Update.
11438 * python/py-cmd.c: Update.
11439 * python/py-finishbreakpoint.c: Update.
11440 * python/py-frame.c: Update.
11441 * python/py-framefilter.c: Update.
11442 * python/py-gdb-readline.c: Update.
11443 * python/py-inferior.c: Update.
11444 * python/py-infthread.c: Update.
11445 * python/py-lazy-string.c: Update.
11446 * python/py-linetable.c: Update.
11447 * python/py-objfile.c: Update.
11448 * python/py-param.c: Update.
11449 * python/py-prettyprint.c: Update.
11450 * python/py-progspace.c: Update.
11451 * python/py-record-btrace.c: Update.
11452 * python/py-record.c: Update.
11453 * python/py-symbol.c: Update.
11454 * python/py-type.c: Update.
11455 * python/py-unwind.c: Update.
11456 * python/py-utils.c: Update.
11457 * python/py-value.c: Update.
11458 * python/python.c: Update.
11459 * record-btrace.c: Update.
11460 * record-full.c: Update.
11461 * remote-fileio.c: Update.
11462 * remote.c: Update.
11463 * riscv-tdep.c: Update.
11464 * rs6000-aix-tdep.c: Update.
11465 * rs6000-tdep.c: Update.
11466 * rust-exp.y: Update.
11467 * rust-lang.c: Update.
11468 * s390-tdep.c: Update.
11469 * selftest-arch.c: Update.
11470 * solib-dsbt.c: Update.
11471 * solib-frv.c: Update.
11472 * solib-spu.c: Update.
11473 * solib-svr4.c: Update.
11474 * solib.c: Update.
11475 * sparc64-linux-tdep.c: Update.
11476 * stack.c: Update.
11477 * symfile-mem.c: Update.
11478 * symmisc.c: Update.
11479 * target.c: Update.
11480 * thread.c: Update.
11481 * top.c: Update.
11482 * tracefile-tfile.c: Update.
11483 * tui/tui.c: Update.
11484 * typeprint.c: Update.
11485 * unittests/cli-utils-selftests.c: Update.
11486 * unittests/parse-connection-spec-selftests.c: Update.
11487 * valops.c: Update.
11488 * valprint.c: Update.
11489 * value.c: Update.
11490 * varobj.c: Update.
11491 * windows-nat.c: Update.
11492 * x86-linux-nat.c: Update.
11493 * xml-support.c: Update.
11494
114952019-04-08 Tom Tromey <tom@tromey.com>
11496
11497 * xml-support.c: Use C++ exception handling.
11498 * x86-linux-nat.c: Use C++ exception handling.
11499 * windows-nat.c: Use C++ exception handling.
11500 * varobj.c: Use C++ exception handling.
11501 * value.c: Use C++ exception handling.
11502 * valprint.c: Use C++ exception handling.
11503 * valops.c: Use C++ exception handling.
11504 * unittests/parse-connection-spec-selftests.c: Use C++ exception
11505 handling.
11506 * unittests/cli-utils-selftests.c: Use C++ exception handling.
11507 * typeprint.c: Use C++ exception handling.
11508 * tui/tui.c: Use C++ exception handling.
11509 * tracefile-tfile.c: Use C++ exception handling.
11510 * top.c: Use C++ exception handling.
11511 * thread.c: Use C++ exception handling.
11512 * target.c: Use C++ exception handling.
11513 * symmisc.c: Use C++ exception handling.
11514 * symfile-mem.c: Use C++ exception handling.
11515 * stack.c: Use C++ exception handling.
11516 * sparc64-linux-tdep.c: Use C++ exception handling.
11517 * solib.c: Use C++ exception handling.
11518 * solib-svr4.c: Use C++ exception handling.
11519 * solib-spu.c: Use C++ exception handling.
11520 * solib-frv.c: Use C++ exception handling.
11521 * solib-dsbt.c: Use C++ exception handling.
11522 * selftest-arch.c: Use C++ exception handling.
11523 * s390-tdep.c: Use C++ exception handling.
11524 * rust-lang.c: Use C++ exception handling.
11525 * rust-exp.y: Use C++ exception handling.
11526 * rs6000-tdep.c: Use C++ exception handling.
11527 * rs6000-aix-tdep.c: Use C++ exception handling.
11528 * riscv-tdep.c: Use C++ exception handling.
11529 * remote.c: Use C++ exception handling.
11530 * remote-fileio.c: Use C++ exception handling.
11531 * record-full.c: Use C++ exception handling.
11532 * record-btrace.c: Use C++ exception handling.
11533 * python/python.c: Use C++ exception handling.
11534 * python/py-value.c: Use C++ exception handling.
11535 * python/py-utils.c: Use C++ exception handling.
11536 * python/py-unwind.c: Use C++ exception handling.
11537 * python/py-type.c: Use C++ exception handling.
11538 * python/py-symbol.c: Use C++ exception handling.
11539 * python/py-record.c: Use C++ exception handling.
11540 * python/py-record-btrace.c: Use C++ exception handling.
11541 * python/py-progspace.c: Use C++ exception handling.
11542 * python/py-prettyprint.c: Use C++ exception handling.
11543 * python/py-param.c: Use C++ exception handling.
11544 * python/py-objfile.c: Use C++ exception handling.
11545 * python/py-linetable.c: Use C++ exception handling.
11546 * python/py-lazy-string.c: Use C++ exception handling.
11547 * python/py-infthread.c: Use C++ exception handling.
11548 * python/py-inferior.c: Use C++ exception handling.
11549 * python/py-gdb-readline.c: Use C++ exception handling.
11550 * python/py-framefilter.c: Use C++ exception handling.
11551 * python/py-frame.c: Use C++ exception handling.
11552 * python/py-finishbreakpoint.c: Use C++ exception handling.
11553 * python/py-cmd.c: Use C++ exception handling.
11554 * python/py-breakpoint.c: Use C++ exception handling.
11555 * python/py-arch.c: Use C++ exception handling.
11556 * printcmd.c: Use C++ exception handling.
11557 * ppc-linux-tdep.c: Use C++ exception handling.
11558 * parse.c: Use C++ exception handling.
11559 * p-valprint.c: Use C++ exception handling.
11560 * objc-lang.c: Use C++ exception handling.
11561 * mi/mi-main.c: Use C++ exception handling.
11562 * mi/mi-interp.c: Use C++ exception handling.
11563 * mi/mi-cmd-stack.c: Use C++ exception handling.
11564 * mi/mi-cmd-break.c: Use C++ exception handling.
11565 * main.c: Use C++ exception handling.
11566 * linux-thread-db.c: Use C++ exception handling.
11567 * linux-tdep.c: Use C++ exception handling.
11568 * linux-nat.c: Use C++ exception handling.
11569 * linux-fork.c: Use C++ exception handling.
11570 * linespec.c: Use C++ exception handling.
11571 * language.c: Use C++ exception handling.
11572 * jit.c: Use C++ exception handling.
11573 * infrun.c: Use C++ exception handling.
11574 * infcmd.c: Use C++ exception handling.
11575 * infcall.c: Use C++ exception handling.
11576 * inf-loop.c: Use C++ exception handling.
11577 * i386-tdep.c: Use C++ exception handling.
11578 * i386-linux-tdep.c: Use C++ exception handling.
11579 * guile/scm-value.c: Use C++ exception handling.
11580 * guile/scm-type.c: Use C++ exception handling.
11581 * guile/scm-symtab.c: Use C++ exception handling.
11582 * guile/scm-symbol.c: Use C++ exception handling.
11583 * guile/scm-pretty-print.c: Use C++ exception handling.
11584 * guile/scm-ports.c: Use C++ exception handling.
11585 * guile/scm-param.c: Use C++ exception handling.
11586 * guile/scm-math.c: Use C++ exception handling.
11587 * guile/scm-lazy-string.c: Use C++ exception handling.
11588 * guile/scm-frame.c: Use C++ exception handling.
11589 * guile/scm-disasm.c: Use C++ exception handling.
11590 * guile/scm-cmd.c: Use C++ exception handling.
11591 * guile/scm-breakpoint.c: Use C++ exception handling.
11592 * guile/scm-block.c: Use C++ exception handling.
11593 * guile/guile-internal.h: Use C++ exception handling.
11594 * gnu-v3-abi.c: Use C++ exception handling.
11595 * gdbtypes.c: Use C++ exception handling.
11596 * frame.c: Use C++ exception handling.
11597 * frame-unwind.c: Use C++ exception handling.
11598 * fbsd-tdep.c: Use C++ exception handling.
11599 * f-valprint.c: Use C++ exception handling.
11600 * exec.c: Use C++ exception handling.
11601 * event-top.c: Use C++ exception handling.
11602 * event-loop.c: Use C++ exception handling.
11603 * eval.c: Use C++ exception handling.
11604 * dwarf2read.c: Use C++ exception handling.
11605 * dwarf2loc.c: Use C++ exception handling.
11606 * dwarf2-frame.c: Use C++ exception handling.
11607 * dwarf2-frame-tailcall.c: Use C++ exception handling.
11608 * dwarf-index-write.c: Use C++ exception handling.
11609 * dwarf-index-cache.c: Use C++ exception handling.
11610 * dtrace-probe.c: Use C++ exception handling.
11611 * disasm-selftests.c: Use C++ exception handling.
11612 * darwin-nat.c: Use C++ exception handling.
11613 * cp-valprint.c: Use C++ exception handling.
11614 * cp-support.c: Use C++ exception handling.
11615 * cp-abi.c: Use C++ exception handling.
11616 * corelow.c: Use C++ exception handling.
11617 * completer.c: Use C++ exception handling.
11618 * compile/compile-object-run.c: Use C++ exception handling.
11619 * compile/compile-object-load.c: Use C++ exception handling.
11620 * compile/compile-cplus-symbols.c: Use C++ exception handling.
11621 * compile/compile-c-symbols.c: Use C++ exception handling.
11622 * common/selftest.c: Use C++ exception handling.
11623 * common/new-op.c: Use C++ exception handling.
11624 * cli/cli-script.c: Use C++ exception handling.
11625 * cli/cli-interp.c: Use C++ exception handling.
11626 * cli/cli-cmds.c: Use C++ exception handling.
11627 * c-varobj.c: Use C++ exception handling.
11628 * btrace.c: Use C++ exception handling.
11629 * breakpoint.c: Use C++ exception handling.
11630 * break-catch-throw.c: Use C++ exception handling.
11631 * arch-utils.c: Use C++ exception handling.
11632 * amd64-tdep.c: Use C++ exception handling.
11633 * ada-valprint.c: Use C++ exception handling.
11634 * ada-typeprint.c: Use C++ exception handling.
11635 * ada-lang.c: Use C++ exception handling.
11636 * aarch64-tdep.c: Use C++ exception handling.
11637
116382019-04-08 Tom Tromey <tom@tromey.com>
11639
11640 * xml-support.c (gdb_xml_parser::parse): Update.
11641 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
11642 * value.c (show_convenience): Update.
11643 * unittests/cli-utils-selftests.c (test_number_or_range_parser)
11644 (test_parse_flags_qcs): Update.
11645 * thread.c (thr_try_catch_cmd): Update.
11646 * target.c (target_translate_tls_address): Update.
11647 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
11648 (info_frame_command_core, frame_apply_command_count): Update.
11649 * rust-exp.y (rust_lex_exception_test): Update.
11650 * riscv-tdep.c (riscv_print_one_register_info): Update.
11651 * remote.c (remote_target::enable_btrace): Update.
11652 * record-btrace.c (record_btrace_enable_warn): Update.
11653 * python/py-utils.c (gdbpy_convert_exception): Update.
11654 * printcmd.c (do_one_display, print_variable_and_value): Update.
11655 * mi/mi-main.c (mi_print_exception): Update.
11656 * mi/mi-interp.c (mi_cmd_interpreter_exec): Use SCOPE_EXIT.
11657 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
11658 * linux-nat.c (linux_nat_target::attach): Update.
11659 * linux-fork.c (class scoped_switch_fork_info): Update.
11660 * infrun.c (displaced_step_prepare): Update.
11661 * infcall.c (call_function_by_hand_dummy): Update.
11662 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception): Update.
11663 * gnu-v3-abi.c (print_one_vtable): Update.
11664 * frame.c (get_prev_frame_always): Update.
11665 * f-valprint.c (info_common_command_for_block): Update.
11666 * exec.c (try_open_exec_file): Update.
11667 * exceptions.c (print_exception, exception_print)
11668 (exception_fprintf, exception_print_same): Update.
11669 * dwarf2-frame.c (dwarf2_build_frame_info): Update.
11670 * dwarf-index-cache.c (index_cache::store)
11671 (index_cache::lookup_gdb_index): Update.
11672 * darwin-nat.c (maybe_cache_shell): Update.
11673 * cp-valprint.c (cp_print_value_fields): Update.
11674 * compile/compile-cplus-symbols.c (gcc_cplus_convert_symbol)
11675 (gcc_cplus_symbol_address): Update.
11676 * compile/compile-c-symbols.c (gcc_convert_symbol)
11677 (gcc_symbol_address, generate_c_for_for_one_variable): Update.
11678 * common/selftest.c: Update.
11679 * common/common-exceptions.h (struct gdb_exception) <message>: Now
11680 a std::string.
11681 (exception_try_scope_entry, exception_try_scope_exit): Don't
11682 declare.
11683 (struct exception_try_scope): Remove.
11684 (TRY): Don't use exception_try_scope.
11685 (struct gdb_exception): Add constructor, operator=.
11686 <what>: New method.
11687 (struct gdb_exception_RETURN_MASK_ALL)
11688 (struct gdb_exception_RETURN_MASK_ERROR)
11689 (struct gdb_exception_RETURN_MASK_QUIT): Add constructor.
11690 (struct gdb_quit_bad_alloc): Update.
11691 * common/common-exceptions.c (exception_none): Change
11692 initializer.
11693 (struct catcher) <state, exception>: Initialize inline.
11694 <prev>: Remove member.
11695 (current_catcher): Remove.
11696 (catchers): New global.
11697 (exceptions_state_mc_init): Simplify.
11698 (catcher_pop): Remove.
11699 (exceptions_state_mc, exceptions_state_mc_catch): Update.
11700 (try_scope_depth, exception_try_scope_entry)
11701 (exception_try_scope_exit): Remove.
11702 (throw_exception_sjlj): Update.
11703 (exception_messages, exception_messages_size): Remove.
11704 (throw_it): Simplify.
11705 (gdb_exception_sliced_copy): Remove.
11706 (throw_exception_cxx): Update.
11707 * cli/cli-script.c (script_from_file): Update.
11708 * breakpoint.c (insert_bp_location, update_breakpoint_locations):
11709 Update.
11710 * ada-valprint.c (ada_val_print): Update.
11711 * ada-lang.c (ada_to_fixed_type_1, ada_exception_name_addr)
11712 (create_excep_cond_exprs): Update.
11713
117142019-04-08 Tom Tromey <tom@tromey.com>
11715
11716 * common/common-exceptions.h (GDB_XCPT_SJMP, GDB_XCPT_TRY)
11717 (GDB_XCPT_RAW_TRY, GDB_XCPT): Remove.
11718 (TRY, CATCH, END_CATCH): Remove some definitions.
11719 * common/common-exceptions.c: Don't use GDB_XCPT.
11720 (catcher_list_size): Remove.
11721 (throw_exception, throw_it): Simplify.
11722
117232019-04-05 Tom Tromey <tom@tromey.com>
11724
11725 Revert the header-sorting patch.
11726 * ft32-tdep.c: Revert.
11727 * frv-tdep.c: Revert.
11728 * frv-linux-tdep.c: Revert.
11729 * frame.c: Revert.
11730 * frame-unwind.c: Revert.
11731 * frame-base.c: Revert.
11732 * fork-child.c: Revert.
11733 * findvar.c: Revert.
11734 * findcmd.c: Revert.
11735 * filesystem.c: Revert.
11736 * filename-seen-cache.h: Revert.
11737 * filename-seen-cache.c: Revert.
11738 * fbsd-tdep.c: Revert.
11739 * fbsd-nat.h: Revert.
11740 * fbsd-nat.c: Revert.
11741 * f-valprint.c: Revert.
11742 * f-typeprint.c: Revert.
11743 * f-lang.c: Revert.
11744 * extension.h: Revert.
11745 * extension.c: Revert.
11746 * extension-priv.h: Revert.
11747 * expprint.c: Revert.
11748 * exec.h: Revert.
11749 * exec.c: Revert.
11750 * exceptions.c: Revert.
11751 * event-top.c: Revert.
11752 * event-loop.c: Revert.
11753 * eval.c: Revert.
11754 * elfread.c: Revert.
11755 * dwarf2read.h: Revert.
11756 * dwarf2read.c: Revert.
11757 * dwarf2loc.c: Revert.
11758 * dwarf2expr.h: Revert.
11759 * dwarf2expr.c: Revert.
11760 * dwarf2-frame.c: Revert.
11761 * dwarf2-frame-tailcall.c: Revert.
11762 * dwarf-index-write.h: Revert.
11763 * dwarf-index-write.c: Revert.
11764 * dwarf-index-common.c: Revert.
11765 * dwarf-index-cache.h: Revert.
11766 * dwarf-index-cache.c: Revert.
11767 * dummy-frame.c: Revert.
11768 * dtrace-probe.c: Revert.
11769 * disasm.h: Revert.
11770 * disasm.c: Revert.
11771 * disasm-selftests.c: Revert.
11772 * dictionary.c: Revert.
11773 * dicos-tdep.c: Revert.
11774 * demangle.c: Revert.
11775 * dcache.h: Revert.
11776 * dcache.c: Revert.
11777 * darwin-nat.h: Revert.
11778 * darwin-nat.c: Revert.
11779 * darwin-nat-info.c: Revert.
11780 * d-valprint.c: Revert.
11781 * d-namespace.c: Revert.
11782 * d-lang.c: Revert.
11783 * ctf.c: Revert.
11784 * csky-tdep.c: Revert.
11785 * csky-linux-tdep.c: Revert.
11786 * cris-tdep.c: Revert.
11787 * cris-linux-tdep.c: Revert.
11788 * cp-valprint.c: Revert.
11789 * cp-support.c: Revert.
11790 * cp-namespace.c: Revert.
11791 * cp-abi.c: Revert.
11792 * corelow.c: Revert.
11793 * corefile.c: Revert.
11794 * continuations.c: Revert.
11795 * completer.h: Revert.
11796 * completer.c: Revert.
11797 * complaints.c: Revert.
11798 * coffread.c: Revert.
11799 * coff-pe-read.c: Revert.
11800 * cli-out.h: Revert.
11801 * cli-out.c: Revert.
11802 * charset.c: Revert.
11803 * c-varobj.c: Revert.
11804 * c-valprint.c: Revert.
11805 * c-typeprint.c: Revert.
11806 * c-lang.c: Revert.
11807 * buildsym.c: Revert.
11808 * buildsym-legacy.c: Revert.
11809 * build-id.h: Revert.
11810 * build-id.c: Revert.
11811 * btrace.c: Revert.
11812 * bsd-uthread.c: Revert.
11813 * breakpoint.h: Revert.
11814 * breakpoint.c: Revert.
11815 * break-catch-throw.c: Revert.
11816 * break-catch-syscall.c: Revert.
11817 * break-catch-sig.c: Revert.
11818 * blockframe.c: Revert.
11819 * block.c: Revert.
11820 * bfin-tdep.c: Revert.
11821 * bfin-linux-tdep.c: Revert.
11822 * bfd-target.c: Revert.
11823 * bcache.c: Revert.
11824 * ax-general.c: Revert.
11825 * ax-gdb.h: Revert.
11826 * ax-gdb.c: Revert.
11827 * avr-tdep.c: Revert.
11828 * auxv.c: Revert.
11829 * auto-load.c: Revert.
11830 * arm-wince-tdep.c: Revert.
11831 * arm-tdep.c: Revert.
11832 * arm-symbian-tdep.c: Revert.
11833 * arm-pikeos-tdep.c: Revert.
11834 * arm-obsd-tdep.c: Revert.
11835 * arm-nbsd-tdep.c: Revert.
11836 * arm-nbsd-nat.c: Revert.
11837 * arm-linux-tdep.c: Revert.
11838 * arm-linux-nat.c: Revert.
11839 * arm-fbsd-tdep.c: Revert.
11840 * arm-fbsd-nat.c: Revert.
11841 * arm-bsd-tdep.c: Revert.
11842 * arch-utils.c: Revert.
11843 * arc-tdep.c: Revert.
11844 * arc-newlib-tdep.c: Revert.
11845 * annotate.h: Revert.
11846 * annotate.c: Revert.
11847 * amd64-windows-tdep.c: Revert.
11848 * amd64-windows-nat.c: Revert.
11849 * amd64-tdep.c: Revert.
11850 * amd64-sol2-tdep.c: Revert.
11851 * amd64-obsd-tdep.c: Revert.
11852 * amd64-obsd-nat.c: Revert.
11853 * amd64-nbsd-tdep.c: Revert.
11854 * amd64-nbsd-nat.c: Revert.
11855 * amd64-nat.c: Revert.
11856 * amd64-linux-tdep.c: Revert.
11857 * amd64-linux-nat.c: Revert.
11858 * amd64-fbsd-tdep.c: Revert.
11859 * amd64-fbsd-nat.c: Revert.
11860 * amd64-dicos-tdep.c: Revert.
11861 * amd64-darwin-tdep.c: Revert.
11862 * amd64-bsd-nat.c: Revert.
11863 * alpha-tdep.c: Revert.
11864 * alpha-obsd-tdep.c: Revert.
11865 * alpha-nbsd-tdep.c: Revert.
11866 * alpha-mdebug-tdep.c: Revert.
11867 * alpha-linux-tdep.c: Revert.
11868 * alpha-linux-nat.c: Revert.
11869 * alpha-bsd-tdep.c: Revert.
11870 * alpha-bsd-nat.c: Revert.
11871 * aix-thread.c: Revert.
11872 * agent.c: Revert.
11873 * addrmap.c: Revert.
11874 * ada-varobj.c: Revert.
11875 * ada-valprint.c: Revert.
11876 * ada-typeprint.c: Revert.
11877 * ada-tasks.c: Revert.
11878 * ada-lang.c: Revert.
11879 * aarch64-tdep.c: Revert.
11880 * aarch64-ravenscar-thread.c: Revert.
11881 * aarch64-newlib-tdep.c: Revert.
11882 * aarch64-linux-tdep.c: Revert.
11883 * aarch64-linux-nat.c: Revert.
11884 * aarch64-fbsd-tdep.c: Revert.
11885 * aarch64-fbsd-nat.c: Revert.
11886 * aarch32-linux-nat.c: Revert.
11887
118882019-04-05 Tom Tromey <tom@tromey.com>
11889
11890 * ft32-tdep.c: Sort headers.
11891 * frv-tdep.c: Sort headers.
11892 * frv-linux-tdep.c: Sort headers.
11893 * frame.c: Sort headers.
11894 * frame-unwind.c: Sort headers.
11895 * frame-base.c: Sort headers.
11896 * fork-child.c: Sort headers.
11897 * findvar.c: Sort headers.
11898 * findcmd.c: Sort headers.
11899 * filesystem.c: Sort headers.
11900 * filename-seen-cache.h: Sort headers.
11901 * filename-seen-cache.c: Sort headers.
11902 * fbsd-tdep.c: Sort headers.
11903 * fbsd-nat.h: Sort headers.
11904 * fbsd-nat.c: Sort headers.
11905 * f-valprint.c: Sort headers.
11906 * f-typeprint.c: Sort headers.
11907 * f-lang.c: Sort headers.
11908 * extension.h: Sort headers.
11909 * extension.c: Sort headers.
11910 * extension-priv.h: Sort headers.
11911 * expprint.c: Sort headers.
11912 * exec.h: Sort headers.
11913 * exec.c: Sort headers.
11914 * exceptions.c: Sort headers.
11915 * event-top.c: Sort headers.
11916 * event-loop.c: Sort headers.
11917 * eval.c: Sort headers.
11918 * elfread.c: Sort headers.
11919 * dwarf2read.h: Sort headers.
11920 * dwarf2read.c: Sort headers.
11921 * dwarf2loc.c: Sort headers.
11922 * dwarf2expr.h: Sort headers.
11923 * dwarf2expr.c: Sort headers.
11924 * dwarf2-frame.c: Sort headers.
11925 * dwarf2-frame-tailcall.c: Sort headers.
11926 * dwarf-index-write.h: Sort headers.
11927 * dwarf-index-write.c: Sort headers.
11928 * dwarf-index-common.c: Sort headers.
11929 * dwarf-index-cache.h: Sort headers.
11930 * dwarf-index-cache.c: Sort headers.
11931 * dummy-frame.c: Sort headers.
11932 * dtrace-probe.c: Sort headers.
11933 * disasm.h: Sort headers.
11934 * disasm.c: Sort headers.
11935 * disasm-selftests.c: Sort headers.
11936 * dictionary.c: Sort headers.
11937 * dicos-tdep.c: Sort headers.
11938 * demangle.c: Sort headers.
11939 * dcache.h: Sort headers.
11940 * dcache.c: Sort headers.
11941 * darwin-nat.h: Sort headers.
11942 * darwin-nat.c: Sort headers.
11943 * darwin-nat-info.c: Sort headers.
11944 * d-valprint.c: Sort headers.
11945 * d-namespace.c: Sort headers.
11946 * d-lang.c: Sort headers.
11947 * ctf.c: Sort headers.
11948 * csky-tdep.c: Sort headers.
11949 * csky-linux-tdep.c: Sort headers.
11950 * cris-tdep.c: Sort headers.
11951 * cris-linux-tdep.c: Sort headers.
11952 * cp-valprint.c: Sort headers.
11953 * cp-support.c: Sort headers.
11954 * cp-namespace.c: Sort headers.
11955 * cp-abi.c: Sort headers.
11956 * corelow.c: Sort headers.
11957 * corefile.c: Sort headers.
11958 * continuations.c: Sort headers.
11959 * completer.h: Sort headers.
11960 * completer.c: Sort headers.
11961 * complaints.c: Sort headers.
11962 * coffread.c: Sort headers.
11963 * coff-pe-read.c: Sort headers.
11964 * cli-out.h: Sort headers.
11965 * cli-out.c: Sort headers.
11966 * charset.c: Sort headers.
11967 * c-varobj.c: Sort headers.
11968 * c-valprint.c: Sort headers.
11969 * c-typeprint.c: Sort headers.
11970 * c-lang.c: Sort headers.
11971 * buildsym.c: Sort headers.
11972 * buildsym-legacy.c: Sort headers.
11973 * build-id.h: Sort headers.
11974 * build-id.c: Sort headers.
11975 * btrace.c: Sort headers.
11976 * bsd-uthread.c: Sort headers.
11977 * breakpoint.h: Sort headers.
11978 * breakpoint.c: Sort headers.
11979 * break-catch-throw.c: Sort headers.
11980 * break-catch-syscall.c: Sort headers.
11981 * break-catch-sig.c: Sort headers.
11982 * blockframe.c: Sort headers.
11983 * block.c: Sort headers.
11984 * bfin-tdep.c: Sort headers.
11985 * bfin-linux-tdep.c: Sort headers.
11986 * bfd-target.c: Sort headers.
11987 * bcache.c: Sort headers.
11988 * ax-general.c: Sort headers.
11989 * ax-gdb.h: Sort headers.
11990 * ax-gdb.c: Sort headers.
11991 * avr-tdep.c: Sort headers.
11992 * auxv.c: Sort headers.
11993 * auto-load.c: Sort headers.
11994 * arm-wince-tdep.c: Sort headers.
11995 * arm-tdep.c: Sort headers.
11996 * arm-symbian-tdep.c: Sort headers.
11997 * arm-pikeos-tdep.c: Sort headers.
11998 * arm-obsd-tdep.c: Sort headers.
11999 * arm-nbsd-tdep.c: Sort headers.
12000 * arm-nbsd-nat.c: Sort headers.
12001 * arm-linux-tdep.c: Sort headers.
12002 * arm-linux-nat.c: Sort headers.
12003 * arm-fbsd-tdep.c: Sort headers.
12004 * arm-fbsd-nat.c: Sort headers.
12005 * arm-bsd-tdep.c: Sort headers.
12006 * arch-utils.c: Sort headers.
12007 * arc-tdep.c: Sort headers.
12008 * arc-newlib-tdep.c: Sort headers.
12009 * annotate.h: Sort headers.
12010 * annotate.c: Sort headers.
12011 * amd64-windows-tdep.c: Sort headers.
12012 * amd64-windows-nat.c: Sort headers.
12013 * amd64-tdep.c: Sort headers.
12014 * amd64-sol2-tdep.c: Sort headers.
12015 * amd64-obsd-tdep.c: Sort headers.
12016 * amd64-obsd-nat.c: Sort headers.
12017 * amd64-nbsd-tdep.c: Sort headers.
12018 * amd64-nbsd-nat.c: Sort headers.
12019 * amd64-nat.c: Sort headers.
12020 * amd64-linux-tdep.c: Sort headers.
12021 * amd64-linux-nat.c: Sort headers.
12022 * amd64-fbsd-tdep.c: Sort headers.
12023 * amd64-fbsd-nat.c: Sort headers.
12024 * amd64-dicos-tdep.c: Sort headers.
12025 * amd64-darwin-tdep.c: Sort headers.
12026 * amd64-bsd-nat.c: Sort headers.
12027 * alpha-tdep.c: Sort headers.
12028 * alpha-obsd-tdep.c: Sort headers.
12029 * alpha-nbsd-tdep.c: Sort headers.
12030 * alpha-mdebug-tdep.c: Sort headers.
12031 * alpha-linux-tdep.c: Sort headers.
12032 * alpha-linux-nat.c: Sort headers.
12033 * alpha-bsd-tdep.c: Sort headers.
12034 * alpha-bsd-nat.c: Sort headers.
12035 * aix-thread.c: Sort headers.
12036 * agent.c: Sort headers.
12037 * addrmap.c: Sort headers.
12038 * ada-varobj.c: Sort headers.
12039 * ada-valprint.c: Sort headers.
12040 * ada-typeprint.c: Sort headers.
12041 * ada-tasks.c: Sort headers.
12042 * ada-lang.c: Sort headers.
12043 * aarch64-tdep.c: Sort headers.
12044 * aarch64-ravenscar-thread.c: Sort headers.
12045 * aarch64-newlib-tdep.c: Sort headers.
12046 * aarch64-linux-tdep.c: Sort headers.
12047 * aarch64-linux-nat.c: Sort headers.
12048 * aarch64-fbsd-tdep.c: Sort headers.
12049 * aarch64-fbsd-nat.c: Sort headers.
12050 * aarch32-linux-nat.c: Sort headers.
12051
120522019-04-04 Tom Tromey <tom@tromey.com>
12053
12054 * varobj.c (varobj_create): Update.
12055 * rust-exp.y (struct rust_parser) <update_innermost_block,
12056 lookup_symbol>: New methods.
12057 (rust_parser::update_innermost_block, rust_parser::lookup_symbol):
12058 Rename.
12059 (rust_parser::rust_lookup_type)
12060 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
12061 * printcmd.c (display_command, do_one_display): Update.
12062 * parser-defs.h (struct parser_state) <parser_state>: Add
12063 "tracker" parameter.
12064 (block_tracker): New member.
12065 (class innermost_block_tracker) <innermost_block_tracker>: Add
12066 "types" parameter.
12067 <reset>: Remove method.
12068 (innermost_block): Don't declare.
12069 (null_post_parser): Update.
12070 * parse.c (innermost_block): Remove global.
12071 (write_dollar_variable): Update.
12072 (parse_exp_1, parse_exp_in_context): Add "tracker" parameter.
12073 Remove "tracker_types" parameter.
12074 (parse_expression): Add "tracker" parameter.
12075 (parse_expression_for_completion): Update.
12076 (null_post_parser): Add "tracker" parameter.
12077 * p-exp.y: Update rules.
12078 * m2-exp.y: Update rules.
12079 * language.h (struct language_defn) <la_post_parser>: Add
12080 "tracker" parameter.
12081 * go-exp.y: Update rules.
12082 * f-exp.y: Update rules.
12083 * expression.h (parse_expression, parse_exp_1): Add "tracker"
12084 parameter.
12085 * d-exp.y: Update rules.
12086 * c-exp.y: Update rules.
12087 * breakpoint.c (set_breakpoint_condition): Create an
12088 innermost_block_tracker.
12089 (watch_command_1): Likewise.
12090 * ada-lang.c (resolve): Add "tracker" parameter.
12091 (resolve_subexp): Likewise.
12092 * ada-exp.y (write_var_from_sym): Update.
12093
120942019-04-04 Tom Tromey <tom@tromey.com>
12095
12096 * type-stack.h: New file.
12097 * type-stack.c: New file.
12098 * parser-defs.h (enum type_pieces, union type_stack_elt): Move to
12099 type-stack.h.
12100 (insert_into_type_stack, insert_type, push_type, push_type_int)
12101 (insert_type_address_space, pop_type, pop_type_int)
12102 (pop_typelist, pop_type_stack, append_type_stack)
12103 (push_type_stack, get_type_stack, push_typelist)
12104 (follow_type_instance_flags, follow_types): Don't declare.
12105 * parse.c (type_stack): Remove global.
12106 (parse_exp_in_context): Update.
12107 (insert_into_type_stack, insert_type, push_type, push_type_int)
12108 (insert_type_address_space, pop_type, pop_type_int)
12109 (pop_typelist, pop_type_stack, append_type_stack)
12110 (push_type_stack, get_type_stack, push_typelist)
12111 (follow_type_instance_flags, follow_types): Remove (moved to
12112 type-stack.c).
12113 * f-exp.y (type_stack): New global.
12114 Update rules.
12115 (push_kind_type, f_parse): Update.
12116 * d-exp.y (type_stack): New global.
12117 Update rules.
12118 (d_parse): Update.
12119 * c-exp.y (struct c_parse_state) <type_stack>: New member.
12120 Update rules.
12121 * Makefile.in (COMMON_SFILES): Add type-stack.c.
12122 (HFILES_NO_SRCDIR): Add type-stack.h.
12123
121242019-04-04 Tom Tromey <tom@tromey.com>
12125
12126 * rust-exp.y (rust_parser::lex_identifier, rustyylex)
12127 (rust_parser::convert_ast_to_expression, rust_parse)
12128 (rust_lex_test_completion, rust_lex_tests): Update.
12129 * parser-defs.h (struct expr_completion_state): New.
12130 (struct parser_state) <parser_state>: Add completion parameter.
12131 <mark_struct_expression, mark_completion_tag>: New methods.
12132 <parse_completion, m_completion_state>: New members.
12133 (prefixify_expression, null_post_parser): Update.
12134 (mark_struct_expression, mark_completion_tag): Don't declare.
12135 * parse.c (parse_completion, expout_last_struct)
12136 (expout_tag_completion_type, expout_completion_name): Remove
12137 globals.
12138 (parser_state::mark_struct_expression)
12139 (parser_state::mark_completion_tag): Now methods.
12140 (prefixify_expression): Add last_struct parameter.
12141 (prefixify_subexp): Likewise.
12142 (parse_exp_1): Update.
12143 (parse_exp_in_context): Add cstate parameter. Update.
12144 (parse_expression_for_completion): Create an
12145 expr_completion_state.
12146 (null_post_parser): Add "completion" parameter.
12147 * p-exp.y: Update rules.
12148 (yylex): Update.
12149 * language.h (struct language_defn) <la_post_parser>: Add
12150 "completing" parameter.
12151 * go-exp.y: Update rules.
12152 (lex_one_token): Update.
12153 * expression.h (parse_completion): Don't declare.
12154 * d-exp.y: Update rules.
12155 (lex_one_token): Update rules.
12156 * c-exp.y: Update rules.
12157 (lex_one_token): Update.
12158 * ada-lang.c (resolve): Add "parse_completion" parameter.
12159 (resolve_subexp): Likewise.
12160 (ada_resolve_function): Likewise.
12161
121622019-04-04 Tom Tromey <tom@tromey.com>
12163
12164 * parser-defs.h (struct parser_state) <start_arglist,
12165 end_arglist>: New methods.
12166 <arglist_len, m_funcall_chain>: New members.
12167 (arglist_len, start_arglist, end_arglist): Don't declare.
12168 * parse.c (arglist_len, funcall_chain): Remove global.
12169 (start_arglist, end_arglist): Remove functions.
12170 (parse_exp_in_context): Update.
12171 * p-exp.y: Update rules.
12172 * m2-exp.y: Update rules.
12173 * go-exp.y: Update rules.
12174 * f-exp.y: Update rules.
12175 * d-exp.y: Update rules.
12176 * c-exp.y: Update rules.
12177
121782019-04-04 Tom Tromey <tom@tromey.com>
12179
12180 * rust-exp.y (struct rust_parser) <lex_hex, lex_escape,
12181 lex_operator, push_back>: New methods.
12182 Update all rules.
12183 (rust_parser::lex_hex, lex_escape): Rename and update.
12184 (rust_parser::lex_string, rust_parser::lex_identifier): Update.
12185 (rust_parser::lex_operator): Rename and update.
12186 (rust_parser::lex_number, rustyylex, rustyyerror)
12187 (rust_lex_test_init, rust_lex_test_sequence)
12188 (rust_lex_test_push_back, rust_lex_tests): Update.
12189 * parser-defs.h (struct parser_state) <parser_state>: Add "input"
12190 parameter.
12191 <lexptr, prev_lexptr>: New members.
12192 (lexptr, prev_lexptr): Don't declare.
12193 * parse.c (lexptr, prev_lexptr): Remove globals.
12194 (parse_exp_in_context): Update.
12195 * p-exp.y (yylex, yyerror): Update.
12196 * m2-exp.y (parse_number, yylex, yyerror): Update.
12197 * go-exp.y (lex_one_token, yyerror): Update.
12198 * f-exp.y (match_string_literal, yylex, yyerror): Update.
12199 * d-exp.y (lex_one_token, yyerror): Update.
12200 * c-exp.y (scan_macro_expansion, finished_macro_expansion)
12201 (lex_one_token, yyerror): Update.
12202 * ada-lex.l (YY_INPUT): Update.
12203 (rewind_to_char): Update.
12204 * ada-exp.y (yyerror): Update.
12205
122062019-04-04 Tom Tromey <tom@tromey.com>
12207
12208 * rust-exp.y (rustyylex, rust_lex_tests): Update.
12209 * parser-defs.h (struct parser_state) <parser_state>: Add new
12210 parameter.
12211 <comma_terminates>: New member.
12212 (comma_terminates): Don't declare global.
12213 * parse.c (comma_terminates): Remove global.
12214 (parse_exp_in_context): Update.
12215 * p-exp.y (yylex): Update.
12216 * m2-exp.y (yylex): Update.
12217 * go-exp.y (lex_one_token): Update.
12218 * f-exp.y (yylex): Update.
12219 * d-exp.y (lex_one_token): Update.
12220 * c-exp.y (lex_one_token): Update.
12221 * ada-lex.l: Update.
12222
122232019-04-04 Tom Tromey <tom@tromey.com>
12224
12225 * rust-exp.y (struct rust_parser) <paren_depth>: New member.
12226 (rustyylex, rust_lex_test_init, rust_lex_test_one)
12227 (rust_lex_test_sequence, rust_lex_test_push_back): Update.
12228 * parser-defs.h (paren_depth): Don't declare.
12229 * parse.c (paren_depth): Remove global.
12230 (parse_exp_in_context): Update.
12231 * p-exp.y (paren_depth): New global.
12232 (pascal_parse): Initialize it.
12233 * m2-exp.y (paren_depth): New global.
12234 (m2_parse): Initialize it.
12235 * go-exp.y (paren_depth): New global.
12236 (go_parse): Initialize it.
12237 * f-exp.y (paren_depth): New global.
12238 (f_parse): Initialize it.
12239 * d-exp.y (paren_depth): New global.
12240 (d_parse): Initialize it.
12241 * c-exp.y (paren_depth): New global.
12242 (c_parse): Initialize it.
12243 * ada-lex.l (paren_depth): New global.
12244 (lexer_init): Initialize it.
12245
122462019-04-04 Tom Tromey <tom@tromey.com>
12247
12248 * rust-exp.y (rust_parser::crate_name, rust_parser::super_name)
12249 (rust_parser::convert_ast_to_type)
12250 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
12251 * parser-defs.h (struct parser_state) <parser_state>: Add
12252 parameters. Initialize new members.
12253 <expression_context_block, expression_context_pc>: New members.
12254 * parse.c (expression_context_block, expression_context_pc):
12255 Remove globals.
12256 (parse_exp_in_context): Update.
12257 * p-exp.y: Update all rules.
12258 (yylex): Update.
12259 * m2-exp.y: Update all rules.
12260 (yylex): Update.
12261 * go-exp.y (yylex): Update.
12262 * f-exp.y (yylex): Update.
12263 * d-exp.y: Update all rules.
12264 (yylex): Update.
12265 * c-exp.y: Update all rules.
12266 (lex_one_token, classify_name, yylex, c_parse): Update.
12267 * ada-exp.y (write_var_or_type, write_name_assoc): Update.
12268
122692019-04-04 Tom Tromey <tom@tromey.com>
12270
12271 * gdbarch.h, gdbarch.c: Rebuild.
12272 * gdbarch.sh (dtrace_parse_probe_argument): Change type.
12273 * stap-probe.h:
12274 (struct stap_parse_info): Replace "parser_state" with
12275 "expr_builder".
12276 * parser-defs.h (struct expr_builder): Rename from "parser_state".
12277 (parser_state): New class.
12278 * parse.c (expr_builder): Rename.
12279 (expr_builder::release): Rename.
12280 (write_exp_elt, write_exp_elt_opcode, write_exp_elt_sym)
12281 (write_exp_elt_msym, write_exp_elt_block, write_exp_elt_objfile)
12282 (write_exp_elt_longcst, write_exp_elt_floatcst)
12283 (write_exp_elt_type, write_exp_elt_intern, write_exp_string)
12284 (write_exp_string_vector, write_exp_bitstring)
12285 (write_exp_msymbol, mark_struct_expression)
12286 (write_dollar_variable)
12287 (insert_type_address_space, increase_expout_size): Replace
12288 "parser_state" with "expr_builder".
12289 * dtrace-probe.c: Replace "parser_state" with "expr_builder".
12290 * amd64-linux-tdep.c (amd64_dtrace_parse_probe_argument): Replace
12291 "parser_state" with "expr_builder".
12292
122932019-04-04 Tom Tromey <tom@tromey.com>
12294
12295 * rust-exp.y: Replace "parse_language" with method call.
12296 * p-exp.y:
12297 (yylex): Replace "parse_language" with method call.
12298 * m2-exp.y:
12299 (yylex): Replace "parse_language" with method call.
12300 * go-exp.y (classify_name): Replace "parse_language" with method
12301 call.
12302 * f-exp.y (yylex): Replace "parse_language" with method call.
12303 * d-exp.y (lex_one_token): Replace "parse_language" with method
12304 call.
12305 * c-exp.y:
12306 (lex_one_token, classify_name, yylex): Replace "parse_language"
12307 with method call.
12308 * ada-exp.y (find_primitive_type, type_char)
12309 (type_system_address): Replace "parse_language" with method call.
12310
123112019-04-04 Tom Tromey <tom@tromey.com>
12312
12313 * rust-exp.y: Replace "parse_gdbarch" with method call.
12314 * parse.c (write_dollar_variable, insert_type_address_space):
12315 Replace "parse_gdbarch" with method call.
12316 * p-exp.y (parse_type, yylex): Replace "parse_gdbarch" with method
12317 call.
12318 * objc-lang.c (end_msglist): Replace "parse_gdbarch" with method
12319 call.
12320 * m2-exp.y (parse_type, parse_m2_type, yylex): Replace
12321 "parse_gdbarch" with method call.
12322 * go-exp.y (parse_type, classify_name): Replace "parse_gdbarch"
12323 with method call.
12324 * f-exp.y (parse_type, parse_f_type, yylex): Replace
12325 "parse_gdbarch" with method call.
12326 * d-exp.y (parse_type, parse_d_type, lex_one_token): Replace
12327 "parse_gdbarch" with method call.
12328 * c-exp.y (parse_type, parse_number, classify_name): Replace
12329 "parse_gdbarch" with method call.
12330 * ada-lex.l: Replace "parse_gdbarch" with method call.
12331 * ada-exp.y (parse_type, find_primitive_type, type_char)
12332 (type_system_address): Replace "parse_gdbarch" with method call.
12333
123342019-04-04 Tom Tromey <tom@tromey.com>
12335
12336 * dtrace-probe.c (dtrace_probe::build_arg_exprs): Update.
12337 * stap-probe.c (stap_parse_argument): Update.
12338 * stap-probe.h (struct stap_parse_info) <stap_parse_info>: Remove
12339 initial_size parameter.
12340 * rust-exp.y (rust_lex_tests): Update.
12341 * parse.c (parser_state): Update.
12342 (parse_exp_in_context): Update.
12343 * parser-defs.h (struct parser_state) <parser_state>: Remove
12344 "initial_size" parameter.
12345
123462019-04-04 Tom Tromey <tom@tromey.com>
12347
12348 * parser-defs.h (increase_expout_size): Don't declare.
12349 * parse.c (increase_expout_size): Now static.
12350
123512019-04-04 Thomas Schwinge <thomas@codesourcery.com>
12352
12353 * gnu-nat.c (gnu_nat_target::wait): Fix
12354 target_waitstatus_to_string call.
12355
123562019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
12357
12358 * eval.c (evaluate_subexp_standard): Handle internal functions
12359 during Fortran function call handling.
12360
123612019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
12362
12363 * NEWS: Mention new internal functions.
12364 * dwarf2read.c (dwarf2_init_complex_target_type): New function.
12365 (read_base_type): Use dwarf2_init_complex_target_type.
12366 * value.c (creal_internal_fn): New function.
12367 (cimag_internal_fn): New function.
12368 (_initialize_values): Register new internal functions.
12369
123702019-04-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12371
12372 * infrun.c (stop_all_threads): If debug_infrun, always
12373 trace the wait status after wait_one, using
12374 target_waitstatus_to_string and target_pid_to_str.
12375 (handle_inferior_event): Replace various trace of
12376 wait status kind by a single trace.
12377 * gdb/gnu-nat.c (gnu_nat_target::wait): Replace local
12378 wait status kind image by target_waitstatus_to_string.
12379 * target/waitstatus.c (target_waitstatus_to_string): Fix
12380 obsolete comment.
12381
123822019-04-01 Tom Tromey <tromey@adacore.com>
12383
12384 PR symtab/23331:
12385 * dwarf2read.c (partial_die_info::read): Handle DW_AT_ranges.
12386
123872019-04-01 Sergio Durigan Junior <sergiodj@redhat.com>
12388 Pedro Alves <palves@redhat.com>
12389
12390 * top.c (quit_force): Call 'finalize_values'.
12391 * value.c (finalize_values): New function.
12392 * value.h (finalize_values): Declare.
12393
123942019-03-30 Eli Zaretskii <eliz@gnu.org>
12395
12396 * NEWS: Announce $_gdb_major and $_gdb_minor.
12397
12398 * top.c (init_gdb_version_vars): New function.
12399 (gdb_init): Call init_gdb_version_vars.
12400
124012019-03-29 Tom Tromey <tromey@adacore.com>
12402
12403 * printcmd.c (_initialize_printcmd): Add usage lines. Update some
12404 help text. Remove dead code.
12405
124062019-03-29 Keith Seitz <keiths@redhat.com>
12407
12408 From Siddhesh Poyarekar:
12409 * f-lang.h (f77_get_upperbound): Return LONGEST.
12410 (f77_get_lowerbound): Likewise.
12411 * f-typeprint.c (f_type_print_varspec_suffix): Expand
12412 UPPER_BOUND and LOWER_BOUND to LONGEST. Use plongest to format
12413 print them.
12414 (f_type_print_base): Expand UPPER_BOUND to LONGEST. Use
12415 plongest to format print it.
12416 * f-valprint.c (f77_get_lowerbound): Return LONGEST.
12417 (f77_get_upperbound): Likewise.
12418 (f77_get_dynamic_length_of_aggregate): Expand UPPER_BOUND,
12419 LOWER_BOUND to LONGEST.
12420 (f77_create_arrayprint_offset_tbl): Likewise.
12421
124222019-03-29 Keith Seitz <keiths@redhat.com>
12423
12424 * ada-lang.c (ada_template_to_fixed_record_type_1): Use
12425 %s/pulongest for TYPE_LENGTH instead of %d in format
12426 strings.
12427 * ada-typerint.c (ada_print_type): Likewise.
12428 * amd64-windows-tdep.c (amd64_windows_store_arg_in_reg): Likewise.
12429 * compile/compile-c-support.c (generate_register_struct): Likewise.
12430 * gdbtypes.c (recursive_dump_type): Likewise.
12431 * gdbtypes.h (struct type) <length>: Change type to ULONGEST.
12432 * m2-typeprint.c (m2_array): Use %s/pulongest for TYPE_LENGTH
12433 instead of %d in format strings.
12434 * riscv-tdep.c (riscv_type_alignment): Cast second argument
12435 to std::min to ULONGEST.
12436 * symmisc.c (print_symbol): Use %s/pulongest for TYPE_LENGTH
12437 instead of %d in format strings.
12438 * tracepoint.c (info_scope_command): Likewise.
12439 * typeprint.c (print_offset_data::update)
12440 (print_offset_data::finish): Likewise.
12441 * xtensa-tdep.c (xtensa_store_return_value)
12442 (xtensa_push_dummy_call): Likewise.
12443
124442019-03-28 Jon Turney <jon.turney@dronecode.org.uk>
12445
12446 * windows-nat.c (display_selector): Fixed format specifications
12447 for 64-bit Cygwin.
12448
124492019-03-28 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12450
12451 * infrun.c (follow_exec): Call target_terminal::ours_for_output.
12452
124532019-03-28 Sandra Loosemore <sandra@codesourcery.com>
12454
12455 * nios2-tdep.h (struct gdbarch_tdep): Add is_kernel_helper.
12456 * nios2-tdep.c (nios2_get_next_pc): Skip over kernel helpers.
12457 * nios2-linux-tdep.c (nios2_linux_is_kernel_helper): New.
12458 (nios2_linux_init_abi): Install it.
12459
124602019-03-28 Alan Hayward <alan.hayward@arm.com>
12461
12462 * aarch64-tdep.c (aarch64_vnv_type): Use vector types.
12463
124642019-03-28 Alan Hayward <alan.hayward@arm.com>
12465
12466 * features/aarch64-sve.c (create_feature_aarch64_sve): Add q view.
12467
124682019-03-24 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12469 Tom Tromey <tromey@adacore.com>
12470
12471 * minsyms.c (minimal_symbol_upper_bound): Fix buffer overflow.
12472
124732019-03-26 Joel Brobecker <brobecker@adacore.com>
12474
12475 * gdb-gdb.py.in (StructMainTypePrettyPrinter.bound_img): New method.
12476 (StructMainTypePrettyPrinter.bounds_img): Use new "bound_img"
12477 method to compute the bounds of range types. Also print "[evaluated]"
12478 if the bounds' values come from a dynamic evaluation.
12479
124802019-03-26 Andrew Burgess <andrew.burgess@embecosm.com>
12481
12482 * cp-valprint.c (cp_print_value_fields): Don't print trailing
12483 whitespace when pretty printing is on.
12484
124852019-03-26 Alan Hayward <alan.hayward@arm.com>
12486
12487 * ppc-linux-nat.c: Add include.
12488
124892019-03-26 Alan Hayward <alan.hayward@arm.com>
12490
12491 * NEWS: Mention AArch64 Pointer Authentication.
12492
124932019-03-26 Alan Hayward <alan.hayward@arm.com>
12494
12495 * arm-linux-nat.c: Add include.
12496
124972019-03-25 Simon Marchi <simon.marchi@polymtl.ca>
12498
12499 * source-cache.c (source_cache::get_source_lines): Re-read
12500 fullname after calling open_source_file.
12501
125022019-03-25 John Baldwin <jhb@FreeBSD.org>
12503
12504 * NEWS: Mention TLS support for FreeBSD.
12505
125062019-03-25 Tom Tromey <tromey@adacore.com>
12507
12508 * minsyms.c (BUNCH_SIZE): Update comment.
12509 (~minimal_symbol_reader): Remove old comment.
12510 (compact_minimal_symbols): Update comment.
12511 (minimal_symbol_reader::install): Remove old comment. Update
12512 other comments.
12513
125142019-03-25 Alan Hayward <alan.hayward@arm.com>
12515
12516 * s390-linux-nat.c: Add include.
12517
125182019-03-25 Alan Hayward <alan.hayward@arm.com>
12519
12520 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
12521 Call linux_get_hwcap.
12522 * aarch64-linux-tdep.c (aarch64_linux_core_read_description):
12523 Likewise.
12524 (aarch64_linux_get_hwcap): Remove function.
12525 * aarch64-linux-tdep.h (aarch64_linux_get_hwcap): Remove
12526 declaration.
12527 * arm-linux-nat.c (arm_linux_nat_target::read_description):Call
12528 linux_get_hwcap.
12529 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
12530 * linux-tdep.c (linux_get_hwcap): Add function.
12531 (linux_get_hwcap2): Likewise.
12532 * linux-tdep.h (linux_get_hwcap): Add declaration.
12533 (linux_get_hwcap2): Likewise.
12534 * ppc-linux-nat.c (ppc_linux_get_hwcap): Remove function.
12535 (ppc_linux_get_hwcap2): Likewise.
12536 (ppc_linux_nat_target::region_ok_for_hw_watchpoint): Call
12537 linux_get_hwcap.
12538 (ppc_linux_nat_target::insert_watchpoint): Likewise.
12539 (ppc_linux_nat_target::watchpoint_addr_within_range): Likewise.
12540 (ppc_linux_nat_target::read_description): Likewise.
12541 * ppc-linux-tdep.c (ppc_linux_core_read_description): Likewise.
12542 * s390-linux-nat.c: Likewise.
12543 * s390-linux-tdep.c (s390_core_read_description): Likewise.
12544
125452019-03-24 Tom Tromey <tom@tromey.com>
12546
12547 * ada-lang.c (standard_lookup): Simplify initialization.
12548 (ada_lookup_symbol_nonlocal): Simplify return.
12549 * solib-spu.c (spu_lookup_lib_symbol): Simplify return.
12550 * solib-darwin.c (darwin_lookup_lib_symbol): Simplify return.
12551 * solib-svr4.c (elf_lookup_lib_symbol): Simplify return.
12552 * rust-lang.c (rust_lookup_symbol_nonlocal): Simplify
12553 initialization.
12554 * solib.c (solib_global_lookup): Simplify.
12555 * symtab.c (null_block_symbol): Remove.
12556 (symbol_cache_lookup): Simplify returns.
12557 (lookup_language_this): Simplify returns.
12558 (lookup_symbol_aux): Simplify return.
12559 (lookup_local_symbol): Simplify returns.
12560 (lookup_global_symbol_from_objfile): Simplify return.
12561 (lookup_symbol_in_objfile_symtabs)
12562 (lookup_symbol_in_objfile_from_linkage_name): Simplify return.
12563 (lookup_symbol_via_quick_fns, lookup_symbol_in_static_block)
12564 (lookup_static_symbol, lookup_global_symbol): Simplify return.
12565 * cp-namespace.c (cp_lookup_bare_symbol)
12566 (cp_search_static_and_baseclasses, cp_lookup_symbol_via_imports)
12567 (cp_lookup_symbol_via_all_imports, cp_lookup_nested_symbol_1)
12568 (cp_lookup_nested_symbol): Don't use null_block_symbol.
12569 (cp_lookup_symbol_via_imports): Simplify initialization.
12570 (find_symbol_in_baseclass): Likewise.
12571 * symtab.h (null_block_symbol): Remove.
12572 * d-namespace.c (d_lookup_symbol): Don't use null_block_symbol.
12573 (d_lookup_nested_symbol, d_lookup_symbol_imports)
12574 (d_lookup_symbol_module): Likewise.
12575 (find_symbol_in_baseclass): Simplify initialization.
12576
125772019-03-24 Tom Tromey <tom@tromey.com>
12578
12579 * expression.h: Don't include symtab.h.
12580 (struct block): Forward declare.
12581
125822019-03-24 Tom Tromey <tom@tromey.com>
12583
12584 * c-exp.y (typebase): Remove casts.
12585 * gdbtypes.c (lookup_unsigned_typename, )
12586 (lookup_signed_typename): Remove cast.
12587 * eval.c (parse_to_comma_and_eval): Remove cast.
12588 * parse.c (write_dollar_variable): Remove cast.
12589 * block.h (struct block) <superblock>: Now const.
12590 * symfile-debug.c (debug_qf_map_matching_symbols): Update.
12591 * psymtab.c (psym_map_matching_symbols): Make "block" const.
12592 (map_block): Make "block" const.
12593 * symfile.h (struct quick_symbol_functions)
12594 <map_matching_symbols>: Constify block argument to "callback".
12595 * symtab.c (basic_lookup_transparent_type_quick): Make "block"
12596 const.
12597 (find_pc_sect_compunit_symtab): Make "b" const.
12598 (find_symbol_at_address): Likewise.
12599 (search_symbols): Likewise.
12600 * dwarf2read.c (dw2_lookup_symbol): Make "block" const.
12601 (dw2_debug_names_lookup_symbol): Likewise.
12602 (dw2_map_matching_symbols): Update.
12603 * p-valprint.c (pascal_val_print): Remove "block".
12604 * ada-lang.c (ada_add_global_exceptions): Make "b" const.
12605 (aux_add_nonlocal_symbols): Make "block" const.
12606 (resolve_subexp): Remove cast.
12607 * linespec.c (iterate_over_all_matching_symtabs): Make "block"
12608 const.
12609 (iterate_over_file_blocks): Likewise.
12610 * f-exp.y (%union) <bval>: Remove.
12611 * coffread.c (patch_opaque_types): Make "b" const.
12612 * spu-tdep.c (spu_catch_start): Make "block" const.
12613 * c-valprint.c (print_unpacked_pointer): Remove "block".
12614 * symmisc.c (dump_symtab_1): Make "b" const.
12615 (block_depth): Make "block" const.
12616 * d-exp.y (%union) <bval>: Remove.
12617 * cp-support.h (cp_lookup_rtti_type): Update.
12618 * cp-support.c (cp_lookup_rtti_type): Make "block" const.
12619 * psymtab.c (psym_lookup_symbol): Make "block" const.
12620 (maintenance_check_psymtabs): Make "b" const.
12621 * python/py-framefilter.c (extract_sym): Make "sym_block" const.
12622 (enumerate_locals, enumerate_args): Update.
12623 * python/py-symtab.c (stpy_global_block): Make "block" const.
12624 (stpy_static_block): Likewise.
12625 * inline-frame.c (block_starting_point_at): Make "new_block"
12626 const.
12627 * block.c (find_block_in_blockvector): Make return type const.
12628 (blockvector_for_pc_sect): Make "b" const.
12629 (find_block_in_blockvector): Make "b" const.
12630
126312019-03-23 Tom Tromey <tom@tromey.com>
12632
12633 * varobj.c (varobj_create): Update.
12634 * symfile.c (clear_symtab_users): Don't reset innermost_block.
12635 * printcmd.c (display_command, do_one_display): Don't reset
12636 innermost_block.
12637 * parser-defs.h (enum innermost_block_tracker_type): Move to
12638 expression.h.
12639 (innermost_block): Update comment.
12640 * parse.c (parse_exp_1): Add tracker_types parameter.
12641 (parse_exp_in_context): Rename from parse_exp_in_context_1. Add
12642 tracker_types parameter. Reset innermost_block.
12643 (parse_exp_in_context): Remove.
12644 (parse_expression_for_completion): Update.
12645 * objfiles.c (~objfile): Don't reset expression_context_block or
12646 innermost_block.
12647 * expression.h (enum innermost_block_tracker_type): Move from
12648 parser-defs.h.
12649 (parse_exp_1): Add tracker_types parameter.
12650 * breakpoint.c (set_breakpoint_condition, watch_command_1): Don't
12651 reset innermost_block.
12652
126532019-03-23 Tom Tromey <tom@tromey.com>
12654
12655 * objfiles.h: Include bcache.h.
12656
126572019-03-23 Tom Tromey <tom@tromey.com>
12658
12659 * linespec.c (get_current_search_block): Use
12660 scoped_restore_current_language.
12661 * symmisc.c (dump_symtab): Use scoped_restore_current_language.
12662
126632019-03-22 Alan Hayward <alan.hayward@arm.com>
12664 Jiong Wang <jiong.wang@arm.com>
12665
12666 * aarch64-linux-tdep.c
12667 (aarch64_linux_iterate_over_regset_sections): Check for pauth
12668 section.
12669 * aarch64-linux-tdep.h (AARCH64_LINUX_SIZEOF_PAUTH): New define.
12670
126712019-03-22 Alan Hayward <alan.hayward@arm.com>
12672 Jiong Wang <jiong.wang@arm.com>
12673
12674 * aarch64-tdep.c (aarch64_analyze_prologue): Check for pauth
12675 instructions.
12676 (aarch64_analyze_prologue_test): Add PACIASP test.
12677 (aarch64_prologue_prev_register): Unmask PC value.
12678
126792019-03-22 Alan Hayward <alan.hayward@arm.com>
12680 Jiong Wang <jiong.wang@arm.com>
12681
12682 * aarch64-tdep.c (aarch64_frame_unmask_address): New function.
12683 (aarch64_dwarf2_prev_register): Unmask PC value.
12684 (aarch64_dwarf2_frame_init_reg): Init pauth registers.
12685 (aarch64_execute_dwarf_cfa_vendor_op): Check for
12686 DW_CFA_AARCH64_negate_ra_state.
12687 (aarch64_gdbarch_init): Add aarch64_execute_dwarf_cfa_vendor_op.
12688
126892019-03-22 Alan Hayward <alan.hayward@arm.com>
12690 Jiong Wang <jiong.wang@arm.com>
12691
12692 * aarch64-tdep.c (aarch64_dwarf_reg_to_regnum): Check for pauth
12693 registers.
12694 (aarch64_pseudo_register_name): Likewise.
12695 (aarch64_pseudo_register_type): Likewise.
12696 (aarch64_pseudo_register_reggroup_p): Likewise.
12697 (aarch64_gdbarch_init): Add pauth registers.
12698 * aarch64-tdep.h (AARCH64_DWARF_PAUTH_RA_STATE): New define.
12699 (AARCH64_DWARF_PAUTH_DMASK): Likewise.
12700 (AARCH64_DWARF_PAUTH_CMASK): Likewise.
12701 (struct gdbarch_tdep): Add regnum for ra_state.
12702
127032019-03-22 Alan Hayward <alan.hayward@arm.com>
12704 Jiong Wang <jiong.wang@arm.com>
12705
12706 * arch/aarch64.h (AARCH64_PAUTH_REGS_SIZE): New define.
12707
127082019-03-22 Alan Hayward <alan.hayward@arm.com>
12709 Jiong Wang <jiong.wang@arm.com>
12710
12711 * aarch64-linux-nat.c (fetch_pauth_masks_from_thread): New
12712 function.
12713 (aarch64_linux_nat_target::fetch_registers): Read pauth registers.
12714 * aarch64-tdep.c (aarch64_cannot_store_register): New function.
12715 (aarch64_gdbarch_init): Add puth registers.
12716 * aarch64-tdep.h (struct gdbarch_tdep): Add pauth features.
12717 * arch/aarch64.h (AARCH64_PAUTH_DMASK_REGNUM): New define.
12718 (AARCH64_PAUTH_CMASK_REGNUM): Likewise.
12719
127202019-03-22 Alan Hayward <alan.hayward@arm.com>
12721 Jiong Wang <jiong.wang@arm.com>
12722
12723 * aarch64-linux-nat.c
12724 (aarch64_linux_nat_target::read_description): Read PACA hwcap.
12725 * aarch64-linux-tdep.c
12726 (aarch64_linux_core_read_description): Likewise.
12727 (aarch64_linux_get_hwcap): New function.
12728 * aarch64-linux-tdep.h (AARCH64_HWCAP_PACA): New define.
12729 (aarch64_linux_get_hwcap): New declaration.
12730
127312019-03-22 Alan Hayward <alan.hayward@arm.com>
12732 Jiong Wang <jiong.wang@arm.com>
12733
12734 * aarch64-linux-nat.c
12735 (aarch64_linux_nat_target::read_description): Add pauth param.
12736 * aarch64-linux-tdep.c
12737 (aarch64_linux_core_read_description): Likewise.
12738 * aarch64-tdep.c (struct target_desc): Add in pauth.
12739 (aarch64_read_description): Add pauth param.
12740 (aarch64_gdbarch_init): Likewise.
12741 * aarch64-tdep.h (aarch64_read_description): Likewise.
12742 * arch/aarch64.c (aarch64_create_target_description): Likewise.
12743 * arch/aarch64.h (aarch64_create_target_description): Likewise.
12744 * features/Makefile: Add new files.
12745 * features/aarch64-pauth.c: New file.
12746 * features/aarch64-pauth.xml: New file.
12747
127482019-03-20 Tom Tromey <tromey@adacore.com>
12749
12750 * infrun.c (handle_inferior_event): Rename from
12751 handle_inferior_event_1. Create a scoped_value_mark.
12752 (handle_inferior_event): Remove.
12753
127542019-03-19 Tom Tromey <tromey@adacore.com>
12755
12756 * mi/mi-interp.c (mi_on_normal_stop_1): Only show displays once.
12757 * infrun.h (print_stop_event): Add "displays" parameter.
12758 * infrun.c (print_stop_event): Add "displays" parameter.
12759
127602019-03-19 Pedro Alves <palves@redhat.com>
12761
12762 * tui/tui-out.c (tui_ui_out::do_field_string): Simplify.
12763 (tui_ui_out::do_text): Add comments. Reset M_LINE to 0 instead of
12764 to -1. Fix TABs vs spaces.
12765 (tui_ui_out::tui_ui_out): Don't initialize fields here.
12766 * tui/tui-out.h (tui_ui_out) Add intro comments.
12767 <m_line, m_start_of_line>: In-class initialize, and add describing
12768 comment.
12769
127702019-03-18 Alan Hayward <alan.hayward@arm.com>
12771
12772 * arm-linux-nat.c (arm_linux_insert_hw_breakpoint1): Fix
12773 variable names.
12774 (arm_linux_remove_hw_breakpoint1): Use a gdb::function_view.
12775
127762019-03-18 Pedro Alves <palves@redhat.com>
12777 Eli Zaretskii <eliz@gnu.org>
12778
12779 * tui/tui-out.c (tui_ui_out::tui_ui_out): Fix initialization of
12780 m_line and m_start_of_line.
12781
127822019-03-18 Eli Zaretskii <eliz@gnu.org>
12783
12784 * tui/tui-io.c (gdb_wgetch): Don't echo CR.
12785 (tui_getc): When gdb_wgetch returns a CR, behave the same as when
12786 it returns a newline. This fixes a regression in TU mode, whereby
12787 the next line is output on the same screen line as the user input.
12788
127892019-03-18 Tom Tromey <tromey@adacore.com>
12790
12791 * minsyms.c (minimal_symbol_reader::install): Remove call to
12792 obstack_blank.
12793
127942019-03-18 Pedro Alves <palves@redhat.com>
12795
12796 * tui/tui-io.c (reverse_mode_p, reverse_save_bg, reverse_save_fg):
12797 New globals.
12798 (apply_style): New, factored out from ...
12799 (apply_ansi_escape): ... this. Handle reverse video mode.
12800 (tui_set_reverse_mode): New function.
12801 * tui/tui-io.h (tui_set_reverse_mode): New declaration.
12802 * tui/tui-winsource.c (tui_show_source_line): Use
12803 tui_set_reverse_mode instead of setting A_STANDOUT.
12804 * ui-style.h (struct ui_file_style) <set_reverse, set_fg, set_bg>:
12805 New setter methods.
12806
128072019-03-18 Hannes Domani <ssbssa@yahoo.de>
12808
12809 * tui/tui-source.c (copy_source_line): Fix handling of 'column'.
12810 Handle tabs.
12811
128122019-03-18 Tom Tromey <tromey@adacore.com>
12813
12814 * ada-lang.c (empty_array): Add "high" parameter.
12815 (ada_evaluate_subexp): Update.
12816
128172019-03-17 Sergei Trofimovich <siarheit@google.com>
12818
12819 * unittests/string_view-selftests.c: Define
12820 _initialize_string_view_selftests unconditionally.
12821
128222019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
12823
12824 PR gdb/24350
12825 * windows-nat.c (windows_make_so): Remove unused text_vma variable.
12826
128272019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
12828
12829 PR gdb/24351
12830 * windows-nat.c (display_selector): Fix format specifiers.
12831
128322019-03-17 Eli Zaretskii <eliz@gnu.org>
12833
12834 * tui/tui-winsource.c (tui_set_is_exec_point_at): Call
12835 tui_refill_source_window instead of tui_refresh_win, to update the
12836 current execution line. This fixes redisplay of the current line
12837 when stepping through the code with "next" or "step".
12838
128392019-03-16 Eli Zaretskii <eliz@gnu.org>
12840
12841 * source-cache.c (source_cache::get_source_lines): Call
12842 find_source_lines to initialize s->nlines. This fixes vertical
12843 scrolling of TUI source window when the DOWN arrow is pressed.
12844
128452019-03-16 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12846
12847 * auto-load.c (_initialize_auto_load): Fix 'This options has'.
12848 linux-thread-db.c (_initialize_thread_db): Likewise.
12849
128502019-03-16 Eli Zaretskii <eliz@gnu.org>
12851
12852 * tui/tui-winsource.c (tui_show_source_line): Revert "Use
12853 wclrtoeol in tui_show_source_line". This reverts changes made in
12854 commit 4a3045920bbe4e50a0f4920b0fdc4e88ef23015c.
12855
128562019-03-15 Tom Tromey <tom@tromey.com>
12857
12858 * symtab.h (struct minimal_symbol): Derive from
12859 general_symbol_info.
12860 (MSYMBOL_VALUE, MSYMBOL_VALUE_RAW_ADDRESS)
12861 (MSYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_BYTES)
12862 (MSYMBOL_BLOCK_VALUE, MSYMBOL_VALUE_CHAIN, MSYMBOL_LANGUAGE)
12863 (MSYMBOL_SECTION, MSYMBOL_OBJ_SECTION, MSYMBOL_NATURAL_NAME)
12864 (MSYMBOL_LINKAGE_NAME, MSYMBOL_DEMANGLED_NAME)
12865 (MSYMBOL_SEARCH_NAME): Update.
12866 (MSYMBOL_SET_LANGUAGE, MSYMBOL_SET_NAMES): Remove.
12867 * solib.c (gdb_bfd_lookup_symbol_from_symtab): Don't use memset.
12868 * minsyms.c (minimal_symbol_reader::record_full): Update.
12869
128702019-03-15 Tom Tromey <tom@tromey.com>
12871
12872 * minsyms.c (minimal_symbol_reader::install): Use memcpy.
12873
128742019-03-15 Tom Tromey <tom@tromey.com>
12875
12876 * objfiles.h (struct objfile_per_bfd_storage) <msymbols>: Now a
12877 unique_xmalloc_ptr.
12878 (objfile::msymbols_range::begin, objfile::msymbols_range::end):
12879 Update.
12880 * minsyms.c (lookup_minimal_symbol_by_pc_section)
12881 (build_minimal_symbol_hash_tables)
12882 (minimal_symbol_reader::install): Update.
12883
128842019-03-15 Tom Tromey <tom@tromey.com>
12885
12886 * symtab.c (create_demangled_names_hash): Update.
12887 (symbol_set_names): Update.
12888 * objfiles.h (struct objfile_per_bfd_storage)
12889 <demangled_names_hash>: Now an htab_up.
12890 * objfiles.c (objfile_per_bfd_storage): Simplify.
12891
128922019-03-15 Tom Tromey <tom@tromey.com>
12893
12894 * objfiles.h (struct objfile_per_bfd_storage): Declare
12895 destructor.
12896 * objfiles.c (objfile_per_bfd_storage::~objfile_per_bfd_storage):
12897 New.
12898 (get_objfile_bfd_data): Use new. Don't initialize
12899 language_of_main.
12900 (free_objfile_per_bfd_storage): Remove.
12901 (objfile_bfd_data_free, objfile::~objfile): Use delete.
12902
129032019-03-15 Tom Tromey <tom@tromey.com>
12904
12905 * symfile.c (reread_symbols): Update.
12906 * objfiles.c (objfile::objfile): Update.
12907 * minsyms.h (terminate_minimal_symbol_table): Don't declare.
12908 * minsyms.c (lookup_minimal_symbol_by_pc_section): Update
12909 comment.
12910 (minimal_symbol_reader::install): Update.
12911 (terminate_minimal_symbol_table): Remove.
12912 * jit.c (jit_object_close_impl): Update.
12913
129142019-03-15 Tom Tromey <tom@tromey.com>
12915
12916 * minsyms.c (minimal_symbol_reader::record_full): Remove some
12917 initializations.
12918
129192019-03-15 Tom Tromey <tom@tromey.com>
12920
12921 * objfiles.h (struct objfile_per_bfd_storage)
12922 <demangled_hash_languages>: Now a bitset.
12923 * minsyms.c (add_minsym_to_demangled_hash_table): Update.
12924 (lookup_minimal_symbol): Update.
12925
129262019-03-15 Tom Tromey <tom@tromey.com>
12927
12928 * minsyms.h (class minimal_symbol_reader) <record_with_info>:
12929 Don't return the symbol.
12930 * coffread.c (record_minimal_symbol): Use record_full.
12931
129322019-03-14 Eli Zaretskii <eliz@gnu.org>
12933
12934 The MS-Windows port of ncurses fails to switch to a color pair if
12935 one or both of the colors are the implicit default colors. This
12936 change records the default colors when TUI is initialized, and
12937 then specifies them explicitly when a color pair uses the default
12938 colors. This allows color styling in TUI mode on MS-Windows.
12939
12940 * tui/tui-io.c [__MINGW32__]: Include windows.h. Declare
12941 ncurses_norm_attr.
12942 (tui_initialize_io) [__MINGW32__]: Record the default terminal
12943 colors in ncurses_norm_attr.
12944 (apply_ansi_escape) [__MINGW32__]: If a color in a color pair is
12945 "none", replace it with the default color recorded in
12946 ncurses_norm_attr.
12947
129482019-03-14 Tom Tromey <tromey@adacore.com>
12949
12950 * source-cache.h (class source_cache) <get_source_lines>: Return
12951 std::string.
12952 * source-cache.c (source_cache::extract_lines): Handle case where
12953 first_pos==npos. Return std::string.
12954 (source_cache::get_source_lines): Update.
12955
129562019-03-14 Tom Tromey <tromey@adacore.com>
12957
12958 * NEWS: Add item for "style sources" commands.
12959 * source-cache.c (source_cache::get_source_lines): Check
12960 source_styling.
12961 * cli/cli-style.c (source_styling): New global.
12962 (_initialize_cli_style): Add "style sources" commands.
12963 (show_style_sources): New function.
12964 * cli/cli-style.h (source_styling): Declare.
12965
129662019-03-14 Pedro Alves <palves@redhat.com>
12967 Tom Tromey <tromey@adacore.com>
12968
12969 * tui/tui-winsource.h (tui_refill_source_window): Declare.
12970 * tui/tui-winsource.c (tui_refill_source_window): New function,
12971 from...
12972 (tui_horizontal_source_scroll): ... here. Move some logic.
12973 * cli/cli-style.c (set_style_enabled): Notify new observable.
12974 * tui/tui-hooks.c (tui_redisplay_source): New function.
12975 (tui_attach_detach_observers): Attach or detach
12976 tui_redisplay_source.
12977 * observable.h (source_styling_changed): New observable.
12978 * observable.c: Define source_styling_changed observable.
12979
129802019-03-13 Tom Tromey <tromey@adacore.com>
12981
12982 * i386-gnu-nat.c (i386_gnu_nat_target::fetch_registers)
12983 (i386_gnu_nat_target::store_registers): Update.
12984 * target-debug.h (target_debug_print_std_string): New macro.
12985 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
12986 * windows-tdep.c (display_one_tib): Update.
12987 * tui/tui-stack.c (tui_make_status_line): Update.
12988 * top.c (print_inferior_quit_action): Update.
12989 * thread.c (thr_try_catch_cmd): Update.
12990 (add_thread_with_info): Update.
12991 (thread_target_id_str): Update.
12992 (thr_try_catch_cmd): Update.
12993 (thread_command): Update.
12994 (thread_find_command): Update.
12995 * record-btrace.c (record_btrace_target::info_record)
12996 (record_btrace_resume_thread, record_btrace_target::resume)
12997 (record_btrace_cancel_resume, record_btrace_step_thread)
12998 (record_btrace_target::wait, record_btrace_target::wait)
12999 (record_btrace_target::wait, record_btrace_target::stop): Update.
13000 * progspace.c (print_program_space): Update.
13001 * process-stratum-target.c
13002 (process_stratum_target::thread_address_space): Update.
13003 * linux-fork.c (linux_fork_mourn_inferior)
13004 (detach_checkpoint_command, info_checkpoints_command)
13005 (linux_fork_context): Update.
13006 (linux_fork_detach): Update.
13007 (class scoped_switch_fork_info): Update.
13008 (delete_checkpoint_command): Update.
13009 * infrun.c (follow_fork_inferior): Update.
13010 (follow_fork_inferior): Update.
13011 (proceed_after_vfork_done): Update.
13012 (handle_vfork_child_exec_or_exit): Update.
13013 (follow_exec): Update.
13014 (displaced_step_prepare_throw): Update.
13015 (displaced_step_restore): Update.
13016 (start_step_over): Update.
13017 (resume_1): Update.
13018 (clear_proceed_status_thread): Update.
13019 (proceed): Update.
13020 (print_target_wait_results): Update.
13021 (do_target_wait): Update.
13022 (context_switch): Update.
13023 (stop_all_threads): Update.
13024 (restart_threads): Update.
13025 (finish_step_over): Update.
13026 (handle_signal_stop): Update.
13027 (switch_back_to_stepped_thread): Update.
13028 (keep_going_pass_signal): Update.
13029 (print_exited_reason): Update.
13030 (normal_stop): Update.
13031 * inferior.c (inferior_pid_to_str): Change return type.
13032 (print_selected_inferior): Update.
13033 (add_inferior): Update.
13034 (detach_inferior): Update.
13035 * dummy-frame.c (fprint_dummy_frames): Update.
13036 * dcache.c (dcache_info_1): Update.
13037 * btrace.c (btrace_enable, btrace_disable, btrace_teardown)
13038 (btrace_fetch, btrace_clear): Update.
13039 * linux-tdep.c (linux_core_pid_to_str): Change return type.
13040 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): Change return
13041 type.
13042 * fbsd-tdep.c (fbsd_core_pid_to_str): Change return type.
13043 * sol2-tdep.h (sol2_core_pid_to_str): Change return type.
13044 * sol2-tdep.c (sol2_core_pid_to_str): Change return type.
13045 * gdbarch.c, gdbarch.h: Rebuild.
13046 * gdbarch.sh (core_pid_to_str): Change return type.
13047 * windows-nat.c (struct windows_nat_target) <pid_to_str>: Change
13048 return type.
13049 (windows_nat_target::pid_to_str): Change return type.
13050 (windows_delete_thread): Update.
13051 (windows_nat_target::attach): Update.
13052 (windows_nat_target::files_info): Update.
13053 * target-delegates.c: Rebuild.
13054 * sol-thread.c (class sol_thread_target) <pid_to_str>: Change
13055 return type.
13056 (sol_thread_target::pid_to_str): Change return type.
13057 * remote.c (class remote_target) <pid_to_str>: Change return
13058 type.
13059 (remote_target::pid_to_str): Change return type.
13060 (extended_remote_target::attach, remote_target::remote_stop_ns)
13061 (remote_target::remote_notif_remove_queued_reply)
13062 (remote_target::push_stop_reply, remote_target::disable_btrace):
13063 Update.
13064 (extended_remote_target::attach): Update.
13065 * remote-sim.c (struct gdbsim_target) <pid_to_str>: Change return
13066 type.
13067 (gdbsim_target::pid_to_str): Change return type.
13068 * ravenscar-thread.c (struct ravenscar_thread_target)
13069 <pid_to_str>: Change return type.
13070 (ravenscar_thread_target::pid_to_str): Change return type.
13071 * procfs.c (class procfs_target) <pid_to_str>: Change return
13072 type.
13073 (procfs_target::pid_to_str): Change return type.
13074 (procfs_target::attach): Update.
13075 (procfs_target::detach): Update.
13076 (procfs_target::fetch_registers): Update.
13077 (procfs_target::store_registers): Update.
13078 (procfs_target::wait): Update.
13079 (procfs_target::files_info): Update.
13080 * obsd-nat.c (obsd_nat_target::pid_to_str): Change return type.
13081 * nto-procfs.c (struct nto_procfs_target) <pid_to_str>: Change
13082 return type.
13083 (nto_procfs_target::pid_to_str): Change return type.
13084 (nto_procfs_target::files_info, nto_procfs_target::attach): Update.
13085 * linux-thread-db.c (class thread_db_target) <pid_to_str>: Change
13086 return type.
13087 * linux-nat.c (linux_nat_target::pid_to_str): Change return type.
13088 (exit_lwp): Update.
13089 (attach_proc_task_lwp_callback, get_detach_signal)
13090 (detach_one_lwp, resume_lwp, linux_nat_target::resume)
13091 (linux_nat_target::resume, wait_lwp, stop_callback)
13092 (maybe_clear_ignore_sigint, stop_wait_callback, status_callback)
13093 (save_stop_reason, select_event_lwp, linux_nat_filter_event)
13094 (linux_nat_wait_1, resume_stopped_resumed_lwps)
13095 (linux_nat_target::wait, linux_nat_stop_lwp): Update.
13096 * inf-ptrace.c (inf_ptrace_target::pid_to_str): Change return
13097 type.
13098 (inf_ptrace_target::attach): Update.
13099 (inf_ptrace_target::files_info): Update.
13100 * go32-nat.c (struct go32_nat_target) <pid_to_str>: Change return
13101 type.
13102 (go32_nat_target::pid_to_str): Change return type.
13103 * gnu-nat.c (gnu_nat_target::pid_to_str): Change return type.
13104 (gnu_nat_target::wait): Update.
13105 (gnu_nat_target::wait): Update.
13106 (gnu_nat_target::resume): Update.
13107 * fbsd-nat.c (fbsd_nat_target::pid_to_str): Change return type.
13108 (fbsd_nat_target::wait): Update.
13109 * darwin-nat.c (darwin_nat_target::pid_to_str): Change return
13110 type.
13111 (darwin_nat_target::attach): Update.
13112 * corelow.c (class core_target) <pid_to_str>: Change return type.
13113 (core_target::pid_to_str): Change return type.
13114 * target.c (normal_pid_to_str): Change return type.
13115 (default_pid_to_str): Likewise.
13116 (target_pid_to_str): Change return type.
13117 (target_translate_tls_address): Update.
13118 (target_announce_detach): Update.
13119 * bsd-uthread.c (struct bsd_uthread_target) <pid_to_str>: Change
13120 return type.
13121 (bsd_uthread_target::pid_to_str): Change return type.
13122 * bsd-kvm.c (class bsd_kvm_target) <pid_to_str>: Change return
13123 type.
13124 (bsd_kvm_target::pid_to_str): Change return type.
13125 * aix-thread.c (class aix_thread_target) <pid_to_str>: Change
13126 return type.
13127 (aix_thread_target::pid_to_str): Change return type.
13128 * target.h (struct target_ops) <pid_to_str>: Change return type.
13129 (target_pid_to_str, normal_pid_to_str): Likewise.
13130 * obsd-nat.h (class obsd_nat_target) <pid_to_str>: Change return
13131 type.
13132 * linux-nat.h (class linux_nat_target) <pid_to_str>: Change return
13133 type.
13134 * inf-ptrace.h (struct inf_ptrace_target) <pid_to_str>: Change
13135 return type.
13136 * gnu-nat.h (struct gnu_nat_target) <pid_to_str>: Change return
13137 type.
13138 * fbsd-nat.h (class fbsd_nat_target) <pid_to_str>: Change return
13139 type.
13140 * darwin-nat.h (class darwin_nat_target) <pid_to_str>: Change
13141 return type.
13142
131432019-03-13 Simon Marchi <simon.marchi@ericsson.com>
13144
13145 * NEWS: Mention that the new default MI version is 3. Mention
13146 changes to the output of commands and events that deal with
13147 multi-location breakpoints.
13148 * breakpoint.c: Include "mi/mi-out.h".
13149 (print_one_breakpoint): Change output syntax if using MI version
13150 >= 3.
13151 * mi/mi-main.h (mi_cmd_fix_multi_location_breakpoint_output):
13152 New.
13153 (mi_multi_location_breakpoint_output_fixed): New.
13154 * mi/mi-main.c (fix_multi_location_breakpoint_output): New.
13155 (mi_cmd_fix_multi_location_breakpoint_output): New.
13156 (mi_multi_location_breakpoint_output_fixed): New.
13157 * mi/mi-cmds.c (mi_cmds): Register command
13158 -fix-multi-location-breakpoint-output.
13159 * mi/mi-out.c (mi_out_new): Instantiate version 3 when using
13160 interpreter "mi".
13161
131622019-03-13 Simon Marchi <simon.marchi@polymtl.ca>
13163
13164 * mi/mi-out.h (mi_out_new): Change parameter to const char *.
13165 * mi/mi-out.c (mi_out_new): Change parameter to const char *,
13166 instantiate mi_ui_out based on interpreter name.
13167 * mi/mi-interp.c (mi_interp::init): Use the new mi_out_new.
13168 * mi/mi-main.c (mi_load_progress): Likewise.
13169
131702019-03-12 John Baldwin <jhb@FreeBSD.org>
13171
13172 * NEWS: Combine separate "New targets" sections for 8.3.
13173
131742019-03-12 John Baldwin <jhb@FreeBSD.org>
13175
13176 * ppc-fbsd-tdep.c (ppcfbsd_get_thread_local_address): New.
13177 (ppcfbsd_init_abi): Install gdbarch
13178 "fetch_tls_load_module_address" and "get_thread_local_address"
13179 methods.
13180
131812019-03-12 John Baldwin <jhb@FreeBSD.org>
13182
13183 * riscv-fbsd-tdep.c (riscv_fbsd_get_thread_local_address): New.
13184 (riscv_fbsd_init_abi): Install gdbarch
13185 "fetch_tls_load_module_address" and "get_thread_local_address"
13186 methods.
13187
131882019-03-12 John Baldwin <jhb@FreeBSD.org>
13189
13190 * i386-fbsd-tdep.c (i386fbsd_get_thread_local_address): New.
13191 (i386fbsd_init_abi): Install gdbarch
13192 "fetch_tls_load_module_address" and "get_thread_local_address"
13193 methods.
13194
131952019-03-12 John Baldwin <jhb@FreeBSD.org>
13196
13197 * amd64-fbsd-tdep.c (amd64fbsd_get_thread_local_address): New.
13198 (amd64fbsd_init_abi): Install gdbarch
13199 "fetch_tls_load_module_address" and "get_thread_local_address"
13200 methods.
13201
132022019-03-12 John Baldwin <jhb@FreeBSD.org>
13203
13204 * fbsd-tdep.c (fbsd_pspace_data_handle): New variable.
13205 (struct fbsd_pspace_data): New type.
13206 (get_fbsd_pspace_data, fbsd_pspace_data_cleanup)
13207 (fbsd_read_integer_by_name, fbsd_fetch_rtld_offsets)
13208 (fbsd_get_tls_index, fbsd_get_thread_local_address): New function.
13209 (_initialize_fbsd_tdep): Initialize 'fbsd_pspace_data_handle'.
13210 * fbsd-tdep.c (fbsd_get_thread_local_address): New prototype.
13211
132122019-03-12 John Baldwin <jhb@FreeBSD.org>
13213
13214 * gdbtypes.c (lookup_struct_elt): New function.
13215 (lookup_struct_elt_type): Reimplement via lookup_struct_elt.
13216 * gdbtypes.h (struct struct_elt): New type.
13217 (lookup_struct_elt): New prototype.
13218
132192019-03-12 John Baldwin <jhb@FreeBSD.org>
13220
13221 * gdbtypes.c (lookup_struct_elt_type): Update comment and
13222 remove disabled code block.
13223
132242019-03-12 John Baldwin <jhb@FreeBSD.org>
13225
13226 * gdbarch.sh (get_thread_local_address): New method.
13227 * gdbarch.h, gdbarch.c: Regenerate.
13228 * target.c (target_translate_tls_address): Use
13229 gdbarch_get_thread_local_address if present instead of
13230 target::get_thread_local_address.
13231
132322019-03-12 John Baldwin <jhb@FreeBSD.org>
13233
13234 * target.h (target::get_thread_local_address): Update comment.
13235
132362019-03-12 John Baldwin <jhb@FreeBSD.org>
13237
13238 * solib-svr4.c (svr4_fetch_objfile_link_map): Look for
13239 objfile->separate_debug_objfile_backlink if not NULL.
13240
132412019-03-12 John Baldwin <jhb@FreeBSD.org>
13242
13243 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
13244 tdep->fsbase_regnum instead of constants for fs_base and gs_base.
13245 (amd64bsd_store_inferior_registers): Likewise.
13246 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
13247 Enable segment base registers.
13248 * i386-bsd-nat.c (i386bsd_fetch_inferior_registers): Use
13249 PT_GETFSBASE and PT_GETGSBASE.
13250 (i386bsd_store_inferior_registers): Use PT_SETFSBASE and
13251 PT_SETGSBASE.
13252 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Enable
13253 segment base registers.
13254 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
13255
132562019-03-12 John Baldwin <jhb@FreeBSD.org>
13257
13258 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
13259 Update calls to i386_target_description to add 'segments'
13260 parameter.
13261 * amd64-tdep.c (amd64_init_abi): Set tdep->fsbase_regnum. Don't
13262 add segment base registers.
13263 * arch/i386.c (i386_create_target_description): Add 'segments'
13264 parameter to enable segment base registers.
13265 * arch/i386.h (i386_create_target_description): Likewise.
13266 * features/i386/32bit-segments.xml: New file.
13267 * features/i386/32bit-segments.c: Generate.
13268 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Update
13269 call to i386_target_description to add 'segments' parameter.
13270 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
13271 * i386-go32-tdep.c (i386_go32_init_abi): Likewise.
13272 * i386-linux-tdep.c (i386_linux_read_description): Likewise.
13273 * i386-tdep.c (i386_validate_tdesc_p): Add segment base registers
13274 if feature is present.
13275 (i386_gdbarch_init): Pass I386_NUM_REGS to set_gdbarch_num_regs.
13276 Add 'segments' parameter to call to i386_target_description.
13277 (i386_target_description): Add 'segments' parameter to enable
13278 segment base registers.
13279 (_initialize_i386_tdep) [GDB_SELF_TEST]: Add 'segments' parameter
13280 to call to i386_target_description.
13281 * i386-tdep.h (struct gdbarch_tdep): Add 'fsbase_regnum'.
13282 (enum i386_regnum): Add I386_FSBASE_REGNUM and I386_GSBASE_REGNUM.
13283 Define I386_NUM_REGS.
13284 (i386_target_description): Add 'segments' parameter to enable
13285 segment base registers.
13286
132872019-03-12 Eli Zaretskii <eliz@gnu.org>
13288
13289 PR/24325
13290 * source-cache.c: #undef open and close, to avoid unresolved
13291 externals during linking.
13292
132932019-03-12 Tom Tromey <tromey@adacore.com>
13294
13295 * remote.c (magic_null_ptid, not_sent_ptid, any_thread_ptid): Now
13296 const. Add initializers.
13297 (_initialize_remote): Don't initialize ptid globals.
13298
132992019-03-12 Pedro Alves <palves@redhat.com>
13300
13301 * yy-remap.h [TEST_CPNAMES] (YYFPRINTF): Don't define.
13302
133032019-03-12 Pedro Alves <palves@redhat.com>
13304
13305 * cp-name-parser.y (main): Remove unused 'len' variable.
13306
133072019-03-12 Tom Tromey <tromey@adacore.com>
13308
13309 * common/ptid.c (null_ptid, minus_one_ptid): Now const.
13310 * common/ptid.h (null_ptid, minus_one_ptid): Now const.
13311
133122019-03-12 Tom Tromey <tromey@adacore.com>
13313
13314 * linux-nat.c (iterate_over_lwps): Update.
13315 (stop_callback): Remove parameter.
13316 (stop_wait_callback, detach_callback, resume_set_callback)
13317 (select_singlestep_lwp_callback, set_ignore_sigint)
13318 (status_callback, resumed_callback, resume_clear_callback)
13319 (kill_callback, kill_wait_callback, linux_nat_stop_lwp): Remove
13320 data parameter.
13321 (linux_nat_target::detach, linux_nat_target::resume)
13322 (linux_stop_and_wait_all_lwps, select_event_lwp)
13323 (linux_nat_filter_event, linux_nat_wait_1)
13324 (linux_nat_target::kill, linux_nat_target::stop)
13325 (linux_nat_target::stop): Update.
13326 (linux_nat_resume_callback): Change type.
13327 (resume_stopped_resumed_lwps, count_events_callback)
13328 (select_event_lwp_callback): Likewise.
13329 (linux_stop_lwp, linux_nat_stop_lwp): Update.
13330 * arm-linux-nat.c (struct update_registers_data): Remove.
13331 (update_registers_callback): Change type.
13332 (arm_linux_insert_hw_breakpoint1): Update.
13333 * nat/x86-linux-dregs.c (update_debug_registers_callback): Remove
13334 parameter.
13335 (x86_linux_dr_set_addr): Update.
13336 (x86_linux_dr_set_control): Update.
13337 * nat/linux-nat.h (iterate_over_lwps_ftype): Remove parameter.
13338 (iterate_over_lwps): Use gdb::function_view.
13339 * nat/aarch64-linux-hw-point.c (struct
13340 aarch64_dr_update_callback_param): Remove.
13341 (debug_reg_change_callback): Change type.
13342 (aarch64_notify_debug_reg_change): Update.
13343 * s390-linux-nat.c (s390_refresh_per_info): Update.
13344
133452019-03-11 Tom Tromey <tromey@adacore.com>
13346
13347 * dwarf2read.c (dwarf2_find_containing_comp_unit): Remove
13348 redundant assignment to "this_cu".
13349
133502019-03-08 Simon Marchi <simon.marchi@efficios.com>
13351
13352 * gdbtypes.c (rank_one_type): Remove unnecessary cases from switch.
13353
133542019-03-08 Simon Marchi <simon.marchi@efficios.com>
13355
13356 * gdbtypes.c (rank_one_type_parm_set): New function extracted
13357 from...
13358 (rank_one_type): ... this.
13359
133602019-03-08 Simon Marchi <simon.marchi@efficios.com>
13361
13362 * gdbtypes.c (rank_one_type_parm_struct): New function extracted
13363 from...
13364 (rank_one_type): ... this.
13365
133662019-03-08 Simon Marchi <simon.marchi@efficios.com>
13367
13368 * gdbtypes.c (rank_one_type_parm_complex): New function extracted
13369 from...
13370 (rank_one_type): ... this.
13371
133722019-03-08 Simon Marchi <simon.marchi@efficios.com>
13373
13374 * gdbtypes.c (rank_one_type_parm_float): New function extracted
13375 from...
13376 (rank_one_type): ... this.
13377
133782019-03-08 Simon Marchi <simon.marchi@efficios.com>
13379
13380 * gdbtypes.c (rank_one_type_parm_bool): New function extracted
13381 from...
13382 (rank_one_type): ... this.
13383
133842019-03-08 Simon Marchi <simon.marchi@efficios.com>
13385
13386 * gdbtypes.c (rank_one_type_parm_range): New function extracted
13387 from...
13388 (rank_one_type): ... this.
13389
133902019-03-08 Simon Marchi <simon.marchi@efficios.com>
13391
13392 * gdbtypes.c (rank_one_type_parm_char): New function extracted
13393 from...
13394 (rank_one_type): ... this.
13395
133962019-03-08 Simon Marchi <simon.marchi@efficios.com>
13397
13398 * gdbtypes.c (rank_one_type_parm_enum): New function extracted
13399 from...
13400 (rank_one_type): ... this.
13401
134022019-03-08 Simon Marchi <simon.marchi@efficios.com>
13403
13404 * gdbtypes.c (rank_one_type_parm_int): New function extracted
13405 from...
13406 (rank_one_type): ... this.
13407
134082019-03-08 Simon Marchi <simon.marchi@efficios.com>
13409
13410 * gdbtypes.c (rank_one_type_parm_func): New function extracted
13411 from...
13412 (rank_one_type): ... this.
13413
134142019-03-08 Simon Marchi <simon.marchi@efficios.com>
13415
13416 * gdbtypes.c (rank_one_type_parm_array): New function extracted
13417 from...
13418 (rank_one_type): ... this.
13419
134202019-03-08 Simon Marchi <simon.marchi@efficios.com>
13421
13422 * gdbtypes.c (rank_one_type_parm_ptr): New function extracted
13423 from...
13424 (rank_one_type): ... this.
13425
134262019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13427
13428 * inferior.c (initialize_inferiors): Ensure 'help set/show print
13429 inferior-events' shows the example events.
13430
134312019-03-08 Eli Zaretskii <eliz@gnu.org>
13432
13433 Support styling on native MS-Windows console
13434
13435 PR/24315
13436 * utils.c (can_emit_style_escape) [_WIN32]: Don't disable styling
13437 on MS-Windows if $TERM is not defined.
13438
13439 * cli/cli-style.c: Set cli_styling to 1 in the MinGW build.
13440
13441 * posix-hdep.c (gdb_console_fputs):
13442 * mingw-hdep.c (rgb_to_16colors, gdb_console_fputs): New
13443 functions.
13444 * ui-file.h (gdb_console_fputs): Add prototype.
13445
13446 * ui-file.c (stdio_file::puts): Call gdb_console_fputs, and fall
13447 back to fputs only if the former returns zero.
13448
134492019-03-07 Tom Tromey <tom@tromey.com>
13450
13451 * symmisc.c (print_symbol_bcache_statistics): Update.
13452 (print_objfile_statistics): Update.
13453 * symfile.c (allocate_symtab): Update.
13454 * stabsread.c: Don't include bcache.h.
13455 * psymtab.h (struct psymbol_bcache): Don't declare.
13456 (class psymtab_storage) <psymbol_cache>: Now a bcache.
13457 (psymbol_bcache_init, psymbol_bcache_free)
13458 (psymbol_bcache_get_bcache): Don't declare.
13459 * psymtab.c (struct psymbol_bcache): Remove.
13460 (psymtab_storage::psymtab_storage): Update.
13461 (psymtab_storage::~psymtab_storage): Update.
13462 (psymbol_bcache_init, psymbol_bcache_free)
13463 (psymbol_bcache_get_bcache, psymbol_bcache_full): Remove.
13464 (add_psymbol_to_bcache): Update.
13465 (allocate_psymtab): Update.
13466 * objfiles.h (struct objfile_per_bfd_storage) <filename_cache,
13467 macro_cache>: No longer pointers.
13468 * objfiles.c (get_objfile_bfd_data): Don't call bcache_xmalloc.
13469 (free_objfile_per_bfd_storage): Don't call bcache_xfree.
13470 * macrotab.c (macro_bcache): Update.
13471 * macroexp.c: Don't include bcache.h.
13472 * gdbtypes.c (check_types_worklist): Update.
13473 (types_deeply_equal): Remove TRY/CATCH. Update.
13474 * elfread.c (elf_symtab_read): Update.
13475 * dwarf2read.c: Don't include bcache.h.
13476 * buildsym.c (buildsym_compunit::get_macro_table): Update.
13477 * bcache.h (bcache, bcache_full, bcache_xffree, bcache_xmalloc)
13478 (print_bcache_statistics, bcache_memory_used): Don't declare.
13479 (struct bcache): Move from bcache.c. Add constructor, destructor,
13480 methods. Rename all data members.
13481 * bcache.c (struct bcache): Move to bcache.h.
13482 (bcache::expand_hash_table): Rename from expand_hash_table.
13483 (bcache): Remove.
13484 (bcache::insert): Rename from bcache_full.
13485 (bcache::compare): Rename from bcache_compare.
13486 (bcache_xmalloc): Remove.
13487 (bcache::~bcache): Rename from bcache_xfree.
13488 (bcache::print_statistics): Rename from print_bcache_statistics.
13489 (bcache::memory_used): Rename from bcache_memory_used.
13490
134912019-03-07 Pedro Alves <palves@redhat.com>
13492
13493 * infrun.c (normal_stop): Also check for
13494 TARGET_WAITKIND_NO_RESUMED before referring to inferior_thread().
13495
134962019-03-07 Andrew Burgess <andrew.burgess@embecosm.com>
13497
13498 * f-lang.c (value_from_host_double): Moved to...
13499 * value.c (value_from_host_double): ...here.
13500 * value.h (value_from_host_double): Declare.
13501 * guile/scm-math.c (vlscm_convert_typed_number): Use
13502 value_from_host_double.
13503 (vlscm_convert_number): Likewise.
13504 * guile/scm-value.c (gdbscm_value_to_real): Likewise.
13505 * python/py-value.c (convert_value_from_python): Likewise.
13506
135072019-03-06 Tom Tromey <tom@tromey.com>
13508
13509 * gcore.c (write_gcore_file): Use SCOPE_EXIT.
13510
135112019-03-06 Tom Tromey <tom@tromey.com>
13512
13513 * utils.h (free_current_contents): Don't declare.
13514 * utils.c (free_current_contents): Remove.
13515
135162019-03-06 Tom Tromey <tom@tromey.com>
13517
13518 * top.c (quit_force): Update.
13519 * main.c (captured_command_loop): Update.
13520 * common/new-op.c (operator new): Update.
13521 * common/common-exceptions.c (struct catcher)
13522 <save_cleanup_chain>: Remove member.
13523 (exceptions_state_mc_init): Update.
13524 (exception_try_scope_entry): Return nullptr.
13525 (exception_try_scope_exit, exception_rethrow)
13526 (throw_exception_sjlj, throw_exception_cxx): Update.
13527 * common/cleanups.h (make_cleanup, make_cleanup_dtor)
13528 (all_cleanups, do_cleanups, discard_cleanups)
13529 (discard_final_cleanups, save_cleanups, save_final_cleanups)
13530 (restore_cleanups, restore_final_cleanups): Don't declare.
13531 (do_final_cleanups): Remove parameter.
13532 * common/cleanups.c (cleanup_chain, make_cleanup)
13533 (make_cleanup_dtor, all_cleanups, do_cleanups)
13534 (discard_my_cleanups, discard_cleanups)
13535 (discard_final_cleanups, save_my_cleanups, save_cleanups)
13536 (save_final_cleanups, restore_my_cleanups, restore_cleanups)
13537 (null_cleanup): Remove.
13538 (do_final_cleanups): Remove parameter.
13539
135402019-03-06 Tom Tromey <tom@tromey.com>
13541
13542 * remote.c (remote_target::remote_parse_stop_reply): Use
13543 unique_xmalloc_ptr.
13544
135452019-03-06 Tom Tromey <tom@tromey.com>
13546
13547 * stabsread.c (struct stabs_field_info): Rename from field_info.
13548 <list, fnlist>: Add initializers.
13549 <obstack>: New member.
13550 (read_member_functions, read_struct_fields, read_baseclasses):
13551 Allocate on obstack. Don't use cleanups.
13552 (read_one_struct_field, read_member_functions, read_struct_fields)
13553 (read_baseclasses, read_tilde_fields, attach_fn_fields_to_type)
13554 (attach_fields_to_type, read_cpp_abbrev, read_member_functions)
13555 (read_struct_type): Update.
13556
135572019-03-06 Tom Tromey <tom@tromey.com>
13558
13559 * nat/linux-namespaces.c (linux_mntns_access_fs): Use SCOPE_EXIT.
13560 * common/filestuff.h (make_cleanup_close): Don't declare.
13561 * common/filestuff.c (do_close_cleanup, make_cleanup_close):
13562 Remove.
13563
135642019-03-06 Tom Tromey <tom@tromey.com>
13565
13566 * solib-aix.c: Use make_scope_exit.
13567
135682019-03-06 Tom Tromey <tom@tromey.com>
13569
13570 * solib-svr4.c (svr4_parse_libraries, svr4_current_sos_direct):
13571 Use make_scope_exit.
13572
135732019-03-06 Tom Tromey <tom@tromey.com>
13574
13575 * solib-svr4.c (disable_probes_interface): Remove parameter.
13576 (svr4_handle_solib_event): Use make_scope_exit.
13577
135782019-03-06 Tom Tromey <tom@tromey.com>
13579
13580 * remote.c (struct stop_reply_deleter): Remove.
13581 (stop_reply_up): Update.
13582 (struct stop_reply): Derive from notif_event. Don't typedef.
13583 <regcache>: Now a std::vector.
13584 (stop_reply_xfree): Remove.
13585 (stop_reply::~stop_reply): Rename from stop_reply_dtr.
13586 (remote_notif_stop_alloc_reply): Return a unique_ptr. Use new.
13587 (remote_target::discard_pending_stop_replies): Use delete.
13588 (remote_target::remote_parse_stop_reply): Update.
13589 (remote_target::process_stop_reply): Update.
13590 * remote-notif.h (struct notif_event): Add virtual destructor.
13591 Remove "dtr" member.
13592 (struct notif_client) <alloc_event>: Return a unique_ptr.
13593 (notif_event_xfree): Don't declare.
13594 (notif_event_up): New typedef.
13595 * remote-notif.c (remote_notif_ack, remote_notif_parse): Update.
13596 (notif_event_xfree, do_notif_event_xfree): Remove.
13597 (remote_notif_state_xfree): Update.
13598
135992019-03-06 Tom Tromey <tom@tromey.com>
13600
13601 * infrun.c (displaced_step_clear_cleanup): Now a
13602 forward_scope_exit type.
13603 (displaced_step_prepare_throw): Update.
13604 (displaced_step_fixup): Update.
13605
136062019-03-06 Tom Tromey <tom@tromey.com>
13607
13608 * inferior.h (class inferior): Update comment.
13609 * gdbthread.h (class thread_info): Update comment.
13610
136112019-03-06 Joel Brobecker <brobecker@adacore.com>
13612 Tom Tromey <tom@tromey.com>
13613
13614 * stabsread.h (struct stab_section_list): Remove.
13615 (coffstab_build_psymtabs): Update.
13616 * dbxread.c (symbuf_sections): Now a std::vector.
13617 (sect_idx): New global.
13618 (fill_symbuf): Update.
13619 (coffstab_build_psymtabs): Change type of stabsects parameter.
13620 Update.
13621 * coffread.c (struct coff_symfile_info) <stabsects>: Now a
13622 std::vector.
13623 (linetab, linetab_offset, linetab_size, stringtab): Move earlier.
13624 (coff_locate_sections): Update.
13625 (coff_symfile_read): Remove cleanups. Update.
13626 (init_stringtab): Add storage parameter.
13627 (free_stringtab, free_stringtab_cleanup): Remove.
13628 (init_lineno): Add storage parameter.
13629 (free_linetab, free_linetab_cleanup): Remove.
13630
136312019-03-06 Pedro Alves <palves@redhat.com>
13632
13633 * linux-fork.c (fork_info::clobber_regs): Delete.
13634 (fork_load_infrun_state): Remove reference to 'clobber_regs'.
13635 (fork_save_infrun_state): Remove 'clobber_regs' parameter. Update
13636 comment. Adjust.
13637 (scoped_switch_fork_info::scoped_switch_fork_info)
13638 (checkpoint_command, linux_fork_context): Adjust
13639 fork_save_infrun_state calls.
13640
136412019-03-06 Pedro Alves <palves@redhat.com>
13642
13643 * linux-fork.c (inf_has_multiple_thread_cb): Delete.
13644 (inf_has_multiple_threads): Return 'bool' and rewrite using
13645 inferior_info::threads().
13646
136472019-03-06 Pedro Alves <palves@redhat.com>
13648
13649 * linux-fork.c: Include <list>.
13650 (fork_list): Now a std::list instance.
13651 (fork_info): Add ctor, dtor, and in-class initialize all fields.
13652 (forks_exist_p, find_last_fork): Adjust.
13653 (new_fork): Delete.
13654 (one_fork_p): New.
13655 (add_fork): Adjust.
13656 (free_fork): Delete, folded into fork_info::~fork_info().
13657 (delete_fork, find_fork_ptid, find_fork_id, find_fork_pid):
13658 Adjust.
13659 (init_fork_list): Delete.
13660 (linux_fork_killall, linux_fork_mourn_inferior)
13661 (linux_fork_detach, info_checkpoints_command): Adjust.
13662 (_initialize_linux_fork): No longer call init_fork_list.
13663
136642019-03-06 Pedro Alves <palves@redhat.com>
13665
13666 * linux-fork.c (new_fork): New, split out of ...
13667 (add_fork): ... this. Return void. Move "first fork" special
13668 case from here, to ...
13669 (checkpoint_command): ... here.
13670 * linux-linux.h (add_fork): Return void.
13671
136722019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13673
13674 * f-exp.y (direct_abs_decl): Handle TYPE*SIZE type names.
13675
136762019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13677 Chris January <chris.january@arm.com>
13678 David Lecomber <david.lecomber@arm.com>
13679
13680 * f-exp.y: New token, UNOP_INTRINSIC.
13681 (exp): New pattern using UNOP_INTRINSIC token.
13682 (f77_keywords): Add 'abs' keyword.
13683 * f-lang.c: Add 'target-float.h' and 'math.h' includes.
13684 (value_from_host_double): New function.
13685 (evaluate_subexp_f): Support UNOP_ABS.
13686
136872019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13688
13689 * f-lang.c (build_fortran_types): Use TYPE_CODE_CHAR for character
13690 types.
13691
136922019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13693
13694 * f-exp.y (convert_to_kind_type): Handle integer (kind=8).
13695 * f-lang.c (build_fortran_types): Setup builtin_integer_s8.
13696 * f-lang.h (struct builtin_f_type): Add builtin_integer_s8 field.
13697
136982019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13699
13700 * f-exp.y (convert_to_kind_type): Handle more type kinds.
13701
137022019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13703 Chris January <chris.january@arm.com>
13704
13705 * expprint.c (dump_subexp_body_standard): Support UNOP_KIND.
13706 * f-exp.y: Define 'KIND' token.
13707 (exp): New pattern for KIND expressions.
13708 (ptype): Handle types with a kind extension.
13709 (direct_abs_decl): Extend to spot kind extensions.
13710 (f77_keywords): Add 'kind' to the list.
13711 (push_kind_type): New function.
13712 (convert_to_kind_type): New function.
13713 * f-lang.c (evaluate_subexp_f): Support UNOP_KIND.
13714 * parse.c (operator_length_standard): Likewise.
13715 * parser-defs.h (enum type_pieces): Add tp_kind.
13716 * std-operator.def: Add UNOP_KIND.
13717
137182019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13719
13720 * f-exp.y (f_parse): Set yydebug.
13721
137222019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13723
13724 * f-lang.c (evaluate_subexp_f): New function.
13725 (exp_descriptor_f): New global.
13726 (f_language_defn): Use exp_descriptor_f instead of
13727 exp_descriptor_standard.
13728
137292019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13730
13731 * f-exp.y (struct token): Add comments.
13732 (dot_ops): Remove uppercase versions and the end marker.
13733 (f77_keywords): Likewise.
13734 (yylex): Use ARRAY_SIZE to iterate over dot_ops, assert all
13735 entries in the dot_ops array are case insensitive, and use
13736 strncasecmp to compare strings. Also some whitespace cleanup in
13737 this area. Similar for the f77_keywords array, except entries in
13738 this list might be case sensitive.
13739
137402019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13741
13742 * f-exp.y (struct f77_boolean_val): Add comments.
13743 (boolean_values): Remove uppercase versions, and end marker.
13744 (yylex): Use ARRAY_SIZE for iterating over boolean_values array,
13745 and use strncasecmp to achieve case insensitivity. Additionally,
13746 perform whitespace cleanup around this code.
13747
137482019-03-06 Tom Tromey <tromey@adacore.com>
13749
13750 * remote-sim.c (gdbsim_target_open): Use result of
13751 gdb_argv::release.
13752
137532019-03-06 Richard Bunt <richard.bunt@arm.com>
13754 Dirk Schubert <dirk.schubert@arm.com>
13755 Chris January <chris.january@arm.com>
13756
13757 * eval.c (evaluate_subexp_standard): Call Fortran argument
13758 wrapping logic.
13759 * f-lang.c (struct value): A value which can be passed into a
13760 Fortran function call.
13761 (fortran_argument_convert): Wrap Fortran arguments in a pointer
13762 where appropriate.
13763 (struct type): Value ready for a Fortran function call.
13764 (fortran_preserve_arg_pointer): Undo check_typedef, the pointer
13765 is needed.
13766 * f-lang.h (fortran_argument_convert): Declaration.
13767 (fortran_preserve_arg_pointer): Declaration.
13768 * infcall.c (value_arg_coerce): Call Fortran argument logic.
13769
137702019-03-05 Tom Tromey <tromey@adacore.com>
13771
13772 * python/py-prettyprint.c (print_string_repr): Remove #if.
13773 * python/py-utils.c (unicode_to_encoded_string): Remove #if.
13774
137752019-03-05 Tom Tromey <tromey@adacore.com>
13776
13777 * target.c (the_dummy_target): Move later. Change type to
13778 "dummy_target".
13779 (initialize_targets): Don't initialize the_dummy_target.
13780
137812019-03-05 Tom Tromey <tromey@adacore.com>
13782
13783 * gdb_bfd.c (gdb_bfd_fdopenr): Remove.
13784 * gdb_bfd.h (gdb_bfd_fdopenr): Don't declare.
13785
137862019-03-05 Tom Tromey <tromey@adacore.com>
13787
13788 * windows-nat.c (windows_nat_target::attach)
13789 (windows_nat_target::detach): Don't call gdb_flush.
13790 * valprint.c (generic_val_print, val_print, val_print_string):
13791 Don't call gdb_flush.
13792 * utils.c (defaulted_query): Don't call gdb_flush.
13793 * typeprint.c (print_type_scalar): Don't call gdb_flush.
13794 * target.c (target_announce_detach): Don't call gdb_flush.
13795 * sparc64-tdep.c (adi_print_versions): Don't call gdb_flush.
13796 * remote.c (extended_remote_target::attach): Don't call
13797 gdb_flush.
13798 * procfs.c (procfs_target::detach): Don't call gdb_flush.
13799 * printcmd.c (do_examine): Don't call gdb_flush.
13800 (info_display_command): Don't call gdb_flush.
13801 * p-valprint.c (pascal_val_print): Don't call gdb_flush.
13802 * nto-procfs.c (nto_procfs_target::attach): Don't call gdb_flush.
13803 * memattr.c (info_mem_command): Don't call gdb_flush.
13804 * mdebugread.c (mdebug_build_psymtabs): Don't call gdb_flush.
13805 * m2-valprint.c (m2_val_print): Don't call gdb_flush.
13806 * infrun.c (follow_exec, handle_command): Don't call gdb_flush.
13807 * inf-ptrace.c (inf_ptrace_target::attach): Don't call gdb_flush.
13808 * hppa-tdep.c (unwind_command): Don't call gdb_flush.
13809 * gnu-nat.c (gnu_nat_target::attach): Don't call gdb_flush.
13810 (gnu_nat_target::detach): Don't call gdb_flush.
13811 * f-valprint.c (f_val_print): Don't call gdb_flush.
13812 * darwin-nat.c (darwin_nat_target::attach): Don't call gdb_flush.
13813 * cli/cli-script.c (read_command_lines): Don't call gdb_flush.
13814 * cli/cli-cmds.c (shell_escape, print_disassembly): Don't call
13815 gdb_flush.
13816 * c-valprint.c (c_val_print): Don't call gdb_flush.
13817 * ada-valprint.c (ada_print_scalar): Don't call gdb_flush.
13818
138192019-03-05 Tom Tromey <tromey@adacore.com>
13820
13821 * varobj.c (update_dynamic_varobj_children): Update.
13822 (install_default_visualizer): Use reset, not release.
13823 * value.c (set_internalvar): Update.
13824 * dwarf2loc.c (value_of_dwarf_reg_entry): Update.
13825 * common/gdb_ref_ptr.h (class ref_ptr) <release>: Add
13826 ATTRIBUTE_UNUSED_RESULT.
13827
138282019-03-05 Tom Tromey <tromey@adacore.com>
13829
13830 * remote.c (class scoped_remote_fd) <release>: Add
13831 ATTRIBUTE_UNUSED_RESULT.
13832
138332019-03-05 Tom Tromey <tromey@adacore.com>
13834
13835 * macroexp.c (struct macro_buffer) <release>: Add
13836 ATTRIBUTE_UNUSED_RESULT.
13837
138382019-03-05 Tom Tromey <tromey@adacore.com>
13839
13840 * nat/linux-btrace.c (linux_enable_bts, linux_enable_pt): Update.
13841 * common/scoped_mmap.h (class scoped_mmap) <release>: Add
13842 ATTRIBUTE_UNUSED_RESULT.
13843
138442019-03-05 Tom Tromey <tromey@adacore.com>
13845
13846 * common/scoped_fd.h (class scoped_fd) <release>: Add
13847 ATTRIBUTE_UNUSED_RESULT.
13848
138492019-03-05 Tom Tromey <tromey@adacore.com>
13850
13851 * parser-defs.h (struct parser_state) <release>: Add
13852 ATTRIBUTE_UNUSED_RESULT.
13853
138542019-03-05 Tom Tromey <tromey@adacore.com>
13855
13856 * utils.h (class gdb_argv) <release>: Add
13857 ATTRIBUTE_UNUSED_RESULT.
13858 * common/common-defs.h (ATTRIBUTE_UNUSED_RESULT): Define.
13859
138602019-03-02 Eli Zaretskii <eliz@gnu.org>
13861
13862 * xml-syscall.c (xml_list_syscalls_by_group): Drop 'struct' from
13863 for-loop range, to avoid compiler warnings.
13864
13865 * tui/tui.c (tui_enable) [__MINGW32__]: Don't declare 'cap', to
13866 avoid compiler warnings about unused variables.
13867
13868 * NEWS: Mention end of support for native debugging on MS-Windows
13869 before XP.
13870
13871 PR gdb/24292
13872 * common/netstuff.c:
13873 * gdbserver/gdbreplay.c
13874 * gdbserver/remote-utils.c:
13875 * ser-tcp.c:
13876 * unittests/parse-connection-spec-selftests.c [USE_WIN32API]:
13877 Include ws2tcpip.h instead of wsiapi.h and winsock2.h. Redefine
13878 _WIN32_WINNT to 0x0501 if defined to a smaller value, as
13879 'getaddrinfo' and 'freeaddrinfo' were not available before
13880 Windows XP, and mingw.org's MinGW headers by default define
13881 _WIN32_WINNT to 0x500.
13882
138832019-03-01 Gary Benson <gbenson@redhat.com>
13884
13885 * coffread.c (coff_start_symtab): Remove unnecessary xstrdup.
13886
138872019-02-28 Brian Vandenberg <phantall@gmail.com>
13888 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
13889
13890 PR gdb/8527
13891 * procfs.c (proc_wait_for_stop): Wrap write of PCWSTOP in
13892 set_sigint_trap, clear_sigint_trap.
13893
138942019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13895
13896 * target.c (target_detach): Clear the regcache and the
13897 frame cache.
13898
138992019-02-27 Pedro Alves <palves@redhat.com>
13900
13901 * utils.c (set_screen_size): When we cap the height/width sizes,
13902 tweak the corresponding command variable to show "unlimited":
13903
139042019-02-27 Saagar Jha <saagar@saagarjha.com>
13905 Pedro Alves <palves@redhat.com>
13906
13907 * utils.c (set_screen_size): Reduce "infinite" rows and columns
13908 before calling rl_set_screen_size.
13909
139102019-02-27 Tom Tromey <tromey@adacore.com>
13911
13912 * configure.ac (HAVE_LIBPYTHON2_4, HAVE_LIBPYTHON2_5): Never
13913 define.
13914 * python/py-value.c: Remove Python 2.4 workaround.
13915 * python/py-utils.c (gdb_pymodule_addobject): Remove Python 2.4
13916 workaround.
13917 * python/py-type.c (convert_field, gdbpy_initialize_types): Remove
13918 Python 2.4 workaround.
13919 * python/python-internal.h: Remove Python 2.4 comment.
13920 (Py_ssize_t): Don't define.
13921 (PyVarObject_HEAD_INIT, Py_TYPE): Don't define.
13922 (gdb_Py_DECREF): Remove Python 2.4 workaround.
13923 (gdb_PyObject_GetAttrString, PyObject_GetAttrString): Remove.
13924 (gdb_PyObject_HasAttrString, PyObject_HasAttrString): Remove.
13925 * python/python.c (do_start_initialization): Remove Python 2.4
13926 workaround.
13927 * python/py-prettyprint.c (class dummy_python_frame): Remove.
13928 (print_children): Remove Python 2.4 workaround.
13929 * python/py-inferior.c (buffer_procs): Remove Python 2.4
13930 workaround.
13931 (CHARBUFFERPROC_NAME): Remove.
13932 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Remove
13933 Python 2.4 workaround.
13934
139352019-02-27 Kevin Buettner <kevinb@redhat.com>
13936
13937 * NEWS: Note minimum Python version.
13938
139392019-02-27 Kevin Buettner <kevinb@redhat.com>
13940
13941 * python/py-inferior.c (infpy_write_memory): Remove non-IS_PY3K
13942 code from these functions. Remove corresponding ifdefs. Use
13943 Py_buffer_up instead of explicit calls to PyBuffer_Release.
13944 Remove gotos and target of gotos.
13945 (infpy_search_memory): Likewise.
13946
139472019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
13948
13949 * gdb/hppa-tdep.c (hppa_dummy_id): Delete.
13950 (hppa_gdbarch_init): Don't register deleted functions with
13951 gdbarch.
13952
139532019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
13954
13955 * gdb/h8300-tdep.c (h8300_unwind_pc): Delete.
13956 (h8300_unwind_sp): Delete.
13957 (h8300_dummy_id): Delete.
13958 (h8300_gdbarch_init): Don't register deleted functions with
13959 gdbarch.
13960
139612019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
13962
13963 * gdb/ft32-tdep.c (ft32_dummy_id): Delete.
13964 (ft32_unwind_pc): Delete.
13965 (ft32_unwind_sp): Delete.
13966 (ft32_gdbarch_init): Don't register deleted functions with
13967 gdbarch.
13968
139692019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
13970
13971 * gdb/frv-tdep.c (frv_dummy_id): Delete.
13972 (frv_unwind_pc): Delete.
13973 (frv_unwind_sp): Delete.
13974 (frv_gdbarch_init): Don't register deleted functions with
13975 gdbarch.
13976
139772019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
13978
13979 * gdb/riscv-tdep.c (riscv_dummy_id): Delete.
13980 (riscv_unwind_pc): Delete.
13981 (riscv_unwind_sp): Delete.
13982 (riscv_gdbarch_init): Don't register deleted functions with
13983 gdbarch.
13984
139852019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
13986
13987 * gdb/csky-tdep.c (csky_dummy_id): Delete.
13988 (csky_unwind_pc): Delete.
13989 (csky_unwind_sp): Delete.
13990 (csky_gdbarch_init): Don't register deleted functions with
13991 gdbarch.
13992
139932019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
13994
13995 * gdb/cris-tdep.c (cris_dummy_id): Delete.
13996 (cris_unwind_pc): Delete.
13997 (cris_unwind_sp): Delete.
13998 (cris_gdbarch_init): Don't register deleted functions with
13999 gdbarch.
14000
140012019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14002
14003 * gdb/bfin-tdep.c (bfin_dummy_id): Delete.
14004 (bfin_unwind_pc): Delete.
14005 (bfin_gdbarch_init): Don't register deleted functions with gdbarch.
14006
140072019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14008
14009 * gdb/arm-tdep.c (arm_dummy_id): Delete.
14010 (arm_unwind_pc): Delete.
14011 (arm_unwind_sp): Delete.
14012 (arm_gdbarch_init): Don't register deleted functions with gdbarch.
14013
140142019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14015
14016 * gdb/arc-tdep.c (arc_dummy_id): Delete.
14017 (arc_unwind_pc): Delete.
14018 (arc_unwind_sp): Delete.
14019 (arc_gdbarch_init): Don't register deleted functions with gdbarch.
14020
140212019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14022
14023 * gdb/alpha-tdep.c (alpha_dummy_id): Delete.
14024 (alpha_unwind_pc): Delete.
14025 (alpha_gdbarch_init): Don't register deleted functions with
14026 gdbarch.
14027
140282019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14029
14030 * gdb/aarch64-tdep.c (aarch64_dummy_id): Delete.
14031 (aarch64_unwind_pc): Delete.
14032 (aarch64_unwind_sp): Delete.
14033 (aarch64_gdbarch_init): Don't register deleted functions with
14034 gdbarch.
14035
140362019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14037
14038 * gdbtypes.c (type_align): Don't consider static members when
14039 computing structure alignment.
14040
140412019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14042
14043 * arc-tdep.c (arc_type_align): Provide alignment for basic types,
14044 return 0 for other types.
14045 * arch-utils.c (default_type_align): Always return 0.
14046 * gdbarch.h: Regenerate.
14047 * gdbarch.sh (type_align): Extend comment.
14048 * gdbtypes.c (type_align): Add additional comments, always call
14049 gdbarch_type_align before applying the default rules.
14050 * i386-tdep.c (i386_type_align): Return 0 as the default rule,
14051 generic code will then apply a suitable default.
14052 * nios2-tdep.c (nios2_type_align): Provide alignment for basic
14053 types, return 0 for other types.
14054
140552019-02-27 Joel Brobecker <brobecker@adacore.com>
14056
14057 * NEWS: Create a new section for the next release branch.
14058 Rename the section of the current branch, now that it has
14059 been cut.
14060
140612019-02-27 Joel Brobecker <brobecker@adacore.com>
14062
14063 GDB 8.3 branch created (143420fb0d5ae54323ba9953f0818c194635228d):
14064 * version.in: Bump version to 8.3.50.DATE-git.
14065
140662019-02-26 Simon Marchi <simon.marchi@efficios.com>
14067
14068 * aix-thread.c (ptid_cmp): Remove unused variable.
14069 (get_signaled_thread): Likewise.
14070 (store_regs_user_thread): Likewise.
14071 (store_regs_kernel_thread): Likewise.
14072 (fetch_regs_kernel_thread): Remove shadowed variable.
14073
140742019-02-26 Andrew Burgess <andrew.burgess@embecosm.com>
14075
14076 * features/riscv/32bit-cpu.xml: Add register numbers.
14077 * features/riscv/32bit-fpu.c: Regenerate.
14078 * features/riscv/32bit-fpu.xml: Add register numbers.
14079 * features/riscv/64bit-cpu.xml: Add register numbers.
14080 * features/riscv/64bit-fpu.c: Regenerate.
14081 * features/riscv/64bit-fpu.xml: Add register numbers.
14082
140832019-02-26 Kevin Buettner <kevinb@redhat.com>
14084
14085 * NEWS: Mention two argument form of gdb.Value constructor.
14086 * python/py-value.c (convert_buffer_and_type_to_value): New
14087 function.
14088 (valpy_new): Parse arguments via gdb_PyArg_ParseTupleAndKeywords.
14089 Add support for handling an optional second argument. Call
14090 convert_buffer_and_type_to_value as appropriate.
14091 * python/python-internal.h (Py_buffer_deleter): New struct.
14092 (Py_buffer_up): New typedef.
14093
140942019-02-25 John Baldwin <jhb@FreeBSD.org>
14095
14096 * dwarf2read.c (dwarf2_get_dwz_file): Reset dwz_bfd to nullptr
14097 instead of releasing ownership.
14098
140992019-02-25 Jordan Rupprecht <rupprecht@google.com>
14100
14101 * dwarf2read.c (open_and_init_dwp_file): Call
14102 elf_numsections instead of bfd_count_sections to initialize
14103 dwp_file->num_sections.
14104
141052019-02-25 Tom Tromey <tromey@adacore.com>
14106
14107 * solib-darwin.c (darwin_get_dyld_bfd): Don't release dyld_bfd.
14108
141092019-02-23 Sergio Durigan Junior <sergiodj@redhat.com>
14110
14111 * gcore.in: Add '--readnever' option when invoking GDB.
14112
141132019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
14114
14115 * MAINTAINERS: Update my email address.
14116
141172019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
14118
14119 * build-id.c (build_id_to_debug_bfd_1): New function.
14120 (build_id_to_debug_bfd): Look for separate debug file in
14121 sysroot.
14122
141232019-02-22 Andrew Burgess <andrew.burgess@embecosm.com>
14124
14125 * gdbarch.sh: Update the copyright year range that is placed into
14126 generated files.
14127
141282019-02-22 Keith Seitz <keiths@redhat.com>
14129
14130 PR symtab/23853
14131 * linespec.c (create_sals_line_offset): Search for the default
14132 symtab's filename instead of its fullname.
14133
141342019-02-21 Alan Hayward <alan.hayward@arm.com>
14135
14136 * NEWS: Update style defaults.
14137
141382019-02-21 Alan Hayward <alan.hayward@arm.com>
14139
14140 * main.c (captured_main_1): Disable styling in batch mode.
14141
141422019-02-20 Tom Tromey <tom@tromey.com>
14143
14144 * symtab.c (symtab_symbol_info): Fix typos.
14145
141462019-02-20 Tom Tromey <tromey@adacore.com>
14147
14148 * findcmd.c (_initialize_mem_search): Use upper case for
14149 metasyntactic variables.
14150
141512019-02-20 Alan Hayward <alan.hayward@arm.com>
14152
14153 * aarch64-tdep.c (aarch64_add_reggroups): New function.
14154 (aarch64_gdbarch_init): Call aarch64_add_reggroups.
14155
141562019-02-19 Simon Marchi <simon.marchi@polymtl.ca>
14157
14158 * top.h (source_file_name): Change to std::string.
14159 * top.c (source_file_name): Likewise.
14160 (command_line_input): Adjust.
14161 * cli/cli-script.c (script_from_file): Adjust.
14162
141632019-02-19 Tom Tromey <tromey@adacore.com>
14164
14165 * ravenscar-thread.c
14166 (ravenscar_thread_target::update_thread_list): Don't call
14167 ada_build_task_list.
14168 * ada-lang.h (ada_build_task_list): Don't declare.
14169 * ada-tasks.c (struct ada_tasks_inferior_data)
14170 <task_list_valid_p>: Now bool.
14171 (read_known_tasks, ada_task_list_changed)
14172 (ada_tasks_invalidate_inferior_data): Update.
14173 (read_known_tasks_array): Return bool.
14174 (read_known_tasks_list): Likewise.
14175 (read_known_tasks): Return void.
14176 (ada_build_task_list): Now static.
14177
141782019-02-18 Andrew Burgess <andrew.burgess@embecosm.com>
14179
14180 * gdbtypes.c (type_align): Allow alignment of TYPE_CODE_METHODPTR
14181 and TYPE_CODE_MEMBERPTR to be overridden by the gdbarch.
14182
141832019-02-18 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14184
14185 * ada-task.c (_initialize_tasks): Use 'with_cleanup' register
14186 variant for ada_tasks_pspace_data_handle and
14187 ada_tasks_inferior_data_handle.
14188 (ada_tasks_pspace_data_cleanup): New function.
14189 (ada_tasks_inferior_data_cleanup): New function.
14190
141912019-02-17 Tom Tromey <tom@tromey.com>
14192
14193 * macrotab.h (macro_source_fullname): Return a std::string.
14194 * macrotab.c (macro_include, check_for_redefinition)
14195 (macro_undef, macro_lookup_definition, foreach_macro)
14196 (foreach_macro_in_scope): Update.
14197 (macro_source_fullname): Return a std::string.
14198 * macrocmd.c (show_pp_source_pos): Update.
14199
142002019-02-17 Tom Tromey <tom@tromey.com>
14201
14202 * macrocmd.c (show_pp_source_pos): Style the file names.
14203
142042019-02-17 Tom Tromey <tom@tromey.com>
14205
14206 PR tui/24197:
14207 * tui/tui-source.c (tui_set_source_content_nil): Rewrite.
14208
142092019-02-17 Tom Tromey <tom@tromey.com>
14210
14211 * ada-lang.c (user_select_syms): Use filtered printing.
14212 * utils.c (wrap_style): New global.
14213 (desired_style): Remove.
14214 (emit_style_escape): Add stream parameter.
14215 (set_output_style, reset_terminal_style, prompt_for_continue):
14216 Update.
14217 (flush_wrap_buffer): Only flush gdb_stdout.
14218 (wrap_here): Set wrap_style.
14219 (fputs_maybe_filtered): Clear the wrap buffer on exception. Don't
14220 treat escape sequences as a character. Change when wrap buffer is
14221 flushed.
14222 (fputs_styled): Do not set the output style when the default is
14223 requested.
14224 * ui-style.h (struct ui_file_style) <is_default>: New method.
14225 * source.c (print_source_lines_base): Emit escape sequences in one
14226 piece.
14227
142282019-02-17 Joel Brobecker <brobecker@adacore.com>
14229
14230 * gdbtypes.c (type_align): Handle TYPE_CODE_RANGE the same as
14231 integers and enumeration types.
14232
142332019-02-17 Joel Brobecker <brobecker@adacore.com>
14234
14235 * ada-lang.c (standard_lookup): Use ada_lookup_encoded_symbol
14236 instead of lookup_symbol_in_language
14237 (do_exact_match): New function.
14238 (ada_get_symbol_name_matcher): Return do_exact_match when
14239 doing a verbatim match.
14240
142412019-02-15 Tom Tromey <tromey@adacore.com>
14242
14243 * ravenscar-thread.c (ravenscar_thread_target::resume)
14244 (ravenscar_thread_target::wait): Special case wildcard requests.
14245
142462019-02-15 Tom Tromey <tromey@adacore.com>
14247
14248 * ravenscar-thread.c (base_ptid): Remove.
14249 (struct ravenscar_thread_target) <close>: New method.
14250 <m_base_ptid>: New member.
14251 <update_inferior_ptid, active_task, task_is_currently_active,
14252 runtime_initialized>: Declare methods.
14253 <ravenscar_thread_target>: Add constructor.
14254 (ravenscar_thread_target::task_is_currently_active)
14255 (ravenscar_thread_target::update_inferior_ptid)
14256 (ravenscar_runtime_initialized): Rename. Now methods.
14257 (ravenscar_thread_target::resume, ravenscar_thread_target::wait)
14258 (ravenscar_thread_target::update_thread_list): Update.
14259 (ravenscar_thread_target::active_task): Now method.
14260 (ravenscar_thread_target::store_registers)
14261 (ravenscar_thread_target::prepare_to_store)
14262 (ravenscar_thread_target::prepare_to_store)
14263 (ravenscar_thread_target::mourn_inferior): Update.
14264 (ravenscar_inferior_created): Use "new" to create target.
14265 (ravenscar_thread_target::get_ada_task_ptid): Update.
14266 (_initialize_ravenscar): Don't initialize base_ptid.
14267 (ravenscar_ops): Remove global.
14268
142692019-02-15 Tom Tromey <tromey@adacore.com>
14270
14271 * target.h (push_target): Declare new overload.
14272 * target.c (push_target): New overload, taking an rvalue reference.
14273 * remote.c (remote_target::open_1): Use push_target overload.
14274 * corelow.c (core_target_open): Use push_target overload.
14275
142762019-02-15 Tom Tromey <tromey@adacore.com>
14277
14278 * ravenscar-thread.c (is_ravenscar_task)
14279 (ravenscar_task_is_currently_active): Return bool.
14280 (ravenscar_update_inferior_ptid, get_running_thread_msymbol)
14281 (_initialize_ravenscar): Remove "(void)".
14282 (has_ravenscar_runtime, ravenscar_runtime_initialized): Likewise.
14283 Return bool.
14284
142852019-02-15 Tom Tromey <tromey@adacore.com>
14286
14287 * ravenscar-thread.c (ravenscar_runtime_initializer)
14288 (has_ravenscar_runtime, get_running_thread_id)
14289 (ravenscar_thread_target::resume): Fix indentation.
14290
142912019-02-15 Tom Tromey <tromey@adacore.com>
14292
14293 * sparc-ravenscar-thread.c (struct sparc_ravenscar_ops): Derive
14294 from ravenscar_arch_ops.
14295 (sparc_ravenscar_ops::fetch_registers)
14296 (sparc_ravenscar_ops::store_registers): Now methods.
14297 (sparc_ravenscar_prepare_to_store): Remove.
14298 (sparc_ravenscar_ops): Redefine.
14299 * ravenscar-thread.h (struct ravenscar_arch_ops): Add virtual
14300 methods and destructor. Remove members.
14301 * ravenscar-thread.c (ravenscar_thread_target::fetch_registers)
14302 (ravenscar_thread_target::store_registers)
14303 (ravenscar_thread_target::prepare_to_store): Update.
14304 * ppc-ravenscar-thread.c (ppc_ravenscar_generic_prepare_to_store):
14305 Remove.
14306 (struct ppc_ravenscar_powerpc_ops): Derive from
14307 ravenscar_arch_ops.
14308 (ppc_ravenscar_powerpc_ops::fetch_registers)
14309 (ppc_ravenscar_powerpc_ops::store_registers): Now methods.
14310 (ppc_ravenscar_powerpc_ops): Redefine.
14311 (struct ppc_ravenscar_e500_ops): Derive from ravenscar_arch_ops.
14312 (ppc_ravenscar_e500_ops::fetch_registers)
14313 (ppc_ravenscar_e500_ops::store_registers): Now methods.
14314 (ppc_ravenscar_e500_ops): Redefine.
14315 * aarch64-ravenscar-thread.c
14316 (aarch64_ravenscar_generic_prepare_to_store): Remove.
14317 (struct aarch64_ravenscar_ops): Derive from ravenscar_arch_ops.
14318 (aarch64_ravenscar_fetch_registers)
14319 (aarch64_ravenscar_store_registers): Now methods.
14320 (aarch64_ravenscar_ops): Redefine.
14321
143222019-02-15 Tom Tromey <tromey@adacore.com>
14323
14324 * ravenscar-thread.c (ravenscar_thread_target::stopped_by_sw_breakpoint)
14325 (ravenscar_thread_target::stopped_by_hw_breakpoint)
14326 (ravenscar_thread_target::stopped_by_watchpoint)
14327 (ravenscar_thread_target::stopped_data_address)
14328 (ravenscar_thread_target::core_of_thread): Use scoped_restore.
14329
143302019-02-15 Tom Tromey <tromey@adacore.com>
14331
14332 * ravenscar-thread.c: Fix some typos.
14333
143342019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14335 Tom Tromey <tromey@adacore.com>
14336
14337 * ada-lang.c (ada_exception_sal): Change addr_string to a
14338 std::string.
14339 (create_ada_exception_catchpoint): Update.
14340
143412019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14342 Tom Tromey <tromey@adacore.com>
14343
14344 * breakpoint.c (~bp_location): Rename from bp_location_dtor.
14345 (bp_location_ops): Remove.
14346 (base_breakpoint_allocate_location): Update.
14347 (free_bp_location): Update.
14348 * ada-lang.c (class ada_catchpoint_location)
14349 <ada_catchpoint_location>: Remove ops parameter.
14350 (ada_catchpoint_location_dtor): Remove.
14351 (ada_catchpoint_location_ops): Remove.
14352 (allocate_location_exception): Update.
14353 * breakpoint.h (struct bp_location_ops): Remove.
14354 (class bp_location) <bp_location>: Remove bp_location_ops
14355 parameter.
14356 <~bp_location>: Add destructor.
14357 <ops>: Remove.
14358
143592019-02-14 Thomas Schwinge <thomas@codesourcery.com>
14360 Pedro Alves <palves@redhat.com>
14361
14362 * remote.c (remote_target::remote_parse_stop_reply): Avoid using
14363 'PATH_MAX'.
14364
143652019-02-14 David Michael <fedora.dm0@gmail.com>
14366 Samuel Thibault <samuel.thibault@gnu.org>
14367 Thomas Schwinge <thomas@codesourcery.com>
14368
14369 * gnu-nat.c (S_proc_getmsgport_reply, S_proc_task2proc_reply)
14370 (S_proc_pid2proc_reply): Adjust to Hurd "proc" interface changes.
14371
143722019-02-14 Thomas Schwinge <thomas@codesourcery.com>
14373
14374 * gnu-nat.c (gnu_write_inferior, parse_int_arg, _parse_bool_arg)
14375 (check_empty): Use "const char *".
14376
14377 * gnu-nat.c (gnu_nat_target::detach): Instead of
14378 'detach_inferior (pid)' call
14379 'detach_inferior (find_inferior_pid (pid))'.
14380
14381 * configure.nat [gdb_host == i386gnu] (NATDEPFILES): Add
14382 'nat/fork-inferior.o'.
14383 * gnu-nat.c: #include "nat/fork-inferior.h".
14384
14385 * gnu-nat.c (gnu_nat_target::detach): Instead of
14386 'inf_child_maybe_unpush_target (ops)' call 'maybe_unpush_target'.
14387 * gnu-nat.h: #include "inf-child.h".
14388 * i386-gnu-nat.c (gnu_fetch_registers): Rename/move to
14389 'i386_gnu_nat_target::fetch_registers'.
14390 (gnu_store_registers): Rename/move to
14391 'i386_gnu_nat_target::store_registers'.
14392
14393 * config/i386/nm-i386gnu.h: Don't "#include" any files.
14394 * gnu-nat.h (mach_thread_info): New function.
14395 * gnu-nat.c (thread_takeover_sc_cmd): Use it.
14396
14397 * config/i386/nm-i386gnu.h (gnu_target_pid_to_str): Remove.
14398
143992019-02-14 Frederic Konrad <konrad@adacore.com>
14400
14401 * riscv-rdep.c (riscv_type_alignment): Handle TYPE_CODE_RANGE.
14402
144032019-02-14 Joel Brobecker <brobecker@adacore.com>
14404
14405 * windows-nat.c (windows_add_thread): Add new parameter
14406 "main_thread_p" with default value set to false. Update
14407 function documentation as well as all callers.
14408 (windows_delete_thread): Likewise.
14409 (fake_create_process): Update call to windows_add_thread.
14410 (get_windows_debug_event) <CREATE_THREAD_DEBUG_EVENT>
14411 <CREATE_PROCESS_DEBUG_EVENT>: Likewise.
14412 <EXIT_THREAD_DEBUG_EVENT, EXIT_PROCESS_DEBUG_EVENT>: Update
14413 call to windows_delete_thread.
14414
144152019-02-13 Simon Marchi <simon.marchi@ericsson.com>
14416
14417 * MAINTAINERS: Add Andrew Burgess as global maintainer.
14418
144192019-02-12 John Baldwin <jhb@FreeBSD.org>
14420
14421 * symfile.c (find_separate_debug_file): Use canonical path of
14422 sysroot with child_path instead of gdb_sysroot if it is valid.
14423
144242019-02-12 John Baldwin <jhb@FreeBSD.org>
14425
14426 * symfile.c (find_separate_debug_file): Use child_path to
14427 determine if an object file is under a sysroot.
14428
144292019-02-12 John Baldwin <jhb@FreeBSD.org>
14430
14431 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
14432 unittests/child-path-selftests.c.
14433 * common/pathstuff.c (child_path): New function.
14434 * common/pathstuff.h (child_path): New prototype.
14435 * unittests/child-path-selftests.c: New file.
14436
144372019-02-12 John Baldwin <jhb@FreeBSD.org>
14438
14439 * symfile.c (find_separate_debug_file): Look for separate debug
14440 files in debug directories under the sysroot.
14441
144422019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14443
14444 * symtab.h (struct minimal_symbol data_p): New const method.
14445 (struct minimal_symbol text_p): Likewise.
14446 * symtab.c (output_source_filename): Use file name style
14447 to print file name.
14448 (print_symbol_info): Likewise.
14449 (print_msymbol_info): Use address style to print addresses.
14450 Use function name style to print executable text symbols.
14451 (expand_symtab_containing_pc): Use data_p.
14452 (find_pc_sect_compunit_symtab): Likewise.
14453
144542019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14455
14456 * breakpoint.c (describe_other_breakpoints): Use address style
14457 to print addresses.
14458 (say_where): Likewise.
14459
144602019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14461
14462 * ada-typeprint.c (print_func_type): Print function name
14463 style to print function name.
14464 * c-typeprint.c (c_print_type_1): Likewise.
14465
144662019-02-11 Alan Hayward <alan.hayward@arm.com>
14467
14468 * aarch64-linux-tdep.c (aarch64_linux_get_syscall_number): Check
14469 for execve.
14470
144712019-02-10 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14472
14473 * c-exp.y (direct_abs_decl): Use emplace_back to record the
14474 type_stack.
14475
144762019-02-10 Joel Brobecker <brobecker@adacore.com>
14477
14478 * ada-varobj.c (ada_value_is_changeable_p): Add handling of
14479 TYPE_CODE_REF types.
14480
144812019-02-08 Jim Wilson <jimw@sifive.com>
14482
14483 * riscv-linux-tdep.c (riscv_linux_fregmap): New.
14484 (riscv_linux_fregset): New.
14485 (riscv_linux_iterate_over_regset_sections): Call cb for .reg2 section.
14486
144872019-02-07 Tom Tromey <tom@tromey.com>
14488
14489 * thread.c (thread_cancel_execution_command): Update.
14490 * thread-fsm.h (struct thread_fsm): Add constructor, destructor,
14491 methods.
14492 (struct thread_fsm_ops): Remove.
14493 (thread_fsm_ctor, thread_fsm_delete, thread_fsm_clean_up)
14494 (thread_fsm_should_stop, thread_fsm_return_value)
14495 (thread_fsm_set_finished, thread_fsm_finished_p)
14496 (thread_fsm_async_reply_reason, thread_fsm_should_notify_stop):
14497 Don't declare.
14498 * mi/mi-interp.c (mi_on_normal_stop_1): Update.
14499 * infrun.c (clear_proceed_status_thread)
14500 (clean_up_just_stopped_threads_fsms, fetch_inferior_event)
14501 (print_stop_event): Update.
14502 * infcmd.c (struct step_command_fsm): Inherit from thread_fsm.
14503 Add constructor.
14504 (step_command_fsm_ops): Remove.
14505 (new_step_command_fsm): Remove.
14506 (step_1): Update.
14507 (step_command_fsm::should_stop): Rename from
14508 step_command_fsm_should_stop.
14509 (step_command_fsm::clean_up): Rename from
14510 step_command_fsm_clean_up.
14511 (step_command_fsm::do_async_reply_reason): Rename from
14512 step_command_fsm_async_reply_reason.
14513 (struct until_next_fsm): Inherit from thread_fsm. Add
14514 constructor.
14515 (until_next_fsm_ops): Remove.
14516 (new_until_next_fsm): Remove.
14517 (until_next_fsm::should_stop): Rename from
14518 until_next_fsm_should_stop.
14519 (until_next_fsm::clean_up): Rename from until_next_fsm_clean_up.
14520 (until_next_fsm::do_async_reply_reason): Rename from
14521 until_next_fsm_async_reply_reason.
14522 (struct finish_command_fsm): Inherit from thread_fsm. Add
14523 constructor. Change type of breakpoint.
14524 (finish_command_fsm_ops): Remove.
14525 (new_finish_command_fsm): Remove.
14526 (finish_command_fsm::should_stop): Rename from
14527 finish_command_fsm_should_stop.
14528 (finish_command_fsm::clean_up): Rename from
14529 finish_command_fsm_clean_up.
14530 (finish_command_fsm::return_value): Rename from
14531 finish_command_fsm_return_value.
14532 (finish_command_fsm::do_async_reply_reason): Rename from
14533 finish_command_fsm_async_reply_reason.
14534 (finish_command): Update.
14535 * infcall.c (struct call_thread_fsm): Inherit from thread_fsm.
14536 Add constructor.
14537 (call_thread_fsm_ops): Remove.
14538 (call_thread_fsm::call_thread_fsm): Rename from
14539 new_call_thread_fsm.
14540 (call_thread_fsm::should_stop): Rename from
14541 call_thread_fsm_should_stop.
14542 (call_thread_fsm::should_notify_stop): Rename from
14543 call_thread_fsm_should_notify_stop.
14544 (run_inferior_call, call_function_by_hand_dummy): Update.
14545 * cli/cli-interp.c (should_print_stop_to_console): Update.
14546 * breakpoint.c (struct until_break_fsm): Inherit from thread_fsm.
14547 Add constructor. Change type of location_breakpoint,
14548 caller_breakpoint.
14549 (until_break_fsm_ops): Remove.
14550 (new_until_break_fsm): Remove.
14551 (until_break_fsm::should_stop): Rename from
14552 until_break_fsm_should_stop.
14553 (until_break_fsm::clean_up): Rename from
14554 until_break_fsm_clean_up.
14555 (until_break_fsm::do_async_reply_reason): Rename from
14556 until_break_fsm_async_reply_reason.
14557 (until_break_command): Update.
14558 * thread-fsm.c: Remove.
14559 * Makefile.in (COMMON_SFILES): Remove thread-fsm.c.
14560
145612019-02-07 Tom Tromey <tom@tromey.com>
14562
14563 * yy-remap.h: Add include guard.
14564 * xtensa-tdep.h: Add include guard.
14565 * xcoffread.h: Rename include guard.
14566 * varobj-iter.h: Add include guard.
14567 * tui/tui.h: Rename include guard.
14568 * tui/tui-winsource.h: Rename include guard.
14569 * tui/tui-wingeneral.h: Rename include guard.
14570 * tui/tui-windata.h: Rename include guard.
14571 * tui/tui-win.h: Rename include guard.
14572 * tui/tui-stack.h: Rename include guard.
14573 * tui/tui-source.h: Rename include guard.
14574 * tui/tui-regs.h: Rename include guard.
14575 * tui/tui-out.h: Rename include guard.
14576 * tui/tui-layout.h: Rename include guard.
14577 * tui/tui-io.h: Rename include guard.
14578 * tui/tui-hooks.h: Rename include guard.
14579 * tui/tui-file.h: Rename include guard.
14580 * tui/tui-disasm.h: Rename include guard.
14581 * tui/tui-data.h: Rename include guard.
14582 * tui/tui-command.h: Rename include guard.
14583 * tic6x-tdep.h: Add include guard.
14584 * target/waitstatus.h: Rename include guard.
14585 * target/wait.h: Rename include guard.
14586 * target/target.h: Rename include guard.
14587 * target/resume.h: Rename include guard.
14588 * target-float.h: Rename include guard.
14589 * stabsread.h: Add include guard.
14590 * rs6000-tdep.h: Add include guard.
14591 * riscv-fbsd-tdep.h: Add include guard.
14592 * regformats/regdef.h: Rename include guard.
14593 * record.h: Rename include guard.
14594 * python/python.h: Rename include guard.
14595 * python/python-internal.h: Rename include guard.
14596 * python/py-stopevent.h: Rename include guard.
14597 * python/py-ref.h: Rename include guard.
14598 * python/py-record.h: Rename include guard.
14599 * python/py-record-full.h: Rename include guard.
14600 * python/py-record-btrace.h: Rename include guard.
14601 * python/py-instruction.h: Rename include guard.
14602 * python/py-events.h: Rename include guard.
14603 * python/py-event.h: Rename include guard.
14604 * procfs.h: Add include guard.
14605 * proc-utils.h: Add include guard.
14606 * p-lang.h: Add include guard.
14607 * or1k-tdep.h: Rename include guard.
14608 * observable.h: Rename include guard.
14609 * nto-tdep.h: Rename include guard.
14610 * nat/x86-linux.h: Rename include guard.
14611 * nat/x86-linux-dregs.h: Rename include guard.
14612 * nat/x86-gcc-cpuid.h: Add include guard.
14613 * nat/x86-dregs.h: Rename include guard.
14614 * nat/x86-cpuid.h: Rename include guard.
14615 * nat/ppc-linux.h: Rename include guard.
14616 * nat/mips-linux-watch.h: Rename include guard.
14617 * nat/linux-waitpid.h: Rename include guard.
14618 * nat/linux-ptrace.h: Rename include guard.
14619 * nat/linux-procfs.h: Rename include guard.
14620 * nat/linux-osdata.h: Rename include guard.
14621 * nat/linux-nat.h: Rename include guard.
14622 * nat/linux-namespaces.h: Rename include guard.
14623 * nat/linux-btrace.h: Rename include guard.
14624 * nat/glibc_thread_db.h: Rename include guard.
14625 * nat/gdb_thread_db.h: Rename include guard.
14626 * nat/gdb_ptrace.h: Rename include guard.
14627 * nat/fork-inferior.h: Rename include guard.
14628 * nat/amd64-linux-siginfo.h: Rename include guard.
14629 * nat/aarch64-sve-linux-sigcontext.h: Rename include guard.
14630 * nat/aarch64-sve-linux-ptrace.h: Rename include guard.
14631 * nat/aarch64-linux.h: Rename include guard.
14632 * nat/aarch64-linux-hw-point.h: Rename include guard.
14633 * mn10300-tdep.h: Add include guard.
14634 * mips-linux-tdep.h: Add include guard.
14635 * mi/mi-parse.h: Rename include guard.
14636 * mi/mi-out.h: Rename include guard.
14637 * mi/mi-main.h: Rename include guard.
14638 * mi/mi-interp.h: Rename include guard.
14639 * mi/mi-getopt.h: Rename include guard.
14640 * mi/mi-console.h: Rename include guard.
14641 * mi/mi-common.h: Rename include guard.
14642 * mi/mi-cmds.h: Rename include guard.
14643 * mi/mi-cmd-break.h: Rename include guard.
14644 * m2-lang.h: Add include guard.
14645 * location.h: Rename include guard.
14646 * linux-record.h: Rename include guard.
14647 * linux-nat.h: Add include guard.
14648 * linux-fork.h: Add include guard.
14649 * i386-darwin-tdep.h: Rename include guard.
14650 * hppa-linux-offsets.h: Add include guard.
14651 * guile/guile.h: Rename include guard.
14652 * guile/guile-internal.h: Rename include guard.
14653 * gnu-nat.h: Rename include guard.
14654 * gdb-stabs.h: Rename include guard.
14655 * frv-tdep.h: Add include guard.
14656 * f-lang.h: Add include guard.
14657 * event-loop.h: Add include guard.
14658 * darwin-nat.h: Rename include guard.
14659 * cp-abi.h: Rename include guard.
14660 * config/sparc/nm-sol2.h: Rename include guard.
14661 * config/nm-nto.h: Rename include guard.
14662 * config/nm-linux.h: Add include guard.
14663 * config/i386/nm-i386gnu.h: Rename include guard.
14664 * config/djgpp/nl_types.h: Rename include guard.
14665 * config/djgpp/langinfo.h: Rename include guard.
14666 * compile/gcc-cp-plugin.h: Add include guard.
14667 * compile/gcc-c-plugin.h: Add include guard.
14668 * compile/compile.h: Rename include guard.
14669 * compile/compile-object-run.h: Rename include guard.
14670 * compile/compile-object-load.h: Rename include guard.
14671 * compile/compile-internal.h: Rename include guard.
14672 * compile/compile-cplus.h: Rename include guard.
14673 * compile/compile-c.h: Rename include guard.
14674 * common/xml-utils.h: Rename include guard.
14675 * common/x86-xstate.h: Rename include guard.
14676 * common/version.h: Rename include guard.
14677 * common/vec.h: Rename include guard.
14678 * common/tdesc.h: Rename include guard.
14679 * common/selftest.h: Rename include guard.
14680 * common/scoped_restore.h: Rename include guard.
14681 * common/scoped_mmap.h: Rename include guard.
14682 * common/scoped_fd.h: Rename include guard.
14683 * common/safe-iterator.h: Rename include guard.
14684 * common/run-time-clock.h: Rename include guard.
14685 * common/refcounted-object.h: Rename include guard.
14686 * common/queue.h: Rename include guard.
14687 * common/ptid.h: Rename include guard.
14688 * common/print-utils.h: Rename include guard.
14689 * common/preprocessor.h: Rename include guard.
14690 * common/pathstuff.h: Rename include guard.
14691 * common/observable.h: Rename include guard.
14692 * common/netstuff.h: Rename include guard.
14693 * common/job-control.h: Rename include guard.
14694 * common/host-defs.h: Rename include guard.
14695 * common/gdb_wait.h: Rename include guard.
14696 * common/gdb_vecs.h: Rename include guard.
14697 * common/gdb_unlinker.h: Rename include guard.
14698 * common/gdb_unique_ptr.h: Rename include guard.
14699 * common/gdb_tilde_expand.h: Rename include guard.
14700 * common/gdb_sys_time.h: Rename include guard.
14701 * common/gdb_string_view.h: Rename include guard.
14702 * common/gdb_splay_tree.h: Rename include guard.
14703 * common/gdb_setjmp.h: Rename include guard.
14704 * common/gdb_ref_ptr.h: Rename include guard.
14705 * common/gdb_optional.h: Rename include guard.
14706 * common/gdb_locale.h: Rename include guard.
14707 * common/gdb_assert.h: Rename include guard.
14708 * common/filtered-iterator.h: Rename include guard.
14709 * common/filestuff.h: Rename include guard.
14710 * common/fileio.h: Rename include guard.
14711 * common/environ.h: Rename include guard.
14712 * common/common-utils.h: Rename include guard.
14713 * common/common-types.h: Rename include guard.
14714 * common/common-regcache.h: Rename include guard.
14715 * common/common-inferior.h: Rename include guard.
14716 * common/common-gdbthread.h: Rename include guard.
14717 * common/common-exceptions.h: Rename include guard.
14718 * common/common-defs.h: Rename include guard.
14719 * common/common-debug.h: Rename include guard.
14720 * common/cleanups.h: Rename include guard.
14721 * common/buffer.h: Rename include guard.
14722 * common/btrace-common.h: Rename include guard.
14723 * common/break-common.h: Rename include guard.
14724 * cli/cli-utils.h: Rename include guard.
14725 * cli/cli-style.h: Rename include guard.
14726 * cli/cli-setshow.h: Rename include guard.
14727 * cli/cli-script.h: Rename include guard.
14728 * cli/cli-interp.h: Rename include guard.
14729 * cli/cli-decode.h: Rename include guard.
14730 * cli/cli-cmds.h: Rename include guard.
14731 * charset-list.h: Add include guard.
14732 * buildsym-legacy.h: Rename include guard.
14733 * bfin-tdep.h: Add include guard.
14734 * ax.h: Rename include guard.
14735 * arm-linux-tdep.h: Add include guard.
14736 * arm-fbsd-tdep.h: Add include guard.
14737 * arch/xtensa.h: Rename include guard.
14738 * arch/tic6x.h: Add include guard.
14739 * arch/i386.h: Add include guard.
14740 * arch/arm.h: Rename include guard.
14741 * arch/arm-linux.h: Rename include guard.
14742 * arch/arm-get-next-pcs.h: Rename include guard.
14743 * arch/amd64.h: Add include guard.
14744 * arch/aarch64-insn.h: Rename include guard.
14745 * arch-utils.h: Rename include guard.
14746 * annotate.h: Add include guard.
14747 * amd64-darwin-tdep.h: Rename include guard.
14748 * aarch64-linux-tdep.h: Add include guard.
14749 * aarch64-fbsd-tdep.h: Add include guard.
14750 * aarch32-linux-nat.h: Add include guard.
14751
147522019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14753
14754 * macrotab.c (macro_define_internal): New function that
14755 factorizes macro_define_object_internal and macro_define_function
14756 code.
14757 (macro_define_object_internal): Use macro_define_internal.
14758 (macro_define_function): Likewise.
14759
147602019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14761
14762 * macrocmd.c (extract_identifier): Return
14763 a gdb::unique_xmalloc_ptr<char> instead of a char *, and update
14764 callers.
14765
147662019-02-06 John Baldwin <jhb@FreeBSD.org>
14767
14768 * fbsd-nat.c (fbsd_fetch_cmdline): Join arguments with spaces.
14769
147702019-02-05 Tom Tromey <tom@tromey.com>
14771
14772 * target.c (target_stack::unpush): Move assertion earlier.
14773
147742019-01-30 Tom Tromey <tom@tromey.com>
14775
14776 PR python/23615:
14777 * python/python.c (execute_gdb_command): Use gdbpy_allow_threads.
14778 (gdbpy_parse_and_eval): Likewise.
14779 * python/python-internal.h (gdbpy_allow_threads): New class.
14780
147812019-01-28 John Baldwin <jhb@FreeBSD.org>
14782
14783 * aarch64-fbsd-tdep.c (aarch64_fbsd_gregmap)
14784 (aarch64_fbsd_fpregmap): Move earlier.
14785 (AARCH64_MCONTEXT_REG_SIZE, AARCH64_MCONTEXT_FPREG_SIZE): Delete.
14786 (aarch64_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
14787 instead of individual calls to trad_frame_set_reg_addr.
14788 * arm-fbsd-tdep.c (arm_fbsd_gregmap, arm_fbsd_vfpregmap): Move
14789 earlier.
14790 (ARM_MCONTEXT_REG_SIZE, ARM_MCONTEXT_VFP_REG_SIZE): Delete.
14791 (arm_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
14792 instead of individual calls to trad_frame_set_reg_addr.
14793
147942019-01-28 Alan Hayward <alan.hayward@arm.com>
14795
14796 * CONTRIBUTE: Replace contribution list with wiki link.
14797
147982019-01-25 Tom Tromey <tom@tromey.com>
14799
14800 * Makefile.in (GDB_CFLAGS): Don't add -I for common.
14801
148022019-01-25 Tom Tromey <tom@tromey.com>
14803
14804 * xtensa-linux-nat.c: Fix common/ includes.
14805 * xml-support.h: Fix common/ includes.
14806 * xml-support.c: Fix common/ includes.
14807 * x86-linux-nat.c: Fix common/ includes.
14808 * windows-nat.c: Fix common/ includes.
14809 * varobj.h: Fix common/ includes.
14810 * varobj.c: Fix common/ includes.
14811 * value.c: Fix common/ includes.
14812 * valops.c: Fix common/ includes.
14813 * utils.c: Fix common/ includes.
14814 * unittests/xml-utils-selftests.c: Fix common/ includes.
14815 * unittests/utils-selftests.c: Fix common/ includes.
14816 * unittests/unpack-selftests.c: Fix common/ includes.
14817 * unittests/tracepoint-selftests.c: Fix common/ includes.
14818 * unittests/style-selftests.c: Fix common/ includes.
14819 * unittests/string_view-selftests.c: Fix common/ includes.
14820 * unittests/scoped_restore-selftests.c: Fix common/ includes.
14821 * unittests/scoped_mmap-selftests.c: Fix common/ includes.
14822 * unittests/scoped_fd-selftests.c: Fix common/ includes.
14823 * unittests/rsp-low-selftests.c: Fix common/ includes.
14824 * unittests/parse-connection-spec-selftests.c: Fix common/
14825 includes.
14826 * unittests/optional-selftests.c: Fix common/ includes.
14827 * unittests/offset-type-selftests.c: Fix common/ includes.
14828 * unittests/observable-selftests.c: Fix common/ includes.
14829 * unittests/mkdir-recursive-selftests.c: Fix common/ includes.
14830 * unittests/memrange-selftests.c: Fix common/ includes.
14831 * unittests/memory-map-selftests.c: Fix common/ includes.
14832 * unittests/lookup_name_info-selftests.c: Fix common/ includes.
14833 * unittests/function-view-selftests.c: Fix common/ includes.
14834 * unittests/environ-selftests.c: Fix common/ includes.
14835 * unittests/copy_bitwise-selftests.c: Fix common/ includes.
14836 * unittests/common-utils-selftests.c: Fix common/ includes.
14837 * unittests/cli-utils-selftests.c: Fix common/ includes.
14838 * unittests/array-view-selftests.c: Fix common/ includes.
14839 * ui-file.c: Fix common/ includes.
14840 * tui/tui-io.c: Fix common/ includes.
14841 * tracepoint.h: Fix common/ includes.
14842 * tracepoint.c: Fix common/ includes.
14843 * tracefile-tfile.c: Fix common/ includes.
14844 * top.h: Fix common/ includes.
14845 * top.c: Fix common/ includes.
14846 * thread.c: Fix common/ includes.
14847 * target/waitstatus.h: Fix common/ includes.
14848 * target/waitstatus.c: Fix common/ includes.
14849 * target.h: Fix common/ includes.
14850 * target.c: Fix common/ includes.
14851 * target-memory.c: Fix common/ includes.
14852 * target-descriptions.c: Fix common/ includes.
14853 * symtab.h: Fix common/ includes.
14854 * symfile.c: Fix common/ includes.
14855 * stap-probe.c: Fix common/ includes.
14856 * spu-linux-nat.c: Fix common/ includes.
14857 * sparc-nat.c: Fix common/ includes.
14858 * source.c: Fix common/ includes.
14859 * solib.c: Fix common/ includes.
14860 * solib-target.c: Fix common/ includes.
14861 * ser-unix.c: Fix common/ includes.
14862 * ser-tcp.c: Fix common/ includes.
14863 * ser-pipe.c: Fix common/ includes.
14864 * ser-base.c: Fix common/ includes.
14865 * selftest-arch.c: Fix common/ includes.
14866 * s12z-tdep.c: Fix common/ includes.
14867 * rust-exp.y: Fix common/ includes.
14868 * rs6000-aix-tdep.c: Fix common/ includes.
14869 * riscv-tdep.c: Fix common/ includes.
14870 * remote.c: Fix common/ includes.
14871 * remote-notif.h: Fix common/ includes.
14872 * remote-fileio.h: Fix common/ includes.
14873 * remote-fileio.c: Fix common/ includes.
14874 * regcache.h: Fix common/ includes.
14875 * regcache.c: Fix common/ includes.
14876 * record-btrace.c: Fix common/ includes.
14877 * python/python.c: Fix common/ includes.
14878 * python/py-type.c: Fix common/ includes.
14879 * python/py-inferior.c: Fix common/ includes.
14880 * progspace.h: Fix common/ includes.
14881 * producer.c: Fix common/ includes.
14882 * procfs.c: Fix common/ includes.
14883 * proc-api.c: Fix common/ includes.
14884 * printcmd.c: Fix common/ includes.
14885 * ppc-linux-nat.c: Fix common/ includes.
14886 * parser-defs.h: Fix common/ includes.
14887 * osdata.c: Fix common/ includes.
14888 * obsd-nat.c: Fix common/ includes.
14889 * nat/x86-linux.c: Fix common/ includes.
14890 * nat/x86-linux-dregs.c: Fix common/ includes.
14891 * nat/x86-dregs.h: Fix common/ includes.
14892 * nat/x86-dregs.c: Fix common/ includes.
14893 * nat/ppc-linux.c: Fix common/ includes.
14894 * nat/mips-linux-watch.h: Fix common/ includes.
14895 * nat/mips-linux-watch.c: Fix common/ includes.
14896 * nat/linux-waitpid.c: Fix common/ includes.
14897 * nat/linux-ptrace.h: Fix common/ includes.
14898 * nat/linux-ptrace.c: Fix common/ includes.
14899 * nat/linux-procfs.c: Fix common/ includes.
14900 * nat/linux-personality.c: Fix common/ includes.
14901 * nat/linux-osdata.c: Fix common/ includes.
14902 * nat/linux-namespaces.c: Fix common/ includes.
14903 * nat/linux-btrace.h: Fix common/ includes.
14904 * nat/linux-btrace.c: Fix common/ includes.
14905 * nat/fork-inferior.c: Fix common/ includes.
14906 * nat/amd64-linux-siginfo.c: Fix common/ includes.
14907 * nat/aarch64-sve-linux-ptrace.c: Fix common/ includes.
14908 * nat/aarch64-linux.c: Fix common/ includes.
14909 * nat/aarch64-linux-hw-point.h: Fix common/ includes.
14910 * nat/aarch64-linux-hw-point.c: Fix common/ includes.
14911 * namespace.h: Fix common/ includes.
14912 * mips-linux-tdep.c: Fix common/ includes.
14913 * minsyms.c: Fix common/ includes.
14914 * mi/mi-parse.h: Fix common/ includes.
14915 * mi/mi-main.c: Fix common/ includes.
14916 * mi/mi-cmd-env.c: Fix common/ includes.
14917 * memrange.h: Fix common/ includes.
14918 * memattr.c: Fix common/ includes.
14919 * maint.h: Fix common/ includes.
14920 * maint.c: Fix common/ includes.
14921 * main.c: Fix common/ includes.
14922 * machoread.c: Fix common/ includes.
14923 * location.c: Fix common/ includes.
14924 * linux-thread-db.c: Fix common/ includes.
14925 * linux-nat.c: Fix common/ includes.
14926 * linux-fork.c: Fix common/ includes.
14927 * inline-frame.c: Fix common/ includes.
14928 * infrun.c: Fix common/ includes.
14929 * inflow.c: Fix common/ includes.
14930 * inferior.h: Fix common/ includes.
14931 * inferior.c: Fix common/ includes.
14932 * infcmd.c: Fix common/ includes.
14933 * inf-ptrace.c: Fix common/ includes.
14934 * inf-child.c: Fix common/ includes.
14935 * ia64-linux-nat.c: Fix common/ includes.
14936 * i387-tdep.c: Fix common/ includes.
14937 * i386-tdep.c: Fix common/ includes.
14938 * i386-linux-tdep.c: Fix common/ includes.
14939 * i386-linux-nat.c: Fix common/ includes.
14940 * i386-go32-tdep.c: Fix common/ includes.
14941 * i386-fbsd-tdep.c: Fix common/ includes.
14942 * i386-fbsd-nat.c: Fix common/ includes.
14943 * guile/scm-type.c: Fix common/ includes.
14944 * guile/guile.c: Fix common/ includes.
14945 * go32-nat.c: Fix common/ includes.
14946 * gnu-nat.c: Fix common/ includes.
14947 * gdbthread.h: Fix common/ includes.
14948 * gdbarch-selftests.c: Fix common/ includes.
14949 * gdb_usleep.c: Fix common/ includes.
14950 * gdb_select.h: Fix common/ includes.
14951 * gdb_bfd.c: Fix common/ includes.
14952 * gcore.c: Fix common/ includes.
14953 * fork-child.c: Fix common/ includes.
14954 * findvar.c: Fix common/ includes.
14955 * fbsd-nat.c: Fix common/ includes.
14956 * event-top.c: Fix common/ includes.
14957 * event-loop.c: Fix common/ includes.
14958 * dwarf2read.c: Fix common/ includes.
14959 * dwarf2loc.c: Fix common/ includes.
14960 * dwarf2-frame.c: Fix common/ includes.
14961 * dwarf-index-cache.c: Fix common/ includes.
14962 * dtrace-probe.c: Fix common/ includes.
14963 * disasm-selftests.c: Fix common/ includes.
14964 * defs.h: Fix common/ includes.
14965 * csky-tdep.c: Fix common/ includes.
14966 * cp-valprint.c: Fix common/ includes.
14967 * cp-support.h: Fix common/ includes.
14968 * cp-support.c: Fix common/ includes.
14969 * corelow.c: Fix common/ includes.
14970 * completer.h: Fix common/ includes.
14971 * completer.c: Fix common/ includes.
14972 * compile/compile.c: Fix common/ includes.
14973 * compile/compile-loc2c.c: Fix common/ includes.
14974 * compile/compile-cplus-types.c: Fix common/ includes.
14975 * compile/compile-cplus-symbols.c: Fix common/ includes.
14976 * command.h: Fix common/ includes.
14977 * cli/cli-dump.c: Fix common/ includes.
14978 * cli/cli-cmds.c: Fix common/ includes.
14979 * charset.c: Fix common/ includes.
14980 * build-id.c: Fix common/ includes.
14981 * btrace.h: Fix common/ includes.
14982 * btrace.c: Fix common/ includes.
14983 * breakpoint.h: Fix common/ includes.
14984 * breakpoint.c: Fix common/ includes.
14985 * ax.h:
14986 (enum agent_op): Fix common/ includes.
14987 * ax-general.c (struct aop_map): Fix common/ includes.
14988 * ax-gdb.c: Fix common/ includes.
14989 * auxv.c: Fix common/ includes.
14990 * auto-load.c: Fix common/ includes.
14991 * arm-tdep.c: Fix common/ includes.
14992 * arch/riscv.c: Fix common/ includes.
14993 * arch/ppc-linux-common.c: Fix common/ includes.
14994 * arch/i386.c: Fix common/ includes.
14995 * arch/arm.c: Fix common/ includes.
14996 * arch/arm-linux.c: Fix common/ includes.
14997 * arch/arm-get-next-pcs.c: Fix common/ includes.
14998 * arch/amd64.c: Fix common/ includes.
14999 * arch/aarch64.c: Fix common/ includes.
15000 * arch/aarch64-insn.c: Fix common/ includes.
15001 * arch-utils.c: Fix common/ includes.
15002 * amd64-windows-tdep.c: Fix common/ includes.
15003 * amd64-tdep.c: Fix common/ includes.
15004 * amd64-sol2-tdep.c: Fix common/ includes.
15005 * amd64-obsd-tdep.c: Fix common/ includes.
15006 * amd64-nbsd-tdep.c: Fix common/ includes.
15007 * amd64-linux-tdep.c: Fix common/ includes.
15008 * amd64-linux-nat.c: Fix common/ includes.
15009 * amd64-fbsd-tdep.c: Fix common/ includes.
15010 * amd64-fbsd-nat.c: Fix common/ includes.
15011 * amd64-dicos-tdep.c: Fix common/ includes.
15012 * amd64-darwin-tdep.c: Fix common/ includes.
15013 * agent.c: Fix common/ includes.
15014 * ada-lang.h: Fix common/ includes.
15015 * ada-lang.c: Fix common/ includes.
15016 * aarch64-tdep.c: Fix common/ includes.
15017
150182019-01-25 Tom Tromey <tom@tromey.com>
15019
15020 * common/create-version.sh: Use common/version.h.
15021
150222019-01-24 Pedro Alves <palves@redhat.com>
15023
15024 * infrun.c (signal_stop, signal_print, signal_program)
15025 (signal_catch, signal_pass): Now arrays instead of pointers.
15026 (update_signals_program_target, do_target_resume)
15027 (signal_catch_update, handle_command, _initialize_infrun): Adjust.
15028 * linux-nat.c (linux_nat_target::pass_signals)
15029 (linux_nat_target::create_inferior, linux_nat_target::attach):
15030 Adjust.
15031 * linux-nat.h (linux_nat_target::pass_signals): Adjust.
15032 * nto-procfs.c (nto_procfs_target::pass_signals): Adjust.
15033 * procfs.c (procfs_target::pass_signals): Adjust.
15034 * record-full.c (record_full_target::resume): Adjust.
15035 * remote.c (remote_target::pass_signals)
15036 (remote_target::program_signals): Adjust.
15037 * target-debug.h (target_debug_print_signals): Now takes a
15038 gdb::array_view as parameter. Adjust.
15039 * target.h (target_ops) <pass_signals, program_signals>: Replace
15040 pointer and length parameters with gdb::array_view.
15041 (target_pass_signals, target_program_signals): Likewise.
15042 * target-delegates.c: Regenerate.
15043
150442019-01-24 Pedro Alves <palves@redhat.com>
15045
15046 * common/forward-scope-exit.h
15047 (forward_scope_exit::forward_scope_exit): Pass arguments to
15048 m_bind_function directly, instead of creating a std::bind and
15049 copying that.
15050
150512019-01-24 Alan Hayward <alan.hayward@arm.com>
15052
15053 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
15054 for static members.
15055 (pass_in_v_vfp_candidate): Likewise.
15056
150572019-01-23 Tom Tromey <tom@tromey.com>
15058 Pedro Alves <palves@redhat.com>
15059
15060 * regcache.c (class regcache_invalidator): Remove.
15061 (regcache::raw_write): Use make_scope_exit.
15062
150632019-01-23 Tom Tromey <tom@tromey.com>
15064
15065 * ui-out.h (class ui_out_emit_type): Update comment.
15066
150672019-01-23 Tom Tromey <tom@tromey.com>
15068
15069 * infrun.c (fetch_inferior_event): Update comment.
15070
150712019-01-23 Tom Tromey <tom@tromey.com>
15072 Pedro Alves <palves@redhat.com>
15073
15074 * infrun.c (reinstall_readline_callback_handler_cleanup): Remove
15075 parameter.
15076 (fetch_inferior_event): Use SCOPE_EXIT.
15077
15078
150792019-01-23 Tom Tromey <tom@tromey.com>
15080 Pedro Alves <palves@redhat.com>
15081
15082 * infrun.c (disable_thread_events): Delete.
15083 (stop_all_threads): Use SCOPE_EXIT.
15084
150852019-01-23 Tom Tromey <tom@tromey.com>
15086 Pedro Alves <palves@redhat.com>
15087
15088 * symfile.c: Include forward-scope-exit.h.
15089 (clear_symtab_users_cleanup): Replace forward declaration with
15090 a FORWARD_SCOPE_EXIT.
15091 (syms_from_objfile_1): Use the forward_scope_exit and
15092 gdb::optional instead of cleanup_function.
15093 (reread_symbols): Use the forward_scope_exit instead of
15094 cleanup_function.
15095 (clear_symtab_users_cleanup): Remove function.
15096
150972019-01-23 Tom Tromey <tom@tromey.com>
15098 Pedro Alves <palves@redhat.com>
15099
15100 * linux-nat.c: Include scope-exit.h.
15101 (cleanup_target_stop): Remove.
15102 (linux_nat_target::static_tracepoint_markers_by_strid): Use
15103 SCOPE_EXIT.
15104
151052019-01-23 Tom Tromey <tom@tromey.com>
15106 Pedro Alves <palves@redhat.com>
15107
15108 * infcall.c (cleanup_delete_std_terminate_breakpoint): Remove.
15109 (call_function_by_hand_dummy): Use SCOPE_EXIT.
15110
151112019-01-23 Tom Tromey <tom@tromey.com>
15112 Andrew Burgess <andrew.burgess@embecosm.com>
15113 Pedro Alves <palves@redhat.com>
15114
15115 * infrun.c (fetch_inferior_event): Use scope_exit.
15116 * utils.h (make_bpstat_clear_actions_cleanup): Don't declare.
15117 * top.c (execute_command): Use scope_exit.
15118 * breakpoint.c (bpstat_do_actions): Use scope_exit.
15119 * utils.c (do_bpstat_clear_actions_cleanup)
15120 (make_bpstat_clear_actions_cleanup): Remove.
15121
151222019-01-23 Tom Tromey <tom@tromey.com>
15123 Pedro Alves <palves@redhat.com>
15124
15125 * infrun.c: Include "common/scope-exit.h"
15126 (delete_just_stopped_threads_infrun_breakpoints_cleanup): Remove.
15127 (wait_for_inferior): Use SCOPE_EXIT.
15128 (fetch_inferior_event): Use scope_exit.
15129
151302019-01-23 Tom Tromey <tom@tromey.com>
15131 Pedro Alves <palves@redhat.com>
15132
15133 * breakpoint.c (create_breakpoint): Remove cleanup.
15134
151352019-01-23 Tom Tromey <tom@tromey.com>
15136 Andrew Burgess <andrew.burgess@embecosm.com>
15137 Pedro Alves <palves@redhat.com>
15138
151392019-01-23 Pedro Alves <palves@redhat.com>
15140
15141 * gdbarch-selftests.c (struct on_exit): Use SCOPE_EXIT.
15142
151432019-01-23 Pedro Alves <palves@redhat.com>
15144 Andrew Burgess <andrew.burgess@embecosm.com>
15145
15146 * gdbthread.h: Include "common/forward-scope-exit.h".
15147 (scoped_finish_thread_state): Redefine custom class in terms of
15148 forward_scope_exit.
15149
151502019-01-23 Pedro Alves <palves@redhat.com>
15151 Andrew Burgess <andrew.burgess@embecosm.com>
15152
15153 * common/forward-scope-exit.h: New file.
15154
151552019-01-23 Pedro Alves <palves@redhat.com>
15156 Andrew Burgess <andrew.burgess@embecosm.com>
15157 Tom Tromey <tom@tromey.com>
15158
15159 * common/scope-exit.h: New file.
15160
151612019-01-23 Pedro Alves <palves@redhat.com>
15162
15163 * common/preprocessor.h (ESC): Rename to ...
15164 (ESC_PARENS): ... this.
15165 * common/valid-expr.h (CHECK_VALID_EXPR_1, CHECK_VALID_EXPR_2)
15166 (CHECK_VALID_EXPR_3, CHECK_VALID_EXPR_4): Adjust.
15167
151682019-01-23 Tom Tromey <tom@tromey.com>
15169
15170 * language.h (class scoped_switch_to_sym_language_if_auto):
15171 Initialize m_lang in both cases.
15172
151732019-01-23 Alan Hayward <alan.hayward@arm.com>
15174
15175 * nat/aarch64-linux.c (aarch64_linux_new_thread): Replace XNEW
15176 with XCNEW.
15177
151782019-01-22 Tom Tromey <tom@tromey.com>
15179
15180 * corelow.c: Do not include sys/file.h.
15181
151822019-01-22 Tom Tromey <tom@tromey.com>
15183
15184 * tui/tui-wingeneral.h: Include gdb_curses.h.
15185
151862019-01-22 Tom Tromey <tom@tromey.com>
15187
15188 * source-cache.h (class source_cache) <get_source_lines,
15189 get_plain_source_lines, extract_lines>: Rename "lines" parameter.
15190
151912019-01-22 Tom Tromey <tom@tromey.com>
15192
15193 * remote-fileio.h (struct remote_target): Declare.
15194
151952019-01-22 Tom Tromey <tom@tromey.com>
15196
15197 * python/py-arch.c: Do not include py-ref.h.
15198 * python/py-bpevent.c: Do not include py-ref.h.
15199 * python/py-cmd.c: Do not include py-ref.h.
15200 * python/py-continueevent.c: Do not include py-ref.h.
15201 * python/py-event.h: Do not include py-ref.h.
15202 * python/py-evtregistry.c: Do not include py-ref.h.
15203 * python/py-finishbreakpoint.c: Do not include py-ref.h.
15204 * python/py-frame.c: Do not include py-ref.h.
15205 * python/py-framefilter.c: Do not include py-ref.h.
15206 * python/py-function.c: Do not include py-ref.h.
15207 * python/py-infevents.c: Do not include py-ref.h.
15208 * python/py-linetable.c: Do not include py-ref.h.
15209 * python/py-objfile.c: Do not include py-ref.h.
15210 * python/py-param.c: Do not include py-ref.h.
15211 * python/py-prettyprint.c: Do not include py-ref.h.
15212 * python/py-progspace.c: Do not include py-ref.h.
15213 * python/py-symbol.c: Do not include py-ref.h.
15214 * python/py-symtab.c: Do not include py-ref.h.
15215 * python/py-type.c: Do not include py-ref.h.
15216 * python/py-unwind.c: Do not include py-ref.h.
15217 * python/py-utils.c: Do not include py-ref.h.
15218 * python/py-value.c: Do not include py-ref.h.
15219 * python/py-varobj.c: Do not include py-ref.h.
15220 * python/py-xmethods.c: Do not include py-ref.h.
15221 * python/python.c: Do not include py-ref.h.
15222 * varobj.c: Do not include py-ref.h.
15223
152242019-01-22 Tom Tromey <tom@tromey.com>
15225
15226 * objfiles.h (struct objfile_per_bfd_storage): Use "struct"
15227 keyword for bcache.
15228
152292019-01-22 Tom Tromey <tom@tromey.com>
15230
15231 * compile/compile-cplus-types.c: Remove a comment by #include.
15232
152332019-01-22 Tom Tromey <tom@tromey.com>
15234
15235 * compile/gcc-c-plugin.h: Include compile-internal.h.
15236
152372019-01-22 Tom Tromey <tom@tromey.com>
15238
15239 * stabsread.c (EXTERN): Do not define.
15240 (symnum, next_symbol_text_func, processing_gcc_compilation)
15241 (within_function, global_sym_chain, global_stabs)
15242 (previous_stab_code, this_object_header_files)
15243 (n_this_object_header_files)
15244 (n_allocated_this_object_header_files): Define.
15245 * stabsread.h (EXTERN): Never define. Use "extern".
15246
152472019-01-22 Philippe Waroquiers <philippe.waroquiers@skynet.be>
15248
15249 * event-top.c (handle_line_of_input): use unique_xmalloc_ptr for
15250 history_value.
15251
152522019-01-21 Tom Tromey <tom@tromey.com>
15253
15254 * ui-out.c: Fix includes.
15255 * tui/tui-source.c: Fix includes.
15256 * target.c: Fix includes.
15257 * remote.c: Fix includes.
15258 * regcache.c: Fix includes.
15259 * python/py-block.c: Fix includes.
15260 * printcmd.c: Fix includes.
15261 * or1k-tdep.c: Fix includes.
15262 * mi/mi-main.c: Fix includes.
15263 * m32r-tdep.c: Fix includes.
15264 * csky-tdep.c: Fix includes.
15265 * compile/compile-cplus-types.c: Fix includes.
15266 * cli/cli-interp.c: Fix includes.
15267
152682019-01-21 Alan Hayward <alan.hayward@arm.com>
15269
15270 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
15271 for padding.
15272
152732019-01-16 Tom Tromey <tom@tromey.com>
15274
15275 * objfiles.h (struct minimal_symbol_iterator): Rename. Move
15276 earlier.
15277 (struct objfile) <msymbols_range>: Move from top level.
15278 <msymbols>: New method.
15279 (class objfile_msymbols): Remove.
15280 * symtab.c (default_collect_symbol_completion_matches_break_on):
15281 Update.
15282 * symmisc.c (dump_msymbols): Update.
15283 * stabsread.c (scan_file_globals): Update.
15284 * objc-lang.c (info_selectors_command, info_classes_command)
15285 (find_methods): Update.
15286 * minsyms.c (find_solib_trampoline_target): Update.
15287 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Update.
15288 * coffread.c (coff_symfile_read): Update.
15289 * ada-lang.c (ada_lookup_simple_minsym)
15290 (ada_collect_symbol_completion_matches): Update.
15291
152922019-01-16 Tom Tromey <tom@tromey.com>
15293
15294 * objfiles.h (class objfile_msymbols) <iterator>: Change argument
15295 type. Remove no-argument constructor.
15296 <iterator::operator++>: Simplify.
15297 <begin>: Update.
15298 <end>: Use minimal_symbol_count.
15299
153002019-01-16 Tom Tromey <tom@tromey.com>
15301
15302 * objfiles.h (struct objfile) <psymtabs>: New method.
15303 (class objfile_psymtabs): Remove.
15304 * psymtab.h (class psymtab_storage) <partial_symtab_range>: New
15305 typedef.
15306 <range>: New method.
15307 (require_partial_symbols): Change return type.
15308 * psymtab.c (require_partial_symbols)
15309 (psym_expand_symtabs_matching): Update.
15310 * mdebugread.c (parse_partial_symbols): Update.
15311 * dbxread.c (dbx_end_psymtab): Update.
15312
153132019-01-15 Tom Tromey <tom@tromey.com>
15314
15315 * symtab.c (lookup_objfile_from_block)
15316 (lookup_symbol_in_objfile_symtabs)
15317 (basic_lookup_transparent_type_1, find_pc_sect_compunit_symtab)
15318 (find_line_symtab, info_sources_command)
15319 (default_collect_symbol_completion_matches_break_on)
15320 (make_source_files_completion_list): Update.
15321 * symmisc.c (print_objfile_statistics, dump_objfile)
15322 (maintenance_print_symbols, maintenance_info_symtabs)
15323 (maintenance_check_symtabs, maintenance_info_line_tables):
15324 Update.
15325 * source.c (select_source_symtab)
15326 (forget_cached_source_info_for_objfile): Update.
15327 * objfiles.h (class objfile_compunits): Remove.
15328 (struct objfile) <compunits_range>: New typedef.
15329 (compunits): New method.
15330 * objfiles.c (objfile_relocate1): Update.
15331 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
15332 * maint.c (count_symtabs_and_blocks): Update.
15333 * linespec.c (iterate_over_all_matching_symtabs): Update.
15334 * cp-support.c (add_symbol_overload_list_qualified): Update.
15335 * coffread.c (coff_symtab_read): Update.
15336 * ada-lang.c (add_nonlocal_symbols)
15337 (ada_collect_symbol_completion_matches)
15338 (ada_add_global_exceptions): Update.
15339
153402019-01-15 Tom Tromey <tom@tromey.com>
15341
15342 * progspace.h (program_space) <objfiles_safe_range>: New
15343 typedef.
15344 <objfiles_safe>: New method.
15345 * objfiles.h (class all_objfiles_safe): Remove.
15346 * objfiles.c (free_all_objfiles, objfile_purge_solibs): Update.
15347 * jit.c (jit_inferior_exit_hook): Update.
15348
153492019-01-17 Tom Tromey <tom@tromey.com>
15350
15351 * progspace.h (program_space) <objfiles_range>: New typedef.
15352 <objfiles>: New method.
15353 <objfiles_head>: Rename from objfiles.
15354 (object_files): Update.
15355 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Update.
15356 * guile/scm-pretty-print.c
15357 (ppscm_find_pretty_printer_from_objfiles): Update.
15358 * guile/scm-objfile.c (gdbscm_objfiles): Update.
15359 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers):
15360 Update.
15361 * python/py-progspace.c (pspy_get_objfiles): Update.
15362 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
15363 Update.
15364 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
15365 (objfpy_lookup_objfile_by_build_id): Update.
15366 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
15367 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
15368 Update.
15369 * symtab.c (iterate_over_symtabs, matching_obj_sections)
15370 (expand_symtab_containing_pc, lookup_objfile_from_block)
15371 (lookup_static_symbol, basic_lookup_transparent_type)
15372 (find_pc_sect_compunit_symtab, find_symbol_at_address)
15373 (find_line_symtab, info_sources_command)
15374 (default_collect_symbol_completion_matches_break_on)
15375 (make_source_files_completion_list, find_main_name): Update.
15376 * symmisc.c (print_symbol_bcache_statistics)
15377 (print_objfile_statistics, maintenance_print_symbols)
15378 (maintenance_print_msymbols, maintenance_print_objfiles)
15379 (maintenance_info_symtabs, maintenance_check_symtabs)
15380 (maintenance_expand_symtabs, maintenance_info_line_tables):
15381 Update.
15382 * symfile.c (remove_symbol_file_command, overlay_invalidate_all)
15383 (find_pc_overlay, find_pc_mapped_section, list_overlays_command)
15384 (map_overlay_command, unmap_overlay_command)
15385 (simple_overlay_update, expand_symtabs_matching)
15386 (map_symbol_filenames): Update.
15387 * symfile-debug.c (set_debug_symfile): Update.
15388 * spu-tdep.c (spu_overlay_update, spu_objfile_from_frame):
15389 Update.
15390 * source.c (select_source_symtab, forget_cached_source_info):
15391 Update.
15392 * solib.c (solib_read_symbols): Update.
15393 * solib-spu.c (append_ocl_sos): Update.
15394 * psymtab.c (maintenance_print_psymbols)
15395 (maintenance_info_psymtabs, maintenance_check_psymtabs): Update.
15396 * probe.c (parse_probes_in_pspace, find_probe_by_pc): Update.
15397 * printcmd.c (info_symbol_command): Update.
15398 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created):
15399 Update.
15400 * objfiles.h (class all_objfiles): Remove.
15401 * objfiles.c (have_partial_symbols, have_full_symbols)
15402 (have_minimal_symbols, qsort_cmp, update_section_map)
15403 (shared_objfile_contains_address_p)
15404 (default_iterate_over_objfiles_in_search_order): Update.
15405 * objc-lang.c (info_selectors_command, info_classes_command)
15406 (find_methods): Update.
15407 * minsyms.c (find_solib_trampoline_target): Update.
15408 * maint.c (maintenance_info_sections)
15409 (maintenance_translate_address, count_symtabs_and_blocks):
15410 Update.
15411 * main.c (captured_main_1): Update.
15412 * linux-thread-db.c (try_thread_db_load_from_pdir)
15413 (has_libpthread): Update.
15414 * linespec.c (iterate_over_all_matching_symtabs)
15415 (search_minsyms_for_name): Update.
15416 * jit.c (jit_find_objf_with_entry_addr): Update.
15417 * hppa-tdep.c (find_unwind_entry)
15418 (hppa_lookup_stub_minimal_symbol): Update.
15419 * gcore.c (gcore_create_callback, objfile_find_memory_regions):
15420 Update.
15421 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
15422 (elf_gnu_ifunc_resolve_by_got): Update.
15423 * dwarf2-frame.c (dwarf2_frame_find_fde): Update.
15424 * dwarf-index-write.c (save_gdb_index_command): Update.
15425 * cp-support.c (add_symbol_overload_list_qualified): Update.
15426 * breakpoint.c (create_overlay_event_breakpoint)
15427 (create_longjmp_master_breakpoint)
15428 (create_std_terminate_master_breakpoint)
15429 (create_exception_master_breakpoint): Update.
15430 * blockframe.c (find_pc_partial_function): Update.
15431 * ada-lang.c (ada_lookup_simple_minsym, add_nonlocal_symbols)
15432 (ada_collect_symbol_completion_matches)
15433 (ada_add_global_exceptions): Update.
15434
154352019-01-17 Tom Tromey <tom@tromey.com>
15436
15437 * solib-target.c (lm_info_target_p): Remove typedef. Don't
15438 declare VEC.
15439 (solib_target_parse_libraries): Change return type.
15440 (library_list_start_segment, library_list_start_section)
15441 (library_list_end_library, library_list_start_library); Update.
15442 (solib_target_free_library_list): Remove.
15443 (solib_target_parse_libraries): Remove cleanup. Change return
15444 type.
15445 (solib_target_current_sos): Update.
15446
154472019-01-17 Tom Tromey <tromey@bapiya>
15448
15449 * valprint.c: Replace "the the" with "the".
15450 * symtab.c: Replace "the the" with "the".
15451 * solib.c: Replace "the the" with "the".
15452 * solib-dsbt.c: Replace "the the" with "the".
15453 * linespec.c: Replace "the the" with "the".
15454 * dwarf2loc.h: Replace "the the" with "the".
15455 * amd64-windows-tdep.c: Replace "the the" with "the".
15456 * aarch64-tdep.c: Replace "the the" with "the".
15457
154582019-01-16 Keith Seitz <keiths@redhat.com>
15459
15460 PR gdb/23773
15461 * dwarf2read.c (dwarf2_cu) <ancestor>: New field.
15462 <builder>: Rename to ..
15463 <m_builder>: ... this and make private.
15464 (dwarf2_cu::get_builder): New method. Change all users of
15465 `builder' to use this method.
15466 (dwarf2_start_symtab): Move to ...
15467 (dwarf2_cu::start_symtab): ... here. Update all callers
15468 (setup_type_unit_groups): Move to ...
15469 (dwarf2_cu::setup_type_unit_groups): ... here. Update all
15470 callers.
15471 (dwarf2_cu::reset_builder): New method.
15472 (process_full_compunit, process_full_type_unit): Use
15473 dwarf2_cu::reset_builder.
15474 (follow_die_offset): Record the ancestor CU if it is different
15475 from the followed DIE's CU.
15476 (follow_die_sig_1): Likewise.
15477
154782019-01-15 Tom Tromey <tom@tromey.com>
15479
15480 * remote.c (class remote_state) <buf>: Now a char_vector.
15481 <buf_size>: Remove.
15482 (remote_target::getpkt): Change type of buf. Remove sizeof_buf
15483 parameter.
15484 (remote_target::getpkt_or_notif_sane_1)
15485 (remote_target::getpkt_sane)
15486 (remote_target::getpkt_or_notif_sane): Likewise.
15487 (class remote_target) <putpkt>: New overload.
15488 (remote_target::read_frame): Change type of "buf_p". Remove
15489 sizeof_p parameter.
15490 (packet_ok): New overload.
15491 (packet_check_result): New overload.
15492 Update all uses.
15493
154942019-01-14 Tom Tromey <tom@tromey.com>
15495
15496 * remote-notif.c (handle_notification, remote_notif_ack)
15497 (remote_notif_parse): Make "buf" const.
15498 * remote-notif.h (struct notif_client) <parse, ack>: Make "buf"
15499 const.
15500 (remote_notif_parse, remote_notif_ack, handle_notification):
15501 Likewise.
15502 * remote.c (remote_notif_stop_parse): Make "buf" const.
15503 (remote_target::remote_parse_stop_reply): Make "buf" const.
15504 (remote_notif_stop_ack): Make "buf" const.
15505
155062019-01-14 Tom Tromey <tom@tromey.com>
15507
15508 * remote.c (remote_console_output): Make parameter const.
15509
155102019-01-14 Tom Tromey <tom@tromey.com>
15511
15512 * target-debug.h (target_debug_print_signals): Constify.
15513 * nto-procfs.c (nto_procfs_target::pass_signals): Update.
15514 * procfs.c (procfs_target::pass_signals): Update.
15515 * linux-nat.c (linux_nat_target::pass_signals): Update.
15516 * linux-nat.h (class linux_nat_target) <pass_signals>: Update.
15517 * target-delegates.c: Rebuild.
15518 * remote.c (remote_target::program_signals): Update.
15519 (remote_target::pass_signals): Update.
15520 * target.c (target_pass_signals): Constify argument.
15521 (target_program_signals): Likewise.
15522 * target.h (struct target_ops) <pass_signals, program_signals>:
15523 Constify argument.
15524 (target_pass_signals, target_program_signals): Constify argument.
15525
155262019-01-14 Tom Tromey <tom@tromey.com>
15527
15528 PR tui/28819:
15529 * tui/tui-io.c (gdb_wgetch): Print \r when needed.
15530
155312019-01-14 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
15532
15533 * ppc-tdep.h (struct gdbarch_tdep) <ppc_v0_alias_regnum>: New
15534 field.
15535 * rs6000-tdep.c: Include reggroups.h.
15536 (IS_V_ALIAS_PSEUDOREG): Define.
15537 (rs6000_register_name): Return names for the "vX" aliases.
15538 (rs6000_pseudo_register_type): Return type for the "vX" aliases.
15539 (rs6000_pseudo_register_reggroup_p): Restore. Handle "vX"
15540 aliases. Call default_register_reggroup_p for all other
15541 pseudo-registers.
15542 (v_alias_pseudo_register_read, v_alias_pseudo_register_write):
15543 New functions.
15544 (rs6000_pseudo_register_read, rs6000_pseudo_register_write):
15545 Handle "vX" aliases.
15546 (v_alias_pseudo_register_collect): New function.
15547 (rs6000_ax_pseudo_register_collect): Handle "vX" aliases.
15548 (rs6000_gdbarch_init): Initialize "vX" aliases as
15549 pseudo-registers. Restore registration of
15550 rs6000_pseudo_register_reggroup_p with
15551 set_tdesc_pseudo_register_reggroup_p.
15552
155532019-01-13 Max Filippov <jcmvbkbc@gmail.com>
15554
15555 * xtensa-linux-tdep.c (xtensa_linux_init_abi): Update
15556 tdep->num_pseudo_regs. Add calls to set_gdbarch_num_regs and
15557 set_gdbarch_num_pseudo_regs.
15558
155592019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
15560
15561 * cli/cli-style.h (class cli_style_option): <add_setshow_commands>
15562 Remove arg prefixname, add do_set and do_show.
15563 Add member functions set_list and show_list.
15564 * cli/cli-style.c (class cli_style_option): Update accordingly.
15565 (style_set_list): Move to file scope.
15566 (style_show_list): Likewise.
15567 (set_style): Call help_list.
15568 (show_style): Call cmd_show_list.
15569 (_initialize_cli_style): New macro STYLE_ADD_SETSHOW_COMMANDS.
15570 Update to use the new macro.
15571
155722019-10-12 Joel Brobecker <brobecker@adacore.com>
15573
15574 * ada-lang.c (_initialize_ada_language): Expand the help text
15575 for the "catch exception" command.
15576
155772019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
15578
15579 * symtab.c (matching_obj_sections): Initialize obj,
15580 declare it closer to its usage.
15581
155822019-01-10 Tom Tromey <tom@tromey.com>
15583
15584 * thread-iter.h (inf_threads_iterator): Use next_iterator.
15585 (basic_inf_threads_range): Remove.
15586 (inf_threads_range, inf_non_exited_threads_range)
15587 (safe_inf_threads_range): Use next_adapter.
15588
155892019-01-10 Keith Seitz <keiths@redhat.com>
15590
15591 PR gdb/23712
15592 PR symtab/23010
15593 * dwarf2read.c (dw2_add_symbol_to_list): Remove.
15594 (fixup_go_packaging, new_symbol): Use add_symbol_to_list.
15595
155962019-01-10 Keith Seitz <keiths@redhat.com>
15597
15598 PR gdb/23712
15599 PR symtab/23010
15600 * dictionary.c (pending_to_vector): Remove.
15601 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
15602 Remove _1 suffix, replacing functions of the same name. Update
15603 all callers.
15604 (dict_create_hashed, dict_create_hashed_expandable)
15605 (dict_create_linear, dict_create_linear_expandable, dict_free)
15606 (dict_add_symbol, dict_add_pending, dict_size, dict_empty):
15607 Make functions static.
15608
156092019-01-10 Keith Seitz <keiths@redhat.com>
15610
15611 PR gdb/23712
15612 PR symtab/23010
15613 * dictionary.h (struct dictionary): Replace declaration with
15614 multidictionary.
15615 (dict_create_hashed, dict_create_hashed_expandable)
15616 (dict_create_linear, dict_create_linear_expandable)
15617 (dict_free, dict_add_symbol, dict_add_pending, dict_empty)
15618 (dict_iterator_first, dict_iterator_next, dict_iter_match_first)
15619 (dict_iter_match_next, dict_size): Rename to "mdict_" versions
15620 taking multidictionary argument.
15621 [ALL_DICT_SYMBOLS]: Update for multidictionary.
15622 * block.h (struct block) <dict>: Change to multidictionary
15623 and rename `multidict'.
15624 * block.c, buildsym.c, jit.c, mdebugread.c, objfiles.c,
15625 symmisc.c: Update all dictionary references to multidictionary.
15626
156272019-01-10 Keith Seitz <keiths@redhat.com>
15628
15629 PR gdb/23712
15630 PR symtab/23010
15631 * dictionary.c: Include unordered_map.
15632 (pending_to_vector): New function.
15633 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
15634 Rewrite the non-"_1" functions to take vector instead
15635 of linked list.
15636 (dict_create_hashed, dict_create_linear, dict_add_pending): Use the
15637 "new" _1 versions of the same name.
15638 (multidictionary): Define.
15639 (std::hash<enum language): New definition.
15640 (collate_pending_symbols_by_language, mdict_create_hashed)
15641 (mdict_create_hashed_expandable, mdict_create_linear)
15642 (mdict_create_linear_expandable, mdict_free)
15643 (find_language_dictionary, create_new_language_dictionary)
15644 (mdict_add_symbol, mdict_add_pending, mdict_iterator_first)
15645 (mdict_iterator_next, mdict_iter_match_first, mdict_iter_match_next)
15646 (mdict_size, mdict_empty): New functions.
15647 * dictionary.h (mdict_iterator): Define.
15648
156492019-01-10 Pedro Alves <palves@redhat.com>
15650
15651 * breakpoint.c (read_uploaded_action)
15652 (create_tracepoint_from_upload): Adjust to use
15653 gdb::unique_xmalloc_ptr.
15654 * ctf.c (ctf_write_uploaded_tp):
15655 (SET_ARRAY_FIELD): Use emplace_back.
15656 (SET_STRING_FIELD): Adjust to use gdb::unique_xmalloc_ptr.
15657 * tracefile-tfile.c (tfile_write_uploaded_tp):
15658 * tracepoint.c (parse_tracepoint_definition): Adjust to use
15659 gdb::unique_xmalloc_ptr.
15660 * tracepoint.h (struct uploaded_tp) <cond, actions, step_actions,
15661 at_string, cond_string, cmd_strings>: Replace char pointers
15662 with gdb::unique_xmalloc_ptr.
15663
156642019-01-10 Pedro Alves <palves@redhat.com>
15665
15666 * solib-target.c (library_list_start_library): Don't xstrdup name.
15667
156682019-01-10 Pedro Alves <palves@redhat.com>
15669
15670 * mdebugread.c (parse_partial_symbols): Use
15671 gdb::unique_xmalloc_ptr to manage heap-allocated 'stabsstring'.
15672
156732019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
15674
15675 * linux-fork.c (scoped_switch_fork_info)
15676 <~scoped_switch_fork_info>: Fix incorrect variable name.
15677
156782019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
15679
15680 * linux-fork.c (scoped_switch_fork_info)
15681 <scoped_switch_fork_info>: Make explicit.
15682 <~scoped_switch_fork_info>: Wrap core in TRY/CATCH.
15683
156842019-01-10 Tom Tromey <tom@tromey.com>
15685
15686 * objfiles.h (objfile::reset_psymtabs): Update.
15687 * objfiles.c (objfile::objfile): Update.
15688 * psymtab.h (psymtab_storage::obstack): Update.
15689 (psymtab_storage::m_obstack): Use gdb::optional.
15690 (class psymtab_storage): Update comment. Remove objfile
15691 parameter.
15692 * psymtab.c (psymtab_storage::psymtab_storage): Update.
15693
156942019-01-10 Tom Tromey <tom@tromey.com>
15695
15696 * psymtab.h (psymtab_storage::allocate_psymtab): New method.
15697 <free_psymtabs>: Now private.
15698 * psymtab.c (psymtab_storage::allocate_psymtab): Implement.
15699 (allocate_psymtab): Use new method.
15700
157012019-01-10 Tom Tromey <tom@tromey.com>
15702
15703 * xcoffread.c (xcoff_end_psymtab): Use allocate_dependencies.
15704 * psymtab.h (psymtab_storage::allocate_dependencies): New method.
15705 * mdebugread.c (parse_partial_symbols): Use
15706 allocate_dependencies.
15707 * dwarf2read.c (dwarf2_create_include_psymtab): Use
15708 allocate_dependencies.
15709 (process_psymtab_comp_unit_reader)
15710 (build_type_psymtab_dependencies): Likewise.
15711 * dbxread.c (dbx_end_psymtab): Use allocate_dependencies.
15712
157132019-01-10 Tom Tromey <tom@tromey.com>
15714
15715 * psymtab.c (add_psymbol_to_bcache): Pass psymtab obstack to
15716 PSYMBOL_SET_LANGUAGE.
15717 (allocate_psymtab): Allocate psymtab on the psymtab obstack.
15718
157192019-01-10 Tom Tromey <tom@tromey.com>
15720
15721 * psymtab.h (psymtab_storage::obstack): New method.
15722 <m_obstack>: Rename from obstack; now private.
15723 * psymtab.c (psymtab_storage): Update.
15724 * dwarf2read.c (create_addrmap_from_index)
15725 (create_addrmap_from_aranges, dwarf2_build_psymtabs_hard):
15726 Update.
15727
157282019-01-10 Tom Tromey <tom@tromey.com>
15729
15730 * symfile.c (reread_symbols): Call objfile->reset_psymtabs.
15731 * objfiles.h (objfile::reset_psymtabs): New method.
15732
157332019-01-10 Tom Tromey <tom@tromey.com>
15734
15735 * symmisc.c (print_symbol_bcache_statistics): Update.
15736 (print_objfile_statistics): Update.
15737 * symfile.c (reread_symbols): Update.
15738 * psymtab.h (class psymtab_storage): New.
15739 * psymtab.c (psymtab_storage): New constructor.
15740 (~psymtab_storage): New destructor.
15741 (require_partial_symbols): Update.
15742 (ALL_OBJFILE_PSYMTABS_REQUIRED): Rewrite.
15743 (find_pc_sect_psymtab, find_pc_sect_psymbol)
15744 (match_partial_symbol, lookup_partial_symbol, dump_psymtab)
15745 (psym_dump, recursively_search_psymtabs, psym_has_symbols)
15746 (psym_find_compunit_symtab_by_address, sort_pst_symbols)
15747 (start_psymtab_common, end_psymtab_common)
15748 (add_psymbol_to_bcache, add_psymbol_to_list, init_psymbol_list)
15749 (allocate_psymtab): Update.
15750 (psymtab_storage::discard_psymtab): Rename from discard_psymtab.
15751 Update.
15752 (dump_psymtab_addrmap, maintenance_print_psymbols)
15753 (maintenance_check_psymtabs): Update.
15754 (class objfile_psymtabs): Move to objfiles.h.
15755 * psympriv.h (discard_psymtab): Now inline.
15756 (psymtab_discarder::psymtab_discarder): Update.
15757 (psymtab_discarder::~psymtab_discarder): Update.
15758 (ALL_OBJFILE_PSYMTABS): Rewrite.
15759 * objfiles.h (struct objfile) <psymtabs, psymtabs_addrmap,
15760 free_psymtabs, psymbol_cache, global_psymbols, static_psymbols>:
15761 Remove fields.
15762 <partial_symtabs>: New field.
15763 (class objfile_psymtabs): Move from psymtab.h. Update.
15764 * objfiles.c (objfile::objfile): Initialize partial_symtabs, not
15765 psymbol_cache.
15766 (objfile::~objfile): Don't destroy psymbol_cache.
15767 * mdebugread.c (parse_partial_symbols): Update.
15768 * dwarf2read.c (create_addrmap_from_index)
15769 (create_addrmap_from_aranges, dw2_find_pc_sect_compunit_symtab)
15770 (process_psymtab_comp_unit_reader, dwarf2_build_psymtabs_hard)
15771 (add_partial_subprogram, dwarf2_ranges_read): Update.
15772 * dwarf-index-write.c (write_address_map)
15773 (write_one_signatured_type, recursively_write_psymbols)
15774 (class debug_names, class debug_names, write_psymtabs_to_index):
15775 Update.
15776
157772019-01-10 Tom Tromey <tom@tromey.com>
15778
15779 * symtab.h (SYMBOL_SET_NAMES): Update.
15780 (symbol_set_names): Update.
15781 (MSYMBOL_SET_NAMES): Update.
15782 * symtab.c (symbol_set_names): Change argument to be an
15783 objfile_per_bfd_storage.
15784 * psymtab.c (add_psymbol_to_bcache): Update.
15785 * psympriv.h (PSYMBOL_SET_NAMES): Take per_bfd argument.
15786
157872019-01-10 Tom Tromey <tom@tromey.com>
15788
15789 * symtab.c (create_demangled_names_hash): Change argument to be an
15790 objfile_per_bfd_storage.
15791 (symbol_set_names): Update.
15792
157932019-01-10 Tom Tromey <tom@tromey.com>
15794
15795 * xcoffread.c (xcoff_initial_scan): Unconditionally call
15796 init_psymbol_list.
15797 * psymtab.c (init_psymbol_list): Do nothing if already called.
15798 * psympriv.h (init_psymbol_list): Add comment.
15799 * dwarf2read.c (dwarf2_build_psymtabs): Unconditionally call
15800 init_psymbol_list.
15801 * dbxread.c (dbx_symfile_read): Unconditionally call
15802 init_psymbol_list.
15803
158042019-01-10 Tom Tromey <tom@tromey.com>
15805
15806 * xcoffread.c (scan_xcoff_symtab): Update.
15807 * psymtab.c (add_psymbol_to_list): Replace "list" parameter with
15808 "where".
15809 * mdebugread.c (parse_partial_symbols)
15810 (handle_psymbol_enumerators): Update.
15811 * dwarf2read.c (add_partial_symbol, load_partial_dies): Update.
15812 * dbxread.c (read_dbx_symtab): Update.
15813 * psympriv.h (psymbol_placement): New enum.
15814 (add_psymbol_to_list): Update.
15815
158162019-01-10 Tom Tromey <tom@tromey.com>
15817
15818 * xcoffread.c (xcoff_start_psymtab): Remove global_psymbols and
15819 static_psymbols parameters.
15820 (scan_xcoff_symtab): Update.
15821 * psymtab.c (start_psymtab_common): Remove global_psymbols and
15822 static_psymbols parameters.
15823 * psympriv.h (start_psymtab_common): Update.
15824 * mdebugread.c (parse_partial_symbols): Update.
15825 * dwarf2read.c (create_partial_symtab): Update.
15826 * dbxread.c (read_dbx_symtab): Update.
15827 (start_psymtab): Remove global_psymbols and static_psymbols
15828 parameters.
15829
158302019-01-10 Tom Tromey <tom@tromey.com>
15831
15832 * xcoffread.c (xcoff_end_psymtab): Remove some initializations.
15833 * psymtab.c (allocate_psymtab): Add comment.
15834 * psympriv.h (allocate_psymtab): Add comment.
15835 * dwarf2read.c (dwarf2_create_include_psymtab): Remove some
15836 initializations.
15837 * dbxread.c (dbx_end_psymtab): Remove some initializations.
15838
158392019-01-10 Tom Tromey <tom@tromey.com>
15840
15841 * symfile.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
15842 Don't declare.
15843 * mipsread.c: Include mdebugread.h.
15844 * mdebugread.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
15845 Declare.
15846 * elfread.c: Include mdebugread.h.
15847
158482019-01-09 Tom Tromey <tom@tromey.com>
15849
15850 * dbxread.c (dbx_end_psymtab): Use objfile_psymtabs.
15851 * mdebugread.c (parse_partial_symbols): Use objfile_psymtabs.
15852 * psymtab.c (ALL_OBJFILE_PSYMTABS_REQUIRED): Remove.
15853 (psym_map_symtabs_matching_filename, find_pc_sect_psymtab)
15854 (psym_lookup_symbol, psym_find_last_source_symtab)
15855 (psym_forget_cached_source_info, psym_print_stats)
15856 (psym_expand_symtabs_for_function, psym_expand_all_symtabs)
15857 (psym_expand_symtabs_with_fullname, psym_map_symbol_filenames)
15858 (psym_map_matching_symbols, psym_expand_symtabs_matching)
15859 (psym_find_compunit_symtab_by_address)
15860 (maintenance_print_psymbols, maintenance_info_psymtabs)
15861 (maintenance_check_psymtabs): Use ranged for.
15862 * psymtab.h (class objfile_psymtabs): New.
15863 (require_partial_symbols): Return objfile_psymtabs.
15864 * psympriv.h (ALL_OBJFILE_PSYMTABS): Remove.
15865
158662019-01-09 Tom Tromey <tom@tromey.com>
15867
15868 * symfile.c (overlay_invalidate_all, find_pc_overlay)
15869 (find_pc_mapped_section, list_overlays_command)
15870 (map_overlay_command, unmap_overlay_command)
15871 (simple_overlay_update): Use all_objfiles.
15872 * spu-tdep.c (spu_overlay_update): Use all_objfiles.
15873 * printcmd.c (info_symbol_command): Use all_objfiles.
15874 * objfiles.h (ALL_OBJSECTIONS): Remove.
15875 * maint.c (maintenance_translate_address): Use all_objfiles.
15876 * gcore.c (gcore_create_callback): Use all_objfiles.
15877 (objfile_find_memory_regions): Likewise.
15878
158792019-01-09 Tom Tromey <tom@tromey.com>
15880
15881 * symtab.c (find_line_symtab, info_sources_command)
15882 (make_source_files_completion_list): Use objfile_compunits.
15883 * source.c (select_source_symtab): Use objfile_compunits.
15884 * objfiles.h (struct objfile): Update comment.
15885 (ALL_OBJFILES): Remove.
15886 (ALL_FILETABS): Remove.
15887 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Use
15888 objfile_compunits.
15889
158902019-01-09 Tom Tromey <tom@tromey.com>
15891
15892 * symmisc.c (print_objfile_statistics, dump_objfile)
15893 (maintenance_print_symbols): Use compunit_filetabs.
15894 * source.c (forget_cached_source_info_for_objfile): Use
15895 compunit_filetabs.
15896 * objfiles.h (ALL_OBJFILE_FILETABS): Remove.
15897 (ALL_FILETABS): Use compunit_filetabs.
15898 * objfiles.c (objfile_relocate1): Use compunit_filetabs.
15899 * coffread.c (coff_symtab_read): Use compunit_filetabs.
15900
159012019-01-09 Tom Tromey <tom@tromey.com>
15902
15903 * symtab.h (ALL_COMPUNIT_FILETABS): Remove.
15904 (compunit_filetabs): New.
15905 * symtab.c (iterate_over_some_symtabs, find_pc_sect_line): Use
15906 compunit_filetabs.
15907 (info_sources_command, make_source_files_completion_list): Remove
15908 declaration.
15909 * symmisc.c (print_objfile_statistics, dump_objfile)
15910 (maintenance_print_symbols): Remove declaration.
15911 (maintenance_info_symtabs): Use compunit_filetabs.
15912 (maintenance_info_line_tables): Likewise.
15913 * source.c (select_source_symtab): Change local variable name.
15914 (forget_cached_source_info_for_objfile): Remove declaration.
15915 * objfiles.h (ALL_OBJFILE_FILETABS): Use compunit_filetabs.
15916 * objfiles.c (objfile_relocate1): Remove declaration.
15917 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
15918 declaration.
15919 * maint.c (count_symtabs_and_blocks): Use compunit_filetabs.
15920 * coffread.c (coff_symtab_read): Remove declaration.
15921 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
15922 compunit_filetabs.
15923
159242019-01-09 Tom Tromey <tom@tromey.com>
15925
15926 * symtab.c (lookup_objfile_from_block)
15927 (find_pc_sect_compunit_symtab, search_symbols)
15928 (default_collect_symbol_completion_matches_break_on): Use
15929 objfile_compunits.
15930 * objfiles.h (ALL_COMPUNITS): Remove.
15931 * maint.c (count_symtabs_and_blocks): Use objfile_compunits.
15932 * cp-support.c (add_symbol_overload_list_qualified): Use
15933 objfile_compunits.
15934 * ada-lang.c (ada_collect_symbol_completion_matches)
15935 (ada_add_global_exceptions): Use objfile_compunits.
15936
159372019-01-09 Tom Tromey <tom@tromey.com>
15938
15939 * source.c (select_source_symtab)
15940 (forget_cached_source_info_for_objfile): Remove declaration.
15941 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
15942 declaration.
15943 * maint.c (count_symtabs_and_blocks): Remove declaration.
15944 * cp-support.c (add_symbol_overload_list_qualified): Remove
15945 declaration.
15946 * coffread.c (coff_symtab_read): Remove declaration.
15947 * symtab.c (lookup_symbol_in_objfile_symtabs)
15948 (basic_lookup_transparent_type_1): Use objfile_compunits.
15949 (lookup_objfile_from_block, find_pc_sect_compunit_symtab)
15950 (info_sources_command, search_symbols)
15951 (default_collect_symbol_completion_matches_break_on)
15952 (make_source_files_completion_list): Remove declaration.
15953 * ada-lang.c (add_nonlocal_symbols): Use objfile_compunits.
15954 (ada_collect_symbol_completion_matches)
15955 (ada_add_global_exceptions): Remove declaration.
15956 * linespec.c (iterate_over_all_matching_symtabs): Use
15957 objfile_compunits.
15958 * objfiles.h (ALL_OBJFILE_COMPUNITS): Remove.
15959 (class objfile_compunits): New.
15960 (ALL_COMPUNITS): Use objfile_compunits.
15961 * symmisc.c (print_objfile_statistics, maintenance_info_symtabs)
15962 (maintenance_check_symtabs, maintenance_info_line_tables): Use
15963 objfile_compunits.
15964 * objfiles.c (objfile_relocate1): Use objfile_compunits.
15965
159662019-01-09 Tom Tromey <tom@tromey.com>
15967
15968 * symtab.c (search_symbols)
15969 (default_collect_symbol_completion_matches_break_on): Use
15970 objfile_msymbols.
15971 * ada-lang.c (ada_lookup_simple_minsym)
15972 (ada_collect_symbol_completion_matches): Use objfile_msymbols.
15973 * minsyms.c (find_solib_trampoline_target): Use objfile_msymbols.
15974 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Use
15975 objfile_msymbols.
15976 * coffread.c (coff_symfile_read): Use objfile_msymbols.
15977 * symmisc.c (dump_msymbols): Use objfile_msymbols.
15978 * objc-lang.c (find_methods): Use objfile_msymbols.
15979 (info_selectors_command, info_classes_command): Likewise.
15980 * stabsread.c (scan_file_globals): Use objfile_msymbols.
15981 * objfiles.h (class objfile_msymbols): New.
15982 (ALL_OBJFILE_MSYMBOLS): Remove.
15983 (ALL_MSYMBOLS): Remove.
15984
159852019-01-09 Tom Tromey <tom@tromey.com>
15986
15987 * common/next-iterator.h (next_adapter): Add Iterator template
15988 parameter.
15989 * objfiles.h (ALL_OBJFILES_SAFE): Remove.
15990 (class all_objfiles_safe): New.
15991 * jit.c (jit_inferior_exit_hook): Use all_objfiles_safe.
15992 * objfiles.c (put_objfile_before): Update comment.
15993 (add_separate_debug_objfile): Likewise.
15994 (free_all_objfiles): Use all_objfiles_safe.
15995 (objfile_purge_solibs): Likewise.
15996
159972019-01-09 Tom Tromey <tom@tromey.com>
15998
15999 * symtab.c (iterate_over_symtabs, matching_obj_sections)
16000 (expand_symtab_containing_pc, lookup_static_symbol)
16001 (basic_lookup_transparent_type, find_pc_sect_compunit_symtab)
16002 (find_symbol_at_address, find_line_symtab, find_main_name): Use
16003 all_objfiles.
16004 * probe.c (find_probe_by_pc, collect_probes): Use all_objfiles.
16005 * breakpoint.c (create_overlay_event_breakpoint)
16006 (create_longjmp_master_breakpoint)
16007 (create_std_terminate_master_breakpoint)
16008 (create_exception_master_breakpoint): Use all_objfiles.
16009 * linux-thread-db.c (try_thread_db_load_from_pdir)
16010 (has_libpthread): Use all_objfiles.
16011 * ada-lang.c (add_nonlocal_symbols): Use all_objfiles.
16012 * linespec.c (iterate_over_all_matching_symtabs)
16013 (search_minsyms_for_name): Use all_objfiles.
16014 * maint.c (maintenance_info_sections): Use all_objfiles.
16015 * main.c (captured_main_1): Use all_objfiles.
16016 * spu-tdep.c (spu_objfile_from_frame): Use all_objfiles.
16017 * guile/scm-objfile.c (gdbscm_objfiles): Use all_objfiles.
16018 * guile/scm-pretty-print.c
16019 (ppscm_find_pretty_printer_from_objfiles): Use all_objfiles.
16020 * solib-spu.c (append_ocl_sos): Use all_objfiles.
16021 * symmisc.c (maintenance_print_symbols): Use all_objfiles.
16022 (maintenance_print_msymbols): Use all_objfiles.
16023 * source.c (select_source_symtab): Use all_objfiles.
16024 * jit.c (jit_find_objf_with_entry_addr): Use all_objfiles.
16025 * symfile.c (remove_symbol_file_command)
16026 (expand_symtabs_matching, map_symbol_filenames): Use
16027 all_objfiles.
16028 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created): Use
16029 all_objfiles.
16030 * dwarf2-frame.c (dwarf2_frame_find_fde): Use all_objfiles.
16031 * objc-lang.c (find_methods): Use all_objfiles.
16032 * objfiles.c (have_partial_symbols, have_full_symbols)
16033 (have_minimal_symbols, qsort_cmp)
16034 (default_iterate_over_objfiles_in_search_order): Use
16035 all_objfiles.
16036 * hppa-tdep.c (find_unwind_entry): Use all_objfiles.
16037 * psymtab.c (maintenance_print_psymbols): Use all_objfiles.
16038 (maintenance_check_psymtabs): Use all_objfiles.
16039 (ALL_PSYMTABS): Remove.
16040 * compile/compile-object-run.c (do_module_cleanup): Use
16041 all_objfiles.
16042 * blockframe.c (find_pc_partial_function): Use all_objfiles.
16043 * cp-support.c (add_symbol_overload_list_qualified): Use
16044 all_objfiles.
16045 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
16046 Use all_objfiles.
16047 * dwarf-index-write.c (save_gdb_index_command): Use all_objfiles.
16048 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): Use
16049 all_objfiles.
16050 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
16051 (objfpy_lookup_objfile_by_build_id): Use all_objfiles.
16052 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
16053 Uses all_objfiles.
16054 * solib.c (solib_read_symbols): Use all_objfiles
16055
160562019-01-09 Tom Tromey <tom@tromey.com>
16057
16058 * probe.c (parse_probes_in_pspace): Use all_objfiles.
16059 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Use
16060 all_objfiles.
16061 * objfiles.h (ALL_PSPACE_OBJFILES): Remove.
16062 * symmisc.c (print_symbol_bcache_statistics)
16063 (print_objfile_statistics, maintenance_print_objfiles)
16064 (maintenance_info_symtabs, maintenance_check_symtabs)
16065 (maintenance_expand_symtabs, maintenance_info_line_tables): Use
16066 all_objfiles.
16067 * source.c (forget_cached_source_info): Use all_objfiles.
16068 * symfile-debug.c (set_debug_symfile): Use all_objfiles.
16069 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
16070 (elf_gnu_ifunc_resolve_by_got): Use all_objfiles.
16071 * objfiles.c (update_section_map): Use all_objfiles.
16072 (shared_objfile_contains_address_p): Likewise.
16073 * psymtab.c (maintenance_info_psymtabs): Use all_objfiles.
16074 * python/py-progspace.c (pspy_get_objfiles): Use all_objfiles.
16075
160762019-01-09 Tom Tromey <tom@tromey.com>
16077
16078 * common/next-iterator.h: New file.
16079 * objfiles.h (class all_objfiles): New.
16080 (struct objfile_iterator): New.
16081
160822019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
16083
16084 * NEWS: Move the description of the changed "frame", "select-frame",
16085 and "info frame" commands to the Changed commands section.
16086
160872019-01-09 Simon Marchi <simon.marchi@ericsson.com>
16088
16089 * gdbtypes.c (check_stub_method_group): Remove handling of old
16090 mangling schemes.
16091 * linespec.c (find_methods): Likewise.
16092 * stabsread.c (read_member_functions): Likewise.
16093 * valops.c (search_struct_method): Likewise.
16094 (value_struct_elt_for_reference): Likewise.
16095 * NEWS: Mention this change.
16096
160972019-01-09 Andrew Burgess <andrew.burgess@embecosm.com>
16098
16099 * cli/cli-cmds.c (list_command): Pass a source_lines_range to
16100 print_source_lines.
16101 * source.c (print_source_lines_base): Update line number check.
16102 (print_source_lines): New function.
16103 (source_lines_range::source_lines_range): New function.
16104 * source.h (class source_lines_range): New class.
16105 (print_source_lines): New declaration.
16106
161072019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
16108
16109 * linespec.c (linespec_state_destructor): Free self->canonical_names.
16110
161112019-01-08 Tom Tromey <tom@tromey.com>
16112 Simon Marchi <simon.marchi@ericsson.com>
16113
16114 PR gdb/24060
16115 * ada-exp.y (DOLLAR_VARIABLE): Rename from SPECIAL_VARIABLE.
16116 * ada-lex.l (DOLLAR_VARIABLE): Likewise.
16117 * c-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
16118 * f-exp.y (DOLLAR_VARIABLE): Likewise.
16119 * m2-exp.y (DOLLAR_VARIABLE): Rename from INTERNAL_VAR.
16120 * p-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
16121
161222019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
16123
16124 * source.c (select_source_symtab): Move header comment to
16125 declaration in source.h.
16126 (forget_cached_source_info_for_objfile): Likewise.
16127 (forget_cached_source_info): Likewise.
16128 (identify_source_line): Likewise.
16129 * source.h (identify_source_line): Move declaration from symtab.h
16130 and add comment from source.c
16131 (print_source_lines): Likewise.
16132 (forget_cached_source_info_for_objfile): Likewise.
16133 (forget_cached_source_info): Likewise.
16134 (select_source_symtab): Likewise.
16135 (enum print_source_lines_flag): Move definition from symtab.h.
16136 * symtab.h (identify_source_line): Move declaration to source.h.
16137 (print_source_lines): Likewise.
16138 (forget_cached_source_info_for_objfile): Likewise.
16139 (forget_cached_source_info): Likewise.
16140 (select_source_symtab): Likewise.
16141 (enum print_source_lines_flag): Move definition to source.h.
16142 * tui/tui-hooks.c: Add 'source.h' include.
16143
161442019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
16145
16146 * source.c (print_source_lines_base): Handle requests to print
16147 reverse line number sequences, and guard against empty lines
16148 string.
16149
161502019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
16151
16152 * source.c (print_source_lines_base): Fix skip of '\r' if next
16153 character is '\n'.
16154
161552019-01-06 Tom Tromey <tom@tromey.com>
16156
16157 * c-exp.y (struct c_parse_state) <macro_original_text,
16158 expansion_obstack>: New member.
16159 (macro_original_text, expansion_obstack): Remove globals.
16160 (scan_macro_expansion, scanning_macro_expansion)
16161 (finished_macro_expansion): Update.
16162 (scan_macro_cleanup): Remove.
16163 (yylex, c_parse): Update.
16164
161652019-01-06 Tom Tromey <tom@tromey.com>
16166
16167 * c-exp.y (struct c_parse_state) <strings>: New member.
16168 (operator_stoken): Update.
16169
161702019-01-06 Tom Tromey <tom@tromey.com>
16171
16172 * parser-defs.h (type_ptr): Remove typedef. Don't declare VEC.
16173 (union type_stack_elt) <typelist_val>: Now a pointer to
16174 std::vector.
16175 (type_stack_cleanup): Don't declare.
16176 (push_typelist): Update.
16177 * parse.c (pop_typelist): Return a std::vector.
16178 (push_typelist): Take a std::vector.
16179 (follow_types): Update. Do not free args.
16180 (type_stack_cleanup): Remove.
16181 * c-exp.y (struct c_parse_state): New.
16182 (cpstate): New global.
16183 (type_aggregate_p, exp, ptr_operator, parameter_typelist)
16184 (nonempty_typelist): Update.
16185 (func_mod): Create a new vector.
16186 (c_parse): Create a c_parse_state.
16187 (check_parameter_typelist): Do not delete params.
16188 (function_method): Update. Do not delete type_list.
16189
161902019-01-06 Tom Tromey <tom@tromey.com>
16191
16192 PR gdb/28155:
16193 * python/py-finishbreakpoint.c (bpfinishpy_init): Use
16194 check_typedef.
16195 * infcmd.c (finish_command_fsm_should_stop): Use check_typedef.
16196 (print_return_value): Likewise.
16197
161982019-01-05 Tom Tromey <tom@tromey.com>
16199
16200 * contrib/cleanup_check.py: Remove.
16201 * contrib/gcc-with-excheck: Remove.
16202 * contrib/exsummary.py: Remove.
16203 * contrib/excheck.py: Remove.
16204
162052019-01-05 Joel Brobecker <brobecker@adacore.com>
16206
16207 * thread.c (delete_thread_1): Add gdb_assert that THR is not
16208 NULL. Initialize tpprev to NULL instead of assigning it
16209 to NULL on the next statement.
16210 * windows-nat.c (windows_delete_thread): Remove check for
16211 main_thread_id before printing thread exit notifications.
16212 (get_windows_debug_event) <EXIT_THREAD_DEBUG_EVENT>:
16213 Remove thread ID check against main_thread_id.
16214 <CREATE_PROCESS_DEBUG_EVENT>: Remove call to
16215 windows_delete_thread.
16216 <EXIT_PROCESS_DEBUG_EVENT>: Add call to windows_delete_thread.
16217
162182019-01-04 Tom Tromey <tom@tromey.com>
16219
16220 * compile/compile.c (_initialize_compile): Use upper case for
16221 metasyntactic variables.
16222 * symmisc.c (_initialize_symmisc): Use upper case for
16223 metasyntactic variables.
16224 * psymtab.c (_initialize_psymtab): Use upper case for
16225 metasyntactic variables.
16226 * demangle.c (demangle_command): Use upper case for metasyntactic
16227 variables.
16228 (_initialize_demangler): Likewise.
16229 * ax-gdb.c (_initialize_ax_gdb): Use upper case for metasyntactic
16230 variables.
16231
162322019-01-03 Tom Tromey <tom@tromey.com>
16233
16234 * tui/tui-source.c (tui_set_source_content): Use xstrdup.
16235
162362019-01-03 Tom Tromey <tom@tromey.com>
16237
16238 * python/py-symtab.c (salpy_str): Update.
16239 (struct salpy_sal_object) <symtab>: Now a PyObject.
16240 (salpy_dealloc): Update.
16241 (del_objfile_sal): Use gdbpy_ref.
16242
162432019-01-03 Tom Tromey <tom@tromey.com>
16244
16245 * python/py-type.c (convert_field): Use new_reference. Return
16246 gdbpy_ref.
16247 (make_fielditem): Return gdbpy_ref.
16248 (typy_fields): Update.
16249 (typy_getitem): Update.
16250 (field_name): Return gdbpy_ref. Use new_reference.
16251 (typy_iterator_iternext): Update.
16252
162532019-01-03 Tom Tromey <tom@tromey.com>
16254
16255 * python/py-record.c (gdbpy_stop_recording): Use Py_RETURN_NONE.
16256
162572019-01-03 Tom Tromey <tom@tromey.com>
16258
16259 * python/py-value.c (valpy_dealloc): Use Py_XDECREF.
16260 * python/py-type.c (typy_fields_items): Use gdbpy_ref.
16261 * python/py-progspace.c (pspy_set_printers): Use gdbpy_ref.
16262 (pspy_set_frame_filters, pspy_set_frame_unwinders)
16263 (pspy_set_type_printers): Likewise.
16264 * python/py-function.c (fnpy_init): Use gdbpy_ref.
16265 * python/py-cmd.c (cmdpy_init): Use gdbpy_ref.
16266 * python/py-objfile.c (objfpy_set_printers): Use gdbpy_ref.
16267 (objfpy_set_frame_filters, objfpy_set_frame_unwinders)
16268 (objfpy_set_type_printers): Likewise.
16269
162702019-01-03 Tom Tromey <tom@tromey.com>
16271
16272 * python/python.c (gdbpy_enter, ~gdbpy_enter): Update.
16273 (gdbpy_print_stack): Use gdbpy_err_fetch.
16274 * python/python-internal.h (class gdbpy_err_fetch): New class.
16275 (class gdbpy_enter) <m_error_type, m_error_value,
16276 m_error_traceback>: Remove.
16277 <m_error>: New member.
16278 (gdbpy_exception_to_string): Don't declare.
16279 * python/py-varobj.c (py_varobj_iter_next): Use gdbpy_err_fetch.
16280 * python/py-value.c (convert_value_from_python): Use
16281 gdbpy_err_fetch.
16282 * python/py-utils.c (gdbpy_err_fetch::to_string): Rename from
16283 gdbpy_exception_to_string.
16284 (gdbpy_handle_exception): Use gdbpy_err_fetch.
16285 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
16286 gdbpy_err_fetch.
16287
162882019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
16289
16290 * linux-nat.c (delete_lwp_cleanup): Delete.
16291 (struct lwp_deleter): New struct.
16292 (lwp_info_up): New typedef.
16293 (linux_nat_target::follow_fork): Delete cleanup, and make use of
16294 lwp_info_up.
16295
162962019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
16297
16298 * linux-fork.c (class scoped_switch_fork_info): New class.
16299 (inferior_call_waitpid): Update to use scoped_switch_fork_info.
16300
163012019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
16302
16303 * valops.c (find_overload_match): Remove use of null_cleanup, and
16304 calls to do_cleanups.
16305
163062019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
16307
16308 * compile/compile-cplus-types.c
16309 (compile_cplus_instance::decl_name): Handle changes to
16310 cp_func_name.
16311 * cp-support.c (cp_func_name): Update header comment, update
16312 return type.
16313 * cp-support.h (cp_func_name): Update return type in declaration.
16314 * valops.c (find_overload_match): Move temp_func local to top
16315 level of function and change its type. Use temp_func to hold and
16316 delete temporary string obtained from cp_func_name.
16317
163182019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
16319
16320 * remote.c (remote_target::remote_check_symbols): Convert `msg` to
16321 gdb::char_vector, remove cleanup, and update uses of `msg`.
16322
163232019-01-03 Jim Wilson <jimw@sifive.com>
16324
16325 * riscv-tdep.c (riscv_freg_feature): Drop s0 name from f8.
16326
163272019-01-02 Tom Tromey <tom@tromey.com>
16328
16329 * xml-tdesc.c (xml_cache): Hold a target_desc_up.
16330 (tdesc_parse_xml): Remove cleanups.
16331 * target-descriptions.h (make_cleanup_free_target_description):
16332 Don't declare.
16333 (target_desc_deleter): New struct.
16334 (target_desc_up): New typedef.
16335 * target-descriptions.c (target_desc_deleter::operator()): Rename
16336 from free_target_description.
16337 (make_cleanup_free_target_description): Remove.
16338
163392019-01-02 Tom Tromey <tom@tromey.com>
16340
16341 * linespec.c (struct linespec_parser): Rename from ls_parser. Add
16342 constructor, destructor.
16343 (linespec_parser): Remove typedef.
16344 (~linespec_parser): Rename from linespec_parser_delete.
16345 (linespec_lex_to_end, linespec_complete_label)
16346 (linespec_complete): Update.
16347 (decode_line_full): Remove cleanups.
16348 (decode_line_1): Update.
16349
163502019-01-02 Tom Tromey <tom@tromey.com>
16351
16352 * python/python-internal.h (inferior_to_inferior_object): Change
16353 return type.
16354 * python/py-exitedevent.c (create_exited_event_object): Update.
16355 * python/py-inferior.c (inferior_to_inferior_object): Return
16356 gdbpy_ref.
16357 (python_new_inferior, python_inferior_deleted)
16358 (thread_to_thread_object, delete_thread_object)
16359 (build_inferior_list, gdbpy_selected_inferior): Update.
16360 * python/py-infthread.c (create_thread_object): Update. Also fail
16361 if inferior_to_inferior_object fails.
16362
163632019-01-02 Simon Marchi <simon.marchi@ericsson.com>
16364
16365 * inferior.h (class inferior) <displaced_step_state>: New field.
16366 * infrun.h (struct displaced_step_state): Move here from
16367 infrun.c. Initialize fields, add constructor.
16368 <inf>: Remove field.
16369 <reset>: New method.
16370 * infrun.c (struct displaced_step_inferior_state): Move to
16371 infrun.h.
16372 (displaced_step_inferior_states): Remove.
16373 (get_displaced_stepping_state): Adust.
16374 (displaced_step_in_progress_any_inferior): Adjust.
16375 (displaced_step_in_progress_thread): Adjust.
16376 (displaced_step_in_progress): Adjust.
16377 (add_displaced_stepping_state): Remove.
16378 (get_displaced_step_closure_by_addr): Adjust.
16379 (remove_displaced_stepping_state): Remove.
16380 (infrun_inferior_exit): Call displaced_step_state.reset.
16381 (use_displaced_stepping): Don't check for NULL.
16382 (displaced_step_prepare_throw): Call
16383 get_displaced_stepping_state.
16384 (displaced_step_fixup): Don't check for NULL.
16385 (prepare_for_detach): Don't check for NULL.
16386
163872019-01-02 Philippe Waroquiers <philippe.waroquiers@skynet.be>
16388
16389 * infcall.c (call_function_by_hand_dummy): cleanup/destroy sm
16390 in case of call that did not complete.
16391
163922019-01-02 Andrey Utkin <autkin@undo.io>
16393
16394 * symfile.c (find_separate_debug_file): Fix search of debug files for
16395 remote debuggee.
16396
163972019-01-02 Tom Tromey <tom@tromey.com>
16398
16399 * python/py-inferior.c (gdbpy_initialize_inferior): Fix
16400 indentation.
16401 * python/py-frame.c (frapy_older): Remove cast.
16402 (frapy_newer): Likewise.
16403 * python/py-breakpoint.c (local_setattro): Remove cast.
16404 * python/py-arch.c (archpy_name): Remove local variable.
16405 * python/py-type.c (gdbpy_lookup_type): Remove cast.
16406
164072019-01-02 Joel Brobecker <brobecker@adacore.com>
16408
16409 * unittests/basic_string_view/element_access/char/empty.cc:
16410 Fix year range in copyright header.
16411
164122019-01-01 Andrew Burgess <andrew.burgess@embecosm.com>
16413
16414 * arch/riscv.h (struct riscv_gdbarch_features) <hw_float_abi>:
16415 Delete.
16416 <operator==>: Update with for removed field.
16417 <hash>: Likewise.
16418 * riscv-tdep.h (struct gdbarch_tdep) <features>: Renamed to...
16419 <isa_features>: ...this.
16420 <abi_features>: New field.
16421 (riscv_isa_flen): Update comment.
16422 (riscv_abi_xlen): New declaration.
16423 (riscv_abi_flen): New declaration.
16424 * riscv-tdep.c (riscv_isa_xlen): Update to get answer from
16425 isa_features.
16426 (riscv_abi_xlen): New function.
16427 (riscv_isa_flen): Update to get answer from isa_features.
16428 (riscv_abi_flen): New function.
16429 (riscv_has_fp_abi): Update to get answer from abi_features.
16430 (riscv_call_info::riscv_call_info): Use abi xlen and flen, not isa
16431 xlen and flen.
16432 (riscv_call_info) <xlen, flen>: Update comment.
16433 (riscv_call_arg_struct): Remove invalid assertions
16434 (riscv_features_from_gdbarch_info): Update now hw_float_abi field
16435 is removed.
16436 (riscv_gdbarch_init): Gather isa features and abi features
16437 separately, ensure both match on the gdbarch when reusing an old
16438 gdbarch. Relax an error check to allow 32-bit abi float to run on
16439 a target with 64-bit float hardware.
16440
164412019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
16442
16443 * source.c (search_command_helper): Stop reverse search
16444 when line 1 has been searched.
16445
164462019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
16447
16448 * record-full.c (record_full_base_target::close): Rewrite
16449 record_full_core_buf_list free logic.
16450
164512019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
16452
16453 * break-catch-syscall.c (print_one_catch_syscall): xfree
16454 the last text.
16455
164562019-01-01 Joel Brobecker <brobecker@adacore.com>
16457
16458 * top.c (print_gdb_version): Update Copyright year in version
16459 message.
16460
164612019-01-01 Joel Brobecker <brobecker@adacore.com>
16462
16463 Update copyright year range in all GDB files.
16464
164652019-01-01, 19 Joel Brobecker <brobecker@adacore.com>
16466
16467 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2018.
16468
16469For older changes see ChangeLog-2018.
16470\f
16471Local Variables:
16472mode: change-log
16473left-margin: 8
16474fill-column: 74
16475version-control: never
16476coding: utf-8
16477End:
16478
This page took 0.101198 seconds and 4 git commands to generate.