Remove MULTI_OBJFILE_P
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2019-12-12 Tom Tromey <tom@tromey.com>
2
3 * progspace.c (program_space::multi_objfile_p): New method.
4 * printcmd.c (info_symbol_command): Update.
5 * maint.c (maintenance_translate_address): Update.
6 * objfiles.h (MULTI_OBJFILE_P): Remove.
7 * progspace.h (struct program_space) <multi_objfile_p>: New
8 method.
9
10 2019-12-12 Tom Tromey <tom@tromey.com>
11
12 * progspace.h (struct program_space) <remove_objfile>: Declare.
13 * progspace.c (program_space::remove_objfile): New method.
14 * objfiles.c (unlink_objfile): Remove.
15 (objfile::unlink): Call remove_objfile.
16 (objfile): Don't call unlink_objfile.
17
18 2019-12-12 Tom Tromey <tom@tromey.com>
19
20 * progspace.h (struct program_space) <add_objfile>: Declare
21 method.
22 * progspace.c (program_space::add_objfile): New method.
23 * objfiles.c (~objfile): Don't unlink objfile.
24 (put_objfile_before): Remove.
25 (add_separate_debug_objfile): Don't call put_objfile_before.
26 (objfile::make): Call add_objfile. Set new_objfiles_available on
27 the per-program-space data.
28
29 2019-12-12 Tom Tromey <tom@tromey.com>
30
31 * symfile.c (syms_from_objfile_1): Use objfile_up.
32 (syms_from_objfile_1, remove_symbol_file_command): Call unlink
33 method.
34 (reread_symbols): Use objfile_up.
35 * solib.c (update_solib_list, reload_shared_libraries_1): Call
36 unlink method.
37 * objfiles.h (struct objfile) <~objfile>: Now private.
38 <unlink>: New method.
39 (struct objfile_deleter): New.
40 (objfile_up): New typedef.
41 * objfiles.c (objfile::unlink): New method.
42 (free_objfile_separate_debug, free_all_objfiles)
43 (objfile_purge_solibs): Use it.
44 * jit.c (jit_unregister_code): Remove.
45 (jit_inferior_exit_hook, jit_event_handler): Call unlink on
46 objfile.
47 * compile/compile-object-run.c (do_module_cleanup): Call unlink on
48 objfile.
49 * compile/compile-object-load.c (compile_object_load): Use
50 objfile_up.
51
52 2019-12-12 Tom Tromey <tom@tromey.com>
53
54 * symfile.c (symbol_file_add_with_addrs): Pass "parent" to
55 objfile::make.
56 * objfiles.h (struct objjfile) <make>: No longer inline.
57 (add_separate_debug_objfile): Don't declare.
58 * objfiles.c (add_separate_debug_objfile): Now static.
59 (objfile::make): Move from objfiles.h. Call
60 add_separate_debug_objfile. Add "parent" parameter.
61
62 2019-12-12 Tom Tromey <tom@tromey.com>
63
64 * symfile.c (symbol_file_add_with_addrs): Use objfile::make.
65 * objfiles.h (struct objfile): Make constructor private.
66 <make>: New static method.
67 * jit.c (jit_object_close_impl): Update.
68
69 2019-12-12 Simon Marchi <simon.marchi@polymtl.ca>
70
71 * jit.c (jit_reader_try_read_symtab): Replace xmalloc/xfree with
72 gdb::byte_vector.
73
74 2019-12-12 Tom Tromey <tromey@adacore.com>
75
76 * xml-support.c (xml_fetch_content_from_file): Don't call
77 malloc_failure.
78 * utils.h (class gdb_argv): Remove malloc_failure comment.
79 * utils.c (gdb_argv::reset): Don't call malloc_failure.
80
81 2019-12-12 Tom Tromey <tromey@adacore.com>
82
83 * Makefile.in (ALL_TARGET_OBS): Add riscv-ravenscar-thread.o.
84 (HFILES_NO_SRCDIR): Add riscv-ravenscar-thread.h.
85 (ALLDEPFILES): Add riscv-ravenscar-thread.c.
86 * configure.tgt (riscv-*-*): Add riscv-ravenscar-thread.o.
87 * riscv-ravenscar-thread.c: New file.
88 * riscv-ravenscar-thread.h: New file.
89 * riscv-tdep.c (riscv_gdbarch_init): Call
90 register_riscv_ravenscar_ops.
91
92 2019-12-12 Tom Tromey <tromey@adacore.com>
93
94 * gdbsupport/thread-pool.c (set_thread_name): Use
95 ATTRIBUTE_UNUSED.
96
97 2019-12-12 Luis Machado <luis.machado@linaro.org>
98
99 * gdbsupport/safe-strerror.c: Don't include diagnostics.h.
100 (select_strerror_r): Use ATTRIBUTE_UNUSED instead of the diagnostics
101 macros.
102
103 2019-12-11 Tom Tromey <tom@tromey.com>
104
105 * tui/tui-win.c (tui_set_win_height_command): Call
106 tui_adjust_window_height.
107 (tui_adjust_win_heights, new_height_ok): Remove.
108 * tui/tui-layout.h (tui_adjust_window_height): Declare.
109 * tui/tui-layout.c (tui_adjust_window_height): New function.
110
111 2019-12-11 Tom Tromey <tom@tromey.com>
112
113 * tui/tui-win.c (tui_resize_all): Remove code, call
114 tui_apply_current_layout.
115
116 2019-12-11 Tom Tromey <tom@tromey.com>
117
118 * tui/tui-layout.h (tui_apply_current_layout): Declare.
119 * tui/tui-layout.c (standard_layouts, applied_layout): New
120 globals.
121 (tui_apply_current_layout): New function.
122 (show_layout): Set applied_layout. Call
123 tui_apply_current_layout.
124 (show_source_command, show_disasm_command)
125 (show_source_disasm_command, show_data)
126 (show_source_or_disasm_and_command): Remove.
127 (initialize_layouts): New function.
128 (_initialize_tui_layout): Call initialize_layouts.
129
130 2019-12-11 Tom Tromey <tom@tromey.com>
131
132 * tui/tui-layout.h (class tui_layout_base)
133 (class tui_layout_window, class tui_layout_split): New.
134 * tui/tui-layout.c (tui_get_window_by_name)
135 (tui_layout_window::clone, tui_layout_window::apply)
136 (tui_layout_window::get_sizes, tui_layout_window::add_split)
137 (tui_layout_split::add_window, tui_layout_split::clone)
138 (tui_layout_split::get_sizes)
139 (tui_layout_split::set_weights_from_heights)
140 (tui_layout_split::adjust_size, tui_layout_split::apply): New
141 functions.
142 (tui_layout_split::add_split, tui_layout_split::add_split)
143 (tui_layout_split::set_weights_from_heights)
144 (tui_layout_split::set_weights_from_heights): New functions.
145
146 2019-12-11 Tom Tromey <tom@tromey.com>
147
148 * tui/tui-wingeneral.c (tui_gen_win_info::make_window): Update.
149 * tui/tui-win.c (tui_adjust_win_heights, tui_resize_all): Update.
150 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
151 * tui/tui-data.h (struct tui_point): Remove.
152 (struct tui_gen_win_info) <origin>: Remove.
153 <x, y>: New fields.
154 * tui/tui-command.c (tui_cmd_window::resize): Update.
155
156 2019-12-11 Tom Tromey <tom@tromey.com>
157
158 * tui/tui-stack.h (struct tui_locator_window) <min_height>:
159 Implement.
160 * tui/tui-regs.h (struct tui_data_item_window) <min_height>:
161 Implement.
162 * tui/tui-data.h (struct tui_gen_win_info) <min_height>: New
163 method.
164 (struct tui_win_info) <min_height>: Implement.
165
166 2019-12-11 Tom Tromey <tom@tromey.com>
167
168 * tui/tui-data.h (struct tui_gen_win_info) <can_box>: New method.
169 (struct tui_win_info) <can_box>: Update.
170
171 2019-12-11 Tom Tromey <tom@tromey.com>
172
173 * tui/tui-stack.h (struct tui_locator_window) <max_height>: New
174 method.
175 * tui/tui-regs.h (struct tui_data_item_window) <max_height>: New
176 method.
177 * tui/tui-data.h (struct tui_gen_win_info) <max_height>: New
178 method.
179 (struct tui_win_info) <max_height>: Now override.
180
181 2019-12-11 Joel Brobecker <brobecker@adacore.com>
182
183 * NEWS: Create a new section for the next release branch.
184 Rename the section of the current branch, now that it has
185 been cut.
186
187 2019-12-11 Joel Brobecker <brobecker@adacore.com>
188
189 GDB 9 branch created (27f7b2f64062ac9e52afc60509263c2702a9ebd0):
190 * version.in: Bump version to 10.0.50.DATE-git.
191
192 2019-12-11 Tom Tromey <tromey@adacore.com>
193
194 PR build/25268:
195 * gdbsupport/thread-pool.c (set_thread_name): New function.
196 (thread_pool::set_thread_count): Don't call pthread_setname_np.
197 (thread_pool::thread_function): Call set_thread_name.
198
199 2019-12-11 Tom Tromey <tromey@adacore.com>
200
201 * fbsd-tdep.c (fbsd_core_info_proc_status): Cast result of
202 bfd_get_signed_8.
203
204 2019-12-11 Philippe Waroquiers <philippe.waroquiers@skynet.be>
205
206 * NEWS: Document -raw-values option and the related setting commands.
207 * printcmd.c (print_command_parse_format): Do not set opts->raw off,
208 only set it on when /r is given.
209 * valprint.c (value_print_option_defs): New element raw-values.
210 * Makefile.in: Add the new file.
211
212 2019-12-10 Christian Biesinger <cbiesinger@google.com>
213
214 * gdbsupport/safe-strerror.c: Supress the unused function warning
215 for select_strerror_r.
216
217 2019-12-10 Christian Biesinger <cbiesinger@google.com>
218
219 * config.in: Regenerate.
220 * configure: Regenerate.
221 * gdbsupport/agent.c (gdb_connect_sync_socket): Call
222 safe_strerror instead of strerror.
223 * gdbsupport/common.m4: Don't check for strerror.
224 * gdbsupport/safe-strerror.c: Support both the glibc version
225 of strerror_r and the XSI version.
226
227 2019-12-10 Tom Tromey <tromey@adacore.com>
228
229 * ada-typeprint.c (print_choices): Use a single "?".
230 (print_variant_part): Print "?" if the discriminant name
231 is not known.
232
233 2019-12-10 George Barrett <bob@bob131.so>
234
235 Fix scripted probe breakpoints.
236 * breakpoint.c (tracepoint_probe_breakpoint_ops): Move
237 declaration forward.
238 (breakpoint_ops_for_event_location_type)
239 (breakpoint_ops_for_event_location): Add function definitions.
240 (break_command_1, trace_command): Use
241 breakpoint_ops_for_event_location.
242 * breakpoint.h (breakpoint_ops_for_event_location): Add function
243 declarations.
244 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Use
245 breakpoint_ops_for_event_location.
246 * python/py-breakpoint.c (bppy_init): Use
247 breakpoint_ops_for_event_location.
248
249 2019-12-09 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
250
251 * gdbtypes.c (rank_one_type): Return INCOMPATIBLE_TYPE_BADNESS
252 when ranking an lvalue argument for an rvalue parameter.
253
254 2019-12-08 Wataru Ashihara <wataash@wataash.com>
255
256 * darwin-nat.c (darwin_nat_target::create_inferior): Fix
257 template argument for scoped_restore_tmpl from bool to int.
258
259 2019-12-07 Keith Seitz <keiths@redhat.com>
260
261 * build-id.c (build_id_bfd_get): Permit bfd_core, too.
262 (build_id_to_debug_bfd): Make static, rewriting to use
263 build_id_to_bfd_suffix.
264 (build_id_to_bfd_suffix): Copy of build_id_to_debug_bfd,
265 adding `suffix' parameter. Append SUFFIX to file names
266 when searching for matching files.
267 (build_id_to_debug_bfd): Use build_id_to_bfd_suffix.
268 (build_id_to_exec_bfd): Likewise.
269 * build-id.h (build_id_to_debug_bfd): Clarify that function
270 searches for BFD of debug info file.
271 (build_id_to_exec_bfd): Declare.
272 * corelow.c: Include build-id.h.
273 (locate_exec_from_corefile_build_id): New function.
274 (core_target_open): If no executable BFD is found,
275 search for a core file BFD using build-id.
276
277 2019-12-06 Christian Biesinger <cbiesinger@google.com>
278
279 * bcache.c: Put in namespace gdb.
280 * bcache.h: Likewise.
281 * gdbtypes.c (check_types_worklist): Update.
282 (types_deeply_equal): Update.
283 * macrotab.c (struct macro_table) <bcache>: Update.
284 (new_macro_table): Update.
285 * macrotab.h (struct bcache): Put this forward declaration
286 inside namespace gdb.
287 (new_macro_table): Update.
288 * objfiles.h (struct objfile_per_bfd_storage) <filename_cache>:
289 Update.
290 <macro_cache>: Update.
291 * psymtab.h: (psymtab_storage) <psymbol_cache>: Update.
292
293 2019-12-06 Tom de Vries <tdevries@suse.de>
294
295 PR symtab/24971
296 * block.c (best_symbol, better_symbol): New function.
297 (block_lookup_symbol_primary, block_lookup_symbol): Prefer def over
298 decl.
299
300 2019-12-06 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
301
302 * gdbtypes.h: Define the REFERENCE_SEE_THROUGH_BADNESS value.
303 * gdbtypes.c (rank_one_type): Use REFERENCE_SEE_THROUGH_BADNESS
304 for ranking see-through reference cases.
305
306 2019-12-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
307 * stack.c (faas_command): Check a command is provided.
308 * thread.c (taas_command, tfaas_command): Likewise.
309
310 2019-12-05 Philippe Waroquiers <philippe.waroquiers@skynet.be>
311 * inferior.c (prune_inferiors): Only call delete_inferior,
312 Do not modify the inferior list.
313
314 2019-12-05 Simon Marchi <simon.marchi@polymtl.ca>
315
316 * c-exp.y: Update calls to lookup_typename,
317 lookup_signed_typename and lookup_unsigned_typename.
318 * c-lang.c (evaluate_subexp_c): Likewise.
319 * cp-namespace.c (cp_lookup_symbol_imports_or_template):
320 Likewise.
321 * eval.c (binop_promote): Likewise.
322 * gdbtypes.c (lookup_typename): Remove gdbarch parameter.
323 (lookup_unsigned_typename): Likewise.
324 (lookup_signed_typename): Likewise.
325 * gdbtypes.h (lookup_unsigned_typename): Likewise.
326 (lookup_signed_typename): Likewise.
327 (lookup_typename): Likewise.
328 * guile/scm-type.c (tyscm_lookup_typename): Update calls to
329 lookup_typename, lookup_signed_typename,
330 lookup_unsigned_typename.
331 * m2-exp.y: Likewise.
332 * printcmd.c (printf_wide_c_string): Likewise.
333 (ui_printf): Likewise.
334 * python/py-type.c (typy_lookup_typename): Likewise.
335 * python/py-xmethods.c (python_xmethod_worker::invoke):
336 Likewise.
337 * rust-exp.y: Likewise.
338
339 2019-12-04 Christian Biesinger <cbiesinger@google.com>
340
341 * configure.nat (obsd64): Add missing files x86-nat.o and
342 nat/x86-dregs.o.
343
344 2019-12-04 Tom Tromey <tom@tromey.com>
345
346 * valprint.c (val_print_string): Use metadata_style.
347 * go-valprint.c (print_go_string): Use metadata style.
348 * p-valprint.c (pascal_object_print_static_field): Use metadata
349 style.
350 * cp-valprint.c (cp_print_static_field): Use metadata style.
351
352 2019-12-04 Andrew Burgess <andrew.burgess@embecosm.com>
353 Chris January <chris.january@arm.com>
354
355 * f-exp.y (COMPLEX_KEYWORD, SINGLE, DOUBLE, PRECISION): New
356 tokens.
357 (typebase): New patterns for complex, single/double precision, and
358 single/double complex.
359 (f77_keywords): Change token for complex keyword, and add single,
360 double, and precision keywords.
361
362 2019-12-04 Simon Marchi <simon.marchi@polymtl.ca>
363
364 * avr-tdep.c (_initialize_avr_tdep): Improve help of command
365 "info io_registers".
366
367 2019-12-04 Simon Marchi <simon.marchi@polymtl.ca>
368
369 * regcache.c (cooked_read_test): Initialize thread list of
370 mock_inferior.
371
372 2019-12-04 Simon Marchi <simon.marchi@polymtl.ca>
373
374 * aarch64-linux-tdep.c: Remove includes.
375
376 2019-12-04 Simon Marchi <simon.marchi@polymtl.ca>
377
378 * aarch64-tdep.c: Remove includes.
379
380 2019-12-04 Simon Marchi <simon.marchi@efficios.com>
381
382 * filtered-iterator.h (filtered_iterator) <operator==,
383 operator!=>: Compare wrapped iterators, not wrapped pointers.
384 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
385 unittests/filtered_iterator-selftests.c.
386 * unittests/filtered_iterator-selftests.c: New file.
387
388 2019-12-04 Tom Tromey <tromey@adacore.com>
389
390 * gdbtypes.c (create_range_type): Inherit endianity
391 from base type.
392
393 2019-12-04 Tom Tromey <tromey@adacore.com>
394
395 * ada-lang.c (decode_constrained_packed_array)
396 (ada_value_assign, value_assign_to_component): Update.
397 * dwarf2loc.c (rw_pieced_value, access_memory)
398 (dwarf2_compile_expr_to_ax): Update.
399 * dwarf2read.c (dwarf2_add_field): Update.
400 * eval.c (evaluate_subexp_standard): Update.
401 * gdbarch.c, gdbarch.h: Rebuild.
402 * gdbarch.sh (bits_big_endian): Remove.
403 * gdbtypes.h (union field_location): Update comment.
404 * target-descriptions.c (make_gdb_type): Update.
405 * valarith.c (value_bit_index): Update.
406 * value.c (struct value) <bitpos>: Update comment.
407 (unpack_bits_as_long, modify_field): Update.
408 * value.h (value_bitpos): Update comment.
409
410 2019-12-04 Tom Tromey <tromey@adacore.com>
411
412 * gdbtypes.c (type_byte_order): Move earlier. Assert for unknown
413 endian-ness.
414
415 2019-12-04 Tom Tromey <tromey@adacore.com>
416
417 * dwarf2read.c (dwarf2_init_float_type)
418 (dwarf2_init_complex_target_type): Add byte_order parameter.
419 (read_base_type): Compute byte order earlier.
420 * gdbtypes.c (init_float_type): Add byte_order parameter.
421 * gdbtypes.h (init_float_type): Add byte_order parameter.
422
423 2019-12-04 Tom Tromey <tromey@adacore.com>
424
425 * unittests/tui-selftests.c: Conditionally include tui-winsource.h.
426
427 2019-12-04 Tom Tromey <tromey@adacore.com>
428
429 * dwarf2read.c (process_structure_scope): Initialize
430 "discr_offset".
431
432 2019-12-04 Andrew Burgess <andrew.burgess@embecosm.com>
433
434 * mi/mi-symbol-cmds.c (mi_symbol_info): Take extra parameter, and
435 add it into the search spec.
436 (parse_max_results_option): New function.
437 (mi_info_functions_or_variables): Parse -max-results flag and pass
438 it to mi_symbol_info.
439 (mi_cmd_symbol_info_modules): Likewise.
440 (mi_cmd_symbol_info_types): Likewise.
441 * symtab.c (global_symbol_searcher::add_matching_symbols): Change
442 return type to bool, change result container into a set, and don't
443 add new results if we have enough already.
444 (global_symbol_searcher::add_matching_msymbols): Change return
445 type to bool, and don't add new results if we have enough already.
446 (sort_search_symbols_remove_dups): Delete.
447 (global_symbol_searcher::search): Early exit from search loop when
448 we have enough results. Use a std::set to collect the results
449 from calling add_matching_symbols.
450 * symtab.h (global_symbol_searcher) <set_max_seach_results>: New
451 member function.
452 (global_symbol_searcher) <m_max_search_results>: New member
453 variable.
454 (global_symbol_searcher) <add_matching_symbols>: Update header
455 comment and change return type to bool.
456 (global_symbol_searcher) <add_matching_msymbols>: Update header
457 comment and change return type to bool.
458
459 2019-12-04 Andrew Burgess <andrew.burgess@embecosm.com>
460
461 * symtab.c (symbol_search::compare_search_syms): Update header
462 comment.
463 (global_symbol_searcher::is_suitable_msymbol): New function.
464 (global_symbol_searcher::expand_symtabs): New function.
465 (global_symbol_searcher::add_matching_symbols): New function.
466 (global_symbol_searcher::add_matching_msymbols): New function.
467 (global_symbol_searcher::search): Move most of the content
468 into the new functions above, and call them as needed.
469 * symtab.h (global_symbol_searcher) <expand_symtabs>: New member
470 function.
471 (global_symbol_searcher) <add_matching_symbols>: New member
472 function.
473 (global_symbol_searcher) <add_matching_msymbols>: New member
474 function.
475 (global_symbol_searcher) <is_suitable_msymbol>: New member
476 function.
477
478 2019-12-04 Andrew Burgess <andrew.burgess@embecosm.com>
479
480 * mi/mi-cmds.c (mi_cmds): Add -symbol-info-module-functions and
481 -symbol-info-module-variables entries.
482 * mi/mi-cmds.h (mi_cmd_symbol_info_module_functions): Declare.
483 (mi_cmd_symbol_info_module_variables): Declare.
484 * mi/mi-symbol-cmds.c
485 (module_symbol_search_iterator): New typedef.
486 (output_module_symbols_in_single_module_and_file): New function.
487 (output_module_symbols_in_single_module): New function.
488 (mi_info_module_functions_or_variables): New function.
489 (mi_cmd_symbol_info_module_functions): New function.
490 (mi_cmd_symbol_info_module_variables): New function.
491 * NEWS: Mention new MI command.
492
493 2019-12-03 Christian Biesinger <cbiesinger@google.com>
494
495 * bcache.c (hash): Remove.
496 (hash_continue): Remove.
497 * bcache.h (hash): Remove.
498 (hash_continue): Remove.
499 (struct bcache) <ctor>: Update.
500 * psymtab.c (psymbol_hash): Update.
501 * stabsread.c (hashname): Update.
502 * utils.h (fast_hash): Add an argument for a start value,
503 defaulting to zero.
504
505 2019-12-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
506 * symtab.c (symbol_cache_clear_slot): Move close to cleared type.
507 (destroy_block_symbol_cache): New function.
508 (symbol_cache:~symbol_cache) Call destroy_block_symbol_cache.
509 (resize_symbol_cache): Likewise.
510
511 2019-12-02 Tom Tromey <tom@tromey.com>
512
513 * unittests/tui-selftests.c (run_tests): Make conditional.
514 (_initialize_tui_selftest): Make conditional.
515
516 2019-12-02 Christian Biesinger <cbiesinger@google.com>
517
518 * aix-thread.c (debug_aix_thread): Change type to bool.
519
520 2019-12-02 Luis Machado <luis.machado@linaro.org>
521
522 * infrun.c (follow_fork_inferior): Remove outdated FIXME comment.
523
524 2019-12-01 Andrew Burgess <andrew.burgess@embecosm.com>
525
526 * dwarf2read.c (read_tag_string_type): Read the fields required to
527 make a dynamic string, and possibly create a dynamic range for the
528 string.
529 (attr_to_dynamic_prop): Setup is_reference based on the type of
530 attribute being processed.
531 * gdbtypes.c (is_dynamic_type_internal): Handle TYPE_CODE_STRING.
532 (resolve_dynamic_array): Rename to...
533 (resolve_dynamic_array_or_string): ...this, update header comment,
534 and accept TYPE_CODE_STRING.
535 (resolve_dynamic_type_internal): Handle TYPE_CODE_STRING.
536
537 2019-12-01 Andrew Burgess <andrew.burgess@embecosm.com>
538
539 * dwarf2read.c (dwarf2_per_cu_int_type): New function, takes most
540 of its implementation from...
541 (dwarf2_per_cu_addr_sized_int_type): ...here, which now just calls
542 the new function.
543
544 2019-12-01 Andrew Burgess <andrew.burgess@embecosm.com>
545
546 * dwarf2read.c (read_subrange_type): Read bit and byte stride and
547 create a range with stride where appropriate.
548 * f-valprint.c: Include 'gdbarch.h'.
549 (f77_print_array_1): Take the stride into account when walking the
550 array. Also convert the stride into addressable units.
551 * gdbtypes.c (create_range_type): Initialise the stride to
552 constant zero.
553 (create_range_type_with_stride): New function, initialise the
554 range as normal, and then setup the stride.
555 (has_static_range): Include the stride here. Also change the
556 return type to bool.
557 (create_array_type_with_stride): Consider the range stride if the
558 array isn't given its own stride.
559 (resolve_dynamic_range): Resolve the stride if needed.
560 * gdbtypes.h (struct range_bounds) <stride>: New member variable.
561 (struct range_bounds) <flag_is_byte_stride>: New member variable.
562 (TYPE_BIT_STRIDE): Define.
563 (TYPE_ARRAY_BIT_STRIDE): Define.
564 (create_range_type_with_stride): Declare.
565 * valarith.c (value_subscripted_rvalue): Take range stride into
566 account when walking the array.
567
568 2019-12-01 Tom Tromey <tom@tromey.com>
569
570 * tui/tui-win.c (tui_all_windows_info): Treat inactive TUI
571 specially.
572
573 2019-12-01 Tom Tromey <tom@tromey.com>
574
575 * tui/tui-winsource.c (tui_copy_source_line): Don't advance past
576 \0.
577 * unittests/tui-selftests.c: New file.
578 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add tui-selftests.c.
579
580 2019-12-01 Tom Tromey <tom@tromey.com>
581
582 * tui/tui.c (tui_enable): Call tui_update_variables earlier.
583
584 2019-12-01 Tom Tromey <tom@tromey.com>
585
586 * NEWS: Document new settings.
587 * tui/tui-wingeneral.c (box_win): Apply appropriate border style.
588 * tui/tui-win.c (_initialize_tui_win): Add border style
589 observers.
590 * tui/tui-io.h (tui_apply_style): Declare.
591 * tui/tui-io.c (tui_apply_style): Rename from apply_style. No
592 longer static.
593 (apply_ansi_escape, tui_set_reverse_mode): Update.
594 * cli/cli-style.h (class cli_style_option) <add_setshow_commands>:
595 Add "skip_intensity" parameter.
596 <changed>: New member.
597 <do_set_value>: Declare.
598 (tui_border_style, tui_active_border_style): Declare.
599 * cli/cli-style.c (tui_border_style, tui_active_border_style): New
600 globals.
601 (cli_style_option): Initialize "changed".
602 (cli_style_option::do_set_value): New function.
603 (cli_style_option::add_setshow_commands): Add "skip_intensity"
604 parameter. Update.
605 (STYLE_ADD_SETSHOW_COMMANDS): Add "SKIP" parameter.
606 (_initialize_cli_style): Update. Create TUI border style
607 commands.
608
609 2019-12-01 Tom Tromey <tom@tromey.com>
610
611 * tui/tui-winsource.h (tui_copy_source_line): Add "ndigits"
612 parameter.
613 * tui/tui-winsource.c (tui_copy_source_line): Add "ndigits"
614 parameter.
615 * tui/tui-win.h (compact_source): Declare.
616 * tui/tui-win.c (compact_source): New global.
617 (tui_set_compact_source, tui_show_compact_source): New functions.
618 (_initialize_tui_win): Add "compact-source" setting.
619 * tui/tui-source.c (tui_source_window::set_contents): Handle
620 compact_source setting.
621 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
622 * NEWS: Document new setting.
623
624 2019-11-30 Tom Tromey <tom@tromey.com>
625
626 * dwarf2read.c (dwarf2_add_field): Include field offset when
627 computing variant part length.
628
629 2019-11-30 Philippe Waroquiers <philippe.waroquiers@skynet.be>
630 * NEWS: Mention define-prefix. Tell that command names can now
631 contain a . character.
632
633 2019-11-30 Philippe Waroquiers <philippe.waroquiers@skynet.be>
634
635 * command.h (valid_cmd_char_p): Declare.
636 * cli/cli-decode.c (valid_cmd_char_p): New function factorizing
637 the check of valid command char.
638 (find_command_name_length, valid_user_defined_cmd_name_p): Use
639 valid_cmd_char_p.
640 * cli/cli-script.c (validate_comname): Likewise.
641 * completer.c (gdb_completer_command_word_break_characters):
642 Do not remove . from the word break char, update comments.
643 (complete_line_internal_1): Use valid_cmd_char_p.
644 * guile/scm-cmd.c (gdbscm_parse_command_name): Likewise.
645 * python/py-cmd.c (gdbpy_parse_command_name): Likewise.
646
647 2019-11-30 Philippe Waroquiers <philippe.waroquiers@skynet.be>
648
649 * cli/cli-script.c (do_define_command): Ensure a redefined
650 prefix command is kept as a prefix command.
651 (define_prefix_command): New function.
652 (show_user_1): Report user defined prefixes.
653 (_initialize_cli_script): Create the new 'define-prefix' command.
654 Add completers for 'define' and 'document'.
655 * top.c (execute_command): If command is a user-defined prefix only
656 command, report the list of commands for this prefix command.
657
658 2019-11-29 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
659
660 * valops.c (find_oload_champ): Improve debug output.
661
662 2019-11-29 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
663
664 * valops.c (find_oload_champ): Print part of debug messages
665 before the badness vector is std::move'd.
666
667 2019-11-28 Tom Tromey <tom@tromey.com>
668
669 * value.c (creal_internal_fn): Fix comment.
670
671 2019-11-28 Tom Tromey <tom@tromey.com>
672
673 * gdbtypes.h (struct range_bounds) <flag_upper_bound_is_count,
674 flag_bound_evaluated>: Now unsigned.
675
676 2019-11-28 Tom Tromey <tom@tromey.com>
677
678 * guile/guile-internal.h (vlscm_scm_from_value_unsafe): Don't
679 declare.
680
681 2019-11-28 Mihails Strasuns <mihails.strasuns@intel.com>
682
683 * jit.c (jit_bfd_try_read_symtab): Fix printed function name in the
684 debug output.
685 * jit.c (jit_unregister_code): Add debug print to match
686 `jit_register_code`.
687
688 2019-11-27 Christian Biesinger <cbiesinger@google.com>
689
690 * NEWS: Mention the new multithreaded symbol loading.
691
692 2019-11-27 Christian Biesinger <cbiesinger@google.com>
693
694 * maint.c (n_worker_threads): Default to 0.
695 (worker_threads_disabled): New function.
696 * maint.h (worker_threads_disabled): New function.
697 * minsyms.c (minimal_symbol_reader::record_full): Call symbol_set_names
698 here if worker_threads_disabled () is true.
699 (minimal_symbol_reader::install): Skip all threading if
700 worker_threads_disabled () is true.
701
702 2019-11-27 Christian Biesinger <cbiesinger@google.com>
703
704 * minsyms.c (add_minsym_to_hash_table): Use a previously computed
705 hash code if possible.
706 (add_minsym_to_demangled_hash_table): Likewise.
707 (minimal_symbol_reader::install): Compute the hash codes for msymbol
708 on the background thread.
709 * symtab.h (struct minimal_symbol) <hash_value, demangled_hash_value>:
710 Add these fields.
711
712 2019-11-27 Christian Biesinger <cbiesinger@google.com>
713
714 * minsyms.c (minimal_symbol_reader::install): Also compute the hash
715 of the mangled name on the background thread.
716 * symtab.c (symbol_set_names): Allow passing in the hash of the
717 linkage_name.
718 * symtab.h (symbol_set_names): Likewise.
719
720 2019-11-27 Kevin Buettner <kevinb@redhat.com>
721
722 * dwarf2read.c (inherit_abstract_dies): Ensure that delayed
723 physnames are computed for inherited DIEs.
724
725 2019-11-27 Tom Tromey <tromey@adacore.com>
726
727 * dwarf2read.h (struct dwarf2_per_objfile): Remove unnecessary
728 backslashes.
729 * cp-support.c: Remove unnecessary backslashes.
730
731 2019-11-27 Christian Biesinger <cbiesinger@google.com>
732
733 * ada-exp.y (write_ambiguous_var): Replace SYMBOL_SET_LINKAGE_NAME
734 with sym->set_linkage_name.
735 * coffread.c (coff_read_enum_type): Likewise.
736 * mdebugread.c (parse_symbol): Likewise.
737 * stabsread.c (patch_block_stabs): Likewise.
738 (define_symbol): Likewise.
739 (read_enum_type): Likewise.
740 (common_block_end): Likewise.
741 * symtab.h (struct general_symbol_info) <set_linkage_name>: New
742 function.
743 (SYMBOL_SET_LINKAGE_NAME): Remove.
744 * xcoffread.c (process_xcoff_symbol): Replace SYMBOL_SET_LINKAGE_NAME
745 with sym->set_linkage_name.
746
747 2019-11-27 Andrew Burgess <andrew.burgess@embecosm.com>
748
749 * mi/mi-cmds.c (mi_cmds): Add 'symbol-info-modules' entry.
750 * mi/mi-cmds.h (mi_cmd_symbol_info_modules): Declare.
751 * mi/mi-symbol-cmds.c (mi_cmd_symbol_info_modules): New function.
752 * NEWS: Mention new MI command.
753
754 2019-11-27 Andrew Burgess <andrew.burgess@embecosm.com>
755
756 * mi/mi-cmds.c (mi_cmds): Add '-symbol-info-functions',
757 '-symbol-info-types', and '-symbol-info-variables'.
758 * mi/mi-cmds.h (mi_cmd_symbol_info_functions): Declare.
759 (mi_cmd_symbol_info_types): Declare.
760 (mi_cmd_symbol_info_variables): Declare.
761 * mi/mi-symbol-cmds.c: Add 'source.h' and 'mi-getopt.h' includes.
762 (output_debug_symbol): New function.
763 (output_nondebug_symbol): New function.
764 (mi_symbol_info): New function.
765 (mi_info_functions_or_variables): New function.
766 (mi_cmd_symbol_info_functions): New function.
767 (mi_cmd_symbol_info_types): New function.
768 (mi_cmd_symbol_info_variables): New function.
769 * NEWS: Mention new commands.
770
771 2019-11-27 Andrew Burgess <andrew.burgess@embecosm.com>
772
773 * symtab.c (symbol_to_info_string): New function, most content
774 moved from print_symbol_info, but updated to return a std::string.
775 (print_symbol_info): Update to use symbol_to_info_string and print
776 returned string.
777 * symtab.h (symbol_to_info_string): Declare new function.
778
779 2019-11-27 Andrew Burgess <andrew.burgess@embecosm.com>
780
781 * python/python.c (gdbpy_rbreak): Convert to using
782 global_symbol_searcher.
783 * symtab.c (file_matches): Convert return type to bool, change
784 file list to std::vector, update header comment.
785 (search_symbols): Rename to...
786 (global_symbol_searcher::search): ...this and update now its
787 a member function of global_symbol_searcher. Take account of the
788 changes to file_matches.
789 (symtab_symbol_info): Convert to using global_symbol_searcher.
790 (rbreak_command): Likewise.
791 (search_module_symbols): Likewise.
792 * symtab.h (enum symbol_search): Update comment.
793 (search_symbols): Remove declaration.
794 (class global_symbol_searcher): New class.
795
796 2019-11-26 Tom Tromey <tromey@adacore.com>
797
798 * cp-support.c (_initialize_cp_support): Conditionally initialize
799 gdb_demangle_attempt_core_dump.
800
801 2019-11-26 Tom Tromey <tom@tromey.com>
802
803 * python/py-function.c (fnpy_init): Update.
804 * value.h (add_internal_function): Adjust declaration.
805 * value.c (function_destroyer): Remove.
806 (do_add_internal_function): Don't set destroyer or copy name.
807 (add_internal_function): Take unique_xmalloc_ptr<char> for name.
808 Set name_allocated.
809 * python/py-cmd.c (cmdpy_destroyer): Don't free "name".
810 (cmdpy_init): Set name_allocated.
811 * cli/cli-decode.h (struct cmd_list_element) <name_allocated>: New
812 member.
813 (~cmd_list_element): Free "name" if needed.
814
815 2019-11-26 Tom Tromey <tom@tromey.com>
816
817 * value.h (add_internal_function): Add new overload. Move
818 documentation from value.h.
819 * value.c (do_add_internal_function): New function.
820 (add_internal_function): Use it. Add new overload.
821 (function_destroyer): Don't free doc.
822 * python/py-function.c (fnpy_init): Update.
823
824 2019-11-26 Tom Tromey <tom@tromey.com>
825
826 * python/py-cmd.c (cmdpy_destroyer): Don't free "doc".
827 (cmdpy_init): Set "doc_allocated".
828
829 2019-11-26 Tom Tromey <tom@tromey.com>
830
831 * gdbsupport/thread-pool.c (thread_pool::set_thread_count): Set
832 name of worker thread.
833 * gdbsupport/common.m4 (GDB_AC_COMMON): Check for
834 pthread_setname_np.
835 * configure, config.in: Rebuild.
836
837 2019-11-26 Tom Tromey <tom@tromey.com>
838
839 * python/python.c (class gdbpy_gil): New.
840 (struct gdbpy_event): Add constructor, destructor, operator().
841 (gdbpy_post_event): Use run_on_main_thread.
842 (gdbpy_initialize_events): Remove.
843 (do_start_initialization): Update.
844
845 2019-11-26 Tom Tromey <tom@tromey.com>
846
847 * NEWS: Add entry.
848 * maint.c (_initialize_maint_cmds): Add "worker-threads" maint
849 commands. Call update_thread_pool_size.
850 (update_thread_pool_size, maintenance_set_worker_threads): New
851 functions.
852 (n_worker_threads): New global.
853
854 2019-11-26 Christian Biesinger <cbiesinger@google.com>
855 Tom Tromey <tom@tromey.com>
856
857 * minsyms.c (minimal_symbol_reader::install): Use
858 parallel_for_each.
859 * gdbsupport/parallel-for.h: New file.
860 * Makefile.in (HFILES_NO_SRCDIR): Add gdbsupport/parallel-for.h.
861
862 2019-11-26 Christian Biesinger <cbiesinger@google.com>
863 Tom Tromey <tom@tromey.com>
864
865 * gdbsupport/thread-pool.h: New file.
866 * gdbsupport/thread-pool.c: New file.
867 * Makefile.in (COMMON_SFILES): Add thread-pool.c.
868 (HFILES_NO_SRCDIR): Add thread-pool.h.
869
870 2019-11-26 Tom Tromey <tom@tromey.com>
871
872 * event-top.h (thread_local_segv_handler): Declare.
873 * event-top.c (thread_local_segv_handler): New global.
874 (install_handle_sigsegv, handle_sigsegv): New functions.
875 (async_init_signals): Install SIGSEGV handler.
876 * cp-support.c (gdb_demangle_jmp_buf): Change type. Now
877 thread-local.
878 (report_failed_demangle): New function.
879 (gdb_demangle): Make core_dump_allowed atomic. Remove signal
880 handler-setting code, instead use segv_handler. Run warning code
881 on main thread.
882
883 2019-11-26 Tom Tromey <tom@tromey.com>
884
885 * run-on-main-thread.c: New file.
886 * run-on-main-thread.h: New file.
887 * unittests/main-thread-selftests.c: New file.
888 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
889 main-thread-selftests.c.
890 (HFILES_NO_SRCDIR): Add run-on-main-thread.h.
891 (COMMON_SFILES): Add run-on-main-thread.c.
892
893 2019-11-26 Tom Tromey <tom@tromey.com>
894
895 * main.c (setup_alternate_signal_stack): Remove.
896 (captured_main_1): Use gdb::alternate_signal_stack.
897 * gdbsupport/alt-stack.h: New file.
898
899 2019-11-26 Tom Tromey <tom@tromey.com>
900
901 * gdbsupport/signals-state-save-restore.c (original_signal_mask):
902 Remove comment.
903 (save_original_signals_state, restore_original_signals_state): Use
904 gdb_sigmask.
905 * linux-nat.c (block_child_signals, restore_child_signals_mask)
906 (_initialize_linux_nat): Use gdb_sigmask.
907 * guile/guile.c (_initialize_guile): Use block_signals.
908 * Makefile.in (HFILES_NO_SRCDIR): Add gdb-sigmask.h.
909 * gdbsupport/gdb-sigmask.h: New file.
910 * event-top.c (async_sigtstp_handler): Use gdb_sigmask.
911 * cp-support.c (gdb_demangle): Use gdb_sigmask.
912 * gdbsupport/common.m4 (GDB_AC_COMMON): Check for
913 pthread_sigmask.
914 * configure, config.in: Rebuild.
915 * gdbsupport/block-signals.h: New file.
916
917 2019-11-26 Tom Tromey <tom@tromey.com>
918
919 * acinclude.m4: Include ax_pthread.m4.
920 * Makefile.in (PTHREAD_CFLAGS, PTHREAD_LIBS): New variables.
921 (INTERNAL_CFLAGS_BASE): Use PTHREAD_CFLAGS.
922 (CLIBS): Use PTHREAD_LIBS.
923 (aclocal_m4_deps): Add ax_pthread.m4.
924 * config.in, configure: Rebuild.
925 * gdbsupport/common.m4 (GDB_AC_COMMON): Check for std::thread.
926
927 2019-11-26 Tom Tromey <tom@tromey.com>
928
929 * symtab.h (struct minimal_symbol) <name_set>: New member.
930 * minsyms.c (minimal_symbol_reader::record_full): Copy name.
931 Don't call symbol_set_names.
932 (minimal_symbol_reader::install): Call symbol_set_names.
933
934 2019-11-26 Philippe Waroquiers <philippe.waroquiers@skynet.be>
935
936 * python/python.c (gdbpy_enter::~gdbpy_enter): Release GIL after
937 restore_active_ext_lang, as GIL is needed for (indirectly)
938 called PyOS_InterruptOccurred.
939
940 2019-11-26 Simon Marchi <simon.marchi@efficios.com>
941
942 * sparc-nat.c (sparc_xfer_wcookie): Sync declaration with
943 definition.
944
945 2019-11-26 Simon Marchi <simon.marchi@efficios.com>
946
947 * remote-sim.c (simulator_command): Make static, remove
948 declaration.
949
950 2019-11-26 Simon Marchi <simon.marchi@efficios.com>
951
952 * unittests/array-view-selftests.c (check_ptr_size_ctor2): Make
953 static.
954 * unittests/basic_string_view/capacity/1.cc (test01): Likewise.
955 * unittests/basic_string_view/cons/char/1.cc (test01): Likewise.
956 (main): Likewise.
957 * unittests/basic_string_view/cons/char/2.cc (test03): Likewise.
958 (main): Likewise.
959 * unittests/basic_string_view/cons/char/3.cc (test05): Likewise.
960 (main): Likewise.
961 * unittests/basic_string_view/element_access/char/1.cc (test01):
962 Likewise.
963 (main): Likewise.
964 * unittests/basic_string_view/element_access/char/empty.cc (main):
965 Likewise.
966 * unittests/basic_string_view/element_access/char/front_back.cc
967 (test01): Likewise.
968 (main): Likewise.
969 * unittests/basic_string_view/inserters/char/2.cc (test05):
970 Likewise.
971 (main): Likewise.
972 * unittests/basic_string_view/modifiers/remove_prefix/char/1.cc
973 (test01): Likewise.
974 (main): Likewise.
975 * unittests/basic_string_view/modifiers/remove_suffix/char/1.cc
976 (test01): Likewise.
977 (main): Likewise.
978 * unittests/basic_string_view/modifiers/swap/char/1.cc (test01):
979 Likewise.
980 * unittests/basic_string_view/operations/compare/char/1.cc
981 (test01): Likewise.
982 (main): Likewise.
983 * unittests/basic_string_view/operations/compare/char/13650.cc
984 (test01): Likewise.
985 * unittests/basic_string_view/operations/copy/char/1.cc (test01):
986 Likewise.
987 (main): Likewise.
988 * unittests/basic_string_view/operations/data/char/1.cc (test01):
989 Likewise.
990 (main): Likewise.
991 * unittests/basic_string_view/operations/find/char/1.cc (test01):
992 Likewise.
993 (main): Likewise.
994 * unittests/basic_string_view/operations/find/char/2.cc (test02):
995 Likewise.
996 (main): Likewise.
997 * unittests/basic_string_view/operations/find/char/3.cc (test03):
998 Likewise.
999 (main): Likewise.
1000 * unittests/basic_string_view/operations/find/char/4.cc (main):
1001 Likewise.
1002 * unittests/basic_string_view/operations/rfind/char/1.cc (test01):
1003 Likewise.
1004 (main): Likewise.
1005 * unittests/basic_string_view/operations/rfind/char/2.cc (test02):
1006 Likewise.
1007 (main): Likewise.
1008 * unittests/basic_string_view/operations/rfind/char/3.cc (test03):
1009 Likewise.
1010 (main): Likewise.
1011 * unittests/basic_string_view/operations/substr/char/1.cc
1012 (test01): Likewise.
1013 (main): Likewise.
1014 * unittests/basic_string_view/operators/char/2.cc (main):
1015 Likewise.
1016 * unittests/optional/assignment/1.cc (test): Likewise.
1017 * unittests/optional/assignment/2.cc (test): Likewise.
1018 * unittests/optional/assignment/3.cc (test): Likewise.
1019 * unittests/optional/assignment/4.cc (test): Likewise.
1020 * unittests/optional/assignment/5.cc (test): Likewise.
1021 * unittests/optional/assignment/6.cc (test): Likewise.
1022 * unittests/optional/assignment/7.cc (test): Likewise.
1023 * unittests/optional/cons/copy.cc (test): Likewise.
1024 * unittests/optional/cons/default.cc (test): Likewise.
1025 * unittests/optional/cons/move.cc (test): Likewise.
1026 * unittests/optional/cons/value.cc (test): Likewise.
1027 * unittests/optional/in_place.cc (test): Likewise.
1028 * unittests/optional/observers/1.cc (test): Likewise.
1029 * unittests/optional/observers/2.cc (test): Likewise.
1030
1031 2019-11-26 Simon Marchi <simon.marchi@efficios.com>
1032
1033 * tui-win.h (tui_set_var_cmd): Remove.
1034 * tui-win.c (tui_set_var_cmd): Make static.
1035
1036 2019-11-26 Simon Marchi <simon.marchi@efficios.com>
1037
1038 * breakpoint.h (hbreak_command_wrapper, thbreak_command_wrapper,
1039 rbreak_command_wrapper): Remove.
1040 * symtab.c (rbreak_command_wrapper): Remove.
1041
1042 2019-11-26 Simon Marchi <simon.marchi@efficios.com>
1043
1044 * inferior.h (info_terminal_command): Remove declaration.
1045 * inflow.c (info_terminal_command): Make static.
1046
1047 2019-11-26 Simon Marchi <simon.marchi@efficios.com>
1048
1049 * inferior.c (exit_inferior_silent): Remove.
1050
1051 2019-11-26 Simon Marchi <simon.marchi@efficios.com>
1052
1053 * dictionary.c (dict_empty, mdict_empty): Remove.
1054 * dictionary.c (mdict_empty): Remove.
1055
1056 2019-11-26 Simon Marchi <simon.marchi@efficios.com>
1057
1058 * arc-tdep.c (arc_insn_get_memory_base_reg): Make static.
1059 (arc_insn_get_memory_offset): Likewise.
1060 (arc_insn_dump): Likewise.
1061 * cp-support.c (test_cp_symbol_name_matches): Likewise.
1062 * csky-linux-tdep.c (csky_supply_fregset): Likewise.
1063 * dictionary.c (dict_iterator_next): Likewise.
1064 (dict_iter_match_first): Likewise.
1065 (dict_iter_match_next): Likewise.
1066 * f-lang.c (evaluate_subexp_f): Likewise.
1067 * hppa-tdep.c (hppa_read_pc): Likewise.
1068 * i386-tdep.c (i386_floatformat_for_type): Likewise.
1069 * parse.c (write_exp_elt_msym): Likewise.
1070 * ppc-linux-tdep.c (ppc_floatformat_for_type): Likewise.
1071 * remote.c (remote_packet_size): Likewise.
1072 (remote_notif_stop_parse): Likewise.
1073 * rs6000-aix-tdep.c (aix_sighandle_frame_sniffer): Likewise.
1074 * s12z-tdep.c (s12z_disassemble_info): Likewise.
1075 * source.c (prepare_path_for_appending): Likewise.
1076 * sparc64-linux-tdep.c
1077 (sparc64_linux_handle_segmentation_fault); Likewise.
1078 * stack.c (frame_selection_by_function_completer): Likewise.
1079
1080 2019-11-26 Simon Marchi <simon.marchi@efficios.com>
1081
1082 * completer.c (set_gdb_completion_word_break_characters):
1083 Remove.
1084
1085 2019-11-26 Simon Marchi <simon.marchi@efficios.com>
1086
1087 * dwarf-index-write.c: Include dwarf-index-write.h.
1088 * mi/mi-interp.c: Include mi/mi-interp.h.
1089
1090 2019-11-26 Simon Marchi <simon.marchi@efficios.com>
1091
1092 * aarch32-tdep.c: Include aarch32-tdep.h.
1093 * aarch32-tdep.h: Forward-declare struct target_desc.
1094
1095 2019-11-26 Christian Biesinger <cbiesinger@google.com>
1096
1097 * linux-nat.c (detach_one_lwp): Call safe_strerror instead of
1098 strerror.
1099 * nto-procfs.c (nto_procfs_target::create_inferior): Likewise.
1100 * windows-nat.c (windows_nat_target::create_inferior): Likewise.
1101
1102 2019-11-25 Tom de Vries <tdevries@suse.de>
1103
1104 * contrib/words.sh: Add -c option.
1105
1106 2019-11-25 Christian Biesinger <cbiesinger@google.com>
1107
1108 * solib.c (solib_find_1): Change int to bool.
1109 (exec_file_find): Change int to bool.
1110 (solib_find): Change int to bool.
1111 (solib_read_symbols): Change int to bool.
1112 (solib_used): Change int to bool.
1113 (solib_add): Change int to bool.
1114 (info_sharedlibrary_command): Change int to bool.
1115 (solib_contains_address_p): Change int to bool.
1116 (solib_keep_data_in_core): Change int to bool.
1117 (in_solib_dynsym_resolve_code): Change int to bool.
1118 (reload_shared_libraries_1): Change int to bool.
1119 (gdb_sysroot_changed): Change int to bool.
1120 * solib.h (solib_read_symbols): Change int to bool.
1121 (solib_contains_address_p): Change int to bool.
1122 (solib_keep_data_in_core): Change int to bool.
1123 (in_solib_dynsym_resolve_code): Change int to bool.
1124 (libpthread_name_p): Change int to bool.
1125
1126 2019-11-25 Luis Machado <luis.machado@linaro.org>
1127
1128 * NEWS (New Commands): Mention "set debug remote-packet-max-chars".
1129 * remote.c (REMOTE_DEBUG_MAX_CHAR): Remove.
1130 (remote_packet_max_chars): New static global.
1131 (show_remote_packet_max_chars): New function.
1132 (remote_target::putpkt_binary): Adjust to use new
1133 remote_packet_max_chars option.
1134 (remote_target::getpkt_or_notif_sane_1): Likewise.
1135 (_initialize_remote): Register new remote-packet-max-chars option.
1136
1137 2019-11-24 Simon Marchi <simon.marchi@efficios.com>
1138
1139 * m68k-linux-nat.c: Include gdbarch.h.
1140
1141 2019-11-24 Tom Tromey <tom@tromey.com>
1142
1143 * symfile.c (read_symbols): Update.
1144 * psymtab.c (require_partial_symbols): Change type of "verbose" to
1145 bool.
1146 (psym_map_symtabs_matching_filename, find_pc_sect_psymtab)
1147 (psym_lookup_symbol, psym_find_last_source_symtab)
1148 (psym_forget_cached_source_info, psym_print_stats)
1149 (psym_expand_symtabs_for_function, psym_expand_all_symtabs)
1150 (psym_expand_symtabs_with_fullname, psym_map_symbol_filenames)
1151 (psym_map_matching_symbols, psym_expand_symtabs_matching)
1152 (psym_find_compunit_symtab_by_address)
1153 (maintenance_print_psymbols, maintenance_info_psymtabs)
1154 (maintenance_check_psymtabs): Update.
1155 * psymtab.h (require_partial_symbols): Change type of "verbose" to
1156 bool.
1157
1158 2019-11-22 Tom Tromey <tom@tromey.com>
1159
1160 * observable.h: Update comments.
1161
1162 2019-11-22 Tom Tromey <tromey@adacore.com>
1163
1164 * ada-tasks.c (ada_task_is_alive): Make parameter const.
1165 (print_ada_task_info): Don't try to fetch thread id if task is not
1166 alive.
1167
1168 2019-11-22 Christian Biesinger <cbiesinger@google.com>
1169
1170 * ada-exp.y: Update.
1171 * ada-lang.c (sort_choices): Update.
1172 (ada_print_symbol_signature): Update.
1173 (resolve_subexp): Update.
1174 (ada_parse_renaming): Update.
1175 (ada_read_renaming_var_value): Update.
1176 (lesseq_defined_than): Update.
1177 (remove_extra_symbols): Update.
1178 (remove_irrelevant_renamings): Update.
1179 (ada_add_block_symbols): Update.
1180 (ada_collect_symbol_completion_matches): Update.
1181 (ada_is_renaming_symbol): Update.
1182 (aggregate_assign_from_choices): Update.
1183 (ada_evaluate_subexp): Update.
1184 (ada_has_this_exception_support): Update.
1185 (ada_is_non_standard_exception_sym): Update.
1186 (ada_add_exceptions_from_frame): Update.
1187 (ada_add_global_exceptions): Update.
1188 (ada_print_subexp): Update.
1189 * ax-gdb.c (gen_var_ref): Update.
1190 (gen_maybe_namespace_elt): Update.
1191 (gen_expr_for_cast): Update.
1192 (gen_expr): Update.
1193 * block.h: Update.
1194 * blockframe.c (find_pc_partial_function): Update.
1195 * breakpoint.c (print_breakpoint_location): Update.
1196 (update_static_tracepoint): Update.
1197 * btrace.c (ftrace_print_function_name): Update.
1198 (ftrace_function_switched): Update.
1199 * buildsym.c (find_symbol_in_list): Update.
1200 * c-exp.y: Update.
1201 * c-typeprint.c (c_print_typedef): Update.
1202 (c_type_print_template_args): Update.
1203 * cli/cli-cmds.c (edit_command): Update.
1204 (list_command): Update.
1205 (print_sal_location): Update.
1206 * coffread.c (patch_opaque_types): Update.
1207 (process_coff_symbol): Update.
1208 (coff_read_enum_type): Update.
1209 * compile/compile-c-symbols.c (c_symbol_substitution_name): Update.
1210 (convert_one_symbol): Update.
1211 (hash_symname): Update.
1212 (eq_symname): Update.
1213 * compile/compile-cplus-symbols.c (convert_one_symbol): Update.
1214 * compile/compile-cplus-types.c (debug_print_scope): Update.
1215 * compile/compile-loc2c.c (do_compile_dwarf_expr_to_c): Update.
1216 * compile/compile-object-load.c (get_out_value_type): Update.
1217 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
1218 (search_symbol_list): Update.
1219 (cp_lookup_symbol_imports_or_template): Update.
1220 * cp-support.c (overload_list_add_symbol): Update.
1221 * ctfread.c (psymtab_to_symtab): Update.
1222 * dbxread.c (cp_set_block_scope): Update.
1223 * dictionary.c (iter_match_first_hashed): Update.
1224 (iter_match_next_hashed): Update.
1225 (insert_symbol_hashed): Update.
1226 (iter_match_next_linear): Update.
1227 * dictionary.h: Update.
1228 * dwarf2loc.c (func_get_frame_base_dwarf_block): Update.
1229 (locexpr_describe_location_piece): Update.
1230 (locexpr_describe_location_1): Update.
1231 (locexpr_generate_c_location): Update.
1232 (loclist_describe_location): Update.
1233 (loclist_generate_c_location): Update.
1234 * dwarf2read.c (dw2_debug_names_lookup_symbol): Update.
1235 (read_func_scope): Update.
1236 (process_enumeration_scope): Update.
1237 (new_symbol): Update.
1238 (dwarf2_const_value): Update.
1239 (dwarf2_symbol_mark_computed): Update.
1240 * eval.c (evaluate_funcall): Update.
1241 (evaluate_subexp_standard): Update.
1242 * expprint.c (print_subexp_standard): Update.
1243 (dump_subexp_body_standard): Update.
1244 * f-valprint.c (info_common_command_for_block): Update.
1245 * findvar.c (get_hosting_frame): Update.
1246 (default_read_var_value): Update.
1247 * go-lang.c (go_symbol_package_name): Update.
1248 * guile/scm-block.c (bkscm_print_block_smob): Update.
1249 * guile/scm-symbol.c (syscm_print_symbol_smob): Update.
1250 (gdbscm_symbol_name): Update.
1251 (gdbscm_symbol_linkage_name): Update.
1252 (gdbscm_symbol_print_name): Update.
1253 * infcall.c (get_function_name): Update.
1254 * infcmd.c (jump_command): Update.
1255 (finish_command): Update.
1256 * infrun.c (insert_exception_resume_breakpoint): Update.
1257 * linespec.c (canonicalize_linespec): Update.
1258 (create_sals_line_offset): Update.
1259 (convert_linespec_to_sals): Update.
1260 (complete_label): Update.
1261 (find_label_symbols_in_block): Update.
1262 * m2-typeprint.c (m2_print_typedef): Update.
1263 * mdebugread.c (mdebug_reg_to_regnum): Update.
1264 (parse_symbol): Update.
1265 (mylookup_symbol): Update.
1266 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
1267 (list_args_or_locals): Update.
1268 * objc-lang.c (compare_selectors): Update.
1269 (info_selectors_command): Update.
1270 (compare_classes): Update.
1271 (info_classes_command): Update.
1272 (find_imps): Update.
1273 * p-typeprint.c (pascal_print_typedef): Update.
1274 * printcmd.c (build_address_symbolic): Update.
1275 (info_address_command): Update.
1276 (print_variable_and_value): Update.
1277 * python/py-framefilter.c (extract_sym): Update.
1278 (py_print_single_arg): Update.
1279 * python/py-symbol.c (sympy_str): Update.
1280 (sympy_get_name): Update.
1281 (sympy_get_linkage_name): Update.
1282 * python/python.c (gdbpy_rbreak): Update.
1283 * record-btrace.c (btrace_get_bfun_name): Update.
1284 (btrace_call_history): Update.
1285 * rust-lang.c (rust_print_typedef): Update.
1286 * solib-frv.c (frv_fdpic_find_canonical_descriptor): Update.
1287 * stabsread.c (stab_reg_to_regnum): Update.
1288 (define_symbol): Update.
1289 (read_enum_type): Update.
1290 (common_block_end): Update.
1291 (cleanup_undefined_types_1): Update.
1292 (scan_file_globals): Update.
1293 * stack.c (print_frame_arg): Update.
1294 (print_frame_args): Update.
1295 (find_frame_funname): Update.
1296 (info_frame_command_core): Update.
1297 (iterate_over_block_locals): Update.
1298 (print_block_frame_labels): Update.
1299 (do_print_variable_and_value): Update.
1300 (iterate_over_block_arg_vars): Update.
1301 (return_command): Update.
1302 * symmisc.c (dump_symtab_1): Update.
1303 (print_symbol): Update.
1304 * symtab.c (eq_symbol_entry): Update.
1305 (symbol_cache_dump): Update.
1306 (lookup_language_this): Update.
1307 (find_pc_sect_line): Update.
1308 (skip_prologue_sal): Update.
1309 (symbol_search::compare_search_syms): Update.
1310 (treg_matches_sym_type_name): Update.
1311 (search_symbols): Update.
1312 (print_symbol_info): Update.
1313 (rbreak_command): Update.
1314 (completion_list_add_symbol): Update.
1315 (find_gnu_ifunc): Update.
1316 (get_symbol_address): Update.
1317 (search_module_symbols): Update.
1318 (info_module_subcommand): Update.
1319 * symtab.h (SYMBOL_NATURAL_NAME): Remove.
1320 (SYMBOL_LINKAGE_NAME): Remove.
1321 (SYMBOL_DEMANGLED_NAME): Remove.
1322 (SYMBOL_PRINT_NAME): Remove.
1323 (SYMBOL_SEARCH_NAME): Remove.
1324 * tracepoint.c (set_traceframe_context): Update.
1325 (validate_actionline): Update.
1326 (collection_list::collect_symbol): Update.
1327 (encode_actions_1): Update.
1328 (info_scope_command): Update.
1329 (print_one_static_tracepoint_marker): Update.
1330 * typeprint.c (typedef_hash_table::add_template_parameters): Update.
1331 * valops.c (address_of_variable): Update.
1332 (find_overload_match): Update.
1333 (find_oload_champ): Update.
1334
1335 2019-11-22 Christian Biesinger <cbiesinger@google.com>
1336
1337 * ada-lang.c (ada_lookup_simple_minsym): Update.
1338 (ada_collect_symbol_completion_matches): Update.
1339 * ada-tasks.c (read_atcb): Update.
1340 * amd64-windows-tdep.c (amd64_skip_main_prologue): Update.
1341 (amd64_windows_skip_trampoline_code): Update.
1342 * arm-tdep.c (skip_prologue_function): Update.
1343 (arm_skip_stack_protector): Update.
1344 * arm-wince-tdep.c (arm_pe_skip_trampoline_code): Update.
1345 (arm_wince_skip_main_prologue): Update.
1346 * ax-gdb.c (gen_expr): Update.
1347 * block.c (call_site_for_pc): Update.
1348 * blockframe.c (find_pc_partial_function): Update.
1349 * breakpoint.c (set_breakpoint_location_function): Update.
1350 * btrace.c (ftrace_print_function_name): Update.
1351 (ftrace_function_switched): Update.
1352 * c-valprint.c (print_unpacked_pointer): Update.
1353 * coffread.c (coff_symfile_read): Update.
1354 * compile/compile-c-symbols.c (convert_symbol_bmsym): Update.
1355 * compile/compile-cplus-symbols.c (convert_symbol_bmsym): Update.
1356 * dwarf-index-write.c (write_psymbols): Update.
1357 * dwarf2loc.c (call_site_to_target_addr): Update.
1358 (func_verify_no_selftailcall): Update.
1359 (tailcall_dump): Update.
1360 (call_site_find_chain_1): Update.
1361 (dwarf_expr_reg_to_entry_parameter): Update.
1362 * elfread.c (elf_gnu_ifunc_record_cache): Update.
1363 * eval.c (evaluate_funcall): Update.
1364 (evaluate_subexp_standard): Update.
1365 (evaluate_subexp_for_sizeof): Update.
1366 * expprint.c (print_subexp_standard): Update.
1367 (dump_subexp_body_standard): Update.
1368 * frame.c (get_prev_frame_always_1): Update.
1369 * frv-tdep.c (frv_skip_main_prologue): Update.
1370 * gnu-v2-abi.c (gnuv2_value_rtti_type): Update.
1371 * gnu-v3-abi.c (gnuv3_rtti_type): Update.
1372 (gnuv3_get_typename_from_type_info): Update.
1373 (gnuv3_skip_trampoline): Update.
1374 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Update.
1375 * i386-tdep.c (i386_skip_main_prologue): Update.
1376 (i386_pe_skip_trampoline_code): Update.
1377 * ia64-tdep.c (ia64_convert_from_func_ptr_addr): Update.
1378 * infcall.c (get_function_name): Update.
1379 * linespec.c (minsym_found): Update.
1380 * linux-fork.c (info_checkpoints_command): Update.
1381 * m32c-tdep.c (m32c_m16c_address_to_pointer): Update.
1382 (m32c_m16c_pointer_to_address): Update.
1383 * maint.c (maintenance_translate_address): Update.
1384 * minsyms.c (add_minsym_to_hash_table): Update.
1385 (add_minsym_to_demangled_hash_table): Update.
1386 (lookup_minimal_symbol_mangled): Update.
1387 (lookup_minimal_symbol_demangled): Update.
1388 (lookup_minimal_symbol_linkage): Update.
1389 (lookup_minimal_symbol_text): Update.
1390 (lookup_minimal_symbol_by_pc_name): Update.
1391 (minimal_symbol_is_less_than): Update.
1392 (compact_minimal_symbols): Update.
1393 (build_minimal_symbol_hash_tables): Update.
1394 (find_solib_trampoline_target): Update.
1395 * mips-tdep.c (mips_stub_frame_sniffer): Update.
1396 (mips_skip_pic_trampoline_code): Update.
1397 * msp430-tdep.c (msp430_skip_trampoline_code): Update.
1398 * objc-lang.c (info_selectors_command): Update.
1399 (info_classes_command): Update.
1400 (find_methods): Update.
1401 (find_imps): Update.
1402 * p-valprint.c (pascal_val_print): Update.
1403 * ppc-linux-tdep.c (powerpc_linux_in_dynsym_resolve_code): Update.
1404 * ppc-sysv-tdep.c (convert_code_addr_to_desc_addr): Update.
1405 * printcmd.c (build_address_symbolic): Update.
1406 (info_symbol_command): Update.
1407 * psymtab.c (psymbol_name_matches): Update.
1408 (match_partial_symbol): Update.
1409 (lookup_partial_symbol): Update.
1410 (print_partial_symbols): Update.
1411 (sort_pst_symbols): Update.
1412 (maintenance_check_psymtabs): Update.
1413 * python/py-framefilter.c (py_print_frame): Update.
1414 * python/python.c (gdbpy_rbreak): Update.
1415 * record-btrace.c (btrace_get_bfun_name): Update.
1416 (btrace_call_history): Update.
1417 * rs6000-tdep.c (rs6000_skip_main_prologue): Update.
1418 (rs6000_skip_trampoline_code): Update.
1419 * sol-thread.c (info_cb): Update.
1420 * stabsread.c (scan_file_globals): Update.
1421 * stack.c (find_frame_funname): Update.
1422 (info_frame_command_core): Update.
1423 * symmisc.c (dump_msymbols): Update.
1424 * symtab.c (symbol_natural_name): Rename to..,
1425 (general_symbol_info::natural_name): ...this.
1426 (symbol_demangled_name): Rename to...
1427 (general_symbol_info::demangled_name): ...this.
1428 (symbol_search_name): Rename to...
1429 (general_symbol_info::search_name): ...this.
1430 (symbol_matches_search_name): Update.
1431 (find_pc_sect_line): Update.
1432 (skip_prologue_sal): Update.
1433 (search_symbols): Update.
1434 (print_msymbol_info): Update.
1435 (rbreak_command): Update.
1436 (completion_list_add_msymbol): Update.
1437 (completion_list_objc_symbol): Update.
1438 (get_msymbol_address): Update.
1439 * symtab.h (struct general_symbol_info): Add member functions
1440 natural_name (), linkage_name (), print_name (), demangled_name (),
1441 and search_name ().
1442 (SYMBOL_NATURAL_NAME): Update.
1443 (symbol_natural_name): Move to a member function on general_symbol_info.
1444 (SYMBOL_DEMANGLED_NAME): Update.
1445 (symbol_demangled_name): Move to a member function on
1446 general_symbol_info.
1447 (SYMBOL_SEARCH_NAME): Update.
1448 (symbol_search_name): Move to a member function on general_symbol_info.
1449 (MSYMBOL_NATURAL_NAME): Remove.
1450 (MSYMBOL_LINKAGE_NAME): Remove.
1451 (MSYMBOL_PRINT_NAME): Remove.
1452 (MSYMBOL_DEMANGLED_NAME): Remove.
1453 (MSYMBOL_SEARCH_NAME): Remove.
1454 * x86-tdep.c (x86_in_indirect_branch_thunk): Update.
1455
1456 2019-11-22 Christian Biesinger <cbiesinger@google.com>
1457
1458 * symtab.c (create_demangled_names_hash): Use per_bfd->
1459 minimal_symbol_count for computing the initial size, if greater
1460 than our default size.
1461
1462 2019-11-22 Tom de Vries <tdevries@suse.de>
1463
1464 * contrib/words.sh: Improve words extraction.
1465
1466 2019-11-22 Tom de Vries <tdevries@suse.de>
1467
1468 * contrib/words.sh: Combine sed invocations.
1469
1470 2019-11-21 Christian Biesinger <cbiesinger@google.com>
1471
1472 * Makefile.in: Update.
1473 * demangle.c: Rename to...
1474 * gdb-demangle.c: ..this.
1475 (is_cplus_marker): Change return type to bool.
1476 (_initialize_demangler): Rename to...
1477 (_initialize_gdb_demangle): ...this.
1478 * gdb-demangle.h (is_cplus_marker): Change return type to bool.
1479 * symtab.h (demangle): Remove declaration; instead include
1480 gdb-demangle.h.
1481
1482 2019-11-21 Tom Tromey <tromey@adacore.com>
1483
1484 * gdbsupport/format.c (format_pieces): Parse %I64d.
1485 * unittests/format_pieces-selftests.c (test_windows_formats): New
1486 function.
1487 (run_tests): Call it.
1488
1489 2019-11-21 Peeter Joot <peeter.joot@lzlabs.com>
1490
1491 Byte reverse display of variables with DW_END_big, DW_END_little
1492 (DW_AT_endianity) dwarf attributes if different than the native
1493 byte order.
1494 * ada-lang.c (ada_value_binop):
1495 Use type_byte_order instead of gdbarch_byte_order.
1496 * ada-valprint.c (printstr):
1497 (ada_val_print_string):
1498 * ada-lang.c (value_pointer):
1499 (ada_value_binop):
1500 Use type_byte_order instead of gdbarch_byte_order.
1501 * c-lang.c (c_get_string):
1502 Use type_byte_order instead of gdbarch_byte_order.
1503 * c-valprint.c (c_val_print_array):
1504 Use type_byte_order instead of gdbarch_byte_order.
1505 * cp-valprint.c (cp_print_class_member):
1506 Use type_byte_order instead of gdbarch_byte_order.
1507 * dwarf2loc.c (rw_pieced_value):
1508 Use type_byte_order instead of gdbarch_byte_order.
1509 * dwarf2read.c (read_base_type): Handle DW_END_big,
1510 DW_END_little
1511 * f-lang.c (f_get_encoding):
1512 Use type_byte_order instead of gdbarch_byte_order.
1513 * findvar.c (default_read_var_value):
1514 Use type_byte_order instead of gdbarch_byte_order.
1515 * gdbtypes.c (check_types_equal):
1516 Require matching TYPE_ENDIANITY_NOT_DEFAULT if set.
1517 (recursive_dump_type): Print TYPE_ENDIANITY_BIG,
1518 and TYPE_ENDIANITY_LITTLE if set.
1519 (type_byte_order): new function.
1520 * gdbtypes.h (TYPE_ENDIANITY_NOT_DEFAULT): New macro.
1521 (struct main_type) <flag_endianity_not_default>:
1522 New field.
1523 (type_byte_order): New function.
1524 * infcmd.c (default_print_one_register_info):
1525 Use type_byte_order instead of gdbarch_byte_order.
1526 * p-lang.c (pascal_printstr):
1527 Use type_byte_order instead of gdbarch_byte_order.
1528 * p-valprint.c (pascal_val_print):
1529 Use type_byte_order instead of gdbarch_byte_order.
1530 * printcmd.c (print_scalar_formatted):
1531 Use type_byte_order instead of gdbarch_byte_order.
1532 * solib-darwin.c (darwin_current_sos):
1533 Use type_byte_order instead of gdbarch_byte_order.
1534 * solib-svr4.c (solib_svr4_r_ldsomap):
1535 Use type_byte_order instead of gdbarch_byte_order.
1536 * stap-probe.c (stap_modify_semaphore):
1537 Use type_byte_order instead of gdbarch_byte_order.
1538 * target-float.c (target_float_same_format_p):
1539 Use type_byte_order instead of gdbarch_byte_order.
1540 * valarith.c (scalar_binop):
1541 (value_bit_index):
1542 Use type_byte_order instead of gdbarch_byte_order.
1543 * valops.c (value_cast):
1544 Use type_byte_order instead of gdbarch_byte_order.
1545 * valprint.c (generic_emit_char):
1546 (generic_printstr):
1547 (val_print_string):
1548 Use type_byte_order instead of gdbarch_byte_order.
1549 * value.c (unpack_long):
1550 (unpack_bits_as_long):
1551 (unpack_value_bitfield):
1552 (modify_field):
1553 (pack_long):
1554 (pack_unsigned_long):
1555 Use type_byte_order instead of gdbarch_byte_order.
1556 * findvar.c (unsigned_pointer_to_address):
1557 (signed_pointer_to_address):
1558 (unsigned_address_to_pointer):
1559 (address_to_signed_pointer):
1560 (default_read_var_value):
1561 (default_value_from_register):
1562 Use type_byte_order instead of gdbarch_byte_order.
1563 * gnu-v3-abi.c (gnuv3_make_method_ptr):
1564 Use type_byte_order instead of gdbarch_byte_order.
1565 * riscv-tdep.c (riscv_print_one_register_info):
1566 Use type_byte_order instead of gdbarch_byte_order.
1567
1568 2019-11-21 Simon Marchi <simon.marchi@polymtl.ca>
1569
1570 * top.c (current_ui_gdb_stdout_ptr): Spell out by hand.
1571 (current_ui_gdb_stdin_ptr): Likewise.
1572 (current_ui_gdb_stderr_ptr): Likewise.
1573 (current_ui_gdb_stdlog_ptr): Likewise.
1574 (current_ui_current_uiout_ptr): Likewise.
1575 (gen_ret_current_ui_field_ptr): Remove.
1576
1577 2019-11-21 Tom de Vries <tdevries@suse.de>
1578
1579 PR gdb/24956
1580 * cli/cli-script.c (execute_control_command): Only switch to
1581 INTERP_CONSOLE's ui_out when INTERP_MI is active.
1582
1583 2019-11-19 Tom Tromey <tom@tromey.com>
1584
1585 * tui/tui-win.c (tui_partial_win_by_name): Move from tui-data.c.
1586 Now static. Change type of "name".
1587 (tui_set_win_height_command): Don't copy "arg".
1588 * tui/tui-data.h (tui_partial_win_by_name): Don't declare.
1589 * tui/tui-data.c (tui_partial_win_by_name): Move to tui-win.c.
1590
1591 2019-11-19 Ali Tamur <tamur@google.com>
1592
1593 * dwarf2read.c (dw2_get_file_names_reader): Replace "if (attr)" with
1594 "if (attr != nullptr)".
1595 (dwarf2_find_base_address): Likewise.
1596 (dwarf2_build_include_psymtabs): Likewise.
1597 (read_cutu_die_from_dwo): Likewise.
1598 (read_func_scope): Likewise.
1599 (read_call_site_scope): Likewise.
1600 (dwarf2_get_pc_bounds): Likewise.
1601 (dwarf2_record_block_ranges): Likewise.
1602 (dwarf2_add_field): Likewise.
1603 (dwarf2_add_member_fn): Likewise.
1604 (read_structure_type): Likewise.
1605 (read_enumeration_type): Likewise.
1606 (read_array_type): Likewise.
1607 (read_array_order): Likewise.
1608 (read_set_type): Likewise.
1609 (read_common_block): Likewise.
1610 (read_tag_reference_type): Likewise.
1611 (read_tag_string_type): Likewise.
1612 (read_subroutine_type): Likewise.
1613 (read_base_type): Likewise.
1614 (read_subrange_type): Likewise.
1615 (new_symbol): Likewise.
1616 (prepare_one_comp_unit): Likewise.
1617
1618 2019-11-19 Tom Tromey <tromey@adacore.com>
1619
1620 * windows-nat.c (windows_nat_target::attach): Include GetLastError
1621 result in error when DebugActiveProcess fails.
1622
1623 2019-11-18 Sergio Durigan Junior <sergiodj@redhat.com>
1624 Pedro Alves <palves@redhat.com>
1625
1626 https://bugzilla.redhat.com/show_bug.cgi?id=1765117
1627 * target.c (target_stack::push): Call 'unpush' if there's a
1628 target on top of the stack.
1629
1630 2019-11-18 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1631
1632 * python/py-block.c (blpy_dealloc): Call tp_free.
1633 (blpy_block_syms_dealloc): Likewise.
1634 * python/py-finishbreakpoint.c (bpfinishpy_dealloc): Likewise.
1635 * python/py-inferior.c (infpy_dealloc): Likewise.
1636 * python/py-lazy-string.c (stpy_dealloc): Likewise.
1637 * python/py-linetable.c (ltpy_iterator_dealloc): Likewise.
1638 * python/py-symbol.c (sympy_dealloc): Likewise.
1639 * python/py-symtab.c (stpy_dealloc): Likewise.
1640 * python/py-type.c (typy_iterator_dealloc): Likewise.
1641
1642 2019-11-18 Christian Biesinger <cbiesinger@google.com>
1643
1644 * symtab.h (struct symbol) <owner>: Initialize explicitly in the
1645 constructor instead of using a class initializer.
1646
1647 2019-11-15 Christian Biesinger <cbiesinger@google.com>
1648
1649 * Makefile.in: Replace {posix,mingw}-strerror.c with safe-strerror.c.
1650 * configure: Regenerate.
1651 * configure.ac: Don't source common.host.
1652 * gdbsupport/common.host: Remove.
1653 * gdbsupport/mingw-strerror.c: Remove.
1654 * gdbsupport/posix-strerror.c: Rename to...
1655 * gdbsupport/safe-strerror.c: ...this.
1656
1657 2019-11-15 Christian Biesinger <cbiesinger@google.com>
1658
1659 * maint.c (scoped_command_stats::print_time): Use localtime_r
1660 instead of localtime (provided through gnulib if necessary).
1661 * nat/linux-osdata.c (time_from_time_t): Use ctime_r instead
1662 of ctime.
1663
1664 2019-11-15 Christian Biesinger <cbiesinger@google.com>
1665
1666 * gdbsupport/common-defs.h: Include time.h before pathmax.h to
1667 avoid compile errors.
1668
1669 2019-11-15 Christian Biesinger <cbiesinger@google.com>
1670
1671 * config.in: Regenerate.
1672 * configure: Regenerate.
1673 * gdbsupport/common.m4: No longer check for strerror_r.
1674 * gdbsupport/posix-strerror.c (safe_strerror): Always call the
1675 POSIX version of strerror_r, now that gnulib provides it if
1676 necessary.
1677
1678 2019-11-14 Christian Biesinger <cbiesinger@google.com>
1679
1680 * README (`configure' options): Update.
1681
1682 2019-11-14 Tom Tromey <tromey@adacore.com>
1683
1684 * eval.c (evaluate_subexp_standard) <BINOP_ASSIGN>: Do not pass an
1685 expected type for the RHS if the LHS is a convenience variable.
1686
1687 2019-11-14 Simon Marchi <simon.marchi@polymtl.ca>
1688
1689 * unittests/vec-utils-selftests.c (unordered_remove_tests::obj):
1690 Provide explicit default and copy constructor.
1691
1692 2019-11-14 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1693
1694 * python/py-finishbreakpoint.c (gdbpy_breakpoint_created):
1695 only call Py_INCREF (newbp) in the bppy_pending_object case.
1696
1697 2019-11-13 Tom Tromey <tromey@adacore.com>
1698
1699 PR build/25182:
1700 * psympriv.h (partial_symbol): Remove static assert.
1701 * symtab.h (general_symbol_info, symbol): Remove static assert.
1702
1703 2019-11-12 Andrew Burgess <andrew.burgess@embecosm.com>
1704
1705 * gdbsupport/format.c (format_pieces::format_pieces): Support
1706 printf 'z' size modifier.
1707 * gdbsupport/format.h (enum argclass): Add size_t_arg.
1708 * printcmd.c (ui_printf): Handle size_t_arg.
1709 * ui-out.c (ui_out::vmessage): Likewise.
1710 * unittests/format_pieces-selftests.c (test_format_int_sizes): New
1711 function.
1712 (run_tests): Call test_format_int_sizes.
1713
1714 2019-11-12 Christian Biesinger <cbiesinger@google.com>
1715
1716 * ada-exp.y (write_ambiguous_var): Update.
1717 * buildsym.c (add_symbol_to_list): Update.
1718 * dwarf2read.c (read_variable): Update.
1719 (new_symbol): Update.
1720 * jit.c (finalize_symtab): Update.
1721 * language.c (language_alloc_type_symbol): Update.
1722 * symtab.c (fixup_symbol_section): Update.
1723 (initialize_objfile_symbol_1): Move code to...
1724 (initialize_objfile_symbol): ...here. Remove now-unnecessary memset.
1725 (allocate_symbol): Update.
1726 (allocate_template_symbol): Update.
1727 (get_symbol_address): Update.
1728 * symtab.h (struct symbol): Inherit from general_symbol_info instead
1729 of having as a field, and add a constructor.
1730 (SYMBOL_VALUE): Update.
1731 (SYMBOL_VALUE_ADDRESS): Update.
1732 (SET_SYMBOL_VALUE_ADDRESS): Update.
1733 (SYMBOL_VALUE_BYTES): Update.
1734 (SYMBOL_VALUE_COMMON_BLOCK): Update.
1735 (SYMBOL_BLOCK_VALUE): Update.
1736 (SYMBOL_VALUE_CHAIN): Update.
1737 (SYMBOL_LANGUAGE): Update.
1738 (SYMBOL_SECTION): Update.
1739 (SYMBOL_OBJ_SECTION): Update.
1740 (SYMBOL_SET_LANGUAGE): Update.
1741 (SYMBOL_SET_LINKAGE_NAME): Update.
1742 (SYMBOL_SET_NAMES): Update.
1743 (SYMBOL_NATURAL_NAME): Update.
1744 (SYMBOL_LINKAGE_NAME): Update.
1745 (SYMBOL_DEMANGLED_NAME): Update.
1746 (SYMBOL_SEARCH_NAME): Update.
1747 (SYMBOL_MATCHES_SEARCH_NAME): Update.
1748 (struct symbol): Update.
1749 (struct template_symbol): Update.
1750 (struct rust_vtable_symbol): Update.
1751 * xcoffread.c (SYMBOL_DUP): Update.
1752
1753 2019-11-12 Tom Tromey <tom@tromey.com>
1754
1755 * tui/tui-layout.c (show_layout): Set current_layout.
1756 (show_source_disasm_command, show_data)
1757 (show_source_or_disasm_and_command): Don't set current_layout.
1758
1759 2019-11-12 Tom Tromey <tom@tromey.com>
1760
1761 * tui/tui-layout.c (_initialize_tui_layout): Move to end.
1762
1763 2019-11-12 Tom Tromey <tom@tromey.com>
1764
1765 * tui/tui-win.c (resize_message): New global.
1766 (show_tui_resize_message): New function.
1767 (tui_async_resize_screen): Print message if requested.
1768 (_initialize_tui_win): Add tui-resize-message setting.
1769 * NEWS: Add entry for new commands.
1770
1771 2019-11-11 Tom Tromey <tom@tromey.com>
1772
1773 * tui/tui.c (tui_initialize_readline): Add new bindable readline
1774 functions.
1775
1776 2019-11-11 Christian Biesinger <cbiesinger@google.com>
1777
1778 * nat/linux-osdata.c (user_from_uid): Use getpwuid_r.
1779
1780 2019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
1781
1782 * python/py-symbol.c (gdbpy_lookup_static_symbols): New
1783 function.
1784 * python/python-internal.h (gdbpy_lookup_static_symbols):
1785 Declare new function.
1786 * python/python.c (python_GdbMethods): Add
1787 gdb.lookup_static_symbols method.
1788 * NEWS: Mention gdb.lookup_static_symbols.
1789
1790 2019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
1791
1792 * python/py-symbol.c (gdbpy_lookup_static_symbol): Lookup in
1793 static block of current object file first. Also fix typo in
1794 header comment.
1795
1796 2019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
1797
1798 * stack.c (set_last_displayed_sal): Delete.
1799 (last_displayed_sal_valid): Delete.
1800 (last_displayed_pspace): Delete.
1801 (last_displayed_addr): Delete.
1802 (last_displayed_symtab): Delete.
1803 (last_displayed_line): Delete.
1804 (class last_displayed_symtab_info_type): New.
1805 (last_displayed_symtab_info): New static global variable.
1806 (print_frame_info): Call methods on last_displayed_symtab_info.
1807 (clear_last_displayed_sal): Update header comment, and make use of
1808 last_displayed_symtab_info.
1809 (last_displayed_sal_is_valid): Likewise.
1810 (get_last_displayed_pspace): Likewise.
1811 (get_last_displayed_addr): Likewise.
1812 (get_last_displayed_symtab): Likewise.
1813 (get_last_displayed_line): Likewise.
1814 (get_last_displayed_sal): Likewise.
1815 * stack.h (clear_last_displayed_sal): Update header comment.
1816 (last_displayed_sal_is_valid): Likewise.
1817 (get_last_displayed_pspace): Likewise.
1818 (get_last_displayed_addr): Likewise.
1819 (get_last_displayed_symtab): Likewise.
1820 (get_last_displayed_line): Likewise.
1821 (get_last_displayed_sal): Likewise.
1822
1823 2019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
1824
1825 * stack.c (frame_show_address): Convert return type to bool.
1826 * stack.h (frame_show_address): Likewise, and update header
1827 comment.
1828
1829 2019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
1830
1831 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add new file to the list.
1832 * unittests/vec-utils-selftests.c: New file.
1833 * gdbsupport/gdb_vecs.h (unordered_remove): Avoid self move assign.
1834
1835 2019-11-10 Tom Tromey <tom@tromey.com>
1836
1837 * tui/tui-wingeneral.c (tui_unhighlight_win): Use can_box.
1838 (tui_highlight_win): Likewise.
1839 (tui_win_info::check_and_display_highlight_if_needed): Likewise.
1840 * tui/tui-data.h (struct tui_win_info) <can_highlight>: Remove.
1841 * tui/tui-command.h (struct tui_cmd_window) <tui_cmd_window>:
1842 Don't set can_highlight.
1843
1844 2019-11-10 Tom Tromey <tom@tromey.com>
1845
1846 * cli/cli-style.h (class cli_style_option) <cli_style_option>:
1847 Remove unused declaration.
1848
1849 2019-11-08 Tom Tromey <tromey@adacore.com>
1850
1851 * top.c (read_command_file): Update.
1852 (command_line_input): Make return type const.
1853 * python/py-gdb-readline.c: Update.
1854 * linespec.c (decode_line_2): Update.
1855 * defs.h (command_line_input): Make return type const.
1856 * cli/cli-script.c (read_next_line): Make return type const.
1857 * ada-lang.c (get_selections): Update.
1858
1859 2019-11-06 Christian Biesinger <cbiesinger@google.com>
1860
1861 * linux-tdep.c (linux_info_proc): Use strtok_r instead of strtok.
1862 * mi/mi-main.c (output_cores): Likewise.
1863 * nat/linux-osdata.c (linux_xfer_osdata_cpus): Likewise.
1864 (linux_xfer_osdata_modules): Likewise.
1865 * remote.c (register_remote_support_xml): Likewise.
1866 * sparc64-tdep.c (adi_is_addr_mapped): Likewise.
1867 * xml-syscall.c (syscall_create_syscall_desc): Likewise.
1868
1869 2019-11-06 Tom Tromey <tom@tromey.com>
1870
1871 * tui/tui-interp.c: Don't include readline.h.
1872 * tui/tui-hooks.c: Don't include readline.h.
1873 * symmisc.c: Include tilde.h, not readline.h.
1874 * symfile.c: Include tilde.h, not readline.h.
1875 * source.c: Include tilde.h, not readline.h.
1876 * solib.c: Include tilde.h, not readline.h.
1877 * psymtab.c: Include tilde.h, not readline.h.
1878 * exec.c: Include tilde.h, not readline.h.
1879 * corelow.c: Include tilde.h, not readline.h.
1880 * cli/cli-dump.c: Include tilde.h, not readline.h.
1881 * cli/cli-cmds.c: Don't include readline.h.
1882
1883 2019-11-05 Tom Tromey <tom@tromey.com>
1884
1885 * tui/tui-disasm.c (struct tui_asm_line) <addr_size>: New member.
1886 (tui_disassemble): Set addr_size.
1887 (tui_disasm_window::set_contents): Use addr_size.
1888
1889 2019-11-05 Tom Tromey <tom@tromey.com>
1890
1891 * rust-lang.c (rust_language_defn): Update.
1892 * python/py-value.c (valpy_string): Call c_get_string.
1893 * p-lang.c (pascal_language_defn): Update.
1894 * opencl-lang.c (opencl_language_defn): Update.
1895 * objc-lang.c (objc_language_defn): Update.
1896 * m2-lang.c (m2_language_defn): Update.
1897 * language.c (unknown_language_defn, auto_language_defn): Update.
1898 (default_get_string): Remove.
1899 * guile/scm-value.c (gdbscm_value_to_string): Use c_get_string.
1900 * go-lang.c (go_language_defn): Update.
1901 * f-lang.c (f_language_defn): Update.
1902 * d-lang.c (d_language_defn): Update.
1903 * c-lang.c (c_language_defn, cplus_language_defn)
1904 (asm_language_defn, minimal_language_defn): Update.
1905 * ada-lang.c (ada_language_defn): Update.
1906 * language.h (struct language_defn) <la_get_string>: Remove.
1907 (LA_GET_STRING): Remove.
1908 (default_get_string): Don't declare.
1909
1910 2019-11-05 Tom Tromey <tom@tromey.com>
1911
1912 * tui/tui-source.h (struct tui_source_window): Inline
1913 constructor. Remove destructor.
1914 <style_changed, m_observable>: Move to superclass.
1915 * tui/tui-winsource.h (tui_copy_source_line): Declare.
1916 (struct tui_source_window_base): Move private members to end.
1917 <style_changed, m_observable>: Move from tui_source_window.
1918 * tui/tui-winsource.c (tui_copy_source_line): Move from
1919 tui-source.c. Rename from copy_source_line. Add special handling
1920 for negative line number.
1921 (tui_source_window_base::style_changed): Move from
1922 tui_source_window.
1923 (tui_source_window_base): Register observer.
1924 (~tui_source_window_base): New.
1925 * tui/tui-source.c (copy_source_line): Move to tui-winsource.c;
1926 rename.
1927 (tui_source_window::set_contents): Use tui_copy_source_line.
1928 (tui_source_window::tui_source_window): Move to tui-source.h.
1929 (tui_source_window::~tui_source_window): Remove.
1930 (tui_source_window::style_changed): Move to superclass.
1931 * tui/tui-disasm.c (tui_disassemble): Create string file with
1932 styling, when possible. Add "addr_size" parameter.
1933 (tui_disasm_window::set_contents): Use tui_copy_source_line.
1934 Don't compute maximum size.
1935 (len_without_escapes): New function
1936
1937 2019-11-05 Tom Tromey <tom@tromey.com>
1938
1939 * tui/tui-winsource.h (struct tui_source_element) <line>: Now a
1940 std::string.
1941 * tui/tui-winsource.c (tui_show_source_line): Update.
1942 * tui/tui-source.c (tui_source_window::set_contents): Update.
1943 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
1944
1945 2019-11-05 Christian Biesinger <cbiesinger@google.com>
1946
1947 * symtab.h (gdb_static_assert): Put && operator at the beginning
1948 of the line instead of the end.
1949
1950 2019-11-04 Christian Biesinger <cbiesinger@google.com>
1951
1952 * psympriv.h: Add static_asserts for sizeof (general_symbol_info)
1953 and sizeof (symbol).
1954 * symtab.h: Add a static_assert for sizeof (partial_symbol).
1955
1956 2019-11-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1957
1958 * NEWS (Changes since GDB 8.3): Document Solaris 10 removal.
1959 * configure.host: Mark *-*-solaris2.10* obsolete.
1960 * configure.tgt: Mark Solaris < 11 obsolete.
1961 * MAINTAINERS (Target Instruction Set Architectures) <sparc>:
1962 Update target triplet.
1963
1964 2019-11-01 Tom Tromey <tromey@adacore.com>
1965
1966 * utils.c (print_sys_errmsg): Simplify.
1967
1968 2019-11-01 Tom Tromey <tromey@adacore.com>
1969
1970 * gdbsupport/mingw-strerror.c (safe_strerror): Constify result.
1971
1972 2019-11-01 Christian Biesinger <cbiesinger@google.com>
1973
1974 * configure: Regenerate.
1975 * configure.ac: Remove check for strerror_r.
1976 * gdbsupport/common.m4: Check for strerror_r.
1977
1978 2019-11-01 Luis Machado <luis.machado@linaro.org>
1979
1980 PR gdb/25124
1981
1982 * arm-tdep.c (arm_per_objfile): Rename to ...
1983 (arm_per_bfd): ... this.
1984 (arm_objfile_data_key): Rename to ...
1985 (arm_bfd_data_key): ... this.
1986 (arm_find_mapping_symbol): Adjust access to new bfd_key-based
1987 data.
1988 (arm_record_special_symbol): Likewise.
1989
1990 2019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
1991
1992 * ada-typeprint.c (ada_print_typedef): Don't print newline at the
1993 end.
1994 * c-typeprint.c (c_print_typedef): Likewise.
1995 * f-typeprint.c (f_print_typedef): Likewise.
1996 * m2-typeprint.c (m2_print_typedef): Likewise.
1997 * p-typeprint.c (pascal_print_typedef): Likewise.
1998 * rust-lang.c (rust_print_typedef): Likewise.
1999 * symtab.c (print_symbol_info): Print a newline after calling
2000 typedef_print.
2001
2002 2019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
2003
2004 * symtab.c (info_module_cmdlist): New variable.
2005 (info_module_command): New function.
2006 (search_module_symbols): New function.
2007 (info_module_subcommand): New function.
2008 (struct info_modules_var_func_options): New struct.
2009 (info_modules_var_func_options_defs): New variable.
2010 (make_info_modules_var_func_options_def_group): New function.
2011 (info_module_functions_command): New function.
2012 (info_module_variables_command): New function.
2013 (info_module_var_func_command_completer): New function.
2014 (_initialize_symtab): Register new 'info module functions' and
2015 'info module variables' commands.
2016 * symtab.h (typedef symbol_search_in_module): New typedef.
2017 (search_module_symbols): Declare new function.
2018 * NEWS: Mention new commands.
2019
2020 2019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
2021
2022 * dwarf2read.c (dw2_symtab_iter_next): Handle MODULE_DOMAIN.
2023 (dw2_expand_marked_cus): Handle MODULES_DOMAIN.
2024 (dw2_debug_names_iterator::next): Handle MODULE_DOMAIN and
2025 MODULES_DOMAIN.
2026 (scan_partial_symbols): Only create partial module symbols for non
2027 declarations.
2028 * psymtab.c (recursively_search_psymtabs): Handle MODULE_DOMAIN
2029 and MODULES_DOMAIN.
2030 * symtab.c (search_domain_name): Likewise.
2031 (search_symbols): Likewise.
2032 (print_symbol_info): Likewise.
2033 (symtab_symbol_info): Likewise.
2034 (info_modules_command): New function.
2035 (_initialize_symtab): Register 'info modules' command.
2036 * symtab.h (enum search_domain): Add MODULES_DOMAIN.
2037 * NEWS: Mention new 'info modules' command.
2038
2039 2019-10-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2040
2041 * NEWS: Mention $_gdb_setting, $_gdb_setting_str, $_gdb_maint_setting
2042 and $_gdb_maint_setting_str.
2043
2044 2019-10-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2045
2046 * cli/cli-cmds.c (setting_cmd, value_from_setting)
2047 (gdb_setting_internal_fn, gdb_maint_setting_internal_fn)
2048 (str_value_from_setting, gdb_setting_str_internal_fn)
2049 (gdb_maint_setting_str_internal_fn): New functions.
2050 (_initialize_cli_cmds): Define the new convenience functions.
2051 * gdb/cli/cli-setshow.h (get_setshow_command_value_string): Constify.
2052 * gdb/cli/cli-setshow.c (get_setshow_command_value_string): Constify.
2053
2054 2019-10-31 Christian Biesinger <cbiesinger@google.com>
2055
2056 * agent.c (set_can_use_agent): When the setting is turned on,
2057 look up agent symbols if we don't have them yet.
2058 (agent_new_objfile): Don't look up agent symbols when the agent
2059 setting is off.
2060
2061 2019-10-31 Christian Biesinger <cbiesinger@google.com>
2062
2063 * config.in: Regenerate.
2064
2065 2019-10-31 Christian Biesinger <cbiesinger@google.com>
2066
2067 * configure: Regenerate.
2068 * configure.ac: Check for strerror_r.
2069 * gdbsupport/common-utils.h (safe_strerror): Change return value
2070 to const char * and document that this function is now threadsafe.
2071 * gdbsupport/posix-strerror.c (safe_strerror): Make buf
2072 thread_local and call strerror_r, if available.
2073 * utils.c (perror_string): Update.
2074 (print_sys_errmsg): Update.
2075
2076 2019-10-31 Luis Machado <luis.machado@linaro.org>
2077
2078 * arm-tdep.c (arm_exidx_data_key): Use bfd_key instead of
2079 objfile_key.
2080 (arm_exidx_new_objfile): Adjust to use objfile->obfd instead of
2081 objfile to fetch per-bfd data.
2082 (arm_find_exidx_entry): Likewise.
2083
2084 2019-10-31 Christian Biesinger <cbiesinger@google.com>
2085
2086 * gdbsupport/agent.c (debug_agent): Change type to bool.
2087 (use_agent): Likewise.
2088 (all_agent_symbols_look_up): Likewise.
2089 (agent_loaded_p): Change return value to bool.
2090 (agent_look_up_symbols): Update.
2091 (agent_capability_check): Change return value to bool.
2092 * gdbsupport/agent.h (agent_loaded_p): Likewise.
2093 (debug_agent): Change type to bool.
2094 (use_agent): Likewise.
2095 (agent_capability_check): Change return value to bool.
2096
2097 2019-10-30 Christian Biesinger <cbiesinger@google.com>
2098
2099 * minsyms.c (clear_minimal_symbol_hash_tables): New function.
2100 (build_minimal_symbol_hash_tables): Code to clear the table moved
2101 to clear_minimal_symbol_hash_tables.
2102 (minimal_symbol_reader::install): Call clear_minimal_symbol_hash_tables
2103 when needed.
2104
2105 2019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
2106
2107 * infcmd.c: Remove includes.
2108 * infrun.c: Remove includes.
2109
2110 2019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
2111
2112 * ada-lang.h (GROW_VECT): Move to ada-lang.c.
2113 (grow_vect): Remove declaration.
2114 (ada_type_of_array): Remove declaration.
2115 (ada_update_initial_language): Remove declaration.
2116 (ada_fold_name): Remove declaration.
2117 (ada_fill_in_ada_prototype): Remove declaration.
2118 (user_select_syms): Remove declaration.
2119 (get_selections): Remove declaration.
2120 (ada_tag_type): Remove declaration.
2121 (ada_value_tag): Remove declaration.
2122 (ada_is_others_clause): Remove declaration.
2123 (ada_in_variant): Remove declaration.
2124 (ada_value_struct_elt): Remove declaration.
2125 (ada_attribute_name): Remove declaration.
2126 (ada_system_address_type): Remove declaration.
2127 * ada-lang.c (ada_watch_location_expression): Make static.
2128 (GROW_VECT): Move here from ada-lang.h.
2129 (grow_vect): Make static.
2130 (ada_update_initial_language): Make static.
2131 (ada_fold_name): Make static.
2132 (ada_type_of_array): Make static.
2133 (encoded_ordered_before): Move up.
2134 (sort_choices): Move up.
2135 (print_signatures): Move up.
2136 (ada_print_symbol_signature): Move up.
2137 (get_selections): Move up and make static.
2138 (user_select_syms): Move up and make static.
2139 (ada_value_struct_elt): Move up and make static.
2140 (ada_tag_type): Make static.
2141 (ada_value_tag): Make static.
2142 (ada_is_others_clause): Make static.
2143 (ada_in_variant): Make static.
2144 (ada_attribute_name): Make static.
2145
2146 2019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
2147
2148 * ada-lang.c: Remove includes.
2149 * ada-typeprint.c: Remove includes.
2150 * ada-valprint.c: Remove includes.
2151
2152 2019-10-29 Simon Marchi <simon.marchi@efficios.com>
2153
2154 * addrmap.c: Add static assertions of type size, moved from
2155 _initialize_addrmap.
2156 (_initialize_addrmap): Remove.
2157
2158 2019-10-29 Christian Biesinger <cbiesinger@google.com>
2159
2160 * coffread.c (record_minimal_symbol): Update.
2161 (process_coff_symbol): Update.
2162 * dbxread.c (read_dbx_symtab): Update.
2163 * dwarf2read.c (add_partial_symbol): Update.
2164 (fixup_go_packaging): Update.
2165 (load_partial_dies): Update.
2166 (new_symbol): Update.
2167 * elfread.c (record_minimal_symbol): Change signature to use
2168 gdb::string_view instead of name+len.
2169 (elf_symtab_read): Update.
2170 (elf_rel_plt_read): Update.
2171 * mdebugread.c (parse_partial_symbols): Update.
2172 (handle_psymbol_enumerators): Update.
2173 (new_symbol): Update.
2174 * minsyms.c (minimal_symbol_reader::record_full): Change signature
2175 to use gdb::string_view instead of name+len.
2176 * minsyms.h (class minimal_symbol_reader) <record_full>: Likewise.
2177 * psympriv.h (add_psymbol_to_list): Likewise.
2178 * psymtab.c (add_psymbol_to_bcache): Likewise.
2179 (add_psymbol_to_list): Likewise.
2180 * stabsread.c (define_symbol): Update.
2181 * symtab.c (symbol_set_names): Change signature to use gdb::string_view.
2182 * symtab.h (SYMBOL_SET_NAMES): Likewise.
2183 (symbol_set_names): Likewise.
2184 * xcoffread.c (scan_xcoff_symtab): Update.
2185
2186 2019-10-29 Christian Biesinger <cbiesinger@google.com>
2187
2188 * symtab.h (symbol_set_names): Document that copy_name must be
2189 set to true for non-nullterminated strings.
2190 * symtab.c (symbol_set_names): Only make a nullterminated copy of
2191 linkage_name if the entry was not found and we need to demangle.
2192
2193 2019-10-29 Christian Biesinger <cbiesinger@google.com>
2194
2195 * Makefile.in (HFILES_NO_SRCDIR): Add gdb_binary_search.h.
2196 * dwarf2-frame.c (bsearch_fde_cmp): Update.
2197 (dwarf2_frame_find_fde): Replace bsearch with gdb::binary_search.
2198 * gdbsupport/gdb_binary_search.h: New file.
2199
2200 2019-10-29 Christian Biesinger <cbiesinger@google.com>
2201
2202 * NEWS: Mention new --with-system-gdbinit-dir option.
2203 * config.in: Regenerate.
2204 * configure: Regenerate.
2205 * configure.ac: Add new option --with-system-gdbinit-dir.
2206 * extension.c (get_ext_lang_of_file): Return extension_language_gdb
2207 for a ".gdb" suffix.
2208 * main.c (get_init_files): Change system_gdbinit argument to
2209 a vector and return the files in SYSTEM_GDBINIT_DIR in
2210 addition to SYSTEM_GDBINIT.
2211 (captured_main_1): Update.
2212 (print_gdb_help): Update.
2213 * top.c (print_gdb_configuration): Also print the value of
2214 SYSTEM_GDBINIT_DIR.
2215
2216 2019-10-28 Christian Biesinger <cbiesinger@google.com>
2217
2218 * gdbsupport/common-utils.h (startswith): Add an overloaded version
2219 that takes gdb::string_view arguments.
2220
2221 2019-10-26 Tom de Vries <tdevries@suse.de>
2222
2223 * aarch64-linux-tdep.c: Fix typos in comments.
2224 * aarch64-tdep.c: Same.
2225 * ada-lang.c: Same.
2226 * amd64-nat.c: Same.
2227 * arc-tdep.c: Same.
2228 * arch/aarch64-insn.c: Same.
2229 * block.c: Same.
2230 * breakpoint.h: Same.
2231 * btrace.h: Same.
2232 * c-varobj.c: Same.
2233 * cli/cli-decode.c: Same.
2234 * cli/cli-script.c: Same.
2235 * cli/cli-utils.h: Same.
2236 * coff-pe-read.c: Same.
2237 * coffread.c: Same.
2238 * compile/compile-cplus-symbols.c: Same.
2239 * compile/compile-object-run.c: Same.
2240 * completer.c: Same.
2241 * corelow.c: Same.
2242 * cp-support.c: Same.
2243 * demangle.c: Same.
2244 * dwarf-index-write.c: Same.
2245 * dwarf2-frame.c: Same.
2246 * dwarf2-frame.h: Same.
2247 * eval.c: Same.
2248 * frame-base.h: Same.
2249 * frame.h: Same.
2250 * gdbcmd.h: Same.
2251 * gdbtypes.h: Same.
2252 * gnu-nat.c: Same.
2253 * guile/scm-objfile.c: Same.
2254 * i386-tdep.c: Same.
2255 * i386-tdep.h: Same.
2256 * infcall.c: Same.
2257 * infcall.h: Same.
2258 * linux-nat.c: Same.
2259 * m68k-tdep.c: Same.
2260 * macroexp.c: Same.
2261 * memattr.c: Same.
2262 * mi/mi-cmd-disas.c: Same.
2263 * mi/mi-getopt.h: Same.
2264 * mi/mi-main.c: Same.
2265 * minsyms.c: Same.
2266 * nat/aarch64-sve-linux-sigcontext.h: Same.
2267 * objfiles.h: Same.
2268 * ppc-linux-nat.c: Same.
2269 * ppc-linux-tdep.c: Same.
2270 * ppc-tdep.h: Same.
2271 * progspace.h: Same.
2272 * prologue-value.h: Same.
2273 * python/py-evtregistry.c: Same.
2274 * python/py-instruction.h: Same.
2275 * record-btrace.c: Same.
2276 * record-full.c: Same.
2277 * remote.c: Same.
2278 * rs6000-tdep.c: Same.
2279 * ser-tcp.c: Same.
2280 * sol-thread.c: Same.
2281 * sparc-sol2-tdep.c: Same.
2282 * sparc64-tdep.c: Same.
2283 * stabsread.c: Same.
2284 * symfile.c: Same.
2285 * symtab.h: Same.
2286 * target.c: Same.
2287 * tracepoint.c: Same.
2288 * tui/tui-data.h: Same.
2289 * tui/tui-io.c: Same.
2290 * tui/tui-win.c: Same.
2291 * tui/tui.c: Same.
2292 * unittests/rsp-low-selftests.c: Same.
2293 * user-regs.h: Same.
2294 * utils.c: Same.
2295 * utils.h: Same.
2296 * valarith.c: Same.
2297 * valops.c: Same.
2298 * valprint.c: Same.
2299 * valprint.h: Same.
2300 * value.c: Same.
2301 * value.h: Same.
2302 * varobj.c: Same.
2303 * x86-nat.h: Same.
2304 * xtensa-tdep.c: Same.
2305
2306 2019-10-25 Ali Tamur <tamur@google.com>
2307
2308 * charset.c (find_charset_names): Reflect API change.
2309
2310 2019-10-25 Christian Biesinger <cbiesinger@google.com>
2311
2312 * symtab.c (struct demangled_name_entry): Change demangled name
2313 to a unique_xmalloc_ptr<char>, now that we don't allocate it as
2314 part of the struct anymore.
2315 (symbol_set_names): No longer obstack allocate + copy the demangled
2316 name, just store the allocated name from bfd.
2317
2318 2019-10-25 Tom Tromey <tromey@adacore.com>
2319
2320 * dwarf2-frame.c (dwarf2_cie_table): Now a typedef.
2321 (bsearch_cie_cmp, add_cie): Remove.
2322 (find_cie): Reimplement.
2323 (decode_frame_entry_1, decode_frame_entry): Change type. Update.
2324 (dwarf2_build_frame_info): Update.
2325
2326 2019-10-24 H.J. Lu <hongjiu.lu@intel.com>
2327
2328 PR gdb/25126
2329 * symfile.c (reread_symbols): Call forget_cached_source_info to
2330 clear the stale source cache.
2331
2332 2019-10-24 Christian Biesinger <cbiesinger@google.com>
2333
2334 * configure: Regenerate.
2335 * configure.ac: Remove code that sets python_has_threads.
2336
2337 2019-10-24 Christian Biesinger <cbiesinger@google.com>
2338
2339 * config.in: Regenerate.
2340 * configure: Regenerate.
2341 * configure.ac: Remove the code that uses sed to get the python
2342 version and defines HAVE_LIBPYTHON2_6 / HAVE_LIBPYTHON2_7.
2343
2344 2019-10-24 Andrew Burgess <andrew.burgess@embecosm.com>
2345
2346 * python/py-progspace.c (pspy_block_for_pc): Return None for all
2347 error paths.
2348
2349 2019-10-23 Tom Tromey <tom@tromey.com>
2350
2351 * arc-tdep.c: Remove ".." from include.
2352 * frv-tdep.c: Remove ".." from include.
2353 * lm32-tdep.c: Remove ".." from include.
2354 * microblaze-tdep.c: Remove ".." from include.
2355 * or1k-tdep.h: Remove ".." from include.
2356 * s12z-tdep.c: Remove ".." from include.
2357 * Makefile.in (OPCODES_CFLAGS): Add comment.
2358 (TOP_CFLAGS): New variable.
2359 (INTERNAL_CFLAGS_BASE): Add TOP_CFLAGS.
2360
2361 2019-10-23 Tom Tromey <tom@tromey.com>
2362
2363 * Makefile.in (READLINE_DIR): Update.
2364
2365 2019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
2366
2367 * infcall.c (call_function_by_hand_dummy): Fix the function
2368 comment. And extract out a code section into...
2369 (reserve_stack_space): ...this new function.
2370
2371 2019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
2372
2373 * infcall.c (value_arg_coerce): Remove an unused parameter.
2374 (call_function_by_hand_dummy): Update the call to
2375 'value_arg_coerce'.
2376
2377 2019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
2378
2379 * infcall.c (call_function_by_hand_dummy): Refactor.
2380
2381 2019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
2382
2383 * MAINTAINERS (Write After Approval): Add Tankut Baris Aktemur.
2384
2385 2019-10-23 Tom Tromey <tom@tromey.com>
2386
2387 * configure: Rebuild.
2388 * configure.ac: Don't check for sigprocmask.
2389 * gdbsupport/common.m4 (GDB_AC_COMMON): Check for sigprocmask.
2390
2391 2019-10-23 Tom Tromey <tom@tromey.com>
2392
2393 * configure: Rebuild.
2394 * acinclude.m4: Use m4_include, not sinclude.
2395
2396 2019-10-23 Tom de Vries <tdevries@suse.de>
2397
2398 PR breakpoints/24687
2399 * symtab.c (iterate_over_some_symtabs): Apply gdb_realpath on fullname.
2400
2401 2019-10-22 Christian Biesinger <cbiesinger@google.com>
2402
2403 * symtab.c (struct demangled_name_entry) <language>: Change from
2404 bitfield to regular variable.
2405
2406 2019-10-22 Christian Biesinger <cbiesinger@google.com>
2407
2408 * symtab.c (struct demangled_name_entry): Add a constructor.
2409 (free_demangled_name_entry): New function to call the destructor
2410 for demangled_name_entry.
2411 (create_demangled_names_hash): Pass free_demangled_name_entry to
2412 htab_create_alloc.
2413 (symbol_set_names): Call placement new for demangled_name_entry.
2414 * utils.c: No longer include xxhash.h here, now that fast_hash
2415 is inlined in the header.
2416 * utils.h: Instead, include it here.
2417
2418 2019-10-22 Christian Biesinger <cbiesinger@google.com>
2419
2420 * Makefile.in: Link with libxxhash.
2421 * config.in: Regenerate.
2422 * configure: Regenerate.
2423 * configure.ac: Search for libxxhash.
2424 * utils.c (fast_hash): Use xxhash if present.
2425
2426 2019-10-22 Christian Biesinger <cbiesinger@google.com>
2427
2428 * utils.h (fast_hash): New function.
2429 * symtab.c (hash_demangled_name_entry): Call new function
2430 fast_hash.
2431
2432 2019-10-22 Christian Biesinger <cbiesinger@google.com>
2433
2434 * symtab.c (struct demangled_name_entry): Change type of mangled
2435 to gdb::string_view. Also adds a constructor that takes the
2436 mangled name.
2437 (hash_demangled_name_entry): Update.
2438 (eq_demangled_name_entry): Update.
2439 (free_demangled_name_entry): New function to call the destructor
2440 now that this is not a POD anymore.
2441 (create_demangled_names_hash): Pass free_demangled_name_entry to
2442 htab_create_alloc.
2443 (symbol_set_names): Update.
2444
2445 2019-10-21 Ali Tamur <tamu@google.com>
2446
2447 * dwarf2read.c (dir_index): Change type.
2448 (file_name_index): Likewise.
2449 (line_header::include_dir_at): Change comment and implementation on
2450 whether it is DWARF 5.
2451 (line_header::is_valid_file_index): New function.
2452 (line_header::file_name_at): Change comment and implementation on
2453 whether it is DWARF 5.
2454 (line_header::file_names): Change to private field renamed as
2455 m_file_names and introduce a new accessor method.
2456 (line_header::file_names_size): New method.
2457 (line_header::include_dirs): Change to private field and rename as
2458 m_include_dirs.
2459 (dw2_get_file_names_reader): Define local var at a smaller scope and
2460 reflect API change.
2461 (dwarf2_cu::setup_type_unit_groups): Reflect API change.
2462 (process_structure_scope): Likewise.
2463 (line_header::add_include_dir): Change message and reflect renaming.
2464 (line_header::add_file_name): Likewise.
2465 (read_formatted_entries): Handle DW_FORM_data16.
2466 (dwarf_decode_line_header): Fix line header length calculation.
2467 (psymtab_include_file_name): Change comment and API.
2468 (lnp_state_machine::m_file): Update comment and reflect type change.
2469 (lnp_state_machine::record_line): Reflect type change.
2470 (dwarf_decode_lines): Reflect API change.
2471 (file_file_name): Likewise.
2472 (file_full_name): Likewise.
2473
2474 2019-10-21 Andrew Burgess <andrew.burgess@embecosm.com>
2475
2476 * objfiles.c (sort_cmp): Ensure that !(a < a) holds true.
2477
2478 2019-10-21 Tom Tromey <tom@tromey.com>
2479
2480 * tui/tui-winsource.h (tui_exec_info_content): Remove typedef.
2481
2482 2019-10-21 Tom Tromey <tom@tromey.com>
2483
2484 * configure.ac (nm.h): Conditionally create nm.h link. Subst
2485 NM_H. Use AC_CONFIG_LINKS.
2486 * configure: Rebuild.
2487 * Makefile.in (NM_H): New variable.
2488 (generated_files): Add NM_H. Remove gcore.
2489 (nm.h, stamp-nmh): New targets.
2490
2491 2019-10-20 Tom Tromey <tom@tromey.com>
2492
2493 * objfiles.h (unlink_objfile, put_objfile_before): Don't declare.
2494 * objfiles.c (unlink_objfile): Move earlier. Now static. Remove
2495 obsolete comment.
2496 (put_objfile_before): Now static.
2497
2498 2019-10-19 Simon Marchi <simon.marchi@polymtl.ca>
2499
2500 * gdbsupport/common-utils.h (startswith): Change return type to
2501 bool.
2502
2503 2019-10-19 Christian Biesinger <cbiesinger@google.com>
2504
2505 * bcache.c (bcache::print_statistics): Use std::sort instead of qsort.
2506 * breakpoint.c (bp_locations_compare): Rename to...
2507 (bp_location_is_less_than): ...this, and change to std::sort semantics.
2508 (update_global_location_list): Use std::sort instead of qsort.
2509 * buildsym.c (compare_line_numbers): Rename to...
2510 (lte_is_less_than): ...this, and change to std::sort semantics.
2511 (buildsym_compunit::end_symtab_with_blockvector): Use std::sort
2512 instead of qsort.
2513 * disasm.c (compare_lines): Rename to...
2514 (line_is_less_than): ...this, and change to std::sort semantics.
2515 (do_mixed_source_and_assembly_deprecated): Call std::sort instead
2516 of qsort.
2517 * dwarf2-frame.c (qsort_fde_cmp): Rename to...
2518 (fde_is_less_than): ...this, and change to std::sort semantics.
2519 (dwarf2_build_frame_info): Call std::sort instead of qsort.
2520 * mdebugread.c (compare_blocks):
2521 (block_is_less_than): ...this, and change to std::sort semantics.
2522 (sort_blocks): Call std::sort instead of qsort.
2523 * objfiles.c (qsort_cmp): Rename to...
2524 (sort_cmp): ...this, and change to std::sort semantics.
2525 (update_section_map): Call std::sort instead of qsort.
2526 * remote.c (compare_pnums): Remove.
2527 (map_regcache_remote_table): Call std::sort instead of qsort.
2528 * utils.c (compare_positive_ints): Remove.
2529 * utils.h (compare_positive_ints): Remove.
2530 * xcoffread.c (compare_lte): Remove.
2531 (arrange_linetable): Call std::sort instead of qsort.
2532
2533 2019-10-19 Sergio Durigan Junior <sergiodj@redhat.com>
2534
2535 * symfile.c (init_entry_point_info): Fix typo.
2536 * i386-darwin-tdep.c (darwin_dwarf_signal_frame_p): Fix typo.
2537
2538 2019-10-18 Tom de Vries <tdevries@suse.de>
2539
2540 * aarch64-tdep.c: Fix typos in comments.
2541 * ada-lang.c: Same.
2542 * ada-tasks.c: Same.
2543 * alpha-tdep.c: Same.
2544 * alpha-tdep.h: Same.
2545 * amd64-nat.c: Same.
2546 * amd64-windows-tdep.c: Same.
2547 * arc-tdep.c: Same.
2548 * arc-tdep.h: Same.
2549 * arch-utils.c: Same.
2550 * arm-nbsd-tdep.c: Same.
2551 * arm-tdep.c: Same.
2552 * ax-gdb.c: Same.
2553 * blockframe.c: Same.
2554 * btrace.c: Same.
2555 * c-varobj.c: Same.
2556 * coff-pe-read.c: Same.
2557 * coffread.c: Same.
2558 * cris-tdep.c: Same.
2559 * darwin-nat.c: Same.
2560 * dbxread.c: Same.
2561 * dcache.c: Same.
2562 * disasm.c: Same.
2563 * dtrace-probe.c: Same.
2564 * dwarf-index-write.c: Same.
2565 * dwarf2-frame-tailcall.c: Same.
2566 * dwarf2-frame.c: Same.
2567 * dwarf2read.c: Same.
2568 * eval.c: Same.
2569 * exceptions.c: Same.
2570 * fbsd-tdep.c: Same.
2571 * findvar.c: Same.
2572 * frame.c: Same.
2573 * frv-tdep.c: Same.
2574 * gnu-v3-abi.c: Same.
2575 * go32-nat.c: Same.
2576 * h8300-tdep.c: Same.
2577 * hppa-tdep.c: Same.
2578 * i386-linux-tdep.c: Same.
2579 * i386-tdep.c: Same.
2580 * ia64-libunwind-tdep.c: Same.
2581 * ia64-tdep.c: Same.
2582 * infcmd.c: Same.
2583 * infrun.c: Same.
2584 * linespec.c: Same.
2585 * linux-nat.c: Same.
2586 * linux-thread-db.c: Same.
2587 * machoread.c: Same.
2588 * mdebugread.c: Same.
2589 * mep-tdep.c: Same.
2590 * mn10300-tdep.c: Same.
2591 * namespace.c: Same.
2592 * objfiles.c: Same.
2593 * opencl-lang.c: Same.
2594 * or1k-tdep.c: Same.
2595 * osabi.c: Same.
2596 * ppc-linux-nat.c: Same.
2597 * ppc-linux-tdep.c: Same.
2598 * ppc-sysv-tdep.c: Same.
2599 * printcmd.c: Same.
2600 * procfs.c: Same.
2601 * record-btrace.c: Same.
2602 * record-full.c: Same.
2603 * remote-fileio.c: Same.
2604 * remote.c: Same.
2605 * rs6000-tdep.c: Same.
2606 * s12z-tdep.c: Same.
2607 * score-tdep.c: Same.
2608 * ser-base.c: Same.
2609 * ser-go32.c: Same.
2610 * skip.c: Same.
2611 * sol-thread.c: Same.
2612 * solib-svr4.c: Same.
2613 * solib.c: Same.
2614 * source.c: Same.
2615 * sparc-nat.c: Same.
2616 * sparc-sol2-tdep.c: Same.
2617 * sparc-tdep.c: Same.
2618 * sparc64-tdep.c: Same.
2619 * stabsread.c: Same.
2620 * stack.c: Same.
2621 * symfile.c: Same.
2622 * symtab.c: Same.
2623 * target-descriptions.c: Same.
2624 * target-float.c: Same.
2625 * thread.c: Same.
2626 * utils.c: Same.
2627 * valops.c: Same.
2628 * valprint.c: Same.
2629 * value.c: Same.
2630 * varobj.c: Same.
2631 * windows-nat.c: Same.
2632 * xcoffread.c: Same.
2633 * xstormy16-tdep.c: Same.
2634 * xtensa-tdep.c: Same.
2635
2636 2019-10-17 Tom Tromey <tromey@adacore.com>
2637
2638 * configure: Rebuild.
2639 * configure.ac: Use AC_CONFIG_HEADERS. Create stamp-h there, not
2640 in AC_CONFIG_FILES invocation.
2641 * Makefile.in (Makefile, data-directory/Makefile, stamp-h): Use
2642 new-style config.status invocation.
2643
2644 2019-10-17 Tom de Vries <tdevries@suse.de>
2645
2646 * arm-nbsd-nat.c: Fix typos in comments.
2647 * arm-tdep.c: Same.
2648 * darwin-nat-info.c: Same.
2649 * dwarf2read.c: Same.
2650 * elfread.c: Same.
2651 * event-top.c: Same.
2652 * findvar.c: Same.
2653 * gdbtypes.c: Same.
2654 * hppa-tdep.c: Same.
2655 * i386-tdep.c: Same.
2656 * jit.c: Same.
2657 * main.c: Same.
2658 * mdebugread.c: Same.
2659 * moxie-tdep.c: Same.
2660 * nto-procfs.c: Same.
2661 * osabi.c: Same.
2662 * ppc-linux-tdep.c: Same.
2663 * remote.c: Same.
2664 * riscv-tdep.c: Same.
2665 * s390-tdep.c: Same.
2666 * sh-tdep.c: Same.
2667 * sparc-linux-tdep.c: Same.
2668 * sparc-nat.c: Same.
2669 * stack.c: Same.
2670 * target-descriptions.c: Same.
2671 * top.c: Same.
2672 * varobj.c: Same.
2673
2674 2019-10-16 Tom Tromey <tom@tromey.com>
2675
2676 * objfiles.h (struct objfile) <original_name>: Now const.
2677
2678 2019-10-16 Christian Biesinger <cbiesinger@google.com>
2679
2680 * gdbsupport/gdb_setjmp.h (SIGSETJMP): Allow passing in the value to
2681 pass on to sigsetjmp's second argument.
2682 * cp-support.c (gdb_demangle): Unblock SIGSEGV if we caught a crash.
2683
2684 2019-10-16 Keith Seitz <keiths@redhat.com>
2685
2686 PR gdb/23567
2687 * dwarf2read.c (dwarf2_per_objfile::locate_sections): Discard
2688 sections whose size is greater than the file size.
2689
2690 2019-10-16 Jim Wilson <jimw@sifive.com>
2691
2692 * riscv-tdep.c (riscv_gcc_target_options): New.
2693 (riscv_gnu_triplet_regexp): New.
2694 (riscv_gdbarch_init): Call set_gdbarch_gcc_triplet_options and
2695 set_gdbarch_gnu_triplet_regexp.
2696
2697 2019-10-16 Christian Biesinger <cbiesinger@google.com>
2698
2699 * Makefile.in: Add xml-builtin.h.
2700 * features/feature_to_c.sh: Add an include for xml-builtin.h
2701 to ensure that the compiler checks that the types match.
2702 * xml-builtin.h: New file.
2703 * xml-support.c (fetch_xml_builtin): Add missing const.
2704 * xml-support.h: Remove declaration of xml_builtins.
2705
2706 2019-10-16 Tom de Vries <tdevries@suse.de>
2707
2708 PR tdep/25096
2709 * amd64-tdep.c (amd64_classify_aggregate_field): Factor out of ...
2710 (amd64_classify_aggregate): ... here.
2711 (amd64_classify_aggregate_field): Handled fiels of nested structs
2712 recursively.
2713
2714 2019-10-16 Tom de Vries <tdevries@suse.de>
2715
2716 PR tdep/24104
2717 * amd64-tdep.c (amd64_push_arguments): Handle AMD64_NO_CLASS in loop
2718 that handles 'theclass'.
2719
2720 2019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
2721
2722 * linespec.c (decode_digits_ordinary): Update comment.
2723 * make-target-delegates: No longer need to handle VEC case.
2724 * memrange.c (normalize_mem_ranges): Update comment.
2725 * namespace.c (add_using_directive): Update comment.
2726 * objc-lang.c (uniquify_strings): Update comment.
2727 * ppc-linux-nat.c (struct thread_points): Update comment.
2728 * probe.h (find_probes_in_objfile): Update comment.
2729 * target.h (enum flash_preserve_mode): Update comment.
2730 * varobj.c (varobj_restrict_range): Update comment.
2731 * varobj.h (varobj_list_children): Update comment.
2732
2733 2019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
2734
2735 * Makefile.in: Remove references to vec.h and vec.c.
2736 * aarch64-tdep.c: No longer include vec.h.
2737 * ada-lang.c: Likewise.
2738 * ada-lang.h: Likewise.
2739 * arm-tdep.c: Likewise.
2740 * ax.h: Likewise.
2741 * breakpoint.h: Likewise.
2742 * charset.c: Likewise.
2743 * cp-support.h: Likewise.
2744 * dtrace-probe.c: Likewise.
2745 * dwarf2read.c: Likewise.
2746 * extension.h: Likewise.
2747 * gdb_bfd.c: Likewise.
2748 * gdbsupport/gdb_vecs.h: Likewise.
2749 * gdbsupport/vec.c: Remove.
2750 * gdbsupport/vec.h: Remove.
2751 * gdbthread.h: Likewise.
2752 * guile/scm-type.c: Likewise.
2753 * inline-frame.c: Likewise.
2754 * machoread.c: Likewise.
2755 * memattr.c: Likewise.
2756 * memrange.h: Likewise.
2757 * namespace.h: Likewise.
2758 * nat/linux-btrace.h: Likewise.
2759 * osdata.c: Likewise.
2760 * parser-defs.h: Likewise.
2761 * progspace.h: Likewise.
2762 * python/py-type.c: Likewise.
2763 * record-btrace.c: Likewise.
2764 * rust-exp.y: Likewise.
2765 * solib-target.c: Likewise.
2766 * stap-probe.c: Likewise.
2767 * target-descriptions.c: Likewise.
2768 * target-memory.c: Likewise.
2769 * target.h: Likewise.
2770 * varobj.c: Likewise.
2771 * varobj.h: Likewise.
2772 * xml-support.h: Likewise.
2773
2774 2019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
2775
2776 * gdb/dwarf2read.c (dwarf2_per_objfile::~dwarf2_per_objfile):
2777 Update for new std::vector based implementation.
2778 (process_psymtab_comp_unit_reader): Likewise.
2779 (scan_partial_symbols): Likewise.
2780 (recursively_compute_inclusions): Likewise.
2781 (compute_compunit_symtab_includes): Likewise.
2782 (process_imported_unit_die): Likewise.
2783 (queue_and_load_dwo_tu): Likewise.
2784 (follow_die_sig_1): Likewise.
2785 * gdb/dwarf2read.h: Remove DEF_VEC_P.
2786 (typedef dwarf2_per_cu_ptr): Remove.
2787 (struct dwarf2_per_cu_data) <imported_symtabs_empty>: New
2788 function.
2789 (struct dwarf2_per_cu_data) <imported_symtabs_push>: New function.
2790 (struct dwarf2_per_cu_data) <imported_symtabs_size>: New function.
2791 (struct dwarf2_per_cu_data) <imported_symtabs_free>: New function.
2792 (struct dwarf2_per_cu_data) <imported_symtabs>: Change to
2793 std::vector.
2794
2795 2019-10-15 Tom Tromey <tromey@adacore.com>
2796
2797 * windows-nat.c (windows_nat_target::resume): Use %x when logging
2798 TID.
2799
2800 2019-10-15 Tom Tromey <tromey@adacore.com>
2801
2802 * windows-nat.c (windows_nat_target::fetch_registers)
2803 (windows_nat_target::store_registers): Rename "pid" to "tid".
2804
2805 2019-10-15 Tom Tromey <tromey@adacore.com>
2806
2807 * gdbarch.h, gdbarch.c: Rebuild.
2808 * gdbarch.sh (gcc_target_options): Change return type to
2809 std::string.
2810 * compile/compile.c (get_args): Update.
2811 * nios2-tdep.c (nios2_gcc_target_options): Return std::string.
2812 * arm-linux-tdep.c (arm_linux_gcc_target_options): Return
2813 std::string.
2814 * aarch64-linux-tdep.c (aarch64_linux_gcc_target_options): Return
2815 std::string.
2816 * arch-utils.c (default_gcc_target_options): Return std::string.
2817 * arch-utils.h (default_gcc_target_options): Return std::string.
2818 * s390-tdep.c (s390_gcc_target_options): Return std::string.
2819
2820 2019-10-15 Christian Biesinger <cbiesinger@google.com>
2821
2822 * breakpoint.c (breakpoint_chain): Make static.
2823 * tui/tui-winsource.c: Call iterate_over_breakpoints instead
2824 of accessing breakpoint_chain.
2825
2826 2019-10-15 Christian Biesinger <cbiesinger@google.com>
2827
2828 * breakpoint.c (iterate_over_breakpoints): Change function pointer
2829 to a gdb::function_view and return value to bool.
2830 * breakpoint.h (iterate_over_breakpoints): Likewise.
2831 * dummy-frame.c (pop_dummy_frame_bpt): Update.
2832 (pop_dummy_frame): Update.
2833 * guile/scm-breakpoint.c (bpscm_build_bp_list): Update.
2834 (gdbscm_breakpoints): Update.
2835 * python/py-breakpoint.c (build_bp_list): Update.
2836 (gdbpy_breakpoints): Update.
2837 * python/py-finishbreakpoint.c (bpfinishpy_detect_out_scope_cb):
2838 Update.
2839 (bpfinishpy_handle_stop): Update.
2840 (bpfinishpy_handle_exit): Update.
2841 * solib-svr4.c (svr4_update_solib_event_breakpoint): Update.
2842 (svr4_update_solib_event_breakpoints): Update.
2843
2844 2019-10-15 Andreas Arnez <arnez@linux.ibm.com>
2845
2846 * s390-tdep.c (s390_effective_inner_type): Ignore static fields
2847 when unwrapping single-field structs.
2848
2849 2019-10-14 Simon Marchi <simon.marchi@polymtl.ca>
2850
2851 * dwarf2read.c: Remove includes.
2852
2853 2019-10-13 Simon Marchi <simon.marchi@polymtl.ca>
2854
2855 * ui-out.c (ui_out::call_do_message): Silence
2856 -Wformat-nonliteral warning.
2857
2858 2019-10-12 Simon Marchi <simon.marchi@polymtl.ca>
2859
2860 * breakpoint.c: Remove some includes: continuations.h, skip.h,
2861 mi/mi-main.h, readline/readline.h, readline/history.h. Add
2862 include: readline/tilde.h.
2863
2864 2019-10-12 Christian Biesinger <cbiesinger@google.com>
2865
2866 * remote.c (remote_target::get_trace_status): Remove declaration of
2867 trace_regblock_size.
2868
2869 2019-10-12 Christian Biesinger <cbiesinger@google.com>
2870
2871 * cli/cli-cmds.c (max_user_call_depth): Move comment to header.
2872 (show_user): Remove declaration of cmdlist.
2873 * cli/cli-cmds.h (max_user_call_depth): Declare.
2874 * cli/cli-script.c (execute_user_command): Remove declaration
2875 of max_user_call_depth.
2876
2877 2019-10-11 Jim Wilson <jimw@sifive.com>
2878
2879 * gdbsupport/print-utils.h (pulongest): Fix comment.
2880 (plongest): Likewise.
2881 (phex): Add missing comment, mention leading zeros.
2882 (phex_nz): Add mention of no leading zeros to comment.
2883
2884 * riscv-tdep.c (riscv_push_dummy_code): Change %lld to %s and use
2885 plongest instead of unsigned long long cast.
2886
2887 2019-10-10 Christian Biesinger <cbiesinger@google.com>
2888
2889 * main.c (captured_main_1): Include gdbtk.h and remove declarations
2890 for external_editor_command and gdbtk_test.
2891
2892 2019-10-10 Christian Biesinger <cbiesinger@google.com>
2893
2894 * mi/mi-cmd-var.c (varobjdebug): Remove declaration.
2895 * varobj.c (varobjdebug): Move comment to...
2896 * varobj.h (varobjdebug): ...here, and declare.
2897
2898 2019-10-09 Tom Tromey <tom@tromey.com>
2899
2900 * tui/tui-regs.c (tui_data_window::show_registers): Don't call
2901 erase_data_content.
2902
2903 2019-10-09 Tom Tromey <tom@tromey.com>
2904
2905 * tui/tui-wingeneral.h (tui_delete_win): Don't declare.
2906 * tui/tui-stack.c (tui_locator_window::rerender): Update.
2907 * tui/tui-command.c (tui_cmd_window::resize)
2908 (tui_refresh_cmd_win): Update.
2909 * tui/tui-win.c (tui_resize_all, tui_set_focus_command): Update.
2910 * tui/tui.c (tui_rl_other_window, tui_enable): Update.
2911 * tui/tui-data.c (~tui_gen_win_info): Remove.
2912 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
2913 * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts)
2914 (tui_redisplay_readline, tui_mld_flush)
2915 (tui_mld_erase_entire_line, tui_mld_getc, tui_getc): Update.
2916 * tui/tui-regs.c (tui_data_window::delete_data_content_windows)
2917 (tui_data_window::erase_data_content)
2918 (tui_data_item_window::rerender)
2919 (tui_data_item_window::refresh_window): Update.
2920 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window)
2921 (box_win, tui_gen_win_info::make_window)
2922 (tui_gen_win_info::make_visible): Update.
2923 (tui_delete_win): Remove.
2924 * tui/tui-winsource.c
2925 (tui_source_window_base::do_erase_source_content): Update.
2926 (tui_show_source_line, tui_source_window_base::update_tab_width)
2927 (tui_source_window_base::update_exec_info): Update.
2928 * tui/tui-data.h (struct curses_deleter): New.
2929 (struct tui_gen_win_info) <handle>: Now a unique_ptr.
2930 (struct tui_gen_win_info) <~tui_gen_win_info>: Define.
2931
2932 2019-10-09 Tom Tromey <tom@tromey.com>
2933
2934 * tui/tui-wingeneral.h (struct tui_gen_win_info): Don't declare.
2935
2936 2019-10-09 Tom Tromey <tom@tromey.com>
2937
2938 * tui/tui-data.c (tui_win_is_auxiliary): Remove.
2939 * tui/tui-data.h (tui_win_is_auxiliary): Don't declare.
2940
2941 2019-10-09 Tom Tromey <tom@tromey.com>
2942
2943 * tui/tui-disasm.c (tui_get_low_disassembly_address): Compute
2944 window height directly.
2945 * tui/tui-layout.h (tui_default_win_viewport_height): Don't
2946 declare.
2947 * tui/tui-layout.c (tui_default_win_height): Remove.
2948 (tui_default_win_viewport_height): Remove.
2949
2950 2019-10-09 Tom Tromey <tom@tromey.com>
2951
2952 * tui/tui.h: Remove comments.
2953
2954 2019-10-09 Tom de Vries <tdevries@suse.de>
2955
2956 * python/lib/gdb/printer/bound_registers.py: Use
2957 '^builtin_type_bound128' as regexp argument for
2958 add_builtin_pretty_printer.
2959
2960 2019-10-09 Christian Biesinger <cbiesinger@google.com>
2961
2962 * guile/guile.c (guile_extension_script_ops): Remove forward
2963 declaration and mark as static.
2964 (guile_script_ops): Likewise.
2965 (extension_language_guile): Move further down in the file so
2966 it can reference the definitions for guile_{extension_,}script_ops.
2967
2968 2019-10-09 Andreas Arnez <arnez@linux.ibm.com>
2969
2970 * s390-tdep.c (390_process_record): Handle new arch13 instructions
2971 except SORTL, DFLTCC, and KDSA.
2972
2973 2019-10-08 Tom Tromey <tromey@adacore.com>
2974
2975 * windows-nat.c (struct windows_thread_info_struct) <sf>: Remove.
2976 (struct safe_symbol_file_add_args): Remove.
2977
2978 2019-10-08 Tom Tromey <tromey@adacore.com>
2979
2980 * windows-nat.c: Don't include buildsym-legacy.h.
2981
2982 2019-10-08 Tom Tromey <tromey@adacore.com>
2983
2984 * contrib/ari/gdb_ari.sh (%p): Allow gdb-specific %p extensions.
2985
2986 2019-10-08 Christian Biesinger <cbiesinger@google.com>
2987
2988 * gdbtypes.c (overload_debug): Move comment to header.
2989 * gdbtypes.h (overload_debug): Declare.
2990 * valops.c: Remove declaration of overload_debug, instead
2991 include gdbtypes.h.
2992
2993 2019-10-08 Christian Biesinger <cbiesinger@google.com>
2994
2995 * language.c (show_language_command): Pass lang_frame_mismatch_warn
2996 through _().
2997 (lang_frame_mismatch_warn): Make const, mark with N_(), and
2998 move comment...
2999 * language.h (lang_frame_mismatch_warn): ... here. Also add
3000 declaration.
3001 * top.c (lang_frame_mismatch_warn): Remove declaration.
3002 (check_frame_language_change): Pass lang_frame_mismatch_warn
3003 through _().
3004
3005 2019-10-07 Christian Biesinger <cbiesinger@google.com>
3006
3007 * c-lang.h (vtbl_ptr_name): Declare.
3008 * cp-valprint.c (vtbl_ptr_name): Remove "extern" now that we get
3009 it from the header.
3010 * stabsread.c (define_symbol): Remove declaration of vtbl_ptr_name.
3011
3012 2019-10-07 Christian Biesinger <cbiesinger@google.com>
3013
3014 * charset.c (your_gdb_wchar_t_is_bogus): Replace with a
3015 gdb_static_assert.
3016
3017 2019-10-07 Weimin Pan <weimin.pan@oracle.com>
3018
3019 * ../Makefile.def (dependencies): Add all-libctf to all-gdb
3020 * ../Makefile.in: Add "all-gdb: maybe-all-libctf"
3021 * ctfread.c: New file.
3022 * ctfread.h: New file.
3023 * elfread.c: Include ctfread.h.
3024 (struct elfinfo text_p): New member ctfsect.
3025 (elf_locate_sections): Mark CTF section.
3026 (elf_symfile_read): Call elfctf_build_psymtabs.
3027 * Makefile.in (LIBCTF): Add.
3028 (CLIBS): Use it.
3029 (CDEPS): Likewise.
3030 (DIST): Add ctfread.c.
3031
3032 2019-10-07 Andrew Burgess <andrew.burgess@embecosm.com>
3033
3034 * ctfread.c (struct nextfield): Renamed to ...
3035 (struct ctf_nextfield): ... this.
3036 (struct field_info): Renamed to ...
3037 (strut ctf_field_info): ... this.
3038 (attach_fields_to_type): Update for renamed structures.
3039 (ctf_add_member_cb): Likewise.
3040 (ctf_add_enum_member_cb): Likewise.
3041 (process_struct_members): Likewise.
3042 (process_enum_type): Likewise.
3043
3044 2019-10-07 Weimin Pan <weimin.pan@oracle.com>
3045
3046 * tracectf.h: Rename, was ctf.h.
3047 * tracectf.c: Rename, was ctf.c, replace ctf.h with tracectf.h.
3048 * tracefile.c: Likewise.
3049 * tracepoint.c: Remove unused include ctf.h.
3050 * mi/mi-main.c: Likewise.
3051 * Makefile.in Replace ctf.c with tracectf.c.
3052
3053 2019-10-06 Joel Brobecker <brobecker@adacore.com>
3054
3055 * version.in: Change version number to "9.0.50.DATE-git".
3056
3057 2019-10-03 Tom Tromey <tom@tromey.com>
3058
3059 PR rust/24976:
3060 * dwarf2read.c (quirk_rust_enum): Handle single-element unions.
3061
3062 2019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
3063
3064 * f-lang.c (f_language_defn): Use cp_get_symbol_name_matcher and
3065 cp_search_name_hash.
3066 * NEWS: Add entry about nested function support.
3067
3068 2019-10-03 Bernhard Heckel <bernhard.heckel@intel.com>
3069 Andrew Burgess <andrew.burgess@embecosm.com>
3070
3071 * cp-namespace.c (cp_search_static_and_baseclasses): Only search
3072 for nested static variables when searchin VAR_DOMAIN.
3073 * dwarf2read.c (add_partial_symbol): Add nested subroutines to the
3074 global scope, update comment.
3075 (add_partial_subprogram): Call add_partial_subprogram recursively
3076 for nested subroutines when processinng Fortran.
3077 (load_partial_dies): Process the child entities of a subprogram
3078 when processing Fortran.
3079 (partial_die_parent_scope): Handle building scope
3080 for Fortran nested functions.
3081 (process_die): Record that nested functions have a scope.
3082 (new_symbol): Always record Fortran subprograms on the global
3083 symbol list.
3084 (determine_prefix): How to build the prefix for Fortran
3085 subprograms.
3086
3087 2019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
3088
3089 * linux-nat.c (linux_nat_filter_event): Don't ignore SIGSTOP if we
3090 have just sent the thread a SIGSTOP and are waiting for it to
3091 arrive.
3092
3093 2019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
3094
3095 * btrace.c (btrace_add_pc): Remove whitespace before the template
3096 parameter in 'std::vector <...>'.
3097 (parse_xml_btrace_block): Likewise.
3098 (btrace_maint_decode_pt): Likewise.
3099 (btrace_maint_update_packets): Likewise.
3100 (btrace_maint_print_packets): Likewise.
3101 * btrace.h (struct btrace_maint_info): Likewise.
3102 * dwarf2read.c (struct type_unit_group): Likewise.
3103 (build_type_psymtabs_reader): Likewise.
3104 * gdbsupport/btrace-common.c (btrace_data_append): Likewise.
3105 * gdbsupport/btrace-common.h (struct btrace_data_bts): Likewise.
3106 * nat/linux-btrace.c (perf_event_read_bts): Likewise.
3107
3108 2019-10-03 Tom de Vries <tdevries@suse.de>
3109
3110 * cli/cli-style.c (_initialize_cli_style): Adding a '.' at the end of
3111 the first line of the help text for set/show style metadata.
3112
3113 2019-10-02 Tom Tromey <tromey@adacore.com>
3114
3115 * Makefile.in (COMMON_SFILES): Add common-inferior.c.
3116 * gdbsupport/common-inferior.c: New file.
3117 * infcmd.c (startup_with_shell): Don't define.
3118 * nat/fork-inferior.h (startup_with_shell): Don't declare.
3119 * gdbsupport/common-inferior.h (startup_with_shell): Declare.
3120 * inferior.h (startup_with_shell): Don't declare.
3121
3122 2019-10-02 Christian Biesinger <cbiesinger@google.com>
3123
3124 * gdbsupport/gdb_assert.h: Include errors.h.
3125 * gdbsupport/gdb_string_view.h: Include gdb_assert.h.
3126
3127 2019-10-02 Tom Tromey <tromey@adacore.com>
3128
3129 * NEWS: Add $_ada_exception entry.
3130 * ada-lang.c (struct ada_catchpoint): Add constructor.
3131 <m_kind>: New member.
3132 (allocate_location_exception, re_set_exception): Remove
3133 "ex" parameter.
3134 (should_stop_exception): Compute $_ada_exception.
3135 (check_status_exception, print_it_exception)
3136 (print_one_exception, print_mention_exception): Remove
3137 "ex" parameter.
3138 (allocate_location_catch_exception, re_set_catch_exception)
3139 (check_status_exception, print_it_catch_exception)
3140 (print_one_catch_exception, print_mention_catch_exception)
3141 (print_recreate_catch_exception)
3142 (allocate_location_catch_exception_unhandled)
3143 (re_set_catch_exception_unhandled)
3144 (check_status_exception, print_it_catch_exception_unhandled)
3145 (print_one_catch_exception_unhandled)
3146 (print_mention_catch_exception_unhandled)
3147 (print_recreate_catch_exception_unhandled)
3148 (allocate_location_catch_assert, re_set_catch_assert)
3149 (check_status_assert, print_it_catch_assert)
3150 (print_one_catch_assert, print_mention_catch_assert)
3151 (print_recreate_catch_assert)
3152 (allocate_location_catch_handlers, re_set_catch_handlers)
3153 (check_status_handlers, print_it_catch_handlers)
3154 (print_one_catch_handlers, print_mention_catch_handlers)
3155 (print_recreate_catch_handlers): Remove.
3156 (create_ada_exception_catchpoint): Update.
3157 (initialize_ada_catchpoint_ops): Update.
3158
3159 2019-10-02 Tom Tromey <tromey@adacore.com>
3160
3161 * ada-lang.c (ada_lookup_simple_minsyms): Remove.
3162 (create_excep_cond_exprs): Simplify exception string computation.
3163 (ada_exception_catchpoint_cond_string): Likewise.
3164
3165 2019-10-02 Tom Tromey <tromey@adacore.com>
3166
3167 * symmisc.c (dump_msymbols): Don't use MSYMBOL_VALUE_ADDRESS.
3168 * ada-lang.c (lesseq_defined_than): Handle
3169 LOC_STATIC.
3170 * dwarf2read.c (dwarf2_per_objfile): Add can_copy
3171 parameter.
3172 (dwarf2_has_info): Likewise.
3173 (new_symbol): Set maybe_copied on symbol when
3174 appropriate.
3175 * dwarf2read.h (dwarf2_per_objfile): Add can_copy
3176 parameter.
3177 <can_copy>: New member.
3178 * elfread.c (record_minimal_symbol): Set maybe_copied
3179 on symbol when appropriate.
3180 (elf_symfile_read): Update call to dwarf2_has_info.
3181 * minsyms.c (lookup_minimal_symbol_linkage): New
3182 function.
3183 * minsyms.h (lookup_minimal_symbol_linkage): Declare.
3184 * symtab.c (get_symbol_address, get_msymbol_address):
3185 New functions.
3186 * symtab.h (get_symbol_address, get_msymbol_address):
3187 Declare.
3188 (SYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_ADDRESS): Handle
3189 maybe_copied.
3190 (struct symbol, struct minimal_symbol) <maybe_copied>:
3191 New member.
3192
3193 2019-10-02 Tom Tromey <tromey@adacore.com>
3194
3195 * source.c (struct current_source_location): New.
3196 (current_source_key): New global.
3197 (current_source_symtab, current_source_line)
3198 (current_source_pspace): Remove.
3199 (get_source_location): New function.
3200 (get_current_source_symtab_and_line)
3201 (set_default_source_symtab_and_line)
3202 (set_current_source_symtab_and_line)
3203 (clear_current_source_symtab_and_line, select_source_symtab)
3204 (info_source_command, print_source_lines_base)
3205 (info_line_command, search_command_helper, _initialize_source):
3206 Update.
3207
3208 2019-10-02 Tom Tromey <tromey@adacore.com>
3209
3210 * source.c (select_source_symtab): Don't call
3211 decode_line_with_current_source.
3212
3213 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
3214
3215 * symtab.c (lookup_global_symbol): Search global block.
3216
3217 2019-10-02 Tom Tromey <tromey@adacore.com>
3218
3219 * coffread.c (process_coff_symbol): Update.
3220 * dwarf2read.c (var_decode_location, new_symbol): Update.
3221 * mdebugread.c (parse_symbol): Update.
3222 * objfiles.c (relocate_one_symbol): Update.
3223 * stabsread.c (define_symbol, fix_common_block)
3224 (scan_file_globals): Update.
3225 * symtab.h (SYMBOL_VALUE_ADDRESS): Expand to an rvalue.
3226 (SET_SYMBOL_VALUE_ADDRESS): New macro.
3227 * xcoffread.c (process_xcoff_symbol): Update.
3228
3229 2019-10-02 Andreas Arnez <arnez@linux.ibm.com>
3230
3231 * MAINTAINERS: Update my email address.
3232
3233 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
3234
3235 * dwarf2read.c (struct type_unit_group) <tus>: Convert to
3236 std::vector.
3237 (build_type_psymtabs_reader): Update for std::vector.
3238 (build_type_psymtab_dependencies): Likewise.
3239 * dwarf2read.h: Remove use of DEF_VEC_P.
3240 (typedef sig_type_ptr): Delete.
3241
3242 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
3243
3244 * btrace.c (btrace_maint_clear): Update to handle change from VEC
3245 to std::vector.
3246 (btrace_maint_decode_pt): Likewise, and move allocation of the
3247 vector outside of the loop.
3248 (btrace_maint_update_packets): Update to handle change from VEC to
3249 std::vector.
3250 (btrace_maint_print_packets): Likewise.
3251 (maint_info_btrace_cmd): Likewise.
3252 * btrace.h: Remove use of DEF_VEC_O.
3253 (typedef btrace_pt_packet_s): Delete.
3254 (struct btrace_maint_info) <packets>: Change fromm VEC to
3255 std::vector.
3256 * gdbsupport/btrace-common.h: Remove 'vec.h' include.
3257
3258 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
3259
3260 * btrace.c (btrace_compute_ftrace_bts): Update for std::vector,
3261 make accesses into the vector constant references.
3262 (btrace_add_pc): Update for std::vector.
3263 (btrace_stitch_bts): Likewise.
3264 (parse_xml_btrace_block): Likewise.
3265 (btrace_maint_update_packets): Likewise.
3266 (btrace_maint_print_packets): Likewise.
3267 (maint_info_btrace_cmd): Likewise.
3268 * gdbsupport/btrace-common.c (btrace_data::fini): Update for
3269 std::vector.
3270 (btrace_data::empty): Likewise.
3271 (btrace_data_append): Likewise.
3272 * gdbsupport/btrace-common.h: Remove use of DEF_VEC_O.
3273 (typedef btrace_block_s): Delete.
3274 (struct btrace_block): Add constructor.
3275 (struct btrace_data_bts) <blocks>: Change to std::vector.
3276 * nat/linux-btrace.c (perf_event_read_bts): Update for
3277 std::vector.
3278 (linux_read_bts): Likewise.
3279
3280 2019-10-01 Tom Tromey <tom@tromey.com>
3281
3282 * cli/cli-logging.c (show_logging_filename): Use styled_string.
3283
3284 2019-10-01 Tom Tromey <tom@tromey.com>
3285
3286 * stack.c (print_frame, info_frame_command_core): Use
3287 styled_string.
3288 * linux-thread-db.c (try_thread_db_load_1)
3289 (try_thread_db_load_from_pdir_1): Use styled_string.
3290 * auto-load.c (file_is_auto_load_safe, execute_script_contents)
3291 (auto_load_section_scripts, info_auto_load_local_gdbinit)
3292 (maybe_print_unsupported_script_warning)
3293 (maybe_print_script_not_found_warning): Use styled_string.
3294 * ada-lang.c (user_select_syms): Use styled_string.
3295
3296 2019-10-01 Tom Tromey <tom@tromey.com>
3297
3298 * p-lang.c (pascal_printstr): Use metadata style.
3299 * value.c (show_convenience): Use metadata style.
3300 * valprint.c (valprint_check_validity, val_print_optimized_out)
3301 (val_print_not_saved, val_print_unavailable)
3302 (val_print_invalid_address, generic_val_print, val_print)
3303 (value_check_printable, val_print_array_elements): Use metadata
3304 style.
3305 * ui-out.h (class ui_out) <field_fmt>: New overload.
3306 <do_field_fmt>: Add style parameter.
3307 * ui-out.c (ui_out::field_fmt): New overload.
3308 * typeprint.c (type_print_unknown_return_type)
3309 (val_print_not_allocated, val_print_not_associated): Use metadata
3310 style.
3311 * tui/tui-out.h (class tui_ui_out) <do_field_fmt>: Add style
3312 parameter.
3313 * tui/tui-out.c (tui_ui_out::do_field_fmt): Update.
3314 * tracepoint.c (tvariables_info_1): Use metadata style.
3315 * stack.c (print_frame_arg, print_frame_info, print_frame)
3316 (info_frame_command_core): Use metadata style.
3317 * skip.c (info_skip_command): Use metadata style.
3318 * rust-lang.c (rust_print_enum): Use metadata style.
3319 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
3320 metadata style.
3321 * python/py-framefilter.c (py_print_single_arg): Use metadata
3322 style.
3323 * printcmd.c (do_one_display, print_variable_and_value): Use
3324 metadata style.
3325 * p-valprint.c (pascal_val_print)
3326 (pascal_object_print_value_fields): Use metadata style.
3327 * p-typeprint.c (pascal_type_print_base): Use metadata style.
3328 * mi/mi-out.h (class mi_ui_out) <do_field_fmt>: Add style
3329 parameter.
3330 * mi/mi-out.c (mi_ui_out::do_field_fmt): Update.
3331 * m2-valprint.c (m2_print_long_set): Use metadata style.
3332 * m2-typeprint.c (m2_print_type): Use metadata style.
3333 * infcmd.c (print_return_value_1): Use metadata style.
3334 * gnu-v3-abi.c (print_one_vtable): Use metadata style.
3335 * f-valprint.c (info_common_command_for_block): Use metadata
3336 style.
3337 * f-typeprint.c (f_type_print_base): Use metadata style.
3338 * expprint.c (print_subexp_standard): Use metadata style.
3339 * cp-valprint.c (cp_print_value_fields): Use metadata style.
3340 * cli/cli-style.h (class cli_style_option): Add constructor.
3341 (metadata_style): Declare.
3342 * cli/cli-style.c (metadata_style): New global.
3343 (_initialize_cli_style): Register metadata style.
3344 * cli-out.h (class cli_ui_out) <do_field_fmt>: Add style
3345 parameter.
3346 * cli-out.c (cli_ui_out::do_field_fmt): Update.
3347 * c-typeprint.c (c_type_print_base_struct_union)
3348 (c_type_print_base_1): Use metadata style.
3349 * breakpoint.c (watchpoint_value_print)
3350 (print_one_breakpoint_location): Use metadata style.
3351 * break-catch-syscall.c (print_one_catch_syscall): Use metadata
3352 style.
3353 * break-catch-sig.c (signal_catchpoint_print_one): Use metadata
3354 style.
3355 * ada-valprint.c (val_print_packed_array_elements, printstr)
3356 (print_field_values, ada_val_print_ref, ada_val_print): Use
3357 metadata style.
3358 * ada-typeprint.c (print_array_type, ada_print_type): Use metadata
3359 style.
3360 * ada-tasks.c (print_ada_task_info, info_task): Use metadata
3361 style.
3362 * ada-lang.c (user_select_syms): Use metadata style.
3363
3364 2019-10-01 Tom Tromey <tom@tromey.com>
3365
3366 * cli/cli-cmds.c (pwd_command): Style output.
3367
3368 2019-10-01 Pedro Alves <palves@redhat.com>
3369 Tom Tromey <tom@tromey.com>
3370
3371 * symtab.c (print_symbol_info): Use %ps.
3372 (print_msymbol_info): Use %ps.
3373 * symfile.c (symbol_file_add_with_addrs): Use %ps.
3374 * printcmd.c (print_variable_and_value): Use %ps.
3375 * macrocmd.c (show_pp_source_pos): Use %ps.
3376 * infrun.c (print_exited_reason): Use ui_out::message.
3377 * breakpoint.c (watchpoint_check, print_one_breakpoint_location)
3378 (describe_other_breakpoints): Use ui_out::message and new
3379 formats.
3380 (say_where): Use new formats.
3381 (bkpt_print_it, tracepoint_print_one_detail): Use ui_out::message
3382 and new formats.
3383
3384 2019-10-01 Pedro Alves <palves@redhat.com>
3385 Tom Tromey <tom@tromey.com>
3386
3387 * unittests/format_pieces-selftests.c: Add gdb_format parameter.
3388 (test_gdb_formats): New function.
3389 (run_tests): Call it.
3390 (test_format_specifier): Update.
3391 * utils.h (fputs_filtered): Update comment.
3392 (vfprintf_styled, vfprintf_styled_no_gdbfmt)
3393 (fputs_styled_unfiltered): Declare.
3394 * utils.c (fputs_styled_unfiltered): New function.
3395 (vfprintf_maybe_filtered): Add gdbfmt parameter.
3396 (vfprintf_filtered): Update.
3397 (vfprintf_unfiltered, vprintf_filtered): Update.
3398 (vfprintf_styled, vfprintf_styled_no_gdbfmt): New functions.
3399 * ui-out.h (enum ui_out_flag) <unfiltered_output,
3400 disallow_ui_out_field>: New constants.
3401 (enum class field_kind): New.
3402 (struct base_field_s, struct signed_field_s): New.
3403 (signed_field): New function.
3404 (struct string_field_s): New.
3405 (string_field): New function.
3406 (struct styled_string_s): New.
3407 (styled_string): New function.
3408 (class ui_out) <message>: Add comment.
3409 <vmessage, call_do_message>: New methods.
3410 <do_message>: Add style parameter.
3411 * ui-out.c (ui_out::call_do_message, ui_out::vmessage): New
3412 methods.
3413 (ui_out::message): Rewrite.
3414 * mi/mi-out.h (class mi_ui_out) <do_message>: Add style
3415 parameter.
3416 * mi/mi-out.c (mi_ui_out::do_message): Add style parameter.
3417 * gdbsupport/format.h (class format_pieces) <format_pieces>: Add
3418 gdb_extensions parameter.
3419 (class format_piece): Add parameter to constructor.
3420 (n_int_args): New field.
3421 * gdbsupport/format.c (format_pieces::format_pieces): Add
3422 gdb_extensions parameter. Handle '*'.
3423 * cli-out.h (class cli_ui_out) <do_message>: Add style parameter.
3424 * cli-out.c (cli_ui_out::do_message): Add style parameter. Call
3425 vfprintf_styled_no_gdbfmt.
3426 (cli_ui_out::do_field_string, cli_ui_out::do_spaces)
3427 (cli_ui_out::do_text, cli_ui_out::field_separator): Allow
3428 unfiltered output.
3429 * ui-style.h (struct ui_file_style) <ptr>: New method.
3430
3431 2019-10-01 Tom Tromey <tom@tromey.com>
3432
3433 * unittests/format_pieces-selftests.c: Update. Add final format.
3434 * gdbsupport/format.c (format_pieces::format_pieces): Don't add
3435 empty literal pieces.
3436
3437 2019-10-01 Tom Tromey <tom@tromey.com>
3438
3439 * ui-out.h (enum class ui_out_style_kind): Remove.
3440 (class ui_out) <field_string, field_stsream, do_field_string>:
3441 Change type of "style".
3442 * ui-out.c (ui_out::field_core_addr, ui_out::field_stream)
3443 (ui_out::field_string): Update.
3444 * tui/tui-out.h (class tui_ui_out) <do_field_string>: Change type
3445 of "style".
3446 * tui/tui-out.c (tui_ui_out::do_field_string): Update.
3447 * tracepoint.c (print_one_static_tracepoint_marker): Update.
3448 * stack.c (print_frame_arg, print_frame_info, print_frame):
3449 Update.
3450 * source.c (print_source_lines_base): Update.
3451 * solib.c (info_sharedlibrary_command): Update.
3452 * skip.c (info_skip_command): Update.
3453 * record-btrace.c (btrace_call_history_src_line)
3454 (btrace_call_history): Update.
3455 * python/py-framefilter.c (py_print_frame): Update.
3456 * mi/mi-out.h (class mi_ui_out) <do_field_string>: Change type of
3457 "style".
3458 * mi/mi-out.c (mi_ui_out::do_table_header)
3459 (mi_ui_out::do_field_signed, mi_ui_out::do_field_unsigned)
3460 (mi_ui_out::do_field_string): Update.
3461 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
3462 Update.
3463 * cli-out.h (class cli_ui_out) <do_field_string>: Change type of
3464 "style".
3465 * cli-out.c (cli_ui_out::do_table_header)
3466 (cli_ui_out::do_field_signed, cli_ui_out::do_field_unsigned)
3467 (cli_ui_out::do_field_skip, cli_ui_out::do_field_string)
3468 (cli_ui_out::do_field_fmt): Update.
3469 * breakpoint.c (print_breakpoint_location): Update.
3470 (update_static_tracepoint): Update.
3471
3472 2019-10-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3473
3474 * main.c (relocate_gdbinit_path_maybe_in_datadir): Remove std::string
3475 conversion of gdb_datadir.
3476 (captured_main_1): Remove xstrdup when assigning to gdb_datadir,
3477 remove not needed c_str ().
3478
3479 2019-09-30 Ali Tamur <tamur@google.com>
3480
3481 * dwarf2read.c (skip_one_die): Handle DW_FORM_strx forms.
3482 (dwarf2_string_attr): Likewise.
3483
3484 2019-09-30 Ali Tamur <tamur@google.com>
3485
3486 * dwarf2read.c (process_full_comp_unit): Remove whitespace at the EOL.
3487 (process_full_type_unit): Likewise.
3488 (dump_die_shallow): Likewise.
3489 (cu_debug_loc_section): Likewise.
3490
3491 2019-09-28 Christian Biesinger <cbiesinger@google.com>
3492
3493 * minsyms.c (compare_minimal_symbols): Rename to...
3494 (minimal_symbol_is_less_than): ...this, and adjust to STL
3495 conventions (return bool, take arguments as references)
3496 (minimal_symbol_reader::install): Call std::sort instead
3497 of qsort.
3498
3499 2019-09-29 Christian Biesinger <cbiesinger@google.com>
3500
3501 * minsyms.h (msymbol_hash): Document that this is a case-insensitive
3502 hash and why.
3503 * objfiles.h (struct objfile_per_bfd_storage) <demangled_names_hash,
3504 msymbol_hash, msymbol_demangled_hash>: Improve comments.
3505
3506 2019-09-30 Simon Marchi <simon.marchi@polymtl.ca>
3507
3508 * psymtab.c (add_psymbol_to_list): Move comment to psympriv.h.
3509 * psympriv.h (add_psymbol_to_list): Move comment here and update
3510 it.
3511
3512 2019-09-29 Tom de Vries <tdevries@suse.de>
3513
3514 * contrib/cc-with-tweaks.sh (get_tmpdir): New function.
3515 Use $tmpdir/$(basename "$output_file").dwz instead of
3516 "${output_file}.dwz".
3517
3518 2019-09-28 Simon Marchi <simon.marchi@polymtl.ca>
3519
3520 PR gdb/25045
3521 * hppa-linux-nat.c: Include gdbarch.h.
3522
3523 2019-09-26 Christian Biesinger <cbiesinger@google.com>
3524
3525 * blockframe.c (find_pc_partial_function): Change return type to bool.
3526 * elfread.c (elf_gnu_ifunc_resolve_name): Likewise.
3527 * minsyms.c (in_gnu_ifunc_stub): Likewise.
3528 (stub_gnu_ifunc_resolve_name): Likewise.
3529 * symtab.c (compare_filenames_for_search): Likewise.
3530 (compare_glob_filenames_for_search): Likewise.
3531 (matching_obj_sections): Likewise.
3532 (symbol_matches_domain): Likewise.
3533 (find_line_symtab): Change out param EXACT_MATCH to bool *.
3534 (find_line_pc): Change return type to bool.
3535 (find_line_pc_range): Likewise.
3536 (producer_is_realview): Likewise.
3537 * symtab.h (symbol_matches_domain): Likewise.
3538 (find_pc_partial_function): Likewise.
3539 (find_pc_line_pc_range): Likewise.
3540 (in_gnu_ifunc_stub): Likewise.
3541 (struct gnu_ifunc_fns) <gnu_ifunc_resolve_name>: Likewise.
3542 (find_line_pc): Likewise.
3543 (find_line_pc_range): Likewise.
3544 (matching_obj_sections): Likewise.
3545 (find_line_symtab): Change out parameter to bool.
3546 (producer_is_realview): Change return type to bool.
3547 (compare_filenames_for_search): Likewise.
3548 (compare_glob_filenames_for_search): Likewise.
3549
3550 2019-09-26 Tom Tromey <tom@tromey.com>
3551
3552 * Makefile.in (COMMON_SFILES): Remove gdb_usleep.c.
3553 (HFILES_NO_SRCDIR): Remove gdb_usleep.h.
3554 * gdb_usleep.h: Remove.
3555 * gdb_usleep.c: Remove.
3556 * utils.c: Don't include gdb_usleep.h.
3557
3558 2019-09-26 Tom Tromey <tromey@adacore.com>
3559
3560 * python/py-type.c (type_to_type_object): Call check_typedef
3561 for stub types.
3562
3563 2019-09-26 Tom Tromey <tom@tromey.com>
3564
3565 * utils.h (initialize_utils): Don't declare.
3566 * top.c (gdb_init): Don't call initialize_utils.
3567 * utils.c (initialize_utils): Remove. Move contents...
3568 (_initialize_utils): ... here.
3569
3570 2019-09-25 Tom Tromey <tom@tromey.com>
3571
3572 * python/py-objfile.c (objfpy_get_build_id): Use bin2hex.
3573 * utils.h (make_hex_string): Don't declare.
3574 * utils.c (make_hex_string): Remove.
3575
3576 2019-09-24 Tom de Vries <tdevries@suse.de>
3577
3578 PR gdb/23815
3579 * amd64-linux-nat.c (amd64_linux_nat_target::fetch_registers):
3580 Initialize xstateregs before ptrace PTRACE_GETREGSET call.
3581
3582 2019-09-23 Dimitar Dimitrov <dimitar@dinux.eu>
3583
3584 * NEWS: Mention new simulator port for PRU.
3585
3586 2019-09-23 Christian Biesinger <cbiesinger@google.com>
3587
3588 * ada-exp.y (write_object_remaining): Update.
3589 * ada-lang.c (ada_decode): Return a std::string instead of a char*
3590 and eliminate the static buffer.
3591 (ada_decode_symbol): Update.
3592 (ada_la_decode): Update.
3593 (ada_sniff_from_mangled_name): Update.
3594 (is_valid_name_for_wild_match): Update.
3595 (ada_lookup_name_info::matches): Update and simplify.
3596 (name_matches_regex): Update.
3597 (ada_add_global_exceptions): Update.
3598 * ada-lang.h (ada_decode): Update signature.
3599 * ada-varobj.c (ada_varobj_describe_simple_array_child): Update.
3600 * dwarf-index-write.c (debug_names::insert): Update.
3601
3602 2019-09-21 Simon Marchi <simon.marchi@polymtl.ca>
3603
3604 * solib-svr4.c (svr4_iterate_over_objfiles_in_search_order): Fix
3605 formatting.
3606
3607 2019-09-21 Simon Marchi <simon.marchi@polymtl.ca>
3608
3609 * breakpoint.h (bp_location) <inserted, permanent, duplicate>:
3610 Change "nonzero" to "true" in documentation.
3611
3612 2019-09-20 Christian Biesinger <cbiesinger@google.com>
3613
3614 * solib-darwin.c (darwin_lookup_lib_symbol): Remove.
3615 (_initialize_darwin_solib): Don't set
3616 darwin_so_ops.lookup_lib_global_symbol.
3617 * solib-svr4.c (set_solib_svr4_fetch_link_map_offsets): Call
3618 set_gdbarch_iterate_over_objfiles_in_search_order.
3619 (elf_lookup_lib_symbol): Rename to...
3620 (svr4_iterate_over_objfiles_in_search_order): this, and update
3621 to iterate semantics.
3622 (_initialize_svr4_solib): Don't set lookup_lib_global_symbol.
3623 * solib.c (solib_global_lookup): Remove.
3624 * solist.h (struct target_so_ops): Remove lookup_lib_global_symbol.
3625 (solib_global_lookup): Remove.
3626 * symtab.c (lookup_global_or_static_symbol): Remove call to
3627 solib_global_lookup.
3628
3629 2019-09-20 Joel Brobecker <brobecker@adacore.com>
3630
3631 * NEWS: Move entries about default MI version now being
3632 version 3, and about the GDB/MI fix for multi-location
3633 breakpoints to the "since GDB 8.3" section.
3634
3635 2019-09-20 Joel Brobecker <brobecker@adacore.com>
3636
3637 GDB 8.3.1 released.
3638
3639 2019-09-20 Ulrich Weigand <uweigand@de.ibm.com>
3640
3641 * NEWS: Mention that Cell/B.E. debugging support was removed.
3642 * MAINTAINERS: Remove spu target.
3643
3644 * config/djgpp/fnchange.lst: Remove entries for removed files.
3645
3646 * Makefile.in (ALL_TARGET_OBS): Remove solib-spu.o,
3647 spu-multiarch.o, and spu-tdep.o.
3648 (HFILES_NO_SRCDIR): Remove solib-spu.h and spu-tdep.h.
3649 (ALLDEPFILES): Remove solib-spu.c, spu-linux-nat.c,
3650 spu-multiarch.c, and spu-tdep.c.
3651 * spu-linux-nat.c: Remove file.
3652 * spu-multiarch.c: Remove file.
3653 * spu-tdep.c: Remove file.
3654 * spu-tdep.h: Remove file.
3655 * solib-spu.c: Remove file.
3656 * solib-spu.h: Remove file.
3657
3658 * configure.host (powerpc64*-*-linux*): Remove Cell/B.E. support.
3659 * configure.nat (spu-linux): Remove.
3660 * configure.tgt (powerpc*-*-linux*): Remove solib-spu.o and
3661 solib-multiarch.o from gdb_target_obs.
3662 (spu*-*-*): Remove.
3663
3664 * arch/ppc-linux-common.h (struct ppc_linux_features): Remove "cell"
3665 feature flag.
3666 (ppc_linux_no_features): Update.
3667 * arch/ppc-linux-common.c (ppc_linux_match_description): Remove
3668 Cell/B.E. support.
3669 * arch/ppc-linux-tdesc.h (tdesc_powerpc_cell32l): Remove declaration.
3670 (tdesc_powerpc_cell64l): Likewise.
3671 * nat/ppc-linux.h (PPC_FEATURE_CELL): Remove.
3672 * ppc-linux-nat.c (ppc_linux_nat_target::read_description): Remove
3673 Cell/B.E. support.
3674 * ppc-linux-tdep.h: Do not include "solib-spu.h" or "spu-tdep.h".
3675 Do not include "features/rs6000/powerpc-cell32l.c" or
3676 "features/rs6000/powerpc-cell64l.c".
3677 (ppc_linux_spu_section): Remove.
3678 (ppc_linux_core_read_description): Remove Cell/B.E. support.
3679 (spe_context_objfile, spe_context_lm_addr, spe_context_offset,
3680 spe_context_cache_ptid, spe_context_cache_ptid): Remove.
3681 (ppc_linux_spe_context_lookup): Remove.
3682 (ppc_linux_spe_context_inferior_created): Remove.
3683 (ppc_linux_spe_context_solib_loaded): Remove.
3684 (ppc_linux_spe_context_solib_unloaded): Remove.
3685 (ppc_linux_spe_context): Remove.
3686 (struct ppu2spu_cache): Remove.
3687 (ppu2spu_prev_arch, ppu2spu_this_id, ppu2spu_prev_register): Remove.
3688 (struct ppu2spu_data): Remove.
3689 (ppu2spu_unwind_register, ppu2spu_sniffer, ppu2spu_dealloc_cache,
3690 ppu2spu_unwind): Remove.
3691 (ppc_linux_init_abi): Remove Cell/B.E. support.
3692 * rs6000-tdep.h (rs6000_gdbarch_init): Remove Cell/B.E. support.
3693
3694 * features/Makefile (rs6000/powerpc-cell32l-expedite): Remove.
3695 (rs6000/powerpc-cell64l-expedite): Likewise
3696 (WHICH): Remove rs6000/powerpc-cell32l and rs6000/powerpc-cell64l.
3697 (XMLTOC): Remove rs6000/powerpc-cell32l.xml and
3698 rs6000/powerpc-cell64l.xml.
3699 * features/rs6000/powerpc-cell32l.xml: Remove.
3700 * features/rs6000/powerpc-cell64l.xml: Likewise.
3701 * features/rs6000/powerpc-cell32l.c: Remove generated file.
3702 * features/rs6000/powerpc-cell64l.c: Likewise.
3703 * regformats/rs6000/powerpc-cell32l.dat: Remove generated file.
3704 * regformats/rs6000/powerpc-cell64l.dat: Likewise.
3705 * regformats/reg-spu.dat: Remove.
3706
3707 * target.h (enum target_object): Remove TARGET_OBJECT_SPU.
3708 * corelow.c (struct spuid_list): Remove.
3709 (add_to_spuid_list): Remove.
3710 (core_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
3711 * remote.c (PACKET_qXfer_spu_read, PACKET_qXfer_spu_write): Remove.
3712 (remote_protocol_features): Remove associated entries.
3713 (_initialize_remote): No longer initialize them.
3714 (remote_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
3715 * linux-nat.c (SPUFS_MAGIC): Remove.
3716 (linux_proc_xfer_spu): Remove.
3717 (spu_enumerate_spu_ids): Remove.
3718 (linux_nat_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
3719 * linux-tdep.c (-linux_spu_make_corefile_notes): Remove.
3720 (linux_make_corefile_notes): No longer call it.
3721
3722 * regcache.c (cooked_read_test): Remove bfd_arch_spu special case.
3723 (cooked_write_test): Likewise.
3724
3725 2019-09-20 Tom Tromey <tom@tromey.com>
3726
3727 * NEWS: Mention case-sensitivity of TUI commands.
3728 * tui/tui-win.c (tui_set_focus_command): Now case-sensitive.
3729 (tui_set_win_height_command, parse_scrolling_args): Likewise.
3730 * tui/tui-layout.c (tui_layout_command): Now case-sensitive.
3731
3732 2019-09-20 Tom Tromey <tom@tromey.com>
3733
3734 * tui/tui-source.c (tui_source_window::set_contents): Use
3735 make_unique_xstrdup.
3736 * tui/tui-disasm.c (tui_disasm_window::set_contents): Use
3737 make_unique_xstrdup.
3738
3739 2019-09-20 Tom Tromey <tom@tromey.com>
3740
3741 * tui/tui-data.c: Remove separator comments.
3742 * tui/tui-layout.c: Remove separator comments.
3743 * tui/tui-win.c: Remove separator comments.
3744 * tui/tui-wingeneral.c: Remove separator comments.
3745
3746 2019-09-20 Tom Tromey <tom@tromey.com>
3747
3748 * tui/tui.h (strcat_to_buf): Don't declare.
3749 * tui/tui.c (strcat_to_buf): Remove.
3750
3751 2019-09-20 Tom Tromey <tom@tromey.com>
3752
3753 * tui/tui-source.h (struct tui_source_window) <m_fullname>: Rename
3754 from "fullname".
3755 * tui/tui-source.c (tui_source_window::set_contents)
3756 (tui_source_window::location_matches_p)
3757 (tui_source_window::maybe_update): Update.
3758
3759 2019-09-20 Tom Tromey <tom@tromey.com>
3760
3761 * tui/tui-regs.h (struct tui_data_window) <get_current_group>:
3762 Update.
3763 <m_regs_content, m_regs_column_count, m_current_group>: Add "m_"
3764 prefix.
3765 * tui/tui-regs.c (tui_data_window::last_regs_line_no)
3766 (tui_data_window::line_from_reg_element_no)
3767 (tui_data_window::first_reg_element_no_inline)
3768 (tui_data_window::show_registers)
3769 (tui_data_window::show_register_group)
3770 (tui_data_window::display_registers_from)
3771 (tui_data_window::display_registers_from_line)
3772 (tui_data_window::first_data_item_displayed)
3773 (tui_data_window::delete_data_content_windows)
3774 (tui_data_window::erase_data_content)
3775 (tui_data_window::do_scroll_vertical)
3776 (tui_data_window::refresh_window)
3777 (tui_data_window::check_register_values): Update.
3778
3779 2019-09-20 Tom Tromey <tom@tromey.com>
3780
3781 * tui/tui-stack.h (MAX_LOCATOR_ELEMENT_LEN): Remove define.
3782 (struct tui_locator_window) <full_name, proc_name>: Now
3783 std::string.
3784 * tui/tui-stack.c (tui_locator_window::make_status_line)
3785 (tui_locator_window::set_locator_fullname)
3786 (tui_locator_window::set_locator_info): Update.
3787 * tui/tui-source.c (tui_source_window::set_contents)
3788 (tui_source_window::showing_source_p): Update.
3789
3790 2019-09-20 Tom Tromey <tom@tromey.com>
3791
3792 * tui/tui-stack.c (tui_locator_window::set_locator_fullname):
3793 Don't call tui_locator_win_info_ptr.
3794
3795 2019-09-20 Tom Tromey <tom@tromey.com>
3796
3797 * tui/tui-win.c (tui_resize_all): Don't call refresh.
3798
3799 2019-09-20 Tom Tromey <tom@tromey.com>
3800
3801 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Use 1 as
3802 height for locator.
3803 * tui/tui-stack.c (tui_locator_window::rerender): Call scrollok.
3804 * tui/tui-layout.c (show_source_disasm_command, show_data)
3805 (show_source_or_disasm_and_command): Use 1 as height for locator.
3806
3807 2019-09-20 Tom Tromey <tom@tromey.com>
3808
3809 * tui/tui.c (tui_enable): Update.
3810 * tui/tui-win.c (tui_sigwinch_handler, tui_async_resize_screen):
3811 Update.
3812 * tui/tui-data.h (tui_win_resized, tui_set_win_resized_to):
3813 Update.
3814 * tui/tui-data.c (win_resized): Now bool.
3815 (tui_win_resized): Return bool.
3816 (tui_set_win_resized_to): Accept a bool.
3817
3818 2019-09-20 Tom Tromey <tom@tromey.com>
3819
3820 * tui/tui-regs.h (struct tui_data_window) <show_register_group>:
3821 Change type of "refresh_values_only".
3822 * tui/tui-regs.c (tui_data_window::show_register_group): Change
3823 type of "refresh_values_only".
3824
3825 2019-09-20 Tom Tromey <tom@tromey.com>
3826
3827 * tui/tui-disasm.c (struct tui_asm_line) <addr_string, insn>: Now
3828 std::string.
3829 (tui_disassemble): Add "pos" parameter.
3830 (tui_disasm_window::set_contents): Simplify.
3831
3832 2019-09-20 Tom Tromey <tom@tromey.com>
3833
3834 * tui/tui-winsource.h (struct tui_source_window_base)
3835 <show_source_content>: Now private.
3836 * tui/tui-winsource.c
3837 (tui_source_window_base::show_source_content): Don't handle empty
3838 content case.
3839
3840 2019-09-20 Tom Tromey <tom@tromey.com>
3841
3842 * tui/tui-layout.c (show_source_disasm_command)
3843 (show_source_or_disasm_and_command): Don't call
3844 show_source_content.
3845
3846 2019-09-20 Tom Tromey <tom@tromey.com>
3847
3848 * tui/tui-stack.h (struct tui_locator_window) <make_status_line>:
3849 Declare.
3850 * tui/tui-stack.c (tui_locator_window::make_status_line): Rename
3851 from tui_make_status_line.
3852 (tui_locator_window::rerender): Update.
3853
3854 2019-09-20 Tom Tromey <tom@tromey.com>
3855
3856 * tui/tui-stack.c (tui_make_status_line): Return std::string.
3857 (tui_locator_window::rerender): Update.
3858
3859 2019-09-20 Tom Tromey <tom@tromey.com>
3860
3861 * tui/tui-winsource.h (struct tui_source_window_base)
3862 <~tui_source_window_base>: Don't declare.
3863 <fullname>: Remove.
3864 * tui/tui-winsource.c (~tui_source_window_base): Remove.
3865 * tui/tui-source.h (struct tui_source_window) <fullname>: New
3866 member.
3867 * tui/tui-source.c (tui_source_window::set_contents): Update.
3868 (tui_source_window::location_matches_p)
3869 (tui_source_window::maybe_update): Update.
3870
3871 2019-09-20 Tom Tromey <tom@tromey.com>
3872
3873 * tui/tui-winsource.h (~tui_source_element): Remove.
3874 (tui_source_element): Update.
3875 (struct tui_source_element) <line>: Now a unique_xmalloc_ptr.
3876 * tui/tui-winsource.c (tui_show_source_line): Update.
3877 * tui/tui-source.c (tui_source_window::set_contents): Update.
3878 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
3879
3880 2019-09-20 Tom Tromey <tom@tromey.com>
3881
3882 * tui/tui-data.h (tui_clear_source_windows_detail): Don't
3883 declare.
3884 * tui/tui-layout.c (tui_add_win_to_layout): Don't call
3885 tui_clear_source_windows_detail.
3886 * tui/tui-winsource.h (struct tui_source_window_base)
3887 <clear_detail>: Don't declare.
3888 * tui/tui-winsource.c (tui_source_window_base::clear_detail):
3889 Remove.
3890 * tui/tui-data.c (tui_clear_source_windows_detail): Remove.
3891
3892 2019-09-20 Tom Tromey <tromey@adacore.com>
3893
3894 PR ada/24919:
3895 * block.c (contained_in): Fix final return value.
3896
3897 2019-09-20 Alan Modra <amodra@gmail.com>
3898
3899 * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Use bfd_set_usrdata.
3900 * dwarf2read.c (dwarf2_read_gdb_index, dwarf2_read_debug_names),
3901 (read_indirect_string_from_dwz): Use bfd accessor.
3902 * dwarf2read.h (struct dwz_file <filename>): Likewise.
3903 * machoread.c (macho_symfile_read_all_oso): Likewise.
3904 * solib.c (solib_bfd_open): Likewise.
3905
3906 2019-09-19 Christian Biesinger <cbiesinger@google.com>
3907
3908 * eval.c: Move declaration of overload_resolution to...
3909 * value.h: ...here.
3910
3911 2019-09-19 Christian Biesinger <cbiesinger@google.com>
3912
3913 * arm-linux-nat.c: Remove extern declaration for arm_apcs_32.
3914 * arm-linux-tdep.c: Likewise.
3915 * arm-nbsd-nat.c: Likewise.
3916 * arm-tdep.h: Declare arm_apcs_32.
3917 * arm-tdep.c: Move documentation for arm_apcs_32 to arm-tdep.h.
3918
3919 2019-09-19 Christian Biesinger <cbiesinger@google.com>
3920
3921 * dwarf2loc.c: Remove extern declaration of dwarf_always_disassemble.
3922 * dwarf2read.h: Declare dwarf_always_disassemble.
3923
3924 2019-09-19 Tom de Vries <tdevries@suse.de>
3925
3926 PR gdb/25009
3927 * source-cache.c (source_cache::ensure): Catch exception thrown during
3928 construction of the highlighter.
3929
3930 2019-09-18 Alan Modra <amodra@gmail.com>
3931
3932 * aarch64-linux-tdep.c, * arm-tdep.c, * auto-load.c,
3933 * coff-pe-read.c, * coffread.c, * corelow.c, * dbxread.c,
3934 * dicos-tdep.c, * dwarf2-frame.c, * dwarf2read.c, * elfread.c,
3935 * exec.c, * fbsd-tdep.c, * gcore.c, * gdb_bfd.c, * gdb_bfd.h,
3936 * hppa-tdep.c, * i386-cygwin-tdep.c, * i386-fbsd-tdep.c,
3937 * i386-linux-tdep.c, * jit.c, * linux-tdep.c, * machoread.c,
3938 * maint.c, * mdebugread.c, * minidebug.c, * mips-linux-tdep.c,
3939 * mips-sde-tdep.c, * mips-tdep.c, * mipsread.c, * nto-tdep.c,
3940 * objfiles.c, * objfiles.h, * osabi.c, * ppc-linux-tdep.c,
3941 * ppc64-tdep.c, * record-btrace.c, * record-full.c, * remote.c,
3942 * rs6000-aix-tdep.c, * rs6000-tdep.c, * s390-linux-tdep.c,
3943 * s390-tdep.c, * solib-aix.c, * solib-dsbt.c, * solib-frv.c,
3944 * solib-spu.c, * solib-svr4.c, * solib-target.c,
3945 * spu-linux-nat.c, * spu-tdep.c, * symfile-mem.c, * symfile.c,
3946 * symmisc.c, * symtab.c, * target.c, * windows-nat.c,
3947 * xcoffread.c, * cli/cli-dump.c, * compile/compile-object-load.c,
3948 * mi/mi-interp.c: Update throughout for bfd section macro and
3949 function changes.
3950 * gcore (gcore_create_callback): Use bfd_set_section_lma.
3951 * spu-tdep.c (spu_overlay_new_objfile): Likewise.
3952
3953 2019-09-18 Tom Tromey <tom@tromey.com>
3954
3955 * NEWS: Add entry.
3956 * tui/tui.c (tui_initialize_readline): Set name of keymap. Do not
3957 call rl_initialize.
3958 (tui_enable): Do not call rl_initialize.
3959
3960 2019-09-18 Christian Groessler <chris@groessler.org>
3961
3962 * alpha-linux-nat.c: Include gdbarch.h.
3963
3964 2019-09-18 Simon Marchi <simon.marchi@polymtl.ca>
3965
3966 * ui-file.c: Include cli/cli-style.h.
3967 (term_cli_styling): Remove cli_styling declaration.
3968
3969 2019-09-18 Alan Modra <amodra@gmail.com>
3970
3971 * arm-tdep.c (arm_record_special_symbol): Update bfd_get_section
3972 to bfd_asymbol_section.
3973
3974 2019-09-18 Alan Modra <amodra@gmail.com>
3975
3976 * amd64-dicos-tdep.c (amd64_dicos_osabi_sniffer): Constify target.
3977 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
3978 * i386-dicos-tdep.c (i386_dicos_osabi_sniffer): Likewise.
3979
3980 2019-09-18 Alan Modra <amodra@gmail.com>
3981
3982 * solib-spu.c (spu_bfd_open): Use bfd_set_filename.
3983 * spu-linux-nat.c (spu_bfd_open): Likewise.
3984
3985 2019-09-18 Christian Biesinger <cbiesinger@google.com>
3986
3987 * dwarf2loc.c: Change extern declaration of dwarf_always_disassemble
3988 to bool to match definition in dwarf2read.c.
3989
3990 2019-09-17 Christian Biesinger <cbiesinger@google.com>
3991
3992 * ada-lang.c (ada_ignore_descriptive_types_p): Change to bool.
3993 (print_signatures): Likewise.
3994 (trust_pad_over_xvs): Likewise.
3995 * arch/aarch64-insn.c (aarch64_debug): Likewise.
3996 * arch/aarch64-insn.h (aarch64_debug): Likewise.
3997 * arm-linux-nat.c (arm_apcs_32): Likewise.
3998 * arm-linux-tdep.c (arm_apcs_32): Likewise.
3999 * arm-nbsd-nat.c (arm_apcs_32): Likewise.
4000 * arm-tdep.c (arm_debug): Likewise.
4001 (arm_apcs_32): Likewise.
4002 * auto-load.c (debug_auto_load): Likewise.
4003 (auto_load_gdb_scripts): Likewise.
4004 (global_auto_load): Likewise.
4005 (auto_load_local_gdbinit): Likewise.
4006 (auto_load_local_gdbinit_loaded): Likewise.
4007 * auto-load.h (global_auto_load): Likewise.
4008 (auto_load_local_gdbinit): Likewise.
4009 (auto_load_local_gdbinit_loaded): Likewise.
4010 * breakpoint.c (disconnected_dprintf): Likewise.
4011 (breakpoint_proceeded): Likewise.
4012 (automatic_hardware_breakpoints): Likewise.
4013 (always_inserted_mode): Likewise.
4014 (target_exact_watchpoints): Likewise.
4015 (_initialize_breakpoint): Update.
4016 * breakpoint.h (target_exact_watchpoints): Change to bool.
4017 * btrace.c (maint_btrace_pt_skip_pad): Likewise.
4018 * cli/cli-cmds.c (trace_commands): Likewise.
4019 * cli/cli-cmds.h (trace_commands): Likewise.
4020 * cli/cli-decode.c (add_setshow_boolean_cmd): Change int* argument
4021 to bool*.
4022 * cli/cli-logging.c (logging_overwrite): Change to bool.
4023 (logging_redirect): Likewise.
4024 (debug_redirect): Likewise.
4025 * cli/cli-option.h (option_def) <boolean>: Change return type to bool*.
4026 (struct boolean_option_def) <get_var_address_cb_>: Change return type
4027 to bool.
4028 <boolean_option_def>: Update.
4029 (struct flag_option_def): Change default type of Context to bool
4030 from int.
4031 <flag_option_def>: Change return type of var_address_cb_ to bool*.
4032 * cli/cli-setshow.c (do_set_command): Cast to bool* instead of int*.
4033 (get_setshow_command_value_string): Likewise.
4034 * cli/cli-style.c (cli_styling): Change to bool.
4035 (source_styling): Likewise.
4036 * cli/cli-style.h (source_styling): Likewise.
4037 (cli_styling): Likewise.
4038 * cli/cli-utils.h (struct qcs_flags) <quiet, cont, silent>: Change
4039 to bool.
4040 * command.h (var_types): Update comment.
4041 (add_setshow_boolean_cmd): Change int* var argument to bool*.
4042 * compile/compile-cplus-types.c (debug_compile_cplus_types): Change to
4043 bool.
4044 (debug_compile_cplus_scopes): Likewise.
4045 * compile/compile-internal.h (compile_debug): Likewise.
4046 * compile/compile.c (compile_debug): Likewise.
4047 (struct compile_options) <raw>: Likewise.
4048 * cp-support.c (catch_demangler_crashes): Likewise.
4049 * cris-tdep.c (usr_cmd_cris_version_valid): Likewise.
4050 (usr_cmd_cris_dwarf2_cfi): Likewise.
4051 * csky-tdep.c (csky_debug): Likewise.
4052 * darwin-nat.c (enable_mach_exceptions): Likewise.
4053 * dcache.c (dcache_enabled_p): Likewise.
4054 * defs.h (info_verbose): Likewise.
4055 * demangle.c (demangle): Likewise.
4056 (asm_demangle): Likewise.
4057 * dwarf-index-cache.c (debug_index_cache): Likewise.
4058 * dwarf2-frame.c (dwarf2_frame_unwinders_enabled_p): Likewise.
4059 * dwarf2-frame.h (dwarf2_frame_unwinders_enabled_p): Likewise.
4060 * dwarf2read.c (check_physname): Likewise.
4061 (use_deprecated_index_sections): Likewise.
4062 (dwarf_always_disassemble): Likewise.
4063 * eval.c (overload_resolution): Likewise.
4064 * event-top.c (set_editing_cmd_var): Likewise.
4065 (exec_done_display_p): Likewise.
4066 * event-top.h (set_editing_cmd_var): Likewise.
4067 (exec_done_display_p): Likewise.
4068 * exec.c (write_files): Likewise.
4069 * fbsd-nat.c (debug_fbsd_lwp): Likewise
4070 (debug_fbsd_nat): Likewise.
4071 * frame.h (struct frame_print_options) <print_raw_frame_arguments>:
4072 Likewise.
4073 (struct set_backtrace_options) <backtrace_past_main>: Likewise.
4074 <backtrace_past_entry> Likewise.
4075 * gdb-demangle.h (demangle): Likewise.
4076 (asm_demangle): Likewise.
4077 * gdb_bfd.c (bfd_sharing): Likewise.
4078 * gdbcore.h (write_files): Likewise.
4079 * gdbsupport/common-debug.c (show_debug_regs): Likewise.
4080 * gdbsupport/common-debug.h (show_debug_regs): Likewise.
4081 * gdbthread.h (print_thread_events): Likewise.
4082 * gdbtypes.c (opaque_type_resolution): Likewise.
4083 (strict_type_checking): Likewise.
4084 * gnu-nat.c (gnu_debug_flag): Likewise.
4085 * guile/scm-auto-load.c (auto_load_guile_scripts): Likewise.
4086 * guile/scm-param.c (pascm_variable): Add boolval.
4087 (add_setshow_generic): Update.
4088 (pascm_param_value): Update.
4089 (pascm_set_param_value_x): Update.
4090 * hppa-tdep.c (hppa_debug): Change to bool..
4091 * infcall.c (may_call_functions_p): Likewise.
4092 (coerce_float_to_double_p): Likewise.
4093 (unwind_on_signal_p): Likewise.
4094 (unwind_on_terminating_exception_p): Likewise.
4095 * infcmd.c (startup_with_shell): Likewise.
4096 * inferior.c (print_inferior_events): Likewise.
4097 * inferior.h (startup_with_shell): Likewise.
4098 (print_inferior_events): Likewise.
4099 * infrun.c (step_stop_if_no_debug): Likewise.
4100 (detach_fork): Likewise.
4101 (debug_displaced): Likewise.
4102 (disable_randomization): Likewise.
4103 (non_stop): Likewise.
4104 (non_stop_1): Likewise.
4105 (observer_mode): Likewise.
4106 (observer_mode_1): Likewise.
4107 (set_observer_mode): Update.
4108 (sched_multi): Change to bool.
4109 * infrun.h (debug_displaced): Likewise.
4110 (sched_multi): Likewise.
4111 (step_stop_if_no_debug): Likewise.
4112 (non_stop): Likewise.
4113 (disable_randomization): Likewise.
4114 * linux-tdep.c (use_coredump_filter): Likewise.
4115 (dump_excluded_mappings): Likewise.
4116 * linux-thread-db.c (auto_load_thread_db): Likewise.
4117 (check_thread_db_on_load): Likewise.
4118 * main.c (captured_main_1): Update.
4119 * maint-test-options.c (struct test_options_opts) <flag_opt, xx1_opt,
4120 xx2_opt, boolean_opt>: Change to bool.
4121 * maint-test-settings.c (maintenance_test_settings_boolean): Likewise.
4122 * maint.c (maintenance_profile_p): Likewise.
4123 (per_command_time): Likewise.
4124 (per_command_space): Likewise.
4125 (per_command_symtab): Likewise.
4126 * memattr.c (inaccessible_by_default): Likewise.
4127 * mi/mi-main.c (mi_async): Likewise.
4128 (mi_async_1): Likewise.
4129 * mips-tdep.c (mips64_transfers_32bit_regs_p): Likewise.
4130 * nat/fork-inferior.h (startup_with_shell): Likewise.
4131 * nat/linux-namespaces.c (debug_linux_namespaces): Likewise.
4132 * nat/linux-namespaces.h (debug_linux_namespaces): Likewise.
4133 * nios2-tdep.c (nios2_debug): Likewise.
4134 * or1k-tdep.c (or1k_debug): Likewise.
4135 * parse.c (parser_debug): Likewise.
4136 * parser-defs.h (parser_debug): Likewise.
4137 * printcmd.c (print_symbol_filename): Likewise.
4138 * proc-api.c (procfs_trace): Likewise.
4139 * python/py-auto-load.c (auto_load_python_scripts): Likewise.
4140 * python/py-param.c (union parmpy_variable): Add "bool boolval" field.
4141 (set_parameter_value): Update.
4142 (add_setshow_generic): Update.
4143 * python/py-value.c (copy_py_bool_obj): Change argument from int*
4144 to bool*.
4145 * python/python.c (gdbpy_parameter_value): Cast to bool* instead of
4146 int*.
4147 * ravenscar-thread.c (ravenscar_task_support): Change to bool.
4148 * record-btrace.c (record_btrace_target::store_registers): Update.
4149 * record-full.c (record_full_memory_query): Change to bool.
4150 (record_full_stop_at_limit): Likewise.
4151 * record-full.h (record_full_memory_query): Likewise.
4152 * remote-notif.c (notif_debug): Likewise.
4153 * remote-notif.h (notif_debug): Likewise.
4154 * remote.c (use_range_stepping): Likewise.
4155 (interrupt_on_connect): Likewise.
4156 (remote_break): Likewise.
4157 * ser-tcp.c (tcp_auto_retry): Likewise.
4158 * ser-unix.c (serial_hwflow): Likewise.
4159 * skip.c (debug_skip): Likewise.
4160 * solib-aix.c (solib_aix_debug): Likewise.
4161 * spu-tdep.c (spu_stop_on_load_p): Likewise.
4162 (spu_auto_flush_cache_p): Likewise.
4163 * stack.c (struct backtrace_cmd_options) <full, no_filters, hide>:
4164 Likewise.
4165 (struct info_print_options) <quiet>: Likewise.
4166 * symfile-debug.c (debug_symfile): Likewise.
4167 * symfile.c (auto_solib_add): Likewise.
4168 (separate_debug_file_debug): Likewise.
4169 * symfile.h (auto_solib_add): Likewise.
4170 (separate_debug_file_debug): Likewise.
4171 * symtab.c (basenames_may_differ): Likewise.
4172 (struct filename_partial_match_opts) <dirname, basename>: Likewise.
4173 (struct info_print_options) <quiet, exclude_minsyms>: Likewise.
4174 (struct info_types_options) <quiet>: Likewise.
4175 * symtab.h (demangle): Likewise.
4176 (basenames_may_differ): Likewise.
4177 * target-dcache.c (stack_cache_enabled_1): Likewise.
4178 (code_cache_enabled_1): Likewise.
4179 * target.c (trust_readonly): Likewise.
4180 (may_write_registers): Likewise.
4181 (may_write_memory): Likewise.
4182 (may_insert_breakpoints): Likewise.
4183 (may_insert_tracepoints): Likewise.
4184 (may_insert_fast_tracepoints): Likewise.
4185 (may_stop): Likewise.
4186 (auto_connect_native_target): Likewise.
4187 (target_stop_and_wait): Update.
4188 (target_async_permitted): Change to bool.
4189 (target_async_permitted_1): Likewise.
4190 (may_write_registers_1): Likewise.
4191 (may_write_memory_1): Likewise.
4192 (may_insert_breakpoints_1): Likewise.
4193 (may_insert_tracepoints_1): Likewise.
4194 (may_insert_fast_tracepoints_1): Likewise.
4195 (may_stop_1): Likewise.
4196 * target.h (target_async_permitted): Likewise.
4197 (may_write_registers): Likewise.
4198 (may_write_memory): Likewise.
4199 (may_insert_breakpoints): Likewise.
4200 (may_insert_tracepoints): Likewise.
4201 (may_insert_fast_tracepoints): Likewise.
4202 (may_stop): Likewise.
4203 * thread.c (struct info_threads_opts) <show_global_ids>: Likewise.
4204 (make_thread_apply_all_options_def_group): Change argument from int*
4205 to bool*.
4206 (thread_apply_all_command): Update.
4207 (print_thread_events): Change to bool.
4208 * top.c (confirm): Likewise.
4209 (command_editing_p): Likewise.
4210 (history_expansion_p): Likewise.
4211 (write_history_p): Likewise.
4212 (info_verbose): Likewise.
4213 * top.h (confirm): Likewise.
4214 (history_expansion_p): Likewise.
4215 * tracepoint.c (disconnected_tracing): Likewise.
4216 (circular_trace_buffer): Likewise.
4217 * typeprint.c (print_methods): Likewise.
4218 (print_typedefs): Likewise.
4219 * utils.c (debug_timestamp): Likewise.
4220 (sevenbit_strings): Likewise.
4221 (pagination_enabled): Likewise.
4222 * utils.h (sevenbit_strings): Likewise.
4223 (pagination_enabled): Likewise.
4224 * valops.c (overload_resolution): Likewise.
4225 * valprint.h (struct value_print_options) <prettyformat_arrays,
4226 prettyformat_structs, vtblprint, unionprint, addressprint, objectprint,
4227 stop_print_at_null, print_array_indexes, deref_ref, static_field_print,
4228 pascal_static_field_print, raw, summary, symbol_print, finish_print>:
4229 Likewise.
4230 * windows-nat.c (new_console): Likewise.
4231 (cygwin_exceptions): Likewise.
4232 (new_group): Likewise.
4233 (debug_exec): Likewise.
4234 (debug_events): Likewise.
4235 (debug_memory): Likewise.
4236 (debug_exceptions): Likewise.
4237 (useshell): Likewise.
4238 * windows-tdep.c (maint_display_all_tib): Likewise.
4239 * xml-support.c (debug_xml): Likewise.
4240
4241 2019-09-17 Mike Gulick <mgulick@mathworks.com>
4242
4243 * source.c (prepare_path_for_appending): New function.
4244 (openp): Make use of new function.
4245 (find_and_open_source): Search for the compilation directory and
4246 source file as a relative path beneath the directory search path.
4247
4248 2019-09-17 Andrew Burgess <andrew.burgess@embecosm.com>
4249
4250 * source-cache.c (source_cache::get_line_charpos): Catch
4251 exceptions and return false, this matches the behaviour documented
4252 in the header file.
4253
4254 2019-09-17 Joel Brobecker <brobecker@adacore.com>
4255
4256 * ada-tasks.c (info_task): Remove quoting of the task's name.
4257
4258 2019-09-16 Christian Biesinger <cbiesinger@google.com>
4259
4260 * symfile.c (auto_solib_add): Replace comment with a reference
4261 to the header file.
4262
4263 2019-09-14 Christian Biesinger <cbiesinger@google.com>
4264
4265 * NEWS: Mention that gdb can now be compiled with Python 3
4266 on Windows.
4267
4268 2019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
4269
4270 * maint.c (maint_print_section_data::maint_print_section_data):
4271 Force use of 'float log10 (float)' by casting the argument to
4272 float.
4273
4274 2019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
4275
4276 * maint.c: Add 'cmath' include.
4277 (struct maint_print_section_data): New structure.
4278 (print_section_index): New function.
4279 (print_bfd_section_info): Add header comment, small whitespace
4280 cleanup, and update to call new print_section_index function.
4281 (print_objfile_section_info): Likewise.
4282 (maint_obj_section_from_bfd_section): New function.
4283 (print_bfd_section_info_maybe_relocated): New function.
4284 (maintenance_info_sections): Add header comment, always use
4285 bfd_map_over_sections instead of ALL_OBJFILE_OSECTIONS.
4286
4287 2019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
4288
4289 * psymtab.c (find_pc_sect_psymtab): Move baseaddr local into more
4290 inner scope, add check that the objfile has psymtabs before
4291 checking psymtabs_addrmap.
4292 * psymtab.h (psymtab_storage) <psymtabs_addrmap>: Extend comment.
4293
4294 2019-09-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4295
4296 * NEWS: Announce that Ada task names are now shown at more places,
4297 and between quotes (except in info task output).
4298 * gdb/ada-tasks.c (task_to_str): New function.
4299 (display_current_task_id): Call task_to_str.
4300 (task_command_1): Likewise.
4301 (print_ada_task_info): In non-mi mode, Properly align headers and data
4302 when task-id length is > 9 (9 is the default for a 32 bits CORE_ADDR).
4303
4304 2019-09-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4305
4306 * procfs.c (procfs_target::wait) <PR_FAULTED>: Get signal from
4307 prstatus.pr_lwp.pr_info instead of making it up.
4308
4309 2019-09-11 Christian Biesinger <cbiesinger@google.com>
4310
4311 * auto-load.c (auto_load_expand_dir_vars): Update.
4312 * defs.h (gdb_datadir): Change to std::string.
4313 (python_libdir): Likewise.
4314 (relocate_gdb_directory): Change return type to std::string.
4315 * guile/guile.c (gdbscm_data_directory): Update.
4316 (initialize_scheme_side): Update.
4317 * jit.c (jit_reader_dir): Change to std::string.
4318 (jit_reader_load_command): Update.
4319 * main.c (gdb_datadir): Change to std::string.
4320 (python_libdir): Likewise.
4321 (set_gdb_data_directory): Update.
4322 (relocate_path): Change to return std::string.
4323 (relocate_gdb_directory): Change to return std::string.
4324 (relocate_gdbinit_path_maybe_in_datadir): Update.
4325 (captured_main_1): Update.
4326 * python/python.c (do_start_initialization): Update.
4327 * top.c (show_gdb_datadir): Update.
4328 * xml-syscall.c (xml_init_syscalls_info): Update.
4329 (init_syscalls_info): Update.
4330
4331 2019-09-11 Christian Biesinger <cbiesinger@google.com>
4332
4333 * main.c (relocate_gdbinit_path_maybe_in_datadir): Factor this code
4334 out of get_init_files.
4335 (get_init_files): Update.
4336
4337 2019-09-11 Christian Biesinger <cbiesinger@google.com>
4338
4339 * main.c (get_init_files): Change to use std::string.
4340 (captured_main_1): Update.
4341 (print_gdb_help): Update.
4342
4343 2019-09-11 Ali Tamur <tamur@google.com>
4344
4345 *gdb/target-float.c (host_float_ops<T>::to_longest): Update
4346 implementation.
4347
4348 2019-09-11 Christian Biesinger <cbiesinger@google.com>
4349
4350 * dbxread.c (read_dbx_symtab): Update.
4351 * dwarf2read.c (load_partial_dies): Update.
4352 * mdebugread.c (parse_partial_symbols): Update.
4353 (handle_psymbol_enumerators): Update.
4354 * psympriv.h (add_psymbol_to_list): Change type of copy_names to bool.
4355 * psymtab.c (add_psymbol_to_bcache): Likewise.
4356 (add_psymbol_to_list): Likewise.
4357 * symtab.c (symbol_set_names): Likewise.
4358 * symtab.h (symbol_set_names): Likewise.
4359 * xcoffread.c (scan_xcoff_symtab): Update.
4360
4361 2019-09-11 Tom Tromey <tom@tromey.com>
4362
4363 * symfile-mem.c (symbol_file_add_from_memory): Use
4364 bfd_set_filename.
4365 * solib-darwin.c (darwin_bfd_open): Use bfd_set_filename.
4366 * solib-aix.c (solib_aix_bfd_open): Use bfd_set_filename.
4367
4368 2019-09-10 Tom Tromey <tromey@adacore.com>
4369
4370 * dwarf-index-write.c (write_psymbols): Extend error message.
4371 (debug_names::insert): Add Ada code.
4372 (debug_names::write_psymbols): Remove Ada check.
4373 (debug_names) <m_string_obstack>: New member.
4374 * dwarf2read.c (gdb_index_symbol_name_matcher): Remove.
4375 (gdb_index_symbol_name_matcher::matches): Remove.
4376 (mapped_index_base::find_name_components_bounds): Add "lang"
4377 parameter.
4378 (mapped_index_base::build_name_components): Also split names
4379 according to Ada syntax.
4380 (dw2_expand_symtabs_matching_symbol): Loop over languages. Change
4381 type of "match_callback".
4382 (check_match, check_find_bounds_finds)
4383 (dw2_expand_symtabs_matching): Update.
4384 (dw2_debug_names_iterator): Add new constructor.
4385 (dw2_debug_names_map_matching_symbols): New function.
4386 (dw2_debug_names_expand_symtabs_matching): Update.
4387 (dwarf2_debug_names_functions): Use
4388 dw2_debug_names_map_matching_symbols.
4389
4390 2019-09-10 Tom Tromey <tromey@adacore.com>
4391
4392 * dwarf2read.c (dw2_get_file_names_reader): Add the
4393 CU's file name to the results.
4394
4395 2019-09-10 Tom Tromey <tromey@adacore.com>
4396
4397 * ada-lang.c (add_nonlocal_symbols): Combine calls to
4398 map_matching_symbols. Update.
4399 * dwarf2read.c (dw2_map_matching_symbols): Update.
4400 * psymtab.c (match_partial_symbol): Change type; update.
4401 (psym_map_matching_symbols): Likewise.
4402 * symfile-debug.c (debug_qf_map_matching_symbols): Change
4403 type; update.
4404 * symfile.h (struct quick_symbol_functions)
4405 <map_matching_symbols>: Change "name" to be a lookup_name_info.
4406 Remove "match".
4407
4408 2019-09-10 Tom Tromey <tromey@adacore.com>
4409
4410 * psymtab.c (map_block): Remove.
4411 (psym_map_matching_symbols): Use iterate_over_symbols_terminated.
4412 * symtab.c (iterate_over_symbols_terminated): New function.
4413 * symtab.c (iterate_over_symbols_terminated): Declare.
4414
4415 2019-09-10 Tom Tromey <tromey@adacore.com>
4416
4417 * ada-lang.c (ada_iterate_over_symbols): Return bool.
4418 * language.h (struct language_defn) <la_iterate_over_symbols>:
4419 Return bool.
4420 * symtab.c (iterate_over_symbols): Return bool.
4421 * symtab.h (iterate_over_symbols): Return bool.
4422
4423 2019-09-10 Tom Tromey <tromey@adacore.com>
4424
4425 * ada-lang.c (aux_add_nonlocal_symbols): Change type.
4426 (add_nonlocal_symbols): Update.
4427 * dwarf2read.c (dw2_map_matching_symbols): Change type.
4428 * psymtab.c (map_block, psym_map_matching_symbols): Change type.
4429 * symfile-debug.c (debug_qf_map_matching_symbols): Change type.
4430 * symfile.h (struct quick_symbol_functions) <map_matching_symbols>:
4431 Change type of "callback". Remove "data".
4432
4433
4434 2019-09-09 Ali Tamur <tamur@google.com>
4435
4436 * dwarf2read.c (comp_unit_head): Update comment.
4437 (dwarf2_dwo_name): New function declaration.
4438 (dwarf_unit_type_name): New function declaration.
4439 (read_comp_unit_head): Add support for new compilation units,
4440 DW_UT_partial, DW_UT_skeleton, DW_UT_split_compile, DW_UT_split_type.
4441 Particularly, DW_UT_skeleton and DW_UT_split_compile have dwo_id
4442 (currently named as "signature") in their header. Also clarify error
4443 messages.
4444 (lookup_dwo_id): New function. Returns the dwo id of the given
4445 compile unit.
4446 (lookup_dwo_unit): Use the new lookup_dwo_id function.
4447 (init_cutu_and_read_dies): Use the new dwarf2_dwo_name and lookup_dwo_id
4448 functions.
4449 (create_dwo_cu_reader): Use the added lookup_dwo_id function.
4450 (dwarf2_dwo_name): Get the dwo name if present.
4451 (dwarf_unit_type_name): Convert DW_UT_* types to string for diagnostic
4452 purposes.
4453
4454 2019-09-09 Tom Tromey <tom@tromey.com>
4455
4456 * tui/tui-win.c (tui_all_windows_info): Use ui_out.
4457
4458 2019-09-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4459
4460 * python/python.c (do_start_initialization): Make progname_copy static,
4461 to avoid a leak report.
4462
4463 2019-09-08 Tom Tromey <tom@tromey.com>
4464
4465 * tui/tui-wingeneral.c (box_win): Truncate long window titles.
4466
4467 2019-09-07 Simon Marchi <simon.marchi@efficios.com>
4468
4469 * dwarf2read.c (struct dw2_symtab_iterator) <block_index>:
4470 Change type to gdb::optional<block_enum>.
4471 (dw2_symtab_iter_init): Change block_index parameter type
4472 to gdb::optional<block_enum>.
4473 (dw2_lookup_symbol): Change block_index parameter
4474 type to block_enum.c
4475 (dw2_debug_names_lookup_symbol): Likewise.
4476 * psymtab.c (psym_lookup_symbol): Likewise.
4477 * symfile-debug.c (debug_qf_lookup_symbol): Likewise.
4478 * symfile.h (struct quick_symbol_functions) <lookup_symbol>:
4479 Likewise.
4480
4481 2019-09-06 Christian Biesinger <cbiesinger@google.com>
4482
4483 * defs.h (relocate_gdb_directory): Change int to bool in
4484 signature and rename flag to relocatable.
4485 * main.c (relocate_path): Likewise.
4486 (relocate_gdb_directory): Likewise.
4487
4488 2019-09-06 Alan Modra <amodra@gmail.com>
4489
4490 * coffread.c (coff_symfile_read): Constify filename variable.
4491 * dbxread.c (dbx_symfile_init, coffstab_build_psymtabs),
4492 (elfstab_build_psymtabs, stabsect_build_psymtabs): Likewise.
4493 * gdb_bfd.c (gdb_bfd_close_or_warn): Likewise.
4494 * solib.c (reload_shared_libraries_1): Likewise.
4495 * symfile.c (reread_symbols): Likewise.
4496 * solib-aix.c (solib_aix_bfd_open): Add cast for xfree of filename.
4497 * solib-darwin.c (darwin_bfd_open): Likewise.
4498 * symfile-mem.c (symbol_file_add_from_memory): Likewise.
4499
4500 2019-09-03 Andrew Burgess <andrew.burgess@embecosm.com>
4501
4502 * psymtab.c (print_partial_symbols): Handle missing domain_enum
4503 values MODULE_DOMAIN and COMMON_BLOCK_DOMAIN.
4504
4505 2019-09-03 Tom Tromey <tromey@adacore.com>
4506
4507 * ada-valprint.c (ada_val_print_num): Don't recurse for range
4508 types.
4509 (has_negatives): Unbias a range type bound.
4510 * dwarf2read.c (read_subrange_type): Handle DW_AT_GNU_bias.
4511 * gdbtypes.c (operator==): Handle new field.
4512 (create_range_type): Add "bias" parameter.
4513 (create_static_range_type, resolve_dynamic_range): Update.
4514 * gdbtypes.h (struct range_bounds) <bias>: New member.
4515 (create_range_type): Add bias parameter.
4516 * printcmd.c (print_scalar_formatted): Unbias range types.
4517 * value.c (unpack_long): Unbias range types.
4518 (pack_long): Bias range types.
4519
4520 2019-09-02 Alan Hayward <alan.hayward@arm.com>
4521
4522 * solib-svr4.c (svr4_find_and_create_probe_breakpoints): Check all
4523 probe arguments.
4524
4525 2019-09-02 Alan Hayward <alan.hayward@arm.com>
4526
4527 * break-catch-throw.c (fetch_probe_arguments): Use gdbarch.
4528 * dtrace-probe.c (dtrace_probe::get_argument_count): Likewise.
4529 * probe.c (probe_safe_evaluate_at_pc) (compute_probe_arg)
4530 (compile_probe_arg): Likewise.
4531 * probe.h (get_argument_count): Likewise.
4532 * solib-svr4.c (solib_event_probe_action): Likewise.
4533 * stap-probe.c (stap_probe::get_argument_count): Likewise.
4534
4535 2019-09-02 Alan Hayward <alan.hayward@arm.com>
4536
4537 * solib-svr4.c (svr4_find_and_create_probe_breakpoints): Move
4538 code to here...
4539 (svr4_create_solib_event_breakpoints): ...from here.
4540
4541 2019-08-30 Sergio Durigan Junior <sergiodj@redhat.com>
4542
4543 * nat/fork-inferior.c (trace_start_error): Remove "\nError: "
4544 suffix from warning message.
4545
4546 2019-08-30 Tom Tromey <tom@tromey.com>
4547
4548 * tui/tui-winsource.h (struct tui_source_window_base)
4549 <refresh_all>: Don't declare.
4550 * tui/tui-winsource.c (tui_source_window_base::refresh_all):
4551 Remove.
4552 * tui/tui-win.c (tui_refresh_all_win): Don't call refresh_all or
4553 tui_show_locator_content.
4554 * tui/tui-regs.h (struct tui_data_window) <refresh_all>: Don't
4555 declare.
4556 * tui/tui-regs.c (tui_data_window::refresh_all): Remove.
4557 * tui/tui-data.h (struct tui_win_info) <refresh_all>: Don't
4558 declare.
4559
4560 2019-08-30 Tom Tromey <tom@tromey.com>
4561
4562 * tui/tui-io.c (tui_cont_sig): Don't call wrefresh.
4563
4564 2019-08-30 Tom Tromey <tom@tromey.com>
4565
4566 * tui/tui-stack.c (_initialize_tui_stack): Move later.
4567 Remove unnecessary forward declarations.
4568
4569 2019-08-30 Tom Tromey <tom@tromey.com>
4570
4571 * tui/tui-stack.c (tui_locator_window::set_locator_fullname): Call
4572 rerender.
4573 (tui_update_locator_fullname, tui_show_frame_info): Don't call
4574 tui_show_locator_content.
4575
4576 2019-08-30 Tom Tromey <tom@tromey.com>
4577
4578 * tui/tui-stack.c (tui_show_locator_content): Move lower. Rewrite.
4579 (tui_locator_window::rerender): Rewrite using body of previous
4580 tui_show_locator_content.
4581
4582 2019-08-30 Tom Tromey <tom@tromey.com>
4583
4584 * tui/tui-stack.h (struct tui_locator_window) <set_locator_info,
4585 set_locator_fullname>: New methods.
4586 * tui/tui-stack.c (tui_locator_window::set_locator_fullname):
4587 Rename from tui_set_locator_fullname.
4588 (tui_locator_window::set_locator_info): Rename from
4589 tui_set_locator_info. Return bool.
4590 (tui_update_locator_fullname, tui_show_frame_info): Update.
4591
4592 2019-08-30 Tom Tromey <tom@tromey.com>
4593
4594 * tui/tui-layout.c (show_layout): Don't call tui_refresh_all.
4595
4596 2019-08-30 Tom Tromey <tom@tromey.com>
4597
4598 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Don't
4599 call touchwin.
4600
4601 2019-08-30 Tom Tromey <tom@tromey.com>
4602
4603 * tui/tui-wingeneral.c (box_win): Assume win_info and
4604 win_info->handle cannot be NULL.
4605
4606 2019-08-30 Tom Tromey <tom@tromey.com>
4607
4608 * tui/tui-regs.h (struct tui_data_item_window) <rerender,
4609 refresh_window>: Declare.
4610 * tui/tui-regs.c (tui_data_window::display_registers_from): Call
4611 resize.
4612 (tui_data_item_window::rerender): Rename from
4613 tui_display_register.
4614 (tui_data_item_window::refresh_window): New method.
4615 * tui/tui-layout.c (tui_gen_win_info::resize): Do nothing on
4616 no-op.
4617
4618 2019-08-30 Tom Tromey <tom@tromey.com>
4619
4620 * tui/tui-regs.h (struct tui_data_window) <regs_content,
4621 regs_column_count, current_group>: Move later. Now private.
4622 <get_current_group>: New method.
4623 * tui/tui-regs.c (tui_reg_command): Update.
4624 * tui/tui-layout.c (tui_set_layout): Update.
4625
4626 2019-08-30 Tom Tromey <tom@tromey.com>
4627
4628 * tui/tui-regs.c (tui_data_window::display_registers_from_line)
4629 (tui_data_window::rerender): Don't call
4630 check_and_display_highlight_if_needed.
4631 (tui_data_window::refresh_all): Remove call to
4632 erase_data_content.
4633
4634 2019-08-30 Tom Tromey <tom@tromey.com>
4635
4636 * tui/tui-regs.c (tui_data_window::last_regs_line_no)
4637 (tui_data_window::display_registers_from)
4638 (tui_data_window::display_reg_element_at_line)
4639 (tui_data_window::display_registers_from_line): Remove checks of
4640 "empty".
4641
4642 2019-08-30 Tom Tromey <tom@tromey.com>
4643
4644 * tui/tui-regs.h (struct tui_data_window) <display_all_data>:
4645 Don't declare.
4646 * tui/tui-regs.c (tui_data_window::show_registers): Call
4647 rerender.
4648 (tui_data_window::rerender): Rename from display_all_data.
4649 (tui_data_window::rerender): Remove old implementation.
4650
4651 2019-08-30 Tom Tromey <tom@tromey.com>
4652
4653 * tui/tui-regs.c (tui_data_window::display_all_data): Change
4654 text.
4655 * tui/tui-data.h (NO_DATA_STRING): Remove define.
4656
4657 2019-08-29 Bernhard Wodok <barto@gmx.net>
4658 Sergio Durigan Junior <sergiodj@redhat.com>
4659
4660 PR win32/24284
4661 * mingw-hdep.c (gdb_select): Handle case when 'n' is zero.
4662
4663 2019-08-28 Andrew Burgess <andrew.burgess@embecosm.com>
4664
4665 * symtab.c (search_symbols): Don't include MODULE_DOMAIN symbols
4666 when searching for types.
4667
4668 2019-08-28 Andrew Burgess <andrew.burgess@embecosm.com>
4669
4670 * f-lang.c (f_language_defn): Use f_print_typedef.
4671 * f-lang.h (f_print_typedef): Declare.
4672 * f-typeprint.c (f_print_typedef): Define.
4673
4674 2019-08-27 Christian Biesinger <cbiesinger@google.com>
4675
4676 * nat/linux-namespaces.c (mnsh_main): Initialize fd (to -1).
4677
4678 2019-08-27 Andrew Burgess <andrew.burgess@embecosm.com>
4679
4680 * cli/cli-utils.c (info_print_options_defs): Delete.
4681 (make_info_print_options_def_group): Delete.
4682 (extract_info_print_options): Delete.
4683 (info_print_command_completer): Delete.
4684 (info_print_args_help): Add extra parameter, and optionally
4685 include text about -n flag.
4686 * cli/cli-utils.h (struct info_print_options): Delete.
4687 (extract_info_print_options): Delete declaration.
4688 (info_print_command_completer): Delete declaration.
4689 (info_print_args_help): Add extra parameter, extend header
4690 comment.
4691 * python/python.c (gdbpy_rbreak): Pass additional parameter to
4692 search_symbols.
4693 * stack.c (struct info_print_options): New type.
4694 (info_print_options_defs): New file scoped variable.
4695 (make_info_print_options_def_group): New static function.
4696 (info_print_command_completer): New static function.
4697 (info_locals_command): Update to use new local functions.
4698 (info_args_command): Likewise.
4699 (_initialize_stack): Add extra parameter to calls to
4700 info_print_args_help.
4701 * symtab.c (search_symbols): Add extra parameter, use this to
4702 possibly excluse non-debug symbols.
4703 (symtab_symbol_info): Add extra parameter, which is passed on to
4704 search_symbols.
4705 (struct info_print_options): New type.
4706 (info_print_options_defs): New file scoped variable.
4707 (make_info_print_options_def_group): New static function.
4708 (info_print_command_completer): New static function.
4709 (info_variables_command): Update to use local functions, and pass
4710 extra parameter through to symtab_symbol_info.
4711 (info_functions_command): Likewise.
4712 (info_types_command): Pass additional argument through to
4713 symtab_symbol_info.
4714 (rbreak_command): Pass extra argument to search_symbols.
4715 (_initialize_symtab): Add extra arguments for calls to
4716 info_print_args_help, and update help text for 'info variables',
4717 'whereis', and 'info functions' commands.
4718 * symtab.h (search_symbols): Add extra argument to declaration.
4719 * NEWS: Mention new flags.
4720
4721 2019-08-26 Christian Biesinger <cbiesinger@google.com>
4722
4723 * symtab.c (lookup_static_symbol): Call the new function (and move
4724 it down to be next to lookup_global_symbol).
4725 (struct global_sym_lookup_data): Add block_enum member and rename to...
4726 (struct global_or_static_sym_lookup_data): ...this.
4727 (lookup_symbol_global_iterator_cb): Pass block_index instead of
4728 GLOBAL_BLOCK to lookup_symbol_in_objfile and rename to...
4729 (lookup_symbol_global_or_static_iterator_cb): ...this.
4730 (lookup_global_or_static_symbol): New function.
4731 (lookup_global_symbol): Call new function.
4732
4733 2019-08-26 Tom de Vries <tdevries@suse.de>
4734
4735 PR c++/24852
4736 * break-catch-throw.c (fetch_probe_arguments): Improve error mesage
4737 when pc_probe.prob == NULL.
4738
4739 2019-08-25 Simon Marchi <simon.marchi@efficios.com>
4740
4741 * dwarf2read.c (dw2_debug_names_iterator::next): Rename local
4742 variable symbol_linkage to symbol_linkage_.
4743
4744 2019-08-25 Simon Marchi <simon.marchi@efficios.com>
4745
4746 * dwarf2read.c (dw2_debug_names_iterator::next): Use enum to
4747 represent whether the symbol is static, dynamic, or we don't
4748 know.
4749
4750 2019-08-25 Yoshinori Sato <ysato@users.sourceforge.jp>
4751
4752 * gdb/rx-tdep.c (rx_register_names): New.
4753 (rx_register_name): Delete.
4754 (rx_psw_type): Delete.
4755 (rx_fpsw_type): Delete.
4756 (rx_register_type): Delete.
4757 (rx_gdbarch_init): Convert target-descriptions.
4758 (_initialize_rx_tdep): Add initialize_tdesc_rx.
4759 * gdb/features/Makefile: Add rx.xml.
4760 * gdb/features/rx.xml: New.
4761 * gdb/features/rx.c: Generated.
4762 * gdb/NEWS: Mention target description support.
4763
4764 2019-08-22 Christian Biesinger <cbiesinger@google.com>
4765
4766 * symtab.c (symbol_cache_lookup): Always initialize *bsc_ptr and
4767 *slot_ptr.
4768
4769 2019-08-23 Sergio Durigan Junior <sergiodj@redhat.com>
4770
4771 * configure.ac: Don't check for 'dlfcn.h' (moved to
4772 gdbsupport/common.m4).
4773 * Makefile.in (COMMON_SFILES): Move 'gdb-dlfcn.c' to
4774 'gdbsupport/'.
4775 (HFILES_NO_SRCDIR): Likewise, for 'gdb-dlfcn.h'.
4776 * compile/compile-c-support.c: Include
4777 'gdbsupport/gdb-dlfcn.h'.
4778 * gdbsupport/common.m4: Check for 'dlfcn.h'.
4779 * gdb-dlfcn.c: Move to...
4780 * gdbsupport/gdb-dlfcn.c: ... here.
4781 * gdb-dlfcn.h: Move to...
4782 * gdbsupport/gdb-dlfcn.h: ... here.
4783
4784 2019-08-23 Sandra Loosemore <sandra@codesourcery.com>
4785
4786 * nios2-tdep.c (struct reg_value): Improve comments. Make
4787 the offset field signed.
4788
4789 2019-08-22 Christian Biesinger <cbiesinger@google.com>
4790
4791 * python/lib/gdb/__init__.py (_execute_file): New function.
4792 * python/python.c (python_run_simple_file): Call gdb._execute_file
4793 on Windows.
4794
4795 2019-08-22 Andrew Burgess <andrew.burgess@embecosm.com>
4796
4797 * f-exp.y (yylex): Remove is_a_field_of_this local variable, and
4798 all uses as this was never set to anything but a zero value.
4799
4800 2019-08-21 Bogdan Harjoc <harjoc@gmail.com>
4801
4802 * cli/cli-cmds.c (with_command_1): Error out if no arguments.
4803
4804 2019-08-21 Christian Biesinger <cbiesinger@google.com>
4805
4806 * tui/tui-data.h (tui_gen_win_info): Add an =default
4807 move constructor, required by some GCC versions.
4808
4809 2019-08-21 Jinke Fan <fanjinke51@yeah.net>
4810
4811 * go32-nat.c (go32_sysinfo): Add hygon_p.
4812
4813 2019-08-20 Tom Tromey <tom@tromey.com>
4814
4815 * tui/tui-regs.h (struct tui_data_window) <last_regs_line_no,
4816 line_from_reg_element_no, first_reg_element_no_inline,
4817 display_all_data, delete_data_content_windows,
4818 erase_data_content>: Now private.
4819
4820 2019-08-20 Tom Tromey <tom@tromey.com>
4821
4822 * tui/tui-wingeneral.c (box_win): Change type of highlight_flag.
4823 (tui_unhighlight_win, tui_highlight_win)
4824 (tui_win_info::make_window): Update.
4825 * tui/tui-data.h (HILITE, NO_HILITE): Remove.
4826
4827 2019-08-20 Tom Tromey <tom@tromey.com>
4828
4829 * tui/tui-data.h (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
4830 (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
4831 (MAX_PID_WIDTH): Move to tui-stack.c.
4832 * tui/tui-stack.c (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
4833 (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
4834 (MAX_PID_WIDTH): Move from tui-data.h.
4835
4836 2019-08-20 Tom Tromey <tom@tromey.com>
4837
4838 * tui/tui-wingeneral.h (tui_make_window): Don't declare.
4839 * tui/tui-wingeneral.c (box_win): Change type of win_info.
4840 (box_win): Update.
4841 (tui_gen_win_info::make_window): Rename from tui_make_window.
4842 (tui_win_info::make_window): New method.
4843 (tui_gen_win_info::make_visible): Update.
4844 * tui/tui-source.c (tui_source_window::set_contents): Update.
4845 * tui/tui-regs.c (tui_data_window::show_register_group): Update.
4846 (tui_data_window::display_registers_from): Update.
4847 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
4848 * tui/tui-data.h (struct tui_gen_win_info) <make_window>:
4849 Declare.
4850 <can_box>: Remove.
4851 <title>: Remove.
4852 (struct tui_win_info) <make_window>: Declare.
4853 <can_box>: Now virtual.
4854 <title>: New member.
4855 * tui/tui-data.c (~tui_gen_win_info): Don't free title.
4856 * tui/tui-command.c (tui_cmd_window::resize): Update.
4857
4858 2019-08-20 Tom Tromey <tom@tromey.com>
4859
4860 * tui/tui-regs.h (struct tui_data_window) <display_regs>: Remove.
4861 * tui/tui-regs.c (tui_data_window::show_registers): Update.
4862 (tui_data_window::check_register_values): Update.
4863
4864 2019-08-20 Tom Tromey <tom@tromey.com>
4865
4866 * tui/tui-regs.h (struct tui_data_window): Use
4867 DISABLE_COPY_AND_ASSIGN.
4868 <regs_content>: Change type, removing unique_ptr.
4869 <tui_data_window>: Add move constructor.
4870 * tui/tui-regs.c (tui_data_window::show_registers)
4871 (tui_data_window::show_register_group)
4872 (tui_data_window::display_registers_from)
4873 (tui_data_window::display_registers_from)
4874 (tui_data_window::first_data_item_displayed)
4875 (tui_data_window::delete_data_content_windows)
4876 (tui_data_window::rerender, tui_data_window::refresh_window)
4877 (tui_data_window::check_register_values): Update.
4878
4879 2019-08-20 Tom Tromey <tom@tromey.com>
4880
4881 * tui/tui-regs.h (struct tui_data_window) <show_registers,
4882 show_register_group>: Declare.
4883 (tui_show_register_group): Don't declare.
4884 * tui/tui-regs.c (tui_data_window::show_registers): Rename from
4885 tui_show_registers.
4886 (tui_data_window::show_register_group): Rename from
4887 tui_show_register_group.
4888 (tui_data_window::check_register_values, tui_reg_command):
4889 Update.
4890 * tui/tui-layout.c (tui_set_layout): Update.
4891
4892 2019-08-20 Tom Tromey <tom@tromey.com>
4893
4894 * tui/tui-regs.h (struct tui_data_window) <check_register_values>:
4895 Declare.
4896 (tui_check_register_values): Don't declare.
4897 * tui/tui-regs.c (tui_data_window::check_register_values): Rename
4898 from tui_check_register_values.
4899 * tui/tui-hooks.c (tui_register_changed): Update.
4900
4901 2019-08-20 Tom Tromey <tom@tromey.com>
4902
4903 * tui/tui-regs.c (tui_reg_layout): Move later.
4904 (tui_show_registers): Don't enable TUI mode or change layout.
4905
4906 2019-08-20 Tom Tromey <tom@tromey.com>
4907
4908 * tui/tui-regs.h (struct tui_data_item_window)
4909 <~tui_data_item_window>: Remove.
4910 <content>: Now a unique_xmalloc_ptr.
4911 * tui/tui-regs.c (tui_register_format): Return a
4912 unique_xmalloc_ptr.
4913 (tui_get_register): Update.
4914 (~tui_data_item_window): Remove.
4915 (tui_data_window::display_registers_from, tui_display_register):
4916 Update.
4917 * tui/tui-io.h (tui_expand_tabs): Update.
4918 * tui/tui-io.c (tui_expand_tabs): Return a unique_xmalloc_ptr.
4919 Remove "col" parameter.
4920
4921 2019-08-20 Tom Tromey <tom@tromey.com>
4922
4923 * tui/tui-regs.h (struct tui_data_item_window) <value>: Remove
4924 field.
4925 * tui/tui-regs.c (~tui_data_item_window): Update.
4926
4927 2019-08-20 Tom Tromey <tom@tromey.com>
4928
4929 * tui/tui-regs.c (tui_register_format, tui_get_register): Move
4930 earlier.
4931
4932 2019-08-20 Tom Tromey <tom@tromey.com>
4933
4934 * tui/tui-regs.c (tui_reg_command): Remove NULL check.
4935
4936 2019-08-20 Tom Tromey <tom@tromey.com>
4937
4938 * tui/tui-source.h (struct tui_source_window): Update.
4939 * tui/tui-regs.c (tui_show_registers): Update.
4940 * tui/tui-disasm.h (struct tui_disasm_window): Update.
4941 * tui/tui-data.h (NO_SRC_STRING, NO_DISASSEM_STRING)
4942 (NO_REGS_STRING): Remove defines.
4943
4944 2019-08-20 Conrad Meyer <cem@FreeBSD.org>
4945
4946 * remote.c (remote_target::remote_btrace_maybe_reopen): Avoid
4947 unnecessary thread walk if remote doesn't support the packet.
4948
4949 2019-08-19 Tom Tromey <tromey@adacore.com>
4950
4951 * python/py-value.c (value_has_field): Fix indentation.
4952
4953 2019-08-19 Tom Tromey <tromey@adacore.com>
4954
4955 * printcmd.c (do_one_display, info_display_command): Update.
4956 * block.h (contained_in): Return bool. Add allow_nested
4957 parameter.
4958 * block.c (contained_in): Return bool. Add allow_nested
4959 parameter.
4960
4961 2019-08-19 Tom Tromey <tom@tromey.com>
4962
4963 * configure: Rebuild.
4964 * configure.ac: Disallow the combination of -static-libstdc++ and
4965 source highlight.
4966 * source-cache.c (get_language_name): Handle rust.
4967 (source_cache::get_source_lines): Ignore highlighting exceptions.
4968
4969 2019-08-16 Tom Tromey <tom@tromey.com>
4970
4971 * tui/tui.h (enum tui_win_type) <EXEC_INFO_WIN>: Remove.
4972 * tui/tui-winsource.h (struct tui_exec_info_window): Remove.
4973 (struct tui_source_window_base) <make_visible, refresh_window,
4974 resize>: Remove methods.
4975 <execution_info>: Remove field.
4976 * tui/tui-winsource.c (tui_source_window_base::do_erase_source_content)
4977 (tui_show_source_line, tui_source_window_base)
4978 (~tui_source_window_base): Update.
4979 (tui_source_window_base::resize)
4980 (tui_source_window_base::make_visible)
4981 (tui_source_window_base::refresh_window): Remove.
4982 (tui_source_window_base::update_exec_info): Update.
4983 * tui/tui-source.c (tui_source_window::set_contents): Update.
4984 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
4985
4986 2019-08-16 Tom Tromey <tom@tromey.com>
4987
4988 * tui/tui-hooks.c (tui_remove_hooks): Don't set
4989 deprecated_query_hook.
4990
4991 2019-08-16 Tom Tromey <tom@tromey.com>
4992
4993 * tui/tui-winsource.c (tui_update_source_windows_with_addr)
4994 (tui_update_source_windows_with_line): Update.
4995 * tui/tui-source.h (struct tui_source_window)
4996 <show_symtab_source>: Declare.
4997 (tui_show_symtab_source): Don't declare.
4998 * tui/tui-source.c (tui_show_symtab_source): Rename from
4999 tui_show_symtab_source.
5000
5001 2019-08-16 Tom Tromey <tom@tromey.com>
5002
5003 * tui/tui-winsource.h (struct tui_source_window_base)
5004 <set_contents>: Declare.
5005 * tui/tui-winsource.c
5006 (tui_source_window_base::update_source_window_as_is): Update.
5007 * tui/tui-source.h (struct tui_source_window) <set_contents>:
5008 Declare.
5009 (tui_set_source_content): Don't declare.
5010 * tui/tui-source.c (tui_source_window::set_contents): Rename from
5011 tui_set_source_content.
5012 * tui/tui-disasm.h (struct tui_disasm_window) <set_contents>:
5013 Declare.
5014 (tui_set_disassem_content): Don't declare.
5015 * tui/tui-disasm.c (tui_disasm_window::set_contents): Rename from
5016 tui_set_disassem_content.
5017
5018 2019-08-16 Tom Tromey <tom@tromey.com>
5019
5020 * tui/tui-winsource.h (struct tui_source_window_base)
5021 <update_breakpoint_info>: Declare.
5022 (tui_update_breakpoint_info): Don't declare.
5023 * tui/tui-winsource.c (tui_source_window_base::update_source_window_as_is)
5024 (tui_update_all_breakpoint_info): Update.
5025 (tui_source_window_base::update_breakpoint_info): Rename from
5026 tui_update_breakpoint_info.
5027 (tui_source_window_base::update_exec_info): Update.
5028
5029 2019-08-16 Tom Tromey <tom@tromey.com>
5030
5031 * tui/tui-winsource.h (struct tui_source_window_base)
5032 <update_source_window>: Declare.
5033 (tui_update_source_window): Don't declare.
5034 * tui/tui-winsource.c
5035 (tui_source_window_base::update_source_window): Rename from
5036 tui_update_source_window.
5037 (tui_source_window_base::rerender): Update.
5038 * tui/tui-source.c (tui_source_window::maybe_update): Update.
5039 * tui/tui-disasm.c (tui_show_disassem)
5040 (tui_show_disassem_and_update_source)
5041 (tui_disasm_window::maybe_update): Update.
5042
5043 2019-08-16 Tom Tromey <tom@tromey.com>
5044
5045 * tui/tui-winsource.h (struct tui_source_window_base)
5046 <update_source_window_as_is>: Declare.
5047 (tui_update_source_window_as_is): Don't declare.
5048 * tui/tui-winsource.c (tui_update_source_window): Update
5049 (tui_source_window_base::update_source_window_as_is): Rename from
5050 tui_update_source_window_as_is.
5051 (tui_source_window_base::refill): Update.
5052 * tui/tui-source.c (tui_show_symtab_source): Update.
5053 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical):
5054 Update.
5055
5056 2019-08-16 Tom Tromey <tom@tromey.com>
5057
5058 * tui/tui-winsource.h (tui_update_source_window)
5059 (tui_update_source_window_as_is): Remove "noerror" parameter.
5060 * tui/tui-winsource.c (tui_update_source_window)
5061 (tui_update_source_window_as_is): Remove "noerror" parameter.
5062 (tui_update_source_windows_with_addr)
5063 (tui_update_source_windows_with_line)
5064 (tui_source_window_base::rerender)
5065 (tui_source_window_base::refill): Update.
5066 * tui/tui-source.h (tui_set_source_content)
5067 (tui_show_symtab_source): Remove "noerror" parameter.
5068 * tui/tui-source.c (tui_set_source_content): Remove "noerror"
5069 parameter.
5070 (tui_show_symtab_source): Likewise.
5071 (tui_source_window::maybe_update): Update.
5072 * tui/tui-disasm.c (tui_show_disassem)
5073 (tui_show_disassem_and_update_source)
5074 (tui_disasm_window::do_scroll_vertical)
5075 (tui_disasm_window::maybe_update): Update.
5076
5077 2019-08-16 Tom Tromey <tom@tromey.com>
5078
5079 * tui/tui.c (tui_is_window_visible): Update.
5080 * tui/tui-wingeneral.c (tui_make_window)
5081 (tui_gen_win_info::make_visible, tui_refresh_all): Update.
5082 * tui/tui-win.c (window_name_completer, tui_refresh_all_win)
5083 (tui_set_focus_command, tui_all_windows_info, update_tab_width)
5084 (tui_set_win_height_command, parse_scrolling_args): Update.
5085 * tui/tui-source.c (tui_source_window::style_changed): Update.
5086 * tui/tui-regs.c (tui_show_registers)
5087 (tui_data_window::first_data_item_displayed)
5088 (tui_data_window::delete_data_content_windows)
5089 (tui_check_register_values, tui_reg_command): Update.
5090 * tui/tui-disasm.c (tui_show_disassem): Update.
5091 * tui/tui-data.h (struct tui_gen_win_info) <is_visible>: New
5092 method.
5093 <is_visible>: Remove field.
5094 * tui/tui-data.c (tui_next_win, tui_prev_win)
5095 (tui_delete_invisible_windows): Update.
5096
5097 2019-08-16 Tom Tromey <tom@tromey.com>
5098
5099 * tui/tui-winsource.h (struct tui_source_window_base)
5100 <m_has_locator>: Remove.
5101 * tui/tui-layout.c (show_source_disasm_command, show_data)
5102 (show_source_or_disasm_and_command): Update.
5103
5104 2019-08-16 Alan Hayward <alan.hayward@arm.com>
5105
5106 * NEWS (Other MI changes): New subsection.
5107 * aarch64-tdep.c (aarch64_get_pc_address_flags): New function.
5108 (aarch64_gdbarch_init): Add aarch64_get_pc_address_flags.
5109 * arch-utils.c (default_get_pc_address_flags): New function.
5110 * arch-utils.h (default_get_pc_address_flags): New declaration.
5111 * gdbarch.sh: Add get_pc_address_flags.
5112 * gdbarch.c: Regenerate.
5113 * gdbarch.h: Likewise.
5114 * stack.c (print_pc): New function.
5115 (print_frame_info) (print_frame): Call print_pc.
5116
5117 2019-08-16 Tom de Vries <tdevries@suse.de>
5118
5119 * maint.c (maintenance_info_sections): Also handle !ALLOBJ case using
5120 print_objfile_section_info.
5121
5122 2019-08-15 Tom Tromey <tom@tromey.com>
5123
5124 * tui/tui-io.c (tui_puts_internal): Check TUI_CMD_WIN before
5125 calling update_cmdwin_start_line.
5126 * tui/tui-winsource.h (struct tui_source_window_base)
5127 <do_make_visible_with_new_height, set_new_height>: Don't declare.
5128 <rerender>: Declare.
5129 * tui/tui-winsource.c (tui_source_window_base::update_tab_width):
5130 Call rerender.
5131 (tui_source_window_base::set_new_height): Remove.
5132 (tui_source_window_base::rerender): Rename from
5133 do_make_visible_with_new_height.
5134 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Use
5135 resize method.
5136 (tui_win_info::make_invisible_and_set_new_height)
5137 (tui_win_info::make_visible_with_new_height): Remove.
5138 * tui/tui-stack.h (struct tui_locator_window) <rerender>:
5139 Declare.
5140 * tui/tui-stack.c (tui_locator_window::rerender): New method.
5141 * tui/tui-regs.h (struct tui_data_window) <set_new_height,
5142 do_make_visible_with_new_height>: Don't declare.
5143 <rerender>: Declare.
5144 * tui/tui-regs.c (tui_data_window::rerender): Rename from
5145 set_new_height.
5146 (tui_data_window::do_make_visible_with_new_height): Remove.
5147 * tui/tui-layout.c (show_source_disasm_command, show_data): Don't
5148 call tui_show_locator_content.
5149 (tui_gen_win_info::resize): Call rerender.
5150 (show_source_or_disasm_and_command): Don't call
5151 tui_show_locator_content.
5152 * tui/tui-data.h (struct tui_gen_win_info) <rerender>: New
5153 method.
5154 (struct tui_win_info) <rerender>: Declare.
5155 <set_new_height, make_invisible_and_set_new_height,
5156 make_visible_with_new_height>: Don't declare.
5157 * tui/tui-data.c (tui_win_list::rerender): New method.
5158 * tui/tui-command.h (struct tui_cmd_window)
5159 <do_make_visible_with_new_height>: Don't declare.
5160 * tui/tui-command.c
5161 (tui_cmd_window::do_make_visible_with_new_height): Remove.
5162
5163 2019-08-15 Tom Tromey <tromey@adacore.com>
5164
5165 * ada-exp.y (convert_char_literal): Handle "Q%c" encoding.
5166 * ada-lang.c (ada_enum_name): Likewise.
5167
5168 2019-08-15 Christian Biesinger <cbiesinger@google.com>
5169
5170 * python/lib/gdb/__init__.py (GdbOutputFile): Rename to have a
5171 leading underscore.
5172 (GdbOutputErrorFile): Likewise.
5173 (global scope): Adjust constructor calls to GdbOutput{,Error}File
5174 accordingly.
5175 (execute_unwinders): Rename to have a leading underscore.
5176 (auto_load_packages): Likewise.
5177 (global scope): Adjust call to auto_load_packages accordingly.
5178 (GdbSetPythonDirectory): Likewise.
5179 * python/py-unwind.c (pyuw_sniffer): Call _execute_unwinders
5180 instead of execute_unwinders.
5181
5182 2019-08-15 Tom Tromey <tom@tromey.com>
5183
5184 * tui/tui-layout.c (show_layout, show_source_disasm_command)
5185 (show_data): Don't change window visibility.
5186 (tui_gen_win_info::resize): Remove special case for command
5187 window. Use wresize, when available.
5188 (show_source_or_disasm_and_command): Don't change window
5189 visibility.
5190 * tui/tui-command.h (struct tui_cmd_window) <resize>: Declare.
5191 <make_visible>: New method.
5192 * tui/tui-command.c (tui_cmd_window::resize): New method.
5193
5194 2019-08-15 Tom Tromey <tom@tromey.com>
5195
5196 * tui/tui-winsource.h (struct tui_source_window_iterator): New.
5197 (struct tui_source_windows): New.
5198 * tui/tui-winsource.c (tui_display_main): Update.
5199 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
5200 (new_height_ok, parse_scrolling_args): Update.
5201 * tui/tui-layout.c (show_layout, show_data): Update.
5202 * tui/tui-data.h (tui_source_windows, tui_clear_source_windows)
5203 (tui_add_to_source_windows): Don't declare.
5204 * tui/tui-data.c (source_windows, tui_source_windows)
5205 (tui_clear_source_windows, tui_add_to_source_windows): Remove.
5206
5207 2019-08-15 Tom Tromey <tom@tromey.com>
5208
5209 * tui/tui-winsource.h (struct tui_source_window_base) <resize>:
5210 Rename from reset.
5211 * tui/tui-winsource.c (tui_source_window_base::resize): Rename.
5212 * tui/tui-layout.c (show_source_disasm_command, show_data):
5213 Update.
5214 (tui_gen_win_info::resize): Rename.
5215 (show_source_or_disasm_and_command): Update.
5216 * tui/tui-data.h (struct tui_gen_win_info) <resize>: Rename from
5217 reset.
5218
5219 2019-08-15 Tom Tromey <tom@tromey.com>
5220
5221 * tui/tui-stack.c (tui_initialize_static_data): Remove.
5222 * tui/tui-interp.c (tui_interp::init): Don't call
5223 tui_initialize_static_data.
5224 * tui/tui-data.h (tui_initialize_static_data): Don't declare.
5225
5226 2019-08-15 Tom Tromey <tom@tromey.com>
5227
5228 * tui/tui-layout.c (tui_default_win_viewport_height): Don't
5229 examine tui_win_list.
5230
5231 2019-08-15 Tom Tromey <tom@tromey.com>
5232
5233 * tui/tui-winsource.h (tui_clear_source_content): Don't declare.
5234 * tui/tui-winsource.c (tui_update_source_window_as_is): Don't call
5235 tui_clear_source_content.
5236 (tui_clear_source_content): Remove.
5237 (tui_source_window_base::do_erase_source_content): Hoist call to
5238 content.clear().
5239 * tui/tui-stack.c (tui_show_frame_info): Don't call
5240 tui_clear_source_content.
5241
5242 2019-08-15 Tom Tromey <tom@tromey.com>
5243
5244 * tui/tui-winsource.h (struct tui_source_window_base)
5245 <do_erase_source_content>: New method.
5246 <erase_source_content>: New method.
5247 (tui_erase_source_content): Don't declare.
5248 * tui/tui-winsource.c (tui_clear_source_content): Update.
5249 (tui_source_window_base::do_erase_source_content): Rename from
5250 tui_erase_source_content.
5251 (tui_source_window_base::show_source_content): Update.
5252 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
5253 * tui/tui-source.h (struct tui_source_window)
5254 <erase_source_content>: New method.
5255 * tui/tui-disasm.h (struct tui_disasm_window)
5256 <erase_source_content>: New method.
5257
5258 2019-08-15 Tom Tromey <tom@tromey.com>
5259
5260 * tui/tui-winsource.h (tui_alloc_source_buffer): Don't declare.
5261 (struct tui_source_element): Add DISABLE_COPY_AND_ASSIGN, and move
5262 constructor.
5263 * tui/tui-winsource.c (tui_alloc_source_buffer): Remove.
5264 * tui/tui-source.c (tui_set_source_content): Update.
5265 * tui/tui-disasm.c (tui_set_disassem_content): Update.
5266
5267 2019-08-15 Tom Tromey <tom@tromey.com>
5268
5269 * tui/tui-winsource.h (tui_line_is_displayed): Don't declare.
5270 * tui/tui-winsource.c (tui_line_is_displayed): Move to
5271 tui-source.c.
5272 * tui/tui-source.h (struct tui_source_window) <line_is_displayed>:
5273 Declare.
5274 * tui/tui-source.c (tui_source_window::line_is_displayed): New
5275 method.
5276 (tui_source_window::maybe_update): Update.
5277
5278 2019-08-15 Tom Tromey <tom@tromey.com>
5279
5280 * tui/tui-winsource.h (tui_addr_is_displayed): Don't declare.
5281 * tui/tui-winsource.c (tui_addr_is_displayed): Move to
5282 tui-disasm.c.
5283 * tui/tui-disasm.h (struct tui_disasm_window) <addr_is_displayed>:
5284 Declare.
5285 * tui/tui-disasm.c (tui_disasm_window::addr_is_displayed): New
5286 method.
5287 (tui_disasm_window::maybe_update): Update.
5288
5289 2019-08-15 Tom Tromey <tom@tromey.com>
5290
5291 * tui/tui-winsource.h (struct tui_source_window_base)
5292 <maybe_update>: Declare.
5293 * tui/tui-stack.c (tui_show_frame_info): Call maybe_update
5294 method.
5295 * tui/tui-source.h (struct tui_source_window) <maybe_update>:
5296 Declare.
5297 * tui/tui-source.c (tui_source_window::maybe_update): New method.
5298 * tui/tui-disasm.h (struct tui_disasm_window) <maybe_update>:
5299 Declare.
5300 * tui/tui-disasm.c (tui_disasm_window::maybe_update): New method.
5301
5302 2019-08-15 Tom Tromey <tom@tromey.com>
5303
5304 * tui/tui-stack.c (tui_make_status_line): Use string constructor.
5305
5306 2019-08-15 Tom Tromey <tom@tromey.com>
5307
5308 * tui/tui-wingeneral.c: Include tui-stack.h.
5309 * tui/tui-stack.h (MAX_LOCATOR_ELEMENT_LEN)
5310 (struct tui_locator_window): Move from tui-data.h.
5311 * tui/tui-stack.c (_locator, tui_locator_win_info_ptr)
5312 (tui_initialize_static_data): Move from tui-data.c.
5313 * tui/tui-data.h (MAX_LOCATOR_ELEMENT_LEN)
5314 (struct tui_locator_window): Move to tui-stack.c.
5315 * tui/tui-data.c (_locator, tui_locator_win_info_ptr)
5316 (tui_initialize_static_data): Move to tui-stack.c.
5317
5318 2019-08-15 Tom Tromey <tom@tromey.com>
5319
5320 * tui/tui-layout.c (show_source_disasm_command)
5321 (show_source_or_disasm_and_command): Use make_visible method, not
5322 tui_make_window.
5323 * tui/tui-command.h (struct tui_cmd_window) <make_visible>:
5324 Remove.
5325
5326 2019-08-15 Tom Tromey <tom@tromey.com>
5327
5328 * tui/tui-wingeneral.h (tui_make_window): Update.
5329 * tui/tui-wingeneral.c (tui_make_window): Remove "box_it"
5330 parameter.
5331 (tui_gen_win_info::make_visible): Update.
5332 * tui/tui-regs.c (tui_data_window::display_registers_from):
5333 Update.
5334 * tui/tui-layout.c (show_source_disasm_command)
5335 (show_source_or_disasm_and_command): Update.
5336 * tui/tui-data.h (struct tui_gen_win_info) <can_box>: New method.
5337 (enum tui_box): Remove.
5338 (struct tui_win_info) <can_box>: New method.
5339 * tui/tui-command.h (struct tui_cmd_window) <can_box>: New
5340 method.
5341
5342 2019-08-15 Tom de Vries <tdevries@suse.de>
5343
5344 * linux-nat-trad.c: Include gdbarch.h.
5345
5346 2019-08-14 Alan Hayward <alan.hayward@arm.com>
5347
5348 * aarch64-tdep.c (aarch64_analyze_prologue): Allow any valid
5349 register sizes.
5350
5351 2019-08-14 Tom Tromey <tromey@adacore.com>
5352
5353 * darwin-nat.c: Include gdbarch.h.
5354 * darwin-nat-info.c: Include gdbarch.h.
5355
5356 2019-08-13 Tom Tromey <tom@tromey.com>
5357
5358 * tui/tui-data.h (struct tui_gen_win_info) <last_visible_line>:
5359 Remove.
5360 * tui/tui-data.c (tui_initialize_static_data): Update.
5361
5362 2019-08-13 Tom Tromey <tom@tromey.com>
5363
5364 * tui/tui-winsource.h (struct tui_exec_info_window)
5365 <~tui_exec_info_window, maybe_allocate_content, get_content,
5366 m_content>: Remove.
5367 (struct tui_source_window_base) <set_exec_info_content,
5368 show_exec_info_content>: Don't declare.
5369 * tui/tui-winsource.c
5370 (tui_exec_info_window::maybe_allocate_content): Remove.
5371 (tui_source_window_base::update_exec_info): Rename from
5372 set_exec_info_content.
5373 (tui_source_window_base::show_exec_info_content)
5374 (tui_source_window_base::update_exec_info): Remove.
5375
5376 2019-08-13 Tom Tromey <tom@tromey.com>
5377
5378 * tui/tui-winsource.h (tui_clear_exec_info_content): Don't
5379 declare.
5380 * tui/tui-winsource.c (tui_update_source_window_as_is)
5381 (tui_update_source_windows_with_addr, tui_erase_source_content):
5382 Update.
5383 (tui_clear_exec_info_content): Remove.
5384
5385 2019-08-13 Tom Tromey <tom@tromey.com>
5386
5387 * tui/tui-winsource.h (tui_erase_exec_info_content): Don't
5388 declare.
5389 * tui/tui-winsource.c (tui_source_window_base::refresh_all): Don't
5390 call tui_erase_exec_info_content.
5391 (tui_clear_exec_info_content): Rename from
5392 tui_erase_exec_info_content.
5393 (tui_clear_exec_info_content): Delete.
5394
5395 2019-08-13 Tom Tromey <tom@tromey.com>
5396
5397 * tui/tui-winsource.h (struct tui_source_window_base)
5398 <show_exec_info_content>: Declare.
5399 (tui_show_exec_info_content): Don't declare.
5400 * tui/tui-winsource.c
5401 (tui_source_window_base::show_exec_info_content): Rename from
5402 tui_show_exec_info_content.
5403 (tui_source_window_base::update_exec_info): Update.
5404
5405 2019-08-13 Tom Tromey <tom@tromey.com>
5406
5407 * tui/tui-data.h (enum tui_bp_flag, tui_bp_flags, struct tui_source_element)
5408 (TUI_BP_HIT_POS, TUI_BP_BREAK_POS, TUI_EXEC_POS)
5409 (TUI_EXECINFO_SIZE, tui_exec_info_content): Move ...
5410 * tui/tui-winsource.h (enum tui_bp_flag, tui_bp_flags, struct
5411 tui_source_element, TUI_BP_HIT_POS, TUI_BP_BREAK_POS)
5412 (TUI_EXEC_POS, TUI_EXECINFO_SIZE, tui_exec_info_content):
5413 ... here.
5414
5415 2019-08-13 Tom Tromey <tom@tromey.com>
5416
5417 * tui/tui-winsource.h (struct tui_source_window_base)
5418 <update_exec_info>: Declare.
5419 (tui_update_exec_info): Don't declare.
5420 * tui/tui-winsource.c (tui_update_source_window_as_is)
5421 (tui_source_window_base::refresh_all)
5422 (tui_update_all_breakpoint_info): Update.
5423 (tui_source_window_base::update_exec_info): Rename from
5424 tui_update_exec_info.
5425 * tui/tui-stack.c (tui_show_frame_info): Update.
5426
5427 2019-08-13 Tom Tromey <tom@tromey.com>
5428
5429 * tui/tui-winsource.h (struct tui_source_window_base)
5430 <set_exec_info_content>: Declare.
5431 (tui_set_exec_info_content): Don't declare.
5432 * tui/tui-winsource.c
5433 (tui_source_window_base::set_exec_info_content): Rename from
5434 tui_set_exec_info_content.
5435 (tui_update_exec_info): Update.
5436
5437 2019-08-13 Tom Tromey <tom@tromey.com>
5438
5439 * tui/tui-winsource.h (struct tui_source_window_base)
5440 <show_source_content>: Declare.
5441 (tui_show_source_content): Don't declare.
5442 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
5443 (tui_source_window_base::show_source_content): Rename from
5444 tui_show_source_content.
5445 (tui_source_window_base::refresh_all): Update.
5446 * tui/tui-layout.c (show_source_disasm_command)
5447 (show_source_or_disasm_and_command): Update.
5448
5449 2019-08-13 Tom Tromey <tom@tromey.com>
5450
5451 * tui/tui-winsource.c (tui_erase_source_content)
5452 (tui_show_source_content, tui_source_window_base::refresh_all):
5453 Update.
5454 * tui/tui-wingeneral.h
5455 (tui_check_and_display_highlight_if_needed): Don't declare.
5456 * tui/tui-wingeneral.c
5457 (tui_win_info::check_and_display_highlight_if_needed): Rename from
5458 check_and_display_highlight_if_needed.
5459 * tui/tui-win.c (tui_rehighlight_all)
5460 (tui_win_info::make_visible_with_new_height): Update.
5461 * tui/tui-regs.c (tui_data_window::display_registers_from_line)
5462 (tui_data_window::erase_data_content)
5463 (tui_data_window::display_all_data): Update.
5464 * tui/tui-data.h (struct tui_win_info)
5465 <check_and_display_highlight_if_needed>: Declare.
5466
5467 2019-08-13 Tom Tromey <tom@tromey.com>
5468
5469 * tui/tui-win.c (tui_resize_all): Call
5470 tui_delete_invisible_windows.
5471 * tui/tui-layout.c (show_layout): Call
5472 tui_delete_invisible_windows.
5473 * tui/tui-data.h (tui_delete_invisible_windows): Declare.
5474 * tui/tui-data.c (tui_delete_invisible_windows): New function.
5475
5476 2019-08-13 Tom Tromey <tom@tromey.com>
5477
5478 * tui/tui-disasm.c (tui_show_disassem): Add assertion. Don't call
5479 tui_add_win_to_layout.
5480
5481 2019-08-13 Tom Tromey <tom@tromey.com>
5482
5483 * tui/tui-layout.h (tui_default_win_height): Don't declare.
5484 * tui/tui-layout.c (tui_default_win_height): Now static.
5485
5486 2019-08-13 Tom Tromey <tom@tromey.com>
5487
5488 * tui/tui-layout.c (show_layout): Unify all layout cases into a
5489 single switch.
5490 (show_source_disasm_command, show_source_or_disasm_and_command):
5491 Don't check current layout.
5492
5493 2019-08-13 Tom Tromey <tom@tromey.com>
5494
5495 * tui/tui-wingeneral.c (make_all_visible): Remove.
5496 (tui_make_all_invisible): Simplify.
5497 * tui/tui-layout.c (tui_make_all_invisible): Move from
5498 tui-wingeneral.c; simplify.
5499 (show_layout): Hoist call to tui_make_all_invisible.
5500 (show_data): Don't call tui_make_all_invisible.
5501
5502 2019-08-13 Tom Tromey <tom@tromey.com>
5503
5504 * tui/tui-wingeneral.h (tui_make_all_visible): Don't declare.
5505 * tui/tui-wingeneral.c (tui_make_all_visible): Remove.
5506
5507 2019-08-13 Tom Tromey <tom@tromey.com>
5508
5509 * tui/tui-layout.c (current_layout, tui_current_layout): Move from
5510 tui-data.c.
5511 (show_source_disasm_command, show_data)
5512 (show_source_or_disasm_and_command): Don't use
5513 tui_set_current_layout_to.
5514 * tui/tui-data.h (tui_set_current_layout_to): Don't declare.
5515 * tui/tui-data.c (current_layout, tui_current_layout): Move to
5516 tui-layout.c.
5517 (tui_set_current_layout_to): Remove.
5518
5519 2019-08-13 Tom Tromey <tom@tromey.com>
5520
5521 * tui/tui-layout.c (tui_set_layout): Update.
5522 * tui/tui-data.h (struct tui_layout_def): Remove.
5523 (tui_layout_def): Don't declare.
5524 * tui/tui-data.c (layout_def): Remove.
5525 (tui_layout_def): Remove.
5526
5527 2019-08-13 Tom Tromey <tom@tromey.com>
5528
5529 * tui/tui-winsource.h (struct tui_source_window_base)
5530 <clear_detail>: No longer "override".
5531 * tui/tui-regs.h (struct tui_data_window) <clear_detail>: Remove.
5532 * tui/tui-regs.c (tui_data_window::clear_detail): Remove.
5533 * tui/tui-data.h (struct tui_win_info) <clear_detail>: Remove.
5534 * tui/tui-command.h (struct tui_cmd_window) <clear_detail>:
5535 Remove.
5536 * tui/tui-command.c (tui_cmd_window::clear_detail): Remove.
5537
5538 2019-08-13 Tom Tromey <tromey@adacore.com>
5539
5540 * tracepoint.c: Don't include readline.h or history.h.
5541
5542 2019-08-12 Tom Tromey <tom@tromey.com>
5543
5544 * configure: Rebuild.
5545 * configure.ac: Check for readline 7.
5546 * NEWS: Mention readline 7 requirement.
5547 * README: Update.
5548
5549 2019-08-12 Tom Tromey <tom@tromey.com>
5550
5551 * mingw-hdep.c (gdb_select): Remove readline hack.
5552
5553 2019-08-09 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
5554
5555 * blockframe.c (find_pc_partial_function): Set *block to nullptr
5556 when the function fails.
5557
5558 2019-08-09 Andreas Arnez <arnez@linux.ibm.com>
5559
5560 * s390-tdep.c (s390_type_align): New function.
5561 (s390_gdbarch_init): Set it as type_align gdbarch method.
5562
5563 2019-08-09 Tom de Vries <tdevries@suse.de>
5564
5565 PR gdb/24591
5566 * dwarf2read.c (dwarf2_fetch_die_loc_sect_off): Adjust pc_high and
5567 pc_low with relocation offset.
5568
5569 2019-08-07 Tom Tromey <tromey@adacore.com>
5570
5571 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
5572 (print_frame_args): Update.
5573 * python/py-framefilter.c (py_print_single_arg, enumerate_args):
5574 Update.
5575 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
5576 * frame.h (struct frame_arg): Add initializers.
5577 <error>: Now a unique_xmalloc_ptr.
5578
5579 2019-08-07 Alan Hayward <alan.hayward@arm.com>
5580
5581 * NEWS: Expand the Pointer Authentication entry.
5582 * aarch64-tdep.c (aarch64_frame_unmask_address): Rename from this.
5583 (aarch64_frame_unmask_lr): ... to this.
5584 (aarch64_prologue_prev_register, aarch64_dwarf2_prev_register):
5585 Call aarch64_frame_unmask_lr.
5586 * frame.c (struct frame_info): Add "masked" variable.
5587 (frame_set_previous_pc_masked) (frame_get_pc_masked): New functions.
5588 (fprint_frame): Check for masked pc.
5589 * frame.h (frame_set_previous_pc_masked) (frame_get_pc_masked): New
5590 declarations.
5591 * python/py-framefilter.c (py_print_frame): Check for masked pc.
5592 * stack.c (print_frame): Check for masked pc.
5593
5594 2019-08-06 Tom Tromey <tom@tromey.com>
5595
5596 * stabsread.c (patch_block_stabs, read_one_struct_field)
5597 (read_enum_type): Use obstack_strndup.
5598 * rust-exp.y (rust_parser::copy_name): Use obstack_strndup.
5599 * gdb_obstack.h (obstack_strndup): Use obstack_strndup.
5600 * dwarf2read.c (guess_full_die_structure_name)
5601 (anonymous_struct_prefix): Use obstack_strndup.
5602 * dbxread.c (cp_set_block_scope): Use obstack_strndup.
5603 * c-exp.y (yylex): Use obstack_strndup.
5604 * ada-exp.y (write_object_renaming, write_ambiguous_var)
5605 (write_var_or_type): Use obstack_strndup.
5606
5607 2019-08-06 Tom Tromey <tom@tromey.com>
5608
5609 * symfile.c (reread_symbols): Use obstack_strdup.
5610 * stabsread.c (read_type): Use obstack_strdup.
5611 * gdb_obstack.h (obstack_strdup): New overload.
5612 * dwarf2read.c (dwarf2_compute_name, create_dwo_unit_in_dwp_v1)
5613 (create_dwo_unit_in_dwp_v2, build_error_marker_type)
5614 (dwarf2_canonicalize_name): Use obstack_strdup.
5615 * dbxread.c (read_dbx_symtab): Use obstack_strdup.
5616 * cp-support.c (inspect_type, replace_typedefs_qualified_name):
5617 Use obstack_strdup.
5618
5619 2019-08-06 Tom Tromey <tom@tromey.com>
5620
5621 * gdb_obstack.h (obstack_strdup): Define.
5622 * gdb_obstack.c (obstack_strdup): Don't define.
5623
5624 2019-08-06 Tom Tromey <tom@tromey.com>
5625
5626 * xcoffread.c (SYMNAME_ALLOC, process_xcoff_symbol): Use
5627 obstack_strdup.
5628 * typeprint.c (typedef_hash_table::find_global_typedef): Use
5629 obstack_strdup.
5630 * symfile.c (allocate_compunit_symtab): Use obstack_strdup.
5631 * stabsread.c (common_block_start): Use obstack_strdup.
5632 * objfiles.c (set_objfile_main_name, objfile): Use
5633 obstack_strdup.
5634 * namespace.c (add_using_directive): Use obstack_strdup.
5635 * mdebugread.c (parse_symbol, parse_type): Use obstack_strdup.
5636 * jit.c (finalize_symtab): Use obstack_strdup.
5637 * dwarf2read.c (fixup_go_packaging, dwarf2_physname)
5638 (guess_partial_die_structure_name, partial_die_info::fixup)
5639 (dwarf2_name): Use obstack_strdup.
5640 * coffread.c (coff_read_struct_type, coff_read_enum_type): Use
5641 obstack_strdup.
5642 * c-exp.y (scan_macro_expansion): Use obstack_strdup.
5643 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
5644 obstack_strdup.
5645 * ada-lang.c (ada_decode_symbol): Use obstack_strdup.
5646
5647 2019-08-07 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5648
5649 * unittests/help-doc-selftests.c: New file.
5650 * Makefile.in: Add the new file.
5651
5652 2019-08-07 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5653
5654 * cli/cli-decode.h (print_doc_line): Add for_value_prefix argument.
5655 * cli/cli-decode.c (print_doc_line): Likewise. It now prints
5656 the full first line, except when FOR_VALUE_PREFIX. In this case,
5657 the trailing '.' is not output, and the first character is uppercased.
5658 (print_help_for_command): Update call to print_doc_line.
5659 (print_doc_of_command): Likewise.
5660 * cli/cli-setshow.c (deprecated_show_value_hack): Likewise.
5661 * cli/cli-option.c (append_indented_doc): Do not append newline.
5662 (build_help_option): Append newline after first appended_indented_doc
5663 only if a second call is done.
5664 (build_help): Append 2 new lines before each option, except the first
5665 one.
5666 * compile/compile.c (_initialize_compile): Add new lines after
5667 %OPTIONS%, when not at the end of the help.
5668 Change help doc or code
5669 producing the help doc to respect the invariants.
5670 * maint-test-options.c (_initialize_maint_test_options): Likewise.
5671 Also removed the new line after 'Options:', as all other commands
5672 do not put an empty line between 'Options:' and the first option.
5673 * printcmd.c (_initialize_printcmd): Likewise.
5674 * stack.c (_initialize_stack): Likewise.
5675 * interps.c (interpreter_exec_cmd): Fix "Usage:" line that was
5676 incorrectly telling COMMAND is optional.
5677 * ada-lang.c (_initialize_ada_language): Change help doc or code
5678 producing the help doc to respect the invariants.
5679 * ada-tasks.c (_initialize_ada_tasks): Likewise.
5680 * breakpoint.c (_initialize_breakpoint): Likewise.
5681 * cli/cli-cmds.c (_initialize_cli_cmds): Likewise.
5682 * cli/cli-logging.c (_initialize_cli_logging): Likewise.
5683 * cli/cli-setshow.c (_initialize_cli_setshow): Likewise.
5684 * cli/cli-style.c (cli_style_option::add_setshow_commands,
5685 _initialize_cli_style): Likewise.
5686 * corelow.c (core_target_info): Likewise.
5687 * dwarf-index-cache.c (_initialize_index_cache): Likewise.
5688 * dwarf2read.c (_initialize_dwarf2_read): Likewise.
5689 * filesystem.c (_initialize_filesystem): Likewise.
5690 * frame.c (_initialize_frame): Likewise.
5691 * gnu-nat.c (add_task_commands): Likewise.
5692 * infcall.c (_initialize_infcall): Likewise.
5693 * infcmd.c (_initialize_infcmd): Likewise.
5694 * interps.c (_initialize_interpreter): Likewise.
5695 * language.c (_initialize_language): Likewise.
5696 * linux-fork.c (_initialize_linux_fork): Likewise.
5697 * maint-test-settings.c (_initialize_maint_test_settings): Likewise.
5698 * maint.c (_initialize_maint_cmds): Likewise.
5699 * memattr.c (_initialize_mem): Likewise.
5700 * printcmd.c (_initialize_printcmd): Likewise.
5701 * python/lib/gdb/function/strfns.py (_MemEq, _StrLen, _StrEq,
5702 _RegEx): Likewise.
5703 * ravenscar-thread.c (_initialize_ravenscar): Likewise.
5704 * record-btrace.c (_initialize_record_btrace): Likewise.
5705 * record-full.c (_initialize_record_full): Likewise.
5706 * record.c (_initialize_record): Likewise.
5707 * regcache-dump.c (_initialize_regcache_dump): Likewise.
5708 * regcache.c (_initialize_regcache): Likewise.
5709 * remote.c (add_packet_config_cmd, init_remote_threadtests,
5710 _initialize_remote): Likewise.
5711 * ser-tcp.c (_initialize_ser_tcp): Likewise.
5712 * serial.c (_initialize_serial): Likewise.
5713 * skip.c (_initialize_step_skip): Likewise.
5714 * source.c (_initialize_source): Likewise.
5715 * stack.c (_initialize_stack): Likewise.
5716 * symfile.c (_initialize_symfile): Likewise.
5717 * symtab.c (_initialize_symtab): Likewise.
5718 * target-descriptions.c (_initialize_target_descriptions): Likewise.
5719 * top.c (init_main): Likewise.
5720 * tracefile-tfile.c (tfile_target_info): Likewise.
5721 * tracepoint.c (_initialize_tracepoint): Likewise.
5722 * tui/tui-win.c (_initialize_tui_win): Likewise.
5723 * utils.c (add_internal_problem_command): Likewise.
5724 * valprint.c (value_print_option_defs): Likewise.
5725
5726 2019-08-06 Frank Ch. Eigler <fche@redhat.com>
5727
5728 PR build/24886
5729 * configure.ac: Drop enable-libmcheck support.
5730 * configure, config.in: Rebuild.
5731 * libmcheck.m4: Remove.
5732 * acinclude.m4: Don't include it.
5733 * Makefile.in: Don't distribute it.
5734 * top.c (print_gdb_configuration): Don't mention it.
5735
5736 2019-08-06 Tom Tromey <tom@tromey.com>
5737
5738 * utils.c (set_output_style): Sometimes pass stream to
5739 emit_style_escape.
5740 * ui-out.h (class ui_out) <can_emit_style_escape>: Declare.
5741 * record-btrace.c (btrace_insn_history): Update.
5742 * mi/mi-out.h (class mi_ui_out) <can_emit_style_escape>: New
5743 method.
5744 * disasm.h (gdb_pretty_print_disassembler): Add uiout parameter.
5745 Update initializers.
5746 <m_uiout>: New field.
5747 <m_di>: Move lower.
5748 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
5749 Remove "uiout" parameter.
5750 (dump_insns): Update.
5751 * cli-out.h (class cli_ui_out) <can_emit_style_escape>: Declare.
5752 * cli-out.c (cli_ui_out::can_emit_style_escape): New method.
5753
5754 2019-08-06 Christian Biesinger <cbiesinger@google.com>
5755
5756 * symtab.c (symbol_cache_lookup): Change int to enum block_enum.
5757 (error_in_psymtab_expansion): Likewise.
5758 (lookup_symbol_via_quick_fns): Likewise.
5759 (basic_lookup_transparent_type_quick): Likewise.
5760 (basic_lookup_transparent_type_1): Likewise.
5761
5762 2019-08-06 Tom Tromey <tromey@adacore.com>
5763
5764 * source.c (last_source_error): Now bool.
5765 (print_source_lines_base): Make "noprint" bool. Only open
5766 source file when last_source_visited changes.
5767
5768 2019-08-06 Tom Tromey <tromey@adacore.com>
5769
5770 * annotate.c (annotate_source_line): Use g_source_cache.
5771 * source-cache.c (source_cache::get_plain_source_lines): Change
5772 parameters. Populate m_offset_cache.
5773 (source_cache::ensure): New method.
5774 (source_cache::get_line_charpos): New method.
5775 (extract_lines): Move lower. Change parameters.
5776 (source_cache::get_source_lines): Move lower.
5777 * source-cache.h (class source_cache): Update comment.
5778 <get_line_charpos>: New method.
5779 <get_source_lines>: Update comment.
5780 <clear>: Clear m_offset_cache.
5781 <get_plain_source_lines>: Change parameters.
5782 <ensure>: New method
5783 <m_offset_cache>: New member.
5784 * source.c (forget_cached_source_info_for_objfile): Update.
5785 (info_source_command): Use g_source_cache.
5786 (find_source_lines, open_source_file_with_line_charpos): Remove.
5787 (print_source_lines_base, search_command_helper): Use g_source_cache.
5788 * source.h (open_source_file_with_line_charpos): Don't declare.
5789 * symtab.h (struct symtab) <nlines, line_charpos>: Remove.
5790 * tui/tui-source.c (tui_source_window::do_scroll_vertical):
5791 Use g_source_cache.
5792
5793 2019-08-06 Tom Tromey <tromey@adacore.com>
5794
5795 * source-cache.c (source_cache::get_plain_source_lines):
5796 Remove "first_line" and "last_line" parameters.
5797 (source_cache::get_source_lines): Cache plain text.
5798 * source-cache.h (class source_cache)
5799 <get_plain_source_lines>: Update.
5800
5801 2019-08-06 Tom Tromey <tromey@adacore.com>
5802
5803 * source-cache.c (extract_lines): No longer a method.
5804 Changed type of parameter. Include final newline.
5805 (selftests::extract_lines_test): New function.
5806 (_initialize_source_cache): Likewise.
5807 * source-cache.h (class source_cache)
5808 <extract_lines>: Don't declare.
5809
5810 2019-08-06 Tom Tromey <tromey@adacore.com>
5811
5812 * breakpoint.c (init_breakpoint_sal): Update.
5813 (breakpoint): Update.
5814 * breakpoint.h (struct breakpoint) <filter>: Now a
5815 unique_xmalloc_ptr.
5816
5817 2019-08-05 Christian Biesinger <cbiesinger@google.com>
5818
5819 * NEWS: Mention dictionary access on blocks.
5820 * python/py-block.c (blpy_getitem): New function.
5821 (block_object_as_mapping): New struct.
5822 (block_object_type): Use new struct for tp_as_mapping field.
5823
5824 2019-08-05 Christian Biesinger <cbiesinger@google.com>
5825
5826 * objfiles.h (objfile): Add a comment describing partial symbols.
5827
5828 2019-08-05 Tom Tromey <tromey@adacore.com>
5829
5830 * compile/compile.c (_initialize_compile): Use _(), not N_().
5831 * thread.c (_initialize_thread): Use _(), not N_().
5832 * stack.c (_initialize_stack): Use _(), not N_().
5833 * printcmd.c (_initialize_printcmd): Use _(), not N_().
5834
5835 2019-08-04 Simon Marchi <simon.marchi@polymtl.ca>
5836
5837 * dwarf2read.c (struct dw2_symtab_iterator):
5838 <want_specific_block>: Remove.
5839 <block_index>: Change type to gdb::optional.
5840 (dw2_symtab_iter_init): Remove WANT_SPECIFIC_BLOCK parameter,
5841 change type of BLOCK_INDEX parameter to gdb::optional.
5842 (dw2_symtab_iter_next): Re-write in function of gdb::optional.
5843 (dw2_lookup_symbol): Don't pass argument for
5844 WANT_SPECIFIC_BLOCK.
5845 (dw2_expand_symtabs_for_function): Don't pass argument for
5846 WANT_SPECIFIC_BLOCK, pass empty optional for BLOCK_INDEX.
5847 (class dw2_debug_names_iterator)
5848 <dw2_debug_names_iterator>: Remove WANT_SPECIFIC_BLOCK
5849 parameter, change BLOCK_INDEX type to gdb::optional.
5850 <m_want_specific_block>: Remove.
5851 <m_block_index>: Change type to gdb::optional.
5852 (dw2_debug_names_iterator::next): Change type of IS_STATIC to
5853 gdb::optional. Re-write in function of gdb::optional.
5854 (dw2_debug_names_lookup_symbol): Don't pass argument for
5855 WANT_SPECIFIC_BLOCK.
5856 (dw2_debug_names_expand_symtabs_for_function): Don't pass
5857 argument for WANT_SPECIFIC_BLOCK, pass empty optional for
5858 BLOCK_INDEX.
5859
5860 2019-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5861
5862 * NEWS: Mention changes to "info sources" command.
5863
5864 2019-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5865
5866 * symtab.c (filename_partial_match_opts): New struct type.
5867 (struct output_source_filename_data): New members
5868 regexp, c_regexp, partial_match.
5869 (output_source_filename): Use new members to decide to print file.
5870 (info_sources_option_defs): New variable.
5871 (make_info_sources_options_def_group, print_info_sources_header,
5872 info_sources_command_completer):
5873 New functions.
5874 (info_sources_command): Read new optional arguments.
5875 (_initialize_symtab): Update info sources help.
5876
5877 2019-08-02 Alexandre Oliva <oliva@adacore.com>
5878
5879 * ada-lang.c (exception_support_info_v0): Renamed from...
5880 (default_exception_support_info): ... this. Create new
5881 definition for v1.
5882 (ada_has_this_exception_support): Look up catch_handlers_sym.
5883 (ada_exception_support_info_sniffer): Try v0 after default.
5884
5885 2019-08-01 Tom Tromey <tromey@adacore.com>
5886
5887 * ia64-libunwind-tdep.h (struct libunwind_descr): Include
5888 gdbarch.h.
5889
5890 2019-08-01 Christian Biesinger <cbiesinger@google.com>
5891
5892 * s12z-tdep.c: Fix include path for s12z-opc.h.
5893
5894 2019-08-01 Alan Hayward <alan.hayward@arm.com>
5895
5896 * NEWS: Require GNU make 3.82.
5897
5898 2019-07-16 Tom Tromey <tom@tromey.com>
5899
5900 * tui/tui-wingeneral.h (tui_copy_win, tui_box_win): Don't
5901 declare.
5902
5903 2019-07-30 Tom Tromey <tromey@adacore.com>
5904
5905 * block.c (contained_in): Remove BLOCK_FUNCTION check.
5906
5907 2019-07-30 Kevin Buettner <kevinb@redhat.com>
5908
5909 * printcmd.c (print_address_symbolic): Print negative offsets.
5910 (build_address_symbolic): Force signed arithmetic when computing
5911 offset.
5912
5913 2019-07-30 Christian Biesinger <cbiesinger@google.com>
5914
5915 PR/24474: Add a function to lookup static variables.
5916 * NEWS: Mention this new function.
5917 * python/py-symbol.c (gdbpy_lookup_static_symbol): New function.
5918 * python/python-internal.h (gdbpy_lookup_static_symbol): New function.
5919 * python/python.c (python_GdbMethods): Add new function.
5920
5921 2019-07-29 Christian Biesinger <cbiesinger@google.com>
5922
5923 * NEWS: Mention new functions Objfile.lookup_{global,static}_symbol.
5924 * python/py-objfile.c (objfpy_lookup_global_symbol): New function.
5925 (objfpy_lookup_static_symbol): New function.
5926 (objfile_object_methods): Add new functions.
5927
5928 2019-07-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5929
5930 * NEWS: Mention 'set|show print frame-info'. Mention new
5931 'presence' value for 'frame-arguments'. Mention new '-frame-info'
5932 backtrace argument. Mention that python frame filtering code
5933 is now consistent with what 'backtrace' command prints.
5934
5935 2019-07-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5936
5937 * frame.h (enum print_what): New value 'SHORT_LOCATION', update
5938 comments.
5939 (print_frame_info_auto, print_frame_info_source_line,
5940 print_frame_info_location, print_frame_info_source_and_location,
5941 print_frame_info_location_and_address, print_frame_info_short_location):
5942 New declarations.
5943 (struct frame_print_options): New member print_frame_info.
5944 * extension.h (enum ext_lang_frame_args): New value CLI_PRESENCE.
5945 * stack.h (get_user_print_what_frame_info): New declaration.
5946 (frame_show_address): New declaration.
5947 * stack.c (print_frame_arguments_choices): New value 'presence'.
5948 (print_frame_info_auto, print_frame_info_source_line,
5949 print_frame_info_location, print_frame_info_source_and_location,
5950 print_frame_info_location_and_address, print_frame_info_short_location,
5951 print_frame_info_choices, print_frame_info_print_what): New definitions.
5952 (print_frame_args): Only print dots for args if print frame-arguments
5953 is 'presence'.
5954 (frame_print_option_defs): New element for "frame-info".
5955 (get_user_print_what_frame_info): New function.
5956 (frame_show_address): Make non static. Move comment to stack.h.
5957 (print_frame_info_to_print_what): New function.
5958 (print_frame_info): Update comment. Use fp_opts.print_frame_info
5959 to decide what to print.
5960 (backtrace_command_1): Handle the new print_frame_arguments_presence
5961 value.
5962 (_initialize_stack): Call add_setshow_enum_cmd for frame-info.
5963 * python/py-framefilter.c (py_print_args): Handle CLI_PRESENCE.
5964 (py_print_frame): In non-mi mode, use LOCATION as default for
5965 print_what, similarly to frame information printed directly by
5966 backtrace command. Handle frame-info user option in non MI mode.
5967
5968 2019-07-27 Kevin Buettner <kevinb@redhat.com>
5969
5970 * linux-thread-db.c (thread_db_target::thread_handle_to_thread_info):
5971 Add case for debugging 32-bit target on 64-bit host. Revise
5972 comment.
5973
5974 2019-07-27 Kevin Buettner <kevinb@redhat.com>
5975
5976 * infrun.c (fill_in_stop_func): Use find_pc_partial_function
5977 instead of find_function_entry_range_from_pc.
5978
5979 2019-07-27 Kevin Buettner <kevinb@redhat.com>
5980
5981 * stack.c (find_frame_funname): Remove code which preferred
5982 minsym over symtab sym in "certain pathological cases".
5983
5984 * valprint.h (build_address_symbolic): Add "prefer_sym_over_minsym"
5985 parameter. Change type of "do_demangle" to bool.
5986 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
5987 Pass suitable "prefer_sym_over_minsym" flag to
5988 build_address_symbolic(). Don't output "+" for negative offsets.
5989 * printcmd.c (print_address_symbolic): Update invocation of
5990 build_address_symbolic to include a "prefer_sym_over_minsym"
5991 flag.
5992 (build_address_symbolic): Add "prefer_sym_over_minsym" parameter.
5993 Restrict cases in which use of minimal symbol is preferred to that
5994 of a found symbol. Update comments.
5995
5996 * dwarf2-frame.c (dwarf2_frame_cache): Don't decode FDE instructions
5997 for entry pc when entry pc is out of range for that FDE.
5998
5999 2019-07-26 Brian Callahan <bcallah@openbsd.org>
6000
6001 PR gdb/24839:
6002 * gdb/obsd-nat.c (obsd_nat_target::pid_to_str): Fix typo in return
6003 type.
6004
6005 2019-07-25 Christian Biesinger <cbiesinger@google.com>
6006
6007 * python/py-objfile.c (add_separate_debug_file): Fix comment about
6008 this function's Python signature.
6009
6010
6011 2019-07-24 Christian Biesinger <cbiesinger@google.com>
6012
6013 * compile/compile-object-load.c (compile_object_load): Pass GLOBAL_SCOPE.
6014 * solib-spu.c (spu_lookup_lib_symbol): Pass GLOBAL_SCOPE.
6015 * solib-svr4.c (elf_lookup_lib_symbol): Pass GLOBAL_SCOPE.
6016 * symtab.c (lookup_global_symbol_from_objfile): Add a scope parameter.
6017 * symtab.h (lookup_global_symbol_from_objfile): Likewise.
6018
6019
6020 2019-07-24 Yoshinori Sato <ysato@users.sourceforge.jp>
6021
6022 * h8300-tdep.c (h8300_register_name_common): New.
6023 h8300_register_name): Use h8300_register_name_common.
6024 (h8300s_register_name): Likewise.
6025 (h8300sx_register_name): Likewise.
6026 (h8300h_register_nam): New.
6027 (h8300_gdbarch_init): Use h8300h_register_name in h8300h machine.
6028
6029
6030 2019-07-23 Srinath Parvathaneni <srinath.parvathaneni@arm.com>
6031
6032 * arm-tdep.c (arm_skip_cmse_entry): New function.
6033 (arm_is_sgstubs_section): New function.
6034 (arm_skip_stub): Add call to arm_skip_cmse_entry function.
6035
6036 2019-07-22 Tom Tromey <tom@tromey.com>
6037
6038 * tui/tui-win.c (tui_win_info::make_invisible_and_set_new_height):
6039 Don't self-assign.
6040
6041 2019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
6042
6043 * c-typeprint.c (c_print_typedef): Pass -1 instead of 0 to
6044 type_print.
6045
6046 2019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
6047
6048 * symtab.c (search_symbols): Adjust msymbol matching type arrays
6049 so that GDB doesn't match any msymbols when searching in the
6050 TYPES_DOMAIN.
6051 (print_symbol_info): Print using typedef_print or type_print based
6052 on the type of the symbol. Add updated FIXME comment moved from...
6053 (_initialize_symtab): ... move and update FIXME comment to above.
6054
6055 2019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
6056
6057 * NEWS: Mention adding -q option to "info types".
6058 * symtab.c (struct info_types_options): New struct.
6059 (info_types_options_defs): New variable.
6060 (make_info_types_options_def_group): New function.
6061 (info_types_command): Use gdb::option framework to parse options.
6062 (info_types_command_completer): New function.
6063 (_initialize_symtab): Extend the help text on "info types" and
6064 register command completer.
6065
6066 2019-07-21 Christian Biesinger <cbiesinger@google.com>
6067
6068 * symtab.c (lookup_symbol_in_objfile_symtabs): Change int to block_enum.
6069 (lookup_symbol_in_objfile): Change int to block_enum and add a
6070 gdb_assert to make sure block_index is GLOBAL_BLOCK or STATIC_BLOCK.
6071
6072 2019-07-20 Christian Biesinger <cbiesinger@google.com>
6073
6074 * MAINTAINERS (Write After Approval): Add self.
6075
6076 2019-07-19 Andrew Burgess <andrew.burgess@embecosm.com>
6077
6078 * riscv-tdep.c (riscv_push_dummy_code): Write a 4-byte nop
6079 instruction to the dummy code region.
6080
6081 2019-07-19 Tom Tromey <tromey@adacore.com>
6082
6083 * contrib/ari/gdb_ari.sh: Mention C++11, not ISO C 90.
6084 (ARGSUSED, PARAMS, __func__): Remove rules.
6085
6086 2019-07-19 Alan Hayward <alan.hayward@arm.com>
6087
6088 * arm-tdep.c (_initialize_arm_tdep): Remove xml tests.
6089 * features/arm/arm-with-iwmmxt.c: Remove.
6090 * features/arm/arm-with-iwmmxt.xml: Remove.
6091 * features/arm/arm-with-m-fpa-layout.c: Remove.
6092 * features/arm/arm-with-m-fpa-layout.xml: Remove.
6093 * features/arm/arm-with-m-vfp-d16.c: Remove.
6094 * features/arm/arm-with-m-vfp-d16.xml: Remove.
6095 * features/arm/arm-with-m.c: Remove.
6096 * features/arm/arm-with-m.xml: Remove.
6097 * features/arm/arm-with-neon.c: Remove.
6098 * features/arm/arm-with-neon.xml: Remove.
6099 * features/arm/arm-with-vfpv2.c: Remove.
6100 * features/arm/arm-with-vfpv2.xml: Remove.
6101 * features/arm/arm-with-vfpv3.c: Remove.
6102 * features/arm/arm-with-vfpv3.xml: Remove.
6103
6104 2019-07-19 Alan Hayward <alan.hayward@arm.com>
6105
6106 * arm-tdep.c (_initialize_arm_tdep): Add xml regression tests.
6107
6108 2019-07-19 Alan Hayward <alan.hayward@arm.com>
6109
6110 * arch/aarch32.c (aarch32_create_target_description): Create
6111 target descriptions using features.
6112 * arch/arm.c (arm_create_target_description)
6113 (arm_create_mprofile_target_description): Likewise.
6114 * arm-tdep.c (_initialize_arm_tdep): Remove tdesc init calls.
6115
6116 2019-07-19 Alan Hayward <alan.hayward@arm.com>
6117
6118 * Makefile.in: Add new files.
6119 * aarch32-tdep.c: New file.
6120 * aarch32-tdep.h: New file.
6121 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
6122 Call aarch32_read_description.
6123 * arch/aarch32.c: New file.
6124 * arch/aarch32.h: New file.
6125 * arch/arm.c (arm_create_target_description)
6126 (arm_create_mprofile_target_description): New function.
6127 * arch/arm.h (arm_fp_type, arm_m_profile_type): New enum.
6128 (arm_create_target_description)
6129 (arm_create_mprofile_target_description): New declaration.
6130 * arm-fbsd-tdep.c (arm_fbsd_read_description_auxv): Call
6131 read_description functions.
6132 * arm-linux-nat.c (arm_linux_nat_target::read_description):
6133 Likewise.
6134 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
6135 * arm-tdep.c (tdesc_arm_list): New variable.
6136 (arm_register_g_packet_guesses): Call create description functions.
6137 (arm_read_description) (arm_read_mprofile_description): New
6138 function.
6139 * arm-tdep.h (arm_read_description)
6140 (arm_read_mprofile_description): Add declaration.
6141 * configure.tgt: Add new files.
6142
6143 2019-07-18 Guillaume LABARTHE <guillaume.labarthe@gmail.com>
6144
6145 * top.c (new_ui_command): Open specified terminal just once.
6146
6147 2019-07-18 Tom Tromey <tromey@adacore.com>
6148
6149 * symtab.c (main_name): Constify return type.
6150 * symfile.c (set_initial_language): Update.
6151 * symtab.h (main_name): Constify return type.
6152
6153 2019-07-17 Tom Tromey <tom@tromey.com>
6154
6155 * tui/tui-winsource.c (tui_update_source_window)
6156 (tui_update_source_window_as_is)
6157 (tui_update_source_windows_with_line): Remove return.
6158 * tui/tui-disasm.c (tui_show_disassem)
6159 (tui_show_disassem_and_update_source): Remove return.
6160 * tui/tui.c (tui_reset): Remove return.
6161 * tui/tui-wingeneral.c
6162 (tui_check_and_display_highlight_if_needed): Remove return.
6163
6164 2019-07-17 Tom Tromey <tom@tromey.com>
6165
6166 * tui/tui-win.c (parse_scrolling_args): Throw separate errors.
6167
6168 2019-07-17 Tom Tromey <tom@tromey.com>
6169
6170 * tui/tui-winsource.h (struct tui_exec_info_window)
6171 (struct tui_source_window_base): Move from tui-data.h.
6172 * tui/tui-winsource.c: Move many method definitions from
6173 elsewhere. Remove "structuring" comments.
6174 * tui/tui-wingeneral.c (tui_source_window_base::make_visible)
6175 (tui_source_window_base::refresh_window): Move to
6176 tui-winsource.c.
6177 * tui/tui-win.c (tui_source_window_base::refresh_all)
6178 (tui_source_window_base::update_tab_width)
6179 (tui_source_window_base::set_new_height)
6180 (tui_source_window_base::do_make_visible_with_new_height): Move to
6181 tui-winsource.c.
6182 * tui/tui-source.h: Update.
6183 * tui/tui-source.c (tui_source_window_base::reset): Move to
6184 tui-winsource.c.
6185 * tui/tui-disasm.h: Update.
6186 * tui/tui-data.h (struct tui_exec_info_window): Move to
6187 tui-winsource.h.
6188 (struct tui_source_window_base): Likewise.
6189 * tui/tui-data.c (tui_source_window_base::clear_detail)
6190 (tui_source_window_base, ~tui_source_window_base): Move to
6191 tui-winsource.c.
6192
6193 2019-07-17 Tom Tromey <tom@tromey.com>
6194
6195 * tui/tui-win.c (tui_resize_all)
6196 (tui_source_window_base::update_tab_width)
6197 (tui_adjust_win_heights): Update.
6198 (tui_win_info::make_invisible_and_set_new_height): Rename from
6199 make_invisible_and_set_new_height.
6200 * tui/tui-data.h (struct tui_win_info)
6201 <make_invisible_and_set_new_height>: New method.
6202
6203 2019-07-17 Tom Tromey <tom@tromey.com>
6204
6205 * tui/tui.c: Update.
6206 * tui/tui-source.h (struct tui_source_window): Move from
6207 tui-data.h.
6208 * tui/tui-layout.c: Update.
6209 * tui/tui-disasm.c: Update.
6210 * tui/tui-data.h (struct tui_source_window): Move to
6211 tui-source.h.
6212
6213 2019-07-17 Tom Tromey <tom@tromey.com>
6214
6215 * tui/tui-disasm.h (struct tui_disasm_window): Move from
6216 tui-data.h.
6217 * tui/tui-data.h (struct tui_disasm_window): Move to
6218 tui-disasm.h.
6219
6220 2019-07-17 Tom Tromey <tom@tromey.com>
6221
6222 * tui/tui-regs.h (struct tui_data_item_window): Move from
6223 tui-data.h.
6224 * tui/tui-regs.c (tui_data_item_window): Move from tui-data.c.
6225 * tui/tui-data.h (struct tui_data_item_window): Move to
6226 tui-regs.h.
6227 * tui/tui-data.c (~tui_data_item_window): Move to tui-regs.c.
6228
6229 2019-07-17 Tom Tromey <tom@tromey.com>
6230
6231 * tui/tui.c: Update.
6232 * tui/tui-win.c (tui_cmd_window::do_make_visible_with_new_height)
6233 (tui_cmd_window::max_height): Move to tui-command.c.
6234 * tui/tui-layout.c: Update.
6235 * tui/tui-data.h (struct tui_cmd_window): Move to tui-command.h.
6236 * tui/tui-data.c (tui_cmd_window::clear_detail): Move to
6237 tui-command.c.
6238 * tui/tui-command.h (struct tui_cmd_window): Move from
6239 tui-data.h.
6240 * tui/tui-command.c: Remove "structuring" comments.
6241 (tui_cmd_window::clear_detail)
6242 (tui_cmd_window::do_make_visible_with_new_height)
6243 (tui_cmd_window::max_height): Move from elsewhere.
6244
6245 2019-07-17 Tom Tromey <tom@tromey.com>
6246
6247 * tui/tui-io.c (tui_dispatch_ctrl_char): Move from tui-command.c.
6248 Now static.
6249 * tui/tui-command.h (tui_dispatch_ctrl_char): Don't declare.
6250 * tui/tui-command.c (tui_dispatch_ctrl_char): Move to tui-io.c.
6251
6252 2019-07-17 Tom Tromey <tom@tromey.com>
6253
6254 * tui/tui.c: Update.
6255 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Move to
6256 tui-regs.c.
6257 * tui/tui-windata.h: Remove file.
6258 * tui/tui-windata.c: Remove file.
6259 * tui/tui-win.c (tui_data_window::set_new_height)
6260 (tui_data_window::do_make_visible_with_new_height): Move to
6261 tui-regs.c.
6262 * tui/tui-regs.h (struct tui_data_window): Move from tui-data.h.
6263 * tui/tui-regs.c: Remove "structuring" comments.
6264 (tui_data_window::first_data_item_displayed)
6265 (tui_data_window::delete_data_content_windows)
6266 (tui_data_window::erase_data_content)
6267 (tui_data_window::display_all_data)
6268 (tui_data_window::refresh_all)
6269 (tui_data_window::do_scroll_vertical)
6270 (tui_data_window::clear_detail, tui_data_window::set_new_height)
6271 (tui_data_window::do_make_visible_with_new_height)
6272 (tui_data_window::refresh_window): Move from elsewhere.
6273 (_initialize_tui_regs): Move to end of file.
6274 * tui/tui-layout.c: Update.
6275 * tui/tui-hooks.c: Update.
6276 * tui/tui-data.h (struct tui_data_window): Move to tui-regs.h.
6277 * tui/tui-data.c (tui_data_window::clear_detail): Move to
6278 tui-regs.c.
6279 * Makefile.in (SUBDIR_TUI_SRCS): Remove tui-windata.c.
6280
6281 2019-07-17 Tom Tromey <tom@tromey.com>
6282
6283 * tui/tui-io.c (tui_puts_internal): Call wrefresh if newline is
6284 seen.
6285
6286 2019-07-17 Tom Tromey <tom@tromey.com>
6287
6288 * tui/tui-win.c (tui_source_window_base::set_new_height)
6289 (tui_source_window_base::do_make_visible_with_new_height): Use
6290 m_has_locator field directly.
6291 * tui/tui-data.h (struct tui_win_info) <has_locator>: Remove
6292 method.
6293 (struct tui_source_window_base) <has_locator>: Likewise.
6294
6295 2019-07-17 Tom Tromey <tom@tromey.com>
6296
6297 * tui/tui-wingeneral.h (tui_make_visible, tui_make_invisible):
6298 Don't declare.
6299 * tui/tui-wingeneral.c (tui_make_visible, tui_make_invisible):
6300 Remove.
6301 * tui/tui-win.c (tui_source_window_base::set_new_height)
6302 (tui_source_window_base::set_new_height)
6303 (make_invisible_and_set_new_height)
6304 (tui_source_window_base::do_make_visible_with_new_height)
6305 (tui_source_window_base::do_make_visible_with_new_height):
6306 Update.
6307 * tui/tui-layout.c (show_source_disasm_command, show_data)
6308 (show_source_or_disasm_and_command): Update.
6309 * tui/tui-layout.c (show_layout): Update.
6310
6311 2019-07-17 Tom Tromey <tom@tromey.com>
6312
6313 * tui/tui-layout.c (make_data_window): Remove.
6314 (show_data): Unify creation and re-initialization cases.
6315
6316 2019-07-17 Tom Tromey <tom@tromey.com>
6317
6318 * tui/tui-layout.c (make_source_window, make_disasm_window):
6319 Remove.
6320 (show_data): Unify creation and re-initialization cases.
6321
6322 2019-07-17 Tom Tromey <tom@tromey.com>
6323
6324 * tui/tui-layout.c (make_command_window): Remove.
6325 (show_source_disasm_command, show_source_or_disasm_and_command):
6326 Unify creation and re-initialization cases.
6327
6328 2019-07-17 Tom Tromey <tom@tromey.com>
6329
6330 * tui/tui-layout.c (show_source_or_disasm_and_command): Unify
6331 creation and re-initialization cases.
6332
6333 2019-07-17 Tom Tromey <tom@tromey.com>
6334
6335 * tui/tui-regs.c (tui_get_register): Return void.
6336
6337 2019-07-17 Tom Tromey <tom@tromey.com>
6338
6339 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible):
6340 Simplify.
6341
6342 2019-07-17 Tom Tromey <tom@tromey.com>
6343
6344 * tui/tui-layout.c (show_source_disasm_command): Simplify window
6345 resetting.
6346
6347 2019-07-17 Tom Tromey <tom@tromey.com>
6348
6349 * tui/tui.h (tui_set_layout_by_name): Don't declare.
6350 * tui/tui-regs.c (tui_reg_layout): New function.
6351 (tui_show_registers, tui_reg_command): Use it.
6352 * tui/tui-layout.c (LAYOUT_USAGE): Remove.
6353 (tui_layout_command): Rename from tui_set_layout_by_name. Change
6354 parameters.
6355 (tui_layout_command): Remove.
6356
6357 2019-07-17 Tom Tromey <tom@tromey.com>
6358
6359 * tui/tui-layout.h (tui/tui-layout): Return void.
6360 * tui/tui-layout.c (tui_set_layout): Return void. Add assert.
6361
6362 2019-07-17 Tom Tromey <tom@tromey.com>
6363
6364 * tui/tui-layout.c (show_source_disasm_command, show_data):
6365 Update.
6366 (reset_locator): Remove.
6367 (show_source_or_disasm_and_command): Update.
6368
6369 2019-07-17 Tom Tromey <tom@tromey.com>
6370
6371 * tui/tui-source.c (tui_source_window_base::reset): Remove
6372 win_type parameter.
6373 * tui/tui-layout.c (make_command_window, make_source_window)
6374 (make_disasm_window, make_data_window)
6375 (show_source_disasm_command, show_data, tui_gen_win_info::reset)
6376 (reset_locator, show_source_or_disasm_and_command): Update.
6377 * tui/tui-data.h (struct tui_gen_win_info) <reset>: Remove
6378 win_type parameter.
6379 (struct tui_source_window_base) <reset>: Likewise.
6380
6381 2019-07-17 Tom Tromey <tom@tromey.com>
6382
6383 * tui/tui-layout.c (show_source_disasm_command): Use
6384 reset_locator.
6385 (reset_locator): New function.
6386 (init_and_make_win): Remove.
6387 (show_source_or_disasm_and_command): Use reset_locator.
6388
6389 2019-07-17 Tom Tromey <tom@tromey.com>
6390
6391 * tui/tui-winsource.c (tui_set_exec_info_content): Remove
6392 condition.
6393 * tui/tui-wingeneral.c (tui_source_window_base::make_visible):
6394 Remove condition.
6395 * tui/tui-source.c (tui_source_window_base::reset): New method.
6396 * tui/tui-layout.c (make_command_window): Don't call
6397 init_and_make_win.
6398 (make_source_window, make_disasm_window): Don't call
6399 make_source_or_disasm_window.
6400 (make_data_window): Don't call init_and_make_win. Change calling
6401 convention.
6402 (show_source_disasm_command, show_data): Simplify.
6403 (make_source_or_disasm_window): Remove.
6404 (show_source_or_disasm_and_command): Simplify.
6405 * tui/tui-data.h (struct tui_gen_win_info) <reset>: Now virtual.
6406 (struct tui_source_window_base) <reset>: Likewise.
6407 <execution_info>: Remove initializer.
6408 * tui/tui-data.c (tui_source_window_base): Initialize
6409 execution_info.
6410
6411 2019-07-17 Tom Tromey <tom@tromey.com>
6412
6413 * tui/tui-layout.c (tui_set_layout): Remove regs_populate
6414 variable.
6415
6416 2019-07-17 Tom Tromey <tom@tromey.com>
6417
6418 * tui/tui.c (tui_rl_other_window): Update.
6419 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Call
6420 superclass method first. Always iterate over regs_content.
6421 (tui_unhighlight_win, tui_highlight_win): Use refresh_window
6422 method.
6423 * tui/tui-win.c (tui_set_focus_command): Update.
6424
6425 2019-07-17 Tom Tromey <tom@tromey.com>
6426
6427 * tui/tui-win.c (tui_set_focus_command): Rename from
6428 tui_set_focus. Call tui_enable.
6429 (tui_set_focus_command): Remove.
6430
6431 2019-07-17 Tom Tromey <tom@tromey.com>
6432
6433 * tui/tui-winsource.c (tui_show_exec_info_content): Don't call
6434 refresh_window.
6435 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Call
6436 touchwin.
6437 (tui_data_window::refresh_window): Call refresh_window on data
6438 items. Always call superclass refresh_window.
6439 (tui_win_info::refresh): Remove.
6440 (tui_source_window_base::refresh_window): Update.
6441 (tui_refresh_all): Update.
6442 * tui/tui-layout.c (show_source_disasm_command): Remove call to
6443 refresh_window.
6444 (show_source_or_disasm_and_command): Likewise.
6445 * tui/tui-data.h (struct tui_win_info) <refresh>: Remove.
6446 (struct tui_source_window_base) <refresh>: Likewise.
6447
6448 2019-07-17 Tom Tromey <tom@tromey.com>
6449
6450 * tui/tui-winsource.c (tui_clear_source_content)
6451 (tui_show_source_content): Update.
6452 * tui/tui-source.c (tui_source_window::showing_source_p): Check
6453 whether content is empty.
6454 * tui/tui-data.h (struct tui_source_window_base) <content_in_use>:
6455 Remove.
6456
6457 2019-07-17 Tom Tromey <tom@tromey.com>
6458
6459 * tui/tui-winsource.c (tui_erase_source_content): Clear the
6460 window's contents.
6461 * tui/tui-source.h (tui_set_source_content_nil): Don't declare.
6462 * tui/tui-source.c (tui_set_source_content_nil): Remove.
6463
6464 2019-07-17 Tom Tromey <tom@tromey.com>
6465
6466 * tui/tui-data.h (UNDEFINED_ITEM): Remove define.
6467 (struct tui_data_item_window): Update.
6468
6469 2019-07-17 Tom Tromey <tom@tromey.com>
6470
6471 * tui/tui-data.h (MAX_CONTENT_COUNT, TUI_NULL_STR)
6472 (DEFAULT_HISTORY_COUNT, WITH_LOCATOR, NO_LOCATOR): Remove
6473 defines.
6474
6475 2019-07-17 Tom Tromey <tom@tromey.com>
6476
6477 * tui/tui-winsource.h (tui_erase_source_content)
6478 (tui_clear_source_content): Remove "display_prompt" parameter.
6479 * tui/tui-winsource.c (tui_update_source_window_as_is)
6480 (tui_update_source_windows_with_addr): Update.
6481 (tui_clear_source_content): Remove "display_prompt" parameter.
6482 (tui_erase_source_content): Likewise. Simplify.
6483 (tui_show_source_content): Update.
6484 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
6485 * tui/tui-stack.c (tui_show_frame_info): Update.
6486 * tui/tui-data.h (EMPTY_SOURCE_PROMPT, NO_EMPTY_SOURCE_PROMPT):
6487 Remove defines.
6488
6489 2019-07-17 Tom Tromey <tom@tromey.com>
6490
6491 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
6492 * tui/tui-disasm.h (tui_set_disassem_content): Add win_info
6493 parameter.
6494 * tui/tui-disasm.c (tui_set_disassem_content): Add win_info
6495 parameter.
6496
6497 2019-07-17 Tom Tromey <tom@tromey.com>
6498
6499 * tui/tui-winsource.c (tui_clear_source_content)
6500 (tui_show_source_content, tui_show_exec_info_content)
6501 (tui_clear_exec_info_content): Update.
6502 * tui/tui-stack.c (tui_show_locator_content): Update.
6503 (tui_show_frame_info): Update.
6504 * tui/tui-source.h (tui_source_window): Don't declare.
6505 * tui/tui-source.c (tui_source_window::showing_source_p): Rename
6506 from tui_source_is_displayed.
6507 * tui/tui-data.h (struct tui_gen_win_info) <content_in_use>:
6508 Remove field.
6509 (struct tui_source_window_base) <content_in_use>: New field. Now
6510 bool.
6511 (struct tui_source_window) <showing_source_p>: New method.
6512 (TUI_SRC_WIN): Change cast.
6513 * tui/tui-data.c (tui_initialize_static_data): Update.
6514
6515 2019-07-17 Tom Tromey <tom@tromey.com>
6516
6517 * tui/tui-winsource.c (tui_update_breakpoint_info): Use
6518 location_matches_p.
6519 * tui/tui-source.c (tui_source_window::location_matches_p): New
6520 method.
6521 * tui/tui-disasm.c (tui_disasm_window::location_matches_p): New
6522 method.
6523 * tui/tui-data.h (struct tui_source_window_base)
6524 <location_matches_p>: New method.
6525 (struct tui_source_window, struct tui_disasm_window)
6526 <location_matches_p>: Likewise.
6527
6528 2019-07-17 Tom Tromey <tom@tromey.com>
6529
6530 * tui/tui-win.c (tui_set_win_height_command): Rename from
6531 tui_set_win_height.
6532 (tui_set_win_height_command): Remove.
6533
6534 2019-07-17 Tom Tromey <tom@tromey.com>
6535
6536 * tui/tui-source.c (tui_source_window): New constructor. Add
6537 observer.
6538 (~tui_source_window): New destructor.
6539 (tui_source_window::style_changed): New method.
6540 * tui/tui-hooks.c (tui_redisplay_source): Remove.
6541 (tui_attach_detach_observers): Update.
6542 * tui/tui-data.h (struct tui_source_window): Make constructor not
6543 inline. Add destructor.
6544 (struct tui_source_window) <style_changed>: New method.
6545 <m_observable>: New member.
6546
6547 2019-07-17 Tom Tromey <tom@tromey.com>
6548
6549 * tui/tui-data.c (tui_clear_source_windows_detail): Fix typo.
6550 * tui/tui-win.c (tui_resize_all): Fix typo.
6551
6552 2019-07-17 Tom Tromey <tom@tromey.com>
6553
6554 * tui/tui-wingeneral.h (tui_refresh_all): Update.
6555 * tui/tui-wingeneral.c (make_all_visible): Use foreach.
6556 (tui_refresh_all): Remove "list" parameter. Use foreach.
6557 * tui/tui-win.c (window_name_completer): Use foreach.
6558 (tui_refresh_all_win, tui_rehighlight_all, tui_all_windows_info)
6559 (update_tab_width): Likewise.
6560 * tui/tui-layout.c (show_layout): Update.
6561 * tui/tui-data.h (class tui_window_iterator): New.
6562 (struct all_tui_windows): New.
6563 * tui/tui-data.c (tui_partial_win_by_name): Use foreach.
6564
6565 2019-07-17 Tom Tromey <tom@tromey.com>
6566
6567 * tui/tui-regs.c (tui_reg_next, tui_reg_prev): Add "current_group"
6568 parameter. Don't reference globals.
6569 (tui_reg_command): Update.
6570
6571 2019-07-17 Tom Tromey <tom@tromey.com>
6572
6573 * tui/tui-regs.c (tui_show_registers): Simplify.
6574
6575 2019-07-17 Tom Tromey <tom@tromey.com>
6576
6577 * tui/tui-regs.c (tui_show_registers): Update.
6578 (tui_show_register_group): Add win_info parameter.
6579
6580 2019-07-17 Tom Tromey <tom@tromey.com>
6581
6582 * tui/tui-regs.c (tui_data_window::display_reg_element_at_line):
6583 Rename from tui_display_reg_element_at_line.
6584 (tui_data_window::display_registers_from_line): Update.
6585 * tui/tui-data.h (struct tui_data_window)
6586 <display_reg_element_at_line>: New method.
6587
6588 2019-07-17 Tom Tromey <tom@tromey.com>
6589
6590 * tui/tui-regs.h (tui_display_registers_from)
6591 (tui_display_registers_from_line): Don't declare.
6592 * tui/tui-windata.c (tui_data_window::display_all_data)
6593 (tui_data_window::refresh_all)
6594 (tui_data_window::do_scroll_vertical): Update.
6595 * tui/tui-regs.c (tui_data_window::display_registers_from): Rename
6596 from tui_display_registers_from.
6597 (tui_display_reg_element_at_line): Update.
6598 (tui_data_window::display_registers_from_line): Rename from
6599 tui_display_registers_from_line.
6600 * tui/tui-data.h (struct tui_data_window) <display_registers_from,
6601 display_registers_from_line>: New methods.
6602
6603 2019-07-17 Tom Tromey <tom@tromey.com>
6604
6605 * tui/tui-windata.h (tui_erase_data_content): Don't declare.
6606 * tui/tui-windata.c (tui_data_window::erase_data_content): Rename
6607 from tui_erase_data_content.
6608 (tui_data_window::display_all_data)
6609 (tui_data_window::refresh_all)
6610 (tui_data_window::do_scroll_vertical): Update.
6611 * tui/tui-regs.c (tui_show_registers): Update.
6612 * tui/tui-data.h (struct tui_data_window) <erase_data_content>:
6613 New method.
6614
6615 2019-07-17 Tom Tromey <tom@tromey.com>
6616
6617 * tui/tui-windata.h (tui_delete_data_content_windows): Don't
6618 declare.
6619 * tui/tui-windata.c
6620 (tui_data_window::delete_data_content_windows): Rename from
6621 tui_delete_data_content_windows.
6622 (tui_data_window::display_all_data)
6623 (tui_data_window::do_scroll_vertical): Update.
6624 * tui/tui-data.h (struct tui_data_window)
6625 <delete_data_content_windows>: New method.
6626
6627 2019-07-17 Tom Tromey <tom@tromey.com>
6628
6629 * tui/tui-windata.h (tui_refresh_data_win): Don't declare.
6630 * tui/tui-regs.h (tui_first_reg_element_inline): Don't declare.
6631
6632 2019-07-17 Tom Tromey <tom@tromey.com>
6633
6634 * tui/tui-windata.h (tui_display_all_data): Don't declare.
6635 * tui/tui-windata.c (tui_data_window::display_all_data): Rename
6636 from tui_display_all_data.
6637 * tui/tui-win.c
6638 (tui_data_window::do_make_visible_with_new_height): Update.
6639 * tui/tui-regs.c (tui_show_registers): Update.
6640 * tui/tui-layout.c (tui_set_layout): Update.
6641 * tui/tui-data.h (struct tui_data_window) <display_all_data>: New
6642 method.
6643
6644 2019-07-17 Tom Tromey <tom@tromey.com>
6645
6646 * tui/tui-windata.h (tui_display_data_from): Don't declare.
6647 * tui/tui-windata.c (tui_display_data_from): Remove.
6648 (tui_data_window::refresh_all): Update.
6649
6650 2019-07-17 Tom Tromey <tom@tromey.com>
6651
6652 * tui/tui-windata.h (tui_display_data_from_line): Don't declare.
6653 * tui/tui-windata.c (tui_display_data_from_line): Remove.
6654 (tui_display_data_from, tui_data_window::do_scroll_vertical): Call
6655 tui_display_registers_from_line.
6656 * tui/tui-regs.h (tui_display_registers_from_line): Update.
6657 * tui/tui-regs.c (tui_display_registers_from_line): Remove
6658 "force_display" parameter.
6659
6660 2019-07-17 Tom Tromey <tom@tromey.com>
6661
6662 * tui/tui-regs.h (tui_first_reg_element_no_inline): Don't
6663 declare.
6664 * tui/tui-regs.c (tui_data_window::first_reg_element_no_inline):
6665 Rename from tui_first_reg_element_no_inline.
6666 (tui_display_reg_element_at_line)
6667 (tui_display_registers_from_line): Update.
6668 * tui/tui-data.h (struct tui_data_window)
6669 <first_reg_element_no_inline>: New method.
6670
6671 2019-07-17 Tom Tromey <tom@tromey.com>
6672
6673 * tui/tui-windata.c (tui_display_data_from)
6674 (tui_data_window::do_scroll_vertical): Update.
6675 * tui/tui-regs.h (tui_line_from_reg_element_no): Don't declare.
6676 * tui/tui-regs.c (tui_data_window::line_from_reg_element_no):
6677 Rename from tui_line_from_reg_element_no.
6678 (tui_display_registers_from_line): Update.
6679 * tui/tui-data.h (struct tui_data_window)
6680 <line_from_reg_element_no>: New method.
6681
6682 2019-07-17 Tom Tromey <tom@tromey.com>
6683
6684 * tui/tui-regs.h (tui_last_regs_line_no): Don't declare.
6685 * tui/tui-regs.c (tui_data_window::last_regs_line_no): Rename from
6686 tui_last_regs_line_no.
6687 (tui_display_reg_element_at_line)
6688 (tui_display_registers_from_line): Update.
6689 * tui/tui-data.h (struct tui_data_window) <last_regs_line_no>: New
6690 method.
6691
6692 2019-07-17 Tom Tromey <tom@tromey.com>
6693
6694 PR tui/24722:
6695 * tui/tui-winsource.h (tui_update_all_breakpoint_info)
6696 (tui_update_breakpoint_info): Add "being_deleted" parameter.
6697 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
6698 (tui_update_all_breakpoint_info): Add "being_deleted" parameter.
6699 (tui_update_breakpoint_info): Likewise.
6700 * tui/tui-hooks.c (tui_event_create_breakpoint)
6701 (tui_event_delete_breakpoint, tui_event_modify_breakpoint):
6702 Update.
6703
6704 2019-07-17 Tom Tromey <tom@tromey.com>
6705
6706 * tui/tui-stack.c (tui_show_frame_info): Consolidate "if"s.
6707
6708 2019-07-17 Tom Tromey <tom@tromey.com>
6709
6710 * tui/tui-winsource.c (tui_update_source_window_as_is)
6711 (tui_update_source_windows_with_addr): Update.
6712 * tui/tui-source.h (tui_set_source_content)
6713 (tui_show_symtab_source): Add "win_info" parameter.
6714 * tui/tui-source.c (tui_set_source_content): Add "win_info"
6715 parameter.
6716 (tui_show_symtab_source): Likewise.
6717
6718 2019-07-17 Tom Tromey <tom@tromey.com>
6719
6720 * tui/tui-wingeneral.c
6721 (tui_check_and_display_highlight_if_needed): Check can_highlight.
6722
6723 2019-07-17 Tom Tromey <tom@tromey.com>
6724
6725 * tui/tui-data.h (struct tui_win_info) <can_scroll>: New method.
6726 (struct tui_cmd_window) <can_scroll>: New method.
6727 * tui/tui-command.c (tui_dispatch_ctrl_char): Use can_scroll
6728 method.
6729
6730 2019-07-17 Tom Tromey <tromey@adacore.com>
6731
6732 * ui-out.h (class ui_out) <field_signed, field_fmt_signed,
6733 do_field_signed>: Rename. Change type of "value".
6734 * ui-out.c (ui_out::field_signed): Rename from field_int.
6735 Change type of "value".
6736 (ui_out::field_fmt_signed): Rename from field_fmt_int. Change
6737 type of "value".
6738 * tui/tui-out.h (class tui_ui_out) <do_field_signed>: Rename from
6739 do_field_int. Change type of "value".
6740 * tui/tui-out.c (tui_ui_out::do_field_signed): Rename from
6741 do_field_int. Change type of "value".
6742 * tracepoint.c (trace_status_mi, tfind_1)
6743 (print_one_static_tracepoint_marker): Update.
6744 * thread.c (print_thread_info_1, print_selected_thread_frame):
6745 Update.
6746 * stack.c (print_frame, print_frame_info): Update.
6747 * spu-tdep.c (info_spu_signal_command, info_spu_dma_cmdlist):
6748 Update.
6749 * source.c (print_source_lines_base): Update.
6750 * skip.c (info_skip_command): Update.
6751 * record-btrace.c (btrace_ui_out_decode_error)
6752 (btrace_call_history_src_line): Update.
6753 * python/py-framefilter.c (py_print_single_arg, py_print_frame):
6754 Update.
6755 * progspace.c (print_program_space): Update.
6756 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Update.
6757 * mi/mi-out.h (class mi_ui_out) <do_field_signed>: Rename from
6758 do_field_int. Change type of "value".
6759 * mi/mi-out.c (mi_ui_out::do_table_begin)
6760 (mi_ui_out::do_table_header): Update.
6761 (mi_ui_out::do_field_signed): Rename from do_field_int. Change
6762 type of "value".
6763 * mi/mi-main.c (mi_cmd_thread_list_ids, print_one_inferior)
6764 (mi_cmd_data_list_changed_registers, output_register)
6765 (mi_cmd_data_read_memory, mi_load_progress)
6766 (mi_cmd_trace_frame_collected): Update.
6767 * mi/mi-interp.c (mi_on_normal_stop_1, mi_output_solib_attribs):
6768 Update.
6769 * mi/mi-cmd-var.c (print_varobj, mi_cmd_var_create)
6770 (mi_cmd_var_delete, mi_cmd_var_info_num_children)
6771 (mi_cmd_var_list_children, varobj_update_one): Update.
6772 * mi/mi-cmd-stack.c (mi_cmd_stack_info_depth)
6773 (mi_cmd_stack_list_args, list_arg_or_local): Update.
6774 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Update.
6775 * inferior.c (print_inferior): Update.
6776 * gdb_bfd.c (print_one_bfd): Update.
6777 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
6778 Update.
6779 * darwin-nat-info.c (darwin_debug_regions_recurse): Update.
6780 * cli-out.h (class cli_ui_out) <do_field_signed>: Rename from
6781 do_field_int. Change type of "value".
6782 * cli-out.c (cli_ui_out::do_field_signed): Rename from
6783 do_field_int. Change type of "value".
6784 * breakpoint.c (watchpoint_check, print_breakpoint_location)
6785 (print_one_breakpoint_location, print_it_catch_fork)
6786 (print_one_catch_fork, print_it_catch_vfork)
6787 (print_one_catch_vfork, print_it_catch_solib)
6788 (print_it_catch_exec, print_it_ranged_breakpoint)
6789 (print_mention_watchpoint, print_mention_masked_watchpoint)
6790 (bkpt_print_it, update_static_tracepoint): Update.
6791 * break-catch-throw.c (print_it_exception_catchpoint): Update.
6792 * break-catch-syscall.c (print_it_catch_syscall): Update.
6793 * ada-tasks.c (print_ada_task_info): Update.
6794 * ada-lang.c (print_it_exception, print_mention_exception):
6795 Update.
6796
6797 2019-07-17 Andrew Burgess <andrew.burgess@embecosm.com>
6798
6799 PR breakpoints/24541
6800 * gdbarch.c: Regenerate.
6801 * gdbarch.h: Regenerate.
6802 * gdbarch.sh: Adjust return type and parameter types for
6803 'stap_adjust_register'.
6804 (i386_stap_adjust_register): Adjust signature and return new
6805 register name.
6806 * stap-probe.c (stap_parse_register_operand): Adjust use of
6807 'gdbarch_stap_adjust_register'.
6808
6809 2019-07-17 Tom Tromey <tromey@adacore.com>
6810
6811 * s390-linux-nat.c (s390_watch_area): Remove typedef. Don't
6812 declare VEC.
6813 (struct s390_debug_reg_state) <watch_areas, break_areas>: Now
6814 std::vector.
6815 (struct s390_process_info): Add initializers.
6816 (s390_add_process): Use new.
6817 (s390_linux_nat_target::low_forget_process): Use delete.
6818 (s390_linux_nat_target::low_new_fork)
6819 (s390_linux_nat_target::stopped_by_watchpoint)
6820 (s390_linux_nat_target::low_prepare_to_resume)
6821 (s390_linux_nat_target::insert_watchpoint)
6822 (s390_linux_nat_target::insert_hw_breakpoint)
6823 (s390_linux_nat_target::remove_watchpoint)
6824 (s390_linux_nat_target::remove_hw_breakpoint): Update.
6825
6826 2019-07-16 John Baldwin <jhb@FreeBSD.org>
6827
6828 * aarch64-fbsd-nat.c: Include regcache.h.
6829 (getregs_supplies, getfpregs_supplies): Remove unused gdbarch
6830 argument.
6831 (aarch64_fbsd_nat_target::fetch_registers)
6832 (aarch64_fbsd_nat_target::store_registers): Remove gdbarch
6833 variable.
6834 * arm-fbsd-nat.c, riscv-fbsd-nat.c: Likewise.
6835
6836 2019-07-16 John Baldwin <jhb@FreeBSD.org>
6837
6838 * fbsd-nat.c: Include gdbarch.h.
6839
6840 2019-07-15 Tom Tromey <tromey@adacore.com>
6841
6842 * mi/mi-out.c (mi_ui_out::do_field_int): Use plongest.
6843
6844 2019-07-15 Tom Tromey <tromey@adacore.com>
6845
6846 * mi/mi-out.h (class mi_ui_out) <do_field_unsigned>: Declare.
6847 * mi/mi-out.c (mi_ui_out::do_field_unsigned): New method.
6848 * cli-out.h (class cli_ui_out) <do_field_unsigned>: Declare.
6849 * cli-out.c (cli_ui_out::do_field_int): New method.
6850 * ui-out.c (ui_out::field_unsigned): New method.
6851 * symfile.c (generic_load): Use field_unsigned.
6852 (print_transfer_performance): Likewise.
6853 * record-btrace.c (ui_out_field_uint): Remove.
6854 (btrace_call_history_insn_range, btrace_call_history): Use
6855 field_unsigned.
6856 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn): Use
6857 field_unsigned.
6858 * ui-out.h (class ui_out) <field_unsigned>: New method.
6859 <do_field_unsigned>: Likewise.
6860
6861 2019-07-15 Tom Tromey <tromey@adacore.com>
6862
6863 * mi/mi-main.c (list_available_thread_groups): Use field_string.
6864 * mi/mi-interp.c (mi_memory_changed): Use field_string.
6865 * target.c (flash_erase_command): Use field_string.
6866 * infrun.c (print_signal_received_reason): Use field_string.
6867 * i386-tdep.c (i386_mpx_print_bounds): Use field_string.
6868 * breakpoint.c (maybe_print_thread_hit_breakpoint): Use
6869 field_string.
6870 * ada-tasks.c (print_ada_task_info): Use field_string.
6871
6872 2019-07-15 Tom Tromey <tromey@adacore.com>
6873
6874 * target.c (flash_erase_command): Use field_core_addr.
6875 * symfile.c (generic_load): Use field_core_addr.
6876 * sparc64-linux-tdep.c (sparc64_linux_handle_segmentation_fault):
6877 Use field_core_addr.
6878 * i386-linux-tdep.c (i386_linux_handle_segmentation_fault): Use
6879 field_core_addr.
6880
6881 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
6882
6883 * dwarf2loc.c (dwarf2_evaluate_property): Sign extend property
6884 value if its desired type is smaller than a CORE_ADDR and signed.
6885
6886 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
6887
6888 * dwarf2loc.c (dwarf2_evaluate_property): Update to take account
6889 of changes to field names, and use new is_reference field to
6890 decide if a property is a reference or not.
6891 * dwarf2loc.h (struct dwarf2_locexpr_baton): Add 'is_reference'
6892 field.
6893 (struct dwarf2_property_baton): Update header comment, rename
6894 'referenced_type' to 'property_type' and update comments.
6895 * dwarf2read.c (attr_to_dynamic_prop): Add extra parameter to hold
6896 default property type, store in property baton, update to take
6897 accound of renamed field.
6898 (read_func_scope): Update call to attr_to_dynamic_prop.
6899 (read_array_type): Likewise.
6900 (dwarf2_per_cu_addr_sized_int_type): New function.
6901 (read_subrange_index_type): Move type finding code to
6902 dwarf2_per_cu_addr_sized_int_type.
6903 (read_subrange_type): Update calls to attr_to_dynamic_prop.
6904 (dwarf2_per_cu_addr_type): New function.
6905 (set_die_type): Update calls to attr_to_dynamic_prop.
6906
6907 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
6908
6909 * dwarf2read.c (read_subrange_index_type): New function.
6910 (read_subrange_type): Move code into new function and call it.
6911 * gdbtypes.c (create_range_type): Add some asserts.
6912
6913 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
6914
6915 * dwarf2loc.c (dwarf2_evaluate_property): Change return type, and
6916 update return statements.
6917 * dwarf2loc.h (dwarf2_evaluate_property): Update return type on
6918 declaration, and update comment to match.
6919 * gdbtypes.c (resolve_dynamic_array): Update call to
6920 dwarf2_evaluate_property to match new return type.
6921
6922 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
6923
6924 * valarith.c (value_subscripted_rvalue): Change lowerbound
6925 parameter type from int to LONGEST.
6926 * value.h (value_subscripted_rvalue): Likewise in declaration.
6927
6928 2019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
6929
6930 * cli/cli-utils.c (info_print_command_completer): New function.
6931 * cli/cli-utils.h: Add 'completer.h' include, and forward
6932 declaration for 'struct cmd_list_element'.
6933 (info_print_command_completer): Declare.
6934 * stack.c (_initialize_stack): Add completer for 'info locals' and
6935 'info args'.
6936 * symtab.c (_initialize_symtab): Add completer for 'info
6937 variables' and 'info functions'.
6938 * NEWS: Mention completion for additional info commands.
6939
6940 2019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
6941
6942 * cli/cli-utils.c (extract_info_print_args): Delete.
6943 (extract_arg_maybe_quoted): Delete.
6944 (info_print_options_defs): New variable.
6945 (make_info_print_options_def_group): New function.
6946 (extract_info_print_options): Define new function.
6947 * cli/cli-utils.h (extract_info_print_args): Delete.
6948 (struct info_print_options): New structure.
6949 (extract_info_print_options): Declare new function.
6950 * stack.c (info_locals_command): Update to use new
6951 extract_info_print_options, also add a header comment.
6952 (info_args_command): Likewise.
6953 * symtab.c (info_variables_command): Likewise.
6954 (info_functions_command): Likewise.
6955
6956 2019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
6957
6958 * cli/cli-option.c (parse_option): Use extract_string_maybe_quoted
6959 to extract string arguments.
6960 * common/common-utils.c (extract_string_maybe_quoted): New function.
6961 * common/common-utils.h (extract_string_maybe_quoted): Declare.
6962
6963 2019-07-11 Tom Tromey <tromey@adacore.com>
6964
6965 * main.c (get_init_files): Use GDBINIT, not gdbinit.
6966 * auto-load.c (file_is_auto_load_safe): Use GDBINIT, not gdbinit.
6967 * top.h (gdbinit): Don't declare.
6968 * cli/cli-cmds.c (init_cli_cmds): Remove, merging contents
6969 into...
6970 (_initialize_cli_cmds): ...here. Use GDBINIT, not gdbinit.
6971 * top.c (gdb_init): Don't call init_cli_cmds.
6972 (gdbinit): Remove.
6973 * cli/cli-cmds.h (init_cli_cmds): Don't declare.
6974
6975 2019-07-11 Tom Tromey <tromey@adacore.com>
6976
6977 * python/py-inferior.c (add_thread_object): Don't use thread_obj
6978 after it has been moved.
6979
6980 2019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
6981
6982 * valops.c (value_must_coerce_to_target): Change return type to
6983 bool.
6984 * value.h (value_must_coerce_to_target): Likewise.
6985
6986 2019-07-10 Simon Marchi <simon.marchi@efficios.com>
6987
6988 * breakpoint.c (is_hardware_watchpoint): Remove
6989 forward-declaration.
6990 (is_masked_watchpoint): Change return type to bool.
6991 (is_tracepoint): Likewise.
6992 (is_breakpoint): Likewise.
6993 (is_hardware_watchpoint): Likewise.
6994 (is_watchpoint): Likewise.
6995 (is_no_memory_software_watchpoint): Likewise.
6996 (is_catchpoint): Likewise.
6997 (breakpoint_1): Make FILTER parameter's return type bool.
6998 is_masked_watchpoint): Change return type to bool.
6999 (save_breakpoints): Make FILTER parameter's return type bool.
7000 * breakpoint.h (is_breakpoint): Change return type to bool.
7001 (is_watchpoint): Likewise.
7002 (is_catchpoint): Likewise.
7003 (is_tracepoint): Likewise.
7004
7005 2019-07-10 Tom Tromey <tom@tromey.com>
7006
7007 * defs.h: Don't include gdbarch.h.
7008 * aarch64-ravenscar-thread.c, aarch64-tdep.c, alpha-bsd-tdep.h,
7009 alpha-linux-tdep.c, alpha-mdebug-tdep.c, arch-utils.h, arm-tdep.h,
7010 ax-general.c, btrace.c, buildsym-legacy.c, buildsym.h, c-lang.c,
7011 cli/cli-decode.h, cli/cli-dump.c, cli/cli-script.h,
7012 cli/cli-style.h, coff-pe-read.h, compile/compile-c-support.c,
7013 compile/compile-cplus.h, compile/compile-loc2c.c, corefile.c,
7014 cp-valprint.c, cris-linux-tdep.c, ctf.c, d-lang.c, d-namespace.c,
7015 dcache.c, dicos-tdep.c, dictionary.c, disasm-selftests.c,
7016 dummy-frame.c, dummy-frame.h, dwarf2-frame-tailcall.c,
7017 dwarf2expr.c, expression.h, f-lang.c, frame-base.c,
7018 frame-unwind.c, frv-linux-tdep.c, gdbarch-selftests.c, gdbtypes.h,
7019 go-lang.c, hppa-nbsd-tdep.c, hppa-obsd-tdep.c, i386-dicos-tdep.c,
7020 i386-tdep.h, ia64-vms-tdep.c, interps.h, language.c,
7021 linux-record.c, location.h, m2-lang.c, m32r-linux-tdep.c,
7022 mem-break.c, memattr.c, mn10300-linux-tdep.c, nios2-linux-tdep.c,
7023 objfiles.h, opencl-lang.c, or1k-linux-tdep.c, p-lang.c,
7024 parser-defs.h, ppc-tdep.h, probe.h, python/py-record-btrace.c,
7025 record-btrace.c, record.h, regcache-dump.c, regcache.h,
7026 riscv-fbsd-tdep.c, riscv-linux-tdep.c, rust-exp.y,
7027 sh-linux-tdep.c, sh-nbsd-tdep.c, source-cache.c,
7028 sparc-nbsd-tdep.c, sparc-obsd-tdep.c, sparc-ravenscar-thread.c,
7029 sparc64-fbsd-tdep.c, std-regs.c, target-descriptions.h,
7030 target-float.c, tic6x-linux-tdep.c, tilegx-linux-tdep.c, top.c,
7031 tracefile.c, trad-frame.c, type-stack.h, ui-style.c, utils.c,
7032 utils.h, valarith.c, valprint.c, varobj.c, x86-tdep.c,
7033 xml-support.h, xtensa-linux-tdep.c, cli/cli-cmds.h: Update.
7034 * s390-linux-nat.c, procfs.c, inf-ptrace.c: Likewise.
7035
7036 2019-07-10 Tom Tromey <tromey@adacore.com>
7037
7038 * ada-lang.h (is_ada_exception_catchpoint): Declare.
7039 * breakpoint.c (init_ada_exception_breakpoint): Register as
7040 bp_catchpoint.
7041 (print_one_breakpoint_location, print_one_breakpoint): Use
7042 is_ada_exception_catchpoint.
7043 * ada-lang.c (class ada_catchpoint_location): Pass
7044 bp_loc_software_breakpoint to bp_location constructor.
7045 (is_ada_exception_catchpoint): New function.
7046
7047 2019-07-10 Tom Tromey <tromey@adacore.com>
7048
7049 * arm-tdep.c (arm_exidx_entry_s): Remove typedef. Don't define
7050 VEC.
7051 (struct arm_exidx_entry): New method operator<.
7052 (struct arm_exidx_data) <section_maps>: Change type.
7053 (arm_exidx_data_free): Remove.
7054 (arm_exidx_data_key): Change type. Move lower.
7055 (arm_exidx_new_objfile): Update.
7056 (arm_compare_exidx_entries): Remove.
7057 (arm_find_exidx_entry, _initialize_arm_tdep)
7058
7059 2019-07-10 Tom Tromey <tromey@adacore.com>
7060
7061 * solib-spu.c (ocl_program_data_key): Change type.
7062 (append_ocl_sos, ocl_enable_break, _initialize_spu_solib):
7063 Update.
7064
7065 2019-07-10 Tom Tromey <tromey@adacore.com>
7066
7067 * solib-aix.c (lm_info_aix_p): Remove typedef. Don't define VEC.
7068 (struct solib_aix_inferior_data) <library_list>: Change type.
7069 (solib_aix_inferior_data_handle): Change type.
7070 (get_solib_aix_inferior_data): Update.
7071 (solib_aix_free_library_list): Remove.
7072 (library_list_start_library): Update.
7073 (solib_aix_parse_libraries, solib_aix_get_library_list): Change
7074 return type.
7075 (solib_aix_get_library_list)
7076 (solib_aix_solib_create_inferior_hook, solib_aix_current_sos)
7077 (solib_aix_normal_stop_observer, _initialize_solib_aix): Update.
7078
7079 2019-07-10 Tom Tromey <tromey@adacore.com>
7080
7081 * solib-dsbt.c (struct dsbt_info): Add initializers.
7082 (solib_dsbt_pspace_data): Change type.
7083 (dsbt_pspace_data_cleanup): Remove.
7084 (get_dsbt_info, _initialize_dsbt_solib): Update.
7085
7086 2019-07-10 Tom Tromey <tromey@adacore.com>
7087
7088 * spu-tdep.c (spu_overlay_data): Change type.
7089 (spu_get_overlay_table, spu_overlay_new_objfile)
7090 (_initialize_spu_tdep): Update.
7091
7092 2019-07-10 Tom Tromey <tromey@adacore.com>
7093
7094 * gdb-stabs.h (struct dbx_symfile_info): Add initializers and
7095 destructor.
7096 (dbx_objfile_data_key): Change type and declare later.
7097 (DBX_SYMFILE_INFO): Rewrite.
7098 * dbxread.c (dbx_objfile_data_key): Change type.
7099 (dbx_symfile_init): Update.
7100 (~dbx_symfile_info): Rename from dbx_free_symfile_info. Update.
7101 (coffstab_build_psymtabs, elfstab_build_psymtabs)
7102 (stabsect_build_psymtabs, _initialize_dbxread): Update.
7103
7104 2019-07-10 Tom Tromey <tromey@adacore.com>
7105
7106 * jit.c (jit_program_space_key): Change type. Move lower.
7107 (get_jit_program_space_data): Update.
7108 (jit_program_space_data_cleanup): Remove.
7109 (jit_breakpoint_deleted, free_objfile_data, _initialize_jit):
7110 Update.
7111 (struct jit_program_space_data): Add initializers.
7112
7113 2019-07-10 Tom Tromey <tromey@adacore.com>
7114
7115 * solib-darwin.c (struct darwin_info): Add initializers.
7116 (solib_darwin_pspace_data): Change type.
7117 (darwin_pspace_data_cleanup): Remove.
7118 (get_darwin_info, _initialize_darwin_solib): Update.
7119
7120 2019-07-10 Tom Tromey <tromey@adacore.com>
7121
7122 * remote-sim.c (struct sim_inferior_data): Add initializers,
7123 constructor, and destructor.
7124 (sim_inferior_data_key): Change type. Move lower.
7125 (check_for_duplicate_sim_descriptor): Update.
7126 (get_sim_inferior_data): Use new. Update.
7127 (~sim_inferior_data_cleanup): Rename from
7128 sim_inferior_data_cleanup. Simplify.
7129 (gdbsim_close_inferior, simulator_command)
7130 (sim_command_completer, _initialize_remote_sim): Update.
7131 (next_pid, INITIAL_PID): Move earlier.
7132
7133 2019-07-10 Tom Tromey <tromey@adacore.com>
7134
7135 * python/python-internal.h (create_thread_object): Return
7136 gdbpy_ref.
7137 * python/py-infthread.c (create_thread_object): Return gdbpy_ref.
7138 * python/py-inferior.c (struct threadlist_entry): Add
7139 constructor.
7140 <thread_obj>: Now a gdbpy_ref.
7141 (thread_to_thread_object): Update.
7142 (add_thread_object): Use new.
7143 (delete_thread_object): Use delete.
7144 (infpy_threads): Update.
7145 (py_free_inferior): Update. Construct "inf_obj" after acquiring
7146 GIL.
7147
7148 2019-07-10 Tom Tromey <tromey@adacore.com>
7149
7150 * valops.c (value_cast): Specialize error message for Ada.
7151
7152 2019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
7153
7154 * breakpoint.c (breakpoint_1): Update doc and parameter names.
7155
7156 2019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
7157
7158 * breakpoint.h (bpstat_explains_signal, bpstat_causes_stop,
7159 bpstat_should_step): Return bool, adjust comments.
7160 * breakpoint.c (bpstat_explains_signal, bpstat_causes_stop,
7161 bpstat_should_step): Likewise.
7162
7163 2019-07-10 Alan Hayward <alan.hayward@arm.com>
7164
7165 * features/Makefile: Use feature target descriptions for Arm.
7166 * features/arm/arm-core.c: Generate new file.
7167 * features/arm/arm-fpa.c: Likewise.
7168 * features/arm/arm-m-profile-with-fpa.xml: Likewise.
7169 * features/arm/arm-m-profile.c: Likewise.
7170 * features/arm/arm-vfpv2.c: Likewise.
7171 * features/arm/arm-vfpv3.c: Likewise.
7172 * features/arm/xscale-iwmmxt.c: Likewise.
7173 * target-descriptions.c (maint_print_c_tdesc_cmd): Add Arm.
7174
7175 2019-07-10 Alan Hayward <alan.hayward@arm.com>
7176
7177 * arm-linux-nat.c (arm_linux_nat_target::read_description): Check
7178 ptrace earlier.
7179
7180 2019-07-10 Alan Hayward <alan.hayward@arm.com>
7181
7182 * features/aarch64-pauth.c: Regenerate.
7183
7184 2019-07-09 Simon Marchi <simon.marchi@polymtl.ca>
7185
7186 * breakpoint.h (struct bpstat_what) <is_longjmp>: Change type to
7187 bool.
7188 (bpstat_what): Use false instead of 0.
7189
7190 2019-07-09 Pedro Alves <palves@redhat.com>
7191
7192 * break-catch-throw.c (is_exception_catchpoint): New.
7193 * breakpoint.c (print_one_breakpoint_location): New parameter
7194 'raw_loc'. Handle it. Use
7195 is_watchpoint/is_catchpoint/is_exception_catchpoint instead of
7196 looking at the breakpoint's type.
7197 (print_one_breakpoint): If handling "maint info breakpoints", also
7198 print locations of exception catchpoints.
7199 * breakpoint.h (is_exception_catchpoint): Declare.
7200
7201 2019-07-09 Pedro Alves <palves@redhat.com>
7202
7203 * break-catch-throw.c (print_one_exception_catchpoint): Skip the
7204 "addr" field.
7205 (allocate_location_exception_catchpoint): New.
7206 (handle_gnu_v3_exceptions): Don't reset 'type' to bp_breakpoint.
7207 (initialize_throw_catchpoint_ops): Install
7208 allocate_location_exception_catchpoint as allocate_location
7209 method.
7210 * breakpoint.c (bpstat_what) <bp_catch>: Set action to
7211 BPSTAT_WHAT_SINGLE if not stopping and the location's type is not
7212 bp_loc_other.
7213 (breakpoint_address_is_meaningful): Delete.
7214 (bl_address_is_meaningful): New.
7215 (breakpoint_locations_match): Adjust comment.
7216 (bp_location_from_bp_type): New, factored out of...
7217 (bp_location::bp_location(breakpoint *)): ... this.
7218 (bp_location::bp_location(breakpoint *, bp_loc_type)): New,
7219 factored out of...
7220 (bp_location::bp_location(breakpoint *)): ... this. Reimplement.
7221 (bp_loc_is_permanent): Use bl_address_is_meaningful instead of
7222 breakpoint_address_is_meaningful.
7223 (bp_locations_compare): Adjust comment.
7224 (update_global_location_list): Use bl_address_is_meaningful
7225 instead of breakpoint_address_is_meaningful.
7226 * breakpoint.h (bp_location::bp_location(breakpoint *)): New
7227 explicit.
7228 (bp_location::bp_location(breakpoint *, bp_loc_type)): Declare.
7229 * python/py-breakpoint.c (bppy_get_location): No longer check
7230 whether location is null.
7231
7232 2019-07-09 Pedro Alves <palves@redhat.com>
7233
7234 PR c++/15468
7235 * breakpoint.c (print_one_breakpoint_location): Remove
7236 single-location assert.
7237
7238 2019-07-09 Tom Tromey <tom@tromey.com>
7239
7240 * contrib/ari/gdb_ari.sh: Change common to gdbsupport.
7241 * configure: Rebuild.
7242 * configure.ac: Change common to gdbsupport.
7243 * gdbsupport: Rename from common.
7244 * acinclude.m4: Change common to gdbsupport.
7245 * Makefile.in (CONFIG_SRC_SUBDIR, COMMON_SFILES)
7246 (HFILES_NO_SRCDIR, stamp-version, ALLDEPFILES): Change common to
7247 gdbsupport.
7248 * aarch64-tdep.c, ada-lang.c, ada-lang.h, agent.c, alloc.c,
7249 amd64-darwin-tdep.c, amd64-dicos-tdep.c, amd64-fbsd-nat.c,
7250 amd64-fbsd-tdep.c, amd64-linux-nat.c, amd64-linux-tdep.c,
7251 amd64-nbsd-tdep.c, amd64-obsd-tdep.c, amd64-sol2-tdep.c,
7252 amd64-tdep.c, amd64-windows-tdep.c, arch-utils.c,
7253 arch/aarch64-insn.c, arch/aarch64.c, arch/aarch64.h, arch/amd64.c,
7254 arch/amd64.h, arch/arm-get-next-pcs.c, arch/arm-linux.c,
7255 arch/arm.c, arch/i386.c, arch/i386.h, arch/ppc-linux-common.c,
7256 arch/riscv.c, arch/riscv.h, arch/tic6x.c, arm-tdep.c, auto-load.c,
7257 auxv.c, ax-gdb.c, ax-general.c, ax.h, breakpoint.c, breakpoint.h,
7258 btrace.c, btrace.h, build-id.c, build-id.h, c-lang.h, charset.c,
7259 charset.h, cli/cli-cmds.c, cli/cli-cmds.h, cli/cli-decode.c,
7260 cli/cli-dump.c, cli/cli-option.h, cli/cli-script.c,
7261 coff-pe-read.c, command.h, compile/compile-c-support.c,
7262 compile/compile-c.h, compile/compile-cplus-symbols.c,
7263 compile/compile-cplus-types.c, compile/compile-cplus.h,
7264 compile/compile-loc2c.c, compile/compile.c, completer.c,
7265 completer.h, contrib/ari/gdb_ari.sh, corefile.c, corelow.c,
7266 cp-support.c, cp-support.h, cp-valprint.c, csky-tdep.c, ctf.c,
7267 darwin-nat.c, debug.c, defs.h, disasm-selftests.c, disasm.c,
7268 disasm.h, dtrace-probe.c, dwarf-index-cache.c,
7269 dwarf-index-cache.h, dwarf-index-write.c, dwarf2-frame.c,
7270 dwarf2expr.c, dwarf2loc.c, dwarf2read.c, event-loop.c,
7271 event-top.c, exceptions.c, exec.c, extension.h, fbsd-nat.c,
7272 features/aarch64-core.c, features/aarch64-fpu.c,
7273 features/aarch64-pauth.c, features/aarch64-sve.c,
7274 features/i386/32bit-avx.c, features/i386/32bit-avx512.c,
7275 features/i386/32bit-core.c, features/i386/32bit-linux.c,
7276 features/i386/32bit-mpx.c, features/i386/32bit-pkeys.c,
7277 features/i386/32bit-segments.c, features/i386/32bit-sse.c,
7278 features/i386/64bit-avx.c, features/i386/64bit-avx512.c,
7279 features/i386/64bit-core.c, features/i386/64bit-linux.c,
7280 features/i386/64bit-mpx.c, features/i386/64bit-pkeys.c,
7281 features/i386/64bit-segments.c, features/i386/64bit-sse.c,
7282 features/i386/x32-core.c, features/riscv/32bit-cpu.c,
7283 features/riscv/32bit-csr.c, features/riscv/32bit-fpu.c,
7284 features/riscv/64bit-cpu.c, features/riscv/64bit-csr.c,
7285 features/riscv/64bit-fpu.c, features/tic6x-c6xp.c,
7286 features/tic6x-core.c, features/tic6x-gp.c, filename-seen-cache.h,
7287 findcmd.c, findvar.c, fork-child.c, gcore.c, gdb_bfd.c, gdb_bfd.h,
7288 gdb_proc_service.h, gdb_regex.c, gdb_select.h, gdb_usleep.c,
7289 gdbarch-selftests.c, gdbthread.h, gdbtypes.h, gnu-nat.c,
7290 go32-nat.c, guile/guile.c, guile/scm-ports.c,
7291 guile/scm-safe-call.c, guile/scm-type.c, i386-fbsd-nat.c,
7292 i386-fbsd-tdep.c, i386-go32-tdep.c, i386-linux-nat.c,
7293 i386-linux-tdep.c, i386-tdep.c, i387-tdep.c,
7294 ia64-libunwind-tdep.c, ia64-linux-nat.c, inf-child.c,
7295 inf-ptrace.c, infcall.c, infcall.h, infcmd.c, inferior-iter.h,
7296 inferior.c, inferior.h, inflow.c, inflow.h, infrun.c, infrun.h,
7297 inline-frame.c, language.h, linespec.c, linux-fork.c, linux-nat.c,
7298 linux-tdep.c, linux-thread-db.c, location.c, machoread.c,
7299 macrotab.h, main.c, maint.c, maint.h, memattr.c, memrange.h,
7300 mi/mi-cmd-break.h, mi/mi-cmd-env.c, mi/mi-cmd-stack.c,
7301 mi/mi-cmd-var.c, mi/mi-interp.c, mi/mi-main.c, mi/mi-parse.h,
7302 minsyms.c, mips-linux-tdep.c, namespace.h,
7303 nat/aarch64-linux-hw-point.c, nat/aarch64-linux-hw-point.h,
7304 nat/aarch64-linux.c, nat/aarch64-sve-linux-ptrace.c,
7305 nat/amd64-linux-siginfo.c, nat/fork-inferior.c,
7306 nat/linux-btrace.c, nat/linux-btrace.h, nat/linux-namespaces.c,
7307 nat/linux-nat.h, nat/linux-osdata.c, nat/linux-personality.c,
7308 nat/linux-procfs.c, nat/linux-ptrace.c, nat/linux-ptrace.h,
7309 nat/linux-waitpid.c, nat/mips-linux-watch.c,
7310 nat/mips-linux-watch.h, nat/ppc-linux.c, nat/x86-dregs.c,
7311 nat/x86-dregs.h, nat/x86-linux-dregs.c, nat/x86-linux.c,
7312 nto-procfs.c, nto-tdep.c, objfile-flags.h, objfiles.c, objfiles.h,
7313 obsd-nat.c, observable.h, osdata.c, p-valprint.c, parse.c,
7314 parser-defs.h, ppc-linux-nat.c, printcmd.c, probe.c, proc-api.c,
7315 procfs.c, producer.c, progspace.h, psymtab.h,
7316 python/py-framefilter.c, python/py-inferior.c, python/py-ref.h,
7317 python/py-type.c, python/python.c, record-btrace.c, record-full.c,
7318 record.c, record.h, regcache-dump.c, regcache.c, regcache.h,
7319 remote-fileio.c, remote-fileio.h, remote-sim.c, remote.c,
7320 riscv-tdep.c, rs6000-aix-tdep.c, rust-exp.y, s12z-tdep.c,
7321 selftest-arch.c, ser-base.c, ser-event.c, ser-pipe.c, ser-tcp.c,
7322 ser-unix.c, skip.c, solib-aix.c, solib-target.c, solib.c,
7323 source-cache.c, source.c, source.h, sparc-nat.c, spu-linux-nat.c,
7324 stack.c, stap-probe.c, symfile-add-flags.h, symfile.c, symfile.h,
7325 symtab.c, symtab.h, target-descriptions.c, target-descriptions.h,
7326 target-memory.c, target.c, target.h, target/waitstatus.c,
7327 target/waitstatus.h, thread-iter.h, thread.c, tilegx-tdep.c,
7328 top.c, top.h, tracefile-tfile.c, tracefile.c, tracepoint.c,
7329 tracepoint.h, tui/tui-io.c, ui-file.c, ui-out.h,
7330 unittests/array-view-selftests.c,
7331 unittests/child-path-selftests.c, unittests/cli-utils-selftests.c,
7332 unittests/common-utils-selftests.c,
7333 unittests/copy_bitwise-selftests.c, unittests/environ-selftests.c,
7334 unittests/format_pieces-selftests.c,
7335 unittests/function-view-selftests.c,
7336 unittests/lookup_name_info-selftests.c,
7337 unittests/memory-map-selftests.c, unittests/memrange-selftests.c,
7338 unittests/mkdir-recursive-selftests.c,
7339 unittests/observable-selftests.c,
7340 unittests/offset-type-selftests.c, unittests/optional-selftests.c,
7341 unittests/parse-connection-spec-selftests.c,
7342 unittests/ptid-selftests.c, unittests/rsp-low-selftests.c,
7343 unittests/scoped_fd-selftests.c,
7344 unittests/scoped_mmap-selftests.c,
7345 unittests/scoped_restore-selftests.c,
7346 unittests/string_view-selftests.c, unittests/style-selftests.c,
7347 unittests/tracepoint-selftests.c, unittests/unpack-selftests.c,
7348 unittests/utils-selftests.c, unittests/xml-utils-selftests.c,
7349 utils.c, utils.h, valarith.c, valops.c, valprint.c, value.c,
7350 value.h, varobj.c, varobj.h, windows-nat.c, x86-linux-nat.c,
7351 xml-support.c, xml-support.h, xml-tdesc.h, xstormy16-tdep.c,
7352 xtensa-linux-nat.c, dwarf2read.h: Change common to gdbsupport.
7353
7354 2019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
7355
7356 * linespec.c (decode_digits_list_mode): Set explicit_line to a
7357 bool value.
7358 (decode_digits_ordinary): Set explicit_line field in sal.
7359 * symtab.c (skip_prologue_sal): Don't skip prologue for a
7360 symtab_and_line that was set on an explicit line number in
7361 assembler code. Do always update the recorded symtab and line if
7362 we do skip the prologue.
7363
7364 2019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
7365
7366 * breakpoint.c (set_breakpoint_location_function): Remove
7367 explicit_loc parameter.
7368 (momentary_breakpoint_from_master): Update call to
7369 set_breakpoint_location_function.
7370 (add_location_to_breakpoint): Likewise.
7371
7372 2019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
7373
7374 * riscv-tdep.c (riscv_features_from_gdbarch_info): Don't modify
7375 required features based on default bfd type when no specific bfd
7376 is present.
7377
7378 2019-07-08 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7379
7380 * NEWS: Mention that GDB printf and eval commands can now print
7381 C-style and Ada-style convenience var strings without
7382 calling the inferior.
7383 * printcmd.c (printf_c_string): Locally print GDB internal var
7384 instead of transiting via the inferior.
7385 (printf_wide_c_string): Likewise.
7386
7387 2019-07-04 Alan Hayward <alan.hayward@arm.com>
7388
7389 PR breakpoints/25011
7390 * symfile.c (symbol_file_command): Call solib_create_inferior_hook.
7391
7392 2019-07-04 Tom Tromey <tom@tromey.com>
7393
7394 PR tui/24724:
7395 * tui/tui-winsource.c (tui_clear_source_content): Update.
7396 (tui_source_window_base::set_is_exec_point_at): Fix comment.
7397 (tui_update_breakpoint_info): Update.
7398 (tui_set_exec_info_content): Update.
7399 * tui/tui-source.c (tui_set_source_content_nil): Update.
7400 * tui/tui-disasm.c (tui_set_disassem_content): Don't set
7401 has_break.
7402 * tui/tui-data.h (enum tui_bp_flag): New.
7403 (tui_bp_flags): New enum flags type.
7404 (struct tui_source_element) <break_mode>: Change type. Rename
7405 from has_break.
7406 (TUI_BP_ENABLED, TUI_BP_DISABLED, TUI_BP_HIT)
7407 (TUI_BP_CONDITIONAL, TUI_BP_HARDWARE): Don't define. Now enum
7408 constants.
7409 * tui/tui-winsource.h: Fix comment.
7410
7411 2019-07-04 Alan Hayward <alan.hayward@arm.com>
7412
7413 * aarch32-linux-nat.h (VFP_REGS_SIZE): Remove define.
7414 * aarch64-linux-nat.c (fetch_fpregs_from_thread)
7415 (store_fpregs_to_thread)
7416 (aarch64_linux_nat_target::read_description): Use ARM_VFP3_REGS_SIZE.
7417 * arch/arm.h (IWMMXT_VEC_REGISTER_SIZE, ARM_CORE_REGS_SIZE)
7418 (ARM_FP_REGS_SIZE, ARM_VFP2_REGS_SIZE, ARM_VFP3_REGS_SIZE)
7419 (IWMMXT_REGS_SIZE): Add define.
7420 * arm-linux-nat.c (IWMMXT_REGS_SIZE): Remove define.
7421 (fetch_vfp_regs, store_vfp_regs)
7422 (arm_linux_nat_target::read_description): Use ARM_VFP3_REGS_SIZE.
7423 * arm-tdep.c (arm_register_g_packet_guesses): Use new defines.
7424
7425 2019-07-04 Alan Hayward <alan.hayward@arm.com>
7426
7427 * arch/arm-get-next-pcs.c (thumb_get_next_pcs_raw): Use ARM_
7428 defines.
7429 * arch/arm-linux.c (arm_linux_sigreturn_next_pc_offset): Likewise.
7430 * arch/arm.h (INT_REGISTER_SIZE) Rename from...
7431 (ARM_INT_REGISTER_SIZE): ...to this.
7432 (ARM_FP_REGISTER_SIZE) (ARM_VFP_REGISTER_SIZE): Add define.
7433 * arm-linux-tdep.c (ARM_LINUX_JB_ELEMENT_SIZE)
7434 (ARM_LINUX_SIZEOF_GREGSET, arm_linux_supply_gregset)
7435 (arm_linux_collect_gregset, supply_nwfpe_register)
7436 (collect_nwfpe_register, arm_linux_collect_nwfpe): Use ARM_
7437 defines.
7438 * arm-linux-tdep.h (ARM_LINUX_SIZEOF_NWFPE, NWFPE_FPSR_OFFSET)
7439 (NWFPE_FPCR_OFFSET, NWFPE_TAGS_OFFSET): Likewise
7440 * arm-nbsd-tdep.c (ARM_NBSD_JB_ELEMENT_SIZE): Likewise.
7441 * arm-tdep.c (arm_push_dummy_call, arm_extract_return_value)
7442 (arm_return_in_memory, arm_store_return_value)
7443 (arm_get_longjmp_target, arm_register_g_packet_guesses)
7444 (arm_record_ld_st_multiple): Likewise.
7445 * arm-tdep.h (FP_REGISTER_SIZE, VFP_REGISTER_SIZE): Remove.
7446 * arm-wince-tdep.c (ARM_WINCE_JB_ELEMENT_SIZE): Use ARM_ defines.
7447
7448 2019-07-04 Alan Hayward <alan.hayward@arm.com>
7449
7450 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Use
7451 AARCH64_DISPLACED_MODIFIED_INSNS.
7452 * aarch64-tdep.c (struct aarch64_displaced_step_data)
7453 (aarch64_displaced_step_copy_insn): Likewise.
7454 * aarch64-tdep.h (DISPLACED_MODIFIED_INSNS): Rename from..
7455 (AARCH64_DISPLACED_MODIFIED_INSNS): ...to this.
7456 * arm-linux-tdep.c (arm_linux_cleanup_svc): Use
7457 ARM_DISPLACED_MODIFIED_INSNS.
7458 * arm-tdep.c (arm_gdbarch_init): Likewise.
7459 * arm-tdep.h (DISPLACED_MODIFIED_INSNS): Rename from..
7460 (ARM_DISPLACED_MODIFIED_INSNS): ...to this.
7461 (struct arm_displaced_step_closure): Use
7462 ARM_DISPLACED_MODIFIED_INSNS.
7463
7464 2019-07-04 Alan Hayward <alan.hayward@arm.com>
7465
7466 * features/Makefile: Remove unused xml files.
7467 * features/aarch64.xml: Remove.
7468 * features/i386/amd64-avx-avx512-linux.xml: Remove.
7469 * features/i386/amd64-avx-avx512.xml: Remove.
7470 * features/i386/amd64-avx-linux.xml: Remove.
7471 * features/i386/amd64-avx-mpx-avx512-pku-linux.xml: Remove.
7472 * features/i386/amd64-avx-mpx-avx512-pku.xml: Remove.
7473 * features/i386/amd64-avx-mpx-linux.xml: Remove.
7474 * features/i386/amd64-avx-mpx.xml: Remove.
7475 * features/i386/amd64-avx.xml: Remove.
7476 * features/i386/amd64-linux.xml: Remove.
7477 * features/i386/amd64-mpx-linux.xml: Remove.
7478 * features/i386/amd64-mpx.xml: Remove.
7479 * features/i386/amd64.xml: Remove.
7480 * features/i386/i386-avx-avx512-linux.xml: Remove.
7481 * features/i386/i386-avx-avx512.xml: Remove.
7482 * features/i386/i386-avx-linux.xml: Remove.
7483 * features/i386/i386-avx-mpx-avx512-pku-linux.xml: Remove.
7484 * features/i386/i386-avx-mpx-avx512-pku.xml: Remove.
7485 * features/i386/i386-avx-mpx-linux.xml: Remove.
7486 * features/i386/i386-avx-mpx.xml: Remove.
7487 * features/i386/i386-avx.xml: Remove.
7488 * features/i386/i386-linux.xml: Remove.
7489 * features/i386/i386-mmx-linux.xml: Remove.
7490 * features/i386/i386-mmx.xml: Remove.
7491 * features/i386/i386-mpx-linux.xml: Remove.
7492 * features/i386/i386-mpx.xml: Remove.
7493 * features/i386/i386.xml: Remove.
7494 * features/i386/x32-avx-avx512-linux.xml: Remove.
7495 * features/i386/x32-avx-linux.xml: Remove.
7496 * features/i386/x32-linux.xml: Remove.
7497
7498 2019-07-04 Alan Hayward <alan.hayward@arm.com>
7499
7500 * regformats/aarch64.dat: Remove.
7501 * regformats/i386/amd64-avx-avx512-linux.dat: Remove.
7502 * regformats/i386/amd64-avx-linux.dat: Remove.
7503 * regformats/i386/amd64-avx-mpx-avx512-pku-linux.dat: Remove.
7504 * regformats/i386/amd64-avx-mpx-linux.dat: Remove.
7505 * regformats/i386/amd64-linux.dat: Remove.
7506 * regformats/i386/amd64-mpx-linux.dat: Remove.
7507 * regformats/i386/amd64.dat: Remove.
7508 * regformats/i386/i386-avx-avx512-linux.dat: Remove.
7509 * regformats/i386/i386-avx-linux.dat: Remove.
7510 * regformats/i386/i386-avx-mpx-avx512-pku-linux.dat: Remove.
7511 * regformats/i386/i386-avx-mpx-linux.dat: Remove.
7512 * regformats/i386/i386-linux.dat: Remove.
7513 * regformats/i386/i386-mmx-linux.dat: Remove.
7514 * regformats/i386/i386-mpx-linux.dat: Remove.
7515 * regformats/i386/i386.dat: Remove.
7516 * regformats/i386/x32-avx-avx512-linux.dat: Remove.
7517 * regformats/i386/x32-avx-linux.dat: Remove.
7518 * regformats/i386/x32-linux.dat: Remove.
7519
7520 2019-07-04 Alan Hayward <alan.hayward@arm.com>
7521
7522 * aarch64-tdep.c: Remove xml self tests.
7523 * amd64-linux-tdep.c: Likewise.
7524 * amd64-tdep.c: Likewise.
7525 * i386-linux-tdep.c: Likewise.
7526 * i386-tdep.c: Likewise.
7527
7528 2019-07-03 Pedro Alves <palves@redhat.com>
7529
7530 PR cli/24732
7531 * cli/cli-cmds.c (struct pipe_cmd_opts): New.
7532 (pipe_cmd_option_defs): New.
7533 (make_pipe_cmd_options_def_group): New.
7534 (pipe_command): Use gdb::option::process_options.
7535 (pipe_command_completer): New function.
7536 (_initialize_cli_cmds): Install completer for "pipe" command.
7537
7538 2019-07-03 Pedro Alves <palves@redhat.com>
7539
7540 * cli/cli-option.c (union option_value) <string>: New field.
7541 (struct option_def_and_value): Add ctor, move ctor, dtor and
7542 use DISABLE_COPY_AND_ASSIGN.
7543 (option_def_and_value::clear_value): New.
7544 (parse_option, save_option_value_in_ctx, get_val_type_str)
7545 (add_setshow_cmds_for_options): Handle var_string.
7546 * cli-option.h (union option_def::var_address) <string>: New
7547 field.
7548 (struct string_option_def): New.
7549 * maint-test-options.c (struct test_options_opts): Add default
7550 ctor and use DISABLE_COPY_AND_ASSIGN.
7551 <string_opt>: New field.
7552 (test_options_opts::~test_options_opts): New.
7553 (test_options_opts::dump): Also dump "-string".
7554 (test_options_option_defs): Install "string.
7555
7556 2019-07-03 Pedro Alves <palves@redhat.com>
7557
7558 * cli/cli-option.c (parse_option) <var_enum>: Don't return an
7559 option_value with a null enumeration.
7560 (complete_options): Save the option values in the context.
7561 (save_option_value_in_ctx): New, factored out from ...
7562 (process_options): ... here.
7563 * cli/cli-utils.c (get_ulongest): Don't advance PP until the end
7564 of the function.
7565 * maint-test-options.c (test_options_opts::dump): New, factored
7566 out from ...
7567 (maintenance_test_options_command_mode): ... here.
7568 (maintenance_test_options_command_completion_result): Delete.
7569 (maintenance_test_options_command_completion_text): Update
7570 comment.
7571 (maintenance_show_test_options_completion_result): Change
7572 prototype. Just print
7573 maintenance_test_options_command_completion_text.
7574 (save_completion_result): New.
7575 (maintenance_test_options_completer_mode): Pass options context to
7576 complete_options, and then save a dump.
7577 (_initialize_maint_test_options): Use add_cmd to install "maint
7578 show test-options-completion-result".
7579
7580 2019-07-03 Pedro Alves <palves@redhat.com>
7581
7582 * NEWS (New commands): Mention "with" and "maint with".
7583 * cli/cli-cmds.c (with_command_1, with_command_completer_1)
7584 (with_command, with_command_completer): New.
7585 (pipe_command): Adjust to new repeat_previous
7586 interface.
7587 (_initialize_cli_cmds): Install the "with" command and its "w"
7588 alias.
7589 * cli/cli-cmds.h (with_command_1, with_command_completer_1): New
7590 declarations.
7591 * cli/cli-setshow.c (parse_cli_var_uinteger)
7592 (parse_cli_var_zuinteger_unlimited, do_set_command): Handle empty
7593 argument strings for all var_types.
7594 (get_setshow_command_value_string): New, factored out from ...
7595 (do_show_command): ... this.
7596 * cli/cli-setshow.h: Include <string>.
7597 (get_setshow_command_value_string): Declare.
7598 * command.h (repeat_previous): Now returns const char *. Adjust
7599 comment.
7600 * maint.c: Include "cli/cli-cmds.h".
7601 (maintenance_with_cmd, maintenance_with_cmd_completer): New.
7602 (_initialize_maint_cmds): Register the "maintenance with" command.
7603 * top.c (repeat_previous): Move bits from pipe_command here:
7604 Return the saved command line, if any; error out if there's no
7605 command to relaunch.
7606
7607 2019-07-03 Pedro Alves <palves@redhat.com>
7608
7609 * NEWS (New commands): Mention "maint set/show test-settings"
7610 instead of "maint test-settings".
7611 * maint-test-settings.c (maintenance_test_settings_list): Delete.
7612 (maintenance_test_settings_set_list): Rename to ...
7613 (maintenance_set_test_settings_list): ... this.
7614 (maintenance_test_settings_show_list): Rename to ...
7615 (maintenance_show_test_settings_list): ... this.
7616 (maintenance_test_settings_cmd): Delete.
7617 (maintenance_test_settings_set_cmd): ...
7618 (maintenance_set_test_settings_cmd): ... this.
7619 (maintenance_test_settings_show_cmd): ...
7620 (maintenance_show_test_settings_cmd): ... this.
7621 (maintenance_test_settings_show_value_cmd):
7622 (maintenance_show_test_settings_value_cmd): ... this.
7623 (_initialize_maint_test_settings): No longer install the "maint
7624 test-settings" prefix command. Rename "maint test-settings set"
7625 to "maint set test-settings", and "maint test-settings show" to
7626 "maint show test-settings". Adjust all subcommands.
7627
7628 2019-07-03 Pedro Alves <palves@redhat.com>
7629
7630 * maint-test-settings.c: Fix file's intro comment. Replace all
7631 references to "test-options" with references to "test-settings",
7632 in comments.
7633
7634 2019-07-03 Pedro Alves <palves@redhat.com>
7635
7636 * maint-test-settings.c (maintenance_test_settings_xxx)
7637 (maintenance_test_settings_yyy, maintenance_test_settings_zzz):
7638 New.
7639 (maintenance_test_settings_enums): Use them.
7640 (maintenance_test_settings_enum): Default to
7641 maintenance_test_settings_xxx.
7642 (_initialize_maint_test_settings): Initialize
7643 MAINTENANCE_TEST_SETTINGS_FILENAME.
7644
7645 2019-07-02 Simon Marchi <simon.marchi@polymtl.ca>
7646
7647 * breakpoint.h (remove_breakpoints_inf): Change return type to
7648 void, move function documentation here.
7649 * breakpoint.c (remove_breakpoints_inf): Change return type to
7650 void, move function documentation to header.
7651
7652 2019-07-02 Pedro Alves <palves@redhat.com>
7653
7654 * NEWS (Completion improvements): Mention "info threads".
7655 * thread.c (struct info_threads_opts, info_threads_option_defs)
7656 (make_info_threads_options_def_group): New.
7657 (info_threads_command): Use gdb::option::process_options.
7658 (info_threads_command_completer): New.
7659 (_initialize_thread): Use gdb::option::build_help to build the
7660 help text for "info threads".
7661
7662 2019-07-02 Simon Marchi <simon.marchi@polymtl.ca>
7663
7664 * defs.h (generic_load): Move from here...
7665 * symfile.h (generic_load): ... to here. Rename name parameter
7666 to args.
7667 * symfile.c (generic_load): Add comment.
7668
7669 2019-07-01 Tom Tromey <tromey@adacore.com>
7670
7671 * dwarf2read.c
7672 (dw2_debug_names_iterator::find_vec_in_debug_names): Hoist
7673 declaration of without_params. Fix formatting.
7674
7675 2019-07-01 Tom Tromey <tromey@adacore.com>
7676
7677 * ada-exp.y (find_primitive_type): Update.
7678 * ada-lang.h (ada_lookup_symbol): Update.
7679 * ada-lang.c (ada_lookup_symbol): Remove "is_a_field_of_this"
7680 parameter.
7681 (ada_lookup_encoded_symbol, ada_lookup_symbol_nonlocal): Update.
7682
7683 2019-06-28 Sergio Durigan Junior <sergiodj@redhat.com>
7684
7685 PR breakpoints/24541
7686 * gdbarch.c: Regenerate.
7687 * gdbarch.h: Regenerate.
7688 * gdbarch.sh: Add 'stap_adjust_register'.
7689 * i386-tdep.c: Include '<unordered_set>'.
7690 (i386_stap_adjust_register): New function.
7691 (i386_elf_init_abi): Register 'i386_stap_adjust_register'.
7692 * stap-probe.c (stap_parse_register_operand): Call
7693 'gdbarch_stap_adjust_register'.
7694
7695 2019-06-28 Sergio Durigan Junior <sergiodj@redhat.com>
7696
7697 PR python/24742
7698 https://bugzilla.redhat.com/show_bug.cgi?id=1723564
7699 * python/python.c (do_start_initialization): Use 'xmalloc'
7700 instead of 'PyMem_Malloc'.
7701
7702 2019-06-28 Tom Tromey <tromey@adacore.com>
7703
7704 * dwarf2read.c (partial_die_info::read): Prefer the linkage name
7705 for Ada.
7706
7707 2019-06-27 Tom Tromey <tromey@adacore.com>
7708
7709 * arm-tdep.c (arm_objfile_data_key): Move lower. Change type to
7710 objfile_key.
7711 (arm_find_mapping_symbol, arm_record_special_symbol)
7712 (_initialize_arm_tdep): Update.
7713 (arm_objfile_data_free): Remove.
7714
7715 2019-06-27 Tom Tromey <tromey@adacore.com>
7716
7717 * cp-valprint.c (cp_print_value_fields): Pass opts, not options,
7718 to cp_print_static_field.
7719
7720 2019-06-26 Tom Tromey <tromey@adacore.com>
7721
7722 * minsyms.c (lookup_minimal_symbol_solib_trampoline): Remove.
7723 * minsyms.h (lookup_minimal_symbol_solib_trampoline): Don't
7724 declare.
7725
7726 2019-06-26 Alan Hayward <alan.hayward@arm.com>
7727
7728 * features/aarch64-core.c (create_feature_aarch64_core):
7729 Regenerate.
7730 * features/aarch64-core.xml: Add cpsr flags.
7731
7732 2019-06-26 Alan Hayward <alan.hayward@arm.com>
7733
7734 * arm-tdep.c (arm_gnu_triplet_regexp): New function.
7735 (arm_gdbarch_init): Add arm_gnu_triplet_regexp.
7736
7737 2019-06-25 Simon Marchi <simon.marchi@polymtl.ca>
7738
7739 * arm-tdep.c (struct arm_per_objfile) <section_maps_sorted>: New
7740 field.
7741 (arm_find_mapping_symbol): Sort mapping symbol vectors on first
7742 use.
7743 (arm_record_special_symbol): Don't insert new symbol in sorted
7744 position, push it at the end.
7745
7746 2019-06-25 Simon Marchi <simon.marchi@polymtl.ca>
7747
7748 * arm-tdep.c (struct arm_mapping_symbol) (operator <): New.
7749 (arm_mapping_symbol_s): Remove.
7750 (DEF_VEC_O(arm_mapping_symbol_s)): Remove.
7751 (arm_mapping_symbol_vec): New typedef.
7752 (struct arm_per_objfile): Add constructor.
7753 <section_maps>: Change type to
7754 std::unique_ptr<arm_mapping_symbol_vec[]>.
7755 (arm_compare_mapping_symbols): Remove.
7756 (arm_find_mapping_symbol): Adjust to section_maps type change.
7757 (arm_objfile_data_free): Call delete on arm_per_objfile.
7758 (arm_record_special_symbol): Adjust to section_maps type change.
7759 Allocate arm_per_objfile with new.
7760
7761 2019-06-25 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7762
7763 * cli/cli-cmds.c (alias_command): Compare the alias prefix
7764 with the command prefix.
7765
7766 2019-06-25 Tom Tromey <tom@tromey.com>
7767
7768 * tui/tui-wingeneral.c (tui_delete_win): Remove "return".
7769 * tui/tui-data.c (~tui_gen_win_info): Remove "if".
7770
7771 2019-06-25 Tom Tromey <tom@tromey.com>
7772
7773 * tui/tui-layout.c (init_and_make_win): Assert on unrecognized
7774 type.
7775 * tui/tui-data.h (struct tui_gen_win_info): Make constructor
7776 protected.
7777
7778 2019-06-25 Tom Tromey <tom@tromey.com>
7779
7780 * tui/tui-winsource.c
7781 (tui_source_window_base::set_is_exec_point_at): Add check against
7782 LOA_ADDRESS.
7783
7784 2019-06-25 Tom Tromey <tom@tromey.com>
7785
7786 * tui/tui-source.c (tui_set_source_content): Don't check before
7787 xfree.
7788 * tui/tui-disasm.c (tui_disassemble): Don't check before xfree.
7789
7790 2019-06-25 Tom Tromey <tom@tromey.com>
7791
7792 * tui/tui-winsource.h (tui_update_source_window_as_is)
7793 (tui_alloc_source_buffer, tui_line_is_displayed)
7794 (tui_addr_is_displayed): Change type of win_info.
7795 * tui/tui-winsource.c (tui_update_source_window_as_is)
7796 (tui_clear_source_content, tui_show_source_line)
7797 (tui_show_source_content, tui_source_window_base::refill)
7798 (tui_source_window_base::set_is_exec_point_at)
7799 (tui_source_window_base::set_is_exec_point_at)
7800 (tui_update_breakpoint_info, tui_set_exec_info_content): Update.
7801 (tui_alloc_source_buffer, tui_line_is_displayed)
7802 (tui_addr_is_displayed): Change type of win_info. Update.
7803 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
7804 (tui_source_window_base::do_make_visible_with_new_height):
7805 Update.
7806 * tui/tui-source.c (tui_set_source_content)
7807 (tui_set_source_content_nil)
7808 (tui_source_window::do_scroll_vertical): Update.
7809 * tui/tui-layout.c (show_layout): Update.
7810 * tui/tui-disasm.c (tui_set_disassem_content)
7811 (tui_disasm_window::do_scroll_vertical): Update.
7812 * tui/tui-data.h (tui_win_content): Remove.
7813 (struct tui_gen_win_info) <content, content_size>: Remove.
7814 (struct tui_source_element): Add initializers and destructor.
7815 (union tui_which_element, struct tui_win_element): Remove.
7816 (struct tui_source_window_base) <content>: New field.
7817 (struct tui_data_window): Remove destructor.
7818 (tui_alloc_content, tui_free_win_content)
7819 (tui_free_all_source_wins_content): Don't declare.
7820 * tui/tui-data.c (tui_initialize_static_data): Update.
7821 (init_content_element, tui_alloc_content): Remove.
7822 (~tui_gen_win_info): Update.
7823 (~tui_data_window, tui_free_all_source_wins_content)
7824 (tui_free_win_content, free_content, free_content_elements):
7825 Remove.
7826
7827 2019-06-25 Tom Tromey <tom@tromey.com>
7828
7829 * tui/tui-winsource.h (tui_clear_source_content)
7830 (tui_erase_source_content, tui_show_source_content): Change type
7831 of win_info.
7832 * tui/tui-winsource.c (tui_clear_source_content)
7833 (tui_erase_source_content, tui_show_source_content): Change type
7834 of win_info.
7835 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
7836 * tui/tui-source.h (tui_set_source_content_nil): Change type of
7837 win_info.
7838 * tui/tui-source.c (tui_set_source_content_nil): Change type of
7839 win_info.
7840 * tui/tui-layout.c (show_source_or_disasm_and_command): Update.
7841
7842 2019-06-25 Tom Tromey <tom@tromey.com>
7843
7844 * tui/tui-winsource.c (tui_clear_source_content)
7845 (tui_source_window_base::set_is_exec_point_at): Update.
7846 * tui/tui-source.c (tui_set_source_content_nil): Update.
7847 * tui/tui-data.h (struct tui_source_element) <is_exec_point>: Now
7848 a bool.
7849 * tui/tui-data.c (init_content_element): Update.
7850
7851 2019-06-25 Tom Tromey <tom@tromey.com>
7852
7853 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Update.
7854 * tui/tui-win.c (make_invisible_and_set_new_height): Update.
7855 * tui/tui-layout.c (init_and_make_win): Update.
7856 * tui/tui.h (enum tui_win_type): Update.
7857 * tui/tui-data.h (tui_win_is_auxiliary): Rename from
7858 tui_win_is_auxillary.
7859 * tui/tui-data.c (tui_win_is_auxiliary): Rename from
7860 tui_win_is_auxillary.
7861
7862 2019-06-25 Tom Tromey <tom@tromey.com>
7863
7864 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Update.
7865 * tui/tui-windata.c (tui_data_window::first_data_item_displayed)
7866 (tui_delete_data_content_windows, tui_display_all_data)
7867 (tui_data_window::do_scroll_vertical, tui_display_data_from):
7868 Update.
7869 * tui/tui-win.c (tui_data_window::set_new_height): Simplify.
7870 * tui/tui-regs.c (tui_last_regs_line_no)
7871 (tui_line_from_reg_element_no, tui_first_reg_element_no_inline)
7872 (tui_show_registers): Update.
7873 (tui_show_register_group): Return void. Update.
7874 (tui_display_registers_from, tui_display_reg_element_at_line)
7875 (tui_display_registers_from_line, tui_check_register_values):
7876 Update.
7877 * tui/tui-data.h (union tui_which_element) <data_window>: Remove
7878 member.
7879 (struct tui_data_window) <regs_content>: Now a std::vector.
7880 <regs_content_count>: Remove.
7881 (tui_add_content_elements, tui_free_data_content): Don't declare.
7882 * tui/tui-data.c (tui_data_window::clear_detail): Update.
7883 (init_content_element): Remove DATA_WIN case. Add assert.
7884 (tui_add_content_elements): Remove.
7885 (tui_data_window): Update.
7886 (tui_free_data_content): Remove.
7887 (free_content_elements): Remove DATA_WIN case.
7888
7889 2019-06-25 Tom Tromey <tom@tromey.com>
7890
7891 * tui/tui-data.c (tui_data_item_window): Update.
7892 * tui/tui-windata.h (tui_check_data_values): Don't declare.
7893 * tui/tui-windata.c (tui_display_all_data)
7894 (tui_display_data_from_line): Update.
7895 (tui_check_data_values): Remove.
7896 * tui/tui-regs.c (tui_show_register_group)
7897 (tui_display_reg_element_at_line): Update.
7898 * tui/tui-hooks.c (tui_register_changed)
7899 (tui_refresh_frame_and_register_information): Call
7900 tui_check_register_values.
7901 * tui/tui-data.h (struct tui_data_window) <data_content,
7902 data_content_count, data_type>: Remove.
7903 (enum tui_data_type): Remove.
7904
7905 * tui/tui-data.c (tui_data_window::clear_detail)
7906 (~tui_data_window): Update.
7907
7908 2019-06-25 Tom Tromey <tom@tromey.com>
7909
7910 * tui/tui-windata.h (tui_first_data_item_displayed): Don't
7911 declare.
7912 * tui/tui-windata.c (tui_data_window::first_data_item_displayed):
7913 Rename from tui_first_data_item_displayed. Update.
7914 (tui_data_window::refresh_all)
7915 (tui_data_window::do_scroll_vertical): Update.
7916 * tui/tui-data.h (struct tui_data_window)
7917 <first_data_item_displayed>: Declare new method.
7918
7919 2019-06-25 Tom Tromey <tom@tromey.com>
7920
7921 * tui/tui-data.h (tui_init_generic_part): Don't declare.
7922 * tui/tui-data.c (tui_init_generic_part): Remove, moving
7923 contents...
7924 (tui_initialize_static_data): ...here.
7925
7926 2019-06-25 Tom Tromey <tom@tromey.com>
7927
7928 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
7929 (tui_display_registers_from, tui_check_register_values): Update.
7930 (tui_display_register): Remove win_info parameter; update.
7931 (tui_get_register): Change type of parameters.
7932 * tui/tui-data.h (struct tui_data_element): Remove.
7933 (union tui_which_element) <data>: Remove.
7934 <data_window>: Change type.
7935 (struct tui_data_item_window): New.
7936 * tui/tui-data.c (init_content_element): Remove DATA_ITEM_WIN
7937 case. Add assert.
7938 (~tui_data_item_window): New destructor.
7939 (free_content_elements): Remove DATA_ITEM_WIN case.
7940
7941 2019-06-25 Tom Tromey <tom@tromey.com>
7942
7943 * tui/tui.h (enum tui_win_type) <MAX_WINDOWS, UNDEFINED_WIN>:
7944 Remove.
7945
7946 2019-06-25 Tom Tromey <tom@tromey.com>
7947
7948 * tui/tui-data.h (struct tui_command_element): Remove.
7949 (union tui_which_element) <command>: Remove.
7950 * tui/tui-data.c (init_content_element): Remove CMD_WIN case. Add
7951 assert.
7952 (free_content_elements): Remove CMD_WIN case.
7953
7954 2019-06-25 Tom Tromey <tom@tromey.com>
7955
7956 * tui/tui-layout.c (tui_set_layout): Update.
7957 * tui/tui-data.h (struct tui_layout_def) <split>: Remove.
7958 * tui/tui-data.c (layout_def): Update.
7959
7960 2019-06-25 Tom Tromey <tom@tromey.com>
7961
7962 * tui/tui-wingeneral.c (tui_refresh_all): Update.
7963 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
7964 (tui_source_window_base::set_new_height): Update.
7965 * tui/tui-stack.c (tui_make_status_line): Change parameter type.
7966 Update.
7967 (tui_set_locator_fullname, tui_set_locator_info)
7968 (tui_show_frame_info): Update.
7969 * tui/tui-source.c (tui_set_source_content)
7970 (tui_source_is_displayed): Update.
7971 * tui/tui-layout.c (show_source_disasm_command, show_data)
7972 (show_source_or_disasm_and_command): Update.
7973 * tui/tui-disasm.c (tui_set_disassem_content)
7974 (tui_get_begin_asm_address): Update.
7975 * tui/tui-data.h (struct tui_locator_element): Remove.
7976 (union tui_which_element) <locator>: Remove.
7977 (struct tui_locator_window): New.
7978 (tui_locator_win_info_ptr): Change return type.
7979 * tui/tui-data.c (_locator): Change type.
7980 (tui_locator_win_info_ptr): Change return type.
7981 (init_content_element): Remove LOCATOR_WIN case. Add assert.
7982 (tui_alloc_content): Add assert.
7983
7984 2019-06-25 Tom Tromey <tom@tromey.com>
7985
7986 * tui/tui-winsource.c
7987 (tui_exec_info_window::maybe_allocate_content): New method.
7988 (tui_set_exec_info_content, tui_show_exec_info_content): Update.
7989 * tui/tui-layout.c (init_and_make_win): Add EXEC_INFO_WIN case.
7990 (make_source_or_disasm_window): Add cast.
7991 * tui/tui-data.h (union tui_which_element) <simple_string>:
7992 Remove.
7993 (struct tui_source_info): New.
7994 (struct tui_source_window_base) <execution_info>: Change type.
7995 * tui/tui-data.c (init_content_element): Remove EXEC_INFO_WIN
7996 case, and add assert.
7997 (tui_alloc_content): Add assert.
7998
7999 2019-06-25 Tom Tromey <tom@tromey.com>
8000
8001 * tui/tui-data.h (tui_alloc_win_info): Don't declare.
8002 * tui/tui-layout.c (init_and_make_win): Use "new" directly.
8003 * tui/tui-data.c (tui_alloc_win_info): Remove.
8004
8005 2019-06-25 Tom Tromey <tom@tromey.com>
8006
8007 * tui/tui-win.c (tui_set_win_focus_to): Don't check window type.
8008 * tui/tui-wingeneral.c (tui_unhighlight_win): Check
8009 can_highlight.
8010
8011 2019-06-25 Tom Tromey <tom@tromey.com>
8012
8013 * tui/tui-win.c (tui_source_window_base::update_tab_width): Call
8014 make_visible_with_new_height method.
8015 (tui_win_info::make_visible_with_new_height): New method.
8016 (tui_source_window_base::do_make_visible_with_new_height)
8017 (tui_data_window::do_make_visible_with_new_height)
8018 (tui_cmd_window::do_make_visible_with_new_height): New methods.
8019 (make_visible_with_new_height): Remove.
8020 (tui_resize_all, tui_adjust_win_heights): Use
8021 make_visible_with_new_height method.
8022 * tui/tui-data.h (struct tui_win_info)
8023 <do_make_visible_with_new_height, make_visible_with_new_height>:
8024 New methods.
8025 (struct tui_source_window_base, struct tui_data_window)
8026 (struct tui_cmd_window) <do_make_visible_with_new_height>: New
8027 methods.
8028
8029 2019-06-25 Tom Tromey <tom@tromey.com>
8030
8031 * tui/tui-win.c (tui_source_window_base::update_tab_width): New
8032 method.
8033 (update_tab_width): Call update_tab_width method.
8034 * tui/tui-data.h (struct tui_win_info)
8035 (struct tui_source_window_base) <update_tab_width>: New methods.
8036
8037 2019-06-25 Tom Tromey <tom@tromey.com>
8038
8039 * tui/tui-wingeneral.h (tui_make_window): Change type of "box_it"
8040 parameter.
8041 * tui/tui-wingeneral.c (tui_make_window): Change type of "box_it"
8042 parameter.
8043 (tui_gen_win_info::make_visible): Update.
8044 * tui/tui-layout.c (init_and_make_win): Change type of "box_it"
8045 parameter.
8046 * tui/tui-data.h (enum tui_box): New enum.
8047 (BOX_WINDOW, DONT_BOX_WINDOW): Remove defines.
8048
8049 2019-06-25 Tom Tromey <tom@tromey.com>
8050
8051 * tui/tui-layout.c (make_source_or_disasm_window): Always use
8052 init_and_make_win for EXEC_INFO_WIN.
8053 * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>: No
8054 longer inline.
8055 (struct tui_win_info) <~tui_win_info>: Inline.
8056 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
8057 Don't declare.
8058 * tui/tui-data.c (source_win, disasm_win): Remove globals.
8059 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
8060 Remove.
8061 (tui_initialize_static_data): Update.
8062 (~tui_gen_win_info): Handle more cleanup here.
8063 (~tui_source_window_base): Delete "execution_info".
8064 (~tui_win_info): Move code to ~tui_gen_win_info; remove.
8065
8066 2019-06-25 Tom Tromey <tom@tromey.com>
8067
8068 * tui/tui-layout.c (make_command_window): Don't set
8069 can_highlight.
8070 (show_source_disasm_command): Call the reset method.
8071 (show_data): Don't set can_highlight. Call the reset method.
8072 (tui_gen_win_info::reset): Rename from init_gen_win_info
8073 (init_and_make_win): Simplify. Return tui_gen_win_info.
8074 (show_source_or_disasm_and_command): Call the reset method.
8075 * tui/tui-data.h (struct tui_gen_win_info) <reset>: New method.
8076 (struct tui_cmd_window): Set can_highlight.
8077
8078 2019-06-25 Tom Tromey <tom@tromey.com>
8079
8080 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Rename
8081 from make_visible.
8082 (tui_make_visible, tui_make_invisible): Rewrite.
8083 (tui_win_info::make_visible): Remove.
8084 (tui_source_window_base::make_visible): Update.
8085 * tui/tui-data.h (struct tui_gen_win_info) <make_visible>: New
8086 method. Moved from...
8087 (struct tui_win_info) <make_visible>: ...here.
8088
8089 2019-06-25 Tom Tromey <tom@tromey.com>
8090
8091 * tui/tui-winsource.c
8092 (tui_source_window_base::do_scroll_horizontal): Remove direction
8093 parameter.
8094 * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Remove
8095 direction parameter.
8096 * tui/tui-win.c (tui_win_info::forward_scroll)
8097 (tui_win_info::backward_scroll, tui_win_info::left_scroll)
8098 (tui_win_info::right_scroll): Update.
8099 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Remove
8100 direction parameter.
8101 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Remove
8102 direction parameter.
8103 * tui/tui-data.h (enum tui_scroll_direction): Remove.
8104 (struct tui_win_info) <do_scroll_vertical, do_scroll_horizontal>:
8105 Remove direction parameter.
8106 (struct tui_source_window_base, struct tui_source_window)
8107 (struct tui_disasm_window, struct tui_data_window)
8108 (struct tui_cmd_window): Update.
8109
8110 2019-06-25 Tom Tromey <tom@tromey.com>
8111
8112 * tui/tui-winsource.h (tui_set_exec_info_content)
8113 (tui_show_exec_info_content, tui_erase_exec_info_content)
8114 (tui_clear_exec_info_content, tui_update_exec_info): Change
8115 argument to tui_source_window_base.
8116 * tui/tui-winsource.c (tui_set_exec_info_content)
8117 (tui_show_exec_info_content, tui_erase_exec_info_content)
8118 (tui_clear_exec_info_content, tui_update_exec_info): Change
8119 argument to tui_source_window_base.
8120
8121 2019-06-25 Tom Tromey <tom@tromey.com>
8122
8123 * tui/tui-winsource.h (tui_set_exec_info_content): Return void.
8124 * tui/tui-winsource.c (tui_set_exec_info_content): Return void.
8125
8126 2019-06-25 Tom Tromey <tom@tromey.com>
8127
8128 * tui/tui-winsource.c (tui_set_exec_info_content): Remove NULL
8129 check.
8130
8131 2019-06-25 Tom Tromey <tom@tromey.com>
8132
8133 * tui/tui-winsource.h (tui_alloc_source_buffer): Change return
8134 type to void.
8135 * tui/tui-winsource.c (tui_alloc_source_buffer): Change return
8136 type to void.
8137 * tui/tui-source.c (tui_set_source_content): Update.
8138 * tui/tui-disasm.c (tui_set_disassem_content): Update.
8139
8140 2019-06-25 Tom Tromey <tom@tromey.com>
8141
8142 * tui/tui-win.c (window_name_completer, tui_set_focus)
8143 (tui_all_windows_info): Use name method.
8144 * tui/tui-data.h (struct tui_gen_win_info)
8145 (struct tui_source_window, struct tui_disasm_window)
8146 (struct tui_data_window, struct tui_cmd_window) <name>: New
8147 method.
8148 (tui_win_name): Don't declare.
8149 * tui/tui-data.c (tui_partial_win_by_name): Use name method.
8150 (tui_win_name): Remove.
8151
8152 2019-06-25 Tom Tromey <tom@tromey.com>
8153
8154 * tui/tui-winsource.h (tui_update_source_window)
8155 (tui_update_source_window_as_is): Change parameter type.
8156 * tui/tui-winsource.c (tui_update_source_window): Change win_info
8157 to be a tui_source_window_base.
8158 (tui_update_source_window_as_is): Likewise.
8159 * tui/tui-win.c (make_visible_with_new_height): Update.
8160
8161 2019-06-25 Tom Tromey <tom@tromey.com>
8162
8163 * tui/tui-winsource.c (tui_erase_source_content)
8164 (tui_show_source_content, tui_show_exec_info_content)
8165 (tui_erase_exec_info_content): Use refresh_window method.
8166 * tui/tui-wingeneral.h (tui_refresh_win): Don't declare.
8167 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Rename
8168 from tui_refresh_win.
8169 (tui_data_window::refresh_window): New method.
8170 (tui_win_info::refresh, tui_source_window_base::refresh)
8171 (tui_refresh_all): Use refresh_window method.
8172 * tui/tui-stack.c (tui_show_locator_content): Call refresh_window
8173 method.
8174 * tui/tui-regs.c (tui_display_register): Call refresh_window
8175 method.
8176 * tui/tui-layout.c (show_source_disasm_command)
8177 (show_source_or_disasm_and_command): Call refresh_window method.
8178 * tui/tui-data.h (struct tui_gen_win_info)
8179 (struct tui_data_window, struct tui_cmd_window) <refresh_window>:
8180 New method.
8181
8182 2019-06-25 Tom Tromey <tom@tromey.com>
8183
8184 * tui/tui.c (tui_rl_other_window, tui_enable)
8185 (tui_is_window_visible, tui_get_command_dimension): Update.
8186 * tui/tui-winsource.c (tui_update_source_window_as_is)
8187 (tui_clear_source_content, tui_erase_source_content)
8188 (tui_show_source_line, tui_source_window_base::refill)
8189 (tui_source_window_base::do_scroll_horizontal)
8190 (tui_source_window_base::set_is_exec_point_at)
8191 (tui_update_breakpoint_info, tui_set_exec_info_content)
8192 (tui_alloc_source_buffer, tui_line_is_displayed)
8193 (tui_addr_is_displayed): Update.
8194 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win)
8195 (tui_check_and_display_highlight_if_needed)
8196 (tui_win_info::make_visible, tui_win_info::refresh)
8197 (tui_refresh_all): Update.
8198 * tui/tui-windata.c (tui_first_data_item_displayed)
8199 (tui_delete_data_content_windows, tui_erase_data_content)
8200 (tui_display_all_data, tui_data_window::refresh_all)
8201 (tui_check_data_values): Update.
8202 * tui/tui-win.c (window_name_completer, tui_update_gdb_sizes)
8203 (tui_set_win_focus_to, tui_win_info::forward_scroll)
8204 (tui_win_info::backward_scroll, tui_refresh_all_win)
8205 (tui_resize_all, tui_set_focus, tui_all_windows_info)
8206 (update_tab_width, tui_set_win_height, tui_adjust_win_heights)
8207 (tui_source_window_base::set_new_height)
8208 (tui_data_window::set_new_height)
8209 (make_invisible_and_set_new_height)
8210 (make_visible_with_new_height, new_height_ok)
8211 (parse_scrolling_args): Update.
8212 * tui/tui-stack.c (tui_show_frame_info): Update.
8213 * tui/tui-source.c (tui_set_source_content)
8214 (tui_set_source_content_nil, tui_source_is_displayed)
8215 (tui_source_window::do_scroll_vertical): Update.
8216 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
8217 (tui_display_registers_from, tui_display_reg_element_at_line)
8218 (tui_check_register_values, tui_reg_command): Update.
8219 * tui/tui-layout.c (tui_default_win_height)
8220 (show_source_disasm_command, show_data, init_and_make_win)
8221 (show_source_or_disasm_and_command): Update.
8222 * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts)
8223 (tui_redisplay_readline, tui_mld_flush)
8224 (tui_mld_erase_entire_line, tui_mld_getc, tui_cont_sig)
8225 (tui_getc): Update.
8226 * tui/tui-disasm.c (tui_set_disassem_content)
8227 (tui_disasm_window::do_scroll_vertical): Update.
8228 * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>:
8229 Now virtual.
8230 (struct tui_win_info): Derive from tui_gen_win_info.
8231 <~tui_win_info>: Mark as override.
8232 <generic>: Remove member.
8233 * tui/tui-data.c (tui_cmd_window::clear_detail, tui_next_win)
8234 (tui_prev_win, tui_partial_win_by_name, tui_win_info)
8235 (~tui_data_window, ~tui_win_info)
8236 (tui_free_all_source_wins_content): Update.
8237 * tui/tui-command.c (tui_refresh_cmd_win): Update.
8238
8239 2019-06-25 Tom Tromey <tom@tromey.com>
8240
8241 * tui/tui-layout.c (init_and_make_win): Use new.
8242 * tui/tui-data.h (struct tui_gen_win_info): Add constructor,
8243 destructor, initializers.
8244 (tui_alloc_generic_win_info): Don't declare.
8245 * tui/tui-data.c (_locator): Add argument to constructor.
8246 (source_win, disasm_win): New globals.
8247 (exec_info): Remove.
8248 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
8249 Update.
8250 (tui_alloc_generic_win_info): Remove.
8251 (init_content_element): Use new.
8252 (tui_win_info::tui_win_info): Update.
8253 (free_content_elements) <case DATA_WIN>: Use delete.
8254
8255 2019-06-25 Tom Tromey <tom@tromey.com>
8256
8257 * tui/tui-wingeneral.c (tui_refresh_win): Update.
8258 * tui/tui-windata.c (tui_first_data_item_displayed)
8259 (tui_delete_data_content_windows): Update.
8260 * tui/tui-win.c (tui_data_window::set_new_height): Update.
8261 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
8262 (tui_display_registers_from, tui_check_register_values): Update.
8263 * tui/tui-data.h (union tui_which_element) <data_window>: Now a
8264 pointer.
8265 * tui/tui-data.c (init_content_element): Update. Allocate the new
8266 window.
8267 (tui_free_data_content): Update.
8268 (free_content_elements) <case DATA_WIN>: Free the window.
8269
8270 2019-06-25 Tom Tromey <tom@tromey.com>
8271
8272 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win):
8273 Update.
8274 * tui/tui-layout.c (make_command_window)
8275 (show_source_disasm_command, show_data, init_and_make_win)
8276 (show_source_or_disasm_and_command): Update.
8277 * tui/tui-data.h (struct tui_win_info) <set_highlight>: New
8278 method.
8279 <can_highight, is_highlighted>: Now bool.
8280 (tui_set_win_highlight): Don't declare.
8281 * tui/tui-data.c (tui_set_win_highlight): Remove.
8282
8283 2019-06-25 Tom Tromey <tom@tromey.com>
8284
8285 * tui/tui-wingeneral.c (make_visible): Remove check of window
8286 type.
8287
8288 2019-06-25 Tom Tromey <tom@tromey.com>
8289
8290 * tui/tui-win.c (tui_win_info::max_height)
8291 (tui_cmd_window::max_height): New methods.
8292 (new_height_ok): Call max_height.
8293 * tui/tui-data.h (struct tui_win_info, struct tui_cmd_window)
8294 <max_height>: New method.
8295
8296 2019-06-25 Tom Tromey <tom@tromey.com>
8297
8298 * tui/tui-win.c (tui_source_window_base::set_new_height)
8299 (tui_data_window::set_new_height): New methods.
8300 (make_invisible_and_set_new_height): Call set_new_height method.
8301 * tui/tui-data.h (struct tui_win_info)
8302 (struct tui_source_window_base, struct tui_data_window)
8303 <set_new_height>: New method.
8304
8305 2019-06-25 Tom Tromey <tom@tromey.com>
8306
8307 * tui/tui.c (tui_rl_other_window): Call the refresh_all method.
8308 * tui/tui-windata.c (tui_data_window::refresh_all): Rename from
8309 tui_refresh_data_win.
8310 * tui/tui-win.c (tui_source_window_base::refresh_all): New
8311 method.
8312 (tui_refresh_all_win): Call the refresh_all method.
8313 (tui_set_focus): Likewise.
8314 * tui/tui-data.h (struct tui_win_info) <refresh_all>: New method.
8315 (struct tui_source_window_base, struct tui_data_window) <refresh>:
8316 Likewise.
8317
8318 2019-06-25 Tom Tromey <tom@tromey.com>
8319
8320 * tui/tui-winsource.h (tui_refill_source_window)
8321 (tui_set_is_exec_point_at): Don't declare.
8322 * tui/tui-winsource.c (tui_update_source_windows_with_addr)
8323 (tui_source_window_base::refill): Rename from
8324 tui_refill_source_window.
8325 (tui_source_window_base::do_scroll_horizontal): Update.
8326 (tui_source_window_base::set_is_exec_point_at): Rename from
8327 tui_set_is_exec_point_at.
8328 (tui_update_all_breakpoint_info): Update.
8329 * tui/tui-stack.c (tui_show_frame_info): Update.
8330 * tui/tui-layout.c (show_data): Add cast.
8331 * tui/tui-hooks.c (tui_redisplay_source): Call refill method.
8332 * tui/tui-data.h (struct tui_source_window_base) <refill,
8333 set_is_exec_point_at>: New methods.
8334 (tui_source_windows, tui_add_to_source_windows): Update types.
8335 (tui_add_to_source_windows): Remove redundant declaration.
8336 * tui/tui-data.c (source_windows): Store tui_source_window_base.
8337 (tui_source_windows): Change return type.
8338 (tui_clear_source_windows_detail): Update.
8339 (tui_add_to_source_windows): Change type of parameter.
8340 (tui_free_all_source_wins_content): Update.
8341
8342 2019-06-25 Tom Tromey <tom@tromey.com>
8343
8344 * tui/tui-wingeneral.c (tui_win_info::refresh)
8345 (tui_source_window_base::refresh): New methods.
8346 (tui_refresh_all): Call the refresh method.
8347 * tui/tui-data.h (struct tui_win_info)
8348 (struct tui_source_window_base) <refresh>: New method.
8349
8350 2019-06-25 Tom Tromey <tom@tromey.com>
8351
8352 * tui/tui.h (tui_is_window_visible): Return bool.
8353 * tui/tui.c (tui_is_window_visible): Return bool.
8354 * tui/tui-wingeneral.c (tui_make_window, make_visible)
8355 (tui_make_visible, tui_make_invisible)
8356 (tui_win_info::make_visible)
8357 (tui_source_window_base::make_visible, make_all_visible)
8358 (tui_make_all_visible, tui_make_all_invisible): Update.
8359 * tui/tui-windata.c (tui_delete_data_content_windows): Update.
8360 * tui/tui-data.h (struct tui_gen_win_info) <is_visible>: Now
8361 bool.
8362 (struct tui_win_info, struct tui_source_window_base)
8363 (struct tui_cmd_window) <make_visible>: Change parameter to bool.
8364 * tui/tui-data.c (tui_init_generic_part): Update.
8365
8366 2019-06-25 Tom Tromey <tom@tromey.com>
8367
8368 * tui/tui-wingeneral.c (tui_win_info::make_visible)
8369 (tui_source_window_base::make_visible): New methods.
8370 (make_all_visible): Make method call.
8371 * tui/tui-data.h (struct tui_win_info) <make_visible>: New method.
8372 (struct tui_source_window_base, struct tui_cmd_window): Override
8373 make_visible.
8374 (tui_win_is_source_type): Don't declare.
8375 * tui/tui-data.c (tui_win_is_source_type): Remove.
8376
8377 2019-06-25 Tom Tromey <tom@tromey.com>
8378
8379 * tui/tui-layout.c (show_source_or_disasm_and_command): Remove
8380 NULL check.
8381
8382 2019-06-25 Tom Tromey <tom@tromey.com>
8383
8384 * tui/tui-data.h (struct tui_data_window, struct tui_cmd_window):
8385 Inline constructor. Add initializers for members.
8386 * tui/tui-data.c (tui_data_window, tui_cmd_window): Remove
8387 constructors; now inline in class.
8388
8389 2019-06-25 Tom Tromey <tom@tromey.com>
8390
8391 * tui/tui-regs.c (tui_show_registers): Update.
8392 * tui/tui-data.h (struct tui_data_window) <display_regs>: Now
8393 bool.
8394 * tui/tui-data.c (tui_data_window::clear_detail)
8395 (tui_data_window): Update.
8396
8397 2019-06-25 Tom Tromey <tom@tromey.com>
8398
8399 * tui/tui-windata.c (tui_display_all_data)
8400 (tui_display_data_from_line, tui_display_data_from)
8401 (tui_check_data_values, tui_data_window::do_scroll_vertical):
8402 Update.
8403 * tui/tui-regs.c (tui_last_regs_line_no)
8404 (tui_line_from_reg_element_no, tui_first_reg_element_no_inline)
8405 (tui_show_registers, tui_show_register_group)
8406 (tui_display_registers_from, tui_display_reg_element_at_line)
8407 (tui_display_registers_from_line, tui_check_register_values)
8408 (tui_reg_next, tui_reg_prev): Update.
8409 * tui/tui-layout.c (tui_set_layout, show_data): Update.
8410 * tui/tui-data.h (struct tui_data_info): Remove. Move contents to
8411 tui_data_window.
8412 (struct tui_win_info) <detail>: Remove. Add new fields from
8413 tui_data_info.
8414 (TUI_DATA_WIN): Add cast.
8415 * tui/tui-data.c (tui_data_window::clear_detail, tui_data_window)
8416 (~tui_data_window): Simplify.
8417
8418 2019-06-25 Tom Tromey <tom@tromey.com>
8419
8420 * tui/tui-layout.c (show_source_disasm_command)
8421 (show_source_or_disasm_and_command): Update.
8422 * tui/tui-io.c (update_cmdwin_start_line)
8423 (tui_redisplay_readline): Update.
8424 * tui/tui-data.h (struct tui_command_info): Remove.
8425 (struct tui_win_info) <detail>: Remove command_info member.
8426 (struct tui_data_window) <start_line>: New member, from
8427 tui_command_info.
8428 (TUI_CMD_WIN): Add casts.
8429
8430 2019-06-25 Tom Tromey <tom@tromey.com>
8431
8432 * tui/tui-winsource.c (tui_update_source_window)
8433 (tui_refill_source_window)
8434 (tui_source_window_base::do_scroll_horizontal)
8435 (tui_update_breakpoint_info, tui_set_exec_info_content)
8436 (tui_show_exec_info_content, tui_erase_exec_info_content)
8437 (tui_clear_exec_info_content): Update.
8438 * tui/tui-wingeneral.c (make_all_visible, tui_refresh_all):
8439 Update.
8440 * tui/tui-win.c (make_invisible_and_set_new_height)
8441 (make_visible_with_new_height): Update.
8442 * tui/tui-source.c (tui_set_source_content)
8443 (tui_show_symtab_source): Update.
8444 * tui/tui-layout.c (extract_display_start_addr)
8445 (show_source_disasm_command, show_data)
8446 (make_source_or_disasm_window)
8447 (show_source_or_disasm_and_command): Update.
8448 * tui/tui-disasm.c (tui_set_disassem_content): Simplify.
8449 (tui_disasm_window::do_scroll_vertical): Remove shadowing
8450 "gdbarch".
8451 * tui/tui-data.h (struct tui_source_info): Remove. Move contents
8452 to tui_source_window_base.
8453 (struct tui_win_info) <detail>: Remove source_info member.
8454 (struct tui_source_window_base) <has_locator>: Inline.
8455 Move contents from tui_source_info; rename has_locator member to
8456 m_has_locator.
8457 (TUI_SRC_WIN, TUI_DISASM_WIN): Add casts.
8458 * tui/tui-data.c (tui_source_window_base::has_locator): Move to
8459 header file.
8460 (tui_source_window_base::clear_detail, ~tui_source_window_base):
8461 Simplify.
8462 (tui_free_all_source_wins_content): Cast to
8463 tui_source_window_base.
8464
8465 2019-06-25 Tom Tromey <tom@tromey.com>
8466
8467 * tui/tui-win.c (make_invisible_and_set_new_height)
8468 (make_visible_with_new_height): Call has_locator method.
8469 * tui/tui-layout.c (show_source_disasm_command, show_data)
8470 (show_source_or_disasm_and_command): Update for bool change.
8471 * tui/tui-data.h (struct tui_source_info) <has_locator>: Now bool.
8472 (tui_win_info) <has_locator>: New method.
8473 (struct tui_source_window_base) <has_locator>: New method.
8474 (tui_win_has_locator): Don't declare.
8475 * tui/tui-data.c (tui_source_window_base::has_locator): Rename
8476 from tui_win_has_locator.
8477 (tui_source_window_base): Use false, not FALSE.
8478
8479 2019-06-25 Tom Tromey <tom@tromey.com>
8480
8481 * tui/tui-data.h (tui_clear_win_detail): Don't declare.
8482 * tui/tui-data.c (tui_clear_source_windows_detail): Call the
8483 clear_detail method directly.
8484 (tui_clear_win_detail): Remove.
8485
8486 2019-06-25 Tom Tromey <tom@tromey.com>
8487
8488 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Use
8489 "this", not TUI_DISASM_WIN.
8490
8491 2019-06-25 Tom Tromey <tom@tromey.com>
8492
8493 * tui/tui-winsource.h (tui_horizontal_source_scroll): Don't
8494 declare.
8495 * tui/tui-winsource.c
8496 (tui_source_window_base::do_scroll_horizontal): Rename from
8497 tui_horizontal_source_scroll.
8498 * tui/tui-windata.h (tui_vertical_data_scroll): Don't declare.
8499 * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Rename
8500 from tui_vertical_data_scroll.
8501 * tui/tui-win.h (tui_scroll): Don't declare.
8502 * tui/tui-win.c (tui_win_info::forward_scroll)
8503 (tui_win_info::backward_scroll, tui_win_info::left_scroll)
8504 (tui_win_info::right_scroll): Rename and update.
8505 (tui_scroll_forward_command, tui_scroll_backward_command)
8506 (tui_scroll_left_command, tui_scroll_right_command): Update.
8507 (tui_scroll): Remove.
8508 * tui/tui-source.h: Don't declare tui_vertical_source_scroll.
8509 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Rename
8510 from tui_vertical_source_scroll.
8511 * tui/tui-disasm.h (tui_vertical_disassem_scroll): Don't declare.
8512 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Rename
8513 from tui_vertical_disassem_scroll.
8514 * tui/tui-data.h (struct tui_win_info) <do_scroll_vertical,
8515 do_scroll_horizontal>: New methods.
8516 <forward_scroll, backward_scroll, left_scroll, right_scroll>:
8517 Likewise.
8518 (struct tui_source_window_base): Add do_scroll_horizontal.
8519 (struct tui_source_window, struct tui_disasm_window): Add
8520 do_scroll_vertical.
8521 (struct tui_data_window, struct tui_cmd_window): Add
8522 do_scroll_horizontal and do_scroll_vertical.
8523 * tui/tui-command.c (tui_dispatch_ctrl_char): Use method calls.
8524
8525 2019-06-25 Tom Tromey <tom@tromey.com>
8526
8527 * tui/tui-data.h (struct tui_source_window_base): New struct.
8528 (struct tui_source_window): Derive from tui_source_window_base.
8529 (struct tui_disasm_window): New struct.
8530 * tui/tui-data.c (tui_source_window_base::clear_detail): Rename
8531 from tui_source_window::clear_detail.
8532 (tui_source_window_base): Rename from tui_source_window.
8533 (~tui_source_window_base): Rename from ~tui_source_window.
8534 (tui_alloc_win_info): Create a tui_disasm_window.
8535
8536 2019-06-25 Tom Tromey <tom@tromey.com>
8537
8538 * tui/tui-data.h (struct tui_source_window)
8539 (struct tui_data_window): Declare destructors.
8540 * tui/tui-data.c (~tui_source_window, ~tui_data_window): New
8541 destructors.
8542 (tui_win_info): Simplify.
8543
8544 2019-06-25 Tom Tromey <tom@tromey.com>
8545
8546 * tui/tui-winsource.c (tui_display_main)
8547 (tui_update_source_windows_with_addr)
8548 (tui_update_all_breakpoint_info): Update.
8549 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
8550 (new_height_ok, parse_scrolling_args): Update.
8551 * tui/tui-stack.c (tui_show_frame_info): Update.
8552 * tui/tui-data.h (struct tui_list): Remove.
8553 (tui_source_windows): Return a reference to a std::vector.
8554 * tui/tui-data.c (source_windows): Now a std::vector.
8555 (tui_source_windows): Change return type.
8556 (tui_clear_source_windows): Rewrite.
8557 (tui_clear_source_windows_detail, tui_add_to_source_windows)
8558 (tui_free_all_source_wins_content): Rewrite.
8559
8560 2019-06-25 Tom Tromey <tom@tromey.com>
8561
8562 * tui/tui-data.h (struct tui_win_info, struct tui_source_window)
8563 (struct tui_data_window, struct tui_cmd_window): Declare
8564 clear_detail method.
8565 * tui/tui-data.c (tui_source_window::clear_detail)
8566 (tui_cmd_window::clear_detail, tui_data_window::clear_detail): New
8567 methods.
8568 (tui_clear_win_detail): Simplify.
8569
8570 2019-06-25 Tom Tromey <tom@tromey.com>
8571
8572 * tui/tui-layout.c (make_source_window, make_disasm_window)
8573 (make_source_or_disasm_window): Remove win_info_ptr parameter.
8574 Return the new window.
8575 (show_source_disasm_command, show_data)
8576 (show_source_or_disasm_and_command): Update.
8577
8578 2019-06-25 Tom Tromey <tom@tromey.com>
8579
8580 * tui/tui-layout.c (make_command_window): Remove win_info_ptr
8581 parameter. Return the new window.
8582 (show_source_disasm_command): Update and remove NULL check.
8583 (show_source_or_disasm_and_command): Update.
8584
8585 2019-06-25 Tom Tromey <tom@tromey.com>
8586
8587 * tui/tui-layout.c (init_and_make_win): Remove NULL check.
8588
8589 2019-06-25 Tom Tromey <tom@tromey.com>
8590
8591 * tui/tui-data.h (struct tui_win_info): Make constructor
8592 protected. Make destructor virtual. Add initializers.
8593 (tui_source_window, tui_data_window, tui_cmd_window): New
8594 classes.
8595 * tui/tui-data.c (tui_win_info): Rename from init_win_info. Now a
8596 constructor. Add "type" parameter.
8597 (tui_source_window, tui_data_window, tui_cmd_window): New
8598 constructors.
8599 (tui_alloc_win_info): Instantiate the appropriate subclass.
8600
8601 2019-06-25 Tom Tromey <tom@tromey.com>
8602
8603 * tui/tui-win.c (tui_resize_all): Use delete.
8604 * tui/tui-data.h (struct tui_win_info) <~tui_win_info>: Declare
8605 destructor.
8606 (tui_free_window): Don't declare.
8607 * tui/tui-data.c (~tui_win_info): Rename from tui_free_window.
8608 Update.
8609
8610 2019-06-25 Tom Tromey <tom@tromey.com>
8611
8612 * tui/tui-data.h (struct tui_win_info): Add constructor.
8613 * tui/tui-data.c (tui_alloc_win_info): Use new.
8614 (tui_free_window): Use delete.
8615
8616 2019-06-22 Tom Tromey <tom@tromey.com>
8617
8618 * tui/tui-windata.h (tui_first_data_element_no_in_line): Don't
8619 declare.
8620 * tui/tui-windata.c (tui_first_data_element_no_in_line): Remove.
8621
8622 2019-06-22 Tom Tromey <tom@tromey.com>
8623
8624 * tui/tui-data.h (tui_del_window, tui_del_data_windows): Don't
8625 declare.
8626 * tui/tui-data.c (tui_del_window, tui_del_data_windows): Remove.
8627
8628 2019-06-22 Tom de Vries <tdevries@suse.de>
8629
8630 * dwarf2read.c (create_addrmap_from_aranges)
8631 (read_debug_names_from_section): Print ptrdiff_t using '%s' and plongest
8632 instead of '%zu'.
8633
8634 2019-06-21 Simon Marchi <simon.marchi@efficios.com>
8635
8636 * dwarf2read.h (dwarf2_section_info_def): Remove.
8637 (DEF_VEC_O (dwarf2_section_info_def)): Remove.
8638 * dwarf2read.c (struct dwo_sections) <types>: Change type to
8639 std::vector<dwarf2_section_info>.
8640 (struct dwo_file) <~dwo_file>: Remove.
8641 (dwarf2_per_objfile::~dwarf2_per_objfile): Don't manually free
8642 types field.
8643 (dwarf2_per_objfile::locate_sections): Adjust to std::vector.
8644 (dwarf2_read_debug_names): Likewise.
8645 (create_debug_types_hash_table): Change parameter type to
8646 array_view, adjust code accordingly.
8647 (dwarf2_locate_dwo_sections): Adjust to std::vector.
8648 (partial_die_info::fixup): Likewise.
8649 (determine_prefix): Likewise.
8650 * dwarf-index-write.c (write_psymtabs_to_index): Adjust.
8651
8652 2019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
8653
8654 * dwarf2read.c (struct dwo_file) <dbfd>: Change type to
8655 gdb_bfd_ref_ptr.
8656 <~dwo_file>: Remove call to gdb_bfd_unref.
8657 (open_and_init_dwo_file): Move gdb_bfd_ref_ptr into dbfd field. Call
8658 gdb_bfd_ref_ptr::get.
8659
8660 2019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
8661
8662 * dwarf2read.h (struct dwarf2_per_objfile) <dwo_files>: Change
8663 type to htab_up.
8664 * dwarf2read.c (struct dwo_file): Initialize fields.
8665 <~dwo_file>: New.
8666 (free_dwo_file): Remove, move content to ~dwo_file.
8667 (struct dwo_file_deleter): Remove.
8668 (dwo_file_up>: Remove custom deleter.
8669 (free_dwo_files): Remove.
8670 (dwarf2_per_objfile::~dwarf2_per_objfile): Don't explicitly free
8671 dwo_files.
8672 (process_skeletonless_type_units): Call unique_ptr::get.
8673 (allocate_dwo_file_hash_table): Add deleter to created hash
8674 table. Change return type to htab_up.
8675 (lookup_dwo_file_slot): Don't memset dwo_file, call
8676 unique_ptr::get.
8677 (create_dwo_unit_in_dwp_v1): Allocate dwo_file with new.
8678 (create_dwo_unit_in_dwp_v2): Likewise.
8679 (open_and_init_dwo_file): Likewise.
8680 (free_dwo_file_from_slot): Remove.
8681
8682 2019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
8683
8684 * dwarf2read.h (struct dwarf2_section_info) <readin,
8685 is_virtual>: Change type to bool.
8686 * dwarf2read.c (dwarf2_read_section, create_dwp_v2_section): Use
8687 true instead of 1.
8688
8689 2019-06-19 Tom Tromey <tom@tromey.com>
8690
8691 * tui/tui-data.h (tui_init_content_element): Don't declare.
8692
8693 2019-06-19 Tom Tromey <tom@tromey.com>
8694
8695 * tui/tui-data.h (tui_init_win_info): Don't declare.
8696
8697 2019-06-19 Tom de Vries <tdevries@suse.de>
8698
8699 * dwarf2read.h (abstract_to_concrete): Change type to
8700 std::unordered_map<sect_offset, std::vector<sect_offset>,
8701 gdb::hash_enum<sect_offset>>.
8702
8703 2019-06-19 Tom Tromey <tromey@adacore.com>
8704
8705 * ada-lang.c (ada_evaluate_subexp) <case OP_ATR_FIRST>: Handle
8706 EVAL_AVOID_SIDE_EFFECTS specially.
8707
8708 2019-06-19 Tom Tromey <tromey@adacore.com>
8709
8710 * source-cache.c (highlighter): New global.
8711 (source_cache::get_source_lines): Create a highlighter on demand.
8712
8713 2019-06-18 Andrew Burgess <andrew.burgess@embecosm.com>
8714
8715 * defs.h (deprecated_interactive_hook): Delete declaration.
8716 * interps.c (clear_interpreter_hooks): Remove use of
8717 deprecated_interactive_hook.
8718 * top.c (deprecated_interactive_hook): Delete definition.
8719 * utils.c (maybe_quit): Remove use of deprecated_interactive_hook.
8720
8721 2019-06-18 Tom de Vries <tdevries@suse.de>
8722
8723 PR gdb/24515
8724 * dwarf2read.h (abstract_to_concrete): Change type from
8725 std::unordered_map<die_info_ptr, std::vector<die_info_ptr>> to
8726 std::unordered_map<sect_offset, std::vector<sect_offset>>.
8727 * dwarf2read.c (read_variable): Update.
8728 (dwarf2_fetch_die_loc_sect_off): Update.
8729
8730 2019-06-17 Tom de Vries <tdevries@suse.de>
8731
8732 PR gdb/24617
8733 * common/pathstuff.c (child_path): Make sure parent_len > 0 before
8734 accessing parent[parent_len - 1].
8735
8736 2019-06-17 Paul Pluzhnikov <ppluzhnikov@google.com>
8737
8738 PR gdb/24364
8739 * gdb/dtrace-probe.c (dtrace_static_probe_ops::get_probe): Don't
8740 call dtrace_process_dof with NULL dof.
8741
8742 2019-06-16 Tom de Vries <tdevries@suse.de>
8743
8744 PR gdb/24445
8745 * contrib/gdb-add-index.sh: Update to handle dwz-m-ed executable.
8746
8747 2019-06-16 Tom Tromey <tom@tromey.com>
8748
8749 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win)
8750 (make_all_visible): Use address of member.
8751
8752 2019-06-16 Tom Tromey <tom@tromey.com>
8753
8754 * tui/tui-data.c (tui_clear_win_detail, init_win_info)
8755 (tui_free_window, free_content, free_content_elements): Remove
8756 unnecessary cast.
8757 * tui/tui-windata.c (tui_display_all_data): Remove unnecessary
8758 cast.
8759 * tui/tui-regs.c (tui_show_register_group)
8760 (tui_display_registers_from, tui_display_reg_element_at_line):
8761 Remove unnecessary cast.
8762
8763 2019-06-16 Andrew Burgess <andrew.burgess@embecosm.com>
8764
8765 * linux-nat.c (normal_mask): Delete.
8766 (_initialize_linux_nat): Don't initialise normal_mask.
8767
8768 2019-06-16 Simon Marchi <simon.marchi@polymtl.ca>
8769
8770 PR gdb/24445
8771 * dwarf-index-write.h (write_psymtabs_to_index): Add
8772 dwz_basename parameter.
8773 * dwarf-index-write.c (write_gdbindex): Move file writing to
8774 write_gdbindex_1. Change return type void.
8775 (assert_file_size): Move up, remove filename parameter.
8776 (write_gdbindex_1): New function.
8777 (write_debug_names): Change return type to void, call
8778 assert_file_size.
8779 (struct index_wip_file): New struct.
8780 (write_psymtabs_to_index): Add dwz_basename parameter. Move
8781 file logic to index_wip_file. Write index for dwz file if
8782 needed.
8783 (save_gdb_index_command): Pass basename of dwz file, if present.
8784 * dwarf-index-cache.c (index_cache::store): Obtain and pass
8785 build-id of dwz file, if present.
8786 * dwarf2read.c (struct dwz_file): Move to dwarf2read.h.
8787 (dwarf2_get_dwz_file): Likewise.
8788 * dwarf2read.h (struct dwz_file): Move from dwarf2read.c.
8789 (dwarf2_get_dwz_file): Likewise.
8790
8791 2019-06-16 Tom Tromey <tom@tromey.com>
8792
8793 * coffread.c (process_coff_symbol): Use xstrdup.
8794 * value.c (create_internalvar): Use xstrdup.
8795
8796 2019-06-16 Tom Tromey <tom@tromey.com>
8797
8798 * valops.c (value_cast, value_slice): Remove unnecessary cast.
8799 * breakpoint.c (stopin_command, stopat_command)
8800 (until_break_command, decode_location_default): Remove unnecessary
8801 cast.
8802 * utils.c (subset_compare): Remove unnecessary cast.
8803 * ada-lang.c (ada_update_initial_language): Remove unnecessary
8804 cast.
8805 * linespec.c (decode_line_with_last_displayed): Remove unnecessary
8806 cast.
8807 * infcmd.c (path_command): Remove unnecessary cast.
8808 * coffread.c (decode_type): Remove unnecessary cast.
8809 * xcoffread.c (read_xcoff_symtab): Remove unnecessary cast.
8810 * mipsread.c (mipscoff_symfile_read): Remove unnecessary cast.
8811 * tui/tui-stack.c (tui_show_locator_content)
8812 (tui_show_frame_info): Remove unnecessary cast.
8813 * tui/tui-win.c (tui_scroll_forward_command)
8814 (tui_scroll_backward_command, tui_set_focus, tui_set_win_height)
8815 (parse_scrolling_args): Remove unnecessary cast.
8816 * tui/tui-data.c (init_win_info, tui_del_window)
8817 (tui_free_window, tui_del_data_windows, tui_free_data_content)
8818 (free_content_elements): Remove unnecessary cast.
8819 * tui/tui-windata.c (tui_first_data_item_displayed): Remove
8820 unnecessary cast.
8821 * tui/tui-source.c (tui_set_source_content)
8822 (tui_vertical_source_scroll): Remove unnecessary cast.
8823 * tui/tui-layout.c (tui_default_win_height): Remove unnecessary
8824 cast.
8825 * tui/tui-io.c (tui_initialize_io): Remove unnecessary cast.
8826 * tui/tui-regs.c (tui_display_registers_from)
8827 (tui_display_register): Remove unnecessary cast.
8828 * tui/tui-wingeneral.c (tui_refresh_win, tui_delete_win)
8829 (tui_unhighlight_win, tui_highlight_win, tui_make_window)
8830 (make_visible): Remove unnecessary cast.
8831 * tui/tui-winsource.c (tui_erase_source_content)
8832 (tui_update_breakpoint_info, tui_set_exec_info_content): Remove
8833 unnecessary cast.
8834 * ax-gdb.c (agent_command_1): Remove unnecessary cast.
8835 * cli/cli-setshow.c (cmd_show_list): Remove unnecessary cast.
8836 * stabsread.c (read_type, read_array_type, read_range_type):
8837 Remove unnecessary cast.
8838 * mdebugread.c (mdebug_build_psymtabs): Remove unnecessary cast.
8839 (parse_symbol, parse_type, upgrade_type, parse_external)
8840 (parse_partial_symbols, psymtab_to_symtab_1, cross_ref): Remove
8841 unnecessary cast.
8842 * gdb_bfd.c (gdb_bfd_map_section): Remove unnecessary cast.
8843
8844 2019-06-16 Tom Tromey <tom@tromey.com>
8845
8846 * tui/tui-data.c (tui_alloc_generic_win_info)
8847 (tui_alloc_win_info, tui_add_content_elements): Remove NULL
8848 checks.
8849
8850 2019-06-16 Bernhard Heckel <bernhard.heckel@intel.com>
8851 Andrew Burgess <andrew.burgess@embecosm.com>
8852
8853 * f-typeprint.c (f_print_type): Don't return early for not
8854 associated or not allocated types.
8855 (f_type_print_varspec_suffix): Add print_rank parameter and print
8856 ranks of array types in case they dangling.
8857 (f_type_print_base): Add print_rank parameter.
8858
8859 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
8860
8861 * NEWS: Mention new MI commands.
8862 * break-catch-throw.c (enum exception_event_kind): Move to
8863 breakpoint.h.
8864 (print_mention_exception_catchpoint): Output text as a single
8865 message.
8866 (catch_exception_command_1): Rename to...
8867 (catch_exception_event): ...this, make non-static, update header
8868 command, and change some parameter types.
8869 (catch_catch_command): Update for changes to
8870 catch_exception_command_1.
8871 (catch_throw_command): Likewise.
8872 (catch_rethrow_command): Likewise.
8873 * breakpoint.c (enum exception_event_kind): Delete.
8874 * breakpoint.h (enum exception_event_kind): Moved here from
8875 break-catch-throw.c.
8876 (catch_exception_event): Declare.
8877 * mi/mi-cmd-catch.c (mi_cmd_catch_exception_event): New function.
8878 (mi_cmd_catch_throw): New function.
8879 (mi_cmd_catch_rethrow): New function.
8880 (mi_cmd_catch_catch): New function.
8881 * mi/mi-cmds.c (mi_cmds): Add 'catch-throw', 'catch-rethrow', and
8882 'catch-catch' entries.
8883 * mi/mi-cmds.h (mi_cmd_catch_throw): Declare.
8884 (mi_cmd_catch_rethrow): Declare.
8885 (mi_cmd_catch_catch): Declare.
8886
8887 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
8888
8889 * annotate.c (annotate_source_line): Change return type to void,
8890 update implementation to match.
8891 * annotate.h (annotate_source_line): Change return type to void,
8892 update header comment.
8893 * stack.c (print_frame_info): Don't change what frame information
8894 is printed based on whether annotations are on or not.
8895
8896 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
8897
8898 * annotate.c: Add 'source.h' and 'objfiles.h' includes.
8899 (annotate_source): Make static.
8900 (annotate_source_line): Moved from source.c and renamed from
8901 identify_source_line. Update the return type.
8902 * annotate.h (annotate_source): Delete declaration.
8903 (annotate_source_line): Declaration moved from source.h, and
8904 renamed from identify_source_line. Return type updated.
8905 * source.c (identify_source_line): Moved to annotate.c and renamed
8906 to annotate_source_line.
8907 (info_line_command): Remove check of annotation_level.
8908 * source.h (identify_source_line): Move declaration to annotate.h
8909 and rename to annotate_source_line.
8910 * stack.c: Add 'annotate.h' include.
8911 (print_frame_info): Remove check of annotation_level before
8912 calling annotate_source_line.
8913
8914 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
8915
8916 * source-cache.c (source_cache::get_plain_source_lines): Use
8917 open_source_file_with_line_charpos instead of just
8918 open_source_file, remove call to find_source_lines.
8919 (source_cache::get_source_lines): Likewise.
8920 * source.c (find_source_lines): Make static.
8921 (get_filename_and_charpos): Renamed into...
8922 (open_source_file_with_line_charpos): ..this along with changes to
8923 return a scoped_fd, and some other minor clean ups.
8924 (identify_source_line): Use open_source_file_with_line_charpos.
8925 (search_command_helper): Use open_source_file_with_line_charpos
8926 instead of just open_source_file, remove call to
8927 find_source_lines.
8928 * source.h (open_source_file_with_line_charpos): Declare new
8929 function.
8930 (find_source_lines): Delete declaration.
8931
8932 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
8933
8934 * source.c (get_filename_and_charpos): Remove fullname
8935 parameter.
8936 (identify_source_line): Update call to get_filename_and_charpos.
8937
8938 2019-06-14 Tom Tromey <tromey@adacore.com>
8939
8940 PR gdb/24502:
8941 * ui-style.h (skip_ansi_escape): Update comment.
8942 * ui-file.h (class no_terminal_escape_file): New class.
8943 * ui-file.c (no_terminal_escape_file::write)
8944 (no_terminal_escape_file::puts): New methods.
8945 * cli/cli-logging.c (handle_redirections): Use
8946 no_terminal_escape_file.
8947
8948 2019-06-14 Tom Tromey <tromey@adacore.com>
8949
8950 * NEWS: Move convenience variable news above Python news.
8951
8952 2019-06-14 Tom Tromey <tom@tromey.com>
8953
8954 * gnulib: Move directory to top-level.
8955 * configure.ac: Don't configure gnulib.
8956 * configure: Rebuild.
8957 * common/common-defs.h: Use new path to gnulib.
8958 * Makefile.in (GNULIB_BUILDDIR): Now ../gnulib.
8959 (GNULIB_H): Remove.
8960 (INCGNU): Look in new gnulib location.
8961 (HFILES_NO_SRCDIR): Remove gnulib files.
8962 (SUBDIR, REQUIRED_SUBDIRS): Remove gnulib.
8963 (generated_files): Remove GNULIB_H.
8964 ($(LIBGNU), all-lib): Remove targets.
8965 (distclean): Don't mention GNULIB_BUILDDIR.
8966 ($(GNULIB_BUILDDIR)/Makefile): Remove target.
8967
8968 2019-06-14 Tom Tromey <tromey@adacore.com>
8969
8970 * symfile.c (add_symbol_file_command): Remove obsolete comment.
8971 Warn if symbol file does not provide any symbols.
8972
8973 2019-06-14 Tom Tromey <tromey@adacore.com>
8974
8975 * source.c (find_and_open_source): Respect basenames_may_differ.
8976
8977 2019-06-14 Andrew Burgess <andrew.burgess@embecosm.com>
8978
8979 * annotate.c (annotate_breakpoints_invalid): Make use of
8980 scoped_restore_terminal_state.
8981 (annotate_frames_invalid): Likewise.
8982
8983 2019-06-14 Tom Tromey <tromey@adacore.com>
8984
8985 * ada-lang.c (ada_evaluate_subexp) <case BINOP_ASSIGN>: Always
8986 allow assignment to an internalvar.
8987
8988 2019-06-14 Tom Tromey <tromey@adacore.com>
8989
8990 * ada-lex.l: Allow "_" in attribute names.
8991
8992 2019-06-14 Tom Tromey <tromey@adacore.com>
8993
8994 PR gdb/24653:
8995 * regcache.c (registers_changed): Don't call alloca.
8996 * top.c (execute_command): Don't call alloca.
8997
8998 2019-06-13 Pedro Alves <palves@redhat.com>
8999
9000 * cli/cli-setshow.c (cli/cli-setshow.c): New parameter
9001 'expression'. When parsing an expression, error out if there's
9002 junk after "unlimited".
9003 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
9004 (do_set_command): Adjust calls to is_unlimited_literal.
9005
9006 2019-06-13 Pedro Alves <palves@redhat.com>
9007
9008 * compile/compile.c (make_compile_options_def_group): Add braces
9009 around array_view initializer.
9010 * thread.c (make_thread_apply_all_options_def_group)
9011 (make_thread_apply_all_options_def_group): Likewise.
9012
9013 2019-06-13 Pedro Alves <palves@redhat.com>
9014
9015 * NEWS (New commands): Mention "maint test-options
9016 require-delimiter", "maint test-options unknown-is-error", "maint
9017 test-options unknown-is-operand" and "maint show
9018 test-options-completion-result".
9019 (New command options, command completion): New section.
9020 (Completion improvements): New section.
9021 Mention that you can abbreviate "unlimited".
9022
9023 2019-06-13 Pedro Alves <palves@redhat.com>
9024
9025 * cli/cli-utils.c (parse_flags, parse_flags_qcs): Delete.
9026 * cli/cli-utils.h (parse_flags, parse_flags_qcs): Delete.
9027 * unittests/cli-utils-selftests.c (test_parse_flags)
9028 (test_parse_flags_qcs): Delete.
9029 (test_cli_utils): Don't call deleted functions.
9030
9031 2019-06-13 Pedro Alves <palves@redhat.com>
9032
9033 * thread.c: Include "cli/cli-option.h".
9034 (tp_array_compar_ascending): Global.
9035 (tp_array_compar): Delete function.
9036 (tp_array_compar_ascending, tp_array_compar_descending): New
9037 functions.
9038 (ascending_option_def, qcs_flag_option_def)
9039 (thr_qcs_flags_option_defs)
9040 (make_thread_apply_all_options_def_group)
9041 (make_thread_apply_options_def_group): New.
9042 (thread_apply_all_command): Use gdb::option::process_options.
9043 (thread_apply_command_completer)
9044 (thread_apply_all_command_completer): New.
9045 (thread_apply_command): Use gdb::option::process_options.
9046 (_initialize_thread): Delete THREAD_APPLY_FLAGS_HELP, replace it
9047 with a new THREAD_APPLY_OPTION_HELP. Use gdb::option::build_help
9048 to generate help text of "thread apply". Adjust "taas"'s help.
9049 * tid-parse.c (tid_range_parser::in_thread_range): New method.
9050 * tid-parse.h (tid_range_parser::in_thread_range): New method.
9051
9052 2019-06-13 Pedro Alves <palves@redhat.com>
9053
9054 * thread.c (thread_apply_command): Check for invalid TID with
9055 isdigit instead of !isalpha.
9056
9057 2019-06-13 Pedro Alves <palves@redhat.com>
9058
9059 * cli/cli-utils.c (parse_flags_qcs): Use validate_flags_qcs.
9060 (validate_flags_qcs): New.
9061 * cli/cli-utils.h (struct qcs_flags): Change field types to int.
9062 (validate_flags_qcs): Declare.
9063 * stack.c (qcs_flag_option_def, fr_qcs_flags_option_defs): New.
9064 (make_frame_apply_options_def_group): New.
9065 (frame_apply_command_count): Process options with
9066 gdb::option::process_options.
9067 (frame_apply_completer): New.
9068 (frame_apply_level_completer, frame_apply_all_completer)
9069 (frame_apply_completer): New.
9070 (_initialize_stack): Update help of "frame apply", "frame apply
9071 level", "frame apply all" and "faas" to mention supported options
9072 and install command completers.
9073 * stack.h (frame_apply_all_completer): Declare.
9074 * thread.c: Include "stack.h".
9075 (tfaas_command): Add "--".
9076 (_initialize_thread): Update help "tfaas" to mention supported
9077 options and install command completer.
9078
9079 2019-06-13 Pedro Alves <palves@redhat.com>
9080
9081 * completer.c (complete_nested_command_line): New.
9082 (gdb_completion_word_break_characters_throw): Add assertion.
9083 * completer.h (complete_nested_command_line): Declare.
9084
9085 2019-06-13 Pedro Alves <palves@redhat.com>
9086
9087 * stack.c (parse_backtrace_qualifiers): New.
9088 (backtrace_command): Use it.
9089 (backtrace_command_completer): Complete on qualifiers.
9090
9091 2019-06-13 Pedro Alves <palves@redhat.com>
9092
9093 * frame.c: Include "cli/cli-option.h.
9094 (user_set_backtrace_options): New.
9095 (backtrace_past_main, backtrace_past_entry, backtrace_limit):
9096 Delete.
9097 (get_prev_frame): Adjust.
9098 (boolean_option_def, uinteger_option_def)
9099 (set_backtrace_option_defs): New.
9100 (_initialize_frame): Adjust and use
9101 gdb::option::add_setshow_cmds_for_options to install "set
9102 backtrace past-main" and "set backtrace past-entry".
9103 * frame.h: Include "cli/cli-option.h".
9104 (struct frame_print_options): Forward declare.
9105 (print_frame_arguments_all, print_frame_arguments_scalars)
9106 (print_frame_arguments_none): Declare.
9107 (print_entry_values): Delete declaration.
9108 (struct frame_print_options, user_frame_print_options): New.
9109 (struct set_backtrace_options): New.
9110 (set_backtrace_option_defs, user_set_backtrace_options): Declare.
9111 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
9112 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
9113 (mi_cmd_stack_list_variables): Pass down USER_FRAME_PRINT_OPTIONS.
9114 (list_args_or_locals): Add frame_print_options parameter.
9115 (mi_cmd_stack_info_frame): Pass down USER_FRAME_PRINT_OPTIONS.
9116 * python/py-framefilter.c (enumerate_args): Pass down
9117 USER_FRAME_PRINT_OPTIONS.
9118 * stack.c: Include "cli/cli-option.h".
9119 (print_frame_arguments_all, print_frame_arguments_scalars)
9120 (print_frame_arguments_none): Declare.
9121 (print_raw_frame_arguments, print_entry_values): Delete.
9122 (user_frame_print_options): New.
9123 (boolean_option_def, enum_option_def, frame_print_option_defs):
9124 New.
9125 (struct backtrace_cmd_options): New.
9126 (bt_flag_option_def): New.
9127 (backtrace_command_option_defs): New.
9128 (print_stack_frame): Pass down USER_FRAME_PRINT_OPTIONS.
9129 (print_frame_arg, read_frame_arg, print_frame_args)
9130 (print_frame_info, print_frame): Add frame_print_options parameter
9131 and use it.
9132 (info_frame_command_core): Pass down USER_FRAME_PRINT_OPTIONS.
9133 (backtrace_command_1): Add frame_print_options and
9134 backtrace_cmd_options parameters and use them.
9135 (make_backtrace_options_def_group): New.
9136 (backtrace_command): Process command options with
9137 gdb::option::process_options.
9138 (backtrace_command_completer): New.
9139 (_initialize_stack): Extend "backtrace"'s help to mention
9140 supported options. Install completer for "backtrace".
9141 Install some settings commands with add_setshow_cmds_for_options.
9142
9143 2019-06-13 Pedro Alves <palves@redhat.com>
9144
9145 * NEWS (Changed commands): Mention set/show print raw-frame-arguments,
9146 and that "set/show print raw frame-arguments" are now deprecated.
9147
9148 * cli/cli-decode.c (add_setshow_boolean_cmd): Now returns the
9149 command.
9150 * command.h (add_setshow_boolean_cmd): Return cmd_list_element *.
9151 * stack.c (_initialize_stack): Install "set/show print
9152 raw-frame-arguments", and deprecate "set/show print raw
9153 frame-arguments".
9154 * valprint.c (_initialize_valprint): Deprecate "set/show print
9155 raw".
9156
9157 2019-06-13 Pedro Alves <palves@redhat.com>
9158
9159 * compile/compile.c (struct compile_options): New.
9160 (compile_flag_option_def, compile_command_option_defs)
9161 (make_compile_options_def_group): New.
9162 (compile_file_command): Handle options with
9163 gdb::option::process_options.
9164 (compile_file_command_completer): New function.
9165 (compile_code_command): Handle options with
9166 gdb::option::process_options.
9167 (compile_code_command_completer): New function.
9168 (_initialize_compiler): Install completers for "compile code" and
9169 "compile file". Mention available options in "compile code" and
9170 "compile code"'s help.
9171 * completer.c (advance_to_completion_word): New, factored out from
9172 ...
9173 (advance_to_expression_complete_word_point): ... this.
9174 (advance_to_filename_complete_word_point): New.
9175 * completer.h (advance_to_filename_complete_word_point): New
9176 declaration.
9177
9178 2019-06-13 Pedro Alves <palves@redhat.com>
9179
9180 * compile/compile.c: Include "cli/cli-option.h".
9181 (compile_print_value): Scope data pointer is now a
9182 value_print_options pointer; adjust.
9183 (compile_print_command): Process options. Scope data pointer is
9184 now a value_print_options pointer; adjust.
9185 (_initialize_compile): Update "compile print"'s help to include
9186 supported options. Install a completer for "compile print".
9187 * cp-valprint.c (show_vtblprint, show_objectprint)
9188 (show_static_field_print): Delete.
9189 (_initialize_cp_valprint): Don't install "set print
9190 static-members", "set print vtbl", "set print object" here.
9191 * printcmd.c: Include "cli/cli-option.h" and
9192 "common/gdb_optional.h".
9193 (print_command_parse_format): Rework to fill in a
9194 value_print_options instead of a format_data.
9195 (print_value): Change parameter type from format_data pointer to
9196 value_print_options reference. Adjust.
9197 (print_command_1): Process options. Adjust to pass down a
9198 value_print_options.
9199 (print_command_completer): New.
9200 (_initialize_printcmd): Install print_command_completer as
9201 handle_brkchars completer for the "print" command. Update
9202 "print"'s help to include supported options.
9203 * valprint.c: Include "cli/cli-option.h".
9204 (show_vtblprint, show_objectprint, show_static_field_print): Moved
9205 here from cp-valprint.c.
9206 (boolean_option_def, uinteger_option_def)
9207 (value_print_option_defs, make_value_print_options_def_group):
9208 New. Use gdb::option::add_setshow_cmds_for_options to install
9209 "set print elements", "set print null-stop", "set print repeats",
9210 "set print pretty", "set print union", "set print array", "set
9211 print address", "set print symbol", "set print array-indexes".
9212 * valprint.h: Include <string> and "cli/cli-option.h".
9213 (make_value_print_options_def_group): Declare.
9214 (print_value): Change parameter type from format_data pointer to
9215 value_print_options reference.
9216 (print_command_completer): Declare.
9217
9218 2019-06-13 Pedro Alves <palves@redhat.com>
9219
9220 * Makefile.in (SUBDIR_CLI_SRCS): Add cli/cli-option.c.
9221 (COMMON_SFILES): Add maint-test-settings.c.
9222 * cli/cli-decode.c (boolean_enums): New global, factored out from
9223 ...
9224 (add_setshow_boolean_cmd): ... here.
9225 * cli/cli-decode.h (boolean_enums): Declare.
9226 * cli/cli-option.c: New file.
9227 * cli/cli-option.h: New file.
9228 * cli/cli-setshow.c (parse_cli_boolean_value(const char **)): New,
9229 factored out from ...
9230 (parse_cli_boolean_value(const char *)): ... this.
9231 (is_unlimited_literal): Change parameter type to pointer to
9232 pointer. Adjust and advance ARG pointer.
9233 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
9234 (parse_cli_var_enum): New, factored out from ...
9235 (do_set_command): ... this. Adjust.
9236 * cli/cli-setshow.h (parse_cli_boolean_value)
9237 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
9238 (parse_cli_var_enum): Declare.
9239 * cli/cli-utils.c: Include "cli/cli-option.h".
9240 (get_ulongest): New.
9241 * cli/cli-utils.h (get_ulongest): Declare.
9242 (check_for_argument): New overloads.
9243 * maint-test-options.c: New file.
9244
9245 2019-06-13 Pedro Alves <palves@redhat.com>
9246
9247 * cli/cli-utils.c (number_or_range_parser::get_number): Do not
9248 parse a range if "-" is at the end of the string.
9249
9250 2019-06-13 Pedro Alves <palves@redhat.com>
9251
9252 * cli/cli-setshow.c (parse_auto_binary_operation)
9253 (parse_cli_boolean_value): Don't allow "o".
9254
9255 2019-06-13 Pedro Alves <palves@redhat.com>
9256
9257 * Makefile.in (COMMON_SFILES): Add maint-test-settings.c.
9258 * NEWS: Mention maint test-settings KIND.
9259 * maint-test-settings.c: New file.
9260
9261 2019-06-13 Pedro Alves <palves@redhat.com>
9262
9263 * cli/cli-decode.c (add_setshow_cmd_full): Remove "show"
9264 completer.
9265 (add_setshow_string_cmd, add_setshow_string_noescape_cmd): Remove
9266 "set" completers.
9267
9268 2019-06-13 Pedro Alves <palves@redhat.com>
9269
9270 * cli/cli-setshow.c (do_set_command) <var_enum>: Detect junk
9271 after item.
9272
9273 2019-06-13 Pedro Alves <palves@redhat.com>
9274
9275 * cli/cli-setshow.c (is_unlimited_literal): Allow abbreviations.
9276
9277 2019-06-13 Pedro Alves <palves@redhat.com>
9278
9279 * ax-gdb.c (agent_command_1): Remove skip_spaces call.
9280 * breakpoint.c (watch_maybe_just_location): Remove skip_spaces
9281 call.
9282 * cli/cli-cmds.c (apropos_command): Remove skip_spaces call.
9283 * cli/cli-utils.c (extract_info_print_args): Remove skip_spaces
9284 calls.
9285 (check_for_argument): Skip spaces after argument.
9286
9287 2019-06-13 Pedro Alves <palves@redhat.com>
9288
9289 * thread.c (thread_apply_command): Adjust TID parsing.
9290 * tid-parse.c (tid_range_parser::finished): Ensure parsing end is
9291 detected before end of string.
9292 (tid_is_in_list): Error out if LIST is invalid.
9293
9294 2019-06-13 Pedro Alves <palves@redhat.com>
9295
9296 * completer.c (complete_line_internal_1): Rewind completion word
9297 point.
9298 (completion_tracker::advance_custom_word_point_by): Change
9299 parameter type to int.
9300 * completer.h (completion_tracker::advance_custom_word_point_by):
9301 Likewise.
9302
9303 2019-06-13 Pedro Alves <palves@redhat.com>
9304
9305 * completer.c (advance_to_completion_word): Handle delimiters.
9306
9307 2019-06-11 Bernhard Heckel <bernhard.heckel@intel.com>
9308
9309 * dwarf2read.c (add_partial_symbol): Skip nameless modules.
9310
9311 2019-06-11 Tom Tromey <tom@tromey.com>
9312
9313 * common/common-utils.c (xmalloc, xrealloc, xcalloc)
9314 (xmalloc_failed): Move to alloc.c.
9315 * alloc.c: New file.
9316 * Makefile.in (COMMON_SFILES): Add alloc.c.
9317
9318 2019-06-11 Tom Tromey <tom@tromey.com>
9319
9320 * nat/linux-waitpid.c: Don't include server.h.
9321 (linux_debug): Remove.
9322 (my_waitpid): Update.
9323
9324 2019-06-11 Tom Tromey <tromey@adacore.com>
9325
9326 * infcall.c (_initialize_infcall): Remove trailing newline from
9327 help.
9328 * user-regs.c (_initialize_user_regs): Remove trailing newline
9329 from help.
9330 * typeprint.c (_initialize_typeprint): Remove trailing newline
9331 from help.
9332 * reverse.c (_initialize_reverse): Remove trailing newlines from
9333 help.
9334 * tracepoint.c (_initialize_tracepoint): Remove trailing newlines
9335 from help.
9336 * language.c (add_set_language_command): Remove trailing newline
9337 from help.
9338 * infcmd.c (_initialize_infcmd): Remove trailing newlines from
9339 help.
9340 * disasm.c (_initialize_disasm): Remove trailing newline from
9341 help.
9342 * top.c (init_main): Remove trailing newline from help.
9343 * interps.c (_initialize_interpreter): Remove trailing newline
9344 from help.
9345 * btrace.c (_initialize_btrace): Remove trailing newlines from
9346 help.
9347 * breakpoint.c (_initialize_breakpoint): Remove trailing newline
9348 from help.
9349 * python/python.c (_initialize_python): Remove trailing newline
9350 from help.
9351 * spu-tdep.c (_initialize_spu_tdep): Remove trailing newlines from
9352 help.
9353 * tui/tui-win.c (_initialize_tui_win): Remove trailing newlines
9354 from help. Reformat some text.
9355 * tui/tui-stack.c (_initialize_tui_stack): Remove trailing newline
9356 from help.
9357 * tui/tui-layout.c (_initialize_tui_layout): Remove trailing
9358 newline from help.
9359
9360 2019-06-11 Tom Tromey <tromey@adacore.com>
9361
9362 * darwin-nat.c (darwin_decode_exception_message)
9363 (darwin_decode_message, darwin_nat_target::kill): Fix shadowing.
9364
9365 2019-06-10 Andrew Burgess <andrew.burgess@embecosm.com>
9366
9367 * valops.c (value_slice): Check for not allocated or not
9368 associated values.
9369
9370 2019-06-10 Tom de Vries <tdevries@suse.de>
9371
9372 PR gdb/24618
9373 * dwarf2read.c (struct mapped_index::symbol_name_slot_invalid): Make
9374 sure an empty slot (defined by a 32-bit zero pair) is recognized as
9375 invalid.
9376
9377 2019-06-10 Tom de Vries <tdevries@suse.de>
9378
9379 PR gdb/24611
9380 * linespec.c (linespec_lexer_lex_string): Remove incorrect
9381 "++(PARSER_STREAM (parser))" for "[abi"-prefixed colon. Add assert.
9382
9383 2019-06-10 Tom de Vries <tdevries@suse.de>
9384
9385 PR symtab/24545
9386 * symtab.c (struct demangled_name_entry): Add language field.
9387 (symbol_set_names): Revert "[gdb/symtab] Fix language of duplicate
9388 static minimal symbol". Set and use language field.
9389
9390 2019-06-10 Tom Tromey <tromey@adacore.com>
9391
9392 * ada-lang.c (_initialize_ada_language): Update help text.
9393
9394 2019-06-10 Tom Tromey <tromey@adacore.com>
9395
9396 * m32c-tdep.c (m32c_m16c_address_to_pointer): Don't end warning
9397 with a newline.
9398 * guile/guile.c (handle_boot_error): Don't end warning with a
9399 newline.
9400 * cli/cli-cmds.c (exit_status_set_internal_vars): Don't end
9401 warning with a newline.
9402 * s12z-tdep.c (s12z_skip_prologue): Don't end warning with a
9403 newline.
9404 (s12z_frame_cache): Likewise.
9405 * dwarf-index-cache.c (index_cache::store): Don't end warning with
9406 a newline.
9407 * solib-svr4.c (disable_probes_interface): Don't end warning with
9408 a newline.
9409 * nat/fork-inferior.c (fork_inferior): Don't end warning with a
9410 newline.
9411 * python/python.c (do_finish_initialization): Don't end warning
9412 with a newline.
9413
9414 2019-06-10 Tom Tromey <tom@tromey.com>
9415
9416 * python/py-breakpoint.c (gdbpy_breakpoint_created)
9417 (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
9418 gdbpy_enter.
9419
9420 2019-06-10 Tom Tromey <tromey@adacore.com>
9421
9422 * elfread.c (elf_read_minimal_symbols): Don't set the dbx objfile
9423 data.
9424 (elf_new_init): Don't call stabsread_new_init.
9425 * dbxread.c (coffstab_build_psymtabs): Set dbx objfile data.
9426 (elfstab_build_psymtabs): Likewise. Call stabsread_new_init.
9427 * coffread.c (coff_symfile_init): Don't set the dbx objfile data.
9428
9429 2019-06-10 Tom de Vries <tdevries@suse.de>
9430
9431 PR symtab/16264
9432 PR symtab/24517
9433 * dwarf2read.c (read_func_scope): Handle DW_AT_main_subprogram.
9434
9435 2019-06-06 Руслан Ижбулатов <lrn1986@gmail.com>
9436
9437 * source.c (find_and_open_source): Also rewrite relative file
9438 names.
9439
9440 2019-04-26 Amos Bird <amosbird@gmail.com>
9441
9442 * annotate.c (annotate_thread_exited): Add "thread-exited"
9443 annotation.
9444
9445 2019-06-06 Tom Tromey <tromey@adacore.com>
9446
9447 * maint.h (class scoped_command_stats): Use
9448 DISABLE_COPY_AND_ASSIGN.
9449 <print_time>: New method.
9450 * maint.c (scoped_command_stats, ~scoped_command_stats): Call
9451 print_time.
9452 (scoped_command_stats::print_time): New method.
9453
9454 2019-06-05 Andrew Burgess <andrew.burgess@embecosm.com>
9455
9456 * riscv-tdep.c (riscv_insn::decode): Gracefully ignore
9457 instructions of lengths 6 or 8 bytes.
9458
9459 2019-06-04 Pedro Alves <palves@redhat.com>
9460
9461 * common/gdb_unique_ptr.h (make_unique_xstrdup): New.
9462
9463 * ada-lang.c (catch_ada_completer): Use make_unique_xstrdup.
9464 * breakpoint.c (condition_completer): Likewise.
9465 * cli/cli-dump.c (scan_expression): Likewise.
9466 * common/filestuff.c (mkdir_recursive): Likewise.
9467 * common/gdb_tilde_expand.c (gdb_tilde_expand_up)
9468 * common/pathstuff.c (gdb_realpath, gdb_realpath_keepfile)
9469 (gdb_abspath): Likewise.
9470 * compile/compile-cplus-types.c
9471 (compile_cplus_instance::decl_name): Likewise.
9472 * completer.c (complete_explicit_location):
9473 (signal_completer, reg_or_group_completer_1): Likewise.
9474 * cp-support.c (cp_remove_params_if_any): Likewise.
9475 * fbsd-tdep.c (fbsd_core_vnode_path): Likewise.
9476 * guile/scm-safe-call.c (gdbscm_safe_eval_string): Likewise.
9477 * infcmd.c (strip_bg_char): Likewise.
9478 * linespec.c (copy_token_string): Likewise.
9479 * mi/mi-main.c (output_cores): Likewise.
9480 * psymtab.c (psymtab_search_name):
9481 * symfile.c (test_set_ext_lang_command): Likewise.
9482 * target.c (target_fileio_read_stralloc): Likewise.
9483 * tui/tui-regs.c (tui_reggroup_completer): Likewise.
9484 * value.c (complete_internalvar): Likewise.
9485
9486 2019-06-04 Christian Biesinger <cbiesinger@google.com>
9487
9488 Add objfile property to gdb.Type.
9489 * NEWS: Mention Python API addition.
9490 * python/py-type.c (typy_get_objfile): New method.
9491
9492 2019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9493
9494 * NEWS: Mention the new set|show style [title|highlight].
9495 Mention changes to "show style", "help" and "apropos".
9496
9497 2019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9498
9499 * cli/cli-decode.h (apropos_cmd): Add verbose argument.
9500 * cli/cli-decode.c (apropos_cmd): Likewise. Use print_doc_of_command
9501 instead of print_help_for_command.
9502 (print_doc_of_command): New function.
9503 (help_list): Add 'apropos -v word' suggestion.
9504 (print_help_for_command): Style the command name using title style.
9505 * cli/cli-cmds.c (apropos_command): Parse optional -v flag.
9506 (_initialize_cli_cmds): Describe -v in apropos_command help.
9507
9508 2019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9509
9510 * cli/cli-style.h (cli_style_option): Add name in constructor,
9511 add m_name class member, add constructor with intensity,
9512 add name class function.
9513 (cli_style_option::add_setshow_commands): Remove name argument.
9514 (highlight_style, title_style): New styles.
9515 * cli/cli-style.c (do_show): New function that shows a style
9516 characteristic styling the style name with itself.
9517 (set_style_name): New function.
9518 (STYLE_ADD_SETSHOW_COMMANDS): Remove NAME arguments.
9519 Update all callers according to the changes in cli/cli-style.h.
9520 * utils.h (fputs_highlighted): New function.
9521 * utils.c (fputs_highlighted): Likewise.
9522
9523 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9524
9525 * NEWS: Mention new pipe command and new convenience variables.
9526
9527 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9528
9529 * cli/cli-cmds.c (pipe_command): New function.
9530 (_initialize_cli_cmds): Call add_com for pipe_command.
9531 Define | as an alias for pipe.
9532 (exit_status_set_internal_vars): New function.
9533 (shell_escape): Call exit_status_set_internal_vars.
9534 cli/cli-decode.c (find_command_name_length): Recognize | as
9535 a single character command.
9536
9537 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9538
9539 * gdbcmd.h (execute_command_to_ui_file): New declaration.
9540 top.c (execute_command_to_ui_file): New function, mostly a copy
9541 of execute_command_to_string.
9542 (execute_command_to_string): Implement by calling
9543 execute_command_to_ui_file.
9544
9545 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9546
9547 * top.h (saved_command_line): Remove declaration.
9548 * top.c (previous_saved_command_line, previous_repeat_arguments):
9549 New variables.
9550 (saved_command_line): Make static, define together with other
9551 'repeat variables'.
9552 (dont_repeat): Clear repeat_arguments.
9553 (repeat_previous, get_saved_command_line, save_command_line):
9554 New functions.
9555 (gdb_init): Initialize saved_command_line
9556 and previous_saved_command_line.
9557 * main.c (captured_main_1): Remove saved_command_line initialization.
9558 * event-top.c (handle_line_of_input): Update to use
9559 the new 'repeat' related functions instead of direct access to
9560 saved_command_line.
9561 * command.h (repeat_previous, get_saved_command_line,
9562 save_command_line): New declarations.
9563 (dont_repeat): Add comment.
9564
9565 2019-05-30 Tom Tromey <tromey@adacore.com>
9566
9567 * gdbtypes.h (struct range_bounds) <flag_upper_bound_is_count>:
9568 Fix comment.
9569 (TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED): Rewrite comment.
9570
9571 2019-05-30 Jan Vrany <jan.vrany@fit.cvut.cz>
9572
9573 PR cli/24587
9574 * completer.c (complete): Initialize variable word.
9575
9576 2019-05-29 Sergio Durigan Junior <sergiodj@redhat.com>
9577
9578 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192
9579 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1715008
9580 * dwarf2read.c (dwarf_decode_macro_bytes): Move check to see if
9581 'body' is NULL to the outter 'if', protecting the '!is_define'
9582 situation as well.
9583
9584 2019-05-29 Tom Tromey <tromey@adacore.com>
9585
9586 * dwarf2read.c (partial_die_parent_scope): Call dwarf_tag_name.
9587 (dwarf_unknown): New function.
9588 (dwarf_tag_name, dwarf_attr_name, dwarf_form_name)
9589 (dwarf_type_encoding_name): Use dwarf_unknown.
9590
9591 2019-05-29 Tom Tromey <tromey@adacore.com>
9592
9593 PR c++/20020:
9594 * cp-valprint.c (cp_print_value_fields): Call
9595 cp_print_static_field inside "try".
9596
9597 2019-05-29 Tom Tromey <tromey@adacore.com>
9598
9599 * inflow.c (struct terminal_info): Add default operator=.
9600 * configure: Rebuild.
9601 * warning.m4 (AM_GDB_WARNINGS): Add -Wdeprecated-copy,
9602 -Wdeprecated-copy-dtor, -Wredundant-move.
9603
9604 2019-05-29 Tom Tromey <tromey@adacore.com>
9605
9606 * NEWS: Add entry.
9607 * infcmd.c (print_return_value_1): Handle finish_print
9608 option.
9609 (show_print_finish): New function.
9610 (_initialize_infcmd): Add "set/show print finish" commands.
9611 * valprint.c (user_print_options): Initialize new member.
9612 * valprint.h (struct value_print_options) <finish_print>: New
9613 member.
9614
9615 2019-05-28 Tom Tromey <tromey@adacore.com>
9616
9617 * ada-lang.c (ada_remove_Xbn_suffix)
9618 (find_old_style_renaming_symbol)
9619 (parse_old_style_renaming): Remove.
9620 (ada_find_renaming_symbol): Don't call
9621 find_old_style_renaming_symbol.
9622 (ada_is_renaming_symbol): Rename from
9623 ada_find_renaming_symbol. Remove "block" parameter. Return
9624 bool. Now static.
9625 (ada_read_var_value): Update and simplify.
9626 * ada-exp.y (write_var_or_type): Remove old code.
9627
9628 2019-05-28 Alan Hayward <alan.hayward@arm.com>
9629
9630 PR gdb/25010
9631 * event-top.c: Remove include comment.
9632 * inflow.c (class scoped_ignore_sigttou): Move from here...
9633 * inflow.h (class scoped_ignore_sigttou): ...to here.
9634 * ser-unix.c (hardwire_drain_output): Block SIGTTOU during drain.
9635 * top.c: Remove include comment.
9636
9637 2019-05-27 Tom Tromey <tom@tromey.com>
9638
9639 * NEWS: Fix typo.
9640
9641 2019-05-22 Tom Tromey <tromey@adacore.com>
9642
9643 * target.c (target_follow_exec): Constify parameter.
9644 * target-delegates.c: Rebuild.
9645 * remote.c (remote_target::follow_exec): Constify parameter.
9646 * infrun.c (follow_exec): Constify parameter.
9647 * target.h (struct target_ops) <follow_exec>: Constify parameter.
9648 (target_follow_exec): Likewise.
9649
9650 2019-05-22 Alan Hayward <alan.hayward@arm.com>
9651
9652 * aarch64-tdep.c (aarch64_execute_dwarf_cfa_vendor_op): Treat
9653 DW_CFA_AARCH64_negate_ra_state as nop on non pauth targets.
9654
9655 2019-05-22 Alan Hayward <alan.hayward@arm.com>
9656
9657 * NEWS: Add debugredirect and testsuite sections.
9658
9659 2019-05-22 Simon Cook <simon.cook@embecosm.com>
9660
9661 * riscv-tdep.c (riscv_gdbarch_init): Support determining flen from
9662 target descriptions using exclusively floating point register name
9663 aliases.
9664
9665 2019-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
9666
9667 PR gdb/18644:
9668 * f-lang.c (build_fortran_types): Handle the case where
9669 gdbarch_floatformat_for_type returns a nullptr.
9670
9671 2019-05-21 Tom de Vries <tdevries@suse.de>
9672
9673 PR cli/24587
9674 * cli/cli-cmds.c (complete_command): Fix use of unitialized variable.
9675
9676 2019-05-18 Andrew Burgess <andrew.burgess@embecosm.com>
9677
9678 PR gdb/18644:
9679 * f-lang.c (build_fortran_types): Use floatformats_ia64_quad for
9680 16-byte floats.
9681 * i386-tdep.c (i386_floatformat_for_type): Use
9682 floatformats_ia64_quad for the 16-byte floating point component
9683 within a fortran 32-byte complex number.
9684
9685 2019-05-18 Andrew Burgess <andrew.burgess@embecosm.com>
9686
9687 * dwarf2read.c (struct cu_partial_die_info): Add constructor,
9688 delete default constructor.
9689 (find_partial_die): Update to return const struct.
9690 (partial_die_parent_scope): Move variable declaration into scope
9691 of its use and change its type to auto.
9692 (guess_partial_die_structure_name): Likewise.
9693 (partial_die_info::fixup): Likewise.
9694
9695 2019-05-17 Tom Tromey <tromey@adacore.com>
9696
9697 * source.c (find_and_open_source): Remove cast.
9698
9699 2019-05-17 Tom Tromey <tromey@adacore.com>
9700
9701 * annotate.c (annotate_source): Make "filename" const.
9702 * annotate.h (annotate_source): Use const.
9703
9704 2019-05-17 Alan Hayward <alan.hayward@arm.com>
9705
9706 * disasm.c (set_disassembler_options): Send errors to stderr.
9707
9708 2019-05-17 Alan Hayward <alan.hayward@arm.com>
9709
9710 * cli/cli-interp.c (struct saved_output_files): Add saved entry.
9711 (cli_interp_base::set_logging): Check debug_redirect.
9712 * cli/cli-interp.h (set_logging): Add debug_redirect parameter.
9713 * cli/cli-logging.c (debug_redirect): Add static variable.
9714 (pop_output_files): Add default param.
9715 (handle_redirections): Print debug setting.
9716 (show_logging_command): Likewise.
9717 (_initialize_cli_logging): Add debugredirect command.
9718 * interps.c (current_interp_set_logging): Add debug_redirect
9719 parameter.
9720 * interps.h (set_logging): Add debug_redirect parameter.
9721 (current_interp_set_logging): Likewise.
9722 * mi/mi-common.h: Likewise.
9723 * mi/mi-interp.c (mi_interp::set_logging): Likewise.
9724
9725 2019-05-17 Alan Hayward <alan.hayward@arm.com>
9726 Tom Tromey <tromey@adacore.com>
9727
9728 * cli/cli-interp.c (cli_interp_base::set_logging): Create tee_file
9729 directly.
9730 * cli/cli-interp.h (make_logging_output): Remove declaration.
9731 * cli/cli-logging.c (make_logging_output): Remove function.
9732 * mi/mi-interp.c (mi_interp::set_logging): Create tee_file
9733 directly.
9734 * ui-file.c (tee_file::tee_file): Remove bools.
9735 (tee_file::~tee_file): Remove deletes.
9736 * ui-file.h (tee_file): Remove bools.
9737
9738 2019-01-28 Jan Vrany <jan.vrany@fit.cvut.cz>
9739
9740 * mi/mi-cmds.h (mi_cmd_complete): New function.
9741 * mi/mi-main.c (mi_cmd_complete): Likewise.
9742 * mi/mi-cmds.c: Define new MI command -complete.
9743 * NEWS: Mention new -complete command.
9744
9745 2019-01-24 Jan Vrany <jan.vrany@fit.cvut.cz>
9746
9747 * completer.h (complete): New function.
9748 * completer.c (complete): Likewise.
9749 * cli/cli-cmds.c: (complete_command): Update to use new complete()
9750 function defined in completer.h.
9751
9752 2019-05-17 Jan Vrany <jan.vrany@fit.cvut.cz>
9753
9754 * MAINTAINERS (Write After Approval): Add myself.
9755
9756 2019-05-17 Tom de Vries <tdevries@suse.de>
9757
9758 PR gdb/24094
9759 * dwarf2read.c (struct cu_partial_die_info): New struct.
9760 (find_partial_die): Return cu_partial_die_info.
9761 (partial_die_parent_scope, guess_partial_die_structure_name)
9762 (partial_die_info::fixup): Handle new return type of find_partial_die.
9763
9764 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
9765
9766 PR breakpoints/24541
9767 * stap-probe.c (stap_parse_register_operand): Make "regname" an
9768 "std::string", simplifying the algorithm.
9769
9770 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
9771
9772 * stap-probe.c (handle_stap_probe): Fix complaint formatting.
9773 (stap_static_probe_ops::get_probes): Likewise.
9774
9775 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
9776
9777 * stap-probe.c (stap_parse_register_operand): Make "if (*p->arg ==
9778 '-')" and "else if".
9779 (stap_parse_single_operand): Join checks for
9780 "gdbarch_stap_parse_special_token_p" and
9781 "gdbarch_stap_parse_special_token" in the same "if" statement.
9782 Invert check when verifying for operation on register
9783 displacement.
9784
9785 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
9786
9787 * stap-probe.c (stap_get_opcode): Update comment.
9788 (stap_get_expected_argument_type): Likewise.
9789 (handle_stap_probe): Likewise.
9790
9791 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
9792
9793 * i386-tdep.c (i386_stap_parse_special_token_triplet): Change
9794 return type to 'bool'. Adjust comment. Use 'bool' when
9795 appropriate.
9796 (i386_stap_parse_special_token_three_arg_disp): Likewise.
9797 * stap-probe.c (stap_parse_argument_1): Likewise.
9798 (stap_is_operator): Likewise.
9799 (stap_is_generic_prefix): Likewise.
9800 (stap_is_register_prefix): Likewise.
9801 (stap_is_register_indirection_prefix): Likewise.
9802 (stap_is_integer_prefix): Likewise.
9803 (stap_generic_check_suffix): Likewise.
9804 (stap_check_integer_suffix): Likewise.
9805 (stap_check_register_suffix): Likewise.
9806 (stap_check_register_indirection_suffix): Likewise.
9807 (stap_parse_register_operand): Likewise.
9808 (stap_parse_single_operand): Likewise.
9809 (stap_parse_argument_1): Likewise.
9810 (stap_probe::get_argument_count): Likewise.
9811 (stap_is_operator): Likewise.
9812
9813 2019-05-16 Tom Tromey <tromey@adacore.com>
9814
9815 * darwin-nat.c (thread_info_from_private_thread_info): Add struct
9816 keyword to foreach.
9817
9818 2019-05-15 Simon Marchi <simon.marchi@efficios.com>
9819
9820 * linux-thread-db.c (try_thread_db_load_1): Change return type
9821 to bool.
9822 (try_thread_db_load): Likewise.
9823 (try_thread_db_load_from_pdir_1): Likewise.
9824 (try_thread_db_load_from_pdir): Likewise.
9825 (try_thread_db_load_from_sdir): Likewise.
9826 (try_thread_db_load_from_dir): Likewise.
9827 (thread_db_load_search): Likewise.
9828 (has_libpthread): Likewise.
9829 (thread_db_load): Likewise.
9830
9831 2019-05-15 Sergio Durigan Junior <sergiodj@redhat.com>
9832
9833 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192
9834 * dwarf2read.c (parse_macro_definition): Check whether 'body' is
9835 NULL, and complain/return if that's the case.
9836
9837 2019-05-15 John Darrington <john@darrington.wattle.id.au>
9838
9839 * s12z-tdep.c (push_pull_get_stack_adjustment): New function.
9840 (advance, posn, abstract_read_memory): New functions.
9841 [struct mem_read_abstraction]: New struct.
9842 (s12z_frame_cache): Use opcodes API to interpret stack frame code.
9843
9844 2019-05-14 Tom Tromey <tromey@adacore.com>
9845
9846 * ada-lang.c (coerce_unspec_val_to_type): Only set address when
9847 value is not lval_memory.
9848
9849 2019-05-14 Tom Tromey <tromey@adacore.com>
9850
9851 * solib.c (info_sharedlibrary_command): Style the file name.
9852
9853 2019-05-14 Alan Hayward <alan.hayward@arm.com>
9854
9855 * aarch64-tdep.c (aarch64_vnh_type): Add half view.
9856 (aarch64_vnv_type): Likewise.
9857 * target-descriptions.c (make_gdb_type): Add TDESC_TYPE_IEEE_HALF.
9858 * common/tdesc.c: Likewise.
9859 * common/tdesc.h (enum tdesc_type_kind): Likewise.
9860 * features/aarch64-fpu.c (create_feature_aarch64_fpu): Regenerate.
9861 * features/aarch64-fpu.xml: Add ieee half view.
9862 * features/aarch64-sve.c (create_feature_aarch64_fpu): Likewise.
9863 * gdbtypes.c (gdbtypes_post_init): Add builtin_half
9864 * gdbtypes.h (struct builtin_type): Likewise.
9865 (struct objfile_type): Likewise.
9866
9867 2019-05-12 Paul Naert <paul.naert@polymtl.ca>
9868
9869 * language.c (language_sniff_from_mangled_name): Fix "langauge"
9870 typo.
9871 * location.h (string_to_event_location): Likewise.
9872
9873 2019-05-11 Joel Brobecker <brobecker@adacore.com>
9874
9875 GDB 8.3 released.
9876
9877 2019-05-10 Simon Marchi <simon.marchi@efficios.com>
9878
9879 * breakpoint.h (fix_multi_location_breakpoint_output_globally):
9880 New variable declaration.
9881 * breakpoint.c (fix_multi_location_breakpoint_output_globally):
9882 New variable.
9883 (print_one_breakpoint): Use ui_out::test_flags and new global
9884 variable to compute use_fixed_output.
9885 * mi/mi-main.h (mi_multi_location_breakpoint_output_fixed):
9886 Remove.
9887 * mi/mi-main.c (fix_multi_location_breakpoint_output): Remove.
9888 (mi_multi_location_breakpoint_output_fixed): Remove.
9889 (mi_cmd_fix_multi_location_breakpoint_output): Adjust to set the
9890 new variable.
9891 * mi/mi-out.c (mi_ui_out::mi_ui_out): Set
9892 fix_multi_location_breakpoint_output flag if version >= 3.
9893 * ui-out.h (enum ui_out_flag)
9894 <fix_multi_location_breakpoint_output>: New enumerator.
9895
9896 2019-05-10 Simon Marchi <simon.marchi@efficios.com>
9897
9898 * contrib/cc-with-tweaks.sh: Validate dwz's work.
9899
9900 2019-05-10 Tom Tromey <tromey@adacore.com>
9901
9902 * ada-lang.c (catch_ada_completer): New function.
9903 (_initialize_ada_language): Use it.
9904
9905 2019-05-10 Tom Tromey <tromey@adacore.com>
9906
9907 * thread.c (print_thread_info): Make "requested_threads" const.
9908 * gdbthread.h (print_thread_info): Make "requested_threads"
9909 const.
9910 * ada-tasks.c (print_ada_task_info): Make "taskno_str" const.
9911 * ada-lang.h (print_ada_task_info): Make "taskno_str" const.
9912
9913 2019-05-08 Tom Tromey <tom@tromey.com>
9914
9915 * gdbtypes.c (objfile_type_data): Change type.
9916 (objfile_type, _initialize_gdbtypes): Update.
9917
9918 2019-05-08 Tom Tromey <tom@tromey.com>
9919
9920 * dwarf2-frame.c (dwarf2_frame_objfile_data): Change type.
9921 (dwarf2_frame_find_fde, dwarf2_build_frame_info)
9922 (_initialize_dwarf2_frame): Update.
9923
9924 2019-05-08 Tom Tromey <tom@tromey.com>
9925
9926 * objc-lang.c (objc_objfile_data): Change type.
9927 (find_methods): Update.
9928 (_initialize_objc_lang): Remove.
9929
9930 2019-05-08 Tom Tromey <tom@tromey.com>
9931
9932 * stabsread.c (rs6000_builtin_type_data): Change type.
9933 (rs6000_builtin_type, _initialize_stabsread): Update.
9934
9935 2019-05-08 Tom Tromey <tom@tromey.com>
9936
9937 * mips-tdep.c (mips_pdr_data): Remove.
9938 (_initialize_mips_tdep): Update.
9939
9940 2019-05-08 Tom Tromey <tom@tromey.com>
9941
9942 * hppa-tdep.c (hppa_objfile_priv_data): Change type.
9943 (hppa_init_objfile_priv_data, read_unwind_info)
9944 (find_unwind_entry, _initialize_hppa_tdep): Update.
9945
9946 2019-05-08 Tom Tromey <tom@tromey.com>
9947
9948 * elfread.c (elf_objfile_gnu_ifunc_cache_data): Change type.
9949 (elf_gnu_ifunc_record_cache): Update. Don't allocate hash table
9950 on obstack.
9951 (elf_gnu_ifunc_resolve_by_cache, _initialize_elfread): Update.
9952
9953 2019-05-08 Tom Tromey <tom@tromey.com>
9954
9955 * mdebugread.c (basic_type_data): Change type.
9956 (basic_type, _initialize_mdebugread): Update.
9957
9958 2019-05-08 Tom Tromey <tom@tromey.com>
9959
9960 * common/gdb_unique_ptr.h (struct noop_deleter): New.
9961
9962 2019-05-08 Tom Tromey <tom@tromey.com>
9963
9964 * nto-tdep.c (nto_inferior_data_reg): Change type.
9965 (nto_inferior_data): Update.
9966 (nto_inferior_data_cleanup, nto_new_inferior_data)
9967 (_initialize_nto_tdep): Remove.
9968 * nto-tdep.h (struct nto_inferior_data): Add initializers.
9969
9970 2019-05-08 Tom Tromey <tom@tromey.com>
9971
9972 * ada-lang.c (struct ada_inferior_data): Add initializers.
9973 (ada_inferior_data): Change type.
9974 (ada_inferior_data_cleanup): Remove.
9975 (get_ada_inferior_data, ada_inferior_exit)
9976 (struct ada_pspace_data): Add initializers, destructor.
9977 (ada_pspace_data_handle): Change type.
9978 (get_ada_pspace_data): Update.
9979 (ada_pspace_data_cleanup): Remove.
9980
9981 2019-05-08 Tom Tromey <tom@tromey.com>
9982
9983 * coffread.c (struct coff_symfile_info): Add initializers.
9984 (coff_objfile_data_key): Move lower. Change type.
9985 (coff_symfile_init, coff_symfile_read, _initialize_coffread):
9986 Update.
9987 (coff_free_info): Remove.
9988
9989 2019-05-08 Tom Tromey <tom@tromey.com>
9990
9991 * fbsd-tdep.c (struct fbsd_pspace_data): Add initializers.
9992 (fbsd_pspace_data_handle): Move lower. Change type.
9993 (get_fbsd_pspace_data): Update.
9994 (fbsd_pspace_data_cleanup): Remove.
9995 (_initialize_fbsd_tdep): Update.
9996
9997 2019-05-08 Tom Tromey <tom@tromey.com>
9998
9999 * ada-tasks.c (ada_tasks_pspace_data_handle): Change type.
10000 (get_ada_tasks_pspace_data): Update.
10001 (ada_tasks_pspace_data_cleanup): Remove.
10002 (_initialize_tasks): Update.
10003 (ada_tasks_inferior_data_handle): Change type.
10004 (get_ada_tasks_inferior_data): Update.
10005 (ada_tasks_inferior_data_cleanup): Remove.
10006 (struct ada_tasks_pspace_data): Add initializers.
10007
10008 2019-05-08 Tom Tromey <tom@tromey.com>
10009
10010 * symfile.h (struct sym_probe_fns) <sym_get_probes>: Change type.
10011 * symfile-debug.c (debug_sym_get_probes): Change type.
10012 * stap-probe.c (handle_stap_probe):
10013 (stap_static_probe_ops::get_probes): Change type.
10014 * probe.h (class static_probe_ops) <get_probes>: Change type.
10015 * probe.c (class any_static_probe_ops) <get_probes>: Change type.
10016 (parse_probes_in_pspace): Update.
10017 (find_probes_in_objfile, find_probe_by_pc, collect_probes):
10018 Update.
10019 (any_static_probe_ops::get_probes): Change type.
10020 * elfread.c (elfread_data): New typedef.
10021 (probe_key): Change type.
10022 (elf_get_probes): Likewise. Update.
10023 (probe_key_free): Remove.
10024 (_initialize_elfread): Update.
10025 * dtrace-probe.c (class dtrace_static_probe_ops) <get_probes>:
10026 Change type.
10027 (dtrace_process_dof_probe, dtrace_process_dof)
10028 (dtrace_static_probe_ops::get_probe): Change type.
10029
10030 2019-05-08 Tom Tromey <tom@tromey.com>
10031
10032 * xcoffread.c (struct xcoff_symfile_info): Rename from
10033 coff_symfile_info. Add initializers.
10034 (xcoff_objfile_data_key): Move lower. Change type.
10035 (XCOFF_DATA): Rewrite.
10036 (xcoff_free_info): Remove.
10037 (xcoff_symfile_init, _initialize_xcoffread, read_xcoff_symtab)
10038 (read_symbol, read_symbol_lineno, find_linenos, init_stringtab)
10039 (xcoff_initial_scan): Update.
10040
10041 2019-05-08 Tom Tromey <tom@tromey.com>
10042
10043 * solib-svr4.c (struct svr4_info): Add initializers and
10044 destructor.
10045 <probes_table>: Now an htab_up.
10046 (solib_svr4_pspace_data): Change type.
10047 (free_probes_table): Simplify.
10048 (~svr4_info): Rename from svr4_pspace_data_cleanup.
10049 (get_svr4_info, probes_table_htab_remove_objfile_probes)
10050 (probes_table_remove_objfile_probes, register_solib_event_probe)
10051 (solib_event_probe_at, svr4_update_solib_event_breakpoint)
10052 (_initialize_svr4_solib): Update.
10053
10054 2019-05-08 Tom Tromey <tom@tromey.com>
10055
10056 * remote.c (remote_pspace_data): Change type.
10057 (remote_pspace_data_cleanup): Remove.
10058 (get_remote_exec_file, set_pspace_remote_exec_file)
10059 (_initialize_remote): Update.
10060
10061 2019-05-08 Tom Tromey <tom@tromey.com>
10062
10063 * breakpoint.c (breakpoint_objfile_key): Change type.
10064 (get_breakpoint_objfile_data): Update.
10065 (free_breakpoint_objfile_data): Remove.
10066 (_initialize_breakpoint): Update.
10067
10068 2019-05-08 Tom Tromey <tom@tromey.com>
10069
10070 * linux-tdep.c (struct linux_info): Add initializers.
10071 (linux_inferior_data): Move. Change type.
10072 (invalidate_linux_cache_inf): Update.
10073 (linux_inferior_data_cleanup): Remove.
10074 (get_linux_inferior_data, _initialize_linux_tdep): Update.
10075
10076 2019-05-08 Tom Tromey <tom@tromey.com>
10077
10078 * auxv.c (auxv_inferior_data): Move. Change type.
10079 (auxv_inferior_data_cleanup): Remove.
10080 (invalidate_auxv_cache_inf): Rewrite.
10081 (get_auxv_inferior_data, _initialize_auxv): Update.
10082
10083 2019-05-08 Tom Tromey <tom@tromey.com>
10084
10085 * symfile-debug.c (struct debug_sym_fns_data): Add initializers.
10086 (symfile_debug_objfile_data_key): Change type.
10087 (symfile_debug_installed, debug_qf_has_symbols)
10088 (debug_qf_find_last_source_symtab)
10089 (debug_qf_forget_cached_source_info)
10090 (debug_qf_map_symtabs_matching_filename, debug_qf_lookup_symbol)
10091 (debug_qf_print_stats, debug_qf_dump)
10092 (debug_qf_expand_symtabs_for_function)
10093 (debug_qf_expand_all_symtabs)
10094 (debug_qf_expand_symtabs_with_fullname)
10095 (debug_qf_map_matching_symbols)
10096 (debug_qf_expand_symtabs_matching)
10097 (debug_qf_find_pc_sect_compunit_symtab)
10098 (debug_qf_map_symbol_filenames)
10099 (debug_qf_find_compunit_symtab_by_address, debug_sym_get_probes)
10100 (debug_sym_new_init, debug_sym_init, debug_sym_read)
10101 (debug_sym_read_psymbols, debug_sym_finish, debug_sym_offsets)
10102 (debug_sym_read_linetable, debug_sym_relocate): Update.
10103 (symfile_debug_free_objfile): Remove.
10104 (install_symfile_debug_logging, _initialize_symfile_debug):
10105 Update.
10106
10107 2019-05-08 Tom Tromey <tom@tromey.com>
10108
10109 * dwarf2read.h (struct dwarf2_per_objfile): Don't inherit from
10110 allocate_on_obstack.
10111 * dwarf2read.c (dwarf2_objfile_data_key): Change type.
10112 (get_dwarf2_per_objfile): Update.
10113 (set_dwarf2_per_objfile): Remove.
10114 (dwarf2_has_info, dwarf2_get_section_info): Update.
10115 (dwarf2_free_objfile): Remove.
10116 (_initialize_dwarf2_read): Update.
10117
10118 2019-05-08 Tom Tromey <tom@tromey.com>
10119
10120 * auto-load.c (struct auto_load_pspace_info): Add destructor and
10121 initializers.
10122 <unsupported_script_warning_printed,
10123 script_not_found_warning_printed>: Now bool.
10124 (auto_load_pspace_data): Change type.
10125 (~auto_load_pspace_info): Rename from
10126 auto_load_pspace_data_cleanup.
10127 (get_auto_load_pspace_data, init_loaded_scripts_info)
10128 (clear_section_scripts, maybe_print_unsupported_script_warning)
10129 (maybe_print_script_not_found_warning, _initialize_auto_load):
10130 Update.
10131
10132 2019-05-08 Tom Tromey <tom@tromey.com>
10133
10134 * objfiles.c (objfile_pspace_info): Add destructor and
10135 initializers.
10136 (objfiles_pspace_data): Change type.
10137 (~objfile_pspace_info): Rename from objfiles_pspace_data_cleanup.
10138 (get_objfile_pspace_data): Update.
10139 (objfiles_bfd_data): Change type.
10140 (get_objfile_bfd_data): Update.
10141 (objfile_bfd_data_free, _initialize_objfiles): Remove.
10142
10143 2019-05-08 Tom Tromey <tom@tromey.com>
10144
10145 * break-catch-syscall.c (catch_syscall_inferior_data): Move.
10146 Change type.
10147 (get_catch_syscall_inferior_data): Update.
10148 (catch_syscall_inferior_data_cleanup): Remove.
10149 (_initialize_break_catch_syscall): Update.
10150
10151 2019-05-08 Tom Tromey <tom@tromey.com>
10152
10153 * inflow.c (struct terminal_info): Add destructor and
10154 initializers.
10155 (inflow_inferior_data): Change type.
10156 (~terminal_info): Rename from inflow_inferior_data_cleanup.
10157 (get_inflow_inferior_data, inflow_inferior_exit)
10158 (swap_terminal_info, _initialize_inflow): Update.
10159
10160 2019-05-08 Tom Tromey <tom@tromey.com>
10161
10162 * target-dcache.c (target_dcache_cleanup): Remove.
10163 (target_dcache_aspace_key): Change type.
10164 (target_dcache_init_p, target_dcache_invalidate)
10165 (target_dcache_get, target_dcache_get_or_init)
10166 (_initialize_target_dcache): Update.
10167 * dcache.h (struct dcache_deleter): New.
10168
10169 2019-05-08 Tom Tromey <tom@tromey.com>
10170
10171 * symtab.c (struct symbol_cache): Add destructor and
10172 initializers.
10173 (symbol_cache_key): Move. Change type.
10174 (make_symbol_cache, free_symbol_cache): Remove.
10175 (get_symbol_cache): Update.
10176 (symbol_cache_cleanup): Remove.
10177 (ALL_PSPACES, symbol_cache_flush)
10178 (maintenance_print_symbol_cache)
10179 (maintenance_print_symbol_cache_statistics, _initialize_symtab):
10180 Update.
10181
10182 2019-05-08 Tom Tromey <tom@tromey.com>
10183
10184 * symtab.c (struct main_info): Add destructor and initializers.
10185 (main_progspace_key): Move. Change type.
10186 (get_main_info): Update.
10187 (main_info_cleanup): Remove.
10188 (_initialize_symtab): Update.
10189
10190 2019-05-08 Tom Tromey <tom@tromey.com>
10191
10192 * registry.h (DECLARE_REGISTRY): Define the _key class.
10193
10194 2019-05-08 Andrew Burgess <andrew.burgess@embecosm.com>
10195
10196 * NEWS: Merge two 'New commands' sections.
10197
10198 2019-05-08 Joel Brobecker <brobecker@adacore.com>
10199
10200 * ada-valprint.c (ada_val_print_gnat_array): Remove language
10201 parameter and use Ada language definition instead.
10202 (ada_val_print_ptr): Remove unused language parameter.
10203 (ada_val_print_num): Remove language parameter and use Ada language
10204 definition instead.
10205 (ada_val_print_enum, ada_val_print_flt): Remove unused language
10206 parameter.
10207 (ada_val_print_struct_union, ada_val_print_ref): Remove language
10208 parameter and use Ada language definition instead.
10209 (ada_val_print_1): Update all ada_val_print_xxx calls.
10210 Remove language parameter.
10211 (ada_val_print): Update ada_val_print_1 call.
10212
10213 2019-05-08 Tom Tromey <tromey@adacore.com>
10214
10215 * remote.c (remote_hw_watchpoint_limit)
10216 (remote_hw_watchpoint_length_limit, remote_hw_breakpoint_limit):
10217 Now static.
10218
10219 2019-05-08 Tom Tromey <tromey@adacore.com>
10220
10221 * maint.c (_initialize_maint_cmds): Move initialization code to
10222 remote.c.
10223 (watchdog, show_watchdog): Move to remote.c.
10224 * remote.c (watchdog, show_watchdog): Move from maint.c. Make
10225 "watchdog" static.
10226 (_initialize_remote): Move initialization code from maint.c.
10227 * defs.h (watchdog): Don't declare.
10228
10229 2019-05-08 Tom Tromey <tromey@adacore.com>
10230
10231 * tui/tui-interp.c: Include main.h.
10232 * interps.c: Include main.h.
10233 * main.h (interpreter_p): Declare.
10234 * defs.h (interpreter_p): Don't declare.
10235
10236 2019-05-08 Tom Tromey <tromey@adacore.com>
10237
10238 * dwarf2loc.c: Include dwarf2read.h.
10239 * defs.h (read_unsigned_leb128): Don't declare.
10240 * dwarf2read.h (read_unsigned_leb128): Declare.
10241
10242 2019-05-08 Tom Tromey <tromey@adacore.com>
10243
10244 * utils.c (fputs_maybe_filtered): Call can_emit_style_escape as a
10245 method.
10246
10247 2019-05-08 Tom Tromey <tromey@adacore.com>
10248
10249 * utils.c (fputs_maybe_filtered): Reset style after paging, even
10250 when no wrap column is set.
10251
10252 2019-05-08 Tom Tromey <tromey@adacore.com>
10253
10254 * c-lang.c (c_get_string): Handle non-C-style arrays.
10255
10256 2019-05-08 Tom Tromey <tromey@adacore.com>
10257
10258 * typeprint.c (print_offset_data::update): Print the bit offset,
10259 not the number of bits remaining.
10260
10261 2019-05-08 Tom Tromey <tromey@adacore.com>
10262
10263 * typeprint.c (print_offset_data::maybe_print_hole): Add extra
10264 padding at end of comment.
10265
10266 2019-05-08 Tom Tromey <tromey@adacore.com>
10267
10268 * dwarf2loc.c (dwarf2_evaluate_property) <PROP_ADDR_OFFSET>:
10269 Compare main types.
10270
10271 2019-05-06 Tom Tromey <tom@tromey.com>
10272
10273 * common/scoped_mmap.c: Include common-defs.h.
10274 * common/scoped_mmap.h: Don't include config.h.
10275
10276 2019-05-04 Tom Tromey <tom@tromey.com>
10277
10278 * aarch64-tdep.c (stack_item_t): Remove typedef and DEF_VEC.
10279 (struct aarch64_call_info): Add initializers.
10280 <si>: Now a std::vector.
10281 (pass_on_stack, aarch64_push_dummy_call): Update.
10282
10283 2019-05-04 Simon Marchi <simon.marchi@efficios.com>
10284 Tom Tromey <tom@tromey.com>
10285
10286 * ppc-linux-nat.c (thread_points_p): Remove typedef and DEF_VEC.
10287 (ppc_threads): Now a std::vector. Now static.
10288 (hwdebug_find_thread_points_by_tid)
10289 (ppc_linux_nat_target::low_new_thread, ppc_linux_thread_exit):
10290 Update.
10291
10292 2019-05-04 Tom Tromey <tom@tromey.com>
10293
10294 * arc-tdep.c (arc_tdesc_init): Return bool.
10295
10296 2019-05-04 Tom Tromey <tom@tromey.com>
10297
10298 * arm-linux-nat.c (arm_linux_nat_target::can_use_hw_breakpoint):
10299 Use gdb_assert_not_reached.
10300
10301 2019-05-04 Tom Tromey <tom@tromey.com>
10302
10303 * compile/compile-cplus-types.c (compile_cplus_convert_enum): Use
10304 "false".
10305
10306 2019-05-04 Tom Tromey <tom@tromey.com>
10307
10308 * arc-tdep.c (arc_tdesc_init): Use bool.
10309
10310 2019-05-04 Tom Tromey <tom@tromey.com>
10311
10312 * stack.c (select_frame_for_mi): Use "false", not "FALSE".
10313
10314 2019-05-04 Tom Tromey <tom@tromey.com>
10315
10316 * cli/cli-cmds.c (valid_command_p): Return bool.
10317
10318 2019-05-04 Tom Tromey <tom@tromey.com>
10319
10320 * cli/cli-decode.c (valid_user_defined_cmd_name_p): Return bool.
10321 * command.h (valid_user_defined_cmd_name_p): Channge return type.
10322
10323 2019-05-04 Raul Tambre <raul@tambre.ee>
10324
10325 * python/lib/gdb/prompt.py (_ExtendedPrompt)
10326 <before_prompt_hook, get_show_string>: Fix incorrect use of 'is'
10327 operator for comparison.
10328
10329 2019-05-04 Tom Tromey <tom@tromey.com>
10330
10331 * psymtab.c (psymbol_name_matches, match_partial_symbol)
10332 (lookup_partial_symbol, print_partial_symbols)
10333 (recursively_search_psymtabs, sort_pst_symbols, psymbol_hash)
10334 (psymbol_compare): Update.
10335 (add_psymbol_to_bcache): Clear the entire psymbol.
10336 (maintenance_check_psymtabs): Update.
10337 * psympriv.h (struct partial_symbol): Don't derive from
10338 general_symbol_info.
10339 <obj_section, unrelocated_address, address,
10340 set_unrelocated_address>: Update.
10341 <ginfo>: New member.
10342 * dwarf-index-write.c (write_psymbols, debug_names::insert)
10343 (debug_names::write_psymbols): Update.
10344
10345 2019-05-04 Tom de Vries <tdevries@suse.de>
10346
10347 * contrib/cc-with-tweaks.sh: Support -n arg.
10348
10349 2019-05-04 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10350
10351 * corelow.c (core_target::detach): Ensure frame cache and
10352 register caches are cleared.
10353 inferior.c (exit_inferior_1): Likewise.
10354
10355 2019-05-03 Sandra Loosemore <sandra@codesourcery.com>
10356 Tom Tromey <tom@tromey.com>
10357
10358 * dictionary.c (collate_pending_symbols_by_language): Remove
10359 "struct" from foreach.
10360 * symtab.c (lookup_global_symbol_from_objfile)
10361 (lookup_symbol_in_objfile_from_linkage_name): Remove "struct" from
10362 foreach.
10363 * ser-tcp.c (net_open): Remove "struct" from foreach.
10364 * objfiles.c (objfile_relocate, objfile_rebase)
10365 (objfile_has_symbols): Remove "struct" from foreach.
10366 * minsyms.c (lookup_minimal_symbol_by_pc_section): Remove "struct"
10367 from foreach.
10368 * dwarf2read.c (handle_struct_member_die): Remove "struct" from
10369 foreach.
10370 * darwin-nat.c (thread_info_from_private_thread_info): Remove
10371 "struct" from foreach.
10372 * ada-lang.c (create_excep_cond_exprs)
10373 (ada_exception_catchpoint_cond_string): Remove "struct" from
10374 foreach.
10375
10376 2019-05-03 Tom Tromey <tromey@adacore.com>
10377
10378 * ada-exp.y (convert_char_literal): Check suffix of each
10379 enumerator.
10380
10381 2019-05-03 Dilyan Palauzov <dilyan.palauzov@aegee.org>
10382
10383 PR ada/21406:
10384 * ada-exp.y (yywrap): Don't define.
10385 * ada-lex.l (%option): Add noyywrap
10386 (yywrap): Remove.
10387
10388 2019-05-03 Eli Zaretskii <eliz@gnu.org>
10389
10390 * common/common-defs.h [__MINGW32__ || __CYGWIN__]: Define
10391 _WIN32_WINNT to the XP level, unless already defined to a higher
10392 level.
10393
10394 * unittests/parse-connection-spec-selftests.c:
10395 * ser-tcp.c:
10396 * common/netstuff.c [USE_WIN32API]: Remove the _WIN32_WINNT
10397 override.
10398
10399 * symfile.c (find_separate_debug_file): Remove colon from the
10400 drive spec of DOS/Windows file names of the target, so that the
10401 file name produced from DEBUGDIR and the target's directory will
10402 be valid on DOS/Windows systems.
10403
10404 2019-05-02 Andrew Burgess <andrew.burgess@embecosm.com>
10405
10406 * rust-lang.c (val_print_struct): Handle printing structures
10407 containing strings.
10408
10409 2019-05-02 Tom Tromey <tromey@adacore.com>
10410
10411 * valarith.c (_initialize_valarith): Remove.
10412
10413 2019-05-01 Tom Tromey <tromey@adacore.com>
10414
10415 * ada-lang.c (ada_value_primitive_field): Treat more fields as
10416 bitfields.
10417
10418 2019-05-01 Tom Tromey <tromey@adacore.com>
10419
10420 * ada-lang.c (ada_value_assign): Correctly compute starting offset
10421 for big-endian copies.
10422
10423 2019-04-30 Ali Tamur <tamur@google.com>
10424 * gdb/dwarf2read.c (read_3_bytes): New declaration.
10425 (read_attribute_value): Added DW_FORM_strx1-4 cases.
10426 (read_3_bytes): New function.
10427
10428 2019-04-30 Joel Brobecker <brobecker@adacore.com>
10429
10430 * windows-nat.c (main_thread_id): Delete.
10431 (handle_output_debug_string): Replace main_thread_id by
10432 current_event.dwThreadId.
10433 (fake_create_process): Likewise.
10434 (get_windows_debug_event) <CREATE_PROCESS_DEBUG_EVENT>:
10435 Do not set main_thread_id.
10436 <LOAD_DLL_DEBUG_EVENT>: Replace main_thread_id by
10437 current_event.dwThreadId.
10438 <UNLOAD_DLL_DEBUG_EVENT>: Likewise.
10439
10440 2019-04-30 Joel Brobecker <brobecker@adacore.com>
10441
10442 * windows-nat.c (get_windows_debug_event) <EXIT_PROCESS_DEBUG_EVENT>:
10443 Use current_event.dwThreadId instead of main_thread_id.
10444
10445 2019-04-30 Tom Tromey <tromey@adacore.com>
10446
10447 * ada-lang.c (ada_lookup_simple_minsyms): New function.
10448 (create_excep_cond_exprs): Iterate over program spaces.
10449 (ada_exception_catchpoint_cond_string): Examine all minimal
10450 symbols for exception types.
10451
10452 2019-04-30 Tom Tromey <tromey@adacore.com>
10453
10454 PR c++/24470:
10455 * dwarf2read.c (process_structure_scope): Handle case where type
10456 has template parameters but no symbol was created.
10457
10458 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
10459 Chris January <chris.january@arm.com>
10460
10461 * f-typeprint.c (f_type_print_base): Print 'allocatable' type
10462 qualifier.
10463 * gdbtypes.h (TYPE_IS_ALLOCATABLE): Define.
10464
10465 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
10466
10467 * f-typeprint.c (f_print_type): Update rules for printing
10468 whitespace.
10469 (f_type_print_varspec_suffix): Likewise.
10470
10471 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
10472 Chris January <chris.january@arm.com>
10473
10474 * f-typeprint.c (f_type_print_varspec_suffix): Handle printing
10475 function arguments.
10476
10477 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
10478
10479 * f-lang.c (build_fortran_types): Change name of void type to
10480 lower case.
10481 * f-typeprint.c (f_type_print_base): Print the name of the void
10482 type, rather than a fixed string.
10483 * f-valprint.c (f_decorations): Use lower case void string.
10484
10485 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
10486 Chris January <chris.january@arm.com>
10487
10488 * dwarf2read.c (dwarf2_init_complex_target_type): Use different
10489 types for Fortran.
10490
10491 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
10492 Chris January <chris.january@arm.com>
10493 David Lecomber <david.lecomber@arm.com>
10494
10495 * f-exp.y (BINOP_INTRINSIC): New token.
10496 (exp): New parser rule handling BINOP_INTRINSIC.
10497 (f77_keywords): Add new builtin procedures.
10498 * f-lang.c (evaluate_subexp_f): Handle BINOP_MOD, UNOP_FORTRAN_CEILING,
10499 UNOP_FORTRAN_FLOOR, BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
10500 (operator_length_f): Handle UNOP_FORTRAN_CEILING,
10501 UNOP_FORTRAN_FLOOR, BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
10502 (print_unop_subexp_f): New function.
10503 (print_binop_subexp_f): New function.
10504 (print_subexp_f): Handle UNOP_FORTRAN_CEILING, UNOP_FORTRAN_FLOOR,
10505 BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
10506 (dump_subexp_body_f): Likewise.
10507 (operator_check_f): Likewise.
10508 * fortran-operator.def: Add UNOP_FORTRAN_CEILING, UNOP_FORTRAN_FLOOR,
10509 BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX
10510
10511 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
10512
10513 * gdb/expprint.c (dump_subexp_body_standard): Remove use of
10514 UNOP_KIND.
10515 * gdb/expression.h (exp_opcode): Include 'fortran-operator.def'.
10516 * gdb/f-exp.y (exp): Rename UNOP_KIND to UNOP_FORTRAN_KIND.
10517 * gdb/f-lang.c (evaluate_subexp_f): Likewise.
10518 (operator_length_f): New fuction.
10519 (print_subexp_f): New function.
10520 (op_name_f): New function.
10521 (dump_subexp_body_f): New function.
10522 (operator_check_f): New function.
10523 (exp_descriptor_f): Replace standard expression handling functions
10524 with new functions.
10525 * gdb/fortran-operator.def: New file.
10526 * gdb/parse.c (operator_length_standard): Remove use of UNOP_KIND.
10527 * gdb/std-operator.def: Remove UNOP_KIND.
10528
10529 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
10530
10531 * std-operator.def: Remove unbalanced, stray double quote
10532 character.
10533
10534 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
10535 Chris January <chris.january@arm.com>
10536 Daniel Everett <daniel.everett@arm.com>
10537 Nick Forrington <nick.forrington@arm.com>
10538 Richard Bunt <richard.bunt@arm.com>
10539
10540 * cp-valprint.c (cp_print_value_fields): Allow an additional level
10541 of depth when printing anonymous structs or unions.
10542 * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer):
10543 Don't print either the top-level value, or the children if the
10544 max-depth is exceeded.
10545 (ppscm_print_children): When printing the key of a map, allow one
10546 extra level of depth.
10547 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Don't
10548 print either the top-level value, or the children if the max-depth
10549 is exceeded.
10550 (print_children): When printing the key of a map, allow one extra
10551 level of depth.
10552 * python/py-value.c (valpy_format_string): Add max_depth keyword.
10553 * valprint.c: (PRINT_MAX_DEPTH_DEFAULT): Define.
10554 (user_print_options): Initialise max_depth field.
10555 (val_print_scalar_or_string_type_p): New function.
10556 (val_print): Check to see if the max depth has been reached.
10557 (val_print_check_max_depth): Define new function.
10558 (show_print_max_depth): New function.
10559 (_initialize_valprint): Add 'print max-depth' option.
10560 * valprint.h (struct value_print_options) <max_depth>: New field.
10561 (val_print_check_max_depth): Declare new function.
10562 * NEWS: Document new feature.
10563
10564 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
10565
10566 * ada-lang.c (ada_language_defn): Initialise new field.
10567 * c-lang.c (c_is_string_type_p): New function.
10568 (c_language_defn): Initialise new field.
10569 (cplus_language_defn): Initialise new field.
10570 (asm_language_defn): Initialise new field.
10571 (minimal_language_defn): Initialise new field.
10572 * c-lang.h (c_is_string_type_p): Declare new function.
10573 * d-lang.c (d_language_defn): Initialise new field.
10574 * f-lang.c (f_is_string_type_p): New function.
10575 (f_language_defn): Initialise new field.
10576 * go-lang.c (go_is_string_type_p): New function.
10577 (go_language_defn): Initialise new field.
10578 * language.c (default_is_string_type_p): New function.
10579 (unknown_language_defn): Initialise new field.
10580 (auto_language_defn): Initialise new field.
10581 * language.h (struct language_defn) <la_is_string_type_p>: New
10582 member variable.
10583 (default_is_string_type_p): Declare new function.
10584 * m2-lang.c (m2_language_defn): Initialise new field.
10585 * objc-lang.c (objc_language_defn): Initialise new field.
10586 * opencl-lang.c (opencl_language_defn): Initialise new field.
10587 * p-lang.c (pascal_is_string_type_p): New function.
10588 (pascal_language_defn): Initialise new field.
10589 * rust-lang.c (rust_is_string_type_p): New function.
10590 (rust_language_defn): Initialise new field.
10591
10592 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
10593
10594 * language.h (struct language_defn) <la_struct_too_deep_ellipsis>:
10595 New field.
10596 * ada-lang.c (ada_language_defn): Initialise new field.
10597 * c-lang.c (c_language_defn): Likewise.
10598 (cplus_language_defn): Likewise.
10599 (asm_language_defn): Likewise.
10600 (minimal_language_defn): Likewise.
10601 * d-lang.c (d_language_defn): Likewise.
10602 * f-lang.c (f_language_defn): Likewise.
10603 * go-lang.c (go_language_defn): Likewise.
10604 * language.c (unknown_language_defn): Likewise.
10605 (auto_language_defn): Likewise.
10606 * m2-lang.c (m2_language_defn): Likewise.
10607 * objc-lang.c (objc_language_defn): Likewise.
10608 * opencl-lang.c (opencl_language_defn): Likewise.
10609 * p-lang.c (pascal_language_defn): Likewise.
10610 * rust-lang.c (rust_language_defn): Likewise.
10611
10612 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
10613
10614 * ada-lang.c (ada_is_character_type): Change return type to bool.
10615 (ada_is_string_type): Likewise.
10616 * ada-lang.h (ada_is_character_type): Update declaration
10617 (ada_is_string_type): Likewise.
10618
10619 2019-04-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10620
10621 Support style in 'frame|thread apply'
10622
10623 * gdbcmd.h (execute_command_to_string): New term_out parameter.
10624 * record.c (record_start, record_stop): Update callers of
10625 execute_command_to_string with false.
10626 * guile/guile.c (gdbscm_execute_gdb_command): Likewise.
10627 * ui-file.h (class ui_file): New term_out and can_emit_style_escape
10628 methods.
10629 (class string_file): New constructor with term_out parameter.
10630 Override methods term_out and can_emit_style_escape. New member
10631 term_out.
10632 (class stdio_file): Override can_emit_style_escape.
10633 (class tee_file): Override term_out and can_emit_style_escape.
10634 * utils.h (can_emit_style_escape): Remove.
10635 * utils.c (can_emit_style_escape): Likewise.
10636 Update all callers of can_emit_style_escape (SOMESTREAM) to
10637 SOMESTREAM->can_emit_style_escape.
10638 * source-cache.c (source_cache::get_source_lines): Likewise.
10639 * stack.c (frame_apply_command_count): Call execute_command_to_string
10640 passing the term_out characteristic of the current gdb_stdout.
10641 * thread.c (thr_try_catch_cmd): Likewise.
10642 * top.c (execute_command_to_string): pass term_out parameter
10643 to construct the string_file for the command output.
10644 * ui-file.c (term_cli_styling): New function (most code moved
10645 from utils.c can_emit_style_escape).
10646 (string_file::string_file, string_file::can_emit_style_escape,
10647 stdio_file::can_emit_style_escape, tee_file::term_out,
10648 tee_file::can_emit_style_escape): New functions.
10649
10650 2019-04-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10651
10652 * NEWS: Mention the new set|show may-call-functions.
10653 * infcall.c (may_call_functions_p): New variable.
10654 (show_may_call_functions_p): New function.
10655 (call_function_by_hand_dummy): Throws an error if not
10656 may-call-functions.
10657 (_initialize_infcall): Call add_setshow_boolean_cmd for
10658 may-call-functions.
10659
10660 2019-04-25 Keith Seitz <keiths@redhat.com>
10661
10662 PR c++/24367
10663 * cp-support.c (inspect_type): Don't attempt substitutions
10664 of symbol with the same name.
10665
10666 2019-04-25 Tom Tromey <tromey@adacore.com>
10667
10668 PR gdb/24475:
10669 * event-top.c (gdb_rl_callback_handler): Make "gdb_rl_expt"
10670 static.
10671
10672 2019-04-25 Tom Tromey <tromey@adacore.com>
10673
10674 * xml-support.c (struct gdb_xml_parser) <set_error>: Take an
10675 rvalue reference.
10676 (gdb_xml_start_element_wrapper, gdb_xml_end_element_wrapper)
10677 (gdb_xml_parser::parse): Use std::move.
10678 * python/python-internal.h (gdbpy_convert_exception): Take a const
10679 reference.
10680 * python/py-value.c (valpy_getitem, valpy_nonzero): Use
10681 std::move.
10682 * python/py-utils.c (gdbpy_convert_exception): Take a const
10683 reference.
10684 * python/py-inferior.c (infpy_write_memory, infpy_search_memory):
10685 Use std::move.
10686 * python/py-breakpoint.c (bppy_set_condition, bppy_set_commands):
10687 Use std::move.
10688 * mi/mi-main.c (mi_print_exception): Take a const reference.
10689 * main.c (handle_command_errors): Take a const reference.
10690 * linespec.c (parse_linespec): Use std::move.
10691 * infcall.c (run_inferior_call): Use std::move.
10692 (call_function_by_hand_dummy): Use std::move.
10693 * exec.c (try_open_exec_file): Use std::move.
10694 * exceptions.h (exception_print, exception_fprintf)
10695 (exception_print_same): Update.
10696 * exceptions.c (print_exception, exception_print)
10697 (exception_fprintf, exception_print_same): Change parameters to
10698 const reference.
10699 * event-top.c (gdb_rl_callback_read_char_wrapper): Update.
10700 * common/new-op.c: Use std::move.
10701 * common/common-exceptions.h (struct gdb_exception): Add move
10702 constructor.
10703 (struct gdb_exception_error, struct gdb_exception_quit, struct
10704 gdb_quit_bad_alloc): Change constructor to move constructor.
10705 (throw_exception): Change parameter to rvalue reference.
10706 * common/common-exceptions.c (throw_exception): Take rvalue
10707 reference.
10708 * cli/cli-interp.c (safe_execute_command): Use std::move.
10709 * breakpoint.c (insert_bp_location, location_to_sals): Use
10710 std::move.
10711
10712 2019-04-25 Tom Tromey <tromey@adacore.com>
10713
10714 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception)
10715 (gdbscm_throw_gdb_exception): Take a gdbscm_gdb_exception.
10716 * guile/scm-block.c, guile/scm-breakpoint.c, guile/scm-cmd.c,
10717 guile/scm-disasm.c, guile/scm-frame.c, guile/scm-lazy-string.c,
10718 guile/scm-math.c, guile/scm-param.c, guile/scm-ports.c,
10719 guile/scm-symbol.c, guile/scm-symtab.c, guile/scm-type.c,
10720 guile/scm-value.c: Use unpack.
10721 * guile/guile-internal.h (gdbscm_scm_from_gdb_exception): Take a
10722 gdbscm_gdb_exception.
10723 (gdbscm_throw_gdb_exception): Likewise.
10724 (struct gdbscm_gdb_exception): New.
10725 (unpack): New function.
10726 (gdbscm_wrap): Use unpack.
10727
10728 2019-04-25 Tom Tromey <tromey@adacore.com>
10729
10730 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept)
10731 (gdb_rl_callback_handler): Use std::move.
10732 * common/common-exceptions.h (struct gdb_exception): Add move
10733 assignment operator.
10734 (throw_exception_sjlj): Change "exception" to const reference.
10735 * common/common-exceptions.c (exceptions_state_mc_catch): Update.
10736 (throw_exception_sjlj): Change "exception" to const reference.
10737
10738 2019-04-25 Tom Tromey <tromey@adacore.com>
10739
10740 * xml-support.c (gdb_xml_parser::gdb_xml_parser): Update.
10741 * python/py-value.c (valpy_getitem, valpy_nonzero): Update.
10742 * python/py-inferior.c (infpy_write_memory, infpy_search_memory):
10743 Update.
10744 * python/py-breakpoint.c (bppy_set_condition, bppy_set_commands):
10745 Update.
10746 * mi/mi-interp.c (mi_interp::exec): Update.
10747 * linespec.c (parse_linespec): Update.
10748 * infcall.c (run_inferior_call): Update.
10749 * guile/scm-value.c (gdbscm_value_to_lazy_string): Update.
10750 * guile/scm-symbol.c (gdbscm_lookup_symbol)
10751 (gdbscm_lookup_global_symbol): Update.
10752 * guile/scm-param.c (gdbscm_parameter_value): Update.
10753 * guile/scm-frame.c (gdbscm_frame_read_register)
10754 (gdbscm_frame_read_var): Update.
10755 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Update.
10756 * exec.c (try_open_exec_file): Update.
10757 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept)
10758 (gdb_rl_callback_handler): Update.
10759 * common/common-exceptions.h (exception_none): Don't declare.
10760 * common/common-exceptions.c (exception_none): Don't define.
10761 (struct catcher) <exception>: Update.
10762 * cli/cli-interp.c (safe_execute_command): Update.
10763 * breakpoint.c (insert_bp_location, location_to_sals): Update.
10764
10765 2019-04-25 Ali Tamur <tamur@google.com>
10766
10767 * dwarf2read.c (skip_one_die): Add DW_FORM_strx.
10768 (read_attribute_value): Likewise.
10769 (dwarf2_read_addr_index): Update comment.
10770 (read_str_index): Add DW_FORM_strx.
10771 (dwarf2_string_attr): Likewise.
10772 (dwarf2_const_value_attr): Likewise.
10773 (dump_die_shallow): Likewise.
10774 (dwarf2_fetch_constant_bytes): Likewise.
10775 (skip_form_bytes): Likewise.
10776 * testsuite/lib/dwarf.exp (_handle_DW_FORM): Add DW_FORM_strx.
10777
10778 2019-04-25 Sergio Durigan Junior <sergiodj@redhat.com>
10779
10780 PR corefiles/11608
10781 PR corefiles/18187
10782 * linux-tdep.c (dump_mapping_p): Add new parameters ADDR and
10783 OFFSET. Verify if current mapping contains an ELF header.
10784 (linux_find_memory_regions_full): Adjust call to
10785 dump_mapping_p.
10786
10787 2019-04-25 Sandra Loosemore <sandra@codesourcery.com>
10788 Kang Li <kanglictf@gmail.com>
10789
10790 PR gdb/21600
10791
10792 * dwarf2-frame.c (read_initial_length): Be consistent about using
10793 unsigned representation of length.
10794 (decode_frame_entry_1): Likewise. Check for wraparound of
10795 end pointer as well as buffer overflow.
10796
10797 2019-04-24 Sergio Durigan Junior <sergiodj@redhat.com>
10798
10799 * aarch64-tdep.c (aarch64_gdbarch_init): Use "pulongest" to print
10800 "vq".
10801
10802 2019-04-24 Tom Tromey <tromey@adacore.com>
10803
10804 * amd64-tdep.c (amd64_has_unaligned_fields): Ignore bitfields.
10805
10806 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10807
10808 * s12z-tdep.c (s12z_unwind_pc): Delete.
10809 (s12z_unwind_sp): Delete.
10810 (s12z_gdbarch_init): Don't register deleted functions with
10811 gdbarch.
10812
10813 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10814
10815 * rl78-tdep.c (rl78_unwind_sp): Delete.
10816 (rl78_gdbarch_init): Don't register deleted function with gdbarch.
10817
10818 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10819
10820 * xstormy16-tdep.c (xstormy16_unwind_sp): Delete.
10821 (xstormy16_unwind_pc): Delete.
10822 (xstormy16_dummy_id): Delete.
10823 (xstormy16_gdbarch_init): Don't register deleted functions with
10824 gdbarch.
10825
10826 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10827
10828 * vax-tdep.c (vax_unwind_pc): Delete.
10829 (vax_gdbarch_init): Don't register deleted function with gdbarch.
10830
10831 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10832
10833 * v850-tdep.c (v850_unwind_sp): Delete.
10834 (v850_unwind_pc): Delete.
10835 (v850_dummy_id): Delete.
10836 (v850_gdbarch_init): Don't register deleted functions with
10837 gdbarch.
10838
10839 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10840
10841 * tilegx-tdep.c (tilegx_unwind_sp): Delete.
10842 (tilegx_unwind_pc): Delete.
10843 (tilegx_unwind_dummy_id): Delete.
10844 (tilegx_gdbarch_init): Don't register deleted functions with
10845 gdbarch.
10846
10847 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10848
10849 * tic6x-tdep.c (tic6x_unwind_sp): Delete.
10850 (tic6x_dummy_id): Delete.
10851 (tic6x_gdbarch_init): Don't register deleted functions with
10852 gdbarch.
10853
10854 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10855
10856 * sparc-tdep.c (sparc_unwind_pc): Delete.
10857 (sparc32_gdbarch_init): Don't register deleted function with
10858 gdbarch.
10859
10860 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10861
10862 * sh-tdep.c (sh_unwind_sp): Delete.
10863 (sh_unwind_pc): Delete.
10864 (sh_dummy_id): Delete.
10865 (sh_gdbarch_init): Don't register deleted functions with
10866 gdbarch.
10867
10868 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10869
10870 * score-tdep.c (score_unwind_sp): Delete.
10871 (score_unwind_pc): Delete.
10872 (score_dummy_id): Delete.
10873 (score_gdbarch_init): Don't register deleted functions with
10874 gdbarch.
10875
10876 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10877
10878 * rx-tdep.c (rx_unwind_pc): Delete.
10879 (rx_unwind_sp): Delete.
10880 (rx_dummy_id): Delete.
10881 (rx_gdbarch_init): Don't register deleted functions with
10882 gdbarch. Update comment.
10883
10884 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10885
10886 * rs6000-tdep.c (rs6000_unwind_pc): Delete.
10887 (rs6000_dummy_id): Delete.
10888 (rs6000_gdbarch_init): Don't register deleted functions with
10889 gdbarch.
10890
10891 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10892
10893 * or1k-tdep.c (or1k_dummy_id): Delete.
10894 (or1k_gdbarch_init): Don't register deleted function with gdbarch.
10895
10896 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10897
10898 * nios2-tdep.c (nios2_dummy_id): Delete.
10899 (nios2_unwind_sp): Delete.
10900 (nios2_gdbarch_init): Don't register deleted functions with
10901 gdbarch.
10902
10903 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10904
10905 * nds32-tdep.c (nds32_dummy_id): Delete.
10906 (nds32_unwind_pc): Delete.
10907 (nds32_unwind_sp): Delete.
10908 (nds32_gdbarch_init): Don't register deleted functions with
10909 gdbarch.
10910
10911 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10912
10913 * msp430-tdep.c (msp430_unwind_pc): Delete.
10914 (msp430_unwind_sp): Delete.
10915 (msp430_dummy_id): Delete.
10916 (msp430_gdbarch_init): Don't register deleted functions with
10917 gdbarch.
10918
10919 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10920
10921 * moxie-tdep.c (moxie_unwind_sp): Delete.
10922 (moxie_unwind_pc): Delete.
10923 (moxie_dummy_id): Delete.
10924 (moxie_gdbarch_init): Don't register deleted functions with
10925 gdbarch.
10926
10927 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10928
10929 * mn10300-tdep.c (mn10300_dummy_id): Delete.
10930 (mn10300_unwind_pc): Delete.
10931 (mn10300_unwind_sp): Delete.
10932 (mn10300_push_dummy_call): Use gdbarch_unwind_sp not
10933 mn10300_unwind_sp.
10934 (mn10300_frame_unwind_init): Don't register deleted functions with
10935 gdbarch.
10936
10937 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10938
10939 * mep-tdep.c (mep_unwind_pc): Delete.
10940 (mep_unwind_sp): Delete.
10941 (mep_dummy_id): Delete.
10942 (mep_gdbarch_init): Don't register deleted functions with
10943 gdbarch.
10944
10945 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10946
10947 * m68hc11-tdep.c (m68hc11_unwind_pc): Delete.
10948 (m68hc11_unwind_sp): Delete.
10949 (m68hc11_gdbarch_init): Don't register deleted functions with
10950 gdbarch.
10951
10952 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10953
10954 * m32r-tdep.c (m32r_unwind_sp): Delete.
10955 (m32r_unwind_pc): Delete.
10956 (m32r_dummy_id): Delete.
10957 (m32r_gdbarch_init): Don't register deleted functions with
10958 gdbarch.
10959
10960 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10961
10962 * m32c-tdep.c (m32c_unwind_pc): Delete.
10963 (m32c_unwind_sp): Delete.
10964 (m32c_dummy_id): Delete.
10965 (m32c_gdbarch_init): Don't register deleted functions with
10966 gdbarch.
10967
10968 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10969
10970 * gdb/lm32-tdep.c (lm32_unwind_sp): Delete.
10971 (lm32_unwind_pc): Delete.
10972 (lm32_dummy_id): Delete.
10973 (lm32_gdbarch_init): Don't register deleted functions with
10974 gdbarch.
10975
10976 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10977
10978 * gdb/iq2000-tdep.c (iq2000_unwind_sp): Delete.
10979 (iq2000_unwind_pc): Delete.
10980 (iq2000_dummy_id): Delete.
10981 (iq2000_gdbarch_init): Don't register deleted functions with
10982 gdbarch.
10983
10984 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10985
10986 * nds32-tdep.c (nds32_type_align): Delete.
10987 (nds32_push_dummy_call): Use type_align instead.
10988
10989 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10990
10991 * arm-tdep.c (arm_type_align): Only handle vector override case.
10992 (arm_push_dummy_call): Use type_align.
10993 (arm_gdbarch_init): Register arm_type_align gdbarch function.
10994
10995 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10996
10997 * aarch64-tdep.c (aarch64_type_align): Only handle vector override
10998 case.
10999 (pass_on_stack): Use type_align.
11000 (aarch64_gdbarch_init): Register aarch64_type_align gdbarch
11001 function.
11002
11003 2019-04-23 Tom Tromey <tromey@adacore.com>
11004
11005 * dwarf2read.c (line_header::file_name_at): Remove unused
11006 overload.
11007
11008 2019-04-23 Tom de Vries <tdevries@suse.de>
11009
11010 PR gdb/24438
11011 * contrib/cc-with-tweaks.sh: Remove superfluous .alt file after dwz
11012 invocation.
11013
11014
11015 2019-03-27 Ali Tamur <tamur@google.com>
11016
11017 * dwarf2-frame.c(dwarf_expr_executor::get_addr_index): Update comment
11018 * dwarf2expr.c(dwarf_expr_context::execute_stack_op): Add DW_OP_addrx
11019 * dwarf2expr.h(dwarf_expr_context::offset): Update comment
11020 (dwarf_expr_context::get_addr_index): Likewise
11021 * dwarf2loc.c(dwarf_evaluate_loc_desc::get_addr_index): Likewise
11022 (symbol_needs_eval_context::get_addr_index): Likewise
11023 (disassemble_dwarf_expression): Add DW_OP_addrx
11024 * dwarf2read.c(attr_value_as_address): Add DW_FORM_addrx
11025 (read_cutu_die_from_dwo): Update comment
11026 (skip_one_die): Add DW_FORM_addrx
11027 (read_attribute_value): Likewise
11028 (var_decode_location): Add DW_OP_addrx
11029 (dwarf2_const_value_attr): Add DW_FORM_addrx
11030 (dump_die_shallow): Likewise
11031 (dwarf2_fetch_constant_bytes): Likewise
11032 (decode_locdesc): Add DW_OP_addrx
11033 (skip_form_bytes): Add DW_FORM_addrx
11034
11035 2019-04-22 Ali Tamur <tamur@google.com>
11036
11037 * MAINTAINERS (Write After Approval): Add self.
11038
11039 2019-04-22 Simon Marchi <simon.marchi@efficios.com>
11040
11041 * solib-svr4.c (get_svr4_info): Add pspace parameter.
11042 (svr4_keep_data_in_core): Pass current_program_space to get_svr4_info.
11043 (open_symbol_file_object): Likewise.
11044 (svr4_default_sos): Add info parameter.
11045 (svr4_read_so_list): Likewise.
11046 (svr4_current_sos_direct): Adjust functions calls to pass down
11047 info.
11048 (svr4_current_sos_1): Add info parameter.
11049 (svr4_current_sos): Call get_svr4_info, pass info down to
11050 svr4_current_sos_1.
11051 (svr4_fetch_objfile_link_map): Pass objfile->pspace to
11052 get_svr4_info.
11053 (svr4_in_dynsym_resolve_code): Pass current_program_space to
11054 get_svr4_info.
11055 (probes_table_htab_remove_objfile_probes): Pass objfile->pspace
11056 to get_svr4_info.
11057 (probes_table_remove_objfile_probes): Likewise.
11058 (register_solib_event_probe): Add info parameter.
11059 (solist_update_incremental): Pass info parameter down to
11060 svr4_read_so_list.
11061 (disable_probes_interface): Add info parameter.
11062 (svr4_handle_solib_event): Pass current_program_space to
11063 get_svr4_info. Adjust disable_probes_interface cleanup.
11064 (svr4_create_probe_breakpoints): Add info parameter, pass it
11065 down to register_solib_event_probe.
11066 (svr4_create_solib_event_breakpoints): Add info parameter,
11067 pass it down to svr4_create_probe_breakpoints.
11068 (enable_break): Pass info down to
11069 svr4_create_solib_event_breakpoints.
11070 (svr4_solib_create_inferior_hook): Pass current_program_space to
11071 get_svr4_info.
11072 (svr4_clear_solib): Likewise.
11073
11074 2019-04-22 Pedro Alves <palves@redhat.com>
11075
11076 * solib-svr4.c (svr4_free_objfile_observer): New.
11077 (probe_and_action::objfile): New field.
11078 (probes_table_htab_remove_objfile_probes)
11079 (probes_table_remove_objfile_probes): New functions.
11080 (register_solib_event_probe): Add 'objfile' parameter. Store it
11081 in the new probe_and_action. Don't store the probe in 'lookup'.
11082 (svr4_create_probe_breakpoints): Pass objfile to
11083 register_solib_event_probe.
11084 (_initialize_svr4_solib): Register a free_objfile observer.
11085
11086 2019-04-19 Tom Tromey <tom@tromey.com>
11087
11088 * common/queue.h: Remove.
11089
11090 2019-04-19 Tom Tromey <tom@tromey.com>
11091
11092 * event-loop.c: Don't include "common/queue.h".
11093
11094 2019-04-19 Tom Tromey <tom@tromey.com>
11095
11096 * remote.c (remote_target): Use delete.
11097 * remote-notif.h: Include <list>, not "common/queue.h".
11098 (notif_client_p): Remove typedef.
11099 (remote_notif_state): Add constructor, destructor, initializer.
11100 <notif_queue>: Now a std::list.
11101 (remote_notif_state_xfree): Don't declare.
11102 * remote-notif.c (remote_notif_process, handle_notification)
11103 (remote_notif_state_allocate): Update.
11104 (~remote_notif_state): Rename from remote_notif_state_xfree.
11105
11106 2019-04-19 Tom Tromey <tom@tromey.com>
11107
11108 * symfile.c (reread_symbols): Update.
11109 * objfiles.c (objfile_register_static_link)
11110 (objfile_lookup_static_link): Update
11111 (~objfile) Don't delete static_links.
11112 * objfiles.h (struct objfile) <static_links>: Now an htab_up.
11113
11114 2019-04-19 Tom Tromey <tom@tromey.com>
11115
11116 * type-stack.h (struct type_stack) <insert>: Constify string.
11117 * type-stack.c (type_stack::insert): Constify string.
11118 * gdbtypes.h (lookup_template_type): Update.
11119 (address_space_name_to_int): Update.
11120 * gdbtypes.c (address_space_name_to_int): Make space_identifier
11121 const.
11122 (lookup_template_type): Make name const.
11123 * c-exp.y: Update rules.
11124 (lex_one_token, classify_name, classify_inner_name)
11125 (c_print_token): Update.
11126 * p-exp.y: Update rules.
11127 (yylex): Update.
11128 * f-exp.y: Update rules.
11129 (yylex): Update.
11130 * d-exp.y: Update rules.
11131 (lex_one_token, classify_name, classify_inner_name): Update.
11132 * parse.c (write_dollar_variable, copy_name): Return std::string.
11133 * parser-defs.h (copy_name): Change return type.
11134 * m2-exp.y: Update rules.
11135 (yylex): Update.
11136 * go-exp.y (lex_one_token): Update.
11137 Update rules.
11138 (classify_unsafe_function, classify_packaged_name)
11139 (classify_name, yylex): Update.
11140
11141 2019-04-19 Sergei Trofimovich <siarheit@google.com>
11142
11143 * configure.ac: add --enable-source-highlight switch.
11144 * configure: Regenerate.
11145 * top.c (print_gdb_version): plumb --enable-source-highlight
11146 status to "show configuration".
11147
11148 2019-04-19 Tom Tromey <tromey@adacore.com>
11149
11150 * ada-lang.c (ada_is_variant_part, ada_to_fixed_type_1):
11151 Check ADA_TYPE_P.
11152 (empty_record, ada_template_to_fixed_record_type_1)
11153 (template_to_static_fixed_type)
11154 (to_record_with_fixed_variant_part): Use INIT_NONE_SPECIFIC.
11155 * cp-abi.c (value_rtti_type): Check HAVE_CPLUS_STRUCT.
11156 * gdbtypes.h (INIT_NONE_SPECIFIC, ADA_TYPE_P): New
11157 macros.
11158
11159 2019-04-19 Ilya Yu. Malakhov <malakhov@mcst.ru>
11160
11161 PR symtab/24423:
11162 * source.c (print_source_lines_base): Advance "iter" when a
11163 control character is seen.
11164
11165 2019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11166
11167 * inferior.h (struct infcall_suspend_state_deleter):
11168 Catch exception in destructor to avoid crash.
11169
11170 2019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11171
11172 * cli/cli-cmds.c (_initialize_cli_cmds): Move "shell" "!" alias
11173 close to the add_com "shell".
11174
11175 2019-04-18 Tom Tromey <tromey@adacore.com>
11176
11177 * process-stratum-target.h (class process_stratum_target)
11178 <stratum>: Add "final".
11179
11180 2019-04-17 Tom Tromey <tromey@adacore.com>
11181
11182 * dwarf2read.c (dwarf2_init_complex_target_type): Check "tt"
11183 against nullptr before use.
11184
11185 2019-04-17 Alan Hayward <alan.hayward@arm.com>
11186
11187 * nat/linux-waitpid.c (linux_debug): Call debug_vprintf.
11188
11189 2019-04-17 Jim Wilson <jimw@sifive.com>
11190 Andrew Burgess <andrew.burgess@embecosm.com>
11191
11192 * riscv-tdep.c (riscv_breakpoint_kind_from_pc): Hanndle case where
11193 code read might fail, assume 4-byte breakpoint in that case.
11194
11195 2019-04-15 Leszek Swirski <leszeks@google.com>
11196
11197 * amd64-tdep.c (amd64_classify_aggregate): Use cp_pass_by_reference
11198 rather than a hand-rolled POD check when checking for forced MEMORY
11199 classification.
11200
11201 2019-04-15 Alan Hayward <alan.hayward@arm.com>
11202
11203 * aarch64-linux-nat.c (store_sveregs_to_thread): Set vector length.
11204 * nat/aarch64-sve-linux-ptrace.c (aarch64_sve_set_vq): New
11205 function.
11206 (aarch64_sve_regs_copy_to_reg_buf): Remove VG checks.
11207 (aarch64_sve_regs_copy_from_reg_buf): Likewise.
11208 * nat/aarch64-sve-linux-ptrace.h (aarch64_sve_set_vq): New
11209 declaration.
11210
11211 2019-04-15 Alan Hayward <alan.hayward@arm.com>
11212
11213 * aarch64-linux-nat.c
11214 (aarch64_linux_nat_target::thread_architecture): Add override.
11215 * aarch64-tdep.c (aarch64_gdbarch_init): Ensure different tdesc for
11216 each VQ.
11217
11218 2019-04-15 Alan Hayward <alan.hayward@arm.com>
11219
11220 * aarch64-tdep.c (aarch64_gdbarch_init): Move gdbarch lookup.
11221
11222 2019-04-13 Andrew Burgess <andrew.burgess@embecosm.com>
11223
11224 * dwarf2read.c (dwarf2_init_complex_target_type): Handle complex
11225 target types of size 96-bits, add some additional comments, and
11226 check that the builtin type we found was the correct size.
11227
11228 2019-04-12 Eli Zaretskii <eliz@gnu.org>
11229
11230 * utils.c (prompt_for_continue): Don't restore the styling at the
11231 end, as applied_style has the wrong value. This fixes styling in
11232 long lists of file names that are interrupted by the "Continue?"
11233 prompt.
11234
11235 2019-04-12 Andrew Burgess <andrew.burgess@embecosm.com>
11236
11237 * ada-lang.c (ada_language_defn): Remove use of LANG_MAGIC.
11238 * c-lang.c (c_language_defn): Likewise.
11239 (cplus_language_defn): Likewise.
11240 (asm_language_defn): Likewise.
11241 (minimal_language_defn): Likewise.
11242 * d-lang.c (d_language_defn): Likewise.
11243 * f-lang.c (f_language_defn): Likewise.
11244 * go-lang.c (go_language_defn): Likewise.
11245 * language.c (unknown_language_defn): Likewise.
11246 (auto_language_defn): Likewise.
11247 * language.h (struct language_defn): Remove la_magic field.
11248 (LANG_MAGIC): Delete.
11249 * m2-lang.c (m2_language_defn): Remove use of LANG_MAGIC.
11250 * objc-lang.c (objc_language_defn): Likewise.
11251 * opencl-lang.c (opencl_language_defn): Likewise.
11252 * p-lang.c (pascal_language_defn): Likewise.
11253 * rust-lang.c (rust_language_defn): Likewise.
11254
11255 2019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
11256
11257 * riscv-tdep.c (riscv_type_align): New function.
11258 (riscv_type_alignment): Delete.
11259 (riscv_arg_location): Use 'type_align'.
11260 (riscv_gdbarch_init): Register riscv_type_align gdbarch function.
11261
11262 2019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
11263
11264 * gdbtypes.c (type_align): A struct with no non-static fields also
11265 has alignment of 1.
11266
11267 2019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
11268
11269 * riscv-tdep.c (riscv_call_arg_complex_float): Fix offset of first
11270 component to 0.
11271 (riscv_struct_info::riscv_struct_info): Initialise m_offsets
11272 member.
11273 (riscv_struct_info::analyse): New implementation using new
11274 analyse_inner member function.
11275 (riscv_struct_info::field_offset): New member function.
11276 (riscv_struct_info::m_offsets): New member variable.
11277 (riscv_struct_info::analyse_inner): New private member function,
11278 takes the old implementation of riscv_struct_info::analyse but
11279 extended to track field offsets.
11280 (riscv_call_arg_struct): Update the struct folding special cases
11281 to handle cases where empty C++ structs, which are non-zero
11282 length, are found.
11283 (riscv_arg_location): Initialise the length of each location, a
11284 non-zero length now indicates the location is in use.
11285 (riscv_push_dummy_call): Allow for the first location having a
11286 non-zero offset when setting up arguments.
11287 (riscv_return_value): Likewise, but for return values.
11288
11289 2019-04-11 Tom Tromey <tromey@adacore.com>
11290
11291 * utils.c (internal_vproblem): Make "msg" const.
11292
11293 2019-04-11 Alan Hayward <alan.hayward@arm.com>
11294
11295 * aarch64-tdep.c (aarch64_analyze_prologue_test): Reset saved regs.
11296 * trad-frame.c (trad_frame_reset_saved_regs): New function.
11297 (trad_frame_alloc_saved_regs): Call trad_frame_reset_saved_regs.
11298 * trad-frame.h (trad_frame_reset_saved_regs): New declaration.
11299
11300 2019-04-10 Kevin Buettner <kevinb@redhat.com>
11301
11302 * amd64-linux-nat.c (amd64_linux_collect_native_gregset): New
11303 function.
11304 (fill_gregset): Call amd64_linux_collect_native_gregset instead
11305 of amd64_collect_native_gregset.
11306 (amd64_linux_nat_target::store_registers): Likewise.
11307
11308 2019-04-10 Tom Tromey <tom@tromey.com>
11309
11310 * symtab.c (lookup_global_symbol_from_objfile)
11311 (lookup_symbol_in_objfile_from_linkage_name): Use the iterator.
11312 * objfiles.h (class separate_debug_iterator): New.
11313 (class separate_debug_range): New.
11314 (struct objfile) <separate_debug_objfiles>: New method.
11315 (objfile_separate_debug_iterate): Don't declare.
11316 * objfiles.c (separate_debug_iterator::operator++): Rename from
11317 objfile_separate_debug_iterate.
11318 (objfile_relocate, objfile_rebase, objfile_has_symbols): Use the
11319 iterator.
11320 * minsyms.c (lookup_minimal_symbol_by_pc_section): Use the
11321 iterator.
11322
11323 2019-04-10 Tom Tromey <tom@tromey.com>
11324
11325 * symfile.c (reread_symbols): Remove old comment.
11326 * objfiles.c (free_all_objfiles): Fix a typo.
11327
11328 2019-04-10 Tom Tromey <tom@tromey.com>
11329
11330 * ia64-tdep.c (ia64_get_dyn_info_list): Use foreach.
11331 * minsyms.c (lookup_minimal_symbol): Use foreach.
11332 (lookup_minimal_symbol_text, lookup_minimal_symbol_by_pc_name)
11333 (lookup_minimal_symbol_solib_trampoline): Likewise.
11334 * symfile.c (reread_symbols): Use foreach.
11335
11336 2019-04-09 Ivan Begert <ivanbegert@gmail.com>
11337 Tom Tromey <tromey@adacore.com>
11338
11339 PR rust/24414:
11340 * rust-exp.y (rust_parser::lex_number): Use strtoulst.
11341 (rust_lex_int_test): Change "value" to be LONGEST.
11342 (rust_lex_tests): Add test for long integer literal.
11343
11344 2019-04-09 Tom Tromey <tromey@adacore.com>
11345
11346 * remote.c (remote_target::remote_add_inferior): Change fake_pid_p
11347 to bool.
11348 (extended_remote_target::attach): Update.
11349 (remote_target::remote_notice_new_inferior): Update.
11350 (remote_target::add_current_inferior_and_thread): Update.
11351 * inferior.c (exit_inferior_1): Use "false".
11352 * corelow.c (add_to_thread_list): Make fake_pid_p bool.
11353
11354 2019-04-09 Simon Marchi <simon.marchi@efficios.com>
11355
11356 * infcmd.c (run_command_1): Pass -qualified to tbreak when using
11357 the "start" command.
11358
11359 2019-04-08 Kevin Buettner <kevinb@redhat.com>
11360
11361 * python/py-inferior.c (infpy_thread_from_thread_handle):
11362 Adjust comments to reflect renaming of thread_from_thread_handle
11363 to thread_from_handle. Adjust keywords. Fix type error message.
11364 (inferior_object_methods): Add thread_from_handle. Retain
11365 thread_from_thread_handle, but mark it as deprecated.
11366
11367 2019-04-08 Kevin Buettner <kevinb@redhat.com>
11368
11369 * gdbthread.h (find_thread_by_handle): Revise declaration.
11370 * thread.c (find_thread_by_handle): Likewise. Adjust
11371 implementation too.
11372 * python/py-inferior.c (infpy_thread_from_thread_handle): Add
11373 support for buffer objects as handles.
11374
11375 2019-04-08 Kevin Buettner <kevinb@redhat.com>
11376
11377 * python/py-infthread.c (thpy_thread_handle): New function.
11378 (thread_object_methods): Register thpy_thread_handle.
11379
11380 2019-04-08 Kevin Buettner <kevinb@redhat.com>
11381
11382 * gdbthread.h (thread_to_thread_handle): Declare.
11383 * thread.c (gdbtypes.h): Include.
11384 (thread_to_thread_handle): New function.
11385
11386 * target.h (struct target_ops): Add thread_info_to_thread_handle.
11387 (target_thread_info_to_thread_handle): Declare.
11388 * target.c (target_thread_info_to_thread_handle): New function.
11389 * target-debug.h (target_debug_print_gdb_byte_vector): Define.
11390 * target-delegates.c: Regenerate.
11391
11392 * linux-thread-db.c (class thread_db_target): Add method
11393 thread_info_to_thread_handle.
11394 (thread_db_target::thread_info_to_thread_handle): Define.
11395 * remote.c (class remote_target): Add new method
11396 thread_info_to_thread_handle.
11397 (remote_target::thread_info_to_thread_handle): Define.
11398
11399 2019-04-08 Pedro Alves <palves@redhat.com>
11400
11401 * common/common-exceptions.c (throw_exception): Don't create
11402 named object to throw; throw directly.
11403 (throw_it): Likewise. Don't initialize gdb_exception::message
11404 here, with new; pass FMT and AP to the ctor instead.
11405 * common/common-exceptions.h: Include <string>.
11406 (gdb_exception::gdb_exception(enum return_reason, enum errors,
11407 const char *, va_list)): New ctor. Use std::make_shared.
11408 (gdb_exception_error::gdb_exception_error(enum return_reason, enum
11409 errors)): Delete.
11410 (gdb_exception_error::gdb_exception_error(enum errors, const char
11411 *, va_list)): New.
11412 (gdb_exception_error::gdb_exception_error(const gdb_exception &)):
11413 Add assertion.
11414 (gdb_exception_quit::gdb_exception_quit(enum return_reason, enum
11415 errors)): Delete.
11416 (gdb_exception_quit::gdb_exception_quit(const char *, va_list)): New.
11417 (gdb_exception_quit::gdb_exception_quit(const gdb_exception &)):
11418 Add assertion.
11419
11420 2019-04-08 Tom Tromey <tom@tromey.com>
11421
11422 * valops.c (value_rtti_indirect_type): Replace throw_exception
11423 with throw.
11424 * tracefile-tfile.c (tfile_target_open): Replace throw_exception
11425 with throw.
11426 * thread.c (thr_try_catch_cmd): Replace throw_exception with
11427 throw.
11428 * target.c (target_translate_tls_address): Replace throw_exception
11429 with throw.
11430 * stack.c (frame_apply_command_count): Replace throw_exception
11431 with throw.
11432 * solib-spu.c (append_ocl_sos): Replace throw_exception with
11433 throw.
11434 * s390-tdep.c (s390_frame_unwind_cache): Replace throw_exception
11435 with throw.
11436 * rs6000-tdep.c (rs6000_frame_cache)
11437 (rs6000_epilogue_frame_cache): Replace throw_exception with throw.
11438 * remote.c: Replace throw_exception with throw.
11439 * record-full.c (record_full_message, record_full_wait_1)
11440 (record_full_restore): Replace throw_exception with throw.
11441 * record-btrace.c:
11442 (get_thread_current_frame_id, record_btrace_start_replaying)
11443 (cmd_record_btrace_bts_start, cmd_record_btrace_pt_start)
11444 (cmd_record_btrace_start): Replace throw_exception with throw.
11445 * parse.c (parse_exp_in_context_1): Replace throw_exception with
11446 throw.
11447 * linux-nat.c (detach_one_lwp, linux_resume_one_lwp)
11448 (resume_stopped_resumed_lwps): Replace throw_exception with throw.
11449 * linespec.c:
11450 (find_linespec_symbols): Replace throw_exception with throw.
11451 * infrun.c (displaced_step_prepare, resume): Replace
11452 throw_exception with throw.
11453 * infcmd.c (post_create_inferior): Replace throw_exception with
11454 throw.
11455 * inf-loop.c (inferior_event_handler): Replace throw_exception
11456 with throw.
11457 * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache)
11458 (i386_sigtramp_frame_cache): Replace throw_exception with throw.
11459 * frame.c (frame_unwind_pc, get_prev_frame_if_no_cycle)
11460 (get_prev_frame_always, get_frame_pc_if_available)
11461 (get_frame_address_in_block_if_available, get_frame_language):
11462 Replace throw_exception with throw.
11463 * frame-unwind.c (frame_unwind_try_unwinder): Replace
11464 throw_exception with throw.
11465 * eval.c (fetch_subexp_value, evaluate_var_value)
11466 (evaluate_funcall, evaluate_subexp_standard): Replace
11467 throw_exception with throw.
11468 * dwarf2loc.c (call_site_find_chain)
11469 (dwarf2_evaluate_loc_desc_full, dwarf2_locexpr_baton_eval):
11470 Replace throw_exception with throw.
11471 * dwarf2-frame.c (dwarf2_frame_cache): Replace throw_exception
11472 with throw.
11473 * darwin-nat.c (darwin_attach_pid): Replace throw_exception with
11474 throw.
11475 * cp-abi.c (baseclass_offset): Replace throw_exception with throw.
11476 * completer.c (complete_line_internal): Replace throw_exception
11477 with throw.
11478 * compile/compile-object-run.c (compile_object_run): Replace
11479 throw_exception with throw.
11480 * cli/cli-script.c (process_next_line): Replace throw_exception
11481 with throw.
11482 * btrace.c (btrace_compute_ftrace_pt, btrace_compute_ftrace)
11483 (btrace_enable, btrace_maint_update_pt_packets): Replace
11484 throw_exception with throw.
11485 * breakpoint.c (create_breakpoint, save_breakpoints): Replace
11486 throw_exception with throw.
11487 * break-catch-throw.c (re_set_exception_catchpoint): Replace
11488 throw_exception with throw.
11489 * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache)
11490 (amd64_epilogue_frame_cache): Replace throw_exception with throw.
11491 * aarch64-tdep.c (aarch64_make_prologue_cache)
11492 (aarch64_make_stub_cache): Replace throw_exception with throw.
11493
11494 2019-04-08 Tom Tromey <tom@tromey.com>
11495
11496 * common/common-exceptions.c (throw_exception): Rename from
11497 throw_exception_cxx. Remove old copy. Make argument const.
11498 (throw_it): Create and throw exception objects directly.
11499 * common/common-exceptions.h (throw_exception): Make argument
11500 const.
11501 (struct gdb_exception_error): Add constructor.
11502 (struct gdb_exception_quit): Add constructor.
11503
11504 2019-04-08 Tom Tromey <tom@tromey.com>
11505
11506 * common/common-exceptions.h (exception_rethrow): Don't declare.
11507 (TRY_SJLJ): Update comment.
11508 (TRY, CATCH, END_CATCH): Remove.
11509 * common/common-exceptions.c (exception_rethrow): Remove.
11510
11511 2019-04-08 Tom Tromey <tom@tromey.com>
11512
11513 * common/common-exceptions.h (gdb_exception_RETURN_MASK_ALL):
11514 Remove.
11515 (gdb_exception_error): Rename from
11516 gdb_exception_RETURN_MASK_ERROR.
11517 (gdb_exception_quit): Rename from gdb_exception_RETURN_MASK_QUIT.
11518 (gdb_quit_bad_alloc): Update.
11519 * aarch64-tdep.c: Update.
11520 * ada-lang.c: Update.
11521 * ada-typeprint.c: Update.
11522 * ada-valprint.c: Update.
11523 * amd64-tdep.c: Update.
11524 * arch-utils.c: Update.
11525 * break-catch-throw.c: Update.
11526 * breakpoint.c: Update.
11527 * btrace.c: Update.
11528 * c-varobj.c: Update.
11529 * cli/cli-cmds.c: Update.
11530 * cli/cli-interp.c: Update.
11531 * cli/cli-script.c: Update.
11532 * common/common-exceptions.c: Update.
11533 * common/new-op.c: Update.
11534 * common/selftest.c: Update.
11535 * compile/compile-c-symbols.c: Update.
11536 * compile/compile-cplus-symbols.c: Update.
11537 * compile/compile-object-load.c: Update.
11538 * compile/compile-object-run.c: Update.
11539 * completer.c: Update.
11540 * corelow.c: Update.
11541 * cp-abi.c: Update.
11542 * cp-support.c: Update.
11543 * cp-valprint.c: Update.
11544 * darwin-nat.c: Update.
11545 * disasm-selftests.c: Update.
11546 * dtrace-probe.c: Update.
11547 * dwarf-index-cache.c: Update.
11548 * dwarf-index-write.c: Update.
11549 * dwarf2-frame-tailcall.c: Update.
11550 * dwarf2-frame.c: Update.
11551 * dwarf2loc.c: Update.
11552 * dwarf2read.c: Update.
11553 * eval.c: Update.
11554 * event-loop.c: Update.
11555 * event-top.c: Update.
11556 * exec.c: Update.
11557 * f-valprint.c: Update.
11558 * fbsd-tdep.c: Update.
11559 * frame-unwind.c: Update.
11560 * frame.c: Update.
11561 * gdbtypes.c: Update.
11562 * gnu-v3-abi.c: Update.
11563 * guile/guile-internal.h: Update.
11564 * guile/scm-block.c: Update.
11565 * guile/scm-breakpoint.c: Update.
11566 * guile/scm-cmd.c: Update.
11567 * guile/scm-disasm.c: Update.
11568 * guile/scm-frame.c: Update.
11569 * guile/scm-lazy-string.c: Update.
11570 * guile/scm-math.c: Update.
11571 * guile/scm-param.c: Update.
11572 * guile/scm-ports.c: Update.
11573 * guile/scm-pretty-print.c: Update.
11574 * guile/scm-symbol.c: Update.
11575 * guile/scm-symtab.c: Update.
11576 * guile/scm-type.c: Update.
11577 * guile/scm-value.c: Update.
11578 * i386-linux-tdep.c: Update.
11579 * i386-tdep.c: Update.
11580 * inf-loop.c: Update.
11581 * infcall.c: Update.
11582 * infcmd.c: Update.
11583 * infrun.c: Update.
11584 * jit.c: Update.
11585 * language.c: Update.
11586 * linespec.c: Update.
11587 * linux-fork.c: Update.
11588 * linux-nat.c: Update.
11589 * linux-tdep.c: Update.
11590 * linux-thread-db.c: Update.
11591 * main.c: Update.
11592 * mi/mi-cmd-break.c: Update.
11593 * mi/mi-cmd-stack.c: Update.
11594 * mi/mi-interp.c: Update.
11595 * mi/mi-main.c: Update.
11596 * objc-lang.c: Update.
11597 * p-valprint.c: Update.
11598 * parse.c: Update.
11599 * ppc-linux-tdep.c: Update.
11600 * printcmd.c: Update.
11601 * python/py-arch.c: Update.
11602 * python/py-breakpoint.c: Update.
11603 * python/py-cmd.c: Update.
11604 * python/py-finishbreakpoint.c: Update.
11605 * python/py-frame.c: Update.
11606 * python/py-framefilter.c: Update.
11607 * python/py-gdb-readline.c: Update.
11608 * python/py-inferior.c: Update.
11609 * python/py-infthread.c: Update.
11610 * python/py-lazy-string.c: Update.
11611 * python/py-linetable.c: Update.
11612 * python/py-objfile.c: Update.
11613 * python/py-param.c: Update.
11614 * python/py-prettyprint.c: Update.
11615 * python/py-progspace.c: Update.
11616 * python/py-record-btrace.c: Update.
11617 * python/py-record.c: Update.
11618 * python/py-symbol.c: Update.
11619 * python/py-type.c: Update.
11620 * python/py-unwind.c: Update.
11621 * python/py-utils.c: Update.
11622 * python/py-value.c: Update.
11623 * python/python.c: Update.
11624 * record-btrace.c: Update.
11625 * record-full.c: Update.
11626 * remote-fileio.c: Update.
11627 * remote.c: Update.
11628 * riscv-tdep.c: Update.
11629 * rs6000-aix-tdep.c: Update.
11630 * rs6000-tdep.c: Update.
11631 * rust-exp.y: Update.
11632 * rust-lang.c: Update.
11633 * s390-tdep.c: Update.
11634 * selftest-arch.c: Update.
11635 * solib-dsbt.c: Update.
11636 * solib-frv.c: Update.
11637 * solib-spu.c: Update.
11638 * solib-svr4.c: Update.
11639 * solib.c: Update.
11640 * sparc64-linux-tdep.c: Update.
11641 * stack.c: Update.
11642 * symfile-mem.c: Update.
11643 * symmisc.c: Update.
11644 * target.c: Update.
11645 * thread.c: Update.
11646 * top.c: Update.
11647 * tracefile-tfile.c: Update.
11648 * tui/tui.c: Update.
11649 * typeprint.c: Update.
11650 * unittests/cli-utils-selftests.c: Update.
11651 * unittests/parse-connection-spec-selftests.c: Update.
11652 * valops.c: Update.
11653 * valprint.c: Update.
11654 * value.c: Update.
11655 * varobj.c: Update.
11656 * windows-nat.c: Update.
11657 * x86-linux-nat.c: Update.
11658 * xml-support.c: Update.
11659
11660 2019-04-08 Tom Tromey <tom@tromey.com>
11661
11662 * xml-support.c: Use C++ exception handling.
11663 * x86-linux-nat.c: Use C++ exception handling.
11664 * windows-nat.c: Use C++ exception handling.
11665 * varobj.c: Use C++ exception handling.
11666 * value.c: Use C++ exception handling.
11667 * valprint.c: Use C++ exception handling.
11668 * valops.c: Use C++ exception handling.
11669 * unittests/parse-connection-spec-selftests.c: Use C++ exception
11670 handling.
11671 * unittests/cli-utils-selftests.c: Use C++ exception handling.
11672 * typeprint.c: Use C++ exception handling.
11673 * tui/tui.c: Use C++ exception handling.
11674 * tracefile-tfile.c: Use C++ exception handling.
11675 * top.c: Use C++ exception handling.
11676 * thread.c: Use C++ exception handling.
11677 * target.c: Use C++ exception handling.
11678 * symmisc.c: Use C++ exception handling.
11679 * symfile-mem.c: Use C++ exception handling.
11680 * stack.c: Use C++ exception handling.
11681 * sparc64-linux-tdep.c: Use C++ exception handling.
11682 * solib.c: Use C++ exception handling.
11683 * solib-svr4.c: Use C++ exception handling.
11684 * solib-spu.c: Use C++ exception handling.
11685 * solib-frv.c: Use C++ exception handling.
11686 * solib-dsbt.c: Use C++ exception handling.
11687 * selftest-arch.c: Use C++ exception handling.
11688 * s390-tdep.c: Use C++ exception handling.
11689 * rust-lang.c: Use C++ exception handling.
11690 * rust-exp.y: Use C++ exception handling.
11691 * rs6000-tdep.c: Use C++ exception handling.
11692 * rs6000-aix-tdep.c: Use C++ exception handling.
11693 * riscv-tdep.c: Use C++ exception handling.
11694 * remote.c: Use C++ exception handling.
11695 * remote-fileio.c: Use C++ exception handling.
11696 * record-full.c: Use C++ exception handling.
11697 * record-btrace.c: Use C++ exception handling.
11698 * python/python.c: Use C++ exception handling.
11699 * python/py-value.c: Use C++ exception handling.
11700 * python/py-utils.c: Use C++ exception handling.
11701 * python/py-unwind.c: Use C++ exception handling.
11702 * python/py-type.c: Use C++ exception handling.
11703 * python/py-symbol.c: Use C++ exception handling.
11704 * python/py-record.c: Use C++ exception handling.
11705 * python/py-record-btrace.c: Use C++ exception handling.
11706 * python/py-progspace.c: Use C++ exception handling.
11707 * python/py-prettyprint.c: Use C++ exception handling.
11708 * python/py-param.c: Use C++ exception handling.
11709 * python/py-objfile.c: Use C++ exception handling.
11710 * python/py-linetable.c: Use C++ exception handling.
11711 * python/py-lazy-string.c: Use C++ exception handling.
11712 * python/py-infthread.c: Use C++ exception handling.
11713 * python/py-inferior.c: Use C++ exception handling.
11714 * python/py-gdb-readline.c: Use C++ exception handling.
11715 * python/py-framefilter.c: Use C++ exception handling.
11716 * python/py-frame.c: Use C++ exception handling.
11717 * python/py-finishbreakpoint.c: Use C++ exception handling.
11718 * python/py-cmd.c: Use C++ exception handling.
11719 * python/py-breakpoint.c: Use C++ exception handling.
11720 * python/py-arch.c: Use C++ exception handling.
11721 * printcmd.c: Use C++ exception handling.
11722 * ppc-linux-tdep.c: Use C++ exception handling.
11723 * parse.c: Use C++ exception handling.
11724 * p-valprint.c: Use C++ exception handling.
11725 * objc-lang.c: Use C++ exception handling.
11726 * mi/mi-main.c: Use C++ exception handling.
11727 * mi/mi-interp.c: Use C++ exception handling.
11728 * mi/mi-cmd-stack.c: Use C++ exception handling.
11729 * mi/mi-cmd-break.c: Use C++ exception handling.
11730 * main.c: Use C++ exception handling.
11731 * linux-thread-db.c: Use C++ exception handling.
11732 * linux-tdep.c: Use C++ exception handling.
11733 * linux-nat.c: Use C++ exception handling.
11734 * linux-fork.c: Use C++ exception handling.
11735 * linespec.c: Use C++ exception handling.
11736 * language.c: Use C++ exception handling.
11737 * jit.c: Use C++ exception handling.
11738 * infrun.c: Use C++ exception handling.
11739 * infcmd.c: Use C++ exception handling.
11740 * infcall.c: Use C++ exception handling.
11741 * inf-loop.c: Use C++ exception handling.
11742 * i386-tdep.c: Use C++ exception handling.
11743 * i386-linux-tdep.c: Use C++ exception handling.
11744 * guile/scm-value.c: Use C++ exception handling.
11745 * guile/scm-type.c: Use C++ exception handling.
11746 * guile/scm-symtab.c: Use C++ exception handling.
11747 * guile/scm-symbol.c: Use C++ exception handling.
11748 * guile/scm-pretty-print.c: Use C++ exception handling.
11749 * guile/scm-ports.c: Use C++ exception handling.
11750 * guile/scm-param.c: Use C++ exception handling.
11751 * guile/scm-math.c: Use C++ exception handling.
11752 * guile/scm-lazy-string.c: Use C++ exception handling.
11753 * guile/scm-frame.c: Use C++ exception handling.
11754 * guile/scm-disasm.c: Use C++ exception handling.
11755 * guile/scm-cmd.c: Use C++ exception handling.
11756 * guile/scm-breakpoint.c: Use C++ exception handling.
11757 * guile/scm-block.c: Use C++ exception handling.
11758 * guile/guile-internal.h: Use C++ exception handling.
11759 * gnu-v3-abi.c: Use C++ exception handling.
11760 * gdbtypes.c: Use C++ exception handling.
11761 * frame.c: Use C++ exception handling.
11762 * frame-unwind.c: Use C++ exception handling.
11763 * fbsd-tdep.c: Use C++ exception handling.
11764 * f-valprint.c: Use C++ exception handling.
11765 * exec.c: Use C++ exception handling.
11766 * event-top.c: Use C++ exception handling.
11767 * event-loop.c: Use C++ exception handling.
11768 * eval.c: Use C++ exception handling.
11769 * dwarf2read.c: Use C++ exception handling.
11770 * dwarf2loc.c: Use C++ exception handling.
11771 * dwarf2-frame.c: Use C++ exception handling.
11772 * dwarf2-frame-tailcall.c: Use C++ exception handling.
11773 * dwarf-index-write.c: Use C++ exception handling.
11774 * dwarf-index-cache.c: Use C++ exception handling.
11775 * dtrace-probe.c: Use C++ exception handling.
11776 * disasm-selftests.c: Use C++ exception handling.
11777 * darwin-nat.c: Use C++ exception handling.
11778 * cp-valprint.c: Use C++ exception handling.
11779 * cp-support.c: Use C++ exception handling.
11780 * cp-abi.c: Use C++ exception handling.
11781 * corelow.c: Use C++ exception handling.
11782 * completer.c: Use C++ exception handling.
11783 * compile/compile-object-run.c: Use C++ exception handling.
11784 * compile/compile-object-load.c: Use C++ exception handling.
11785 * compile/compile-cplus-symbols.c: Use C++ exception handling.
11786 * compile/compile-c-symbols.c: Use C++ exception handling.
11787 * common/selftest.c: Use C++ exception handling.
11788 * common/new-op.c: Use C++ exception handling.
11789 * cli/cli-script.c: Use C++ exception handling.
11790 * cli/cli-interp.c: Use C++ exception handling.
11791 * cli/cli-cmds.c: Use C++ exception handling.
11792 * c-varobj.c: Use C++ exception handling.
11793 * btrace.c: Use C++ exception handling.
11794 * breakpoint.c: Use C++ exception handling.
11795 * break-catch-throw.c: Use C++ exception handling.
11796 * arch-utils.c: Use C++ exception handling.
11797 * amd64-tdep.c: Use C++ exception handling.
11798 * ada-valprint.c: Use C++ exception handling.
11799 * ada-typeprint.c: Use C++ exception handling.
11800 * ada-lang.c: Use C++ exception handling.
11801 * aarch64-tdep.c: Use C++ exception handling.
11802
11803 2019-04-08 Tom Tromey <tom@tromey.com>
11804
11805 * xml-support.c (gdb_xml_parser::parse): Update.
11806 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
11807 * value.c (show_convenience): Update.
11808 * unittests/cli-utils-selftests.c (test_number_or_range_parser)
11809 (test_parse_flags_qcs): Update.
11810 * thread.c (thr_try_catch_cmd): Update.
11811 * target.c (target_translate_tls_address): Update.
11812 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
11813 (info_frame_command_core, frame_apply_command_count): Update.
11814 * rust-exp.y (rust_lex_exception_test): Update.
11815 * riscv-tdep.c (riscv_print_one_register_info): Update.
11816 * remote.c (remote_target::enable_btrace): Update.
11817 * record-btrace.c (record_btrace_enable_warn): Update.
11818 * python/py-utils.c (gdbpy_convert_exception): Update.
11819 * printcmd.c (do_one_display, print_variable_and_value): Update.
11820 * mi/mi-main.c (mi_print_exception): Update.
11821 * mi/mi-interp.c (mi_cmd_interpreter_exec): Use SCOPE_EXIT.
11822 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
11823 * linux-nat.c (linux_nat_target::attach): Update.
11824 * linux-fork.c (class scoped_switch_fork_info): Update.
11825 * infrun.c (displaced_step_prepare): Update.
11826 * infcall.c (call_function_by_hand_dummy): Update.
11827 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception): Update.
11828 * gnu-v3-abi.c (print_one_vtable): Update.
11829 * frame.c (get_prev_frame_always): Update.
11830 * f-valprint.c (info_common_command_for_block): Update.
11831 * exec.c (try_open_exec_file): Update.
11832 * exceptions.c (print_exception, exception_print)
11833 (exception_fprintf, exception_print_same): Update.
11834 * dwarf2-frame.c (dwarf2_build_frame_info): Update.
11835 * dwarf-index-cache.c (index_cache::store)
11836 (index_cache::lookup_gdb_index): Update.
11837 * darwin-nat.c (maybe_cache_shell): Update.
11838 * cp-valprint.c (cp_print_value_fields): Update.
11839 * compile/compile-cplus-symbols.c (gcc_cplus_convert_symbol)
11840 (gcc_cplus_symbol_address): Update.
11841 * compile/compile-c-symbols.c (gcc_convert_symbol)
11842 (gcc_symbol_address, generate_c_for_for_one_variable): Update.
11843 * common/selftest.c: Update.
11844 * common/common-exceptions.h (struct gdb_exception) <message>: Now
11845 a std::string.
11846 (exception_try_scope_entry, exception_try_scope_exit): Don't
11847 declare.
11848 (struct exception_try_scope): Remove.
11849 (TRY): Don't use exception_try_scope.
11850 (struct gdb_exception): Add constructor, operator=.
11851 <what>: New method.
11852 (struct gdb_exception_RETURN_MASK_ALL)
11853 (struct gdb_exception_RETURN_MASK_ERROR)
11854 (struct gdb_exception_RETURN_MASK_QUIT): Add constructor.
11855 (struct gdb_quit_bad_alloc): Update.
11856 * common/common-exceptions.c (exception_none): Change
11857 initializer.
11858 (struct catcher) <state, exception>: Initialize inline.
11859 <prev>: Remove member.
11860 (current_catcher): Remove.
11861 (catchers): New global.
11862 (exceptions_state_mc_init): Simplify.
11863 (catcher_pop): Remove.
11864 (exceptions_state_mc, exceptions_state_mc_catch): Update.
11865 (try_scope_depth, exception_try_scope_entry)
11866 (exception_try_scope_exit): Remove.
11867 (throw_exception_sjlj): Update.
11868 (exception_messages, exception_messages_size): Remove.
11869 (throw_it): Simplify.
11870 (gdb_exception_sliced_copy): Remove.
11871 (throw_exception_cxx): Update.
11872 * cli/cli-script.c (script_from_file): Update.
11873 * breakpoint.c (insert_bp_location, update_breakpoint_locations):
11874 Update.
11875 * ada-valprint.c (ada_val_print): Update.
11876 * ada-lang.c (ada_to_fixed_type_1, ada_exception_name_addr)
11877 (create_excep_cond_exprs): Update.
11878
11879 2019-04-08 Tom Tromey <tom@tromey.com>
11880
11881 * common/common-exceptions.h (GDB_XCPT_SJMP, GDB_XCPT_TRY)
11882 (GDB_XCPT_RAW_TRY, GDB_XCPT): Remove.
11883 (TRY, CATCH, END_CATCH): Remove some definitions.
11884 * common/common-exceptions.c: Don't use GDB_XCPT.
11885 (catcher_list_size): Remove.
11886 (throw_exception, throw_it): Simplify.
11887
11888 2019-04-05 Tom Tromey <tom@tromey.com>
11889
11890 Revert the header-sorting patch.
11891 * ft32-tdep.c: Revert.
11892 * frv-tdep.c: Revert.
11893 * frv-linux-tdep.c: Revert.
11894 * frame.c: Revert.
11895 * frame-unwind.c: Revert.
11896 * frame-base.c: Revert.
11897 * fork-child.c: Revert.
11898 * findvar.c: Revert.
11899 * findcmd.c: Revert.
11900 * filesystem.c: Revert.
11901 * filename-seen-cache.h: Revert.
11902 * filename-seen-cache.c: Revert.
11903 * fbsd-tdep.c: Revert.
11904 * fbsd-nat.h: Revert.
11905 * fbsd-nat.c: Revert.
11906 * f-valprint.c: Revert.
11907 * f-typeprint.c: Revert.
11908 * f-lang.c: Revert.
11909 * extension.h: Revert.
11910 * extension.c: Revert.
11911 * extension-priv.h: Revert.
11912 * expprint.c: Revert.
11913 * exec.h: Revert.
11914 * exec.c: Revert.
11915 * exceptions.c: Revert.
11916 * event-top.c: Revert.
11917 * event-loop.c: Revert.
11918 * eval.c: Revert.
11919 * elfread.c: Revert.
11920 * dwarf2read.h: Revert.
11921 * dwarf2read.c: Revert.
11922 * dwarf2loc.c: Revert.
11923 * dwarf2expr.h: Revert.
11924 * dwarf2expr.c: Revert.
11925 * dwarf2-frame.c: Revert.
11926 * dwarf2-frame-tailcall.c: Revert.
11927 * dwarf-index-write.h: Revert.
11928 * dwarf-index-write.c: Revert.
11929 * dwarf-index-common.c: Revert.
11930 * dwarf-index-cache.h: Revert.
11931 * dwarf-index-cache.c: Revert.
11932 * dummy-frame.c: Revert.
11933 * dtrace-probe.c: Revert.
11934 * disasm.h: Revert.
11935 * disasm.c: Revert.
11936 * disasm-selftests.c: Revert.
11937 * dictionary.c: Revert.
11938 * dicos-tdep.c: Revert.
11939 * demangle.c: Revert.
11940 * dcache.h: Revert.
11941 * dcache.c: Revert.
11942 * darwin-nat.h: Revert.
11943 * darwin-nat.c: Revert.
11944 * darwin-nat-info.c: Revert.
11945 * d-valprint.c: Revert.
11946 * d-namespace.c: Revert.
11947 * d-lang.c: Revert.
11948 * ctf.c: Revert.
11949 * csky-tdep.c: Revert.
11950 * csky-linux-tdep.c: Revert.
11951 * cris-tdep.c: Revert.
11952 * cris-linux-tdep.c: Revert.
11953 * cp-valprint.c: Revert.
11954 * cp-support.c: Revert.
11955 * cp-namespace.c: Revert.
11956 * cp-abi.c: Revert.
11957 * corelow.c: Revert.
11958 * corefile.c: Revert.
11959 * continuations.c: Revert.
11960 * completer.h: Revert.
11961 * completer.c: Revert.
11962 * complaints.c: Revert.
11963 * coffread.c: Revert.
11964 * coff-pe-read.c: Revert.
11965 * cli-out.h: Revert.
11966 * cli-out.c: Revert.
11967 * charset.c: Revert.
11968 * c-varobj.c: Revert.
11969 * c-valprint.c: Revert.
11970 * c-typeprint.c: Revert.
11971 * c-lang.c: Revert.
11972 * buildsym.c: Revert.
11973 * buildsym-legacy.c: Revert.
11974 * build-id.h: Revert.
11975 * build-id.c: Revert.
11976 * btrace.c: Revert.
11977 * bsd-uthread.c: Revert.
11978 * breakpoint.h: Revert.
11979 * breakpoint.c: Revert.
11980 * break-catch-throw.c: Revert.
11981 * break-catch-syscall.c: Revert.
11982 * break-catch-sig.c: Revert.
11983 * blockframe.c: Revert.
11984 * block.c: Revert.
11985 * bfin-tdep.c: Revert.
11986 * bfin-linux-tdep.c: Revert.
11987 * bfd-target.c: Revert.
11988 * bcache.c: Revert.
11989 * ax-general.c: Revert.
11990 * ax-gdb.h: Revert.
11991 * ax-gdb.c: Revert.
11992 * avr-tdep.c: Revert.
11993 * auxv.c: Revert.
11994 * auto-load.c: Revert.
11995 * arm-wince-tdep.c: Revert.
11996 * arm-tdep.c: Revert.
11997 * arm-symbian-tdep.c: Revert.
11998 * arm-pikeos-tdep.c: Revert.
11999 * arm-obsd-tdep.c: Revert.
12000 * arm-nbsd-tdep.c: Revert.
12001 * arm-nbsd-nat.c: Revert.
12002 * arm-linux-tdep.c: Revert.
12003 * arm-linux-nat.c: Revert.
12004 * arm-fbsd-tdep.c: Revert.
12005 * arm-fbsd-nat.c: Revert.
12006 * arm-bsd-tdep.c: Revert.
12007 * arch-utils.c: Revert.
12008 * arc-tdep.c: Revert.
12009 * arc-newlib-tdep.c: Revert.
12010 * annotate.h: Revert.
12011 * annotate.c: Revert.
12012 * amd64-windows-tdep.c: Revert.
12013 * amd64-windows-nat.c: Revert.
12014 * amd64-tdep.c: Revert.
12015 * amd64-sol2-tdep.c: Revert.
12016 * amd64-obsd-tdep.c: Revert.
12017 * amd64-obsd-nat.c: Revert.
12018 * amd64-nbsd-tdep.c: Revert.
12019 * amd64-nbsd-nat.c: Revert.
12020 * amd64-nat.c: Revert.
12021 * amd64-linux-tdep.c: Revert.
12022 * amd64-linux-nat.c: Revert.
12023 * amd64-fbsd-tdep.c: Revert.
12024 * amd64-fbsd-nat.c: Revert.
12025 * amd64-dicos-tdep.c: Revert.
12026 * amd64-darwin-tdep.c: Revert.
12027 * amd64-bsd-nat.c: Revert.
12028 * alpha-tdep.c: Revert.
12029 * alpha-obsd-tdep.c: Revert.
12030 * alpha-nbsd-tdep.c: Revert.
12031 * alpha-mdebug-tdep.c: Revert.
12032 * alpha-linux-tdep.c: Revert.
12033 * alpha-linux-nat.c: Revert.
12034 * alpha-bsd-tdep.c: Revert.
12035 * alpha-bsd-nat.c: Revert.
12036 * aix-thread.c: Revert.
12037 * agent.c: Revert.
12038 * addrmap.c: Revert.
12039 * ada-varobj.c: Revert.
12040 * ada-valprint.c: Revert.
12041 * ada-typeprint.c: Revert.
12042 * ada-tasks.c: Revert.
12043 * ada-lang.c: Revert.
12044 * aarch64-tdep.c: Revert.
12045 * aarch64-ravenscar-thread.c: Revert.
12046 * aarch64-newlib-tdep.c: Revert.
12047 * aarch64-linux-tdep.c: Revert.
12048 * aarch64-linux-nat.c: Revert.
12049 * aarch64-fbsd-tdep.c: Revert.
12050 * aarch64-fbsd-nat.c: Revert.
12051 * aarch32-linux-nat.c: Revert.
12052
12053 2019-04-05 Tom Tromey <tom@tromey.com>
12054
12055 * ft32-tdep.c: Sort headers.
12056 * frv-tdep.c: Sort headers.
12057 * frv-linux-tdep.c: Sort headers.
12058 * frame.c: Sort headers.
12059 * frame-unwind.c: Sort headers.
12060 * frame-base.c: Sort headers.
12061 * fork-child.c: Sort headers.
12062 * findvar.c: Sort headers.
12063 * findcmd.c: Sort headers.
12064 * filesystem.c: Sort headers.
12065 * filename-seen-cache.h: Sort headers.
12066 * filename-seen-cache.c: Sort headers.
12067 * fbsd-tdep.c: Sort headers.
12068 * fbsd-nat.h: Sort headers.
12069 * fbsd-nat.c: Sort headers.
12070 * f-valprint.c: Sort headers.
12071 * f-typeprint.c: Sort headers.
12072 * f-lang.c: Sort headers.
12073 * extension.h: Sort headers.
12074 * extension.c: Sort headers.
12075 * extension-priv.h: Sort headers.
12076 * expprint.c: Sort headers.
12077 * exec.h: Sort headers.
12078 * exec.c: Sort headers.
12079 * exceptions.c: Sort headers.
12080 * event-top.c: Sort headers.
12081 * event-loop.c: Sort headers.
12082 * eval.c: Sort headers.
12083 * elfread.c: Sort headers.
12084 * dwarf2read.h: Sort headers.
12085 * dwarf2read.c: Sort headers.
12086 * dwarf2loc.c: Sort headers.
12087 * dwarf2expr.h: Sort headers.
12088 * dwarf2expr.c: Sort headers.
12089 * dwarf2-frame.c: Sort headers.
12090 * dwarf2-frame-tailcall.c: Sort headers.
12091 * dwarf-index-write.h: Sort headers.
12092 * dwarf-index-write.c: Sort headers.
12093 * dwarf-index-common.c: Sort headers.
12094 * dwarf-index-cache.h: Sort headers.
12095 * dwarf-index-cache.c: Sort headers.
12096 * dummy-frame.c: Sort headers.
12097 * dtrace-probe.c: Sort headers.
12098 * disasm.h: Sort headers.
12099 * disasm.c: Sort headers.
12100 * disasm-selftests.c: Sort headers.
12101 * dictionary.c: Sort headers.
12102 * dicos-tdep.c: Sort headers.
12103 * demangle.c: Sort headers.
12104 * dcache.h: Sort headers.
12105 * dcache.c: Sort headers.
12106 * darwin-nat.h: Sort headers.
12107 * darwin-nat.c: Sort headers.
12108 * darwin-nat-info.c: Sort headers.
12109 * d-valprint.c: Sort headers.
12110 * d-namespace.c: Sort headers.
12111 * d-lang.c: Sort headers.
12112 * ctf.c: Sort headers.
12113 * csky-tdep.c: Sort headers.
12114 * csky-linux-tdep.c: Sort headers.
12115 * cris-tdep.c: Sort headers.
12116 * cris-linux-tdep.c: Sort headers.
12117 * cp-valprint.c: Sort headers.
12118 * cp-support.c: Sort headers.
12119 * cp-namespace.c: Sort headers.
12120 * cp-abi.c: Sort headers.
12121 * corelow.c: Sort headers.
12122 * corefile.c: Sort headers.
12123 * continuations.c: Sort headers.
12124 * completer.h: Sort headers.
12125 * completer.c: Sort headers.
12126 * complaints.c: Sort headers.
12127 * coffread.c: Sort headers.
12128 * coff-pe-read.c: Sort headers.
12129 * cli-out.h: Sort headers.
12130 * cli-out.c: Sort headers.
12131 * charset.c: Sort headers.
12132 * c-varobj.c: Sort headers.
12133 * c-valprint.c: Sort headers.
12134 * c-typeprint.c: Sort headers.
12135 * c-lang.c: Sort headers.
12136 * buildsym.c: Sort headers.
12137 * buildsym-legacy.c: Sort headers.
12138 * build-id.h: Sort headers.
12139 * build-id.c: Sort headers.
12140 * btrace.c: Sort headers.
12141 * bsd-uthread.c: Sort headers.
12142 * breakpoint.h: Sort headers.
12143 * breakpoint.c: Sort headers.
12144 * break-catch-throw.c: Sort headers.
12145 * break-catch-syscall.c: Sort headers.
12146 * break-catch-sig.c: Sort headers.
12147 * blockframe.c: Sort headers.
12148 * block.c: Sort headers.
12149 * bfin-tdep.c: Sort headers.
12150 * bfin-linux-tdep.c: Sort headers.
12151 * bfd-target.c: Sort headers.
12152 * bcache.c: Sort headers.
12153 * ax-general.c: Sort headers.
12154 * ax-gdb.h: Sort headers.
12155 * ax-gdb.c: Sort headers.
12156 * avr-tdep.c: Sort headers.
12157 * auxv.c: Sort headers.
12158 * auto-load.c: Sort headers.
12159 * arm-wince-tdep.c: Sort headers.
12160 * arm-tdep.c: Sort headers.
12161 * arm-symbian-tdep.c: Sort headers.
12162 * arm-pikeos-tdep.c: Sort headers.
12163 * arm-obsd-tdep.c: Sort headers.
12164 * arm-nbsd-tdep.c: Sort headers.
12165 * arm-nbsd-nat.c: Sort headers.
12166 * arm-linux-tdep.c: Sort headers.
12167 * arm-linux-nat.c: Sort headers.
12168 * arm-fbsd-tdep.c: Sort headers.
12169 * arm-fbsd-nat.c: Sort headers.
12170 * arm-bsd-tdep.c: Sort headers.
12171 * arch-utils.c: Sort headers.
12172 * arc-tdep.c: Sort headers.
12173 * arc-newlib-tdep.c: Sort headers.
12174 * annotate.h: Sort headers.
12175 * annotate.c: Sort headers.
12176 * amd64-windows-tdep.c: Sort headers.
12177 * amd64-windows-nat.c: Sort headers.
12178 * amd64-tdep.c: Sort headers.
12179 * amd64-sol2-tdep.c: Sort headers.
12180 * amd64-obsd-tdep.c: Sort headers.
12181 * amd64-obsd-nat.c: Sort headers.
12182 * amd64-nbsd-tdep.c: Sort headers.
12183 * amd64-nbsd-nat.c: Sort headers.
12184 * amd64-nat.c: Sort headers.
12185 * amd64-linux-tdep.c: Sort headers.
12186 * amd64-linux-nat.c: Sort headers.
12187 * amd64-fbsd-tdep.c: Sort headers.
12188 * amd64-fbsd-nat.c: Sort headers.
12189 * amd64-dicos-tdep.c: Sort headers.
12190 * amd64-darwin-tdep.c: Sort headers.
12191 * amd64-bsd-nat.c: Sort headers.
12192 * alpha-tdep.c: Sort headers.
12193 * alpha-obsd-tdep.c: Sort headers.
12194 * alpha-nbsd-tdep.c: Sort headers.
12195 * alpha-mdebug-tdep.c: Sort headers.
12196 * alpha-linux-tdep.c: Sort headers.
12197 * alpha-linux-nat.c: Sort headers.
12198 * alpha-bsd-tdep.c: Sort headers.
12199 * alpha-bsd-nat.c: Sort headers.
12200 * aix-thread.c: Sort headers.
12201 * agent.c: Sort headers.
12202 * addrmap.c: Sort headers.
12203 * ada-varobj.c: Sort headers.
12204 * ada-valprint.c: Sort headers.
12205 * ada-typeprint.c: Sort headers.
12206 * ada-tasks.c: Sort headers.
12207 * ada-lang.c: Sort headers.
12208 * aarch64-tdep.c: Sort headers.
12209 * aarch64-ravenscar-thread.c: Sort headers.
12210 * aarch64-newlib-tdep.c: Sort headers.
12211 * aarch64-linux-tdep.c: Sort headers.
12212 * aarch64-linux-nat.c: Sort headers.
12213 * aarch64-fbsd-tdep.c: Sort headers.
12214 * aarch64-fbsd-nat.c: Sort headers.
12215 * aarch32-linux-nat.c: Sort headers.
12216
12217 2019-04-04 Tom Tromey <tom@tromey.com>
12218
12219 * varobj.c (varobj_create): Update.
12220 * rust-exp.y (struct rust_parser) <update_innermost_block,
12221 lookup_symbol>: New methods.
12222 (rust_parser::update_innermost_block, rust_parser::lookup_symbol):
12223 Rename.
12224 (rust_parser::rust_lookup_type)
12225 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
12226 * printcmd.c (display_command, do_one_display): Update.
12227 * parser-defs.h (struct parser_state) <parser_state>: Add
12228 "tracker" parameter.
12229 (block_tracker): New member.
12230 (class innermost_block_tracker) <innermost_block_tracker>: Add
12231 "types" parameter.
12232 <reset>: Remove method.
12233 (innermost_block): Don't declare.
12234 (null_post_parser): Update.
12235 * parse.c (innermost_block): Remove global.
12236 (write_dollar_variable): Update.
12237 (parse_exp_1, parse_exp_in_context): Add "tracker" parameter.
12238 Remove "tracker_types" parameter.
12239 (parse_expression): Add "tracker" parameter.
12240 (parse_expression_for_completion): Update.
12241 (null_post_parser): Add "tracker" parameter.
12242 * p-exp.y: Update rules.
12243 * m2-exp.y: Update rules.
12244 * language.h (struct language_defn) <la_post_parser>: Add
12245 "tracker" parameter.
12246 * go-exp.y: Update rules.
12247 * f-exp.y: Update rules.
12248 * expression.h (parse_expression, parse_exp_1): Add "tracker"
12249 parameter.
12250 * d-exp.y: Update rules.
12251 * c-exp.y: Update rules.
12252 * breakpoint.c (set_breakpoint_condition): Create an
12253 innermost_block_tracker.
12254 (watch_command_1): Likewise.
12255 * ada-lang.c (resolve): Add "tracker" parameter.
12256 (resolve_subexp): Likewise.
12257 * ada-exp.y (write_var_from_sym): Update.
12258
12259 2019-04-04 Tom Tromey <tom@tromey.com>
12260
12261 * type-stack.h: New file.
12262 * type-stack.c: New file.
12263 * parser-defs.h (enum type_pieces, union type_stack_elt): Move to
12264 type-stack.h.
12265 (insert_into_type_stack, insert_type, push_type, push_type_int)
12266 (insert_type_address_space, pop_type, pop_type_int)
12267 (pop_typelist, pop_type_stack, append_type_stack)
12268 (push_type_stack, get_type_stack, push_typelist)
12269 (follow_type_instance_flags, follow_types): Don't declare.
12270 * parse.c (type_stack): Remove global.
12271 (parse_exp_in_context): Update.
12272 (insert_into_type_stack, insert_type, push_type, push_type_int)
12273 (insert_type_address_space, pop_type, pop_type_int)
12274 (pop_typelist, pop_type_stack, append_type_stack)
12275 (push_type_stack, get_type_stack, push_typelist)
12276 (follow_type_instance_flags, follow_types): Remove (moved to
12277 type-stack.c).
12278 * f-exp.y (type_stack): New global.
12279 Update rules.
12280 (push_kind_type, f_parse): Update.
12281 * d-exp.y (type_stack): New global.
12282 Update rules.
12283 (d_parse): Update.
12284 * c-exp.y (struct c_parse_state) <type_stack>: New member.
12285 Update rules.
12286 * Makefile.in (COMMON_SFILES): Add type-stack.c.
12287 (HFILES_NO_SRCDIR): Add type-stack.h.
12288
12289 2019-04-04 Tom Tromey <tom@tromey.com>
12290
12291 * rust-exp.y (rust_parser::lex_identifier, rustyylex)
12292 (rust_parser::convert_ast_to_expression, rust_parse)
12293 (rust_lex_test_completion, rust_lex_tests): Update.
12294 * parser-defs.h (struct expr_completion_state): New.
12295 (struct parser_state) <parser_state>: Add completion parameter.
12296 <mark_struct_expression, mark_completion_tag>: New methods.
12297 <parse_completion, m_completion_state>: New members.
12298 (prefixify_expression, null_post_parser): Update.
12299 (mark_struct_expression, mark_completion_tag): Don't declare.
12300 * parse.c (parse_completion, expout_last_struct)
12301 (expout_tag_completion_type, expout_completion_name): Remove
12302 globals.
12303 (parser_state::mark_struct_expression)
12304 (parser_state::mark_completion_tag): Now methods.
12305 (prefixify_expression): Add last_struct parameter.
12306 (prefixify_subexp): Likewise.
12307 (parse_exp_1): Update.
12308 (parse_exp_in_context): Add cstate parameter. Update.
12309 (parse_expression_for_completion): Create an
12310 expr_completion_state.
12311 (null_post_parser): Add "completion" parameter.
12312 * p-exp.y: Update rules.
12313 (yylex): Update.
12314 * language.h (struct language_defn) <la_post_parser>: Add
12315 "completing" parameter.
12316 * go-exp.y: Update rules.
12317 (lex_one_token): Update.
12318 * expression.h (parse_completion): Don't declare.
12319 * d-exp.y: Update rules.
12320 (lex_one_token): Update rules.
12321 * c-exp.y: Update rules.
12322 (lex_one_token): Update.
12323 * ada-lang.c (resolve): Add "parse_completion" parameter.
12324 (resolve_subexp): Likewise.
12325 (ada_resolve_function): Likewise.
12326
12327 2019-04-04 Tom Tromey <tom@tromey.com>
12328
12329 * parser-defs.h (struct parser_state) <start_arglist,
12330 end_arglist>: New methods.
12331 <arglist_len, m_funcall_chain>: New members.
12332 (arglist_len, start_arglist, end_arglist): Don't declare.
12333 * parse.c (arglist_len, funcall_chain): Remove global.
12334 (start_arglist, end_arglist): Remove functions.
12335 (parse_exp_in_context): Update.
12336 * p-exp.y: Update rules.
12337 * m2-exp.y: Update rules.
12338 * go-exp.y: Update rules.
12339 * f-exp.y: Update rules.
12340 * d-exp.y: Update rules.
12341 * c-exp.y: Update rules.
12342
12343 2019-04-04 Tom Tromey <tom@tromey.com>
12344
12345 * rust-exp.y (struct rust_parser) <lex_hex, lex_escape,
12346 lex_operator, push_back>: New methods.
12347 Update all rules.
12348 (rust_parser::lex_hex, lex_escape): Rename and update.
12349 (rust_parser::lex_string, rust_parser::lex_identifier): Update.
12350 (rust_parser::lex_operator): Rename and update.
12351 (rust_parser::lex_number, rustyylex, rustyyerror)
12352 (rust_lex_test_init, rust_lex_test_sequence)
12353 (rust_lex_test_push_back, rust_lex_tests): Update.
12354 * parser-defs.h (struct parser_state) <parser_state>: Add "input"
12355 parameter.
12356 <lexptr, prev_lexptr>: New members.
12357 (lexptr, prev_lexptr): Don't declare.
12358 * parse.c (lexptr, prev_lexptr): Remove globals.
12359 (parse_exp_in_context): Update.
12360 * p-exp.y (yylex, yyerror): Update.
12361 * m2-exp.y (parse_number, yylex, yyerror): Update.
12362 * go-exp.y (lex_one_token, yyerror): Update.
12363 * f-exp.y (match_string_literal, yylex, yyerror): Update.
12364 * d-exp.y (lex_one_token, yyerror): Update.
12365 * c-exp.y (scan_macro_expansion, finished_macro_expansion)
12366 (lex_one_token, yyerror): Update.
12367 * ada-lex.l (YY_INPUT): Update.
12368 (rewind_to_char): Update.
12369 * ada-exp.y (yyerror): Update.
12370
12371 2019-04-04 Tom Tromey <tom@tromey.com>
12372
12373 * rust-exp.y (rustyylex, rust_lex_tests): Update.
12374 * parser-defs.h (struct parser_state) <parser_state>: Add new
12375 parameter.
12376 <comma_terminates>: New member.
12377 (comma_terminates): Don't declare global.
12378 * parse.c (comma_terminates): Remove global.
12379 (parse_exp_in_context): Update.
12380 * p-exp.y (yylex): Update.
12381 * m2-exp.y (yylex): Update.
12382 * go-exp.y (lex_one_token): Update.
12383 * f-exp.y (yylex): Update.
12384 * d-exp.y (lex_one_token): Update.
12385 * c-exp.y (lex_one_token): Update.
12386 * ada-lex.l: Update.
12387
12388 2019-04-04 Tom Tromey <tom@tromey.com>
12389
12390 * rust-exp.y (struct rust_parser) <paren_depth>: New member.
12391 (rustyylex, rust_lex_test_init, rust_lex_test_one)
12392 (rust_lex_test_sequence, rust_lex_test_push_back): Update.
12393 * parser-defs.h (paren_depth): Don't declare.
12394 * parse.c (paren_depth): Remove global.
12395 (parse_exp_in_context): Update.
12396 * p-exp.y (paren_depth): New global.
12397 (pascal_parse): Initialize it.
12398 * m2-exp.y (paren_depth): New global.
12399 (m2_parse): Initialize it.
12400 * go-exp.y (paren_depth): New global.
12401 (go_parse): Initialize it.
12402 * f-exp.y (paren_depth): New global.
12403 (f_parse): Initialize it.
12404 * d-exp.y (paren_depth): New global.
12405 (d_parse): Initialize it.
12406 * c-exp.y (paren_depth): New global.
12407 (c_parse): Initialize it.
12408 * ada-lex.l (paren_depth): New global.
12409 (lexer_init): Initialize it.
12410
12411 2019-04-04 Tom Tromey <tom@tromey.com>
12412
12413 * rust-exp.y (rust_parser::crate_name, rust_parser::super_name)
12414 (rust_parser::convert_ast_to_type)
12415 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
12416 * parser-defs.h (struct parser_state) <parser_state>: Add
12417 parameters. Initialize new members.
12418 <expression_context_block, expression_context_pc>: New members.
12419 * parse.c (expression_context_block, expression_context_pc):
12420 Remove globals.
12421 (parse_exp_in_context): Update.
12422 * p-exp.y: Update all rules.
12423 (yylex): Update.
12424 * m2-exp.y: Update all rules.
12425 (yylex): Update.
12426 * go-exp.y (yylex): Update.
12427 * f-exp.y (yylex): Update.
12428 * d-exp.y: Update all rules.
12429 (yylex): Update.
12430 * c-exp.y: Update all rules.
12431 (lex_one_token, classify_name, yylex, c_parse): Update.
12432 * ada-exp.y (write_var_or_type, write_name_assoc): Update.
12433
12434 2019-04-04 Tom Tromey <tom@tromey.com>
12435
12436 * gdbarch.h, gdbarch.c: Rebuild.
12437 * gdbarch.sh (dtrace_parse_probe_argument): Change type.
12438 * stap-probe.h:
12439 (struct stap_parse_info): Replace "parser_state" with
12440 "expr_builder".
12441 * parser-defs.h (struct expr_builder): Rename from "parser_state".
12442 (parser_state): New class.
12443 * parse.c (expr_builder): Rename.
12444 (expr_builder::release): Rename.
12445 (write_exp_elt, write_exp_elt_opcode, write_exp_elt_sym)
12446 (write_exp_elt_msym, write_exp_elt_block, write_exp_elt_objfile)
12447 (write_exp_elt_longcst, write_exp_elt_floatcst)
12448 (write_exp_elt_type, write_exp_elt_intern, write_exp_string)
12449 (write_exp_string_vector, write_exp_bitstring)
12450 (write_exp_msymbol, mark_struct_expression)
12451 (write_dollar_variable)
12452 (insert_type_address_space, increase_expout_size): Replace
12453 "parser_state" with "expr_builder".
12454 * dtrace-probe.c: Replace "parser_state" with "expr_builder".
12455 * amd64-linux-tdep.c (amd64_dtrace_parse_probe_argument): Replace
12456 "parser_state" with "expr_builder".
12457
12458 2019-04-04 Tom Tromey <tom@tromey.com>
12459
12460 * rust-exp.y: Replace "parse_language" with method call.
12461 * p-exp.y:
12462 (yylex): Replace "parse_language" with method call.
12463 * m2-exp.y:
12464 (yylex): Replace "parse_language" with method call.
12465 * go-exp.y (classify_name): Replace "parse_language" with method
12466 call.
12467 * f-exp.y (yylex): Replace "parse_language" with method call.
12468 * d-exp.y (lex_one_token): Replace "parse_language" with method
12469 call.
12470 * c-exp.y:
12471 (lex_one_token, classify_name, yylex): Replace "parse_language"
12472 with method call.
12473 * ada-exp.y (find_primitive_type, type_char)
12474 (type_system_address): Replace "parse_language" with method call.
12475
12476 2019-04-04 Tom Tromey <tom@tromey.com>
12477
12478 * rust-exp.y: Replace "parse_gdbarch" with method call.
12479 * parse.c (write_dollar_variable, insert_type_address_space):
12480 Replace "parse_gdbarch" with method call.
12481 * p-exp.y (parse_type, yylex): Replace "parse_gdbarch" with method
12482 call.
12483 * objc-lang.c (end_msglist): Replace "parse_gdbarch" with method
12484 call.
12485 * m2-exp.y (parse_type, parse_m2_type, yylex): Replace
12486 "parse_gdbarch" with method call.
12487 * go-exp.y (parse_type, classify_name): Replace "parse_gdbarch"
12488 with method call.
12489 * f-exp.y (parse_type, parse_f_type, yylex): Replace
12490 "parse_gdbarch" with method call.
12491 * d-exp.y (parse_type, parse_d_type, lex_one_token): Replace
12492 "parse_gdbarch" with method call.
12493 * c-exp.y (parse_type, parse_number, classify_name): Replace
12494 "parse_gdbarch" with method call.
12495 * ada-lex.l: Replace "parse_gdbarch" with method call.
12496 * ada-exp.y (parse_type, find_primitive_type, type_char)
12497 (type_system_address): Replace "parse_gdbarch" with method call.
12498
12499 2019-04-04 Tom Tromey <tom@tromey.com>
12500
12501 * dtrace-probe.c (dtrace_probe::build_arg_exprs): Update.
12502 * stap-probe.c (stap_parse_argument): Update.
12503 * stap-probe.h (struct stap_parse_info) <stap_parse_info>: Remove
12504 initial_size parameter.
12505 * rust-exp.y (rust_lex_tests): Update.
12506 * parse.c (parser_state): Update.
12507 (parse_exp_in_context): Update.
12508 * parser-defs.h (struct parser_state) <parser_state>: Remove
12509 "initial_size" parameter.
12510
12511 2019-04-04 Tom Tromey <tom@tromey.com>
12512
12513 * parser-defs.h (increase_expout_size): Don't declare.
12514 * parse.c (increase_expout_size): Now static.
12515
12516 2019-04-04 Thomas Schwinge <thomas@codesourcery.com>
12517
12518 * gnu-nat.c (gnu_nat_target::wait): Fix
12519 target_waitstatus_to_string call.
12520
12521 2019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
12522
12523 * eval.c (evaluate_subexp_standard): Handle internal functions
12524 during Fortran function call handling.
12525
12526 2019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
12527
12528 * NEWS: Mention new internal functions.
12529 * dwarf2read.c (dwarf2_init_complex_target_type): New function.
12530 (read_base_type): Use dwarf2_init_complex_target_type.
12531 * value.c (creal_internal_fn): New function.
12532 (cimag_internal_fn): New function.
12533 (_initialize_values): Register new internal functions.
12534
12535 2019-04-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12536
12537 * infrun.c (stop_all_threads): If debug_infrun, always
12538 trace the wait status after wait_one, using
12539 target_waitstatus_to_string and target_pid_to_str.
12540 (handle_inferior_event): Replace various trace of
12541 wait status kind by a single trace.
12542 * gdb/gnu-nat.c (gnu_nat_target::wait): Replace local
12543 wait status kind image by target_waitstatus_to_string.
12544 * target/waitstatus.c (target_waitstatus_to_string): Fix
12545 obsolete comment.
12546
12547 2019-04-01 Tom Tromey <tromey@adacore.com>
12548
12549 PR symtab/23331:
12550 * dwarf2read.c (partial_die_info::read): Handle DW_AT_ranges.
12551
12552 2019-04-01 Sergio Durigan Junior <sergiodj@redhat.com>
12553 Pedro Alves <palves@redhat.com>
12554
12555 * top.c (quit_force): Call 'finalize_values'.
12556 * value.c (finalize_values): New function.
12557 * value.h (finalize_values): Declare.
12558
12559 2019-03-30 Eli Zaretskii <eliz@gnu.org>
12560
12561 * NEWS: Announce $_gdb_major and $_gdb_minor.
12562
12563 * top.c (init_gdb_version_vars): New function.
12564 (gdb_init): Call init_gdb_version_vars.
12565
12566 2019-03-29 Tom Tromey <tromey@adacore.com>
12567
12568 * printcmd.c (_initialize_printcmd): Add usage lines. Update some
12569 help text. Remove dead code.
12570
12571 2019-03-29 Keith Seitz <keiths@redhat.com>
12572
12573 From Siddhesh Poyarekar:
12574 * f-lang.h (f77_get_upperbound): Return LONGEST.
12575 (f77_get_lowerbound): Likewise.
12576 * f-typeprint.c (f_type_print_varspec_suffix): Expand
12577 UPPER_BOUND and LOWER_BOUND to LONGEST. Use plongest to format
12578 print them.
12579 (f_type_print_base): Expand UPPER_BOUND to LONGEST. Use
12580 plongest to format print it.
12581 * f-valprint.c (f77_get_lowerbound): Return LONGEST.
12582 (f77_get_upperbound): Likewise.
12583 (f77_get_dynamic_length_of_aggregate): Expand UPPER_BOUND,
12584 LOWER_BOUND to LONGEST.
12585 (f77_create_arrayprint_offset_tbl): Likewise.
12586
12587 2019-03-29 Keith Seitz <keiths@redhat.com>
12588
12589 * ada-lang.c (ada_template_to_fixed_record_type_1): Use
12590 %s/pulongest for TYPE_LENGTH instead of %d in format
12591 strings.
12592 * ada-typerint.c (ada_print_type): Likewise.
12593 * amd64-windows-tdep.c (amd64_windows_store_arg_in_reg): Likewise.
12594 * compile/compile-c-support.c (generate_register_struct): Likewise.
12595 * gdbtypes.c (recursive_dump_type): Likewise.
12596 * gdbtypes.h (struct type) <length>: Change type to ULONGEST.
12597 * m2-typeprint.c (m2_array): Use %s/pulongest for TYPE_LENGTH
12598 instead of %d in format strings.
12599 * riscv-tdep.c (riscv_type_alignment): Cast second argument
12600 to std::min to ULONGEST.
12601 * symmisc.c (print_symbol): Use %s/pulongest for TYPE_LENGTH
12602 instead of %d in format strings.
12603 * tracepoint.c (info_scope_command): Likewise.
12604 * typeprint.c (print_offset_data::update)
12605 (print_offset_data::finish): Likewise.
12606 * xtensa-tdep.c (xtensa_store_return_value)
12607 (xtensa_push_dummy_call): Likewise.
12608
12609 2019-03-28 Jon Turney <jon.turney@dronecode.org.uk>
12610
12611 * windows-nat.c (display_selector): Fixed format specifications
12612 for 64-bit Cygwin.
12613
12614 2019-03-28 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12615
12616 * infrun.c (follow_exec): Call target_terminal::ours_for_output.
12617
12618 2019-03-28 Sandra Loosemore <sandra@codesourcery.com>
12619
12620 * nios2-tdep.h (struct gdbarch_tdep): Add is_kernel_helper.
12621 * nios2-tdep.c (nios2_get_next_pc): Skip over kernel helpers.
12622 * nios2-linux-tdep.c (nios2_linux_is_kernel_helper): New.
12623 (nios2_linux_init_abi): Install it.
12624
12625 2019-03-28 Alan Hayward <alan.hayward@arm.com>
12626
12627 * aarch64-tdep.c (aarch64_vnv_type): Use vector types.
12628
12629 2019-03-28 Alan Hayward <alan.hayward@arm.com>
12630
12631 * features/aarch64-sve.c (create_feature_aarch64_sve): Add q view.
12632
12633 2019-03-24 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12634 Tom Tromey <tromey@adacore.com>
12635
12636 * minsyms.c (minimal_symbol_upper_bound): Fix buffer overflow.
12637
12638 2019-03-26 Joel Brobecker <brobecker@adacore.com>
12639
12640 * gdb-gdb.py.in (StructMainTypePrettyPrinter.bound_img): New method.
12641 (StructMainTypePrettyPrinter.bounds_img): Use new "bound_img"
12642 method to compute the bounds of range types. Also print "[evaluated]"
12643 if the bounds' values come from a dynamic evaluation.
12644
12645 2019-03-26 Andrew Burgess <andrew.burgess@embecosm.com>
12646
12647 * cp-valprint.c (cp_print_value_fields): Don't print trailing
12648 whitespace when pretty printing is on.
12649
12650 2019-03-26 Alan Hayward <alan.hayward@arm.com>
12651
12652 * ppc-linux-nat.c: Add include.
12653
12654 2019-03-26 Alan Hayward <alan.hayward@arm.com>
12655
12656 * NEWS: Mention AArch64 Pointer Authentication.
12657
12658 2019-03-26 Alan Hayward <alan.hayward@arm.com>
12659
12660 * arm-linux-nat.c: Add include.
12661
12662 2019-03-25 Simon Marchi <simon.marchi@polymtl.ca>
12663
12664 * source-cache.c (source_cache::get_source_lines): Re-read
12665 fullname after calling open_source_file.
12666
12667 2019-03-25 John Baldwin <jhb@FreeBSD.org>
12668
12669 * NEWS: Mention TLS support for FreeBSD.
12670
12671 2019-03-25 Tom Tromey <tromey@adacore.com>
12672
12673 * minsyms.c (BUNCH_SIZE): Update comment.
12674 (~minimal_symbol_reader): Remove old comment.
12675 (compact_minimal_symbols): Update comment.
12676 (minimal_symbol_reader::install): Remove old comment. Update
12677 other comments.
12678
12679 2019-03-25 Alan Hayward <alan.hayward@arm.com>
12680
12681 * s390-linux-nat.c: Add include.
12682
12683 2019-03-25 Alan Hayward <alan.hayward@arm.com>
12684
12685 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
12686 Call linux_get_hwcap.
12687 * aarch64-linux-tdep.c (aarch64_linux_core_read_description):
12688 Likewise.
12689 (aarch64_linux_get_hwcap): Remove function.
12690 * aarch64-linux-tdep.h (aarch64_linux_get_hwcap): Remove
12691 declaration.
12692 * arm-linux-nat.c (arm_linux_nat_target::read_description):Call
12693 linux_get_hwcap.
12694 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
12695 * linux-tdep.c (linux_get_hwcap): Add function.
12696 (linux_get_hwcap2): Likewise.
12697 * linux-tdep.h (linux_get_hwcap): Add declaration.
12698 (linux_get_hwcap2): Likewise.
12699 * ppc-linux-nat.c (ppc_linux_get_hwcap): Remove function.
12700 (ppc_linux_get_hwcap2): Likewise.
12701 (ppc_linux_nat_target::region_ok_for_hw_watchpoint): Call
12702 linux_get_hwcap.
12703 (ppc_linux_nat_target::insert_watchpoint): Likewise.
12704 (ppc_linux_nat_target::watchpoint_addr_within_range): Likewise.
12705 (ppc_linux_nat_target::read_description): Likewise.
12706 * ppc-linux-tdep.c (ppc_linux_core_read_description): Likewise.
12707 * s390-linux-nat.c: Likewise.
12708 * s390-linux-tdep.c (s390_core_read_description): Likewise.
12709
12710 2019-03-24 Tom Tromey <tom@tromey.com>
12711
12712 * ada-lang.c (standard_lookup): Simplify initialization.
12713 (ada_lookup_symbol_nonlocal): Simplify return.
12714 * solib-spu.c (spu_lookup_lib_symbol): Simplify return.
12715 * solib-darwin.c (darwin_lookup_lib_symbol): Simplify return.
12716 * solib-svr4.c (elf_lookup_lib_symbol): Simplify return.
12717 * rust-lang.c (rust_lookup_symbol_nonlocal): Simplify
12718 initialization.
12719 * solib.c (solib_global_lookup): Simplify.
12720 * symtab.c (null_block_symbol): Remove.
12721 (symbol_cache_lookup): Simplify returns.
12722 (lookup_language_this): Simplify returns.
12723 (lookup_symbol_aux): Simplify return.
12724 (lookup_local_symbol): Simplify returns.
12725 (lookup_global_symbol_from_objfile): Simplify return.
12726 (lookup_symbol_in_objfile_symtabs)
12727 (lookup_symbol_in_objfile_from_linkage_name): Simplify return.
12728 (lookup_symbol_via_quick_fns, lookup_symbol_in_static_block)
12729 (lookup_static_symbol, lookup_global_symbol): Simplify return.
12730 * cp-namespace.c (cp_lookup_bare_symbol)
12731 (cp_search_static_and_baseclasses, cp_lookup_symbol_via_imports)
12732 (cp_lookup_symbol_via_all_imports, cp_lookup_nested_symbol_1)
12733 (cp_lookup_nested_symbol): Don't use null_block_symbol.
12734 (cp_lookup_symbol_via_imports): Simplify initialization.
12735 (find_symbol_in_baseclass): Likewise.
12736 * symtab.h (null_block_symbol): Remove.
12737 * d-namespace.c (d_lookup_symbol): Don't use null_block_symbol.
12738 (d_lookup_nested_symbol, d_lookup_symbol_imports)
12739 (d_lookup_symbol_module): Likewise.
12740 (find_symbol_in_baseclass): Simplify initialization.
12741
12742 2019-03-24 Tom Tromey <tom@tromey.com>
12743
12744 * expression.h: Don't include symtab.h.
12745 (struct block): Forward declare.
12746
12747 2019-03-24 Tom Tromey <tom@tromey.com>
12748
12749 * c-exp.y (typebase): Remove casts.
12750 * gdbtypes.c (lookup_unsigned_typename, )
12751 (lookup_signed_typename): Remove cast.
12752 * eval.c (parse_to_comma_and_eval): Remove cast.
12753 * parse.c (write_dollar_variable): Remove cast.
12754 * block.h (struct block) <superblock>: Now const.
12755 * symfile-debug.c (debug_qf_map_matching_symbols): Update.
12756 * psymtab.c (psym_map_matching_symbols): Make "block" const.
12757 (map_block): Make "block" const.
12758 * symfile.h (struct quick_symbol_functions)
12759 <map_matching_symbols>: Constify block argument to "callback".
12760 * symtab.c (basic_lookup_transparent_type_quick): Make "block"
12761 const.
12762 (find_pc_sect_compunit_symtab): Make "b" const.
12763 (find_symbol_at_address): Likewise.
12764 (search_symbols): Likewise.
12765 * dwarf2read.c (dw2_lookup_symbol): Make "block" const.
12766 (dw2_debug_names_lookup_symbol): Likewise.
12767 (dw2_map_matching_symbols): Update.
12768 * p-valprint.c (pascal_val_print): Remove "block".
12769 * ada-lang.c (ada_add_global_exceptions): Make "b" const.
12770 (aux_add_nonlocal_symbols): Make "block" const.
12771 (resolve_subexp): Remove cast.
12772 * linespec.c (iterate_over_all_matching_symtabs): Make "block"
12773 const.
12774 (iterate_over_file_blocks): Likewise.
12775 * f-exp.y (%union) <bval>: Remove.
12776 * coffread.c (patch_opaque_types): Make "b" const.
12777 * spu-tdep.c (spu_catch_start): Make "block" const.
12778 * c-valprint.c (print_unpacked_pointer): Remove "block".
12779 * symmisc.c (dump_symtab_1): Make "b" const.
12780 (block_depth): Make "block" const.
12781 * d-exp.y (%union) <bval>: Remove.
12782 * cp-support.h (cp_lookup_rtti_type): Update.
12783 * cp-support.c (cp_lookup_rtti_type): Make "block" const.
12784 * psymtab.c (psym_lookup_symbol): Make "block" const.
12785 (maintenance_check_psymtabs): Make "b" const.
12786 * python/py-framefilter.c (extract_sym): Make "sym_block" const.
12787 (enumerate_locals, enumerate_args): Update.
12788 * python/py-symtab.c (stpy_global_block): Make "block" const.
12789 (stpy_static_block): Likewise.
12790 * inline-frame.c (block_starting_point_at): Make "new_block"
12791 const.
12792 * block.c (find_block_in_blockvector): Make return type const.
12793 (blockvector_for_pc_sect): Make "b" const.
12794 (find_block_in_blockvector): Make "b" const.
12795
12796 2019-03-23 Tom Tromey <tom@tromey.com>
12797
12798 * varobj.c (varobj_create): Update.
12799 * symfile.c (clear_symtab_users): Don't reset innermost_block.
12800 * printcmd.c (display_command, do_one_display): Don't reset
12801 innermost_block.
12802 * parser-defs.h (enum innermost_block_tracker_type): Move to
12803 expression.h.
12804 (innermost_block): Update comment.
12805 * parse.c (parse_exp_1): Add tracker_types parameter.
12806 (parse_exp_in_context): Rename from parse_exp_in_context_1. Add
12807 tracker_types parameter. Reset innermost_block.
12808 (parse_exp_in_context): Remove.
12809 (parse_expression_for_completion): Update.
12810 * objfiles.c (~objfile): Don't reset expression_context_block or
12811 innermost_block.
12812 * expression.h (enum innermost_block_tracker_type): Move from
12813 parser-defs.h.
12814 (parse_exp_1): Add tracker_types parameter.
12815 * breakpoint.c (set_breakpoint_condition, watch_command_1): Don't
12816 reset innermost_block.
12817
12818 2019-03-23 Tom Tromey <tom@tromey.com>
12819
12820 * objfiles.h: Include bcache.h.
12821
12822 2019-03-23 Tom Tromey <tom@tromey.com>
12823
12824 * linespec.c (get_current_search_block): Use
12825 scoped_restore_current_language.
12826 * symmisc.c (dump_symtab): Use scoped_restore_current_language.
12827
12828 2019-03-22 Alan Hayward <alan.hayward@arm.com>
12829 Jiong Wang <jiong.wang@arm.com>
12830
12831 * aarch64-linux-tdep.c
12832 (aarch64_linux_iterate_over_regset_sections): Check for pauth
12833 section.
12834 * aarch64-linux-tdep.h (AARCH64_LINUX_SIZEOF_PAUTH): New define.
12835
12836 2019-03-22 Alan Hayward <alan.hayward@arm.com>
12837 Jiong Wang <jiong.wang@arm.com>
12838
12839 * aarch64-tdep.c (aarch64_analyze_prologue): Check for pauth
12840 instructions.
12841 (aarch64_analyze_prologue_test): Add PACIASP test.
12842 (aarch64_prologue_prev_register): Unmask PC value.
12843
12844 2019-03-22 Alan Hayward <alan.hayward@arm.com>
12845 Jiong Wang <jiong.wang@arm.com>
12846
12847 * aarch64-tdep.c (aarch64_frame_unmask_address): New function.
12848 (aarch64_dwarf2_prev_register): Unmask PC value.
12849 (aarch64_dwarf2_frame_init_reg): Init pauth registers.
12850 (aarch64_execute_dwarf_cfa_vendor_op): Check for
12851 DW_CFA_AARCH64_negate_ra_state.
12852 (aarch64_gdbarch_init): Add aarch64_execute_dwarf_cfa_vendor_op.
12853
12854 2019-03-22 Alan Hayward <alan.hayward@arm.com>
12855 Jiong Wang <jiong.wang@arm.com>
12856
12857 * aarch64-tdep.c (aarch64_dwarf_reg_to_regnum): Check for pauth
12858 registers.
12859 (aarch64_pseudo_register_name): Likewise.
12860 (aarch64_pseudo_register_type): Likewise.
12861 (aarch64_pseudo_register_reggroup_p): Likewise.
12862 (aarch64_gdbarch_init): Add pauth registers.
12863 * aarch64-tdep.h (AARCH64_DWARF_PAUTH_RA_STATE): New define.
12864 (AARCH64_DWARF_PAUTH_DMASK): Likewise.
12865 (AARCH64_DWARF_PAUTH_CMASK): Likewise.
12866 (struct gdbarch_tdep): Add regnum for ra_state.
12867
12868 2019-03-22 Alan Hayward <alan.hayward@arm.com>
12869 Jiong Wang <jiong.wang@arm.com>
12870
12871 * arch/aarch64.h (AARCH64_PAUTH_REGS_SIZE): New define.
12872
12873 2019-03-22 Alan Hayward <alan.hayward@arm.com>
12874 Jiong Wang <jiong.wang@arm.com>
12875
12876 * aarch64-linux-nat.c (fetch_pauth_masks_from_thread): New
12877 function.
12878 (aarch64_linux_nat_target::fetch_registers): Read pauth registers.
12879 * aarch64-tdep.c (aarch64_cannot_store_register): New function.
12880 (aarch64_gdbarch_init): Add puth registers.
12881 * aarch64-tdep.h (struct gdbarch_tdep): Add pauth features.
12882 * arch/aarch64.h (AARCH64_PAUTH_DMASK_REGNUM): New define.
12883 (AARCH64_PAUTH_CMASK_REGNUM): Likewise.
12884
12885 2019-03-22 Alan Hayward <alan.hayward@arm.com>
12886 Jiong Wang <jiong.wang@arm.com>
12887
12888 * aarch64-linux-nat.c
12889 (aarch64_linux_nat_target::read_description): Read PACA hwcap.
12890 * aarch64-linux-tdep.c
12891 (aarch64_linux_core_read_description): Likewise.
12892 (aarch64_linux_get_hwcap): New function.
12893 * aarch64-linux-tdep.h (AARCH64_HWCAP_PACA): New define.
12894 (aarch64_linux_get_hwcap): New declaration.
12895
12896 2019-03-22 Alan Hayward <alan.hayward@arm.com>
12897 Jiong Wang <jiong.wang@arm.com>
12898
12899 * aarch64-linux-nat.c
12900 (aarch64_linux_nat_target::read_description): Add pauth param.
12901 * aarch64-linux-tdep.c
12902 (aarch64_linux_core_read_description): Likewise.
12903 * aarch64-tdep.c (struct target_desc): Add in pauth.
12904 (aarch64_read_description): Add pauth param.
12905 (aarch64_gdbarch_init): Likewise.
12906 * aarch64-tdep.h (aarch64_read_description): Likewise.
12907 * arch/aarch64.c (aarch64_create_target_description): Likewise.
12908 * arch/aarch64.h (aarch64_create_target_description): Likewise.
12909 * features/Makefile: Add new files.
12910 * features/aarch64-pauth.c: New file.
12911 * features/aarch64-pauth.xml: New file.
12912
12913 2019-03-20 Tom Tromey <tromey@adacore.com>
12914
12915 * infrun.c (handle_inferior_event): Rename from
12916 handle_inferior_event_1. Create a scoped_value_mark.
12917 (handle_inferior_event): Remove.
12918
12919 2019-03-19 Tom Tromey <tromey@adacore.com>
12920
12921 * mi/mi-interp.c (mi_on_normal_stop_1): Only show displays once.
12922 * infrun.h (print_stop_event): Add "displays" parameter.
12923 * infrun.c (print_stop_event): Add "displays" parameter.
12924
12925 2019-03-19 Pedro Alves <palves@redhat.com>
12926
12927 * tui/tui-out.c (tui_ui_out::do_field_string): Simplify.
12928 (tui_ui_out::do_text): Add comments. Reset M_LINE to 0 instead of
12929 to -1. Fix TABs vs spaces.
12930 (tui_ui_out::tui_ui_out): Don't initialize fields here.
12931 * tui/tui-out.h (tui_ui_out) Add intro comments.
12932 <m_line, m_start_of_line>: In-class initialize, and add describing
12933 comment.
12934
12935 2019-03-18 Alan Hayward <alan.hayward@arm.com>
12936
12937 * arm-linux-nat.c (arm_linux_insert_hw_breakpoint1): Fix
12938 variable names.
12939 (arm_linux_remove_hw_breakpoint1): Use a gdb::function_view.
12940
12941 2019-03-18 Pedro Alves <palves@redhat.com>
12942 Eli Zaretskii <eliz@gnu.org>
12943
12944 * tui/tui-out.c (tui_ui_out::tui_ui_out): Fix initialization of
12945 m_line and m_start_of_line.
12946
12947 2019-03-18 Eli Zaretskii <eliz@gnu.org>
12948
12949 * tui/tui-io.c (gdb_wgetch): Don't echo CR.
12950 (tui_getc): When gdb_wgetch returns a CR, behave the same as when
12951 it returns a newline. This fixes a regression in TU mode, whereby
12952 the next line is output on the same screen line as the user input.
12953
12954 2019-03-18 Tom Tromey <tromey@adacore.com>
12955
12956 * minsyms.c (minimal_symbol_reader::install): Remove call to
12957 obstack_blank.
12958
12959 2019-03-18 Pedro Alves <palves@redhat.com>
12960
12961 * tui/tui-io.c (reverse_mode_p, reverse_save_bg, reverse_save_fg):
12962 New globals.
12963 (apply_style): New, factored out from ...
12964 (apply_ansi_escape): ... this. Handle reverse video mode.
12965 (tui_set_reverse_mode): New function.
12966 * tui/tui-io.h (tui_set_reverse_mode): New declaration.
12967 * tui/tui-winsource.c (tui_show_source_line): Use
12968 tui_set_reverse_mode instead of setting A_STANDOUT.
12969 * ui-style.h (struct ui_file_style) <set_reverse, set_fg, set_bg>:
12970 New setter methods.
12971
12972 2019-03-18 Hannes Domani <ssbssa@yahoo.de>
12973
12974 * tui/tui-source.c (copy_source_line): Fix handling of 'column'.
12975 Handle tabs.
12976
12977 2019-03-18 Tom Tromey <tromey@adacore.com>
12978
12979 * ada-lang.c (empty_array): Add "high" parameter.
12980 (ada_evaluate_subexp): Update.
12981
12982 2019-03-17 Sergei Trofimovich <siarheit@google.com>
12983
12984 * unittests/string_view-selftests.c: Define
12985 _initialize_string_view_selftests unconditionally.
12986
12987 2019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
12988
12989 PR gdb/24350
12990 * windows-nat.c (windows_make_so): Remove unused text_vma variable.
12991
12992 2019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
12993
12994 PR gdb/24351
12995 * windows-nat.c (display_selector): Fix format specifiers.
12996
12997 2019-03-17 Eli Zaretskii <eliz@gnu.org>
12998
12999 * tui/tui-winsource.c (tui_set_is_exec_point_at): Call
13000 tui_refill_source_window instead of tui_refresh_win, to update the
13001 current execution line. This fixes redisplay of the current line
13002 when stepping through the code with "next" or "step".
13003
13004 2019-03-16 Eli Zaretskii <eliz@gnu.org>
13005
13006 * source-cache.c (source_cache::get_source_lines): Call
13007 find_source_lines to initialize s->nlines. This fixes vertical
13008 scrolling of TUI source window when the DOWN arrow is pressed.
13009
13010 2019-03-16 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13011
13012 * auto-load.c (_initialize_auto_load): Fix 'This options has'.
13013 linux-thread-db.c (_initialize_thread_db): Likewise.
13014
13015 2019-03-16 Eli Zaretskii <eliz@gnu.org>
13016
13017 * tui/tui-winsource.c (tui_show_source_line): Revert "Use
13018 wclrtoeol in tui_show_source_line". This reverts changes made in
13019 commit 4a3045920bbe4e50a0f4920b0fdc4e88ef23015c.
13020
13021 2019-03-15 Tom Tromey <tom@tromey.com>
13022
13023 * symtab.h (struct minimal_symbol): Derive from
13024 general_symbol_info.
13025 (MSYMBOL_VALUE, MSYMBOL_VALUE_RAW_ADDRESS)
13026 (MSYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_BYTES)
13027 (MSYMBOL_BLOCK_VALUE, MSYMBOL_VALUE_CHAIN, MSYMBOL_LANGUAGE)
13028 (MSYMBOL_SECTION, MSYMBOL_OBJ_SECTION, MSYMBOL_NATURAL_NAME)
13029 (MSYMBOL_LINKAGE_NAME, MSYMBOL_DEMANGLED_NAME)
13030 (MSYMBOL_SEARCH_NAME): Update.
13031 (MSYMBOL_SET_LANGUAGE, MSYMBOL_SET_NAMES): Remove.
13032 * solib.c (gdb_bfd_lookup_symbol_from_symtab): Don't use memset.
13033 * minsyms.c (minimal_symbol_reader::record_full): Update.
13034
13035 2019-03-15 Tom Tromey <tom@tromey.com>
13036
13037 * minsyms.c (minimal_symbol_reader::install): Use memcpy.
13038
13039 2019-03-15 Tom Tromey <tom@tromey.com>
13040
13041 * objfiles.h (struct objfile_per_bfd_storage) <msymbols>: Now a
13042 unique_xmalloc_ptr.
13043 (objfile::msymbols_range::begin, objfile::msymbols_range::end):
13044 Update.
13045 * minsyms.c (lookup_minimal_symbol_by_pc_section)
13046 (build_minimal_symbol_hash_tables)
13047 (minimal_symbol_reader::install): Update.
13048
13049 2019-03-15 Tom Tromey <tom@tromey.com>
13050
13051 * symtab.c (create_demangled_names_hash): Update.
13052 (symbol_set_names): Update.
13053 * objfiles.h (struct objfile_per_bfd_storage)
13054 <demangled_names_hash>: Now an htab_up.
13055 * objfiles.c (objfile_per_bfd_storage): Simplify.
13056
13057 2019-03-15 Tom Tromey <tom@tromey.com>
13058
13059 * objfiles.h (struct objfile_per_bfd_storage): Declare
13060 destructor.
13061 * objfiles.c (objfile_per_bfd_storage::~objfile_per_bfd_storage):
13062 New.
13063 (get_objfile_bfd_data): Use new. Don't initialize
13064 language_of_main.
13065 (free_objfile_per_bfd_storage): Remove.
13066 (objfile_bfd_data_free, objfile::~objfile): Use delete.
13067
13068 2019-03-15 Tom Tromey <tom@tromey.com>
13069
13070 * symfile.c (reread_symbols): Update.
13071 * objfiles.c (objfile::objfile): Update.
13072 * minsyms.h (terminate_minimal_symbol_table): Don't declare.
13073 * minsyms.c (lookup_minimal_symbol_by_pc_section): Update
13074 comment.
13075 (minimal_symbol_reader::install): Update.
13076 (terminate_minimal_symbol_table): Remove.
13077 * jit.c (jit_object_close_impl): Update.
13078
13079 2019-03-15 Tom Tromey <tom@tromey.com>
13080
13081 * minsyms.c (minimal_symbol_reader::record_full): Remove some
13082 initializations.
13083
13084 2019-03-15 Tom Tromey <tom@tromey.com>
13085
13086 * objfiles.h (struct objfile_per_bfd_storage)
13087 <demangled_hash_languages>: Now a bitset.
13088 * minsyms.c (add_minsym_to_demangled_hash_table): Update.
13089 (lookup_minimal_symbol): Update.
13090
13091 2019-03-15 Tom Tromey <tom@tromey.com>
13092
13093 * minsyms.h (class minimal_symbol_reader) <record_with_info>:
13094 Don't return the symbol.
13095 * coffread.c (record_minimal_symbol): Use record_full.
13096
13097 2019-03-14 Eli Zaretskii <eliz@gnu.org>
13098
13099 The MS-Windows port of ncurses fails to switch to a color pair if
13100 one or both of the colors are the implicit default colors. This
13101 change records the default colors when TUI is initialized, and
13102 then specifies them explicitly when a color pair uses the default
13103 colors. This allows color styling in TUI mode on MS-Windows.
13104
13105 * tui/tui-io.c [__MINGW32__]: Include windows.h. Declare
13106 ncurses_norm_attr.
13107 (tui_initialize_io) [__MINGW32__]: Record the default terminal
13108 colors in ncurses_norm_attr.
13109 (apply_ansi_escape) [__MINGW32__]: If a color in a color pair is
13110 "none", replace it with the default color recorded in
13111 ncurses_norm_attr.
13112
13113 2019-03-14 Tom Tromey <tromey@adacore.com>
13114
13115 * source-cache.h (class source_cache) <get_source_lines>: Return
13116 std::string.
13117 * source-cache.c (source_cache::extract_lines): Handle case where
13118 first_pos==npos. Return std::string.
13119 (source_cache::get_source_lines): Update.
13120
13121 2019-03-14 Tom Tromey <tromey@adacore.com>
13122
13123 * NEWS: Add item for "style sources" commands.
13124 * source-cache.c (source_cache::get_source_lines): Check
13125 source_styling.
13126 * cli/cli-style.c (source_styling): New global.
13127 (_initialize_cli_style): Add "style sources" commands.
13128 (show_style_sources): New function.
13129 * cli/cli-style.h (source_styling): Declare.
13130
13131 2019-03-14 Pedro Alves <palves@redhat.com>
13132 Tom Tromey <tromey@adacore.com>
13133
13134 * tui/tui-winsource.h (tui_refill_source_window): Declare.
13135 * tui/tui-winsource.c (tui_refill_source_window): New function,
13136 from...
13137 (tui_horizontal_source_scroll): ... here. Move some logic.
13138 * cli/cli-style.c (set_style_enabled): Notify new observable.
13139 * tui/tui-hooks.c (tui_redisplay_source): New function.
13140 (tui_attach_detach_observers): Attach or detach
13141 tui_redisplay_source.
13142 * observable.h (source_styling_changed): New observable.
13143 * observable.c: Define source_styling_changed observable.
13144
13145 2019-03-13 Tom Tromey <tromey@adacore.com>
13146
13147 * i386-gnu-nat.c (i386_gnu_nat_target::fetch_registers)
13148 (i386_gnu_nat_target::store_registers): Update.
13149 * target-debug.h (target_debug_print_std_string): New macro.
13150 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
13151 * windows-tdep.c (display_one_tib): Update.
13152 * tui/tui-stack.c (tui_make_status_line): Update.
13153 * top.c (print_inferior_quit_action): Update.
13154 * thread.c (thr_try_catch_cmd): Update.
13155 (add_thread_with_info): Update.
13156 (thread_target_id_str): Update.
13157 (thr_try_catch_cmd): Update.
13158 (thread_command): Update.
13159 (thread_find_command): Update.
13160 * record-btrace.c (record_btrace_target::info_record)
13161 (record_btrace_resume_thread, record_btrace_target::resume)
13162 (record_btrace_cancel_resume, record_btrace_step_thread)
13163 (record_btrace_target::wait, record_btrace_target::wait)
13164 (record_btrace_target::wait, record_btrace_target::stop): Update.
13165 * progspace.c (print_program_space): Update.
13166 * process-stratum-target.c
13167 (process_stratum_target::thread_address_space): Update.
13168 * linux-fork.c (linux_fork_mourn_inferior)
13169 (detach_checkpoint_command, info_checkpoints_command)
13170 (linux_fork_context): Update.
13171 (linux_fork_detach): Update.
13172 (class scoped_switch_fork_info): Update.
13173 (delete_checkpoint_command): Update.
13174 * infrun.c (follow_fork_inferior): Update.
13175 (follow_fork_inferior): Update.
13176 (proceed_after_vfork_done): Update.
13177 (handle_vfork_child_exec_or_exit): Update.
13178 (follow_exec): Update.
13179 (displaced_step_prepare_throw): Update.
13180 (displaced_step_restore): Update.
13181 (start_step_over): Update.
13182 (resume_1): Update.
13183 (clear_proceed_status_thread): Update.
13184 (proceed): Update.
13185 (print_target_wait_results): Update.
13186 (do_target_wait): Update.
13187 (context_switch): Update.
13188 (stop_all_threads): Update.
13189 (restart_threads): Update.
13190 (finish_step_over): Update.
13191 (handle_signal_stop): Update.
13192 (switch_back_to_stepped_thread): Update.
13193 (keep_going_pass_signal): Update.
13194 (print_exited_reason): Update.
13195 (normal_stop): Update.
13196 * inferior.c (inferior_pid_to_str): Change return type.
13197 (print_selected_inferior): Update.
13198 (add_inferior): Update.
13199 (detach_inferior): Update.
13200 * dummy-frame.c (fprint_dummy_frames): Update.
13201 * dcache.c (dcache_info_1): Update.
13202 * btrace.c (btrace_enable, btrace_disable, btrace_teardown)
13203 (btrace_fetch, btrace_clear): Update.
13204 * linux-tdep.c (linux_core_pid_to_str): Change return type.
13205 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): Change return
13206 type.
13207 * fbsd-tdep.c (fbsd_core_pid_to_str): Change return type.
13208 * sol2-tdep.h (sol2_core_pid_to_str): Change return type.
13209 * sol2-tdep.c (sol2_core_pid_to_str): Change return type.
13210 * gdbarch.c, gdbarch.h: Rebuild.
13211 * gdbarch.sh (core_pid_to_str): Change return type.
13212 * windows-nat.c (struct windows_nat_target) <pid_to_str>: Change
13213 return type.
13214 (windows_nat_target::pid_to_str): Change return type.
13215 (windows_delete_thread): Update.
13216 (windows_nat_target::attach): Update.
13217 (windows_nat_target::files_info): Update.
13218 * target-delegates.c: Rebuild.
13219 * sol-thread.c (class sol_thread_target) <pid_to_str>: Change
13220 return type.
13221 (sol_thread_target::pid_to_str): Change return type.
13222 * remote.c (class remote_target) <pid_to_str>: Change return
13223 type.
13224 (remote_target::pid_to_str): Change return type.
13225 (extended_remote_target::attach, remote_target::remote_stop_ns)
13226 (remote_target::remote_notif_remove_queued_reply)
13227 (remote_target::push_stop_reply, remote_target::disable_btrace):
13228 Update.
13229 (extended_remote_target::attach): Update.
13230 * remote-sim.c (struct gdbsim_target) <pid_to_str>: Change return
13231 type.
13232 (gdbsim_target::pid_to_str): Change return type.
13233 * ravenscar-thread.c (struct ravenscar_thread_target)
13234 <pid_to_str>: Change return type.
13235 (ravenscar_thread_target::pid_to_str): Change return type.
13236 * procfs.c (class procfs_target) <pid_to_str>: Change return
13237 type.
13238 (procfs_target::pid_to_str): Change return type.
13239 (procfs_target::attach): Update.
13240 (procfs_target::detach): Update.
13241 (procfs_target::fetch_registers): Update.
13242 (procfs_target::store_registers): Update.
13243 (procfs_target::wait): Update.
13244 (procfs_target::files_info): Update.
13245 * obsd-nat.c (obsd_nat_target::pid_to_str): Change return type.
13246 * nto-procfs.c (struct nto_procfs_target) <pid_to_str>: Change
13247 return type.
13248 (nto_procfs_target::pid_to_str): Change return type.
13249 (nto_procfs_target::files_info, nto_procfs_target::attach): Update.
13250 * linux-thread-db.c (class thread_db_target) <pid_to_str>: Change
13251 return type.
13252 * linux-nat.c (linux_nat_target::pid_to_str): Change return type.
13253 (exit_lwp): Update.
13254 (attach_proc_task_lwp_callback, get_detach_signal)
13255 (detach_one_lwp, resume_lwp, linux_nat_target::resume)
13256 (linux_nat_target::resume, wait_lwp, stop_callback)
13257 (maybe_clear_ignore_sigint, stop_wait_callback, status_callback)
13258 (save_stop_reason, select_event_lwp, linux_nat_filter_event)
13259 (linux_nat_wait_1, resume_stopped_resumed_lwps)
13260 (linux_nat_target::wait, linux_nat_stop_lwp): Update.
13261 * inf-ptrace.c (inf_ptrace_target::pid_to_str): Change return
13262 type.
13263 (inf_ptrace_target::attach): Update.
13264 (inf_ptrace_target::files_info): Update.
13265 * go32-nat.c (struct go32_nat_target) <pid_to_str>: Change return
13266 type.
13267 (go32_nat_target::pid_to_str): Change return type.
13268 * gnu-nat.c (gnu_nat_target::pid_to_str): Change return type.
13269 (gnu_nat_target::wait): Update.
13270 (gnu_nat_target::wait): Update.
13271 (gnu_nat_target::resume): Update.
13272 * fbsd-nat.c (fbsd_nat_target::pid_to_str): Change return type.
13273 (fbsd_nat_target::wait): Update.
13274 * darwin-nat.c (darwin_nat_target::pid_to_str): Change return
13275 type.
13276 (darwin_nat_target::attach): Update.
13277 * corelow.c (class core_target) <pid_to_str>: Change return type.
13278 (core_target::pid_to_str): Change return type.
13279 * target.c (normal_pid_to_str): Change return type.
13280 (default_pid_to_str): Likewise.
13281 (target_pid_to_str): Change return type.
13282 (target_translate_tls_address): Update.
13283 (target_announce_detach): Update.
13284 * bsd-uthread.c (struct bsd_uthread_target) <pid_to_str>: Change
13285 return type.
13286 (bsd_uthread_target::pid_to_str): Change return type.
13287 * bsd-kvm.c (class bsd_kvm_target) <pid_to_str>: Change return
13288 type.
13289 (bsd_kvm_target::pid_to_str): Change return type.
13290 * aix-thread.c (class aix_thread_target) <pid_to_str>: Change
13291 return type.
13292 (aix_thread_target::pid_to_str): Change return type.
13293 * target.h (struct target_ops) <pid_to_str>: Change return type.
13294 (target_pid_to_str, normal_pid_to_str): Likewise.
13295 * obsd-nat.h (class obsd_nat_target) <pid_to_str>: Change return
13296 type.
13297 * linux-nat.h (class linux_nat_target) <pid_to_str>: Change return
13298 type.
13299 * inf-ptrace.h (struct inf_ptrace_target) <pid_to_str>: Change
13300 return type.
13301 * gnu-nat.h (struct gnu_nat_target) <pid_to_str>: Change return
13302 type.
13303 * fbsd-nat.h (class fbsd_nat_target) <pid_to_str>: Change return
13304 type.
13305 * darwin-nat.h (class darwin_nat_target) <pid_to_str>: Change
13306 return type.
13307
13308 2019-03-13 Simon Marchi <simon.marchi@ericsson.com>
13309
13310 * NEWS: Mention that the new default MI version is 3. Mention
13311 changes to the output of commands and events that deal with
13312 multi-location breakpoints.
13313 * breakpoint.c: Include "mi/mi-out.h".
13314 (print_one_breakpoint): Change output syntax if using MI version
13315 >= 3.
13316 * mi/mi-main.h (mi_cmd_fix_multi_location_breakpoint_output):
13317 New.
13318 (mi_multi_location_breakpoint_output_fixed): New.
13319 * mi/mi-main.c (fix_multi_location_breakpoint_output): New.
13320 (mi_cmd_fix_multi_location_breakpoint_output): New.
13321 (mi_multi_location_breakpoint_output_fixed): New.
13322 * mi/mi-cmds.c (mi_cmds): Register command
13323 -fix-multi-location-breakpoint-output.
13324 * mi/mi-out.c (mi_out_new): Instantiate version 3 when using
13325 interpreter "mi".
13326
13327 2019-03-13 Simon Marchi <simon.marchi@polymtl.ca>
13328
13329 * mi/mi-out.h (mi_out_new): Change parameter to const char *.
13330 * mi/mi-out.c (mi_out_new): Change parameter to const char *,
13331 instantiate mi_ui_out based on interpreter name.
13332 * mi/mi-interp.c (mi_interp::init): Use the new mi_out_new.
13333 * mi/mi-main.c (mi_load_progress): Likewise.
13334
13335 2019-03-12 John Baldwin <jhb@FreeBSD.org>
13336
13337 * NEWS: Combine separate "New targets" sections for 8.3.
13338
13339 2019-03-12 John Baldwin <jhb@FreeBSD.org>
13340
13341 * ppc-fbsd-tdep.c (ppcfbsd_get_thread_local_address): New.
13342 (ppcfbsd_init_abi): Install gdbarch
13343 "fetch_tls_load_module_address" and "get_thread_local_address"
13344 methods.
13345
13346 2019-03-12 John Baldwin <jhb@FreeBSD.org>
13347
13348 * riscv-fbsd-tdep.c (riscv_fbsd_get_thread_local_address): New.
13349 (riscv_fbsd_init_abi): Install gdbarch
13350 "fetch_tls_load_module_address" and "get_thread_local_address"
13351 methods.
13352
13353 2019-03-12 John Baldwin <jhb@FreeBSD.org>
13354
13355 * i386-fbsd-tdep.c (i386fbsd_get_thread_local_address): New.
13356 (i386fbsd_init_abi): Install gdbarch
13357 "fetch_tls_load_module_address" and "get_thread_local_address"
13358 methods.
13359
13360 2019-03-12 John Baldwin <jhb@FreeBSD.org>
13361
13362 * amd64-fbsd-tdep.c (amd64fbsd_get_thread_local_address): New.
13363 (amd64fbsd_init_abi): Install gdbarch
13364 "fetch_tls_load_module_address" and "get_thread_local_address"
13365 methods.
13366
13367 2019-03-12 John Baldwin <jhb@FreeBSD.org>
13368
13369 * fbsd-tdep.c (fbsd_pspace_data_handle): New variable.
13370 (struct fbsd_pspace_data): New type.
13371 (get_fbsd_pspace_data, fbsd_pspace_data_cleanup)
13372 (fbsd_read_integer_by_name, fbsd_fetch_rtld_offsets)
13373 (fbsd_get_tls_index, fbsd_get_thread_local_address): New function.
13374 (_initialize_fbsd_tdep): Initialize 'fbsd_pspace_data_handle'.
13375 * fbsd-tdep.c (fbsd_get_thread_local_address): New prototype.
13376
13377 2019-03-12 John Baldwin <jhb@FreeBSD.org>
13378
13379 * gdbtypes.c (lookup_struct_elt): New function.
13380 (lookup_struct_elt_type): Reimplement via lookup_struct_elt.
13381 * gdbtypes.h (struct struct_elt): New type.
13382 (lookup_struct_elt): New prototype.
13383
13384 2019-03-12 John Baldwin <jhb@FreeBSD.org>
13385
13386 * gdbtypes.c (lookup_struct_elt_type): Update comment and
13387 remove disabled code block.
13388
13389 2019-03-12 John Baldwin <jhb@FreeBSD.org>
13390
13391 * gdbarch.sh (get_thread_local_address): New method.
13392 * gdbarch.h, gdbarch.c: Regenerate.
13393 * target.c (target_translate_tls_address): Use
13394 gdbarch_get_thread_local_address if present instead of
13395 target::get_thread_local_address.
13396
13397 2019-03-12 John Baldwin <jhb@FreeBSD.org>
13398
13399 * target.h (target::get_thread_local_address): Update comment.
13400
13401 2019-03-12 John Baldwin <jhb@FreeBSD.org>
13402
13403 * solib-svr4.c (svr4_fetch_objfile_link_map): Look for
13404 objfile->separate_debug_objfile_backlink if not NULL.
13405
13406 2019-03-12 John Baldwin <jhb@FreeBSD.org>
13407
13408 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
13409 tdep->fsbase_regnum instead of constants for fs_base and gs_base.
13410 (amd64bsd_store_inferior_registers): Likewise.
13411 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
13412 Enable segment base registers.
13413 * i386-bsd-nat.c (i386bsd_fetch_inferior_registers): Use
13414 PT_GETFSBASE and PT_GETGSBASE.
13415 (i386bsd_store_inferior_registers): Use PT_SETFSBASE and
13416 PT_SETGSBASE.
13417 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Enable
13418 segment base registers.
13419 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
13420
13421 2019-03-12 John Baldwin <jhb@FreeBSD.org>
13422
13423 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
13424 Update calls to i386_target_description to add 'segments'
13425 parameter.
13426 * amd64-tdep.c (amd64_init_abi): Set tdep->fsbase_regnum. Don't
13427 add segment base registers.
13428 * arch/i386.c (i386_create_target_description): Add 'segments'
13429 parameter to enable segment base registers.
13430 * arch/i386.h (i386_create_target_description): Likewise.
13431 * features/i386/32bit-segments.xml: New file.
13432 * features/i386/32bit-segments.c: Generate.
13433 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Update
13434 call to i386_target_description to add 'segments' parameter.
13435 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
13436 * i386-go32-tdep.c (i386_go32_init_abi): Likewise.
13437 * i386-linux-tdep.c (i386_linux_read_description): Likewise.
13438 * i386-tdep.c (i386_validate_tdesc_p): Add segment base registers
13439 if feature is present.
13440 (i386_gdbarch_init): Pass I386_NUM_REGS to set_gdbarch_num_regs.
13441 Add 'segments' parameter to call to i386_target_description.
13442 (i386_target_description): Add 'segments' parameter to enable
13443 segment base registers.
13444 (_initialize_i386_tdep) [GDB_SELF_TEST]: Add 'segments' parameter
13445 to call to i386_target_description.
13446 * i386-tdep.h (struct gdbarch_tdep): Add 'fsbase_regnum'.
13447 (enum i386_regnum): Add I386_FSBASE_REGNUM and I386_GSBASE_REGNUM.
13448 Define I386_NUM_REGS.
13449 (i386_target_description): Add 'segments' parameter to enable
13450 segment base registers.
13451
13452 2019-03-12 Eli Zaretskii <eliz@gnu.org>
13453
13454 PR/24325
13455 * source-cache.c: #undef open and close, to avoid unresolved
13456 externals during linking.
13457
13458 2019-03-12 Tom Tromey <tromey@adacore.com>
13459
13460 * remote.c (magic_null_ptid, not_sent_ptid, any_thread_ptid): Now
13461 const. Add initializers.
13462 (_initialize_remote): Don't initialize ptid globals.
13463
13464 2019-03-12 Pedro Alves <palves@redhat.com>
13465
13466 * yy-remap.h [TEST_CPNAMES] (YYFPRINTF): Don't define.
13467
13468 2019-03-12 Pedro Alves <palves@redhat.com>
13469
13470 * cp-name-parser.y (main): Remove unused 'len' variable.
13471
13472 2019-03-12 Tom Tromey <tromey@adacore.com>
13473
13474 * common/ptid.c (null_ptid, minus_one_ptid): Now const.
13475 * common/ptid.h (null_ptid, minus_one_ptid): Now const.
13476
13477 2019-03-12 Tom Tromey <tromey@adacore.com>
13478
13479 * linux-nat.c (iterate_over_lwps): Update.
13480 (stop_callback): Remove parameter.
13481 (stop_wait_callback, detach_callback, resume_set_callback)
13482 (select_singlestep_lwp_callback, set_ignore_sigint)
13483 (status_callback, resumed_callback, resume_clear_callback)
13484 (kill_callback, kill_wait_callback, linux_nat_stop_lwp): Remove
13485 data parameter.
13486 (linux_nat_target::detach, linux_nat_target::resume)
13487 (linux_stop_and_wait_all_lwps, select_event_lwp)
13488 (linux_nat_filter_event, linux_nat_wait_1)
13489 (linux_nat_target::kill, linux_nat_target::stop)
13490 (linux_nat_target::stop): Update.
13491 (linux_nat_resume_callback): Change type.
13492 (resume_stopped_resumed_lwps, count_events_callback)
13493 (select_event_lwp_callback): Likewise.
13494 (linux_stop_lwp, linux_nat_stop_lwp): Update.
13495 * arm-linux-nat.c (struct update_registers_data): Remove.
13496 (update_registers_callback): Change type.
13497 (arm_linux_insert_hw_breakpoint1): Update.
13498 * nat/x86-linux-dregs.c (update_debug_registers_callback): Remove
13499 parameter.
13500 (x86_linux_dr_set_addr): Update.
13501 (x86_linux_dr_set_control): Update.
13502 * nat/linux-nat.h (iterate_over_lwps_ftype): Remove parameter.
13503 (iterate_over_lwps): Use gdb::function_view.
13504 * nat/aarch64-linux-hw-point.c (struct
13505 aarch64_dr_update_callback_param): Remove.
13506 (debug_reg_change_callback): Change type.
13507 (aarch64_notify_debug_reg_change): Update.
13508 * s390-linux-nat.c (s390_refresh_per_info): Update.
13509
13510 2019-03-11 Tom Tromey <tromey@adacore.com>
13511
13512 * dwarf2read.c (dwarf2_find_containing_comp_unit): Remove
13513 redundant assignment to "this_cu".
13514
13515 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
13516
13517 * gdbtypes.c (rank_one_type): Remove unnecessary cases from switch.
13518
13519 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
13520
13521 * gdbtypes.c (rank_one_type_parm_set): New function extracted
13522 from...
13523 (rank_one_type): ... this.
13524
13525 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
13526
13527 * gdbtypes.c (rank_one_type_parm_struct): New function extracted
13528 from...
13529 (rank_one_type): ... this.
13530
13531 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
13532
13533 * gdbtypes.c (rank_one_type_parm_complex): New function extracted
13534 from...
13535 (rank_one_type): ... this.
13536
13537 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
13538
13539 * gdbtypes.c (rank_one_type_parm_float): New function extracted
13540 from...
13541 (rank_one_type): ... this.
13542
13543 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
13544
13545 * gdbtypes.c (rank_one_type_parm_bool): New function extracted
13546 from...
13547 (rank_one_type): ... this.
13548
13549 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
13550
13551 * gdbtypes.c (rank_one_type_parm_range): New function extracted
13552 from...
13553 (rank_one_type): ... this.
13554
13555 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
13556
13557 * gdbtypes.c (rank_one_type_parm_char): New function extracted
13558 from...
13559 (rank_one_type): ... this.
13560
13561 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
13562
13563 * gdbtypes.c (rank_one_type_parm_enum): New function extracted
13564 from...
13565 (rank_one_type): ... this.
13566
13567 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
13568
13569 * gdbtypes.c (rank_one_type_parm_int): New function extracted
13570 from...
13571 (rank_one_type): ... this.
13572
13573 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
13574
13575 * gdbtypes.c (rank_one_type_parm_func): New function extracted
13576 from...
13577 (rank_one_type): ... this.
13578
13579 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
13580
13581 * gdbtypes.c (rank_one_type_parm_array): New function extracted
13582 from...
13583 (rank_one_type): ... this.
13584
13585 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
13586
13587 * gdbtypes.c (rank_one_type_parm_ptr): New function extracted
13588 from...
13589 (rank_one_type): ... this.
13590
13591 2019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13592
13593 * inferior.c (initialize_inferiors): Ensure 'help set/show print
13594 inferior-events' shows the example events.
13595
13596 2019-03-08 Eli Zaretskii <eliz@gnu.org>
13597
13598 Support styling on native MS-Windows console
13599
13600 PR/24315
13601 * utils.c (can_emit_style_escape) [_WIN32]: Don't disable styling
13602 on MS-Windows if $TERM is not defined.
13603
13604 * cli/cli-style.c: Set cli_styling to 1 in the MinGW build.
13605
13606 * posix-hdep.c (gdb_console_fputs):
13607 * mingw-hdep.c (rgb_to_16colors, gdb_console_fputs): New
13608 functions.
13609 * ui-file.h (gdb_console_fputs): Add prototype.
13610
13611 * ui-file.c (stdio_file::puts): Call gdb_console_fputs, and fall
13612 back to fputs only if the former returns zero.
13613
13614 2019-03-07 Tom Tromey <tom@tromey.com>
13615
13616 * symmisc.c (print_symbol_bcache_statistics): Update.
13617 (print_objfile_statistics): Update.
13618 * symfile.c (allocate_symtab): Update.
13619 * stabsread.c: Don't include bcache.h.
13620 * psymtab.h (struct psymbol_bcache): Don't declare.
13621 (class psymtab_storage) <psymbol_cache>: Now a bcache.
13622 (psymbol_bcache_init, psymbol_bcache_free)
13623 (psymbol_bcache_get_bcache): Don't declare.
13624 * psymtab.c (struct psymbol_bcache): Remove.
13625 (psymtab_storage::psymtab_storage): Update.
13626 (psymtab_storage::~psymtab_storage): Update.
13627 (psymbol_bcache_init, psymbol_bcache_free)
13628 (psymbol_bcache_get_bcache, psymbol_bcache_full): Remove.
13629 (add_psymbol_to_bcache): Update.
13630 (allocate_psymtab): Update.
13631 * objfiles.h (struct objfile_per_bfd_storage) <filename_cache,
13632 macro_cache>: No longer pointers.
13633 * objfiles.c (get_objfile_bfd_data): Don't call bcache_xmalloc.
13634 (free_objfile_per_bfd_storage): Don't call bcache_xfree.
13635 * macrotab.c (macro_bcache): Update.
13636 * macroexp.c: Don't include bcache.h.
13637 * gdbtypes.c (check_types_worklist): Update.
13638 (types_deeply_equal): Remove TRY/CATCH. Update.
13639 * elfread.c (elf_symtab_read): Update.
13640 * dwarf2read.c: Don't include bcache.h.
13641 * buildsym.c (buildsym_compunit::get_macro_table): Update.
13642 * bcache.h (bcache, bcache_full, bcache_xffree, bcache_xmalloc)
13643 (print_bcache_statistics, bcache_memory_used): Don't declare.
13644 (struct bcache): Move from bcache.c. Add constructor, destructor,
13645 methods. Rename all data members.
13646 * bcache.c (struct bcache): Move to bcache.h.
13647 (bcache::expand_hash_table): Rename from expand_hash_table.
13648 (bcache): Remove.
13649 (bcache::insert): Rename from bcache_full.
13650 (bcache::compare): Rename from bcache_compare.
13651 (bcache_xmalloc): Remove.
13652 (bcache::~bcache): Rename from bcache_xfree.
13653 (bcache::print_statistics): Rename from print_bcache_statistics.
13654 (bcache::memory_used): Rename from bcache_memory_used.
13655
13656 2019-03-07 Pedro Alves <palves@redhat.com>
13657
13658 * infrun.c (normal_stop): Also check for
13659 TARGET_WAITKIND_NO_RESUMED before referring to inferior_thread().
13660
13661 2019-03-07 Andrew Burgess <andrew.burgess@embecosm.com>
13662
13663 * f-lang.c (value_from_host_double): Moved to...
13664 * value.c (value_from_host_double): ...here.
13665 * value.h (value_from_host_double): Declare.
13666 * guile/scm-math.c (vlscm_convert_typed_number): Use
13667 value_from_host_double.
13668 (vlscm_convert_number): Likewise.
13669 * guile/scm-value.c (gdbscm_value_to_real): Likewise.
13670 * python/py-value.c (convert_value_from_python): Likewise.
13671
13672 2019-03-06 Tom Tromey <tom@tromey.com>
13673
13674 * gcore.c (write_gcore_file): Use SCOPE_EXIT.
13675
13676 2019-03-06 Tom Tromey <tom@tromey.com>
13677
13678 * utils.h (free_current_contents): Don't declare.
13679 * utils.c (free_current_contents): Remove.
13680
13681 2019-03-06 Tom Tromey <tom@tromey.com>
13682
13683 * top.c (quit_force): Update.
13684 * main.c (captured_command_loop): Update.
13685 * common/new-op.c (operator new): Update.
13686 * common/common-exceptions.c (struct catcher)
13687 <save_cleanup_chain>: Remove member.
13688 (exceptions_state_mc_init): Update.
13689 (exception_try_scope_entry): Return nullptr.
13690 (exception_try_scope_exit, exception_rethrow)
13691 (throw_exception_sjlj, throw_exception_cxx): Update.
13692 * common/cleanups.h (make_cleanup, make_cleanup_dtor)
13693 (all_cleanups, do_cleanups, discard_cleanups)
13694 (discard_final_cleanups, save_cleanups, save_final_cleanups)
13695 (restore_cleanups, restore_final_cleanups): Don't declare.
13696 (do_final_cleanups): Remove parameter.
13697 * common/cleanups.c (cleanup_chain, make_cleanup)
13698 (make_cleanup_dtor, all_cleanups, do_cleanups)
13699 (discard_my_cleanups, discard_cleanups)
13700 (discard_final_cleanups, save_my_cleanups, save_cleanups)
13701 (save_final_cleanups, restore_my_cleanups, restore_cleanups)
13702 (null_cleanup): Remove.
13703 (do_final_cleanups): Remove parameter.
13704
13705 2019-03-06 Tom Tromey <tom@tromey.com>
13706
13707 * remote.c (remote_target::remote_parse_stop_reply): Use
13708 unique_xmalloc_ptr.
13709
13710 2019-03-06 Tom Tromey <tom@tromey.com>
13711
13712 * stabsread.c (struct stabs_field_info): Rename from field_info.
13713 <list, fnlist>: Add initializers.
13714 <obstack>: New member.
13715 (read_member_functions, read_struct_fields, read_baseclasses):
13716 Allocate on obstack. Don't use cleanups.
13717 (read_one_struct_field, read_member_functions, read_struct_fields)
13718 (read_baseclasses, read_tilde_fields, attach_fn_fields_to_type)
13719 (attach_fields_to_type, read_cpp_abbrev, read_member_functions)
13720 (read_struct_type): Update.
13721
13722 2019-03-06 Tom Tromey <tom@tromey.com>
13723
13724 * nat/linux-namespaces.c (linux_mntns_access_fs): Use SCOPE_EXIT.
13725 * common/filestuff.h (make_cleanup_close): Don't declare.
13726 * common/filestuff.c (do_close_cleanup, make_cleanup_close):
13727 Remove.
13728
13729 2019-03-06 Tom Tromey <tom@tromey.com>
13730
13731 * solib-aix.c: Use make_scope_exit.
13732
13733 2019-03-06 Tom Tromey <tom@tromey.com>
13734
13735 * solib-svr4.c (svr4_parse_libraries, svr4_current_sos_direct):
13736 Use make_scope_exit.
13737
13738 2019-03-06 Tom Tromey <tom@tromey.com>
13739
13740 * solib-svr4.c (disable_probes_interface): Remove parameter.
13741 (svr4_handle_solib_event): Use make_scope_exit.
13742
13743 2019-03-06 Tom Tromey <tom@tromey.com>
13744
13745 * remote.c (struct stop_reply_deleter): Remove.
13746 (stop_reply_up): Update.
13747 (struct stop_reply): Derive from notif_event. Don't typedef.
13748 <regcache>: Now a std::vector.
13749 (stop_reply_xfree): Remove.
13750 (stop_reply::~stop_reply): Rename from stop_reply_dtr.
13751 (remote_notif_stop_alloc_reply): Return a unique_ptr. Use new.
13752 (remote_target::discard_pending_stop_replies): Use delete.
13753 (remote_target::remote_parse_stop_reply): Update.
13754 (remote_target::process_stop_reply): Update.
13755 * remote-notif.h (struct notif_event): Add virtual destructor.
13756 Remove "dtr" member.
13757 (struct notif_client) <alloc_event>: Return a unique_ptr.
13758 (notif_event_xfree): Don't declare.
13759 (notif_event_up): New typedef.
13760 * remote-notif.c (remote_notif_ack, remote_notif_parse): Update.
13761 (notif_event_xfree, do_notif_event_xfree): Remove.
13762 (remote_notif_state_xfree): Update.
13763
13764 2019-03-06 Tom Tromey <tom@tromey.com>
13765
13766 * infrun.c (displaced_step_clear_cleanup): Now a
13767 forward_scope_exit type.
13768 (displaced_step_prepare_throw): Update.
13769 (displaced_step_fixup): Update.
13770
13771 2019-03-06 Tom Tromey <tom@tromey.com>
13772
13773 * inferior.h (class inferior): Update comment.
13774 * gdbthread.h (class thread_info): Update comment.
13775
13776 2019-03-06 Joel Brobecker <brobecker@adacore.com>
13777 Tom Tromey <tom@tromey.com>
13778
13779 * stabsread.h (struct stab_section_list): Remove.
13780 (coffstab_build_psymtabs): Update.
13781 * dbxread.c (symbuf_sections): Now a std::vector.
13782 (sect_idx): New global.
13783 (fill_symbuf): Update.
13784 (coffstab_build_psymtabs): Change type of stabsects parameter.
13785 Update.
13786 * coffread.c (struct coff_symfile_info) <stabsects>: Now a
13787 std::vector.
13788 (linetab, linetab_offset, linetab_size, stringtab): Move earlier.
13789 (coff_locate_sections): Update.
13790 (coff_symfile_read): Remove cleanups. Update.
13791 (init_stringtab): Add storage parameter.
13792 (free_stringtab, free_stringtab_cleanup): Remove.
13793 (init_lineno): Add storage parameter.
13794 (free_linetab, free_linetab_cleanup): Remove.
13795
13796 2019-03-06 Pedro Alves <palves@redhat.com>
13797
13798 * linux-fork.c (fork_info::clobber_regs): Delete.
13799 (fork_load_infrun_state): Remove reference to 'clobber_regs'.
13800 (fork_save_infrun_state): Remove 'clobber_regs' parameter. Update
13801 comment. Adjust.
13802 (scoped_switch_fork_info::scoped_switch_fork_info)
13803 (checkpoint_command, linux_fork_context): Adjust
13804 fork_save_infrun_state calls.
13805
13806 2019-03-06 Pedro Alves <palves@redhat.com>
13807
13808 * linux-fork.c (inf_has_multiple_thread_cb): Delete.
13809 (inf_has_multiple_threads): Return 'bool' and rewrite using
13810 inferior_info::threads().
13811
13812 2019-03-06 Pedro Alves <palves@redhat.com>
13813
13814 * linux-fork.c: Include <list>.
13815 (fork_list): Now a std::list instance.
13816 (fork_info): Add ctor, dtor, and in-class initialize all fields.
13817 (forks_exist_p, find_last_fork): Adjust.
13818 (new_fork): Delete.
13819 (one_fork_p): New.
13820 (add_fork): Adjust.
13821 (free_fork): Delete, folded into fork_info::~fork_info().
13822 (delete_fork, find_fork_ptid, find_fork_id, find_fork_pid):
13823 Adjust.
13824 (init_fork_list): Delete.
13825 (linux_fork_killall, linux_fork_mourn_inferior)
13826 (linux_fork_detach, info_checkpoints_command): Adjust.
13827 (_initialize_linux_fork): No longer call init_fork_list.
13828
13829 2019-03-06 Pedro Alves <palves@redhat.com>
13830
13831 * linux-fork.c (new_fork): New, split out of ...
13832 (add_fork): ... this. Return void. Move "first fork" special
13833 case from here, to ...
13834 (checkpoint_command): ... here.
13835 * linux-linux.h (add_fork): Return void.
13836
13837 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13838
13839 * f-exp.y (direct_abs_decl): Handle TYPE*SIZE type names.
13840
13841 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13842 Chris January <chris.january@arm.com>
13843 David Lecomber <david.lecomber@arm.com>
13844
13845 * f-exp.y: New token, UNOP_INTRINSIC.
13846 (exp): New pattern using UNOP_INTRINSIC token.
13847 (f77_keywords): Add 'abs' keyword.
13848 * f-lang.c: Add 'target-float.h' and 'math.h' includes.
13849 (value_from_host_double): New function.
13850 (evaluate_subexp_f): Support UNOP_ABS.
13851
13852 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13853
13854 * f-lang.c (build_fortran_types): Use TYPE_CODE_CHAR for character
13855 types.
13856
13857 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13858
13859 * f-exp.y (convert_to_kind_type): Handle integer (kind=8).
13860 * f-lang.c (build_fortran_types): Setup builtin_integer_s8.
13861 * f-lang.h (struct builtin_f_type): Add builtin_integer_s8 field.
13862
13863 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13864
13865 * f-exp.y (convert_to_kind_type): Handle more type kinds.
13866
13867 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13868 Chris January <chris.january@arm.com>
13869
13870 * expprint.c (dump_subexp_body_standard): Support UNOP_KIND.
13871 * f-exp.y: Define 'KIND' token.
13872 (exp): New pattern for KIND expressions.
13873 (ptype): Handle types with a kind extension.
13874 (direct_abs_decl): Extend to spot kind extensions.
13875 (f77_keywords): Add 'kind' to the list.
13876 (push_kind_type): New function.
13877 (convert_to_kind_type): New function.
13878 * f-lang.c (evaluate_subexp_f): Support UNOP_KIND.
13879 * parse.c (operator_length_standard): Likewise.
13880 * parser-defs.h (enum type_pieces): Add tp_kind.
13881 * std-operator.def: Add UNOP_KIND.
13882
13883 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13884
13885 * f-exp.y (f_parse): Set yydebug.
13886
13887 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13888
13889 * f-lang.c (evaluate_subexp_f): New function.
13890 (exp_descriptor_f): New global.
13891 (f_language_defn): Use exp_descriptor_f instead of
13892 exp_descriptor_standard.
13893
13894 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13895
13896 * f-exp.y (struct token): Add comments.
13897 (dot_ops): Remove uppercase versions and the end marker.
13898 (f77_keywords): Likewise.
13899 (yylex): Use ARRAY_SIZE to iterate over dot_ops, assert all
13900 entries in the dot_ops array are case insensitive, and use
13901 strncasecmp to compare strings. Also some whitespace cleanup in
13902 this area. Similar for the f77_keywords array, except entries in
13903 this list might be case sensitive.
13904
13905 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13906
13907 * f-exp.y (struct f77_boolean_val): Add comments.
13908 (boolean_values): Remove uppercase versions, and end marker.
13909 (yylex): Use ARRAY_SIZE for iterating over boolean_values array,
13910 and use strncasecmp to achieve case insensitivity. Additionally,
13911 perform whitespace cleanup around this code.
13912
13913 2019-03-06 Tom Tromey <tromey@adacore.com>
13914
13915 * remote-sim.c (gdbsim_target_open): Use result of
13916 gdb_argv::release.
13917
13918 2019-03-06 Richard Bunt <richard.bunt@arm.com>
13919 Dirk Schubert <dirk.schubert@arm.com>
13920 Chris January <chris.january@arm.com>
13921
13922 * eval.c (evaluate_subexp_standard): Call Fortran argument
13923 wrapping logic.
13924 * f-lang.c (struct value): A value which can be passed into a
13925 Fortran function call.
13926 (fortran_argument_convert): Wrap Fortran arguments in a pointer
13927 where appropriate.
13928 (struct type): Value ready for a Fortran function call.
13929 (fortran_preserve_arg_pointer): Undo check_typedef, the pointer
13930 is needed.
13931 * f-lang.h (fortran_argument_convert): Declaration.
13932 (fortran_preserve_arg_pointer): Declaration.
13933 * infcall.c (value_arg_coerce): Call Fortran argument logic.
13934
13935 2019-03-05 Tom Tromey <tromey@adacore.com>
13936
13937 * python/py-prettyprint.c (print_string_repr): Remove #if.
13938 * python/py-utils.c (unicode_to_encoded_string): Remove #if.
13939
13940 2019-03-05 Tom Tromey <tromey@adacore.com>
13941
13942 * target.c (the_dummy_target): Move later. Change type to
13943 "dummy_target".
13944 (initialize_targets): Don't initialize the_dummy_target.
13945
13946 2019-03-05 Tom Tromey <tromey@adacore.com>
13947
13948 * gdb_bfd.c (gdb_bfd_fdopenr): Remove.
13949 * gdb_bfd.h (gdb_bfd_fdopenr): Don't declare.
13950
13951 2019-03-05 Tom Tromey <tromey@adacore.com>
13952
13953 * windows-nat.c (windows_nat_target::attach)
13954 (windows_nat_target::detach): Don't call gdb_flush.
13955 * valprint.c (generic_val_print, val_print, val_print_string):
13956 Don't call gdb_flush.
13957 * utils.c (defaulted_query): Don't call gdb_flush.
13958 * typeprint.c (print_type_scalar): Don't call gdb_flush.
13959 * target.c (target_announce_detach): Don't call gdb_flush.
13960 * sparc64-tdep.c (adi_print_versions): Don't call gdb_flush.
13961 * remote.c (extended_remote_target::attach): Don't call
13962 gdb_flush.
13963 * procfs.c (procfs_target::detach): Don't call gdb_flush.
13964 * printcmd.c (do_examine): Don't call gdb_flush.
13965 (info_display_command): Don't call gdb_flush.
13966 * p-valprint.c (pascal_val_print): Don't call gdb_flush.
13967 * nto-procfs.c (nto_procfs_target::attach): Don't call gdb_flush.
13968 * memattr.c (info_mem_command): Don't call gdb_flush.
13969 * mdebugread.c (mdebug_build_psymtabs): Don't call gdb_flush.
13970 * m2-valprint.c (m2_val_print): Don't call gdb_flush.
13971 * infrun.c (follow_exec, handle_command): Don't call gdb_flush.
13972 * inf-ptrace.c (inf_ptrace_target::attach): Don't call gdb_flush.
13973 * hppa-tdep.c (unwind_command): Don't call gdb_flush.
13974 * gnu-nat.c (gnu_nat_target::attach): Don't call gdb_flush.
13975 (gnu_nat_target::detach): Don't call gdb_flush.
13976 * f-valprint.c (f_val_print): Don't call gdb_flush.
13977 * darwin-nat.c (darwin_nat_target::attach): Don't call gdb_flush.
13978 * cli/cli-script.c (read_command_lines): Don't call gdb_flush.
13979 * cli/cli-cmds.c (shell_escape, print_disassembly): Don't call
13980 gdb_flush.
13981 * c-valprint.c (c_val_print): Don't call gdb_flush.
13982 * ada-valprint.c (ada_print_scalar): Don't call gdb_flush.
13983
13984 2019-03-05 Tom Tromey <tromey@adacore.com>
13985
13986 * varobj.c (update_dynamic_varobj_children): Update.
13987 (install_default_visualizer): Use reset, not release.
13988 * value.c (set_internalvar): Update.
13989 * dwarf2loc.c (value_of_dwarf_reg_entry): Update.
13990 * common/gdb_ref_ptr.h (class ref_ptr) <release>: Add
13991 ATTRIBUTE_UNUSED_RESULT.
13992
13993 2019-03-05 Tom Tromey <tromey@adacore.com>
13994
13995 * remote.c (class scoped_remote_fd) <release>: Add
13996 ATTRIBUTE_UNUSED_RESULT.
13997
13998 2019-03-05 Tom Tromey <tromey@adacore.com>
13999
14000 * macroexp.c (struct macro_buffer) <release>: Add
14001 ATTRIBUTE_UNUSED_RESULT.
14002
14003 2019-03-05 Tom Tromey <tromey@adacore.com>
14004
14005 * nat/linux-btrace.c (linux_enable_bts, linux_enable_pt): Update.
14006 * common/scoped_mmap.h (class scoped_mmap) <release>: Add
14007 ATTRIBUTE_UNUSED_RESULT.
14008
14009 2019-03-05 Tom Tromey <tromey@adacore.com>
14010
14011 * common/scoped_fd.h (class scoped_fd) <release>: Add
14012 ATTRIBUTE_UNUSED_RESULT.
14013
14014 2019-03-05 Tom Tromey <tromey@adacore.com>
14015
14016 * parser-defs.h (struct parser_state) <release>: Add
14017 ATTRIBUTE_UNUSED_RESULT.
14018
14019 2019-03-05 Tom Tromey <tromey@adacore.com>
14020
14021 * utils.h (class gdb_argv) <release>: Add
14022 ATTRIBUTE_UNUSED_RESULT.
14023 * common/common-defs.h (ATTRIBUTE_UNUSED_RESULT): Define.
14024
14025 2019-03-02 Eli Zaretskii <eliz@gnu.org>
14026
14027 * xml-syscall.c (xml_list_syscalls_by_group): Drop 'struct' from
14028 for-loop range, to avoid compiler warnings.
14029
14030 * tui/tui.c (tui_enable) [__MINGW32__]: Don't declare 'cap', to
14031 avoid compiler warnings about unused variables.
14032
14033 * NEWS: Mention end of support for native debugging on MS-Windows
14034 before XP.
14035
14036 PR gdb/24292
14037 * common/netstuff.c:
14038 * gdbserver/gdbreplay.c
14039 * gdbserver/remote-utils.c:
14040 * ser-tcp.c:
14041 * unittests/parse-connection-spec-selftests.c [USE_WIN32API]:
14042 Include ws2tcpip.h instead of wsiapi.h and winsock2.h. Redefine
14043 _WIN32_WINNT to 0x0501 if defined to a smaller value, as
14044 'getaddrinfo' and 'freeaddrinfo' were not available before
14045 Windows XP, and mingw.org's MinGW headers by default define
14046 _WIN32_WINNT to 0x500.
14047
14048 2019-03-01 Gary Benson <gbenson@redhat.com>
14049
14050 * coffread.c (coff_start_symtab): Remove unnecessary xstrdup.
14051
14052 2019-02-28 Brian Vandenberg <phantall@gmail.com>
14053 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
14054
14055 PR gdb/8527
14056 * procfs.c (proc_wait_for_stop): Wrap write of PCWSTOP in
14057 set_sigint_trap, clear_sigint_trap.
14058
14059 2019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14060
14061 * target.c (target_detach): Clear the regcache and the
14062 frame cache.
14063
14064 2019-02-27 Pedro Alves <palves@redhat.com>
14065
14066 * utils.c (set_screen_size): When we cap the height/width sizes,
14067 tweak the corresponding command variable to show "unlimited":
14068
14069 2019-02-27 Saagar Jha <saagar@saagarjha.com>
14070 Pedro Alves <palves@redhat.com>
14071
14072 * utils.c (set_screen_size): Reduce "infinite" rows and columns
14073 before calling rl_set_screen_size.
14074
14075 2019-02-27 Tom Tromey <tromey@adacore.com>
14076
14077 * configure.ac (HAVE_LIBPYTHON2_4, HAVE_LIBPYTHON2_5): Never
14078 define.
14079 * python/py-value.c: Remove Python 2.4 workaround.
14080 * python/py-utils.c (gdb_pymodule_addobject): Remove Python 2.4
14081 workaround.
14082 * python/py-type.c (convert_field, gdbpy_initialize_types): Remove
14083 Python 2.4 workaround.
14084 * python/python-internal.h: Remove Python 2.4 comment.
14085 (Py_ssize_t): Don't define.
14086 (PyVarObject_HEAD_INIT, Py_TYPE): Don't define.
14087 (gdb_Py_DECREF): Remove Python 2.4 workaround.
14088 (gdb_PyObject_GetAttrString, PyObject_GetAttrString): Remove.
14089 (gdb_PyObject_HasAttrString, PyObject_HasAttrString): Remove.
14090 * python/python.c (do_start_initialization): Remove Python 2.4
14091 workaround.
14092 * python/py-prettyprint.c (class dummy_python_frame): Remove.
14093 (print_children): Remove Python 2.4 workaround.
14094 * python/py-inferior.c (buffer_procs): Remove Python 2.4
14095 workaround.
14096 (CHARBUFFERPROC_NAME): Remove.
14097 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Remove
14098 Python 2.4 workaround.
14099
14100 2019-02-27 Kevin Buettner <kevinb@redhat.com>
14101
14102 * NEWS: Note minimum Python version.
14103
14104 2019-02-27 Kevin Buettner <kevinb@redhat.com>
14105
14106 * python/py-inferior.c (infpy_write_memory): Remove non-IS_PY3K
14107 code from these functions. Remove corresponding ifdefs. Use
14108 Py_buffer_up instead of explicit calls to PyBuffer_Release.
14109 Remove gotos and target of gotos.
14110 (infpy_search_memory): Likewise.
14111
14112 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14113
14114 * gdb/hppa-tdep.c (hppa_dummy_id): Delete.
14115 (hppa_gdbarch_init): Don't register deleted functions with
14116 gdbarch.
14117
14118 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14119
14120 * gdb/h8300-tdep.c (h8300_unwind_pc): Delete.
14121 (h8300_unwind_sp): Delete.
14122 (h8300_dummy_id): Delete.
14123 (h8300_gdbarch_init): Don't register deleted functions with
14124 gdbarch.
14125
14126 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14127
14128 * gdb/ft32-tdep.c (ft32_dummy_id): Delete.
14129 (ft32_unwind_pc): Delete.
14130 (ft32_unwind_sp): Delete.
14131 (ft32_gdbarch_init): Don't register deleted functions with
14132 gdbarch.
14133
14134 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14135
14136 * gdb/frv-tdep.c (frv_dummy_id): Delete.
14137 (frv_unwind_pc): Delete.
14138 (frv_unwind_sp): Delete.
14139 (frv_gdbarch_init): Don't register deleted functions with
14140 gdbarch.
14141
14142 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14143
14144 * gdb/riscv-tdep.c (riscv_dummy_id): Delete.
14145 (riscv_unwind_pc): Delete.
14146 (riscv_unwind_sp): Delete.
14147 (riscv_gdbarch_init): Don't register deleted functions with
14148 gdbarch.
14149
14150 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14151
14152 * gdb/csky-tdep.c (csky_dummy_id): Delete.
14153 (csky_unwind_pc): Delete.
14154 (csky_unwind_sp): Delete.
14155 (csky_gdbarch_init): Don't register deleted functions with
14156 gdbarch.
14157
14158 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14159
14160 * gdb/cris-tdep.c (cris_dummy_id): Delete.
14161 (cris_unwind_pc): Delete.
14162 (cris_unwind_sp): Delete.
14163 (cris_gdbarch_init): Don't register deleted functions with
14164 gdbarch.
14165
14166 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14167
14168 * gdb/bfin-tdep.c (bfin_dummy_id): Delete.
14169 (bfin_unwind_pc): Delete.
14170 (bfin_gdbarch_init): Don't register deleted functions with gdbarch.
14171
14172 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14173
14174 * gdb/arm-tdep.c (arm_dummy_id): Delete.
14175 (arm_unwind_pc): Delete.
14176 (arm_unwind_sp): Delete.
14177 (arm_gdbarch_init): Don't register deleted functions with gdbarch.
14178
14179 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14180
14181 * gdb/arc-tdep.c (arc_dummy_id): Delete.
14182 (arc_unwind_pc): Delete.
14183 (arc_unwind_sp): Delete.
14184 (arc_gdbarch_init): Don't register deleted functions with gdbarch.
14185
14186 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14187
14188 * gdb/alpha-tdep.c (alpha_dummy_id): Delete.
14189 (alpha_unwind_pc): Delete.
14190 (alpha_gdbarch_init): Don't register deleted functions with
14191 gdbarch.
14192
14193 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14194
14195 * gdb/aarch64-tdep.c (aarch64_dummy_id): Delete.
14196 (aarch64_unwind_pc): Delete.
14197 (aarch64_unwind_sp): Delete.
14198 (aarch64_gdbarch_init): Don't register deleted functions with
14199 gdbarch.
14200
14201 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14202
14203 * gdbtypes.c (type_align): Don't consider static members when
14204 computing structure alignment.
14205
14206 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14207
14208 * arc-tdep.c (arc_type_align): Provide alignment for basic types,
14209 return 0 for other types.
14210 * arch-utils.c (default_type_align): Always return 0.
14211 * gdbarch.h: Regenerate.
14212 * gdbarch.sh (type_align): Extend comment.
14213 * gdbtypes.c (type_align): Add additional comments, always call
14214 gdbarch_type_align before applying the default rules.
14215 * i386-tdep.c (i386_type_align): Return 0 as the default rule,
14216 generic code will then apply a suitable default.
14217 * nios2-tdep.c (nios2_type_align): Provide alignment for basic
14218 types, return 0 for other types.
14219
14220 2019-02-27 Joel Brobecker <brobecker@adacore.com>
14221
14222 * NEWS: Create a new section for the next release branch.
14223 Rename the section of the current branch, now that it has
14224 been cut.
14225
14226 2019-02-27 Joel Brobecker <brobecker@adacore.com>
14227
14228 GDB 8.3 branch created (143420fb0d5ae54323ba9953f0818c194635228d):
14229 * version.in: Bump version to 8.3.50.DATE-git.
14230
14231 2019-02-26 Simon Marchi <simon.marchi@efficios.com>
14232
14233 * aix-thread.c (ptid_cmp): Remove unused variable.
14234 (get_signaled_thread): Likewise.
14235 (store_regs_user_thread): Likewise.
14236 (store_regs_kernel_thread): Likewise.
14237 (fetch_regs_kernel_thread): Remove shadowed variable.
14238
14239 2019-02-26 Andrew Burgess <andrew.burgess@embecosm.com>
14240
14241 * features/riscv/32bit-cpu.xml: Add register numbers.
14242 * features/riscv/32bit-fpu.c: Regenerate.
14243 * features/riscv/32bit-fpu.xml: Add register numbers.
14244 * features/riscv/64bit-cpu.xml: Add register numbers.
14245 * features/riscv/64bit-fpu.c: Regenerate.
14246 * features/riscv/64bit-fpu.xml: Add register numbers.
14247
14248 2019-02-26 Kevin Buettner <kevinb@redhat.com>
14249
14250 * NEWS: Mention two argument form of gdb.Value constructor.
14251 * python/py-value.c (convert_buffer_and_type_to_value): New
14252 function.
14253 (valpy_new): Parse arguments via gdb_PyArg_ParseTupleAndKeywords.
14254 Add support for handling an optional second argument. Call
14255 convert_buffer_and_type_to_value as appropriate.
14256 * python/python-internal.h (Py_buffer_deleter): New struct.
14257 (Py_buffer_up): New typedef.
14258
14259 2019-02-25 John Baldwin <jhb@FreeBSD.org>
14260
14261 * dwarf2read.c (dwarf2_get_dwz_file): Reset dwz_bfd to nullptr
14262 instead of releasing ownership.
14263
14264 2019-02-25 Jordan Rupprecht <rupprecht@google.com>
14265
14266 * dwarf2read.c (open_and_init_dwp_file): Call
14267 elf_numsections instead of bfd_count_sections to initialize
14268 dwp_file->num_sections.
14269
14270 2019-02-25 Tom Tromey <tromey@adacore.com>
14271
14272 * solib-darwin.c (darwin_get_dyld_bfd): Don't release dyld_bfd.
14273
14274 2019-02-23 Sergio Durigan Junior <sergiodj@redhat.com>
14275
14276 * gcore.in: Add '--readnever' option when invoking GDB.
14277
14278 2019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
14279
14280 * MAINTAINERS: Update my email address.
14281
14282 2019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
14283
14284 * build-id.c (build_id_to_debug_bfd_1): New function.
14285 (build_id_to_debug_bfd): Look for separate debug file in
14286 sysroot.
14287
14288 2019-02-22 Andrew Burgess <andrew.burgess@embecosm.com>
14289
14290 * gdbarch.sh: Update the copyright year range that is placed into
14291 generated files.
14292
14293 2019-02-22 Keith Seitz <keiths@redhat.com>
14294
14295 PR symtab/23853
14296 * linespec.c (create_sals_line_offset): Search for the default
14297 symtab's filename instead of its fullname.
14298
14299 2019-02-21 Alan Hayward <alan.hayward@arm.com>
14300
14301 * NEWS: Update style defaults.
14302
14303 2019-02-21 Alan Hayward <alan.hayward@arm.com>
14304
14305 * main.c (captured_main_1): Disable styling in batch mode.
14306
14307 2019-02-20 Tom Tromey <tom@tromey.com>
14308
14309 * symtab.c (symtab_symbol_info): Fix typos.
14310
14311 2019-02-20 Tom Tromey <tromey@adacore.com>
14312
14313 * findcmd.c (_initialize_mem_search): Use upper case for
14314 metasyntactic variables.
14315
14316 2019-02-20 Alan Hayward <alan.hayward@arm.com>
14317
14318 * aarch64-tdep.c (aarch64_add_reggroups): New function.
14319 (aarch64_gdbarch_init): Call aarch64_add_reggroups.
14320
14321 2019-02-19 Simon Marchi <simon.marchi@polymtl.ca>
14322
14323 * top.h (source_file_name): Change to std::string.
14324 * top.c (source_file_name): Likewise.
14325 (command_line_input): Adjust.
14326 * cli/cli-script.c (script_from_file): Adjust.
14327
14328 2019-02-19 Tom Tromey <tromey@adacore.com>
14329
14330 * ravenscar-thread.c
14331 (ravenscar_thread_target::update_thread_list): Don't call
14332 ada_build_task_list.
14333 * ada-lang.h (ada_build_task_list): Don't declare.
14334 * ada-tasks.c (struct ada_tasks_inferior_data)
14335 <task_list_valid_p>: Now bool.
14336 (read_known_tasks, ada_task_list_changed)
14337 (ada_tasks_invalidate_inferior_data): Update.
14338 (read_known_tasks_array): Return bool.
14339 (read_known_tasks_list): Likewise.
14340 (read_known_tasks): Return void.
14341 (ada_build_task_list): Now static.
14342
14343 2019-02-18 Andrew Burgess <andrew.burgess@embecosm.com>
14344
14345 * gdbtypes.c (type_align): Allow alignment of TYPE_CODE_METHODPTR
14346 and TYPE_CODE_MEMBERPTR to be overridden by the gdbarch.
14347
14348 2019-02-18 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14349
14350 * ada-task.c (_initialize_tasks): Use 'with_cleanup' register
14351 variant for ada_tasks_pspace_data_handle and
14352 ada_tasks_inferior_data_handle.
14353 (ada_tasks_pspace_data_cleanup): New function.
14354 (ada_tasks_inferior_data_cleanup): New function.
14355
14356 2019-02-17 Tom Tromey <tom@tromey.com>
14357
14358 * macrotab.h (macro_source_fullname): Return a std::string.
14359 * macrotab.c (macro_include, check_for_redefinition)
14360 (macro_undef, macro_lookup_definition, foreach_macro)
14361 (foreach_macro_in_scope): Update.
14362 (macro_source_fullname): Return a std::string.
14363 * macrocmd.c (show_pp_source_pos): Update.
14364
14365 2019-02-17 Tom Tromey <tom@tromey.com>
14366
14367 * macrocmd.c (show_pp_source_pos): Style the file names.
14368
14369 2019-02-17 Tom Tromey <tom@tromey.com>
14370
14371 PR tui/24197:
14372 * tui/tui-source.c (tui_set_source_content_nil): Rewrite.
14373
14374 2019-02-17 Tom Tromey <tom@tromey.com>
14375
14376 * ada-lang.c (user_select_syms): Use filtered printing.
14377 * utils.c (wrap_style): New global.
14378 (desired_style): Remove.
14379 (emit_style_escape): Add stream parameter.
14380 (set_output_style, reset_terminal_style, prompt_for_continue):
14381 Update.
14382 (flush_wrap_buffer): Only flush gdb_stdout.
14383 (wrap_here): Set wrap_style.
14384 (fputs_maybe_filtered): Clear the wrap buffer on exception. Don't
14385 treat escape sequences as a character. Change when wrap buffer is
14386 flushed.
14387 (fputs_styled): Do not set the output style when the default is
14388 requested.
14389 * ui-style.h (struct ui_file_style) <is_default>: New method.
14390 * source.c (print_source_lines_base): Emit escape sequences in one
14391 piece.
14392
14393 2019-02-17 Joel Brobecker <brobecker@adacore.com>
14394
14395 * gdbtypes.c (type_align): Handle TYPE_CODE_RANGE the same as
14396 integers and enumeration types.
14397
14398 2019-02-17 Joel Brobecker <brobecker@adacore.com>
14399
14400 * ada-lang.c (standard_lookup): Use ada_lookup_encoded_symbol
14401 instead of lookup_symbol_in_language
14402 (do_exact_match): New function.
14403 (ada_get_symbol_name_matcher): Return do_exact_match when
14404 doing a verbatim match.
14405
14406 2019-02-15 Tom Tromey <tromey@adacore.com>
14407
14408 * ravenscar-thread.c (ravenscar_thread_target::resume)
14409 (ravenscar_thread_target::wait): Special case wildcard requests.
14410
14411 2019-02-15 Tom Tromey <tromey@adacore.com>
14412
14413 * ravenscar-thread.c (base_ptid): Remove.
14414 (struct ravenscar_thread_target) <close>: New method.
14415 <m_base_ptid>: New member.
14416 <update_inferior_ptid, active_task, task_is_currently_active,
14417 runtime_initialized>: Declare methods.
14418 <ravenscar_thread_target>: Add constructor.
14419 (ravenscar_thread_target::task_is_currently_active)
14420 (ravenscar_thread_target::update_inferior_ptid)
14421 (ravenscar_runtime_initialized): Rename. Now methods.
14422 (ravenscar_thread_target::resume, ravenscar_thread_target::wait)
14423 (ravenscar_thread_target::update_thread_list): Update.
14424 (ravenscar_thread_target::active_task): Now method.
14425 (ravenscar_thread_target::store_registers)
14426 (ravenscar_thread_target::prepare_to_store)
14427 (ravenscar_thread_target::prepare_to_store)
14428 (ravenscar_thread_target::mourn_inferior): Update.
14429 (ravenscar_inferior_created): Use "new" to create target.
14430 (ravenscar_thread_target::get_ada_task_ptid): Update.
14431 (_initialize_ravenscar): Don't initialize base_ptid.
14432 (ravenscar_ops): Remove global.
14433
14434 2019-02-15 Tom Tromey <tromey@adacore.com>
14435
14436 * target.h (push_target): Declare new overload.
14437 * target.c (push_target): New overload, taking an rvalue reference.
14438 * remote.c (remote_target::open_1): Use push_target overload.
14439 * corelow.c (core_target_open): Use push_target overload.
14440
14441 2019-02-15 Tom Tromey <tromey@adacore.com>
14442
14443 * ravenscar-thread.c (is_ravenscar_task)
14444 (ravenscar_task_is_currently_active): Return bool.
14445 (ravenscar_update_inferior_ptid, get_running_thread_msymbol)
14446 (_initialize_ravenscar): Remove "(void)".
14447 (has_ravenscar_runtime, ravenscar_runtime_initialized): Likewise.
14448 Return bool.
14449
14450 2019-02-15 Tom Tromey <tromey@adacore.com>
14451
14452 * ravenscar-thread.c (ravenscar_runtime_initializer)
14453 (has_ravenscar_runtime, get_running_thread_id)
14454 (ravenscar_thread_target::resume): Fix indentation.
14455
14456 2019-02-15 Tom Tromey <tromey@adacore.com>
14457
14458 * sparc-ravenscar-thread.c (struct sparc_ravenscar_ops): Derive
14459 from ravenscar_arch_ops.
14460 (sparc_ravenscar_ops::fetch_registers)
14461 (sparc_ravenscar_ops::store_registers): Now methods.
14462 (sparc_ravenscar_prepare_to_store): Remove.
14463 (sparc_ravenscar_ops): Redefine.
14464 * ravenscar-thread.h (struct ravenscar_arch_ops): Add virtual
14465 methods and destructor. Remove members.
14466 * ravenscar-thread.c (ravenscar_thread_target::fetch_registers)
14467 (ravenscar_thread_target::store_registers)
14468 (ravenscar_thread_target::prepare_to_store): Update.
14469 * ppc-ravenscar-thread.c (ppc_ravenscar_generic_prepare_to_store):
14470 Remove.
14471 (struct ppc_ravenscar_powerpc_ops): Derive from
14472 ravenscar_arch_ops.
14473 (ppc_ravenscar_powerpc_ops::fetch_registers)
14474 (ppc_ravenscar_powerpc_ops::store_registers): Now methods.
14475 (ppc_ravenscar_powerpc_ops): Redefine.
14476 (struct ppc_ravenscar_e500_ops): Derive from ravenscar_arch_ops.
14477 (ppc_ravenscar_e500_ops::fetch_registers)
14478 (ppc_ravenscar_e500_ops::store_registers): Now methods.
14479 (ppc_ravenscar_e500_ops): Redefine.
14480 * aarch64-ravenscar-thread.c
14481 (aarch64_ravenscar_generic_prepare_to_store): Remove.
14482 (struct aarch64_ravenscar_ops): Derive from ravenscar_arch_ops.
14483 (aarch64_ravenscar_fetch_registers)
14484 (aarch64_ravenscar_store_registers): Now methods.
14485 (aarch64_ravenscar_ops): Redefine.
14486
14487 2019-02-15 Tom Tromey <tromey@adacore.com>
14488
14489 * ravenscar-thread.c (ravenscar_thread_target::stopped_by_sw_breakpoint)
14490 (ravenscar_thread_target::stopped_by_hw_breakpoint)
14491 (ravenscar_thread_target::stopped_by_watchpoint)
14492 (ravenscar_thread_target::stopped_data_address)
14493 (ravenscar_thread_target::core_of_thread): Use scoped_restore.
14494
14495 2019-02-15 Tom Tromey <tromey@adacore.com>
14496
14497 * ravenscar-thread.c: Fix some typos.
14498
14499 2019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14500 Tom Tromey <tromey@adacore.com>
14501
14502 * ada-lang.c (ada_exception_sal): Change addr_string to a
14503 std::string.
14504 (create_ada_exception_catchpoint): Update.
14505
14506 2019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14507 Tom Tromey <tromey@adacore.com>
14508
14509 * breakpoint.c (~bp_location): Rename from bp_location_dtor.
14510 (bp_location_ops): Remove.
14511 (base_breakpoint_allocate_location): Update.
14512 (free_bp_location): Update.
14513 * ada-lang.c (class ada_catchpoint_location)
14514 <ada_catchpoint_location>: Remove ops parameter.
14515 (ada_catchpoint_location_dtor): Remove.
14516 (ada_catchpoint_location_ops): Remove.
14517 (allocate_location_exception): Update.
14518 * breakpoint.h (struct bp_location_ops): Remove.
14519 (class bp_location) <bp_location>: Remove bp_location_ops
14520 parameter.
14521 <~bp_location>: Add destructor.
14522 <ops>: Remove.
14523
14524 2019-02-14 Thomas Schwinge <thomas@codesourcery.com>
14525 Pedro Alves <palves@redhat.com>
14526
14527 * remote.c (remote_target::remote_parse_stop_reply): Avoid using
14528 'PATH_MAX'.
14529
14530 2019-02-14 David Michael <fedora.dm0@gmail.com>
14531 Samuel Thibault <samuel.thibault@gnu.org>
14532 Thomas Schwinge <thomas@codesourcery.com>
14533
14534 * gnu-nat.c (S_proc_getmsgport_reply, S_proc_task2proc_reply)
14535 (S_proc_pid2proc_reply): Adjust to Hurd "proc" interface changes.
14536
14537 2019-02-14 Thomas Schwinge <thomas@codesourcery.com>
14538
14539 * gnu-nat.c (gnu_write_inferior, parse_int_arg, _parse_bool_arg)
14540 (check_empty): Use "const char *".
14541
14542 * gnu-nat.c (gnu_nat_target::detach): Instead of
14543 'detach_inferior (pid)' call
14544 'detach_inferior (find_inferior_pid (pid))'.
14545
14546 * configure.nat [gdb_host == i386gnu] (NATDEPFILES): Add
14547 'nat/fork-inferior.o'.
14548 * gnu-nat.c: #include "nat/fork-inferior.h".
14549
14550 * gnu-nat.c (gnu_nat_target::detach): Instead of
14551 'inf_child_maybe_unpush_target (ops)' call 'maybe_unpush_target'.
14552 * gnu-nat.h: #include "inf-child.h".
14553 * i386-gnu-nat.c (gnu_fetch_registers): Rename/move to
14554 'i386_gnu_nat_target::fetch_registers'.
14555 (gnu_store_registers): Rename/move to
14556 'i386_gnu_nat_target::store_registers'.
14557
14558 * config/i386/nm-i386gnu.h: Don't "#include" any files.
14559 * gnu-nat.h (mach_thread_info): New function.
14560 * gnu-nat.c (thread_takeover_sc_cmd): Use it.
14561
14562 * config/i386/nm-i386gnu.h (gnu_target_pid_to_str): Remove.
14563
14564 2019-02-14 Frederic Konrad <konrad@adacore.com>
14565
14566 * riscv-rdep.c (riscv_type_alignment): Handle TYPE_CODE_RANGE.
14567
14568 2019-02-14 Joel Brobecker <brobecker@adacore.com>
14569
14570 * windows-nat.c (windows_add_thread): Add new parameter
14571 "main_thread_p" with default value set to false. Update
14572 function documentation as well as all callers.
14573 (windows_delete_thread): Likewise.
14574 (fake_create_process): Update call to windows_add_thread.
14575 (get_windows_debug_event) <CREATE_THREAD_DEBUG_EVENT>
14576 <CREATE_PROCESS_DEBUG_EVENT>: Likewise.
14577 <EXIT_THREAD_DEBUG_EVENT, EXIT_PROCESS_DEBUG_EVENT>: Update
14578 call to windows_delete_thread.
14579
14580 2019-02-13 Simon Marchi <simon.marchi@ericsson.com>
14581
14582 * MAINTAINERS: Add Andrew Burgess as global maintainer.
14583
14584 2019-02-12 John Baldwin <jhb@FreeBSD.org>
14585
14586 * symfile.c (find_separate_debug_file): Use canonical path of
14587 sysroot with child_path instead of gdb_sysroot if it is valid.
14588
14589 2019-02-12 John Baldwin <jhb@FreeBSD.org>
14590
14591 * symfile.c (find_separate_debug_file): Use child_path to
14592 determine if an object file is under a sysroot.
14593
14594 2019-02-12 John Baldwin <jhb@FreeBSD.org>
14595
14596 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
14597 unittests/child-path-selftests.c.
14598 * common/pathstuff.c (child_path): New function.
14599 * common/pathstuff.h (child_path): New prototype.
14600 * unittests/child-path-selftests.c: New file.
14601
14602 2019-02-12 John Baldwin <jhb@FreeBSD.org>
14603
14604 * symfile.c (find_separate_debug_file): Look for separate debug
14605 files in debug directories under the sysroot.
14606
14607 2019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14608
14609 * symtab.h (struct minimal_symbol data_p): New const method.
14610 (struct minimal_symbol text_p): Likewise.
14611 * symtab.c (output_source_filename): Use file name style
14612 to print file name.
14613 (print_symbol_info): Likewise.
14614 (print_msymbol_info): Use address style to print addresses.
14615 Use function name style to print executable text symbols.
14616 (expand_symtab_containing_pc): Use data_p.
14617 (find_pc_sect_compunit_symtab): Likewise.
14618
14619 2019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14620
14621 * breakpoint.c (describe_other_breakpoints): Use address style
14622 to print addresses.
14623 (say_where): Likewise.
14624
14625 2019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14626
14627 * ada-typeprint.c (print_func_type): Print function name
14628 style to print function name.
14629 * c-typeprint.c (c_print_type_1): Likewise.
14630
14631 2019-02-11 Alan Hayward <alan.hayward@arm.com>
14632
14633 * aarch64-linux-tdep.c (aarch64_linux_get_syscall_number): Check
14634 for execve.
14635
14636 2019-02-10 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14637
14638 * c-exp.y (direct_abs_decl): Use emplace_back to record the
14639 type_stack.
14640
14641 2019-02-10 Joel Brobecker <brobecker@adacore.com>
14642
14643 * ada-varobj.c (ada_value_is_changeable_p): Add handling of
14644 TYPE_CODE_REF types.
14645
14646 2019-02-08 Jim Wilson <jimw@sifive.com>
14647
14648 * riscv-linux-tdep.c (riscv_linux_fregmap): New.
14649 (riscv_linux_fregset): New.
14650 (riscv_linux_iterate_over_regset_sections): Call cb for .reg2 section.
14651
14652 2019-02-07 Tom Tromey <tom@tromey.com>
14653
14654 * thread.c (thread_cancel_execution_command): Update.
14655 * thread-fsm.h (struct thread_fsm): Add constructor, destructor,
14656 methods.
14657 (struct thread_fsm_ops): Remove.
14658 (thread_fsm_ctor, thread_fsm_delete, thread_fsm_clean_up)
14659 (thread_fsm_should_stop, thread_fsm_return_value)
14660 (thread_fsm_set_finished, thread_fsm_finished_p)
14661 (thread_fsm_async_reply_reason, thread_fsm_should_notify_stop):
14662 Don't declare.
14663 * mi/mi-interp.c (mi_on_normal_stop_1): Update.
14664 * infrun.c (clear_proceed_status_thread)
14665 (clean_up_just_stopped_threads_fsms, fetch_inferior_event)
14666 (print_stop_event): Update.
14667 * infcmd.c (struct step_command_fsm): Inherit from thread_fsm.
14668 Add constructor.
14669 (step_command_fsm_ops): Remove.
14670 (new_step_command_fsm): Remove.
14671 (step_1): Update.
14672 (step_command_fsm::should_stop): Rename from
14673 step_command_fsm_should_stop.
14674 (step_command_fsm::clean_up): Rename from
14675 step_command_fsm_clean_up.
14676 (step_command_fsm::do_async_reply_reason): Rename from
14677 step_command_fsm_async_reply_reason.
14678 (struct until_next_fsm): Inherit from thread_fsm. Add
14679 constructor.
14680 (until_next_fsm_ops): Remove.
14681 (new_until_next_fsm): Remove.
14682 (until_next_fsm::should_stop): Rename from
14683 until_next_fsm_should_stop.
14684 (until_next_fsm::clean_up): Rename from until_next_fsm_clean_up.
14685 (until_next_fsm::do_async_reply_reason): Rename from
14686 until_next_fsm_async_reply_reason.
14687 (struct finish_command_fsm): Inherit from thread_fsm. Add
14688 constructor. Change type of breakpoint.
14689 (finish_command_fsm_ops): Remove.
14690 (new_finish_command_fsm): Remove.
14691 (finish_command_fsm::should_stop): Rename from
14692 finish_command_fsm_should_stop.
14693 (finish_command_fsm::clean_up): Rename from
14694 finish_command_fsm_clean_up.
14695 (finish_command_fsm::return_value): Rename from
14696 finish_command_fsm_return_value.
14697 (finish_command_fsm::do_async_reply_reason): Rename from
14698 finish_command_fsm_async_reply_reason.
14699 (finish_command): Update.
14700 * infcall.c (struct call_thread_fsm): Inherit from thread_fsm.
14701 Add constructor.
14702 (call_thread_fsm_ops): Remove.
14703 (call_thread_fsm::call_thread_fsm): Rename from
14704 new_call_thread_fsm.
14705 (call_thread_fsm::should_stop): Rename from
14706 call_thread_fsm_should_stop.
14707 (call_thread_fsm::should_notify_stop): Rename from
14708 call_thread_fsm_should_notify_stop.
14709 (run_inferior_call, call_function_by_hand_dummy): Update.
14710 * cli/cli-interp.c (should_print_stop_to_console): Update.
14711 * breakpoint.c (struct until_break_fsm): Inherit from thread_fsm.
14712 Add constructor. Change type of location_breakpoint,
14713 caller_breakpoint.
14714 (until_break_fsm_ops): Remove.
14715 (new_until_break_fsm): Remove.
14716 (until_break_fsm::should_stop): Rename from
14717 until_break_fsm_should_stop.
14718 (until_break_fsm::clean_up): Rename from
14719 until_break_fsm_clean_up.
14720 (until_break_fsm::do_async_reply_reason): Rename from
14721 until_break_fsm_async_reply_reason.
14722 (until_break_command): Update.
14723 * thread-fsm.c: Remove.
14724 * Makefile.in (COMMON_SFILES): Remove thread-fsm.c.
14725
14726 2019-02-07 Tom Tromey <tom@tromey.com>
14727
14728 * yy-remap.h: Add include guard.
14729 * xtensa-tdep.h: Add include guard.
14730 * xcoffread.h: Rename include guard.
14731 * varobj-iter.h: Add include guard.
14732 * tui/tui.h: Rename include guard.
14733 * tui/tui-winsource.h: Rename include guard.
14734 * tui/tui-wingeneral.h: Rename include guard.
14735 * tui/tui-windata.h: Rename include guard.
14736 * tui/tui-win.h: Rename include guard.
14737 * tui/tui-stack.h: Rename include guard.
14738 * tui/tui-source.h: Rename include guard.
14739 * tui/tui-regs.h: Rename include guard.
14740 * tui/tui-out.h: Rename include guard.
14741 * tui/tui-layout.h: Rename include guard.
14742 * tui/tui-io.h: Rename include guard.
14743 * tui/tui-hooks.h: Rename include guard.
14744 * tui/tui-file.h: Rename include guard.
14745 * tui/tui-disasm.h: Rename include guard.
14746 * tui/tui-data.h: Rename include guard.
14747 * tui/tui-command.h: Rename include guard.
14748 * tic6x-tdep.h: Add include guard.
14749 * target/waitstatus.h: Rename include guard.
14750 * target/wait.h: Rename include guard.
14751 * target/target.h: Rename include guard.
14752 * target/resume.h: Rename include guard.
14753 * target-float.h: Rename include guard.
14754 * stabsread.h: Add include guard.
14755 * rs6000-tdep.h: Add include guard.
14756 * riscv-fbsd-tdep.h: Add include guard.
14757 * regformats/regdef.h: Rename include guard.
14758 * record.h: Rename include guard.
14759 * python/python.h: Rename include guard.
14760 * python/python-internal.h: Rename include guard.
14761 * python/py-stopevent.h: Rename include guard.
14762 * python/py-ref.h: Rename include guard.
14763 * python/py-record.h: Rename include guard.
14764 * python/py-record-full.h: Rename include guard.
14765 * python/py-record-btrace.h: Rename include guard.
14766 * python/py-instruction.h: Rename include guard.
14767 * python/py-events.h: Rename include guard.
14768 * python/py-event.h: Rename include guard.
14769 * procfs.h: Add include guard.
14770 * proc-utils.h: Add include guard.
14771 * p-lang.h: Add include guard.
14772 * or1k-tdep.h: Rename include guard.
14773 * observable.h: Rename include guard.
14774 * nto-tdep.h: Rename include guard.
14775 * nat/x86-linux.h: Rename include guard.
14776 * nat/x86-linux-dregs.h: Rename include guard.
14777 * nat/x86-gcc-cpuid.h: Add include guard.
14778 * nat/x86-dregs.h: Rename include guard.
14779 * nat/x86-cpuid.h: Rename include guard.
14780 * nat/ppc-linux.h: Rename include guard.
14781 * nat/mips-linux-watch.h: Rename include guard.
14782 * nat/linux-waitpid.h: Rename include guard.
14783 * nat/linux-ptrace.h: Rename include guard.
14784 * nat/linux-procfs.h: Rename include guard.
14785 * nat/linux-osdata.h: Rename include guard.
14786 * nat/linux-nat.h: Rename include guard.
14787 * nat/linux-namespaces.h: Rename include guard.
14788 * nat/linux-btrace.h: Rename include guard.
14789 * nat/glibc_thread_db.h: Rename include guard.
14790 * nat/gdb_thread_db.h: Rename include guard.
14791 * nat/gdb_ptrace.h: Rename include guard.
14792 * nat/fork-inferior.h: Rename include guard.
14793 * nat/amd64-linux-siginfo.h: Rename include guard.
14794 * nat/aarch64-sve-linux-sigcontext.h: Rename include guard.
14795 * nat/aarch64-sve-linux-ptrace.h: Rename include guard.
14796 * nat/aarch64-linux.h: Rename include guard.
14797 * nat/aarch64-linux-hw-point.h: Rename include guard.
14798 * mn10300-tdep.h: Add include guard.
14799 * mips-linux-tdep.h: Add include guard.
14800 * mi/mi-parse.h: Rename include guard.
14801 * mi/mi-out.h: Rename include guard.
14802 * mi/mi-main.h: Rename include guard.
14803 * mi/mi-interp.h: Rename include guard.
14804 * mi/mi-getopt.h: Rename include guard.
14805 * mi/mi-console.h: Rename include guard.
14806 * mi/mi-common.h: Rename include guard.
14807 * mi/mi-cmds.h: Rename include guard.
14808 * mi/mi-cmd-break.h: Rename include guard.
14809 * m2-lang.h: Add include guard.
14810 * location.h: Rename include guard.
14811 * linux-record.h: Rename include guard.
14812 * linux-nat.h: Add include guard.
14813 * linux-fork.h: Add include guard.
14814 * i386-darwin-tdep.h: Rename include guard.
14815 * hppa-linux-offsets.h: Add include guard.
14816 * guile/guile.h: Rename include guard.
14817 * guile/guile-internal.h: Rename include guard.
14818 * gnu-nat.h: Rename include guard.
14819 * gdb-stabs.h: Rename include guard.
14820 * frv-tdep.h: Add include guard.
14821 * f-lang.h: Add include guard.
14822 * event-loop.h: Add include guard.
14823 * darwin-nat.h: Rename include guard.
14824 * cp-abi.h: Rename include guard.
14825 * config/sparc/nm-sol2.h: Rename include guard.
14826 * config/nm-nto.h: Rename include guard.
14827 * config/nm-linux.h: Add include guard.
14828 * config/i386/nm-i386gnu.h: Rename include guard.
14829 * config/djgpp/nl_types.h: Rename include guard.
14830 * config/djgpp/langinfo.h: Rename include guard.
14831 * compile/gcc-cp-plugin.h: Add include guard.
14832 * compile/gcc-c-plugin.h: Add include guard.
14833 * compile/compile.h: Rename include guard.
14834 * compile/compile-object-run.h: Rename include guard.
14835 * compile/compile-object-load.h: Rename include guard.
14836 * compile/compile-internal.h: Rename include guard.
14837 * compile/compile-cplus.h: Rename include guard.
14838 * compile/compile-c.h: Rename include guard.
14839 * common/xml-utils.h: Rename include guard.
14840 * common/x86-xstate.h: Rename include guard.
14841 * common/version.h: Rename include guard.
14842 * common/vec.h: Rename include guard.
14843 * common/tdesc.h: Rename include guard.
14844 * common/selftest.h: Rename include guard.
14845 * common/scoped_restore.h: Rename include guard.
14846 * common/scoped_mmap.h: Rename include guard.
14847 * common/scoped_fd.h: Rename include guard.
14848 * common/safe-iterator.h: Rename include guard.
14849 * common/run-time-clock.h: Rename include guard.
14850 * common/refcounted-object.h: Rename include guard.
14851 * common/queue.h: Rename include guard.
14852 * common/ptid.h: Rename include guard.
14853 * common/print-utils.h: Rename include guard.
14854 * common/preprocessor.h: Rename include guard.
14855 * common/pathstuff.h: Rename include guard.
14856 * common/observable.h: Rename include guard.
14857 * common/netstuff.h: Rename include guard.
14858 * common/job-control.h: Rename include guard.
14859 * common/host-defs.h: Rename include guard.
14860 * common/gdb_wait.h: Rename include guard.
14861 * common/gdb_vecs.h: Rename include guard.
14862 * common/gdb_unlinker.h: Rename include guard.
14863 * common/gdb_unique_ptr.h: Rename include guard.
14864 * common/gdb_tilde_expand.h: Rename include guard.
14865 * common/gdb_sys_time.h: Rename include guard.
14866 * common/gdb_string_view.h: Rename include guard.
14867 * common/gdb_splay_tree.h: Rename include guard.
14868 * common/gdb_setjmp.h: Rename include guard.
14869 * common/gdb_ref_ptr.h: Rename include guard.
14870 * common/gdb_optional.h: Rename include guard.
14871 * common/gdb_locale.h: Rename include guard.
14872 * common/gdb_assert.h: Rename include guard.
14873 * common/filtered-iterator.h: Rename include guard.
14874 * common/filestuff.h: Rename include guard.
14875 * common/fileio.h: Rename include guard.
14876 * common/environ.h: Rename include guard.
14877 * common/common-utils.h: Rename include guard.
14878 * common/common-types.h: Rename include guard.
14879 * common/common-regcache.h: Rename include guard.
14880 * common/common-inferior.h: Rename include guard.
14881 * common/common-gdbthread.h: Rename include guard.
14882 * common/common-exceptions.h: Rename include guard.
14883 * common/common-defs.h: Rename include guard.
14884 * common/common-debug.h: Rename include guard.
14885 * common/cleanups.h: Rename include guard.
14886 * common/buffer.h: Rename include guard.
14887 * common/btrace-common.h: Rename include guard.
14888 * common/break-common.h: Rename include guard.
14889 * cli/cli-utils.h: Rename include guard.
14890 * cli/cli-style.h: Rename include guard.
14891 * cli/cli-setshow.h: Rename include guard.
14892 * cli/cli-script.h: Rename include guard.
14893 * cli/cli-interp.h: Rename include guard.
14894 * cli/cli-decode.h: Rename include guard.
14895 * cli/cli-cmds.h: Rename include guard.
14896 * charset-list.h: Add include guard.
14897 * buildsym-legacy.h: Rename include guard.
14898 * bfin-tdep.h: Add include guard.
14899 * ax.h: Rename include guard.
14900 * arm-linux-tdep.h: Add include guard.
14901 * arm-fbsd-tdep.h: Add include guard.
14902 * arch/xtensa.h: Rename include guard.
14903 * arch/tic6x.h: Add include guard.
14904 * arch/i386.h: Add include guard.
14905 * arch/arm.h: Rename include guard.
14906 * arch/arm-linux.h: Rename include guard.
14907 * arch/arm-get-next-pcs.h: Rename include guard.
14908 * arch/amd64.h: Add include guard.
14909 * arch/aarch64-insn.h: Rename include guard.
14910 * arch-utils.h: Rename include guard.
14911 * annotate.h: Add include guard.
14912 * amd64-darwin-tdep.h: Rename include guard.
14913 * aarch64-linux-tdep.h: Add include guard.
14914 * aarch64-fbsd-tdep.h: Add include guard.
14915 * aarch32-linux-nat.h: Add include guard.
14916
14917 2019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14918
14919 * macrotab.c (macro_define_internal): New function that
14920 factorizes macro_define_object_internal and macro_define_function
14921 code.
14922 (macro_define_object_internal): Use macro_define_internal.
14923 (macro_define_function): Likewise.
14924
14925 2019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14926
14927 * macrocmd.c (extract_identifier): Return
14928 a gdb::unique_xmalloc_ptr<char> instead of a char *, and update
14929 callers.
14930
14931 2019-02-06 John Baldwin <jhb@FreeBSD.org>
14932
14933 * fbsd-nat.c (fbsd_fetch_cmdline): Join arguments with spaces.
14934
14935 2019-02-05 Tom Tromey <tom@tromey.com>
14936
14937 * target.c (target_stack::unpush): Move assertion earlier.
14938
14939 2019-01-30 Tom Tromey <tom@tromey.com>
14940
14941 PR python/23615:
14942 * python/python.c (execute_gdb_command): Use gdbpy_allow_threads.
14943 (gdbpy_parse_and_eval): Likewise.
14944 * python/python-internal.h (gdbpy_allow_threads): New class.
14945
14946 2019-01-28 John Baldwin <jhb@FreeBSD.org>
14947
14948 * aarch64-fbsd-tdep.c (aarch64_fbsd_gregmap)
14949 (aarch64_fbsd_fpregmap): Move earlier.
14950 (AARCH64_MCONTEXT_REG_SIZE, AARCH64_MCONTEXT_FPREG_SIZE): Delete.
14951 (aarch64_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
14952 instead of individual calls to trad_frame_set_reg_addr.
14953 * arm-fbsd-tdep.c (arm_fbsd_gregmap, arm_fbsd_vfpregmap): Move
14954 earlier.
14955 (ARM_MCONTEXT_REG_SIZE, ARM_MCONTEXT_VFP_REG_SIZE): Delete.
14956 (arm_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
14957 instead of individual calls to trad_frame_set_reg_addr.
14958
14959 2019-01-28 Alan Hayward <alan.hayward@arm.com>
14960
14961 * CONTRIBUTE: Replace contribution list with wiki link.
14962
14963 2019-01-25 Tom Tromey <tom@tromey.com>
14964
14965 * Makefile.in (GDB_CFLAGS): Don't add -I for common.
14966
14967 2019-01-25 Tom Tromey <tom@tromey.com>
14968
14969 * xtensa-linux-nat.c: Fix common/ includes.
14970 * xml-support.h: Fix common/ includes.
14971 * xml-support.c: Fix common/ includes.
14972 * x86-linux-nat.c: Fix common/ includes.
14973 * windows-nat.c: Fix common/ includes.
14974 * varobj.h: Fix common/ includes.
14975 * varobj.c: Fix common/ includes.
14976 * value.c: Fix common/ includes.
14977 * valops.c: Fix common/ includes.
14978 * utils.c: Fix common/ includes.
14979 * unittests/xml-utils-selftests.c: Fix common/ includes.
14980 * unittests/utils-selftests.c: Fix common/ includes.
14981 * unittests/unpack-selftests.c: Fix common/ includes.
14982 * unittests/tracepoint-selftests.c: Fix common/ includes.
14983 * unittests/style-selftests.c: Fix common/ includes.
14984 * unittests/string_view-selftests.c: Fix common/ includes.
14985 * unittests/scoped_restore-selftests.c: Fix common/ includes.
14986 * unittests/scoped_mmap-selftests.c: Fix common/ includes.
14987 * unittests/scoped_fd-selftests.c: Fix common/ includes.
14988 * unittests/rsp-low-selftests.c: Fix common/ includes.
14989 * unittests/parse-connection-spec-selftests.c: Fix common/
14990 includes.
14991 * unittests/optional-selftests.c: Fix common/ includes.
14992 * unittests/offset-type-selftests.c: Fix common/ includes.
14993 * unittests/observable-selftests.c: Fix common/ includes.
14994 * unittests/mkdir-recursive-selftests.c: Fix common/ includes.
14995 * unittests/memrange-selftests.c: Fix common/ includes.
14996 * unittests/memory-map-selftests.c: Fix common/ includes.
14997 * unittests/lookup_name_info-selftests.c: Fix common/ includes.
14998 * unittests/function-view-selftests.c: Fix common/ includes.
14999 * unittests/environ-selftests.c: Fix common/ includes.
15000 * unittests/copy_bitwise-selftests.c: Fix common/ includes.
15001 * unittests/common-utils-selftests.c: Fix common/ includes.
15002 * unittests/cli-utils-selftests.c: Fix common/ includes.
15003 * unittests/array-view-selftests.c: Fix common/ includes.
15004 * ui-file.c: Fix common/ includes.
15005 * tui/tui-io.c: Fix common/ includes.
15006 * tracepoint.h: Fix common/ includes.
15007 * tracepoint.c: Fix common/ includes.
15008 * tracefile-tfile.c: Fix common/ includes.
15009 * top.h: Fix common/ includes.
15010 * top.c: Fix common/ includes.
15011 * thread.c: Fix common/ includes.
15012 * target/waitstatus.h: Fix common/ includes.
15013 * target/waitstatus.c: Fix common/ includes.
15014 * target.h: Fix common/ includes.
15015 * target.c: Fix common/ includes.
15016 * target-memory.c: Fix common/ includes.
15017 * target-descriptions.c: Fix common/ includes.
15018 * symtab.h: Fix common/ includes.
15019 * symfile.c: Fix common/ includes.
15020 * stap-probe.c: Fix common/ includes.
15021 * spu-linux-nat.c: Fix common/ includes.
15022 * sparc-nat.c: Fix common/ includes.
15023 * source.c: Fix common/ includes.
15024 * solib.c: Fix common/ includes.
15025 * solib-target.c: Fix common/ includes.
15026 * ser-unix.c: Fix common/ includes.
15027 * ser-tcp.c: Fix common/ includes.
15028 * ser-pipe.c: Fix common/ includes.
15029 * ser-base.c: Fix common/ includes.
15030 * selftest-arch.c: Fix common/ includes.
15031 * s12z-tdep.c: Fix common/ includes.
15032 * rust-exp.y: Fix common/ includes.
15033 * rs6000-aix-tdep.c: Fix common/ includes.
15034 * riscv-tdep.c: Fix common/ includes.
15035 * remote.c: Fix common/ includes.
15036 * remote-notif.h: Fix common/ includes.
15037 * remote-fileio.h: Fix common/ includes.
15038 * remote-fileio.c: Fix common/ includes.
15039 * regcache.h: Fix common/ includes.
15040 * regcache.c: Fix common/ includes.
15041 * record-btrace.c: Fix common/ includes.
15042 * python/python.c: Fix common/ includes.
15043 * python/py-type.c: Fix common/ includes.
15044 * python/py-inferior.c: Fix common/ includes.
15045 * progspace.h: Fix common/ includes.
15046 * producer.c: Fix common/ includes.
15047 * procfs.c: Fix common/ includes.
15048 * proc-api.c: Fix common/ includes.
15049 * printcmd.c: Fix common/ includes.
15050 * ppc-linux-nat.c: Fix common/ includes.
15051 * parser-defs.h: Fix common/ includes.
15052 * osdata.c: Fix common/ includes.
15053 * obsd-nat.c: Fix common/ includes.
15054 * nat/x86-linux.c: Fix common/ includes.
15055 * nat/x86-linux-dregs.c: Fix common/ includes.
15056 * nat/x86-dregs.h: Fix common/ includes.
15057 * nat/x86-dregs.c: Fix common/ includes.
15058 * nat/ppc-linux.c: Fix common/ includes.
15059 * nat/mips-linux-watch.h: Fix common/ includes.
15060 * nat/mips-linux-watch.c: Fix common/ includes.
15061 * nat/linux-waitpid.c: Fix common/ includes.
15062 * nat/linux-ptrace.h: Fix common/ includes.
15063 * nat/linux-ptrace.c: Fix common/ includes.
15064 * nat/linux-procfs.c: Fix common/ includes.
15065 * nat/linux-personality.c: Fix common/ includes.
15066 * nat/linux-osdata.c: Fix common/ includes.
15067 * nat/linux-namespaces.c: Fix common/ includes.
15068 * nat/linux-btrace.h: Fix common/ includes.
15069 * nat/linux-btrace.c: Fix common/ includes.
15070 * nat/fork-inferior.c: Fix common/ includes.
15071 * nat/amd64-linux-siginfo.c: Fix common/ includes.
15072 * nat/aarch64-sve-linux-ptrace.c: Fix common/ includes.
15073 * nat/aarch64-linux.c: Fix common/ includes.
15074 * nat/aarch64-linux-hw-point.h: Fix common/ includes.
15075 * nat/aarch64-linux-hw-point.c: Fix common/ includes.
15076 * namespace.h: Fix common/ includes.
15077 * mips-linux-tdep.c: Fix common/ includes.
15078 * minsyms.c: Fix common/ includes.
15079 * mi/mi-parse.h: Fix common/ includes.
15080 * mi/mi-main.c: Fix common/ includes.
15081 * mi/mi-cmd-env.c: Fix common/ includes.
15082 * memrange.h: Fix common/ includes.
15083 * memattr.c: Fix common/ includes.
15084 * maint.h: Fix common/ includes.
15085 * maint.c: Fix common/ includes.
15086 * main.c: Fix common/ includes.
15087 * machoread.c: Fix common/ includes.
15088 * location.c: Fix common/ includes.
15089 * linux-thread-db.c: Fix common/ includes.
15090 * linux-nat.c: Fix common/ includes.
15091 * linux-fork.c: Fix common/ includes.
15092 * inline-frame.c: Fix common/ includes.
15093 * infrun.c: Fix common/ includes.
15094 * inflow.c: Fix common/ includes.
15095 * inferior.h: Fix common/ includes.
15096 * inferior.c: Fix common/ includes.
15097 * infcmd.c: Fix common/ includes.
15098 * inf-ptrace.c: Fix common/ includes.
15099 * inf-child.c: Fix common/ includes.
15100 * ia64-linux-nat.c: Fix common/ includes.
15101 * i387-tdep.c: Fix common/ includes.
15102 * i386-tdep.c: Fix common/ includes.
15103 * i386-linux-tdep.c: Fix common/ includes.
15104 * i386-linux-nat.c: Fix common/ includes.
15105 * i386-go32-tdep.c: Fix common/ includes.
15106 * i386-fbsd-tdep.c: Fix common/ includes.
15107 * i386-fbsd-nat.c: Fix common/ includes.
15108 * guile/scm-type.c: Fix common/ includes.
15109 * guile/guile.c: Fix common/ includes.
15110 * go32-nat.c: Fix common/ includes.
15111 * gnu-nat.c: Fix common/ includes.
15112 * gdbthread.h: Fix common/ includes.
15113 * gdbarch-selftests.c: Fix common/ includes.
15114 * gdb_usleep.c: Fix common/ includes.
15115 * gdb_select.h: Fix common/ includes.
15116 * gdb_bfd.c: Fix common/ includes.
15117 * gcore.c: Fix common/ includes.
15118 * fork-child.c: Fix common/ includes.
15119 * findvar.c: Fix common/ includes.
15120 * fbsd-nat.c: Fix common/ includes.
15121 * event-top.c: Fix common/ includes.
15122 * event-loop.c: Fix common/ includes.
15123 * dwarf2read.c: Fix common/ includes.
15124 * dwarf2loc.c: Fix common/ includes.
15125 * dwarf2-frame.c: Fix common/ includes.
15126 * dwarf-index-cache.c: Fix common/ includes.
15127 * dtrace-probe.c: Fix common/ includes.
15128 * disasm-selftests.c: Fix common/ includes.
15129 * defs.h: Fix common/ includes.
15130 * csky-tdep.c: Fix common/ includes.
15131 * cp-valprint.c: Fix common/ includes.
15132 * cp-support.h: Fix common/ includes.
15133 * cp-support.c: Fix common/ includes.
15134 * corelow.c: Fix common/ includes.
15135 * completer.h: Fix common/ includes.
15136 * completer.c: Fix common/ includes.
15137 * compile/compile.c: Fix common/ includes.
15138 * compile/compile-loc2c.c: Fix common/ includes.
15139 * compile/compile-cplus-types.c: Fix common/ includes.
15140 * compile/compile-cplus-symbols.c: Fix common/ includes.
15141 * command.h: Fix common/ includes.
15142 * cli/cli-dump.c: Fix common/ includes.
15143 * cli/cli-cmds.c: Fix common/ includes.
15144 * charset.c: Fix common/ includes.
15145 * build-id.c: Fix common/ includes.
15146 * btrace.h: Fix common/ includes.
15147 * btrace.c: Fix common/ includes.
15148 * breakpoint.h: Fix common/ includes.
15149 * breakpoint.c: Fix common/ includes.
15150 * ax.h:
15151 (enum agent_op): Fix common/ includes.
15152 * ax-general.c (struct aop_map): Fix common/ includes.
15153 * ax-gdb.c: Fix common/ includes.
15154 * auxv.c: Fix common/ includes.
15155 * auto-load.c: Fix common/ includes.
15156 * arm-tdep.c: Fix common/ includes.
15157 * arch/riscv.c: Fix common/ includes.
15158 * arch/ppc-linux-common.c: Fix common/ includes.
15159 * arch/i386.c: Fix common/ includes.
15160 * arch/arm.c: Fix common/ includes.
15161 * arch/arm-linux.c: Fix common/ includes.
15162 * arch/arm-get-next-pcs.c: Fix common/ includes.
15163 * arch/amd64.c: Fix common/ includes.
15164 * arch/aarch64.c: Fix common/ includes.
15165 * arch/aarch64-insn.c: Fix common/ includes.
15166 * arch-utils.c: Fix common/ includes.
15167 * amd64-windows-tdep.c: Fix common/ includes.
15168 * amd64-tdep.c: Fix common/ includes.
15169 * amd64-sol2-tdep.c: Fix common/ includes.
15170 * amd64-obsd-tdep.c: Fix common/ includes.
15171 * amd64-nbsd-tdep.c: Fix common/ includes.
15172 * amd64-linux-tdep.c: Fix common/ includes.
15173 * amd64-linux-nat.c: Fix common/ includes.
15174 * amd64-fbsd-tdep.c: Fix common/ includes.
15175 * amd64-fbsd-nat.c: Fix common/ includes.
15176 * amd64-dicos-tdep.c: Fix common/ includes.
15177 * amd64-darwin-tdep.c: Fix common/ includes.
15178 * agent.c: Fix common/ includes.
15179 * ada-lang.h: Fix common/ includes.
15180 * ada-lang.c: Fix common/ includes.
15181 * aarch64-tdep.c: Fix common/ includes.
15182
15183 2019-01-25 Tom Tromey <tom@tromey.com>
15184
15185 * common/create-version.sh: Use common/version.h.
15186
15187 2019-01-24 Pedro Alves <palves@redhat.com>
15188
15189 * infrun.c (signal_stop, signal_print, signal_program)
15190 (signal_catch, signal_pass): Now arrays instead of pointers.
15191 (update_signals_program_target, do_target_resume)
15192 (signal_catch_update, handle_command, _initialize_infrun): Adjust.
15193 * linux-nat.c (linux_nat_target::pass_signals)
15194 (linux_nat_target::create_inferior, linux_nat_target::attach):
15195 Adjust.
15196 * linux-nat.h (linux_nat_target::pass_signals): Adjust.
15197 * nto-procfs.c (nto_procfs_target::pass_signals): Adjust.
15198 * procfs.c (procfs_target::pass_signals): Adjust.
15199 * record-full.c (record_full_target::resume): Adjust.
15200 * remote.c (remote_target::pass_signals)
15201 (remote_target::program_signals): Adjust.
15202 * target-debug.h (target_debug_print_signals): Now takes a
15203 gdb::array_view as parameter. Adjust.
15204 * target.h (target_ops) <pass_signals, program_signals>: Replace
15205 pointer and length parameters with gdb::array_view.
15206 (target_pass_signals, target_program_signals): Likewise.
15207 * target-delegates.c: Regenerate.
15208
15209 2019-01-24 Pedro Alves <palves@redhat.com>
15210
15211 * common/forward-scope-exit.h
15212 (forward_scope_exit::forward_scope_exit): Pass arguments to
15213 m_bind_function directly, instead of creating a std::bind and
15214 copying that.
15215
15216 2019-01-24 Alan Hayward <alan.hayward@arm.com>
15217
15218 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
15219 for static members.
15220 (pass_in_v_vfp_candidate): Likewise.
15221
15222 2019-01-23 Tom Tromey <tom@tromey.com>
15223 Pedro Alves <palves@redhat.com>
15224
15225 * regcache.c (class regcache_invalidator): Remove.
15226 (regcache::raw_write): Use make_scope_exit.
15227
15228 2019-01-23 Tom Tromey <tom@tromey.com>
15229
15230 * ui-out.h (class ui_out_emit_type): Update comment.
15231
15232 2019-01-23 Tom Tromey <tom@tromey.com>
15233
15234 * infrun.c (fetch_inferior_event): Update comment.
15235
15236 2019-01-23 Tom Tromey <tom@tromey.com>
15237 Pedro Alves <palves@redhat.com>
15238
15239 * infrun.c (reinstall_readline_callback_handler_cleanup): Remove
15240 parameter.
15241 (fetch_inferior_event): Use SCOPE_EXIT.
15242
15243
15244 2019-01-23 Tom Tromey <tom@tromey.com>
15245 Pedro Alves <palves@redhat.com>
15246
15247 * infrun.c (disable_thread_events): Delete.
15248 (stop_all_threads): Use SCOPE_EXIT.
15249
15250 2019-01-23 Tom Tromey <tom@tromey.com>
15251 Pedro Alves <palves@redhat.com>
15252
15253 * symfile.c: Include forward-scope-exit.h.
15254 (clear_symtab_users_cleanup): Replace forward declaration with
15255 a FORWARD_SCOPE_EXIT.
15256 (syms_from_objfile_1): Use the forward_scope_exit and
15257 gdb::optional instead of cleanup_function.
15258 (reread_symbols): Use the forward_scope_exit instead of
15259 cleanup_function.
15260 (clear_symtab_users_cleanup): Remove function.
15261
15262 2019-01-23 Tom Tromey <tom@tromey.com>
15263 Pedro Alves <palves@redhat.com>
15264
15265 * linux-nat.c: Include scope-exit.h.
15266 (cleanup_target_stop): Remove.
15267 (linux_nat_target::static_tracepoint_markers_by_strid): Use
15268 SCOPE_EXIT.
15269
15270 2019-01-23 Tom Tromey <tom@tromey.com>
15271 Pedro Alves <palves@redhat.com>
15272
15273 * infcall.c (cleanup_delete_std_terminate_breakpoint): Remove.
15274 (call_function_by_hand_dummy): Use SCOPE_EXIT.
15275
15276 2019-01-23 Tom Tromey <tom@tromey.com>
15277 Andrew Burgess <andrew.burgess@embecosm.com>
15278 Pedro Alves <palves@redhat.com>
15279
15280 * infrun.c (fetch_inferior_event): Use scope_exit.
15281 * utils.h (make_bpstat_clear_actions_cleanup): Don't declare.
15282 * top.c (execute_command): Use scope_exit.
15283 * breakpoint.c (bpstat_do_actions): Use scope_exit.
15284 * utils.c (do_bpstat_clear_actions_cleanup)
15285 (make_bpstat_clear_actions_cleanup): Remove.
15286
15287 2019-01-23 Tom Tromey <tom@tromey.com>
15288 Pedro Alves <palves@redhat.com>
15289
15290 * infrun.c: Include "common/scope-exit.h"
15291 (delete_just_stopped_threads_infrun_breakpoints_cleanup): Remove.
15292 (wait_for_inferior): Use SCOPE_EXIT.
15293 (fetch_inferior_event): Use scope_exit.
15294
15295 2019-01-23 Tom Tromey <tom@tromey.com>
15296 Pedro Alves <palves@redhat.com>
15297
15298 * breakpoint.c (create_breakpoint): Remove cleanup.
15299
15300 2019-01-23 Tom Tromey <tom@tromey.com>
15301 Andrew Burgess <andrew.burgess@embecosm.com>
15302 Pedro Alves <palves@redhat.com>
15303
15304 2019-01-23 Pedro Alves <palves@redhat.com>
15305
15306 * gdbarch-selftests.c (struct on_exit): Use SCOPE_EXIT.
15307
15308 2019-01-23 Pedro Alves <palves@redhat.com>
15309 Andrew Burgess <andrew.burgess@embecosm.com>
15310
15311 * gdbthread.h: Include "common/forward-scope-exit.h".
15312 (scoped_finish_thread_state): Redefine custom class in terms of
15313 forward_scope_exit.
15314
15315 2019-01-23 Pedro Alves <palves@redhat.com>
15316 Andrew Burgess <andrew.burgess@embecosm.com>
15317
15318 * common/forward-scope-exit.h: New file.
15319
15320 2019-01-23 Pedro Alves <palves@redhat.com>
15321 Andrew Burgess <andrew.burgess@embecosm.com>
15322 Tom Tromey <tom@tromey.com>
15323
15324 * common/scope-exit.h: New file.
15325
15326 2019-01-23 Pedro Alves <palves@redhat.com>
15327
15328 * common/preprocessor.h (ESC): Rename to ...
15329 (ESC_PARENS): ... this.
15330 * common/valid-expr.h (CHECK_VALID_EXPR_1, CHECK_VALID_EXPR_2)
15331 (CHECK_VALID_EXPR_3, CHECK_VALID_EXPR_4): Adjust.
15332
15333 2019-01-23 Tom Tromey <tom@tromey.com>
15334
15335 * language.h (class scoped_switch_to_sym_language_if_auto):
15336 Initialize m_lang in both cases.
15337
15338 2019-01-23 Alan Hayward <alan.hayward@arm.com>
15339
15340 * nat/aarch64-linux.c (aarch64_linux_new_thread): Replace XNEW
15341 with XCNEW.
15342
15343 2019-01-22 Tom Tromey <tom@tromey.com>
15344
15345 * corelow.c: Do not include sys/file.h.
15346
15347 2019-01-22 Tom Tromey <tom@tromey.com>
15348
15349 * tui/tui-wingeneral.h: Include gdb_curses.h.
15350
15351 2019-01-22 Tom Tromey <tom@tromey.com>
15352
15353 * source-cache.h (class source_cache) <get_source_lines,
15354 get_plain_source_lines, extract_lines>: Rename "lines" parameter.
15355
15356 2019-01-22 Tom Tromey <tom@tromey.com>
15357
15358 * remote-fileio.h (struct remote_target): Declare.
15359
15360 2019-01-22 Tom Tromey <tom@tromey.com>
15361
15362 * python/py-arch.c: Do not include py-ref.h.
15363 * python/py-bpevent.c: Do not include py-ref.h.
15364 * python/py-cmd.c: Do not include py-ref.h.
15365 * python/py-continueevent.c: Do not include py-ref.h.
15366 * python/py-event.h: Do not include py-ref.h.
15367 * python/py-evtregistry.c: Do not include py-ref.h.
15368 * python/py-finishbreakpoint.c: Do not include py-ref.h.
15369 * python/py-frame.c: Do not include py-ref.h.
15370 * python/py-framefilter.c: Do not include py-ref.h.
15371 * python/py-function.c: Do not include py-ref.h.
15372 * python/py-infevents.c: Do not include py-ref.h.
15373 * python/py-linetable.c: Do not include py-ref.h.
15374 * python/py-objfile.c: Do not include py-ref.h.
15375 * python/py-param.c: Do not include py-ref.h.
15376 * python/py-prettyprint.c: Do not include py-ref.h.
15377 * python/py-progspace.c: Do not include py-ref.h.
15378 * python/py-symbol.c: Do not include py-ref.h.
15379 * python/py-symtab.c: Do not include py-ref.h.
15380 * python/py-type.c: Do not include py-ref.h.
15381 * python/py-unwind.c: Do not include py-ref.h.
15382 * python/py-utils.c: Do not include py-ref.h.
15383 * python/py-value.c: Do not include py-ref.h.
15384 * python/py-varobj.c: Do not include py-ref.h.
15385 * python/py-xmethods.c: Do not include py-ref.h.
15386 * python/python.c: Do not include py-ref.h.
15387 * varobj.c: Do not include py-ref.h.
15388
15389 2019-01-22 Tom Tromey <tom@tromey.com>
15390
15391 * objfiles.h (struct objfile_per_bfd_storage): Use "struct"
15392 keyword for bcache.
15393
15394 2019-01-22 Tom Tromey <tom@tromey.com>
15395
15396 * compile/compile-cplus-types.c: Remove a comment by #include.
15397
15398 2019-01-22 Tom Tromey <tom@tromey.com>
15399
15400 * compile/gcc-c-plugin.h: Include compile-internal.h.
15401
15402 2019-01-22 Tom Tromey <tom@tromey.com>
15403
15404 * stabsread.c (EXTERN): Do not define.
15405 (symnum, next_symbol_text_func, processing_gcc_compilation)
15406 (within_function, global_sym_chain, global_stabs)
15407 (previous_stab_code, this_object_header_files)
15408 (n_this_object_header_files)
15409 (n_allocated_this_object_header_files): Define.
15410 * stabsread.h (EXTERN): Never define. Use "extern".
15411
15412 2019-01-22 Philippe Waroquiers <philippe.waroquiers@skynet.be>
15413
15414 * event-top.c (handle_line_of_input): use unique_xmalloc_ptr for
15415 history_value.
15416
15417 2019-01-21 Tom Tromey <tom@tromey.com>
15418
15419 * ui-out.c: Fix includes.
15420 * tui/tui-source.c: Fix includes.
15421 * target.c: Fix includes.
15422 * remote.c: Fix includes.
15423 * regcache.c: Fix includes.
15424 * python/py-block.c: Fix includes.
15425 * printcmd.c: Fix includes.
15426 * or1k-tdep.c: Fix includes.
15427 * mi/mi-main.c: Fix includes.
15428 * m32r-tdep.c: Fix includes.
15429 * csky-tdep.c: Fix includes.
15430 * compile/compile-cplus-types.c: Fix includes.
15431 * cli/cli-interp.c: Fix includes.
15432
15433 2019-01-21 Alan Hayward <alan.hayward@arm.com>
15434
15435 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
15436 for padding.
15437
15438 2019-01-16 Tom Tromey <tom@tromey.com>
15439
15440 * objfiles.h (struct minimal_symbol_iterator): Rename. Move
15441 earlier.
15442 (struct objfile) <msymbols_range>: Move from top level.
15443 <msymbols>: New method.
15444 (class objfile_msymbols): Remove.
15445 * symtab.c (default_collect_symbol_completion_matches_break_on):
15446 Update.
15447 * symmisc.c (dump_msymbols): Update.
15448 * stabsread.c (scan_file_globals): Update.
15449 * objc-lang.c (info_selectors_command, info_classes_command)
15450 (find_methods): Update.
15451 * minsyms.c (find_solib_trampoline_target): Update.
15452 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Update.
15453 * coffread.c (coff_symfile_read): Update.
15454 * ada-lang.c (ada_lookup_simple_minsym)
15455 (ada_collect_symbol_completion_matches): Update.
15456
15457 2019-01-16 Tom Tromey <tom@tromey.com>
15458
15459 * objfiles.h (class objfile_msymbols) <iterator>: Change argument
15460 type. Remove no-argument constructor.
15461 <iterator::operator++>: Simplify.
15462 <begin>: Update.
15463 <end>: Use minimal_symbol_count.
15464
15465 2019-01-16 Tom Tromey <tom@tromey.com>
15466
15467 * objfiles.h (struct objfile) <psymtabs>: New method.
15468 (class objfile_psymtabs): Remove.
15469 * psymtab.h (class psymtab_storage) <partial_symtab_range>: New
15470 typedef.
15471 <range>: New method.
15472 (require_partial_symbols): Change return type.
15473 * psymtab.c (require_partial_symbols)
15474 (psym_expand_symtabs_matching): Update.
15475 * mdebugread.c (parse_partial_symbols): Update.
15476 * dbxread.c (dbx_end_psymtab): Update.
15477
15478 2019-01-15 Tom Tromey <tom@tromey.com>
15479
15480 * symtab.c (lookup_objfile_from_block)
15481 (lookup_symbol_in_objfile_symtabs)
15482 (basic_lookup_transparent_type_1, find_pc_sect_compunit_symtab)
15483 (find_line_symtab, info_sources_command)
15484 (default_collect_symbol_completion_matches_break_on)
15485 (make_source_files_completion_list): Update.
15486 * symmisc.c (print_objfile_statistics, dump_objfile)
15487 (maintenance_print_symbols, maintenance_info_symtabs)
15488 (maintenance_check_symtabs, maintenance_info_line_tables):
15489 Update.
15490 * source.c (select_source_symtab)
15491 (forget_cached_source_info_for_objfile): Update.
15492 * objfiles.h (class objfile_compunits): Remove.
15493 (struct objfile) <compunits_range>: New typedef.
15494 (compunits): New method.
15495 * objfiles.c (objfile_relocate1): Update.
15496 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
15497 * maint.c (count_symtabs_and_blocks): Update.
15498 * linespec.c (iterate_over_all_matching_symtabs): Update.
15499 * cp-support.c (add_symbol_overload_list_qualified): Update.
15500 * coffread.c (coff_symtab_read): Update.
15501 * ada-lang.c (add_nonlocal_symbols)
15502 (ada_collect_symbol_completion_matches)
15503 (ada_add_global_exceptions): Update.
15504
15505 2019-01-15 Tom Tromey <tom@tromey.com>
15506
15507 * progspace.h (program_space) <objfiles_safe_range>: New
15508 typedef.
15509 <objfiles_safe>: New method.
15510 * objfiles.h (class all_objfiles_safe): Remove.
15511 * objfiles.c (free_all_objfiles, objfile_purge_solibs): Update.
15512 * jit.c (jit_inferior_exit_hook): Update.
15513
15514 2019-01-17 Tom Tromey <tom@tromey.com>
15515
15516 * progspace.h (program_space) <objfiles_range>: New typedef.
15517 <objfiles>: New method.
15518 <objfiles_head>: Rename from objfiles.
15519 (object_files): Update.
15520 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Update.
15521 * guile/scm-pretty-print.c
15522 (ppscm_find_pretty_printer_from_objfiles): Update.
15523 * guile/scm-objfile.c (gdbscm_objfiles): Update.
15524 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers):
15525 Update.
15526 * python/py-progspace.c (pspy_get_objfiles): Update.
15527 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
15528 Update.
15529 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
15530 (objfpy_lookup_objfile_by_build_id): Update.
15531 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
15532 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
15533 Update.
15534 * symtab.c (iterate_over_symtabs, matching_obj_sections)
15535 (expand_symtab_containing_pc, lookup_objfile_from_block)
15536 (lookup_static_symbol, basic_lookup_transparent_type)
15537 (find_pc_sect_compunit_symtab, find_symbol_at_address)
15538 (find_line_symtab, info_sources_command)
15539 (default_collect_symbol_completion_matches_break_on)
15540 (make_source_files_completion_list, find_main_name): Update.
15541 * symmisc.c (print_symbol_bcache_statistics)
15542 (print_objfile_statistics, maintenance_print_symbols)
15543 (maintenance_print_msymbols, maintenance_print_objfiles)
15544 (maintenance_info_symtabs, maintenance_check_symtabs)
15545 (maintenance_expand_symtabs, maintenance_info_line_tables):
15546 Update.
15547 * symfile.c (remove_symbol_file_command, overlay_invalidate_all)
15548 (find_pc_overlay, find_pc_mapped_section, list_overlays_command)
15549 (map_overlay_command, unmap_overlay_command)
15550 (simple_overlay_update, expand_symtabs_matching)
15551 (map_symbol_filenames): Update.
15552 * symfile-debug.c (set_debug_symfile): Update.
15553 * spu-tdep.c (spu_overlay_update, spu_objfile_from_frame):
15554 Update.
15555 * source.c (select_source_symtab, forget_cached_source_info):
15556 Update.
15557 * solib.c (solib_read_symbols): Update.
15558 * solib-spu.c (append_ocl_sos): Update.
15559 * psymtab.c (maintenance_print_psymbols)
15560 (maintenance_info_psymtabs, maintenance_check_psymtabs): Update.
15561 * probe.c (parse_probes_in_pspace, find_probe_by_pc): Update.
15562 * printcmd.c (info_symbol_command): Update.
15563 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created):
15564 Update.
15565 * objfiles.h (class all_objfiles): Remove.
15566 * objfiles.c (have_partial_symbols, have_full_symbols)
15567 (have_minimal_symbols, qsort_cmp, update_section_map)
15568 (shared_objfile_contains_address_p)
15569 (default_iterate_over_objfiles_in_search_order): Update.
15570 * objc-lang.c (info_selectors_command, info_classes_command)
15571 (find_methods): Update.
15572 * minsyms.c (find_solib_trampoline_target): Update.
15573 * maint.c (maintenance_info_sections)
15574 (maintenance_translate_address, count_symtabs_and_blocks):
15575 Update.
15576 * main.c (captured_main_1): Update.
15577 * linux-thread-db.c (try_thread_db_load_from_pdir)
15578 (has_libpthread): Update.
15579 * linespec.c (iterate_over_all_matching_symtabs)
15580 (search_minsyms_for_name): Update.
15581 * jit.c (jit_find_objf_with_entry_addr): Update.
15582 * hppa-tdep.c (find_unwind_entry)
15583 (hppa_lookup_stub_minimal_symbol): Update.
15584 * gcore.c (gcore_create_callback, objfile_find_memory_regions):
15585 Update.
15586 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
15587 (elf_gnu_ifunc_resolve_by_got): Update.
15588 * dwarf2-frame.c (dwarf2_frame_find_fde): Update.
15589 * dwarf-index-write.c (save_gdb_index_command): Update.
15590 * cp-support.c (add_symbol_overload_list_qualified): Update.
15591 * breakpoint.c (create_overlay_event_breakpoint)
15592 (create_longjmp_master_breakpoint)
15593 (create_std_terminate_master_breakpoint)
15594 (create_exception_master_breakpoint): Update.
15595 * blockframe.c (find_pc_partial_function): Update.
15596 * ada-lang.c (ada_lookup_simple_minsym, add_nonlocal_symbols)
15597 (ada_collect_symbol_completion_matches)
15598 (ada_add_global_exceptions): Update.
15599
15600 2019-01-17 Tom Tromey <tom@tromey.com>
15601
15602 * solib-target.c (lm_info_target_p): Remove typedef. Don't
15603 declare VEC.
15604 (solib_target_parse_libraries): Change return type.
15605 (library_list_start_segment, library_list_start_section)
15606 (library_list_end_library, library_list_start_library); Update.
15607 (solib_target_free_library_list): Remove.
15608 (solib_target_parse_libraries): Remove cleanup. Change return
15609 type.
15610 (solib_target_current_sos): Update.
15611
15612 2019-01-17 Tom Tromey <tromey@bapiya>
15613
15614 * valprint.c: Replace "the the" with "the".
15615 * symtab.c: Replace "the the" with "the".
15616 * solib.c: Replace "the the" with "the".
15617 * solib-dsbt.c: Replace "the the" with "the".
15618 * linespec.c: Replace "the the" with "the".
15619 * dwarf2loc.h: Replace "the the" with "the".
15620 * amd64-windows-tdep.c: Replace "the the" with "the".
15621 * aarch64-tdep.c: Replace "the the" with "the".
15622
15623 2019-01-16 Keith Seitz <keiths@redhat.com>
15624
15625 PR gdb/23773
15626 * dwarf2read.c (dwarf2_cu) <ancestor>: New field.
15627 <builder>: Rename to ..
15628 <m_builder>: ... this and make private.
15629 (dwarf2_cu::get_builder): New method. Change all users of
15630 `builder' to use this method.
15631 (dwarf2_start_symtab): Move to ...
15632 (dwarf2_cu::start_symtab): ... here. Update all callers
15633 (setup_type_unit_groups): Move to ...
15634 (dwarf2_cu::setup_type_unit_groups): ... here. Update all
15635 callers.
15636 (dwarf2_cu::reset_builder): New method.
15637 (process_full_compunit, process_full_type_unit): Use
15638 dwarf2_cu::reset_builder.
15639 (follow_die_offset): Record the ancestor CU if it is different
15640 from the followed DIE's CU.
15641 (follow_die_sig_1): Likewise.
15642
15643 2019-01-15 Tom Tromey <tom@tromey.com>
15644
15645 * remote.c (class remote_state) <buf>: Now a char_vector.
15646 <buf_size>: Remove.
15647 (remote_target::getpkt): Change type of buf. Remove sizeof_buf
15648 parameter.
15649 (remote_target::getpkt_or_notif_sane_1)
15650 (remote_target::getpkt_sane)
15651 (remote_target::getpkt_or_notif_sane): Likewise.
15652 (class remote_target) <putpkt>: New overload.
15653 (remote_target::read_frame): Change type of "buf_p". Remove
15654 sizeof_p parameter.
15655 (packet_ok): New overload.
15656 (packet_check_result): New overload.
15657 Update all uses.
15658
15659 2019-01-14 Tom Tromey <tom@tromey.com>
15660
15661 * remote-notif.c (handle_notification, remote_notif_ack)
15662 (remote_notif_parse): Make "buf" const.
15663 * remote-notif.h (struct notif_client) <parse, ack>: Make "buf"
15664 const.
15665 (remote_notif_parse, remote_notif_ack, handle_notification):
15666 Likewise.
15667 * remote.c (remote_notif_stop_parse): Make "buf" const.
15668 (remote_target::remote_parse_stop_reply): Make "buf" const.
15669 (remote_notif_stop_ack): Make "buf" const.
15670
15671 2019-01-14 Tom Tromey <tom@tromey.com>
15672
15673 * remote.c (remote_console_output): Make parameter const.
15674
15675 2019-01-14 Tom Tromey <tom@tromey.com>
15676
15677 * target-debug.h (target_debug_print_signals): Constify.
15678 * nto-procfs.c (nto_procfs_target::pass_signals): Update.
15679 * procfs.c (procfs_target::pass_signals): Update.
15680 * linux-nat.c (linux_nat_target::pass_signals): Update.
15681 * linux-nat.h (class linux_nat_target) <pass_signals>: Update.
15682 * target-delegates.c: Rebuild.
15683 * remote.c (remote_target::program_signals): Update.
15684 (remote_target::pass_signals): Update.
15685 * target.c (target_pass_signals): Constify argument.
15686 (target_program_signals): Likewise.
15687 * target.h (struct target_ops) <pass_signals, program_signals>:
15688 Constify argument.
15689 (target_pass_signals, target_program_signals): Constify argument.
15690
15691 2019-01-14 Tom Tromey <tom@tromey.com>
15692
15693 PR tui/28819:
15694 * tui/tui-io.c (gdb_wgetch): Print \r when needed.
15695
15696 2019-01-14 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
15697
15698 * ppc-tdep.h (struct gdbarch_tdep) <ppc_v0_alias_regnum>: New
15699 field.
15700 * rs6000-tdep.c: Include reggroups.h.
15701 (IS_V_ALIAS_PSEUDOREG): Define.
15702 (rs6000_register_name): Return names for the "vX" aliases.
15703 (rs6000_pseudo_register_type): Return type for the "vX" aliases.
15704 (rs6000_pseudo_register_reggroup_p): Restore. Handle "vX"
15705 aliases. Call default_register_reggroup_p for all other
15706 pseudo-registers.
15707 (v_alias_pseudo_register_read, v_alias_pseudo_register_write):
15708 New functions.
15709 (rs6000_pseudo_register_read, rs6000_pseudo_register_write):
15710 Handle "vX" aliases.
15711 (v_alias_pseudo_register_collect): New function.
15712 (rs6000_ax_pseudo_register_collect): Handle "vX" aliases.
15713 (rs6000_gdbarch_init): Initialize "vX" aliases as
15714 pseudo-registers. Restore registration of
15715 rs6000_pseudo_register_reggroup_p with
15716 set_tdesc_pseudo_register_reggroup_p.
15717
15718 2019-01-13 Max Filippov <jcmvbkbc@gmail.com>
15719
15720 * xtensa-linux-tdep.c (xtensa_linux_init_abi): Update
15721 tdep->num_pseudo_regs. Add calls to set_gdbarch_num_regs and
15722 set_gdbarch_num_pseudo_regs.
15723
15724 2019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
15725
15726 * cli/cli-style.h (class cli_style_option): <add_setshow_commands>
15727 Remove arg prefixname, add do_set and do_show.
15728 Add member functions set_list and show_list.
15729 * cli/cli-style.c (class cli_style_option): Update accordingly.
15730 (style_set_list): Move to file scope.
15731 (style_show_list): Likewise.
15732 (set_style): Call help_list.
15733 (show_style): Call cmd_show_list.
15734 (_initialize_cli_style): New macro STYLE_ADD_SETSHOW_COMMANDS.
15735 Update to use the new macro.
15736
15737 2019-10-12 Joel Brobecker <brobecker@adacore.com>
15738
15739 * ada-lang.c (_initialize_ada_language): Expand the help text
15740 for the "catch exception" command.
15741
15742 2019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
15743
15744 * symtab.c (matching_obj_sections): Initialize obj,
15745 declare it closer to its usage.
15746
15747 2019-01-10 Tom Tromey <tom@tromey.com>
15748
15749 * thread-iter.h (inf_threads_iterator): Use next_iterator.
15750 (basic_inf_threads_range): Remove.
15751 (inf_threads_range, inf_non_exited_threads_range)
15752 (safe_inf_threads_range): Use next_adapter.
15753
15754 2019-01-10 Keith Seitz <keiths@redhat.com>
15755
15756 PR gdb/23712
15757 PR symtab/23010
15758 * dwarf2read.c (dw2_add_symbol_to_list): Remove.
15759 (fixup_go_packaging, new_symbol): Use add_symbol_to_list.
15760
15761 2019-01-10 Keith Seitz <keiths@redhat.com>
15762
15763 PR gdb/23712
15764 PR symtab/23010
15765 * dictionary.c (pending_to_vector): Remove.
15766 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
15767 Remove _1 suffix, replacing functions of the same name. Update
15768 all callers.
15769 (dict_create_hashed, dict_create_hashed_expandable)
15770 (dict_create_linear, dict_create_linear_expandable, dict_free)
15771 (dict_add_symbol, dict_add_pending, dict_size, dict_empty):
15772 Make functions static.
15773
15774 2019-01-10 Keith Seitz <keiths@redhat.com>
15775
15776 PR gdb/23712
15777 PR symtab/23010
15778 * dictionary.h (struct dictionary): Replace declaration with
15779 multidictionary.
15780 (dict_create_hashed, dict_create_hashed_expandable)
15781 (dict_create_linear, dict_create_linear_expandable)
15782 (dict_free, dict_add_symbol, dict_add_pending, dict_empty)
15783 (dict_iterator_first, dict_iterator_next, dict_iter_match_first)
15784 (dict_iter_match_next, dict_size): Rename to "mdict_" versions
15785 taking multidictionary argument.
15786 [ALL_DICT_SYMBOLS]: Update for multidictionary.
15787 * block.h (struct block) <dict>: Change to multidictionary
15788 and rename `multidict'.
15789 * block.c, buildsym.c, jit.c, mdebugread.c, objfiles.c,
15790 symmisc.c: Update all dictionary references to multidictionary.
15791
15792 2019-01-10 Keith Seitz <keiths@redhat.com>
15793
15794 PR gdb/23712
15795 PR symtab/23010
15796 * dictionary.c: Include unordered_map.
15797 (pending_to_vector): New function.
15798 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
15799 Rewrite the non-"_1" functions to take vector instead
15800 of linked list.
15801 (dict_create_hashed, dict_create_linear, dict_add_pending): Use the
15802 "new" _1 versions of the same name.
15803 (multidictionary): Define.
15804 (std::hash<enum language): New definition.
15805 (collate_pending_symbols_by_language, mdict_create_hashed)
15806 (mdict_create_hashed_expandable, mdict_create_linear)
15807 (mdict_create_linear_expandable, mdict_free)
15808 (find_language_dictionary, create_new_language_dictionary)
15809 (mdict_add_symbol, mdict_add_pending, mdict_iterator_first)
15810 (mdict_iterator_next, mdict_iter_match_first, mdict_iter_match_next)
15811 (mdict_size, mdict_empty): New functions.
15812 * dictionary.h (mdict_iterator): Define.
15813
15814 2019-01-10 Pedro Alves <palves@redhat.com>
15815
15816 * breakpoint.c (read_uploaded_action)
15817 (create_tracepoint_from_upload): Adjust to use
15818 gdb::unique_xmalloc_ptr.
15819 * ctf.c (ctf_write_uploaded_tp):
15820 (SET_ARRAY_FIELD): Use emplace_back.
15821 (SET_STRING_FIELD): Adjust to use gdb::unique_xmalloc_ptr.
15822 * tracefile-tfile.c (tfile_write_uploaded_tp):
15823 * tracepoint.c (parse_tracepoint_definition): Adjust to use
15824 gdb::unique_xmalloc_ptr.
15825 * tracepoint.h (struct uploaded_tp) <cond, actions, step_actions,
15826 at_string, cond_string, cmd_strings>: Replace char pointers
15827 with gdb::unique_xmalloc_ptr.
15828
15829 2019-01-10 Pedro Alves <palves@redhat.com>
15830
15831 * solib-target.c (library_list_start_library): Don't xstrdup name.
15832
15833 2019-01-10 Pedro Alves <palves@redhat.com>
15834
15835 * mdebugread.c (parse_partial_symbols): Use
15836 gdb::unique_xmalloc_ptr to manage heap-allocated 'stabsstring'.
15837
15838 2019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
15839
15840 * linux-fork.c (scoped_switch_fork_info)
15841 <~scoped_switch_fork_info>: Fix incorrect variable name.
15842
15843 2019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
15844
15845 * linux-fork.c (scoped_switch_fork_info)
15846 <scoped_switch_fork_info>: Make explicit.
15847 <~scoped_switch_fork_info>: Wrap core in TRY/CATCH.
15848
15849 2019-01-10 Tom Tromey <tom@tromey.com>
15850
15851 * objfiles.h (objfile::reset_psymtabs): Update.
15852 * objfiles.c (objfile::objfile): Update.
15853 * psymtab.h (psymtab_storage::obstack): Update.
15854 (psymtab_storage::m_obstack): Use gdb::optional.
15855 (class psymtab_storage): Update comment. Remove objfile
15856 parameter.
15857 * psymtab.c (psymtab_storage::psymtab_storage): Update.
15858
15859 2019-01-10 Tom Tromey <tom@tromey.com>
15860
15861 * psymtab.h (psymtab_storage::allocate_psymtab): New method.
15862 <free_psymtabs>: Now private.
15863 * psymtab.c (psymtab_storage::allocate_psymtab): Implement.
15864 (allocate_psymtab): Use new method.
15865
15866 2019-01-10 Tom Tromey <tom@tromey.com>
15867
15868 * xcoffread.c (xcoff_end_psymtab): Use allocate_dependencies.
15869 * psymtab.h (psymtab_storage::allocate_dependencies): New method.
15870 * mdebugread.c (parse_partial_symbols): Use
15871 allocate_dependencies.
15872 * dwarf2read.c (dwarf2_create_include_psymtab): Use
15873 allocate_dependencies.
15874 (process_psymtab_comp_unit_reader)
15875 (build_type_psymtab_dependencies): Likewise.
15876 * dbxread.c (dbx_end_psymtab): Use allocate_dependencies.
15877
15878 2019-01-10 Tom Tromey <tom@tromey.com>
15879
15880 * psymtab.c (add_psymbol_to_bcache): Pass psymtab obstack to
15881 PSYMBOL_SET_LANGUAGE.
15882 (allocate_psymtab): Allocate psymtab on the psymtab obstack.
15883
15884 2019-01-10 Tom Tromey <tom@tromey.com>
15885
15886 * psymtab.h (psymtab_storage::obstack): New method.
15887 <m_obstack>: Rename from obstack; now private.
15888 * psymtab.c (psymtab_storage): Update.
15889 * dwarf2read.c (create_addrmap_from_index)
15890 (create_addrmap_from_aranges, dwarf2_build_psymtabs_hard):
15891 Update.
15892
15893 2019-01-10 Tom Tromey <tom@tromey.com>
15894
15895 * symfile.c (reread_symbols): Call objfile->reset_psymtabs.
15896 * objfiles.h (objfile::reset_psymtabs): New method.
15897
15898 2019-01-10 Tom Tromey <tom@tromey.com>
15899
15900 * symmisc.c (print_symbol_bcache_statistics): Update.
15901 (print_objfile_statistics): Update.
15902 * symfile.c (reread_symbols): Update.
15903 * psymtab.h (class psymtab_storage): New.
15904 * psymtab.c (psymtab_storage): New constructor.
15905 (~psymtab_storage): New destructor.
15906 (require_partial_symbols): Update.
15907 (ALL_OBJFILE_PSYMTABS_REQUIRED): Rewrite.
15908 (find_pc_sect_psymtab, find_pc_sect_psymbol)
15909 (match_partial_symbol, lookup_partial_symbol, dump_psymtab)
15910 (psym_dump, recursively_search_psymtabs, psym_has_symbols)
15911 (psym_find_compunit_symtab_by_address, sort_pst_symbols)
15912 (start_psymtab_common, end_psymtab_common)
15913 (add_psymbol_to_bcache, add_psymbol_to_list, init_psymbol_list)
15914 (allocate_psymtab): Update.
15915 (psymtab_storage::discard_psymtab): Rename from discard_psymtab.
15916 Update.
15917 (dump_psymtab_addrmap, maintenance_print_psymbols)
15918 (maintenance_check_psymtabs): Update.
15919 (class objfile_psymtabs): Move to objfiles.h.
15920 * psympriv.h (discard_psymtab): Now inline.
15921 (psymtab_discarder::psymtab_discarder): Update.
15922 (psymtab_discarder::~psymtab_discarder): Update.
15923 (ALL_OBJFILE_PSYMTABS): Rewrite.
15924 * objfiles.h (struct objfile) <psymtabs, psymtabs_addrmap,
15925 free_psymtabs, psymbol_cache, global_psymbols, static_psymbols>:
15926 Remove fields.
15927 <partial_symtabs>: New field.
15928 (class objfile_psymtabs): Move from psymtab.h. Update.
15929 * objfiles.c (objfile::objfile): Initialize partial_symtabs, not
15930 psymbol_cache.
15931 (objfile::~objfile): Don't destroy psymbol_cache.
15932 * mdebugread.c (parse_partial_symbols): Update.
15933 * dwarf2read.c (create_addrmap_from_index)
15934 (create_addrmap_from_aranges, dw2_find_pc_sect_compunit_symtab)
15935 (process_psymtab_comp_unit_reader, dwarf2_build_psymtabs_hard)
15936 (add_partial_subprogram, dwarf2_ranges_read): Update.
15937 * dwarf-index-write.c (write_address_map)
15938 (write_one_signatured_type, recursively_write_psymbols)
15939 (class debug_names, class debug_names, write_psymtabs_to_index):
15940 Update.
15941
15942 2019-01-10 Tom Tromey <tom@tromey.com>
15943
15944 * symtab.h (SYMBOL_SET_NAMES): Update.
15945 (symbol_set_names): Update.
15946 (MSYMBOL_SET_NAMES): Update.
15947 * symtab.c (symbol_set_names): Change argument to be an
15948 objfile_per_bfd_storage.
15949 * psymtab.c (add_psymbol_to_bcache): Update.
15950 * psympriv.h (PSYMBOL_SET_NAMES): Take per_bfd argument.
15951
15952 2019-01-10 Tom Tromey <tom@tromey.com>
15953
15954 * symtab.c (create_demangled_names_hash): Change argument to be an
15955 objfile_per_bfd_storage.
15956 (symbol_set_names): Update.
15957
15958 2019-01-10 Tom Tromey <tom@tromey.com>
15959
15960 * xcoffread.c (xcoff_initial_scan): Unconditionally call
15961 init_psymbol_list.
15962 * psymtab.c (init_psymbol_list): Do nothing if already called.
15963 * psympriv.h (init_psymbol_list): Add comment.
15964 * dwarf2read.c (dwarf2_build_psymtabs): Unconditionally call
15965 init_psymbol_list.
15966 * dbxread.c (dbx_symfile_read): Unconditionally call
15967 init_psymbol_list.
15968
15969 2019-01-10 Tom Tromey <tom@tromey.com>
15970
15971 * xcoffread.c (scan_xcoff_symtab): Update.
15972 * psymtab.c (add_psymbol_to_list): Replace "list" parameter with
15973 "where".
15974 * mdebugread.c (parse_partial_symbols)
15975 (handle_psymbol_enumerators): Update.
15976 * dwarf2read.c (add_partial_symbol, load_partial_dies): Update.
15977 * dbxread.c (read_dbx_symtab): Update.
15978 * psympriv.h (psymbol_placement): New enum.
15979 (add_psymbol_to_list): Update.
15980
15981 2019-01-10 Tom Tromey <tom@tromey.com>
15982
15983 * xcoffread.c (xcoff_start_psymtab): Remove global_psymbols and
15984 static_psymbols parameters.
15985 (scan_xcoff_symtab): Update.
15986 * psymtab.c (start_psymtab_common): Remove global_psymbols and
15987 static_psymbols parameters.
15988 * psympriv.h (start_psymtab_common): Update.
15989 * mdebugread.c (parse_partial_symbols): Update.
15990 * dwarf2read.c (create_partial_symtab): Update.
15991 * dbxread.c (read_dbx_symtab): Update.
15992 (start_psymtab): Remove global_psymbols and static_psymbols
15993 parameters.
15994
15995 2019-01-10 Tom Tromey <tom@tromey.com>
15996
15997 * xcoffread.c (xcoff_end_psymtab): Remove some initializations.
15998 * psymtab.c (allocate_psymtab): Add comment.
15999 * psympriv.h (allocate_psymtab): Add comment.
16000 * dwarf2read.c (dwarf2_create_include_psymtab): Remove some
16001 initializations.
16002 * dbxread.c (dbx_end_psymtab): Remove some initializations.
16003
16004 2019-01-10 Tom Tromey <tom@tromey.com>
16005
16006 * symfile.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
16007 Don't declare.
16008 * mipsread.c: Include mdebugread.h.
16009 * mdebugread.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
16010 Declare.
16011 * elfread.c: Include mdebugread.h.
16012
16013 2019-01-09 Tom Tromey <tom@tromey.com>
16014
16015 * dbxread.c (dbx_end_psymtab): Use objfile_psymtabs.
16016 * mdebugread.c (parse_partial_symbols): Use objfile_psymtabs.
16017 * psymtab.c (ALL_OBJFILE_PSYMTABS_REQUIRED): Remove.
16018 (psym_map_symtabs_matching_filename, find_pc_sect_psymtab)
16019 (psym_lookup_symbol, psym_find_last_source_symtab)
16020 (psym_forget_cached_source_info, psym_print_stats)
16021 (psym_expand_symtabs_for_function, psym_expand_all_symtabs)
16022 (psym_expand_symtabs_with_fullname, psym_map_symbol_filenames)
16023 (psym_map_matching_symbols, psym_expand_symtabs_matching)
16024 (psym_find_compunit_symtab_by_address)
16025 (maintenance_print_psymbols, maintenance_info_psymtabs)
16026 (maintenance_check_psymtabs): Use ranged for.
16027 * psymtab.h (class objfile_psymtabs): New.
16028 (require_partial_symbols): Return objfile_psymtabs.
16029 * psympriv.h (ALL_OBJFILE_PSYMTABS): Remove.
16030
16031 2019-01-09 Tom Tromey <tom@tromey.com>
16032
16033 * symfile.c (overlay_invalidate_all, find_pc_overlay)
16034 (find_pc_mapped_section, list_overlays_command)
16035 (map_overlay_command, unmap_overlay_command)
16036 (simple_overlay_update): Use all_objfiles.
16037 * spu-tdep.c (spu_overlay_update): Use all_objfiles.
16038 * printcmd.c (info_symbol_command): Use all_objfiles.
16039 * objfiles.h (ALL_OBJSECTIONS): Remove.
16040 * maint.c (maintenance_translate_address): Use all_objfiles.
16041 * gcore.c (gcore_create_callback): Use all_objfiles.
16042 (objfile_find_memory_regions): Likewise.
16043
16044 2019-01-09 Tom Tromey <tom@tromey.com>
16045
16046 * symtab.c (find_line_symtab, info_sources_command)
16047 (make_source_files_completion_list): Use objfile_compunits.
16048 * source.c (select_source_symtab): Use objfile_compunits.
16049 * objfiles.h (struct objfile): Update comment.
16050 (ALL_OBJFILES): Remove.
16051 (ALL_FILETABS): Remove.
16052 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Use
16053 objfile_compunits.
16054
16055 2019-01-09 Tom Tromey <tom@tromey.com>
16056
16057 * symmisc.c (print_objfile_statistics, dump_objfile)
16058 (maintenance_print_symbols): Use compunit_filetabs.
16059 * source.c (forget_cached_source_info_for_objfile): Use
16060 compunit_filetabs.
16061 * objfiles.h (ALL_OBJFILE_FILETABS): Remove.
16062 (ALL_FILETABS): Use compunit_filetabs.
16063 * objfiles.c (objfile_relocate1): Use compunit_filetabs.
16064 * coffread.c (coff_symtab_read): Use compunit_filetabs.
16065
16066 2019-01-09 Tom Tromey <tom@tromey.com>
16067
16068 * symtab.h (ALL_COMPUNIT_FILETABS): Remove.
16069 (compunit_filetabs): New.
16070 * symtab.c (iterate_over_some_symtabs, find_pc_sect_line): Use
16071 compunit_filetabs.
16072 (info_sources_command, make_source_files_completion_list): Remove
16073 declaration.
16074 * symmisc.c (print_objfile_statistics, dump_objfile)
16075 (maintenance_print_symbols): Remove declaration.
16076 (maintenance_info_symtabs): Use compunit_filetabs.
16077 (maintenance_info_line_tables): Likewise.
16078 * source.c (select_source_symtab): Change local variable name.
16079 (forget_cached_source_info_for_objfile): Remove declaration.
16080 * objfiles.h (ALL_OBJFILE_FILETABS): Use compunit_filetabs.
16081 * objfiles.c (objfile_relocate1): Remove declaration.
16082 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
16083 declaration.
16084 * maint.c (count_symtabs_and_blocks): Use compunit_filetabs.
16085 * coffread.c (coff_symtab_read): Remove declaration.
16086 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
16087 compunit_filetabs.
16088
16089 2019-01-09 Tom Tromey <tom@tromey.com>
16090
16091 * symtab.c (lookup_objfile_from_block)
16092 (find_pc_sect_compunit_symtab, search_symbols)
16093 (default_collect_symbol_completion_matches_break_on): Use
16094 objfile_compunits.
16095 * objfiles.h (ALL_COMPUNITS): Remove.
16096 * maint.c (count_symtabs_and_blocks): Use objfile_compunits.
16097 * cp-support.c (add_symbol_overload_list_qualified): Use
16098 objfile_compunits.
16099 * ada-lang.c (ada_collect_symbol_completion_matches)
16100 (ada_add_global_exceptions): Use objfile_compunits.
16101
16102 2019-01-09 Tom Tromey <tom@tromey.com>
16103
16104 * source.c (select_source_symtab)
16105 (forget_cached_source_info_for_objfile): Remove declaration.
16106 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
16107 declaration.
16108 * maint.c (count_symtabs_and_blocks): Remove declaration.
16109 * cp-support.c (add_symbol_overload_list_qualified): Remove
16110 declaration.
16111 * coffread.c (coff_symtab_read): Remove declaration.
16112 * symtab.c (lookup_symbol_in_objfile_symtabs)
16113 (basic_lookup_transparent_type_1): Use objfile_compunits.
16114 (lookup_objfile_from_block, find_pc_sect_compunit_symtab)
16115 (info_sources_command, search_symbols)
16116 (default_collect_symbol_completion_matches_break_on)
16117 (make_source_files_completion_list): Remove declaration.
16118 * ada-lang.c (add_nonlocal_symbols): Use objfile_compunits.
16119 (ada_collect_symbol_completion_matches)
16120 (ada_add_global_exceptions): Remove declaration.
16121 * linespec.c (iterate_over_all_matching_symtabs): Use
16122 objfile_compunits.
16123 * objfiles.h (ALL_OBJFILE_COMPUNITS): Remove.
16124 (class objfile_compunits): New.
16125 (ALL_COMPUNITS): Use objfile_compunits.
16126 * symmisc.c (print_objfile_statistics, maintenance_info_symtabs)
16127 (maintenance_check_symtabs, maintenance_info_line_tables): Use
16128 objfile_compunits.
16129 * objfiles.c (objfile_relocate1): Use objfile_compunits.
16130
16131 2019-01-09 Tom Tromey <tom@tromey.com>
16132
16133 * symtab.c (search_symbols)
16134 (default_collect_symbol_completion_matches_break_on): Use
16135 objfile_msymbols.
16136 * ada-lang.c (ada_lookup_simple_minsym)
16137 (ada_collect_symbol_completion_matches): Use objfile_msymbols.
16138 * minsyms.c (find_solib_trampoline_target): Use objfile_msymbols.
16139 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Use
16140 objfile_msymbols.
16141 * coffread.c (coff_symfile_read): Use objfile_msymbols.
16142 * symmisc.c (dump_msymbols): Use objfile_msymbols.
16143 * objc-lang.c (find_methods): Use objfile_msymbols.
16144 (info_selectors_command, info_classes_command): Likewise.
16145 * stabsread.c (scan_file_globals): Use objfile_msymbols.
16146 * objfiles.h (class objfile_msymbols): New.
16147 (ALL_OBJFILE_MSYMBOLS): Remove.
16148 (ALL_MSYMBOLS): Remove.
16149
16150 2019-01-09 Tom Tromey <tom@tromey.com>
16151
16152 * common/next-iterator.h (next_adapter): Add Iterator template
16153 parameter.
16154 * objfiles.h (ALL_OBJFILES_SAFE): Remove.
16155 (class all_objfiles_safe): New.
16156 * jit.c (jit_inferior_exit_hook): Use all_objfiles_safe.
16157 * objfiles.c (put_objfile_before): Update comment.
16158 (add_separate_debug_objfile): Likewise.
16159 (free_all_objfiles): Use all_objfiles_safe.
16160 (objfile_purge_solibs): Likewise.
16161
16162 2019-01-09 Tom Tromey <tom@tromey.com>
16163
16164 * symtab.c (iterate_over_symtabs, matching_obj_sections)
16165 (expand_symtab_containing_pc, lookup_static_symbol)
16166 (basic_lookup_transparent_type, find_pc_sect_compunit_symtab)
16167 (find_symbol_at_address, find_line_symtab, find_main_name): Use
16168 all_objfiles.
16169 * probe.c (find_probe_by_pc, collect_probes): Use all_objfiles.
16170 * breakpoint.c (create_overlay_event_breakpoint)
16171 (create_longjmp_master_breakpoint)
16172 (create_std_terminate_master_breakpoint)
16173 (create_exception_master_breakpoint): Use all_objfiles.
16174 * linux-thread-db.c (try_thread_db_load_from_pdir)
16175 (has_libpthread): Use all_objfiles.
16176 * ada-lang.c (add_nonlocal_symbols): Use all_objfiles.
16177 * linespec.c (iterate_over_all_matching_symtabs)
16178 (search_minsyms_for_name): Use all_objfiles.
16179 * maint.c (maintenance_info_sections): Use all_objfiles.
16180 * main.c (captured_main_1): Use all_objfiles.
16181 * spu-tdep.c (spu_objfile_from_frame): Use all_objfiles.
16182 * guile/scm-objfile.c (gdbscm_objfiles): Use all_objfiles.
16183 * guile/scm-pretty-print.c
16184 (ppscm_find_pretty_printer_from_objfiles): Use all_objfiles.
16185 * solib-spu.c (append_ocl_sos): Use all_objfiles.
16186 * symmisc.c (maintenance_print_symbols): Use all_objfiles.
16187 (maintenance_print_msymbols): Use all_objfiles.
16188 * source.c (select_source_symtab): Use all_objfiles.
16189 * jit.c (jit_find_objf_with_entry_addr): Use all_objfiles.
16190 * symfile.c (remove_symbol_file_command)
16191 (expand_symtabs_matching, map_symbol_filenames): Use
16192 all_objfiles.
16193 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created): Use
16194 all_objfiles.
16195 * dwarf2-frame.c (dwarf2_frame_find_fde): Use all_objfiles.
16196 * objc-lang.c (find_methods): Use all_objfiles.
16197 * objfiles.c (have_partial_symbols, have_full_symbols)
16198 (have_minimal_symbols, qsort_cmp)
16199 (default_iterate_over_objfiles_in_search_order): Use
16200 all_objfiles.
16201 * hppa-tdep.c (find_unwind_entry): Use all_objfiles.
16202 * psymtab.c (maintenance_print_psymbols): Use all_objfiles.
16203 (maintenance_check_psymtabs): Use all_objfiles.
16204 (ALL_PSYMTABS): Remove.
16205 * compile/compile-object-run.c (do_module_cleanup): Use
16206 all_objfiles.
16207 * blockframe.c (find_pc_partial_function): Use all_objfiles.
16208 * cp-support.c (add_symbol_overload_list_qualified): Use
16209 all_objfiles.
16210 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
16211 Use all_objfiles.
16212 * dwarf-index-write.c (save_gdb_index_command): Use all_objfiles.
16213 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): Use
16214 all_objfiles.
16215 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
16216 (objfpy_lookup_objfile_by_build_id): Use all_objfiles.
16217 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
16218 Uses all_objfiles.
16219 * solib.c (solib_read_symbols): Use all_objfiles
16220
16221 2019-01-09 Tom Tromey <tom@tromey.com>
16222
16223 * probe.c (parse_probes_in_pspace): Use all_objfiles.
16224 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Use
16225 all_objfiles.
16226 * objfiles.h (ALL_PSPACE_OBJFILES): Remove.
16227 * symmisc.c (print_symbol_bcache_statistics)
16228 (print_objfile_statistics, maintenance_print_objfiles)
16229 (maintenance_info_symtabs, maintenance_check_symtabs)
16230 (maintenance_expand_symtabs, maintenance_info_line_tables): Use
16231 all_objfiles.
16232 * source.c (forget_cached_source_info): Use all_objfiles.
16233 * symfile-debug.c (set_debug_symfile): Use all_objfiles.
16234 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
16235 (elf_gnu_ifunc_resolve_by_got): Use all_objfiles.
16236 * objfiles.c (update_section_map): Use all_objfiles.
16237 (shared_objfile_contains_address_p): Likewise.
16238 * psymtab.c (maintenance_info_psymtabs): Use all_objfiles.
16239 * python/py-progspace.c (pspy_get_objfiles): Use all_objfiles.
16240
16241 2019-01-09 Tom Tromey <tom@tromey.com>
16242
16243 * common/next-iterator.h: New file.
16244 * objfiles.h (class all_objfiles): New.
16245 (struct objfile_iterator): New.
16246
16247 2019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
16248
16249 * NEWS: Move the description of the changed "frame", "select-frame",
16250 and "info frame" commands to the Changed commands section.
16251
16252 2019-01-09 Simon Marchi <simon.marchi@ericsson.com>
16253
16254 * gdbtypes.c (check_stub_method_group): Remove handling of old
16255 mangling schemes.
16256 * linespec.c (find_methods): Likewise.
16257 * stabsread.c (read_member_functions): Likewise.
16258 * valops.c (search_struct_method): Likewise.
16259 (value_struct_elt_for_reference): Likewise.
16260 * NEWS: Mention this change.
16261
16262 2019-01-09 Andrew Burgess <andrew.burgess@embecosm.com>
16263
16264 * cli/cli-cmds.c (list_command): Pass a source_lines_range to
16265 print_source_lines.
16266 * source.c (print_source_lines_base): Update line number check.
16267 (print_source_lines): New function.
16268 (source_lines_range::source_lines_range): New function.
16269 * source.h (class source_lines_range): New class.
16270 (print_source_lines): New declaration.
16271
16272 2019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
16273
16274 * linespec.c (linespec_state_destructor): Free self->canonical_names.
16275
16276 2019-01-08 Tom Tromey <tom@tromey.com>
16277 Simon Marchi <simon.marchi@ericsson.com>
16278
16279 PR gdb/24060
16280 * ada-exp.y (DOLLAR_VARIABLE): Rename from SPECIAL_VARIABLE.
16281 * ada-lex.l (DOLLAR_VARIABLE): Likewise.
16282 * c-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
16283 * f-exp.y (DOLLAR_VARIABLE): Likewise.
16284 * m2-exp.y (DOLLAR_VARIABLE): Rename from INTERNAL_VAR.
16285 * p-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
16286
16287 2019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
16288
16289 * source.c (select_source_symtab): Move header comment to
16290 declaration in source.h.
16291 (forget_cached_source_info_for_objfile): Likewise.
16292 (forget_cached_source_info): Likewise.
16293 (identify_source_line): Likewise.
16294 * source.h (identify_source_line): Move declaration from symtab.h
16295 and add comment from source.c
16296 (print_source_lines): Likewise.
16297 (forget_cached_source_info_for_objfile): Likewise.
16298 (forget_cached_source_info): Likewise.
16299 (select_source_symtab): Likewise.
16300 (enum print_source_lines_flag): Move definition from symtab.h.
16301 * symtab.h (identify_source_line): Move declaration to source.h.
16302 (print_source_lines): Likewise.
16303 (forget_cached_source_info_for_objfile): Likewise.
16304 (forget_cached_source_info): Likewise.
16305 (select_source_symtab): Likewise.
16306 (enum print_source_lines_flag): Move definition to source.h.
16307 * tui/tui-hooks.c: Add 'source.h' include.
16308
16309 2019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
16310
16311 * source.c (print_source_lines_base): Handle requests to print
16312 reverse line number sequences, and guard against empty lines
16313 string.
16314
16315 2019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
16316
16317 * source.c (print_source_lines_base): Fix skip of '\r' if next
16318 character is '\n'.
16319
16320 2019-01-06 Tom Tromey <tom@tromey.com>
16321
16322 * c-exp.y (struct c_parse_state) <macro_original_text,
16323 expansion_obstack>: New member.
16324 (macro_original_text, expansion_obstack): Remove globals.
16325 (scan_macro_expansion, scanning_macro_expansion)
16326 (finished_macro_expansion): Update.
16327 (scan_macro_cleanup): Remove.
16328 (yylex, c_parse): Update.
16329
16330 2019-01-06 Tom Tromey <tom@tromey.com>
16331
16332 * c-exp.y (struct c_parse_state) <strings>: New member.
16333 (operator_stoken): Update.
16334
16335 2019-01-06 Tom Tromey <tom@tromey.com>
16336
16337 * parser-defs.h (type_ptr): Remove typedef. Don't declare VEC.
16338 (union type_stack_elt) <typelist_val>: Now a pointer to
16339 std::vector.
16340 (type_stack_cleanup): Don't declare.
16341 (push_typelist): Update.
16342 * parse.c (pop_typelist): Return a std::vector.
16343 (push_typelist): Take a std::vector.
16344 (follow_types): Update. Do not free args.
16345 (type_stack_cleanup): Remove.
16346 * c-exp.y (struct c_parse_state): New.
16347 (cpstate): New global.
16348 (type_aggregate_p, exp, ptr_operator, parameter_typelist)
16349 (nonempty_typelist): Update.
16350 (func_mod): Create a new vector.
16351 (c_parse): Create a c_parse_state.
16352 (check_parameter_typelist): Do not delete params.
16353 (function_method): Update. Do not delete type_list.
16354
16355 2019-01-06 Tom Tromey <tom@tromey.com>
16356
16357 PR gdb/28155:
16358 * python/py-finishbreakpoint.c (bpfinishpy_init): Use
16359 check_typedef.
16360 * infcmd.c (finish_command_fsm_should_stop): Use check_typedef.
16361 (print_return_value): Likewise.
16362
16363 2019-01-05 Tom Tromey <tom@tromey.com>
16364
16365 * contrib/cleanup_check.py: Remove.
16366 * contrib/gcc-with-excheck: Remove.
16367 * contrib/exsummary.py: Remove.
16368 * contrib/excheck.py: Remove.
16369
16370 2019-01-05 Joel Brobecker <brobecker@adacore.com>
16371
16372 * thread.c (delete_thread_1): Add gdb_assert that THR is not
16373 NULL. Initialize tpprev to NULL instead of assigning it
16374 to NULL on the next statement.
16375 * windows-nat.c (windows_delete_thread): Remove check for
16376 main_thread_id before printing thread exit notifications.
16377 (get_windows_debug_event) <EXIT_THREAD_DEBUG_EVENT>:
16378 Remove thread ID check against main_thread_id.
16379 <CREATE_PROCESS_DEBUG_EVENT>: Remove call to
16380 windows_delete_thread.
16381 <EXIT_PROCESS_DEBUG_EVENT>: Add call to windows_delete_thread.
16382
16383 2019-01-04 Tom Tromey <tom@tromey.com>
16384
16385 * compile/compile.c (_initialize_compile): Use upper case for
16386 metasyntactic variables.
16387 * symmisc.c (_initialize_symmisc): Use upper case for
16388 metasyntactic variables.
16389 * psymtab.c (_initialize_psymtab): Use upper case for
16390 metasyntactic variables.
16391 * demangle.c (demangle_command): Use upper case for metasyntactic
16392 variables.
16393 (_initialize_demangler): Likewise.
16394 * ax-gdb.c (_initialize_ax_gdb): Use upper case for metasyntactic
16395 variables.
16396
16397 2019-01-03 Tom Tromey <tom@tromey.com>
16398
16399 * tui/tui-source.c (tui_set_source_content): Use xstrdup.
16400
16401 2019-01-03 Tom Tromey <tom@tromey.com>
16402
16403 * python/py-symtab.c (salpy_str): Update.
16404 (struct salpy_sal_object) <symtab>: Now a PyObject.
16405 (salpy_dealloc): Update.
16406 (del_objfile_sal): Use gdbpy_ref.
16407
16408 2019-01-03 Tom Tromey <tom@tromey.com>
16409
16410 * python/py-type.c (convert_field): Use new_reference. Return
16411 gdbpy_ref.
16412 (make_fielditem): Return gdbpy_ref.
16413 (typy_fields): Update.
16414 (typy_getitem): Update.
16415 (field_name): Return gdbpy_ref. Use new_reference.
16416 (typy_iterator_iternext): Update.
16417
16418 2019-01-03 Tom Tromey <tom@tromey.com>
16419
16420 * python/py-record.c (gdbpy_stop_recording): Use Py_RETURN_NONE.
16421
16422 2019-01-03 Tom Tromey <tom@tromey.com>
16423
16424 * python/py-value.c (valpy_dealloc): Use Py_XDECREF.
16425 * python/py-type.c (typy_fields_items): Use gdbpy_ref.
16426 * python/py-progspace.c (pspy_set_printers): Use gdbpy_ref.
16427 (pspy_set_frame_filters, pspy_set_frame_unwinders)
16428 (pspy_set_type_printers): Likewise.
16429 * python/py-function.c (fnpy_init): Use gdbpy_ref.
16430 * python/py-cmd.c (cmdpy_init): Use gdbpy_ref.
16431 * python/py-objfile.c (objfpy_set_printers): Use gdbpy_ref.
16432 (objfpy_set_frame_filters, objfpy_set_frame_unwinders)
16433 (objfpy_set_type_printers): Likewise.
16434
16435 2019-01-03 Tom Tromey <tom@tromey.com>
16436
16437 * python/python.c (gdbpy_enter, ~gdbpy_enter): Update.
16438 (gdbpy_print_stack): Use gdbpy_err_fetch.
16439 * python/python-internal.h (class gdbpy_err_fetch): New class.
16440 (class gdbpy_enter) <m_error_type, m_error_value,
16441 m_error_traceback>: Remove.
16442 <m_error>: New member.
16443 (gdbpy_exception_to_string): Don't declare.
16444 * python/py-varobj.c (py_varobj_iter_next): Use gdbpy_err_fetch.
16445 * python/py-value.c (convert_value_from_python): Use
16446 gdbpy_err_fetch.
16447 * python/py-utils.c (gdbpy_err_fetch::to_string): Rename from
16448 gdbpy_exception_to_string.
16449 (gdbpy_handle_exception): Use gdbpy_err_fetch.
16450 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
16451 gdbpy_err_fetch.
16452
16453 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
16454
16455 * linux-nat.c (delete_lwp_cleanup): Delete.
16456 (struct lwp_deleter): New struct.
16457 (lwp_info_up): New typedef.
16458 (linux_nat_target::follow_fork): Delete cleanup, and make use of
16459 lwp_info_up.
16460
16461 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
16462
16463 * linux-fork.c (class scoped_switch_fork_info): New class.
16464 (inferior_call_waitpid): Update to use scoped_switch_fork_info.
16465
16466 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
16467
16468 * valops.c (find_overload_match): Remove use of null_cleanup, and
16469 calls to do_cleanups.
16470
16471 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
16472
16473 * compile/compile-cplus-types.c
16474 (compile_cplus_instance::decl_name): Handle changes to
16475 cp_func_name.
16476 * cp-support.c (cp_func_name): Update header comment, update
16477 return type.
16478 * cp-support.h (cp_func_name): Update return type in declaration.
16479 * valops.c (find_overload_match): Move temp_func local to top
16480 level of function and change its type. Use temp_func to hold and
16481 delete temporary string obtained from cp_func_name.
16482
16483 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
16484
16485 * remote.c (remote_target::remote_check_symbols): Convert `msg` to
16486 gdb::char_vector, remove cleanup, and update uses of `msg`.
16487
16488 2019-01-03 Jim Wilson <jimw@sifive.com>
16489
16490 * riscv-tdep.c (riscv_freg_feature): Drop s0 name from f8.
16491
16492 2019-01-02 Tom Tromey <tom@tromey.com>
16493
16494 * xml-tdesc.c (xml_cache): Hold a target_desc_up.
16495 (tdesc_parse_xml): Remove cleanups.
16496 * target-descriptions.h (make_cleanup_free_target_description):
16497 Don't declare.
16498 (target_desc_deleter): New struct.
16499 (target_desc_up): New typedef.
16500 * target-descriptions.c (target_desc_deleter::operator()): Rename
16501 from free_target_description.
16502 (make_cleanup_free_target_description): Remove.
16503
16504 2019-01-02 Tom Tromey <tom@tromey.com>
16505
16506 * linespec.c (struct linespec_parser): Rename from ls_parser. Add
16507 constructor, destructor.
16508 (linespec_parser): Remove typedef.
16509 (~linespec_parser): Rename from linespec_parser_delete.
16510 (linespec_lex_to_end, linespec_complete_label)
16511 (linespec_complete): Update.
16512 (decode_line_full): Remove cleanups.
16513 (decode_line_1): Update.
16514
16515 2019-01-02 Tom Tromey <tom@tromey.com>
16516
16517 * python/python-internal.h (inferior_to_inferior_object): Change
16518 return type.
16519 * python/py-exitedevent.c (create_exited_event_object): Update.
16520 * python/py-inferior.c (inferior_to_inferior_object): Return
16521 gdbpy_ref.
16522 (python_new_inferior, python_inferior_deleted)
16523 (thread_to_thread_object, delete_thread_object)
16524 (build_inferior_list, gdbpy_selected_inferior): Update.
16525 * python/py-infthread.c (create_thread_object): Update. Also fail
16526 if inferior_to_inferior_object fails.
16527
16528 2019-01-02 Simon Marchi <simon.marchi@ericsson.com>
16529
16530 * inferior.h (class inferior) <displaced_step_state>: New field.
16531 * infrun.h (struct displaced_step_state): Move here from
16532 infrun.c. Initialize fields, add constructor.
16533 <inf>: Remove field.
16534 <reset>: New method.
16535 * infrun.c (struct displaced_step_inferior_state): Move to
16536 infrun.h.
16537 (displaced_step_inferior_states): Remove.
16538 (get_displaced_stepping_state): Adust.
16539 (displaced_step_in_progress_any_inferior): Adjust.
16540 (displaced_step_in_progress_thread): Adjust.
16541 (displaced_step_in_progress): Adjust.
16542 (add_displaced_stepping_state): Remove.
16543 (get_displaced_step_closure_by_addr): Adjust.
16544 (remove_displaced_stepping_state): Remove.
16545 (infrun_inferior_exit): Call displaced_step_state.reset.
16546 (use_displaced_stepping): Don't check for NULL.
16547 (displaced_step_prepare_throw): Call
16548 get_displaced_stepping_state.
16549 (displaced_step_fixup): Don't check for NULL.
16550 (prepare_for_detach): Don't check for NULL.
16551
16552 2019-01-02 Philippe Waroquiers <philippe.waroquiers@skynet.be>
16553
16554 * infcall.c (call_function_by_hand_dummy): cleanup/destroy sm
16555 in case of call that did not complete.
16556
16557 2019-01-02 Andrey Utkin <autkin@undo.io>
16558
16559 * symfile.c (find_separate_debug_file): Fix search of debug files for
16560 remote debuggee.
16561
16562 2019-01-02 Tom Tromey <tom@tromey.com>
16563
16564 * python/py-inferior.c (gdbpy_initialize_inferior): Fix
16565 indentation.
16566 * python/py-frame.c (frapy_older): Remove cast.
16567 (frapy_newer): Likewise.
16568 * python/py-breakpoint.c (local_setattro): Remove cast.
16569 * python/py-arch.c (archpy_name): Remove local variable.
16570 * python/py-type.c (gdbpy_lookup_type): Remove cast.
16571
16572 2019-01-02 Joel Brobecker <brobecker@adacore.com>
16573
16574 * unittests/basic_string_view/element_access/char/empty.cc:
16575 Fix year range in copyright header.
16576
16577 2019-01-01 Andrew Burgess <andrew.burgess@embecosm.com>
16578
16579 * arch/riscv.h (struct riscv_gdbarch_features) <hw_float_abi>:
16580 Delete.
16581 <operator==>: Update with for removed field.
16582 <hash>: Likewise.
16583 * riscv-tdep.h (struct gdbarch_tdep) <features>: Renamed to...
16584 <isa_features>: ...this.
16585 <abi_features>: New field.
16586 (riscv_isa_flen): Update comment.
16587 (riscv_abi_xlen): New declaration.
16588 (riscv_abi_flen): New declaration.
16589 * riscv-tdep.c (riscv_isa_xlen): Update to get answer from
16590 isa_features.
16591 (riscv_abi_xlen): New function.
16592 (riscv_isa_flen): Update to get answer from isa_features.
16593 (riscv_abi_flen): New function.
16594 (riscv_has_fp_abi): Update to get answer from abi_features.
16595 (riscv_call_info::riscv_call_info): Use abi xlen and flen, not isa
16596 xlen and flen.
16597 (riscv_call_info) <xlen, flen>: Update comment.
16598 (riscv_call_arg_struct): Remove invalid assertions
16599 (riscv_features_from_gdbarch_info): Update now hw_float_abi field
16600 is removed.
16601 (riscv_gdbarch_init): Gather isa features and abi features
16602 separately, ensure both match on the gdbarch when reusing an old
16603 gdbarch. Relax an error check to allow 32-bit abi float to run on
16604 a target with 64-bit float hardware.
16605
16606 2019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
16607
16608 * source.c (search_command_helper): Stop reverse search
16609 when line 1 has been searched.
16610
16611 2019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
16612
16613 * record-full.c (record_full_base_target::close): Rewrite
16614 record_full_core_buf_list free logic.
16615
16616 2019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
16617
16618 * break-catch-syscall.c (print_one_catch_syscall): xfree
16619 the last text.
16620
16621 2019-01-01 Joel Brobecker <brobecker@adacore.com>
16622
16623 * top.c (print_gdb_version): Update Copyright year in version
16624 message.
16625
16626 2019-01-01 Joel Brobecker <brobecker@adacore.com>
16627
16628 Update copyright year range in all GDB files.
16629
16630 2019-01-01, 19 Joel Brobecker <brobecker@adacore.com>
16631
16632 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2018.
16633
16634 For older changes see ChangeLog-2018.
16635 \f
16636 Local Variables:
16637 mode: change-log
16638 left-margin: 8
16639 fill-column: 74
16640 version-control: never
16641 coding: utf-8
16642 End:
16643
This page took 0.433693 seconds and 4 git commands to generate.