Introduce program_space::add_objfile
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
7cac64af
TT
12019-12-12 Tom Tromey <tom@tromey.com>
2
3 * progspace.h (struct program_space) <add_objfile>: Declare
4 method.
5 * progspace.c (program_space::add_objfile): New method.
6 * objfiles.c (~objfile): Don't unlink objfile.
7 (put_objfile_before): Remove.
8 (add_separate_debug_objfile): Don't call put_objfile_before.
9 (objfile::make): Call add_objfile. Set new_objfiles_available on
10 the per-program-space data.
11
268e4f09
TT
122019-12-12 Tom Tromey <tom@tromey.com>
13
14 * symfile.c (syms_from_objfile_1): Use objfile_up.
15 (syms_from_objfile_1, remove_symbol_file_command): Call unlink
16 method.
17 (reread_symbols): Use objfile_up.
18 * solib.c (update_solib_list, reload_shared_libraries_1): Call
19 unlink method.
20 * objfiles.h (struct objfile) <~objfile>: Now private.
21 <unlink>: New method.
22 (struct objfile_deleter): New.
23 (objfile_up): New typedef.
24 * objfiles.c (objfile::unlink): New method.
25 (free_objfile_separate_debug, free_all_objfiles)
26 (objfile_purge_solibs): Use it.
27 * jit.c (jit_unregister_code): Remove.
28 (jit_inferior_exit_hook, jit_event_handler): Call unlink on
29 objfile.
30 * compile/compile-object-run.c (do_module_cleanup): Call unlink on
31 objfile.
32 * compile/compile-object-load.c (compile_object_load): Use
33 objfile_up.
34
f65fe570
TT
352019-12-12 Tom Tromey <tom@tromey.com>
36
37 * symfile.c (symbol_file_add_with_addrs): Pass "parent" to
38 objfile::make.
39 * objfiles.h (struct objjfile) <make>: No longer inline.
40 (add_separate_debug_objfile): Don't declare.
41 * objfiles.c (add_separate_debug_objfile): Now static.
42 (objfile::make): Move from objfiles.h. Call
43 add_separate_debug_objfile. Add "parent" parameter.
44
bda13cdc
TT
452019-12-12 Tom Tromey <tom@tromey.com>
46
47 * symfile.c (symbol_file_add_with_addrs): Use objfile::make.
48 * objfiles.h (struct objfile): Make constructor private.
49 <make>: New static method.
50 * jit.c (jit_object_close_impl): Update.
51
7190276c
SM
522019-12-12 Simon Marchi <simon.marchi@polymtl.ca>
53
54 * jit.c (jit_reader_try_read_symtab): Replace xmalloc/xfree with
55 gdb::byte_vector.
56
d61df897
TT
572019-12-12 Tom Tromey <tromey@adacore.com>
58
59 * xml-support.c (xml_fetch_content_from_file): Don't call
60 malloc_failure.
61 * utils.h (class gdb_argv): Remove malloc_failure comment.
62 * utils.c (gdb_argv::reset): Don't call malloc_failure.
63
db3ad2f0
TT
642019-12-12 Tom Tromey <tromey@adacore.com>
65
66 * Makefile.in (ALL_TARGET_OBS): Add riscv-ravenscar-thread.o.
67 (HFILES_NO_SRCDIR): Add riscv-ravenscar-thread.h.
68 (ALLDEPFILES): Add riscv-ravenscar-thread.c.
69 * configure.tgt (riscv-*-*): Add riscv-ravenscar-thread.o.
70 * riscv-ravenscar-thread.c: New file.
71 * riscv-ravenscar-thread.h: New file.
72 * riscv-tdep.c (riscv_gdbarch_init): Call
73 register_riscv_ravenscar_ops.
74
2ffe5b9c
TT
752019-12-12 Tom Tromey <tromey@adacore.com>
76
77 * gdbsupport/thread-pool.c (set_thread_name): Use
78 ATTRIBUTE_UNUSED.
79
39f34d7b
LM
802019-12-12 Luis Machado <luis.machado@linaro.org>
81
82 * gdbsupport/safe-strerror.c: Don't include diagnostics.h.
83 (select_strerror_r): Use ATTRIBUTE_UNUSED instead of the diagnostics
84 macros.
85
d4eeccfe
TT
862019-12-11 Tom Tromey <tom@tromey.com>
87
88 * tui/tui-win.c (tui_set_win_height_command): Call
89 tui_adjust_window_height.
90 (tui_adjust_win_heights, new_height_ok): Remove.
91 * tui/tui-layout.h (tui_adjust_window_height): Declare.
92 * tui/tui-layout.c (tui_adjust_window_height): New function.
93
3d979945
TT
942019-12-11 Tom Tromey <tom@tromey.com>
95
96 * tui/tui-win.c (tui_resize_all): Remove code, call
97 tui_apply_current_layout.
98
2192a9d3
TT
992019-12-11 Tom Tromey <tom@tromey.com>
100
101 * tui/tui-layout.h (tui_apply_current_layout): Declare.
102 * tui/tui-layout.c (standard_layouts, applied_layout): New
103 globals.
104 (tui_apply_current_layout): New function.
105 (show_layout): Set applied_layout. Call
106 tui_apply_current_layout.
107 (show_source_command, show_disasm_command)
108 (show_source_disasm_command, show_data)
109 (show_source_or_disasm_and_command): Remove.
110 (initialize_layouts): New function.
111 (_initialize_tui_layout): Call initialize_layouts.
112
389e7ddb
TT
1132019-12-11 Tom Tromey <tom@tromey.com>
114
115 * tui/tui-layout.h (class tui_layout_base)
116 (class tui_layout_window, class tui_layout_split): New.
117 * tui/tui-layout.c (tui_get_window_by_name)
118 (tui_layout_window::clone, tui_layout_window::apply)
119 (tui_layout_window::get_sizes, tui_layout_window::add_split)
120 (tui_layout_split::add_window, tui_layout_split::clone)
121 (tui_layout_split::get_sizes)
122 (tui_layout_split::set_weights_from_heights)
123 (tui_layout_split::adjust_size, tui_layout_split::apply): New
124 functions.
125 (tui_layout_split::add_split, tui_layout_split::add_split)
126 (tui_layout_split::set_weights_from_heights)
127 (tui_layout_split::set_weights_from_heights): New functions.
128
fb3184d8
TT
1292019-12-11 Tom Tromey <tom@tromey.com>
130
131 * tui/tui-wingeneral.c (tui_gen_win_info::make_window): Update.
132 * tui/tui-win.c (tui_adjust_win_heights, tui_resize_all): Update.
133 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
134 * tui/tui-data.h (struct tui_point): Remove.
135 (struct tui_gen_win_info) <origin>: Remove.
136 <x, y>: New fields.
137 * tui/tui-command.c (tui_cmd_window::resize): Update.
138
dc7ff8a6
TT
1392019-12-11 Tom Tromey <tom@tromey.com>
140
141 * tui/tui-stack.h (struct tui_locator_window) <min_height>:
142 Implement.
143 * tui/tui-regs.h (struct tui_data_item_window) <min_height>:
144 Implement.
145 * tui/tui-data.h (struct tui_gen_win_info) <min_height>: New
146 method.
147 (struct tui_win_info) <min_height>: Implement.
148
1431937b
TT
1492019-12-11 Tom Tromey <tom@tromey.com>
150
151 * tui/tui-data.h (struct tui_gen_win_info) <can_box>: New method.
152 (struct tui_win_info) <can_box>: Update.
153
c8ec2f43
TT
1542019-12-11 Tom Tromey <tom@tromey.com>
155
156 * tui/tui-stack.h (struct tui_locator_window) <max_height>: New
157 method.
158 * tui/tui-regs.h (struct tui_data_item_window) <max_height>: New
159 method.
160 * tui/tui-data.h (struct tui_gen_win_info) <max_height>: New
161 method.
162 (struct tui_win_info) <max_height>: Now override.
163
4decd62b
JB
1642019-12-11 Joel Brobecker <brobecker@adacore.com>
165
166 * NEWS: Create a new section for the next release branch.
167 Rename the section of the current branch, now that it has
168 been cut.
169
d746744e
JB
1702019-12-11 Joel Brobecker <brobecker@adacore.com>
171
172 GDB 9 branch created (27f7b2f64062ac9e52afc60509263c2702a9ebd0):
173 * version.in: Bump version to 10.0.50.DATE-git.
174
2e744276
TT
1752019-12-11 Tom Tromey <tromey@adacore.com>
176
177 PR build/25268:
178 * gdbsupport/thread-pool.c (set_thread_name): New function.
179 (thread_pool::set_thread_count): Don't call pthread_setname_np.
180 (thread_pool::thread_function): Call set_thread_name.
181
aac4760f
TT
1822019-12-11 Tom Tromey <tromey@adacore.com>
183
184 * fbsd-tdep.c (fbsd_core_info_proc_status): Cast result of
185 bfd_get_signed_8.
186
d8edc8b7
PW
1872019-12-11 Philippe Waroquiers <philippe.waroquiers@skynet.be>
188
189 * NEWS: Document -raw-values option and the related setting commands.
190 * printcmd.c (print_command_parse_format): Do not set opts->raw off,
191 only set it on when /r is given.
192 * valprint.c (value_print_option_defs): New element raw-values.
193 * Makefile.in: Add the new file.
194
cb511130
CB
1952019-12-10 Christian Biesinger <cbiesinger@google.com>
196
197 * gdbsupport/safe-strerror.c: Supress the unused function warning
198 for select_strerror_r.
199
ab7d13f0
CB
2002019-12-10 Christian Biesinger <cbiesinger@google.com>
201
202 * config.in: Regenerate.
203 * configure: Regenerate.
204 * gdbsupport/agent.c (gdb_connect_sync_socket): Call
205 safe_strerror instead of strerror.
206 * gdbsupport/common.m4: Don't check for strerror.
207 * gdbsupport/safe-strerror.c: Support both the glibc version
208 of strerror_r and the XSI version.
209
6c71eb7d
TT
2102019-12-10 Tom Tromey <tromey@adacore.com>
211
212 * ada-typeprint.c (print_choices): Use a single "?".
213 (print_variant_part): Print "?" if the discriminant name
214 is not known.
215
bac7c5cf
GB
2162019-12-10 George Barrett <bob@bob131.so>
217
218 Fix scripted probe breakpoints.
219 * breakpoint.c (tracepoint_probe_breakpoint_ops): Move
220 declaration forward.
221 (breakpoint_ops_for_event_location_type)
222 (breakpoint_ops_for_event_location): Add function definitions.
223 (break_command_1, trace_command): Use
224 breakpoint_ops_for_event_location.
225 * breakpoint.h (breakpoint_ops_for_event_location): Add function
226 declarations.
227 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Use
228 breakpoint_ops_for_event_location.
229 * python/py-breakpoint.c (bppy_init): Use
230 breakpoint_ops_for_event_location.
231
330f1d38
TBA
2322019-12-09 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
233
234 * gdbtypes.c (rank_one_type): Return INCOMPATIBLE_TYPE_BADNESS
235 when ranking an lvalue argument for an rvalue parameter.
236
b1f0c0b9
WA
2372019-12-08 Wataru Ashihara <wataash@wataash.com>
238
239 * darwin-nat.c (darwin_nat_target::create_inferior): Fix
240 template argument for scoped_restore_tmpl from bool to int.
241
aa2d5a42
KS
2422019-12-07 Keith Seitz <keiths@redhat.com>
243
244 * build-id.c (build_id_bfd_get): Permit bfd_core, too.
245 (build_id_to_debug_bfd): Make static, rewriting to use
246 build_id_to_bfd_suffix.
247 (build_id_to_bfd_suffix): Copy of build_id_to_debug_bfd,
248 adding `suffix' parameter. Append SUFFIX to file names
249 when searching for matching files.
250 (build_id_to_debug_bfd): Use build_id_to_bfd_suffix.
251 (build_id_to_exec_bfd): Likewise.
252 * build-id.h (build_id_to_debug_bfd): Clarify that function
253 searches for BFD of debug info file.
254 (build_id_to_exec_bfd): Declare.
255 * corelow.c: Include build-id.h.
256 (locate_exec_from_corefile_build_id): New function.
257 (core_target_open): If no executable BFD is found,
258 search for a core file BFD using build-id.
259
dfb65191
CB
2602019-12-06 Christian Biesinger <cbiesinger@google.com>
261
262 * bcache.c: Put in namespace gdb.
263 * bcache.h: Likewise.
264 * gdbtypes.c (check_types_worklist): Update.
265 (types_deeply_equal): Update.
266 * macrotab.c (struct macro_table) <bcache>: Update.
267 (new_macro_table): Update.
268 * macrotab.h (struct bcache): Put this forward declaration
269 inside namespace gdb.
270 (new_macro_table): Update.
271 * objfiles.h (struct objfile_per_bfd_storage) <filename_cache>:
272 Update.
273 <macro_cache>: Update.
274 * psymtab.h: (psymtab_storage) <psymbol_cache>: Update.
275
93e55f0a
TV
2762019-12-06 Tom de Vries <tdevries@suse.de>
277
278 PR symtab/24971
279 * block.c (best_symbol, better_symbol): New function.
280 (block_lookup_symbol_primary, block_lookup_symbol): Prefer def over
281 decl.
282
06acc08f
TBA
2832019-12-06 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
284
285 * gdbtypes.h: Define the REFERENCE_SEE_THROUGH_BADNESS value.
286 * gdbtypes.c (rank_one_type): Use REFERENCE_SEE_THROUGH_BADNESS
287 for ranking see-through reference cases.
288
e0fad1ea
PW
2892019-12-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
290 * stack.c (faas_command): Check a command is provided.
291 * thread.c (taas_command, tfaas_command): Likewise.
292
908641f5
PW
2932019-12-05 Philippe Waroquiers <philippe.waroquiers@skynet.be>
294 * inferior.c (prune_inferiors): Only call delete_inferior,
295 Do not modify the inferior list.
296
b858499d
SM
2972019-12-05 Simon Marchi <simon.marchi@polymtl.ca>
298
299 * c-exp.y: Update calls to lookup_typename,
300 lookup_signed_typename and lookup_unsigned_typename.
301 * c-lang.c (evaluate_subexp_c): Likewise.
302 * cp-namespace.c (cp_lookup_symbol_imports_or_template):
303 Likewise.
304 * eval.c (binop_promote): Likewise.
305 * gdbtypes.c (lookup_typename): Remove gdbarch parameter.
306 (lookup_unsigned_typename): Likewise.
307 (lookup_signed_typename): Likewise.
308 * gdbtypes.h (lookup_unsigned_typename): Likewise.
309 (lookup_signed_typename): Likewise.
310 (lookup_typename): Likewise.
311 * guile/scm-type.c (tyscm_lookup_typename): Update calls to
312 lookup_typename, lookup_signed_typename,
313 lookup_unsigned_typename.
314 * m2-exp.y: Likewise.
315 * printcmd.c (printf_wide_c_string): Likewise.
316 (ui_printf): Likewise.
317 * python/py-type.c (typy_lookup_typename): Likewise.
318 * python/py-xmethods.c (python_xmethod_worker::invoke):
319 Likewise.
320 * rust-exp.y: Likewise.
321
3a8fa228
CB
3222019-12-04 Christian Biesinger <cbiesinger@google.com>
323
324 * configure.nat (obsd64): Add missing files x86-nat.o and
325 nat/x86-dregs.o.
326
2dbc041e
TT
3272019-12-04 Tom Tromey <tom@tromey.com>
328
329 * valprint.c (val_print_string): Use metadata_style.
330 * go-valprint.c (print_go_string): Use metadata style.
331 * p-valprint.c (pascal_object_print_static_field): Use metadata
332 style.
333 * cp-valprint.c (cp_print_static_field): Use metadata style.
334
36c8fb93
AB
3352019-12-04 Andrew Burgess <andrew.burgess@embecosm.com>
336 Chris January <chris.january@arm.com>
337
338 * f-exp.y (COMPLEX_KEYWORD, SINGLE, DOUBLE, PRECISION): New
339 tokens.
340 (typebase): New patterns for complex, single/double precision, and
341 single/double complex.
342 (f77_keywords): Change token for complex keyword, and add single,
343 double, and precision keywords.
344
c6170c2c
SM
3452019-12-04 Simon Marchi <simon.marchi@polymtl.ca>
346
347 * avr-tdep.c (_initialize_avr_tdep): Improve help of command
348 "info io_registers".
349
894ecaf4
SM
3502019-12-04 Simon Marchi <simon.marchi@polymtl.ca>
351
352 * regcache.c (cooked_read_test): Initialize thread list of
353 mock_inferior.
354
be155ebb
SM
3552019-12-04 Simon Marchi <simon.marchi@polymtl.ca>
356
357 * aarch64-linux-tdep.c: Remove includes.
358
c577cdd7
SM
3592019-12-04 Simon Marchi <simon.marchi@polymtl.ca>
360
361 * aarch64-tdep.c: Remove includes.
362
610cfd61
SM
3632019-12-04 Simon Marchi <simon.marchi@efficios.com>
364
365 * filtered-iterator.h (filtered_iterator) <operator==,
366 operator!=>: Compare wrapped iterators, not wrapped pointers.
367 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
368 unittests/filtered_iterator-selftests.c.
369 * unittests/filtered_iterator-selftests.c: New file.
370
a05cf17a
TT
3712019-12-04 Tom Tromey <tromey@adacore.com>
372
373 * gdbtypes.c (create_range_type): Inherit endianity
374 from base type.
375
d5a22e77
TT
3762019-12-04 Tom Tromey <tromey@adacore.com>
377
378 * ada-lang.c (decode_constrained_packed_array)
379 (ada_value_assign, value_assign_to_component): Update.
380 * dwarf2loc.c (rw_pieced_value, access_memory)
381 (dwarf2_compile_expr_to_ax): Update.
382 * dwarf2read.c (dwarf2_add_field): Update.
383 * eval.c (evaluate_subexp_standard): Update.
384 * gdbarch.c, gdbarch.h: Rebuild.
385 * gdbarch.sh (bits_big_endian): Remove.
386 * gdbtypes.h (union field_location): Update comment.
387 * target-descriptions.c (make_gdb_type): Update.
388 * valarith.c (value_bit_index): Update.
389 * value.c (struct value) <bitpos>: Update comment.
390 (unpack_bits_as_long, modify_field): Update.
391 * value.h (value_bitpos): Update comment.
392
7ab4a236
TT
3932019-12-04 Tom Tromey <tromey@adacore.com>
394
395 * gdbtypes.c (type_byte_order): Move earlier. Assert for unknown
396 endian-ness.
397
103a685e
TT
3982019-12-04 Tom Tromey <tromey@adacore.com>
399
400 * dwarf2read.c (dwarf2_init_float_type)
401 (dwarf2_init_complex_target_type): Add byte_order parameter.
402 (read_base_type): Compute byte order earlier.
403 * gdbtypes.c (init_float_type): Add byte_order parameter.
404 * gdbtypes.h (init_float_type): Add byte_order parameter.
405
7a9e9f9f
TT
4062019-12-04 Tom Tromey <tromey@adacore.com>
407
408 * unittests/tui-selftests.c: Conditionally include tui-winsource.h.
409
feee869b
TT
4102019-12-04 Tom Tromey <tromey@adacore.com>
411
412 * dwarf2read.c (process_structure_scope): Initialize
413 "discr_offset".
414
c2512106
AB
4152019-12-04 Andrew Burgess <andrew.burgess@embecosm.com>
416
417 * mi/mi-symbol-cmds.c (mi_symbol_info): Take extra parameter, and
418 add it into the search spec.
419 (parse_max_results_option): New function.
420 (mi_info_functions_or_variables): Parse -max-results flag and pass
421 it to mi_symbol_info.
422 (mi_cmd_symbol_info_modules): Likewise.
423 (mi_cmd_symbol_info_types): Likewise.
424 * symtab.c (global_symbol_searcher::add_matching_symbols): Change
425 return type to bool, change result container into a set, and don't
426 add new results if we have enough already.
427 (global_symbol_searcher::add_matching_msymbols): Change return
428 type to bool, and don't add new results if we have enough already.
429 (sort_search_symbols_remove_dups): Delete.
430 (global_symbol_searcher::search): Early exit from search loop when
431 we have enough results. Use a std::set to collect the results
432 from calling add_matching_symbols.
433 * symtab.h (global_symbol_searcher) <set_max_seach_results>: New
434 member function.
435 (global_symbol_searcher) <m_max_search_results>: New member
436 variable.
437 (global_symbol_searcher) <add_matching_symbols>: Update header
438 comment and change return type to bool.
439 (global_symbol_searcher) <add_matching_msymbols>: Update header
440 comment and change return type to bool.
441
f97a63c5
AB
4422019-12-04 Andrew Burgess <andrew.burgess@embecosm.com>
443
444 * symtab.c (symbol_search::compare_search_syms): Update header
445 comment.
446 (global_symbol_searcher::is_suitable_msymbol): New function.
447 (global_symbol_searcher::expand_symtabs): New function.
448 (global_symbol_searcher::add_matching_symbols): New function.
449 (global_symbol_searcher::add_matching_msymbols): New function.
450 (global_symbol_searcher::search): Move most of the content
451 into the new functions above, and call them as needed.
452 * symtab.h (global_symbol_searcher) <expand_symtabs>: New member
453 function.
454 (global_symbol_searcher) <add_matching_symbols>: New member
455 function.
456 (global_symbol_searcher) <add_matching_msymbols>: New member
457 function.
458 (global_symbol_searcher) <is_suitable_msymbol>: New member
459 function.
460
293b38d6
AB
4612019-12-04 Andrew Burgess <andrew.burgess@embecosm.com>
462
463 * mi/mi-cmds.c (mi_cmds): Add -symbol-info-module-functions and
464 -symbol-info-module-variables entries.
465 * mi/mi-cmds.h (mi_cmd_symbol_info_module_functions): Declare.
466 (mi_cmd_symbol_info_module_variables): Declare.
467 * mi/mi-symbol-cmds.c
468 (module_symbol_search_iterator): New typedef.
469 (output_module_symbols_in_single_module_and_file): New function.
470 (output_module_symbols_in_single_module): New function.
471 (mi_info_module_functions_or_variables): New function.
472 (mi_cmd_symbol_info_module_functions): New function.
473 (mi_cmd_symbol_info_module_variables): New function.
474 * NEWS: Mention new MI command.
475
4cbd39b2
CB
4762019-12-03 Christian Biesinger <cbiesinger@google.com>
477
478 * bcache.c (hash): Remove.
479 (hash_continue): Remove.
480 * bcache.h (hash): Remove.
481 (hash_continue): Remove.
482 (struct bcache) <ctor>: Update.
483 * psymtab.c (psymbol_hash): Update.
484 * stabsread.c (hashname): Update.
485 * utils.h (fast_hash): Add an argument for a start value,
486 defaulting to zero.
487
82f910ea
PW
4882019-12-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
489 * symtab.c (symbol_cache_clear_slot): Move close to cleared type.
490 (destroy_block_symbol_cache): New function.
491 (symbol_cache:~symbol_cache) Call destroy_block_symbol_cache.
492 (resize_symbol_cache): Likewise.
493
de2396d0
TT
4942019-12-02 Tom Tromey <tom@tromey.com>
495
496 * unittests/tui-selftests.c (run_tests): Make conditional.
497 (_initialize_tui_selftest): Make conditional.
498
638d85bc
CB
4992019-12-02 Christian Biesinger <cbiesinger@google.com>
500
501 * aix-thread.c (debug_aix_thread): Change type to bool.
502
7532a164
LM
5032019-12-02 Luis Machado <luis.machado@linaro.org>
504
505 * infrun.c (follow_fork_inferior): Remove outdated FIXME comment.
506
216a7e6b
AB
5072019-12-01 Andrew Burgess <andrew.burgess@embecosm.com>
508
509 * dwarf2read.c (read_tag_string_type): Read the fields required to
510 make a dynamic string, and possibly create a dynamic range for the
511 string.
512 (attr_to_dynamic_prop): Setup is_reference based on the type of
513 attribute being processed.
514 * gdbtypes.c (is_dynamic_type_internal): Handle TYPE_CODE_STRING.
515 (resolve_dynamic_array): Rename to...
516 (resolve_dynamic_array_or_string): ...this, update header comment,
517 and accept TYPE_CODE_STRING.
518 (resolve_dynamic_type_internal): Handle TYPE_CODE_STRING.
519
11a8b164
AB
5202019-12-01 Andrew Burgess <andrew.burgess@embecosm.com>
521
522 * dwarf2read.c (dwarf2_per_cu_int_type): New function, takes most
523 of its implementation from...
524 (dwarf2_per_cu_addr_sized_int_type): ...here, which now just calls
525 the new function.
526
5bbd8269
AB
5272019-12-01 Andrew Burgess <andrew.burgess@embecosm.com>
528
529 * dwarf2read.c (read_subrange_type): Read bit and byte stride and
530 create a range with stride where appropriate.
531 * f-valprint.c: Include 'gdbarch.h'.
532 (f77_print_array_1): Take the stride into account when walking the
533 array. Also convert the stride into addressable units.
534 * gdbtypes.c (create_range_type): Initialise the stride to
535 constant zero.
536 (create_range_type_with_stride): New function, initialise the
537 range as normal, and then setup the stride.
538 (has_static_range): Include the stride here. Also change the
539 return type to bool.
540 (create_array_type_with_stride): Consider the range stride if the
541 array isn't given its own stride.
542 (resolve_dynamic_range): Resolve the stride if needed.
543 * gdbtypes.h (struct range_bounds) <stride>: New member variable.
544 (struct range_bounds) <flag_is_byte_stride>: New member variable.
545 (TYPE_BIT_STRIDE): Define.
546 (TYPE_ARRAY_BIT_STRIDE): Define.
547 (create_range_type_with_stride): Declare.
548 * valarith.c (value_subscripted_rvalue): Take range stride into
549 account when walking the array.
550
82e3b564
TT
5512019-12-01 Tom Tromey <tom@tromey.com>
552
553 * tui/tui-win.c (tui_all_windows_info): Treat inactive TUI
554 specially.
555
517d261d
TT
5562019-12-01 Tom Tromey <tom@tromey.com>
557
558 * tui/tui-winsource.c (tui_copy_source_line): Don't advance past
559 \0.
560 * unittests/tui-selftests.c: New file.
561 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add tui-selftests.c.
562
484c9b64
TT
5632019-12-01 Tom Tromey <tom@tromey.com>
564
565 * tui/tui.c (tui_enable): Call tui_update_variables earlier.
566
a2a7af0c
TT
5672019-12-01 Tom Tromey <tom@tromey.com>
568
569 * NEWS: Document new settings.
570 * tui/tui-wingeneral.c (box_win): Apply appropriate border style.
571 * tui/tui-win.c (_initialize_tui_win): Add border style
572 observers.
573 * tui/tui-io.h (tui_apply_style): Declare.
574 * tui/tui-io.c (tui_apply_style): Rename from apply_style. No
575 longer static.
576 (apply_ansi_escape, tui_set_reverse_mode): Update.
577 * cli/cli-style.h (class cli_style_option) <add_setshow_commands>:
578 Add "skip_intensity" parameter.
579 <changed>: New member.
580 <do_set_value>: Declare.
581 (tui_border_style, tui_active_border_style): Declare.
582 * cli/cli-style.c (tui_border_style, tui_active_border_style): New
583 globals.
584 (cli_style_option): Initialize "changed".
585 (cli_style_option::do_set_value): New function.
586 (cli_style_option::add_setshow_commands): Add "skip_intensity"
587 parameter. Update.
588 (STYLE_ADD_SETSHOW_COMMANDS): Add "SKIP" parameter.
589 (_initialize_cli_style): Update. Create TUI border style
590 commands.
591
d1da6b01
TT
5922019-12-01 Tom Tromey <tom@tromey.com>
593
594 * tui/tui-winsource.h (tui_copy_source_line): Add "ndigits"
595 parameter.
596 * tui/tui-winsource.c (tui_copy_source_line): Add "ndigits"
597 parameter.
598 * tui/tui-win.h (compact_source): Declare.
599 * tui/tui-win.c (compact_source): New global.
600 (tui_set_compact_source, tui_show_compact_source): New functions.
601 (_initialize_tui_win): Add "compact-source" setting.
602 * tui/tui-source.c (tui_source_window::set_contents): Handle
603 compact_source setting.
604 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
605 * NEWS: Document new setting.
606
489dbda6
TT
6072019-11-30 Tom Tromey <tom@tromey.com>
608
609 * dwarf2read.c (dwarf2_add_field): Include field offset when
610 computing variant part length.
611
bf498525
PW
6122019-11-30 Philippe Waroquiers <philippe.waroquiers@skynet.be>
613 * NEWS: Mention define-prefix. Tell that command names can now
614 contain a . character.
615
be09caf1
PW
6162019-11-30 Philippe Waroquiers <philippe.waroquiers@skynet.be>
617
618 * command.h (valid_cmd_char_p): Declare.
619 * cli/cli-decode.c (valid_cmd_char_p): New function factorizing
620 the check of valid command char.
621 (find_command_name_length, valid_user_defined_cmd_name_p): Use
622 valid_cmd_char_p.
623 * cli/cli-script.c (validate_comname): Likewise.
624 * completer.c (gdb_completer_command_word_break_characters):
625 Do not remove . from the word break char, update comments.
626 (complete_line_internal_1): Use valid_cmd_char_p.
627 * guile/scm-cmd.c (gdbscm_parse_command_name): Likewise.
628 * python/py-cmd.c (gdbpy_parse_command_name): Likewise.
629
c6ac7fc9
PW
6302019-11-30 Philippe Waroquiers <philippe.waroquiers@skynet.be>
631
632 * cli/cli-script.c (do_define_command): Ensure a redefined
633 prefix command is kept as a prefix command.
634 (define_prefix_command): New function.
635 (show_user_1): Report user defined prefixes.
636 (_initialize_cli_script): Create the new 'define-prefix' command.
637 Add completers for 'define' and 'document'.
638 * top.c (execute_command): If command is a user-defined prefix only
639 command, report the list of commands for this prefix command.
640
a992a3b0
TBA
6412019-11-29 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
642
643 * valops.c (find_oload_champ): Improve debug output.
644
e9194a1a
TBA
6452019-11-29 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
646
647 * valops.c (find_oload_champ): Print part of debug messages
648 before the badness vector is std::move'd.
649
53a008a6
TT
6502019-11-28 Tom Tromey <tom@tromey.com>
651
652 * value.c (creal_internal_fn): Fix comment.
653
bab05c83
TT
6542019-11-28 Tom Tromey <tom@tromey.com>
655
656 * gdbtypes.h (struct range_bounds) <flag_upper_bound_is_count,
657 flag_bound_evaluated>: Now unsigned.
658
2522f049
TT
6592019-11-28 Tom Tromey <tom@tromey.com>
660
661 * guile/guile-internal.h (vlscm_scm_from_value_unsafe): Don't
662 declare.
663
38b49e22
MS
6642019-11-28 Mihails Strasuns <mihails.strasuns@intel.com>
665
666 * jit.c (jit_bfd_try_read_symtab): Fix printed function name in the
667 debug output.
668 * jit.c (jit_unregister_code): Add debug print to match
669 `jit_register_code`.
670
35125921
CB
6712019-11-27 Christian Biesinger <cbiesinger@google.com>
672
673 * NEWS: Mention the new multithreaded symbol loading.
674
62e77f56
CB
6752019-11-27 Christian Biesinger <cbiesinger@google.com>
676
677 * maint.c (n_worker_threads): Default to 0.
678 (worker_threads_disabled): New function.
679 * maint.h (worker_threads_disabled): New function.
680 * minsyms.c (minimal_symbol_reader::record_full): Call symbol_set_names
681 here if worker_threads_disabled () is true.
682 (minimal_symbol_reader::install): Skip all threading if
683 worker_threads_disabled () is true.
684
f29d7f6b
CB
6852019-11-27 Christian Biesinger <cbiesinger@google.com>
686
687 * minsyms.c (add_minsym_to_hash_table): Use a previously computed
688 hash code if possible.
689 (add_minsym_to_demangled_hash_table): Likewise.
690 (minimal_symbol_reader::install): Compute the hash codes for msymbol
691 on the background thread.
692 * symtab.h (struct minimal_symbol) <hash_value, demangled_hash_value>:
693 Add these fields.
694
e76b2246
CB
6952019-11-27 Christian Biesinger <cbiesinger@google.com>
696
697 * minsyms.c (minimal_symbol_reader::install): Also compute the hash
698 of the mangled name on the background thread.
699 * symtab.c (symbol_set_names): Allow passing in the hash of the
700 linkage_name.
701 * symtab.h (symbol_set_names): Likewise.
702
8d9a2568
KB
7032019-11-27 Kevin Buettner <kevinb@redhat.com>
704
705 * dwarf2read.c (inherit_abstract_dies): Ensure that delayed
706 physnames are computed for inherited DIEs.
707
fad03f6e
TT
7082019-11-27 Tom Tromey <tromey@adacore.com>
709
710 * dwarf2read.h (struct dwarf2_per_objfile): Remove unnecessary
711 backslashes.
712 * cp-support.c: Remove unnecessary backslashes.
713
43678b0a
CB
7142019-11-27 Christian Biesinger <cbiesinger@google.com>
715
716 * ada-exp.y (write_ambiguous_var): Replace SYMBOL_SET_LINKAGE_NAME
717 with sym->set_linkage_name.
718 * coffread.c (coff_read_enum_type): Likewise.
719 * mdebugread.c (parse_symbol): Likewise.
720 * stabsread.c (patch_block_stabs): Likewise.
721 (define_symbol): Likewise.
722 (read_enum_type): Likewise.
723 (common_block_end): Likewise.
724 * symtab.h (struct general_symbol_info) <set_linkage_name>: New
725 function.
726 (SYMBOL_SET_LINKAGE_NAME): Remove.
727 * xcoffread.c (process_xcoff_symbol): Replace SYMBOL_SET_LINKAGE_NAME
728 with sym->set_linkage_name.
729
db5960b4
AB
7302019-11-27 Andrew Burgess <andrew.burgess@embecosm.com>
731
732 * mi/mi-cmds.c (mi_cmds): Add 'symbol-info-modules' entry.
733 * mi/mi-cmds.h (mi_cmd_symbol_info_modules): Declare.
734 * mi/mi-symbol-cmds.c (mi_cmd_symbol_info_modules): New function.
735 * NEWS: Mention new MI command.
736
7dc42066
AB
7372019-11-27 Andrew Burgess <andrew.burgess@embecosm.com>
738
739 * mi/mi-cmds.c (mi_cmds): Add '-symbol-info-functions',
740 '-symbol-info-types', and '-symbol-info-variables'.
741 * mi/mi-cmds.h (mi_cmd_symbol_info_functions): Declare.
742 (mi_cmd_symbol_info_types): Declare.
743 (mi_cmd_symbol_info_variables): Declare.
744 * mi/mi-symbol-cmds.c: Add 'source.h' and 'mi-getopt.h' includes.
745 (output_debug_symbol): New function.
746 (output_nondebug_symbol): New function.
747 (mi_symbol_info): New function.
748 (mi_info_functions_or_variables): New function.
749 (mi_cmd_symbol_info_functions): New function.
750 (mi_cmd_symbol_info_types): New function.
751 (mi_cmd_symbol_info_variables): New function.
752 * NEWS: Mention new commands.
753
5f512a7d
AB
7542019-11-27 Andrew Burgess <andrew.burgess@embecosm.com>
755
756 * symtab.c (symbol_to_info_string): New function, most content
757 moved from print_symbol_info, but updated to return a std::string.
758 (print_symbol_info): Update to use symbol_to_info_string and print
759 returned string.
760 * symtab.h (symbol_to_info_string): Declare new function.
761
470c0b1c
AB
7622019-11-27 Andrew Burgess <andrew.burgess@embecosm.com>
763
764 * python/python.c (gdbpy_rbreak): Convert to using
765 global_symbol_searcher.
766 * symtab.c (file_matches): Convert return type to bool, change
767 file list to std::vector, update header comment.
768 (search_symbols): Rename to...
769 (global_symbol_searcher::search): ...this and update now its
770 a member function of global_symbol_searcher. Take account of the
771 changes to file_matches.
772 (symtab_symbol_info): Convert to using global_symbol_searcher.
773 (rbreak_command): Likewise.
774 (search_module_symbols): Likewise.
775 * symtab.h (enum symbol_search): Update comment.
776 (search_symbols): Remove declaration.
777 (class global_symbol_searcher): New class.
778
57357d9d
TT
7792019-11-26 Tom Tromey <tromey@adacore.com>
780
781 * cp-support.c (_initialize_cp_support): Conditionally initialize
782 gdb_demangle_attempt_core_dump.
783
3ea16160
TT
7842019-11-26 Tom Tromey <tom@tromey.com>
785
786 * python/py-function.c (fnpy_init): Update.
787 * value.h (add_internal_function): Adjust declaration.
788 * value.c (function_destroyer): Remove.
789 (do_add_internal_function): Don't set destroyer or copy name.
790 (add_internal_function): Take unique_xmalloc_ptr<char> for name.
791 Set name_allocated.
792 * python/py-cmd.c (cmdpy_destroyer): Don't free "name".
793 (cmdpy_init): Set name_allocated.
794 * cli/cli-decode.h (struct cmd_list_element) <name_allocated>: New
795 member.
796 (~cmd_list_element): Free "name" if needed.
797
1a6d41c6
TT
7982019-11-26 Tom Tromey <tom@tromey.com>
799
800 * value.h (add_internal_function): Add new overload. Move
801 documentation from value.h.
802 * value.c (do_add_internal_function): New function.
803 (add_internal_function): Use it. Add new overload.
804 (function_destroyer): Don't free doc.
805 * python/py-function.c (fnpy_init): Update.
806
8318f3c3
TT
8072019-11-26 Tom Tromey <tom@tromey.com>
808
809 * python/py-cmd.c (cmdpy_destroyer): Don't free "doc".
810 (cmdpy_init): Set "doc_allocated".
811
4da8c3a8
TT
8122019-11-26 Tom Tromey <tom@tromey.com>
813
814 * gdbsupport/thread-pool.c (thread_pool::set_thread_count): Set
815 name of worker thread.
816 * gdbsupport/common.m4 (GDB_AC_COMMON): Check for
817 pthread_setname_np.
818 * configure, config.in: Rebuild.
819
971db5e2
TT
8202019-11-26 Tom Tromey <tom@tromey.com>
821
822 * python/python.c (class gdbpy_gil): New.
823 (struct gdbpy_event): Add constructor, destructor, operator().
824 (gdbpy_post_event): Use run_on_main_thread.
825 (gdbpy_initialize_events): Remove.
826 (do_start_initialization): Update.
827
22138db6
TT
8282019-11-26 Tom Tromey <tom@tromey.com>
829
830 * NEWS: Add entry.
831 * maint.c (_initialize_maint_cmds): Add "worker-threads" maint
832 commands. Call update_thread_pool_size.
833 (update_thread_pool_size, maintenance_set_worker_threads): New
834 functions.
835 (n_worker_threads): New global.
836
d55c9a68
TT
8372019-11-26 Christian Biesinger <cbiesinger@google.com>
838 Tom Tromey <tom@tromey.com>
839
840 * minsyms.c (minimal_symbol_reader::install): Use
841 parallel_for_each.
842 * gdbsupport/parallel-for.h: New file.
843 * Makefile.in (HFILES_NO_SRCDIR): Add gdbsupport/parallel-for.h.
844
a0b57563
CB
8452019-11-26 Christian Biesinger <cbiesinger@google.com>
846 Tom Tromey <tom@tromey.com>
847
848 * gdbsupport/thread-pool.h: New file.
849 * gdbsupport/thread-pool.c: New file.
850 * Makefile.in (COMMON_SFILES): Add thread-pool.c.
851 (HFILES_NO_SRCDIR): Add thread-pool.h.
852
3b3978bc
TT
8532019-11-26 Tom Tromey <tom@tromey.com>
854
855 * event-top.h (thread_local_segv_handler): Declare.
856 * event-top.c (thread_local_segv_handler): New global.
857 (install_handle_sigsegv, handle_sigsegv): New functions.
858 (async_init_signals): Install SIGSEGV handler.
859 * cp-support.c (gdb_demangle_jmp_buf): Change type. Now
860 thread-local.
861 (report_failed_demangle): New function.
862 (gdb_demangle): Make core_dump_allowed atomic. Remove signal
863 handler-setting code, instead use segv_handler. Run warning code
864 on main thread.
865
9411c49e
TT
8662019-11-26 Tom Tromey <tom@tromey.com>
867
868 * run-on-main-thread.c: New file.
869 * run-on-main-thread.h: New file.
870 * unittests/main-thread-selftests.c: New file.
871 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
872 main-thread-selftests.c.
873 (HFILES_NO_SRCDIR): Add run-on-main-thread.h.
874 (COMMON_SFILES): Add run-on-main-thread.c.
875
c3efb965
TT
8762019-11-26 Tom Tromey <tom@tromey.com>
877
878 * main.c (setup_alternate_signal_stack): Remove.
879 (captured_main_1): Use gdb::alternate_signal_stack.
880 * gdbsupport/alt-stack.h: New file.
881
21987b9c
TT
8822019-11-26 Tom Tromey <tom@tromey.com>
883
884 * gdbsupport/signals-state-save-restore.c (original_signal_mask):
885 Remove comment.
886 (save_original_signals_state, restore_original_signals_state): Use
887 gdb_sigmask.
888 * linux-nat.c (block_child_signals, restore_child_signals_mask)
889 (_initialize_linux_nat): Use gdb_sigmask.
890 * guile/guile.c (_initialize_guile): Use block_signals.
891 * Makefile.in (HFILES_NO_SRCDIR): Add gdb-sigmask.h.
892 * gdbsupport/gdb-sigmask.h: New file.
893 * event-top.c (async_sigtstp_handler): Use gdb_sigmask.
894 * cp-support.c (gdb_demangle): Use gdb_sigmask.
895 * gdbsupport/common.m4 (GDB_AC_COMMON): Check for
896 pthread_sigmask.
897 * configure, config.in: Rebuild.
898 * gdbsupport/block-signals.h: New file.
899
5e030278
TT
9002019-11-26 Tom Tromey <tom@tromey.com>
901
902 * acinclude.m4: Include ax_pthread.m4.
903 * Makefile.in (PTHREAD_CFLAGS, PTHREAD_LIBS): New variables.
904 (INTERNAL_CFLAGS_BASE): Use PTHREAD_CFLAGS.
905 (CLIBS): Use PTHREAD_LIBS.
906 (aclocal_m4_deps): Add ax_pthread.m4.
907 * config.in, configure: Rebuild.
908 * gdbsupport/common.m4 (GDB_AC_COMMON): Check for std::thread.
909
5a79c107
TT
9102019-11-26 Tom Tromey <tom@tromey.com>
911
912 * symtab.h (struct minimal_symbol) <name_set>: New member.
913 * minsyms.c (minimal_symbol_reader::record_full): Copy name.
914 Don't call symbol_set_names.
915 (minimal_symbol_reader::install): Call symbol_set_names.
916
aa369509
PW
9172019-11-26 Philippe Waroquiers <philippe.waroquiers@skynet.be>
918
919 * python/python.c (gdbpy_enter::~gdbpy_enter): Release GIL after
920 restore_active_ext_lang, as GIL is needed for (indirectly)
921 called PyOS_InterruptOccurred.
922
cadc9cb8
SM
9232019-11-26 Simon Marchi <simon.marchi@efficios.com>
924
925 * sparc-nat.c (sparc_xfer_wcookie): Sync declaration with
926 definition.
927
d04afd58
SM
9282019-11-26 Simon Marchi <simon.marchi@efficios.com>
929
930 * remote-sim.c (simulator_command): Make static, remove
931 declaration.
932
dd694d77
SM
9332019-11-26 Simon Marchi <simon.marchi@efficios.com>
934
935 * unittests/array-view-selftests.c (check_ptr_size_ctor2): Make
936 static.
937 * unittests/basic_string_view/capacity/1.cc (test01): Likewise.
938 * unittests/basic_string_view/cons/char/1.cc (test01): Likewise.
939 (main): Likewise.
940 * unittests/basic_string_view/cons/char/2.cc (test03): Likewise.
941 (main): Likewise.
942 * unittests/basic_string_view/cons/char/3.cc (test05): Likewise.
943 (main): Likewise.
944 * unittests/basic_string_view/element_access/char/1.cc (test01):
945 Likewise.
946 (main): Likewise.
947 * unittests/basic_string_view/element_access/char/empty.cc (main):
948 Likewise.
949 * unittests/basic_string_view/element_access/char/front_back.cc
950 (test01): Likewise.
951 (main): Likewise.
952 * unittests/basic_string_view/inserters/char/2.cc (test05):
953 Likewise.
954 (main): Likewise.
955 * unittests/basic_string_view/modifiers/remove_prefix/char/1.cc
956 (test01): Likewise.
957 (main): Likewise.
958 * unittests/basic_string_view/modifiers/remove_suffix/char/1.cc
959 (test01): Likewise.
960 (main): Likewise.
961 * unittests/basic_string_view/modifiers/swap/char/1.cc (test01):
962 Likewise.
963 * unittests/basic_string_view/operations/compare/char/1.cc
964 (test01): Likewise.
965 (main): Likewise.
966 * unittests/basic_string_view/operations/compare/char/13650.cc
967 (test01): Likewise.
968 * unittests/basic_string_view/operations/copy/char/1.cc (test01):
969 Likewise.
970 (main): Likewise.
971 * unittests/basic_string_view/operations/data/char/1.cc (test01):
972 Likewise.
973 (main): Likewise.
974 * unittests/basic_string_view/operations/find/char/1.cc (test01):
975 Likewise.
976 (main): Likewise.
977 * unittests/basic_string_view/operations/find/char/2.cc (test02):
978 Likewise.
979 (main): Likewise.
980 * unittests/basic_string_view/operations/find/char/3.cc (test03):
981 Likewise.
982 (main): Likewise.
983 * unittests/basic_string_view/operations/find/char/4.cc (main):
984 Likewise.
985 * unittests/basic_string_view/operations/rfind/char/1.cc (test01):
986 Likewise.
987 (main): Likewise.
988 * unittests/basic_string_view/operations/rfind/char/2.cc (test02):
989 Likewise.
990 (main): Likewise.
991 * unittests/basic_string_view/operations/rfind/char/3.cc (test03):
992 Likewise.
993 (main): Likewise.
994 * unittests/basic_string_view/operations/substr/char/1.cc
995 (test01): Likewise.
996 (main): Likewise.
997 * unittests/basic_string_view/operators/char/2.cc (main):
998 Likewise.
999 * unittests/optional/assignment/1.cc (test): Likewise.
1000 * unittests/optional/assignment/2.cc (test): Likewise.
1001 * unittests/optional/assignment/3.cc (test): Likewise.
1002 * unittests/optional/assignment/4.cc (test): Likewise.
1003 * unittests/optional/assignment/5.cc (test): Likewise.
1004 * unittests/optional/assignment/6.cc (test): Likewise.
1005 * unittests/optional/assignment/7.cc (test): Likewise.
1006 * unittests/optional/cons/copy.cc (test): Likewise.
1007 * unittests/optional/cons/default.cc (test): Likewise.
1008 * unittests/optional/cons/move.cc (test): Likewise.
1009 * unittests/optional/cons/value.cc (test): Likewise.
1010 * unittests/optional/in_place.cc (test): Likewise.
1011 * unittests/optional/observers/1.cc (test): Likewise.
1012 * unittests/optional/observers/2.cc (test): Likewise.
1013
3b5c1d49
SM
10142019-11-26 Simon Marchi <simon.marchi@efficios.com>
1015
1016 * tui-win.h (tui_set_var_cmd): Remove.
1017 * tui-win.c (tui_set_var_cmd): Make static.
1018
adce99fe
SM
10192019-11-26 Simon Marchi <simon.marchi@efficios.com>
1020
1021 * breakpoint.h (hbreak_command_wrapper, thbreak_command_wrapper,
1022 rbreak_command_wrapper): Remove.
1023 * symtab.c (rbreak_command_wrapper): Remove.
1024
fe3adccf
SM
10252019-11-26 Simon Marchi <simon.marchi@efficios.com>
1026
1027 * inferior.h (info_terminal_command): Remove declaration.
1028 * inflow.c (info_terminal_command): Make static.
1029
b926335f
SM
10302019-11-26 Simon Marchi <simon.marchi@efficios.com>
1031
1032 * inferior.c (exit_inferior_silent): Remove.
1033
b62f6f54
SM
10342019-11-26 Simon Marchi <simon.marchi@efficios.com>
1035
1036 * dictionary.c (dict_empty, mdict_empty): Remove.
1037 * dictionary.c (mdict_empty): Remove.
1038
cb8c24b6
SM
10392019-11-26 Simon Marchi <simon.marchi@efficios.com>
1040
1041 * arc-tdep.c (arc_insn_get_memory_base_reg): Make static.
1042 (arc_insn_get_memory_offset): Likewise.
1043 (arc_insn_dump): Likewise.
1044 * cp-support.c (test_cp_symbol_name_matches): Likewise.
1045 * csky-linux-tdep.c (csky_supply_fregset): Likewise.
1046 * dictionary.c (dict_iterator_next): Likewise.
1047 (dict_iter_match_first): Likewise.
1048 (dict_iter_match_next): Likewise.
1049 * f-lang.c (evaluate_subexp_f): Likewise.
1050 * hppa-tdep.c (hppa_read_pc): Likewise.
1051 * i386-tdep.c (i386_floatformat_for_type): Likewise.
1052 * parse.c (write_exp_elt_msym): Likewise.
1053 * ppc-linux-tdep.c (ppc_floatformat_for_type): Likewise.
1054 * remote.c (remote_packet_size): Likewise.
1055 (remote_notif_stop_parse): Likewise.
1056 * rs6000-aix-tdep.c (aix_sighandle_frame_sniffer): Likewise.
1057 * s12z-tdep.c (s12z_disassemble_info): Likewise.
1058 * source.c (prepare_path_for_appending): Likewise.
1059 * sparc64-linux-tdep.c
1060 (sparc64_linux_handle_segmentation_fault); Likewise.
1061 * stack.c (frame_selection_by_function_completer): Likewise.
1062
781597ff
SM
10632019-11-26 Simon Marchi <simon.marchi@efficios.com>
1064
1065 * completer.c (set_gdb_completion_word_break_characters):
1066 Remove.
1067
23baa4cc
SM
10682019-11-26 Simon Marchi <simon.marchi@efficios.com>
1069
1070 * dwarf-index-write.c: Include dwarf-index-write.h.
1071 * mi/mi-interp.c: Include mi/mi-interp.h.
1072
23767560
SM
10732019-11-26 Simon Marchi <simon.marchi@efficios.com>
1074
1075 * aarch32-tdep.c: Include aarch32-tdep.h.
1076 * aarch32-tdep.h: Forward-declare struct target_desc.
1077
6d91ce9a
CB
10782019-11-26 Christian Biesinger <cbiesinger@google.com>
1079
1080 * linux-nat.c (detach_one_lwp): Call safe_strerror instead of
1081 strerror.
1082 * nto-procfs.c (nto_procfs_target::create_inferior): Likewise.
1083 * windows-nat.c (windows_nat_target::create_inferior): Likewise.
1084
3cf2f237
TV
10852019-11-25 Tom de Vries <tdevries@suse.de>
1086
1087 * contrib/words.sh: Add -c option.
1088
5b89c67a
CB
10892019-11-25 Christian Biesinger <cbiesinger@google.com>
1090
1091 * solib.c (solib_find_1): Change int to bool.
1092 (exec_file_find): Change int to bool.
1093 (solib_find): Change int to bool.
1094 (solib_read_symbols): Change int to bool.
1095 (solib_used): Change int to bool.
1096 (solib_add): Change int to bool.
1097 (info_sharedlibrary_command): Change int to bool.
1098 (solib_contains_address_p): Change int to bool.
1099 (solib_keep_data_in_core): Change int to bool.
1100 (in_solib_dynsym_resolve_code): Change int to bool.
1101 (reload_shared_libraries_1): Change int to bool.
1102 (gdb_sysroot_changed): Change int to bool.
1103 * solib.h (solib_read_symbols): Change int to bool.
1104 (solib_contains_address_p): Change int to bool.
1105 (solib_keep_data_in_core): Change int to bool.
1106 (in_solib_dynsym_resolve_code): Change int to bool.
1107 (libpthread_name_p): Change int to bool.
1108
6cc8564b
LM
11092019-11-25 Luis Machado <luis.machado@linaro.org>
1110
1111 * NEWS (New Commands): Mention "set debug remote-packet-max-chars".
1112 * remote.c (REMOTE_DEBUG_MAX_CHAR): Remove.
1113 (remote_packet_max_chars): New static global.
1114 (show_remote_packet_max_chars): New function.
1115 (remote_target::putpkt_binary): Adjust to use new
1116 remote_packet_max_chars option.
1117 (remote_target::getpkt_or_notif_sane_1): Likewise.
1118 (_initialize_remote): Register new remote-packet-max-chars option.
1119
a7cdaa91
SM
11202019-11-24 Simon Marchi <simon.marchi@efficios.com>
1121
1122 * m68k-linux-nat.c: Include gdbarch.h.
1123
26abc753
TT
11242019-11-24 Tom Tromey <tom@tromey.com>
1125
1126 * symfile.c (read_symbols): Update.
1127 * psymtab.c (require_partial_symbols): Change type of "verbose" to
1128 bool.
1129 (psym_map_symtabs_matching_filename, find_pc_sect_psymtab)
1130 (psym_lookup_symbol, psym_find_last_source_symtab)
1131 (psym_forget_cached_source_info, psym_print_stats)
1132 (psym_expand_symtabs_for_function, psym_expand_all_symtabs)
1133 (psym_expand_symtabs_with_fullname, psym_map_symbol_filenames)
1134 (psym_map_matching_symbols, psym_expand_symtabs_matching)
1135 (psym_find_compunit_symtab_by_address)
1136 (maintenance_print_psymbols, maintenance_info_psymtabs)
1137 (maintenance_check_psymtabs): Update.
1138 * psymtab.h (require_partial_symbols): Change type of "verbose" to
1139 bool.
1140
012fc909
TT
11412019-11-22 Tom Tromey <tom@tromey.com>
1142
1143 * observable.h: Update comments.
1144
c83d8d32
TT
11452019-11-22 Tom Tromey <tromey@adacore.com>
1146
1147 * ada-tasks.c (ada_task_is_alive): Make parameter const.
1148 (print_ada_task_info): Don't try to fetch thread id if task is not
1149 alive.
1150
987012b8
CB
11512019-11-22 Christian Biesinger <cbiesinger@google.com>
1152
1153 * ada-exp.y: Update.
1154 * ada-lang.c (sort_choices): Update.
1155 (ada_print_symbol_signature): Update.
1156 (resolve_subexp): Update.
1157 (ada_parse_renaming): Update.
1158 (ada_read_renaming_var_value): Update.
1159 (lesseq_defined_than): Update.
1160 (remove_extra_symbols): Update.
1161 (remove_irrelevant_renamings): Update.
1162 (ada_add_block_symbols): Update.
1163 (ada_collect_symbol_completion_matches): Update.
1164 (ada_is_renaming_symbol): Update.
1165 (aggregate_assign_from_choices): Update.
1166 (ada_evaluate_subexp): Update.
1167 (ada_has_this_exception_support): Update.
1168 (ada_is_non_standard_exception_sym): Update.
1169 (ada_add_exceptions_from_frame): Update.
1170 (ada_add_global_exceptions): Update.
1171 (ada_print_subexp): Update.
1172 * ax-gdb.c (gen_var_ref): Update.
1173 (gen_maybe_namespace_elt): Update.
1174 (gen_expr_for_cast): Update.
1175 (gen_expr): Update.
1176 * block.h: Update.
1177 * blockframe.c (find_pc_partial_function): Update.
1178 * breakpoint.c (print_breakpoint_location): Update.
1179 (update_static_tracepoint): Update.
1180 * btrace.c (ftrace_print_function_name): Update.
1181 (ftrace_function_switched): Update.
1182 * buildsym.c (find_symbol_in_list): Update.
1183 * c-exp.y: Update.
1184 * c-typeprint.c (c_print_typedef): Update.
1185 (c_type_print_template_args): Update.
1186 * cli/cli-cmds.c (edit_command): Update.
1187 (list_command): Update.
1188 (print_sal_location): Update.
1189 * coffread.c (patch_opaque_types): Update.
1190 (process_coff_symbol): Update.
1191 (coff_read_enum_type): Update.
1192 * compile/compile-c-symbols.c (c_symbol_substitution_name): Update.
1193 (convert_one_symbol): Update.
1194 (hash_symname): Update.
1195 (eq_symname): Update.
1196 * compile/compile-cplus-symbols.c (convert_one_symbol): Update.
1197 * compile/compile-cplus-types.c (debug_print_scope): Update.
1198 * compile/compile-loc2c.c (do_compile_dwarf_expr_to_c): Update.
1199 * compile/compile-object-load.c (get_out_value_type): Update.
1200 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
1201 (search_symbol_list): Update.
1202 (cp_lookup_symbol_imports_or_template): Update.
1203 * cp-support.c (overload_list_add_symbol): Update.
1204 * ctfread.c (psymtab_to_symtab): Update.
1205 * dbxread.c (cp_set_block_scope): Update.
1206 * dictionary.c (iter_match_first_hashed): Update.
1207 (iter_match_next_hashed): Update.
1208 (insert_symbol_hashed): Update.
1209 (iter_match_next_linear): Update.
1210 * dictionary.h: Update.
1211 * dwarf2loc.c (func_get_frame_base_dwarf_block): Update.
1212 (locexpr_describe_location_piece): Update.
1213 (locexpr_describe_location_1): Update.
1214 (locexpr_generate_c_location): Update.
1215 (loclist_describe_location): Update.
1216 (loclist_generate_c_location): Update.
1217 * dwarf2read.c (dw2_debug_names_lookup_symbol): Update.
1218 (read_func_scope): Update.
1219 (process_enumeration_scope): Update.
1220 (new_symbol): Update.
1221 (dwarf2_const_value): Update.
1222 (dwarf2_symbol_mark_computed): Update.
1223 * eval.c (evaluate_funcall): Update.
1224 (evaluate_subexp_standard): Update.
1225 * expprint.c (print_subexp_standard): Update.
1226 (dump_subexp_body_standard): Update.
1227 * f-valprint.c (info_common_command_for_block): Update.
1228 * findvar.c (get_hosting_frame): Update.
1229 (default_read_var_value): Update.
1230 * go-lang.c (go_symbol_package_name): Update.
1231 * guile/scm-block.c (bkscm_print_block_smob): Update.
1232 * guile/scm-symbol.c (syscm_print_symbol_smob): Update.
1233 (gdbscm_symbol_name): Update.
1234 (gdbscm_symbol_linkage_name): Update.
1235 (gdbscm_symbol_print_name): Update.
1236 * infcall.c (get_function_name): Update.
1237 * infcmd.c (jump_command): Update.
1238 (finish_command): Update.
1239 * infrun.c (insert_exception_resume_breakpoint): Update.
1240 * linespec.c (canonicalize_linespec): Update.
1241 (create_sals_line_offset): Update.
1242 (convert_linespec_to_sals): Update.
1243 (complete_label): Update.
1244 (find_label_symbols_in_block): Update.
1245 * m2-typeprint.c (m2_print_typedef): Update.
1246 * mdebugread.c (mdebug_reg_to_regnum): Update.
1247 (parse_symbol): Update.
1248 (mylookup_symbol): Update.
1249 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
1250 (list_args_or_locals): Update.
1251 * objc-lang.c (compare_selectors): Update.
1252 (info_selectors_command): Update.
1253 (compare_classes): Update.
1254 (info_classes_command): Update.
1255 (find_imps): Update.
1256 * p-typeprint.c (pascal_print_typedef): Update.
1257 * printcmd.c (build_address_symbolic): Update.
1258 (info_address_command): Update.
1259 (print_variable_and_value): Update.
1260 * python/py-framefilter.c (extract_sym): Update.
1261 (py_print_single_arg): Update.
1262 * python/py-symbol.c (sympy_str): Update.
1263 (sympy_get_name): Update.
1264 (sympy_get_linkage_name): Update.
1265 * python/python.c (gdbpy_rbreak): Update.
1266 * record-btrace.c (btrace_get_bfun_name): Update.
1267 (btrace_call_history): Update.
1268 * rust-lang.c (rust_print_typedef): Update.
1269 * solib-frv.c (frv_fdpic_find_canonical_descriptor): Update.
1270 * stabsread.c (stab_reg_to_regnum): Update.
1271 (define_symbol): Update.
1272 (read_enum_type): Update.
1273 (common_block_end): Update.
1274 (cleanup_undefined_types_1): Update.
1275 (scan_file_globals): Update.
1276 * stack.c (print_frame_arg): Update.
1277 (print_frame_args): Update.
1278 (find_frame_funname): Update.
1279 (info_frame_command_core): Update.
1280 (iterate_over_block_locals): Update.
1281 (print_block_frame_labels): Update.
1282 (do_print_variable_and_value): Update.
1283 (iterate_over_block_arg_vars): Update.
1284 (return_command): Update.
1285 * symmisc.c (dump_symtab_1): Update.
1286 (print_symbol): Update.
1287 * symtab.c (eq_symbol_entry): Update.
1288 (symbol_cache_dump): Update.
1289 (lookup_language_this): Update.
1290 (find_pc_sect_line): Update.
1291 (skip_prologue_sal): Update.
1292 (symbol_search::compare_search_syms): Update.
1293 (treg_matches_sym_type_name): Update.
1294 (search_symbols): Update.
1295 (print_symbol_info): Update.
1296 (rbreak_command): Update.
1297 (completion_list_add_symbol): Update.
1298 (find_gnu_ifunc): Update.
1299 (get_symbol_address): Update.
1300 (search_module_symbols): Update.
1301 (info_module_subcommand): Update.
1302 * symtab.h (SYMBOL_NATURAL_NAME): Remove.
1303 (SYMBOL_LINKAGE_NAME): Remove.
1304 (SYMBOL_DEMANGLED_NAME): Remove.
1305 (SYMBOL_PRINT_NAME): Remove.
1306 (SYMBOL_SEARCH_NAME): Remove.
1307 * tracepoint.c (set_traceframe_context): Update.
1308 (validate_actionline): Update.
1309 (collection_list::collect_symbol): Update.
1310 (encode_actions_1): Update.
1311 (info_scope_command): Update.
1312 (print_one_static_tracepoint_marker): Update.
1313 * typeprint.c (typedef_hash_table::add_template_parameters): Update.
1314 * valops.c (address_of_variable): Update.
1315 (find_overload_match): Update.
1316 (find_oload_champ): Update.
1317
c9d95fa3
CB
13182019-11-22 Christian Biesinger <cbiesinger@google.com>
1319
1320 * ada-lang.c (ada_lookup_simple_minsym): Update.
1321 (ada_collect_symbol_completion_matches): Update.
1322 * ada-tasks.c (read_atcb): Update.
1323 * amd64-windows-tdep.c (amd64_skip_main_prologue): Update.
1324 (amd64_windows_skip_trampoline_code): Update.
1325 * arm-tdep.c (skip_prologue_function): Update.
1326 (arm_skip_stack_protector): Update.
1327 * arm-wince-tdep.c (arm_pe_skip_trampoline_code): Update.
1328 (arm_wince_skip_main_prologue): Update.
1329 * ax-gdb.c (gen_expr): Update.
1330 * block.c (call_site_for_pc): Update.
1331 * blockframe.c (find_pc_partial_function): Update.
1332 * breakpoint.c (set_breakpoint_location_function): Update.
1333 * btrace.c (ftrace_print_function_name): Update.
1334 (ftrace_function_switched): Update.
1335 * c-valprint.c (print_unpacked_pointer): Update.
1336 * coffread.c (coff_symfile_read): Update.
1337 * compile/compile-c-symbols.c (convert_symbol_bmsym): Update.
1338 * compile/compile-cplus-symbols.c (convert_symbol_bmsym): Update.
1339 * dwarf-index-write.c (write_psymbols): Update.
1340 * dwarf2loc.c (call_site_to_target_addr): Update.
1341 (func_verify_no_selftailcall): Update.
1342 (tailcall_dump): Update.
1343 (call_site_find_chain_1): Update.
1344 (dwarf_expr_reg_to_entry_parameter): Update.
1345 * elfread.c (elf_gnu_ifunc_record_cache): Update.
1346 * eval.c (evaluate_funcall): Update.
1347 (evaluate_subexp_standard): Update.
1348 (evaluate_subexp_for_sizeof): Update.
1349 * expprint.c (print_subexp_standard): Update.
1350 (dump_subexp_body_standard): Update.
1351 * frame.c (get_prev_frame_always_1): Update.
1352 * frv-tdep.c (frv_skip_main_prologue): Update.
1353 * gnu-v2-abi.c (gnuv2_value_rtti_type): Update.
1354 * gnu-v3-abi.c (gnuv3_rtti_type): Update.
1355 (gnuv3_get_typename_from_type_info): Update.
1356 (gnuv3_skip_trampoline): Update.
1357 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Update.
1358 * i386-tdep.c (i386_skip_main_prologue): Update.
1359 (i386_pe_skip_trampoline_code): Update.
1360 * ia64-tdep.c (ia64_convert_from_func_ptr_addr): Update.
1361 * infcall.c (get_function_name): Update.
1362 * linespec.c (minsym_found): Update.
1363 * linux-fork.c (info_checkpoints_command): Update.
1364 * m32c-tdep.c (m32c_m16c_address_to_pointer): Update.
1365 (m32c_m16c_pointer_to_address): Update.
1366 * maint.c (maintenance_translate_address): Update.
1367 * minsyms.c (add_minsym_to_hash_table): Update.
1368 (add_minsym_to_demangled_hash_table): Update.
1369 (lookup_minimal_symbol_mangled): Update.
1370 (lookup_minimal_symbol_demangled): Update.
1371 (lookup_minimal_symbol_linkage): Update.
1372 (lookup_minimal_symbol_text): Update.
1373 (lookup_minimal_symbol_by_pc_name): Update.
1374 (minimal_symbol_is_less_than): Update.
1375 (compact_minimal_symbols): Update.
1376 (build_minimal_symbol_hash_tables): Update.
1377 (find_solib_trampoline_target): Update.
1378 * mips-tdep.c (mips_stub_frame_sniffer): Update.
1379 (mips_skip_pic_trampoline_code): Update.
1380 * msp430-tdep.c (msp430_skip_trampoline_code): Update.
1381 * objc-lang.c (info_selectors_command): Update.
1382 (info_classes_command): Update.
1383 (find_methods): Update.
1384 (find_imps): Update.
1385 * p-valprint.c (pascal_val_print): Update.
1386 * ppc-linux-tdep.c (powerpc_linux_in_dynsym_resolve_code): Update.
1387 * ppc-sysv-tdep.c (convert_code_addr_to_desc_addr): Update.
1388 * printcmd.c (build_address_symbolic): Update.
1389 (info_symbol_command): Update.
1390 * psymtab.c (psymbol_name_matches): Update.
1391 (match_partial_symbol): Update.
1392 (lookup_partial_symbol): Update.
1393 (print_partial_symbols): Update.
1394 (sort_pst_symbols): Update.
1395 (maintenance_check_psymtabs): Update.
1396 * python/py-framefilter.c (py_print_frame): Update.
1397 * python/python.c (gdbpy_rbreak): Update.
1398 * record-btrace.c (btrace_get_bfun_name): Update.
1399 (btrace_call_history): Update.
1400 * rs6000-tdep.c (rs6000_skip_main_prologue): Update.
1401 (rs6000_skip_trampoline_code): Update.
1402 * sol-thread.c (info_cb): Update.
1403 * stabsread.c (scan_file_globals): Update.
1404 * stack.c (find_frame_funname): Update.
1405 (info_frame_command_core): Update.
1406 * symmisc.c (dump_msymbols): Update.
1407 * symtab.c (symbol_natural_name): Rename to..,
1408 (general_symbol_info::natural_name): ...this.
1409 (symbol_demangled_name): Rename to...
1410 (general_symbol_info::demangled_name): ...this.
1411 (symbol_search_name): Rename to...
1412 (general_symbol_info::search_name): ...this.
1413 (symbol_matches_search_name): Update.
1414 (find_pc_sect_line): Update.
1415 (skip_prologue_sal): Update.
1416 (search_symbols): Update.
1417 (print_msymbol_info): Update.
1418 (rbreak_command): Update.
1419 (completion_list_add_msymbol): Update.
1420 (completion_list_objc_symbol): Update.
1421 (get_msymbol_address): Update.
1422 * symtab.h (struct general_symbol_info): Add member functions
1423 natural_name (), linkage_name (), print_name (), demangled_name (),
1424 and search_name ().
1425 (SYMBOL_NATURAL_NAME): Update.
1426 (symbol_natural_name): Move to a member function on general_symbol_info.
1427 (SYMBOL_DEMANGLED_NAME): Update.
1428 (symbol_demangled_name): Move to a member function on
1429 general_symbol_info.
1430 (SYMBOL_SEARCH_NAME): Update.
1431 (symbol_search_name): Move to a member function on general_symbol_info.
1432 (MSYMBOL_NATURAL_NAME): Remove.
1433 (MSYMBOL_LINKAGE_NAME): Remove.
1434 (MSYMBOL_PRINT_NAME): Remove.
1435 (MSYMBOL_DEMANGLED_NAME): Remove.
1436 (MSYMBOL_SEARCH_NAME): Remove.
1437 * x86-tdep.c (x86_in_indirect_branch_thunk): Update.
1438
f8bab2d6
CB
14392019-11-22 Christian Biesinger <cbiesinger@google.com>
1440
1441 * symtab.c (create_demangled_names_hash): Use per_bfd->
1442 minimal_symbol_count for computing the initial size, if greater
1443 than our default size.
1444
85e7588d
TV
14452019-11-22 Tom de Vries <tdevries@suse.de>
1446
1447 * contrib/words.sh: Improve words extraction.
1448
f6180073
TV
14492019-11-22 Tom de Vries <tdevries@suse.de>
1450
1451 * contrib/words.sh: Combine sed invocations.
1452
f10ffa41
CB
14532019-11-21 Christian Biesinger <cbiesinger@google.com>
1454
1455 * Makefile.in: Update.
1456 * demangle.c: Rename to...
1457 * gdb-demangle.c: ..this.
1458 (is_cplus_marker): Change return type to bool.
1459 (_initialize_demangler): Rename to...
1460 (_initialize_gdb_demangle): ...this.
1461 * gdb-demangle.h (is_cplus_marker): Change return type to bool.
1462 * symtab.h (demangle): Remove declaration; instead include
1463 gdb-demangle.h.
1464
6ba18521
TT
14652019-11-21 Tom Tromey <tromey@adacore.com>
1466
1467 * gdbsupport/format.c (format_pieces): Parse %I64d.
1468 * unittests/format_pieces-selftests.c (test_windows_formats): New
1469 function.
1470 (run_tests): Call it.
1471
34877895
PJ
14722019-11-21 Peeter Joot <peeter.joot@lzlabs.com>
1473
1474 Byte reverse display of variables with DW_END_big, DW_END_little
1475 (DW_AT_endianity) dwarf attributes if different than the native
1476 byte order.
1477 * ada-lang.c (ada_value_binop):
1478 Use type_byte_order instead of gdbarch_byte_order.
1479 * ada-valprint.c (printstr):
1480 (ada_val_print_string):
1481 * ada-lang.c (value_pointer):
1482 (ada_value_binop):
1483 Use type_byte_order instead of gdbarch_byte_order.
1484 * c-lang.c (c_get_string):
1485 Use type_byte_order instead of gdbarch_byte_order.
1486 * c-valprint.c (c_val_print_array):
1487 Use type_byte_order instead of gdbarch_byte_order.
1488 * cp-valprint.c (cp_print_class_member):
1489 Use type_byte_order instead of gdbarch_byte_order.
1490 * dwarf2loc.c (rw_pieced_value):
1491 Use type_byte_order instead of gdbarch_byte_order.
1492 * dwarf2read.c (read_base_type): Handle DW_END_big,
1493 DW_END_little
1494 * f-lang.c (f_get_encoding):
1495 Use type_byte_order instead of gdbarch_byte_order.
1496 * findvar.c (default_read_var_value):
1497 Use type_byte_order instead of gdbarch_byte_order.
1498 * gdbtypes.c (check_types_equal):
1499 Require matching TYPE_ENDIANITY_NOT_DEFAULT if set.
1500 (recursive_dump_type): Print TYPE_ENDIANITY_BIG,
1501 and TYPE_ENDIANITY_LITTLE if set.
1502 (type_byte_order): new function.
1503 * gdbtypes.h (TYPE_ENDIANITY_NOT_DEFAULT): New macro.
1504 (struct main_type) <flag_endianity_not_default>:
1505 New field.
1506 (type_byte_order): New function.
1507 * infcmd.c (default_print_one_register_info):
1508 Use type_byte_order instead of gdbarch_byte_order.
1509 * p-lang.c (pascal_printstr):
1510 Use type_byte_order instead of gdbarch_byte_order.
1511 * p-valprint.c (pascal_val_print):
1512 Use type_byte_order instead of gdbarch_byte_order.
1513 * printcmd.c (print_scalar_formatted):
1514 Use type_byte_order instead of gdbarch_byte_order.
1515 * solib-darwin.c (darwin_current_sos):
1516 Use type_byte_order instead of gdbarch_byte_order.
1517 * solib-svr4.c (solib_svr4_r_ldsomap):
1518 Use type_byte_order instead of gdbarch_byte_order.
1519 * stap-probe.c (stap_modify_semaphore):
1520 Use type_byte_order instead of gdbarch_byte_order.
1521 * target-float.c (target_float_same_format_p):
1522 Use type_byte_order instead of gdbarch_byte_order.
1523 * valarith.c (scalar_binop):
1524 (value_bit_index):
1525 Use type_byte_order instead of gdbarch_byte_order.
1526 * valops.c (value_cast):
1527 Use type_byte_order instead of gdbarch_byte_order.
1528 * valprint.c (generic_emit_char):
1529 (generic_printstr):
1530 (val_print_string):
1531 Use type_byte_order instead of gdbarch_byte_order.
1532 * value.c (unpack_long):
1533 (unpack_bits_as_long):
1534 (unpack_value_bitfield):
1535 (modify_field):
1536 (pack_long):
1537 (pack_unsigned_long):
1538 Use type_byte_order instead of gdbarch_byte_order.
1539 * findvar.c (unsigned_pointer_to_address):
1540 (signed_pointer_to_address):
1541 (unsigned_address_to_pointer):
1542 (address_to_signed_pointer):
1543 (default_read_var_value):
1544 (default_value_from_register):
1545 Use type_byte_order instead of gdbarch_byte_order.
1546 * gnu-v3-abi.c (gnuv3_make_method_ptr):
1547 Use type_byte_order instead of gdbarch_byte_order.
1548 * riscv-tdep.c (riscv_print_one_register_info):
1549 Use type_byte_order instead of gdbarch_byte_order.
1550
87fb00ea
SM
15512019-11-21 Simon Marchi <simon.marchi@polymtl.ca>
1552
1553 * top.c (current_ui_gdb_stdout_ptr): Spell out by hand.
1554 (current_ui_gdb_stdin_ptr): Likewise.
1555 (current_ui_gdb_stderr_ptr): Likewise.
1556 (current_ui_gdb_stdlog_ptr): Likewise.
1557 (current_ui_current_uiout_ptr): Likewise.
1558 (gen_ret_current_ui_field_ptr): Remove.
1559
65d1cd5f
TV
15602019-11-21 Tom de Vries <tdevries@suse.de>
1561
1562 PR gdb/24956
1563 * cli/cli-script.c (execute_control_command): Only switch to
1564 INTERP_CONSOLE's ui_out when INTERP_MI is active.
1565
9f6ad286
TT
15662019-11-19 Tom Tromey <tom@tromey.com>
1567
1568 * tui/tui-win.c (tui_partial_win_by_name): Move from tui-data.c.
1569 Now static. Change type of "name".
1570 (tui_set_win_height_command): Don't copy "arg".
1571 * tui/tui-data.h (tui_partial_win_by_name): Don't declare.
1572 * tui/tui-data.c (tui_partial_win_by_name): Move to tui-win.c.
1573
435d3d88
AT
15742019-11-19 Ali Tamur <tamur@google.com>
1575
1576 * dwarf2read.c (dw2_get_file_names_reader): Replace "if (attr)" with
1577 "if (attr != nullptr)".
1578 (dwarf2_find_base_address): Likewise.
1579 (dwarf2_build_include_psymtabs): Likewise.
1580 (read_cutu_die_from_dwo): Likewise.
1581 (read_func_scope): Likewise.
1582 (read_call_site_scope): Likewise.
1583 (dwarf2_get_pc_bounds): Likewise.
1584 (dwarf2_record_block_ranges): Likewise.
1585 (dwarf2_add_field): Likewise.
1586 (dwarf2_add_member_fn): Likewise.
1587 (read_structure_type): Likewise.
1588 (read_enumeration_type): Likewise.
1589 (read_array_type): Likewise.
1590 (read_array_order): Likewise.
1591 (read_set_type): Likewise.
1592 (read_common_block): Likewise.
1593 (read_tag_reference_type): Likewise.
1594 (read_tag_string_type): Likewise.
1595 (read_subroutine_type): Likewise.
1596 (read_base_type): Likewise.
1597 (read_subrange_type): Likewise.
1598 (new_symbol): Likewise.
1599 (prepare_one_comp_unit): Likewise.
1600
c9739b6a
TT
16012019-11-19 Tom Tromey <tromey@adacore.com>
1602
1603 * windows-nat.c (windows_nat_target::attach): Include GetLastError
1604 result in error when DebugActiveProcess fails.
1605
494409bb
SDJ
16062019-11-18 Sergio Durigan Junior <sergiodj@redhat.com>
1607 Pedro Alves <palves@redhat.com>
1608
1609 https://bugzilla.redhat.com/show_bug.cgi?id=1765117
1610 * target.c (target_stack::push): Call 'unpush' if there's a
1611 target on top of the stack.
1612
2e953aca
PW
16132019-11-18 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1614
1615 * python/py-block.c (blpy_dealloc): Call tp_free.
1616 (blpy_block_syms_dealloc): Likewise.
1617 * python/py-finishbreakpoint.c (bpfinishpy_dealloc): Likewise.
1618 * python/py-inferior.c (infpy_dealloc): Likewise.
1619 * python/py-lazy-string.c (stpy_dealloc): Likewise.
1620 * python/py-linetable.c (ltpy_iterator_dealloc): Likewise.
1621 * python/py-symbol.c (sympy_dealloc): Likewise.
1622 * python/py-symtab.c (stpy_dealloc): Likewise.
1623 * python/py-type.c (typy_iterator_dealloc): Likewise.
1624
6edc43ec
CB
16252019-11-18 Christian Biesinger <cbiesinger@google.com>
1626
1627 * symtab.h (struct symbol) <owner>: Initialize explicitly in the
1628 constructor instead of using a class initializer.
1629
cd850b40
CB
16302019-11-15 Christian Biesinger <cbiesinger@google.com>
1631
1632 * Makefile.in: Replace {posix,mingw}-strerror.c with safe-strerror.c.
1633 * configure: Regenerate.
1634 * configure.ac: Don't source common.host.
1635 * gdbsupport/common.host: Remove.
1636 * gdbsupport/mingw-strerror.c: Remove.
1637 * gdbsupport/posix-strerror.c: Rename to...
1638 * gdbsupport/safe-strerror.c: ...this.
1639
53fea9c7
CB
16402019-11-15 Christian Biesinger <cbiesinger@google.com>
1641
1642 * maint.c (scoped_command_stats::print_time): Use localtime_r
1643 instead of localtime (provided through gnulib if necessary).
1644 * nat/linux-osdata.c (time_from_time_t): Use ctime_r instead
1645 of ctime.
1646
f8e27d88
CB
16472019-11-15 Christian Biesinger <cbiesinger@google.com>
1648
1649 * gdbsupport/common-defs.h: Include time.h before pathmax.h to
1650 avoid compile errors.
1651
5abebf3c
CB
16522019-11-15 Christian Biesinger <cbiesinger@google.com>
1653
1654 * config.in: Regenerate.
1655 * configure: Regenerate.
1656 * gdbsupport/common.m4: No longer check for strerror_r.
1657 * gdbsupport/posix-strerror.c (safe_strerror): Always call the
1658 POSIX version of strerror_r, now that gnulib provides it if
1659 necessary.
1660
9a351667
CB
16612019-11-14 Christian Biesinger <cbiesinger@google.com>
1662
1663 * README (`configure' options): Update.
1664
55708e99
TT
16652019-11-14 Tom Tromey <tromey@adacore.com>
1666
1667 * eval.c (evaluate_subexp_standard) <BINOP_ASSIGN>: Do not pass an
1668 expected type for the RHS if the LHS is a convenience variable.
1669
4b09bb2e
SM
16702019-11-14 Simon Marchi <simon.marchi@polymtl.ca>
1671
1672 * unittests/vec-utils-selftests.c (unordered_remove_tests::obj):
1673 Provide explicit default and copy constructor.
1674
bd454f8b
PW
16752019-11-14 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1676
1677 * python/py-finishbreakpoint.c (gdbpy_breakpoint_created):
1678 only call Py_INCREF (newbp) in the bppy_pending_object case.
1679
d1aa3cf0
TT
16802019-11-13 Tom Tromey <tromey@adacore.com>
1681
1682 PR build/25182:
1683 * psympriv.h (partial_symbol): Remove static assert.
1684 * symtab.h (general_symbol_info, symbol): Remove static assert.
1685
e06f3d6e
AB
16862019-11-12 Andrew Burgess <andrew.burgess@embecosm.com>
1687
1688 * gdbsupport/format.c (format_pieces::format_pieces): Support
1689 printf 'z' size modifier.
1690 * gdbsupport/format.h (enum argclass): Add size_t_arg.
1691 * printcmd.c (ui_printf): Handle size_t_arg.
1692 * ui-out.c (ui_out::vmessage): Likewise.
1693 * unittests/format_pieces-selftests.c (test_format_int_sizes): New
1694 function.
1695 (run_tests): Call test_format_int_sizes.
1696
468c0cbb
CB
16972019-11-12 Christian Biesinger <cbiesinger@google.com>
1698
1699 * ada-exp.y (write_ambiguous_var): Update.
1700 * buildsym.c (add_symbol_to_list): Update.
1701 * dwarf2read.c (read_variable): Update.
1702 (new_symbol): Update.
1703 * jit.c (finalize_symtab): Update.
1704 * language.c (language_alloc_type_symbol): Update.
1705 * symtab.c (fixup_symbol_section): Update.
1706 (initialize_objfile_symbol_1): Move code to...
1707 (initialize_objfile_symbol): ...here. Remove now-unnecessary memset.
1708 (allocate_symbol): Update.
1709 (allocate_template_symbol): Update.
1710 (get_symbol_address): Update.
1711 * symtab.h (struct symbol): Inherit from general_symbol_info instead
1712 of having as a field, and add a constructor.
1713 (SYMBOL_VALUE): Update.
1714 (SYMBOL_VALUE_ADDRESS): Update.
1715 (SET_SYMBOL_VALUE_ADDRESS): Update.
1716 (SYMBOL_VALUE_BYTES): Update.
1717 (SYMBOL_VALUE_COMMON_BLOCK): Update.
1718 (SYMBOL_BLOCK_VALUE): Update.
1719 (SYMBOL_VALUE_CHAIN): Update.
1720 (SYMBOL_LANGUAGE): Update.
1721 (SYMBOL_SECTION): Update.
1722 (SYMBOL_OBJ_SECTION): Update.
1723 (SYMBOL_SET_LANGUAGE): Update.
1724 (SYMBOL_SET_LINKAGE_NAME): Update.
1725 (SYMBOL_SET_NAMES): Update.
1726 (SYMBOL_NATURAL_NAME): Update.
1727 (SYMBOL_LINKAGE_NAME): Update.
1728 (SYMBOL_DEMANGLED_NAME): Update.
1729 (SYMBOL_SEARCH_NAME): Update.
1730 (SYMBOL_MATCHES_SEARCH_NAME): Update.
1731 (struct symbol): Update.
1732 (struct template_symbol): Update.
1733 (struct rust_vtable_symbol): Update.
1734 * xcoffread.c (SYMBOL_DUP): Update.
1735
ed2c82c3
TT
17362019-11-12 Tom Tromey <tom@tromey.com>
1737
1738 * tui/tui-layout.c (show_layout): Set current_layout.
1739 (show_source_disasm_command, show_data)
1740 (show_source_or_disasm_and_command): Don't set current_layout.
1741
d9fcefd5
TT
17422019-11-12 Tom Tromey <tom@tromey.com>
1743
1744 * tui/tui-layout.c (_initialize_tui_layout): Move to end.
1745
45e42163
TT
17462019-11-12 Tom Tromey <tom@tromey.com>
1747
1748 * tui/tui-win.c (resize_message): New global.
1749 (show_tui_resize_message): New function.
1750 (tui_async_resize_screen): Print message if requested.
1751 (_initialize_tui_win): Add tui-resize-message setting.
1752 * NEWS: Add entry for new commands.
1753
c86d74cc
TT
17542019-11-11 Tom Tromey <tom@tromey.com>
1755
1756 * tui/tui.c (tui_initialize_readline): Add new bindable readline
1757 functions.
1758
7b7b9424
CB
17592019-11-11 Christian Biesinger <cbiesinger@google.com>
1760
1761 * nat/linux-osdata.c (user_from_uid): Use getpwuid_r.
1762
086baaf1
AB
17632019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
1764
1765 * python/py-symbol.c (gdbpy_lookup_static_symbols): New
1766 function.
1767 * python/python-internal.h (gdbpy_lookup_static_symbols):
1768 Declare new function.
1769 * python/python.c (python_GdbMethods): Add
1770 gdb.lookup_static_symbols method.
1771 * NEWS: Mention gdb.lookup_static_symbols.
1772
09ff83af
AB
17732019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
1774
1775 * python/py-symbol.c (gdbpy_lookup_static_symbol): Lookup in
1776 static block of current object file first. Also fix typo in
1777 header comment.
1778
eb2dd8df
AB
17792019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
1780
1781 * stack.c (set_last_displayed_sal): Delete.
1782 (last_displayed_sal_valid): Delete.
1783 (last_displayed_pspace): Delete.
1784 (last_displayed_addr): Delete.
1785 (last_displayed_symtab): Delete.
1786 (last_displayed_line): Delete.
1787 (class last_displayed_symtab_info_type): New.
1788 (last_displayed_symtab_info): New static global variable.
1789 (print_frame_info): Call methods on last_displayed_symtab_info.
1790 (clear_last_displayed_sal): Update header comment, and make use of
1791 last_displayed_symtab_info.
1792 (last_displayed_sal_is_valid): Likewise.
1793 (get_last_displayed_pspace): Likewise.
1794 (get_last_displayed_addr): Likewise.
1795 (get_last_displayed_symtab): Likewise.
1796 (get_last_displayed_line): Likewise.
1797 (get_last_displayed_sal): Likewise.
1798 * stack.h (clear_last_displayed_sal): Update header comment.
1799 (last_displayed_sal_is_valid): Likewise.
1800 (get_last_displayed_pspace): Likewise.
1801 (get_last_displayed_addr): Likewise.
1802 (get_last_displayed_symtab): Likewise.
1803 (get_last_displayed_line): Likewise.
1804 (get_last_displayed_sal): Likewise.
1805
62137775
AB
18062019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
1807
1808 * stack.c (frame_show_address): Convert return type to bool.
1809 * stack.h (frame_show_address): Likewise, and update header
1810 comment.
1811
cf57ad6d
AB
18122019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
1813
1814 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add new file to the list.
1815 * unittests/vec-utils-selftests.c: New file.
1816 * gdbsupport/gdb_vecs.h (unordered_remove): Avoid self move assign.
1817
0b026263
TT
18182019-11-10 Tom Tromey <tom@tromey.com>
1819
1820 * tui/tui-wingeneral.c (tui_unhighlight_win): Use can_box.
1821 (tui_highlight_win): Likewise.
1822 (tui_win_info::check_and_display_highlight_if_needed): Likewise.
1823 * tui/tui-data.h (struct tui_win_info) <can_highlight>: Remove.
1824 * tui/tui-command.h (struct tui_cmd_window) <tui_cmd_window>:
1825 Don't set can_highlight.
1826
b049ce2d
TT
18272019-11-10 Tom Tromey <tom@tromey.com>
1828
1829 * cli/cli-style.h (class cli_style_option) <cli_style_option>:
1830 Remove unused declaration.
1831
992a7040
TT
18322019-11-08 Tom Tromey <tromey@adacore.com>
1833
1834 * top.c (read_command_file): Update.
1835 (command_line_input): Make return type const.
1836 * python/py-gdb-readline.c: Update.
1837 * linespec.c (decode_line_2): Update.
1838 * defs.h (command_line_input): Make return type const.
1839 * cli/cli-script.c (read_next_line): Make return type const.
1840 * ada-lang.c (get_selections): Update.
1841
ca3a04f6
CB
18422019-11-06 Christian Biesinger <cbiesinger@google.com>
1843
1844 * linux-tdep.c (linux_info_proc): Use strtok_r instead of strtok.
1845 * mi/mi-main.c (output_cores): Likewise.
1846 * nat/linux-osdata.c (linux_xfer_osdata_cpus): Likewise.
1847 (linux_xfer_osdata_modules): Likewise.
1848 * remote.c (register_remote_support_xml): Likewise.
1849 * sparc64-tdep.c (adi_is_addr_mapped): Likewise.
1850 * xml-syscall.c (syscall_create_syscall_desc): Likewise.
1851
e0eac551
TT
18522019-11-06 Tom Tromey <tom@tromey.com>
1853
1854 * tui/tui-interp.c: Don't include readline.h.
1855 * tui/tui-hooks.c: Don't include readline.h.
1856 * symmisc.c: Include tilde.h, not readline.h.
1857 * symfile.c: Include tilde.h, not readline.h.
1858 * source.c: Include tilde.h, not readline.h.
1859 * solib.c: Include tilde.h, not readline.h.
1860 * psymtab.c: Include tilde.h, not readline.h.
1861 * exec.c: Include tilde.h, not readline.h.
1862 * corelow.c: Include tilde.h, not readline.h.
1863 * cli/cli-dump.c: Include tilde.h, not readline.h.
1864 * cli/cli-cmds.c: Don't include readline.h.
1865
825165c5
TT
18662019-11-05 Tom Tromey <tom@tromey.com>
1867
1868 * tui/tui-disasm.c (struct tui_asm_line) <addr_size>: New member.
1869 (tui_disassemble): Set addr_size.
1870 (tui_disasm_window::set_contents): Use addr_size.
1871
91ae903f
TT
18722019-11-05 Tom Tromey <tom@tromey.com>
1873
1874 * rust-lang.c (rust_language_defn): Update.
1875 * python/py-value.c (valpy_string): Call c_get_string.
1876 * p-lang.c (pascal_language_defn): Update.
1877 * opencl-lang.c (opencl_language_defn): Update.
1878 * objc-lang.c (objc_language_defn): Update.
1879 * m2-lang.c (m2_language_defn): Update.
1880 * language.c (unknown_language_defn, auto_language_defn): Update.
1881 (default_get_string): Remove.
1882 * guile/scm-value.c (gdbscm_value_to_string): Use c_get_string.
1883 * go-lang.c (go_language_defn): Update.
1884 * f-lang.c (f_language_defn): Update.
1885 * d-lang.c (d_language_defn): Update.
1886 * c-lang.c (c_language_defn, cplus_language_defn)
1887 (asm_language_defn, minimal_language_defn): Update.
1888 * ada-lang.c (ada_language_defn): Update.
1889 * language.h (struct language_defn) <la_get_string>: Remove.
1890 (LA_GET_STRING): Remove.
1891 (default_get_string): Don't declare.
1892
1df2f9ef
TT
18932019-11-05 Tom Tromey <tom@tromey.com>
1894
1895 * tui/tui-source.h (struct tui_source_window): Inline
1896 constructor. Remove destructor.
1897 <style_changed, m_observable>: Move to superclass.
1898 * tui/tui-winsource.h (tui_copy_source_line): Declare.
1899 (struct tui_source_window_base): Move private members to end.
1900 <style_changed, m_observable>: Move from tui_source_window.
1901 * tui/tui-winsource.c (tui_copy_source_line): Move from
1902 tui-source.c. Rename from copy_source_line. Add special handling
1903 for negative line number.
1904 (tui_source_window_base::style_changed): Move from
1905 tui_source_window.
1906 (tui_source_window_base): Register observer.
1907 (~tui_source_window_base): New.
1908 * tui/tui-source.c (copy_source_line): Move to tui-winsource.c;
1909 rename.
1910 (tui_source_window::set_contents): Use tui_copy_source_line.
1911 (tui_source_window::tui_source_window): Move to tui-source.h.
1912 (tui_source_window::~tui_source_window): Remove.
1913 (tui_source_window::style_changed): Move to superclass.
1914 * tui/tui-disasm.c (tui_disassemble): Create string file with
1915 styling, when possible. Add "addr_size" parameter.
1916 (tui_disasm_window::set_contents): Use tui_copy_source_line.
1917 Don't compute maximum size.
1918 (len_without_escapes): New function
1919
5d051055
TT
19202019-11-05 Tom Tromey <tom@tromey.com>
1921
1922 * tui/tui-winsource.h (struct tui_source_element) <line>: Now a
1923 std::string.
1924 * tui/tui-winsource.c (tui_show_source_line): Update.
1925 * tui/tui-source.c (tui_source_window::set_contents): Update.
1926 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
1927
ade7beea
CB
19282019-11-05 Christian Biesinger <cbiesinger@google.com>
1929
1930 * symtab.h (gdb_static_assert): Put && operator at the beginning
1931 of the line instead of the end.
1932
3573abe1
CB
19332019-11-04 Christian Biesinger <cbiesinger@google.com>
1934
1935 * psympriv.h: Add static_asserts for sizeof (general_symbol_info)
1936 and sizeof (symbol).
1937 * symtab.h: Add a static_assert for sizeof (partial_symbol).
1938
dae8b3eb
RO
19392019-11-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1940
1941 * NEWS (Changes since GDB 8.3): Document Solaris 10 removal.
1942 * configure.host: Mark *-*-solaris2.10* obsolete.
1943 * configure.tgt: Mark Solaris < 11 obsolete.
1944 * MAINTAINERS (Target Instruction Set Architectures) <sparc>:
1945 Update target triplet.
1946
5df96a4e
TT
19472019-11-01 Tom Tromey <tromey@adacore.com>
1948
1949 * utils.c (print_sys_errmsg): Simplify.
1950
b7481649
TT
19512019-11-01 Tom Tromey <tromey@adacore.com>
1952
1953 * gdbsupport/mingw-strerror.c (safe_strerror): Constify result.
1954
e48f6033
CB
19552019-11-01 Christian Biesinger <cbiesinger@google.com>
1956
1957 * configure: Regenerate.
1958 * configure.ac: Remove check for strerror_r.
1959 * gdbsupport/common.m4: Check for strerror_r.
1960
bd5766ec
LM
19612019-11-01 Luis Machado <luis.machado@linaro.org>
1962
1963 PR gdb/25124
1964
1965 * arm-tdep.c (arm_per_objfile): Rename to ...
1966 (arm_per_bfd): ... this.
1967 (arm_objfile_data_key): Rename to ...
1968 (arm_bfd_data_key): ... this.
1969 (arm_find_mapping_symbol): Adjust access to new bfd_key-based
1970 data.
1971 (arm_record_special_symbol): Likewise.
1972
e1709896
AB
19732019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
1974
1975 * ada-typeprint.c (ada_print_typedef): Don't print newline at the
1976 end.
1977 * c-typeprint.c (c_print_typedef): Likewise.
1978 * f-typeprint.c (f_print_typedef): Likewise.
1979 * m2-typeprint.c (m2_print_typedef): Likewise.
1980 * p-typeprint.c (pascal_print_typedef): Likewise.
1981 * rust-lang.c (rust_print_typedef): Likewise.
1982 * symtab.c (print_symbol_info): Print a newline after calling
1983 typedef_print.
1984
165f8965
AB
19852019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
1986
1987 * symtab.c (info_module_cmdlist): New variable.
1988 (info_module_command): New function.
1989 (search_module_symbols): New function.
1990 (info_module_subcommand): New function.
1991 (struct info_modules_var_func_options): New struct.
1992 (info_modules_var_func_options_defs): New variable.
1993 (make_info_modules_var_func_options_def_group): New function.
1994 (info_module_functions_command): New function.
1995 (info_module_variables_command): New function.
1996 (info_module_var_func_command_completer): New function.
1997 (_initialize_symtab): Register new 'info module functions' and
1998 'info module variables' commands.
1999 * symtab.h (typedef symbol_search_in_module): New typedef.
2000 (search_module_symbols): Declare new function.
2001 * NEWS: Mention new commands.
2002
59c35742
AB
20032019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
2004
2005 * dwarf2read.c (dw2_symtab_iter_next): Handle MODULE_DOMAIN.
2006 (dw2_expand_marked_cus): Handle MODULES_DOMAIN.
2007 (dw2_debug_names_iterator::next): Handle MODULE_DOMAIN and
2008 MODULES_DOMAIN.
2009 (scan_partial_symbols): Only create partial module symbols for non
2010 declarations.
2011 * psymtab.c (recursively_search_psymtabs): Handle MODULE_DOMAIN
2012 and MODULES_DOMAIN.
2013 * symtab.c (search_domain_name): Likewise.
2014 (search_symbols): Likewise.
2015 (print_symbol_info): Likewise.
2016 (symtab_symbol_info): Likewise.
2017 (info_modules_command): New function.
2018 (_initialize_symtab): Register 'info modules' command.
2019 * symtab.h (enum search_domain): Add MODULES_DOMAIN.
2020 * NEWS: Mention new 'info modules' command.
2021
aed61d02
PW
20222019-10-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2023
2024 * NEWS: Mention $_gdb_setting, $_gdb_setting_str, $_gdb_maint_setting
2025 and $_gdb_maint_setting_str.
2026
9ad9b77d
PW
20272019-10-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2028
2029 * cli/cli-cmds.c (setting_cmd, value_from_setting)
2030 (gdb_setting_internal_fn, gdb_maint_setting_internal_fn)
2031 (str_value_from_setting, gdb_setting_str_internal_fn)
2032 (gdb_maint_setting_str_internal_fn): New functions.
2033 (_initialize_cli_cmds): Define the new convenience functions.
2034 * gdb/cli/cli-setshow.h (get_setshow_command_value_string): Constify.
2035 * gdb/cli/cli-setshow.c (get_setshow_command_value_string): Constify.
2036
8d6efaa2
CB
20372019-10-31 Christian Biesinger <cbiesinger@google.com>
2038
2039 * agent.c (set_can_use_agent): When the setting is turned on,
2040 look up agent symbols if we don't have them yet.
2041 (agent_new_objfile): Don't look up agent symbols when the agent
2042 setting is off.
2043
33cb1647
CB
20442019-10-31 Christian Biesinger <cbiesinger@google.com>
2045
2046 * config.in: Regenerate.
2047
b231e86a
CB
20482019-10-31 Christian Biesinger <cbiesinger@google.com>
2049
2050 * configure: Regenerate.
2051 * configure.ac: Check for strerror_r.
2052 * gdbsupport/common-utils.h (safe_strerror): Change return value
2053 to const char * and document that this function is now threadsafe.
2054 * gdbsupport/posix-strerror.c (safe_strerror): Make buf
2055 thread_local and call strerror_r, if available.
2056 * utils.c (perror_string): Update.
2057 (print_sys_errmsg): Update.
2058
a2726d4f
LM
20592019-10-31 Luis Machado <luis.machado@linaro.org>
2060
2061 * arm-tdep.c (arm_exidx_data_key): Use bfd_key instead of
2062 objfile_key.
2063 (arm_exidx_new_objfile): Adjust to use objfile->obfd instead of
2064 objfile to fetch per-bfd data.
2065 (arm_find_exidx_entry): Likewise.
2066
75cafaa6
CB
20672019-10-31 Christian Biesinger <cbiesinger@google.com>
2068
2069 * gdbsupport/agent.c (debug_agent): Change type to bool.
2070 (use_agent): Likewise.
2071 (all_agent_symbols_look_up): Likewise.
2072 (agent_loaded_p): Change return value to bool.
2073 (agent_look_up_symbols): Update.
2074 (agent_capability_check): Change return value to bool.
2075 * gdbsupport/agent.h (agent_loaded_p): Likewise.
2076 (debug_agent): Change type to bool.
2077 (use_agent): Likewise.
2078 (agent_capability_check): Change return value to bool.
2079
808590ec
CB
20802019-10-30 Christian Biesinger <cbiesinger@google.com>
2081
2082 * minsyms.c (clear_minimal_symbol_hash_tables): New function.
2083 (build_minimal_symbol_hash_tables): Code to clear the table moved
2084 to clear_minimal_symbol_hash_tables.
2085 (minimal_symbol_reader::install): Call clear_minimal_symbol_hash_tables
2086 when needed.
2087
f18ad8a1
SM
20882019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
2089
2090 * infcmd.c: Remove includes.
2091 * infrun.c: Remove includes.
2092
de93309a
SM
20932019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
2094
2095 * ada-lang.h (GROW_VECT): Move to ada-lang.c.
2096 (grow_vect): Remove declaration.
2097 (ada_type_of_array): Remove declaration.
2098 (ada_update_initial_language): Remove declaration.
2099 (ada_fold_name): Remove declaration.
2100 (ada_fill_in_ada_prototype): Remove declaration.
2101 (user_select_syms): Remove declaration.
2102 (get_selections): Remove declaration.
2103 (ada_tag_type): Remove declaration.
2104 (ada_value_tag): Remove declaration.
2105 (ada_is_others_clause): Remove declaration.
2106 (ada_in_variant): Remove declaration.
2107 (ada_value_struct_elt): Remove declaration.
2108 (ada_attribute_name): Remove declaration.
2109 (ada_system_address_type): Remove declaration.
2110 * ada-lang.c (ada_watch_location_expression): Make static.
2111 (GROW_VECT): Move here from ada-lang.h.
2112 (grow_vect): Make static.
2113 (ada_update_initial_language): Make static.
2114 (ada_fold_name): Make static.
2115 (ada_type_of_array): Make static.
2116 (encoded_ordered_before): Move up.
2117 (sort_choices): Move up.
2118 (print_signatures): Move up.
2119 (ada_print_symbol_signature): Move up.
2120 (get_selections): Move up and make static.
2121 (user_select_syms): Move up and make static.
2122 (ada_value_struct_elt): Move up and make static.
2123 (ada_tag_type): Make static.
2124 (ada_value_tag): Make static.
2125 (ada_is_others_clause): Make static.
2126 (ada_in_variant): Make static.
2127 (ada_attribute_name): Make static.
2128
cdc46a9f
SM
21292019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
2130
2131 * ada-lang.c: Remove includes.
2132 * ada-typeprint.c: Remove includes.
2133 * ada-valprint.c: Remove includes.
2134
90421c56
SM
21352019-10-29 Simon Marchi <simon.marchi@efficios.com>
2136
2137 * addrmap.c: Add static assertions of type size, moved from
2138 _initialize_addrmap.
2139 (_initialize_addrmap): Remove.
2140
31edb802
CB
21412019-10-29 Christian Biesinger <cbiesinger@google.com>
2142
2143 * coffread.c (record_minimal_symbol): Update.
2144 (process_coff_symbol): Update.
2145 * dbxread.c (read_dbx_symtab): Update.
2146 * dwarf2read.c (add_partial_symbol): Update.
2147 (fixup_go_packaging): Update.
2148 (load_partial_dies): Update.
2149 (new_symbol): Update.
2150 * elfread.c (record_minimal_symbol): Change signature to use
2151 gdb::string_view instead of name+len.
2152 (elf_symtab_read): Update.
2153 (elf_rel_plt_read): Update.
2154 * mdebugread.c (parse_partial_symbols): Update.
2155 (handle_psymbol_enumerators): Update.
2156 (new_symbol): Update.
2157 * minsyms.c (minimal_symbol_reader::record_full): Change signature
2158 to use gdb::string_view instead of name+len.
2159 * minsyms.h (class minimal_symbol_reader) <record_full>: Likewise.
2160 * psympriv.h (add_psymbol_to_list): Likewise.
2161 * psymtab.c (add_psymbol_to_bcache): Likewise.
2162 (add_psymbol_to_list): Likewise.
2163 * stabsread.c (define_symbol): Update.
2164 * symtab.c (symbol_set_names): Change signature to use gdb::string_view.
2165 * symtab.h (SYMBOL_SET_NAMES): Likewise.
2166 (symbol_set_names): Likewise.
2167 * xcoffread.c (scan_xcoff_symtab): Update.
2168
0c921b21
CB
21692019-10-29 Christian Biesinger <cbiesinger@google.com>
2170
2171 * symtab.h (symbol_set_names): Document that copy_name must be
2172 set to true for non-nullterminated strings.
2173 * symtab.c (symbol_set_names): Only make a nullterminated copy of
2174 linkage_name if the entry was not found and we need to demangle.
2175
35e65c49
CB
21762019-10-29 Christian Biesinger <cbiesinger@google.com>
2177
2178 * Makefile.in (HFILES_NO_SRCDIR): Add gdb_binary_search.h.
2179 * dwarf2-frame.c (bsearch_fde_cmp): Update.
2180 (dwarf2_frame_find_fde): Replace bsearch with gdb::binary_search.
2181 * gdbsupport/gdb_binary_search.h: New file.
2182
ed2a2229
CB
21832019-10-29 Christian Biesinger <cbiesinger@google.com>
2184
2185 * NEWS: Mention new --with-system-gdbinit-dir option.
2186 * config.in: Regenerate.
2187 * configure: Regenerate.
2188 * configure.ac: Add new option --with-system-gdbinit-dir.
2189 * extension.c (get_ext_lang_of_file): Return extension_language_gdb
2190 for a ".gdb" suffix.
2191 * main.c (get_init_files): Change system_gdbinit argument to
2192 a vector and return the files in SYSTEM_GDBINIT_DIR in
2193 addition to SYSTEM_GDBINIT.
2194 (captured_main_1): Update.
2195 (print_gdb_help): Update.
2196 * top.c (print_gdb_configuration): Also print the value of
2197 SYSTEM_GDBINIT_DIR.
2198
87f34879
CB
21992019-10-28 Christian Biesinger <cbiesinger@google.com>
2200
2201 * gdbsupport/common-utils.h (startswith): Add an overloaded version
2202 that takes gdb::string_view arguments.
2203
30baf67b
TV
22042019-10-26 Tom de Vries <tdevries@suse.de>
2205
2206 * aarch64-linux-tdep.c: Fix typos in comments.
2207 * aarch64-tdep.c: Same.
2208 * ada-lang.c: Same.
2209 * amd64-nat.c: Same.
2210 * arc-tdep.c: Same.
2211 * arch/aarch64-insn.c: Same.
2212 * block.c: Same.
2213 * breakpoint.h: Same.
2214 * btrace.h: Same.
2215 * c-varobj.c: Same.
2216 * cli/cli-decode.c: Same.
2217 * cli/cli-script.c: Same.
2218 * cli/cli-utils.h: Same.
2219 * coff-pe-read.c: Same.
2220 * coffread.c: Same.
2221 * compile/compile-cplus-symbols.c: Same.
2222 * compile/compile-object-run.c: Same.
2223 * completer.c: Same.
2224 * corelow.c: Same.
2225 * cp-support.c: Same.
2226 * demangle.c: Same.
2227 * dwarf-index-write.c: Same.
2228 * dwarf2-frame.c: Same.
2229 * dwarf2-frame.h: Same.
2230 * eval.c: Same.
2231 * frame-base.h: Same.
2232 * frame.h: Same.
2233 * gdbcmd.h: Same.
2234 * gdbtypes.h: Same.
2235 * gnu-nat.c: Same.
2236 * guile/scm-objfile.c: Same.
2237 * i386-tdep.c: Same.
2238 * i386-tdep.h: Same.
2239 * infcall.c: Same.
2240 * infcall.h: Same.
2241 * linux-nat.c: Same.
2242 * m68k-tdep.c: Same.
2243 * macroexp.c: Same.
2244 * memattr.c: Same.
2245 * mi/mi-cmd-disas.c: Same.
2246 * mi/mi-getopt.h: Same.
2247 * mi/mi-main.c: Same.
2248 * minsyms.c: Same.
2249 * nat/aarch64-sve-linux-sigcontext.h: Same.
2250 * objfiles.h: Same.
2251 * ppc-linux-nat.c: Same.
2252 * ppc-linux-tdep.c: Same.
2253 * ppc-tdep.h: Same.
2254 * progspace.h: Same.
2255 * prologue-value.h: Same.
2256 * python/py-evtregistry.c: Same.
2257 * python/py-instruction.h: Same.
2258 * record-btrace.c: Same.
2259 * record-full.c: Same.
2260 * remote.c: Same.
2261 * rs6000-tdep.c: Same.
2262 * ser-tcp.c: Same.
2263 * sol-thread.c: Same.
2264 * sparc-sol2-tdep.c: Same.
2265 * sparc64-tdep.c: Same.
2266 * stabsread.c: Same.
2267 * symfile.c: Same.
2268 * symtab.h: Same.
2269 * target.c: Same.
2270 * tracepoint.c: Same.
2271 * tui/tui-data.h: Same.
2272 * tui/tui-io.c: Same.
2273 * tui/tui-win.c: Same.
2274 * tui/tui.c: Same.
2275 * unittests/rsp-low-selftests.c: Same.
2276 * user-regs.h: Same.
2277 * utils.c: Same.
2278 * utils.h: Same.
2279 * valarith.c: Same.
2280 * valops.c: Same.
2281 * valprint.c: Same.
2282 * valprint.h: Same.
2283 * value.c: Same.
2284 * value.h: Same.
2285 * varobj.c: Same.
2286 * x86-nat.h: Same.
2287 * xtensa-tdep.c: Same.
2288
1834d45f
AT
22892019-10-25 Ali Tamur <tamur@google.com>
2290
2291 * charset.c (find_charset_names): Reflect API change.
2292
5396ae17
CB
22932019-10-25 Christian Biesinger <cbiesinger@google.com>
2294
2295 * symtab.c (struct demangled_name_entry): Change demangled name
2296 to a unique_xmalloc_ptr<char>, now that we don't allocate it as
2297 part of the struct anymore.
2298 (symbol_set_names): No longer obstack allocate + copy the demangled
2299 name, just store the allocated name from bfd.
2300
93878f47
TT
23012019-10-25 Tom Tromey <tromey@adacore.com>
2302
2303 * dwarf2-frame.c (dwarf2_cie_table): Now a typedef.
2304 (bsearch_cie_cmp, add_cie): Remove.
2305 (find_cie): Reimplement.
2306 (decode_frame_entry_1, decode_frame_entry): Change type. Update.
2307 (dwarf2_build_frame_info): Update.
2308
7b71fc97
L
23092019-10-24 H.J. Lu <hongjiu.lu@intel.com>
2310
2311 PR gdb/25126
2312 * symfile.c (reread_symbols): Call forget_cached_source_info to
2313 clear the stale source cache.
2314
cbb5a2ea
CB
23152019-10-24 Christian Biesinger <cbiesinger@google.com>
2316
2317 * configure: Regenerate.
2318 * configure.ac: Remove code that sets python_has_threads.
2319
71737c43
CB
23202019-10-24 Christian Biesinger <cbiesinger@google.com>
2321
2322 * config.in: Regenerate.
2323 * configure: Regenerate.
2324 * configure.ac: Remove the code that uses sed to get the python
2325 version and defines HAVE_LIBPYTHON2_6 / HAVE_LIBPYTHON2_7.
2326
33d569b7
AB
23272019-10-24 Andrew Burgess <andrew.burgess@embecosm.com>
2328
2329 * python/py-progspace.c (pspy_block_for_pc): Return None for all
2330 error paths.
2331
f16f7b7c
TT
23322019-10-23 Tom Tromey <tom@tromey.com>
2333
2334 * arc-tdep.c: Remove ".." from include.
2335 * frv-tdep.c: Remove ".." from include.
2336 * lm32-tdep.c: Remove ".." from include.
2337 * microblaze-tdep.c: Remove ".." from include.
2338 * or1k-tdep.h: Remove ".." from include.
2339 * s12z-tdep.c: Remove ".." from include.
2340 * Makefile.in (OPCODES_CFLAGS): Add comment.
2341 (TOP_CFLAGS): New variable.
2342 (INTERNAL_CFLAGS_BASE): Add TOP_CFLAGS.
2343
6999161a
TT
23442019-10-23 Tom Tromey <tom@tromey.com>
2345
2346 * Makefile.in (READLINE_DIR): Update.
2347
12e7c35e
TBA
23482019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
2349
2350 * infcall.c (call_function_by_hand_dummy): Fix the function
2351 comment. And extract out a code section into...
2352 (reserve_stack_space): ...this new function.
2353
37055cad
TBA
23542019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
2355
2356 * infcall.c (value_arg_coerce): Remove an unused parameter.
2357 (call_function_by_hand_dummy): Update the call to
2358 'value_arg_coerce'.
2359
39bcc47c
TBA
23602019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
2361
2362 * infcall.c (call_function_by_hand_dummy): Refactor.
2363
bd888c0f
TBA
23642019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
2365
2366 * MAINTAINERS (Write After Approval): Add Tankut Baris Aktemur.
2367
c12d372d
TT
23682019-10-23 Tom Tromey <tom@tromey.com>
2369
2370 * configure: Rebuild.
2371 * configure.ac: Don't check for sigprocmask.
2372 * gdbsupport/common.m4 (GDB_AC_COMMON): Check for sigprocmask.
2373
4d0b984b
TT
23742019-10-23 Tom Tromey <tom@tromey.com>
2375
2376 * configure: Rebuild.
2377 * acinclude.m4: Use m4_include, not sinclude.
2378
7e785608
TV
23792019-10-23 Tom de Vries <tdevries@suse.de>
2380
2381 PR breakpoints/24687
2382 * symtab.c (iterate_over_some_symtabs): Apply gdb_realpath on fullname.
2383
403772ef
CB
23842019-10-22 Christian Biesinger <cbiesinger@google.com>
2385
2386 * symtab.c (struct demangled_name_entry) <language>: Change from
2387 bitfield to regular variable.
2388
3a494279
CB
23892019-10-22 Christian Biesinger <cbiesinger@google.com>
2390
2391 * symtab.c (struct demangled_name_entry): Add a constructor.
2392 (free_demangled_name_entry): New function to call the destructor
2393 for demangled_name_entry.
2394 (create_demangled_names_hash): Pass free_demangled_name_entry to
2395 htab_create_alloc.
2396 (symbol_set_names): Call placement new for demangled_name_entry.
2397 * utils.c: No longer include xxhash.h here, now that fast_hash
2398 is inlined in the header.
2399 * utils.h: Instead, include it here.
2400
ccb1ba62
CB
24012019-10-22 Christian Biesinger <cbiesinger@google.com>
2402
2403 * Makefile.in: Link with libxxhash.
2404 * config.in: Regenerate.
2405 * configure: Regenerate.
2406 * configure.ac: Search for libxxhash.
2407 * utils.c (fast_hash): Use xxhash if present.
2408
1a6ff1a9
CB
24092019-10-22 Christian Biesinger <cbiesinger@google.com>
2410
2411 * utils.h (fast_hash): New function.
2412 * symtab.c (hash_demangled_name_entry): Call new function
2413 fast_hash.
2414
7bb43059
CB
24152019-10-22 Christian Biesinger <cbiesinger@google.com>
2416
2417 * symtab.c (struct demangled_name_entry): Change type of mangled
2418 to gdb::string_view. Also adds a constructor that takes the
2419 mangled name.
2420 (hash_demangled_name_entry): Update.
2421 (eq_demangled_name_entry): Update.
2422 (free_demangled_name_entry): New function to call the destructor
2423 now that this is not a POD anymore.
2424 (create_demangled_names_hash): Pass free_demangled_name_entry to
2425 htab_create_alloc.
2426 (symbol_set_names): Update.
2427
7ba99d21
AT
24282019-10-21 Ali Tamur <tamu@google.com>
2429
2430 * dwarf2read.c (dir_index): Change type.
2431 (file_name_index): Likewise.
2432 (line_header::include_dir_at): Change comment and implementation on
2433 whether it is DWARF 5.
2434 (line_header::is_valid_file_index): New function.
2435 (line_header::file_name_at): Change comment and implementation on
2436 whether it is DWARF 5.
2437 (line_header::file_names): Change to private field renamed as
2438 m_file_names and introduce a new accessor method.
2439 (line_header::file_names_size): New method.
2440 (line_header::include_dirs): Change to private field and rename as
2441 m_include_dirs.
2442 (dw2_get_file_names_reader): Define local var at a smaller scope and
2443 reflect API change.
2444 (dwarf2_cu::setup_type_unit_groups): Reflect API change.
2445 (process_structure_scope): Likewise.
2446 (line_header::add_include_dir): Change message and reflect renaming.
2447 (line_header::add_file_name): Likewise.
2448 (read_formatted_entries): Handle DW_FORM_data16.
2449 (dwarf_decode_line_header): Fix line header length calculation.
2450 (psymtab_include_file_name): Change comment and API.
2451 (lnp_state_machine::m_file): Update comment and reflect type change.
2452 (lnp_state_machine::record_line): Reflect type change.
2453 (dwarf_decode_lines): Reflect API change.
2454 (file_file_name): Likewise.
2455 (file_full_name): Likewise.
2456
45f47c3a
AB
24572019-10-21 Andrew Burgess <andrew.burgess@embecosm.com>
2458
2459 * objfiles.c (sort_cmp): Ensure that !(a < a) holds true.
2460
e5f3c0e3
TT
24612019-10-21 Tom Tromey <tom@tromey.com>
2462
2463 * tui/tui-winsource.h (tui_exec_info_content): Remove typedef.
2464
a0a461e5
TT
24652019-10-21 Tom Tromey <tom@tromey.com>
2466
2467 * configure.ac (nm.h): Conditionally create nm.h link. Subst
2468 NM_H. Use AC_CONFIG_LINKS.
2469 * configure: Rebuild.
2470 * Makefile.in (NM_H): New variable.
2471 (generated_files): Add NM_H. Remove gcore.
2472 (nm.h, stamp-nmh): New targets.
2473
54d83b8d
TT
24742019-10-20 Tom Tromey <tom@tromey.com>
2475
2476 * objfiles.h (unlink_objfile, put_objfile_before): Don't declare.
2477 * objfiles.c (unlink_objfile): Move earlier. Now static. Remove
2478 obsolete comment.
2479 (put_objfile_before): Now static.
2480
23771117
SM
24812019-10-19 Simon Marchi <simon.marchi@polymtl.ca>
2482
2483 * gdbsupport/common-utils.h (startswith): Change return type to
2484 bool.
2485
39ef2f62
CB
24862019-10-19 Christian Biesinger <cbiesinger@google.com>
2487
2488 * bcache.c (bcache::print_statistics): Use std::sort instead of qsort.
2489 * breakpoint.c (bp_locations_compare): Rename to...
2490 (bp_location_is_less_than): ...this, and change to std::sort semantics.
2491 (update_global_location_list): Use std::sort instead of qsort.
2492 * buildsym.c (compare_line_numbers): Rename to...
2493 (lte_is_less_than): ...this, and change to std::sort semantics.
2494 (buildsym_compunit::end_symtab_with_blockvector): Use std::sort
2495 instead of qsort.
2496 * disasm.c (compare_lines): Rename to...
2497 (line_is_less_than): ...this, and change to std::sort semantics.
2498 (do_mixed_source_and_assembly_deprecated): Call std::sort instead
2499 of qsort.
2500 * dwarf2-frame.c (qsort_fde_cmp): Rename to...
2501 (fde_is_less_than): ...this, and change to std::sort semantics.
2502 (dwarf2_build_frame_info): Call std::sort instead of qsort.
2503 * mdebugread.c (compare_blocks):
2504 (block_is_less_than): ...this, and change to std::sort semantics.
2505 (sort_blocks): Call std::sort instead of qsort.
2506 * objfiles.c (qsort_cmp): Rename to...
2507 (sort_cmp): ...this, and change to std::sort semantics.
2508 (update_section_map): Call std::sort instead of qsort.
2509 * remote.c (compare_pnums): Remove.
2510 (map_regcache_remote_table): Call std::sort instead of qsort.
2511 * utils.c (compare_positive_ints): Remove.
2512 * utils.h (compare_positive_ints): Remove.
2513 * xcoffread.c (compare_lte): Remove.
2514 (arrange_linetable): Call std::sort instead of qsort.
2515
f71433ee
SDJ
25162019-10-19 Sergio Durigan Junior <sergiodj@redhat.com>
2517
2518 * symfile.c (init_entry_point_info): Fix typo.
2519 * i386-darwin-tdep.c (darwin_dwarf_signal_frame_p): Fix typo.
2520
85102364
TV
25212019-10-18 Tom de Vries <tdevries@suse.de>
2522
2523 * aarch64-tdep.c: Fix typos in comments.
2524 * ada-lang.c: Same.
2525 * ada-tasks.c: Same.
2526 * alpha-tdep.c: Same.
2527 * alpha-tdep.h: Same.
2528 * amd64-nat.c: Same.
2529 * amd64-windows-tdep.c: Same.
2530 * arc-tdep.c: Same.
2531 * arc-tdep.h: Same.
2532 * arch-utils.c: Same.
2533 * arm-nbsd-tdep.c: Same.
2534 * arm-tdep.c: Same.
2535 * ax-gdb.c: Same.
2536 * blockframe.c: Same.
2537 * btrace.c: Same.
2538 * c-varobj.c: Same.
2539 * coff-pe-read.c: Same.
2540 * coffread.c: Same.
2541 * cris-tdep.c: Same.
2542 * darwin-nat.c: Same.
2543 * dbxread.c: Same.
2544 * dcache.c: Same.
2545 * disasm.c: Same.
2546 * dtrace-probe.c: Same.
2547 * dwarf-index-write.c: Same.
2548 * dwarf2-frame-tailcall.c: Same.
2549 * dwarf2-frame.c: Same.
2550 * dwarf2read.c: Same.
2551 * eval.c: Same.
2552 * exceptions.c: Same.
2553 * fbsd-tdep.c: Same.
2554 * findvar.c: Same.
2555 * frame.c: Same.
2556 * frv-tdep.c: Same.
2557 * gnu-v3-abi.c: Same.
2558 * go32-nat.c: Same.
2559 * h8300-tdep.c: Same.
2560 * hppa-tdep.c: Same.
2561 * i386-linux-tdep.c: Same.
2562 * i386-tdep.c: Same.
2563 * ia64-libunwind-tdep.c: Same.
2564 * ia64-tdep.c: Same.
2565 * infcmd.c: Same.
2566 * infrun.c: Same.
2567 * linespec.c: Same.
2568 * linux-nat.c: Same.
2569 * linux-thread-db.c: Same.
2570 * machoread.c: Same.
2571 * mdebugread.c: Same.
2572 * mep-tdep.c: Same.
2573 * mn10300-tdep.c: Same.
2574 * namespace.c: Same.
2575 * objfiles.c: Same.
2576 * opencl-lang.c: Same.
2577 * or1k-tdep.c: Same.
2578 * osabi.c: Same.
2579 * ppc-linux-nat.c: Same.
2580 * ppc-linux-tdep.c: Same.
2581 * ppc-sysv-tdep.c: Same.
2582 * printcmd.c: Same.
2583 * procfs.c: Same.
2584 * record-btrace.c: Same.
2585 * record-full.c: Same.
2586 * remote-fileio.c: Same.
2587 * remote.c: Same.
2588 * rs6000-tdep.c: Same.
2589 * s12z-tdep.c: Same.
2590 * score-tdep.c: Same.
2591 * ser-base.c: Same.
2592 * ser-go32.c: Same.
2593 * skip.c: Same.
2594 * sol-thread.c: Same.
2595 * solib-svr4.c: Same.
2596 * solib.c: Same.
2597 * source.c: Same.
2598 * sparc-nat.c: Same.
2599 * sparc-sol2-tdep.c: Same.
2600 * sparc-tdep.c: Same.
2601 * sparc64-tdep.c: Same.
2602 * stabsread.c: Same.
2603 * stack.c: Same.
2604 * symfile.c: Same.
2605 * symtab.c: Same.
2606 * target-descriptions.c: Same.
2607 * target-float.c: Same.
2608 * thread.c: Same.
2609 * utils.c: Same.
2610 * valops.c: Same.
2611 * valprint.c: Same.
2612 * value.c: Same.
2613 * varobj.c: Same.
2614 * windows-nat.c: Same.
2615 * xcoffread.c: Same.
2616 * xstormy16-tdep.c: Same.
2617 * xtensa-tdep.c: Same.
2618
c5adaa19
TT
26192019-10-17 Tom Tromey <tromey@adacore.com>
2620
2621 * configure: Rebuild.
2622 * configure.ac: Use AC_CONFIG_HEADERS. Create stamp-h there, not
2623 in AC_CONFIG_FILES invocation.
2624 * Makefile.in (Makefile, data-directory/Makefile, stamp-h): Use
2625 new-style config.status invocation.
2626
405feb71
TV
26272019-10-17 Tom de Vries <tdevries@suse.de>
2628
2629 * arm-nbsd-nat.c: Fix typos in comments.
2630 * arm-tdep.c: Same.
2631 * darwin-nat-info.c: Same.
2632 * dwarf2read.c: Same.
2633 * elfread.c: Same.
2634 * event-top.c: Same.
2635 * findvar.c: Same.
2636 * gdbtypes.c: Same.
2637 * hppa-tdep.c: Same.
2638 * i386-tdep.c: Same.
2639 * jit.c: Same.
2640 * main.c: Same.
2641 * mdebugread.c: Same.
2642 * moxie-tdep.c: Same.
2643 * nto-procfs.c: Same.
2644 * osabi.c: Same.
2645 * ppc-linux-tdep.c: Same.
2646 * remote.c: Same.
2647 * riscv-tdep.c: Same.
2648 * s390-tdep.c: Same.
2649 * sh-tdep.c: Same.
2650 * sparc-linux-tdep.c: Same.
2651 * sparc-nat.c: Same.
2652 * stack.c: Same.
2653 * target-descriptions.c: Same.
2654 * top.c: Same.
2655 * varobj.c: Same.
2656
befcd486
TT
26572019-10-16 Tom Tromey <tom@tromey.com>
2658
2659 * objfiles.h (struct objfile) <original_name>: Now const.
2660
17bfe554
CB
26612019-10-16 Christian Biesinger <cbiesinger@google.com>
2662
2663 * gdbsupport/gdb_setjmp.h (SIGSETJMP): Allow passing in the value to
2664 pass on to sigsetjmp's second argument.
2665 * cp-support.c (gdb_demangle): Unblock SIGSEGV if we caught a crash.
2666
950b7495
KS
26672019-10-16 Keith Seitz <keiths@redhat.com>
2668
2669 PR gdb/23567
2670 * dwarf2read.c (dwarf2_per_objfile::locate_sections): Discard
2671 sections whose size is greater than the file size.
2672
ff371ec9
JW
26732019-10-16 Jim Wilson <jimw@sifive.com>
2674
2675 * riscv-tdep.c (riscv_gcc_target_options): New.
2676 (riscv_gnu_triplet_regexp): New.
2677 (riscv_gdbarch_init): Call set_gdbarch_gcc_triplet_options and
2678 set_gdbarch_gnu_triplet_regexp.
2679
fec4e896
CB
26802019-10-16 Christian Biesinger <cbiesinger@google.com>
2681
2682 * Makefile.in: Add xml-builtin.h.
2683 * features/feature_to_c.sh: Add an include for xml-builtin.h
2684 to ensure that the compiler checks that the types match.
2685 * xml-builtin.h: New file.
2686 * xml-support.c (fetch_xml_builtin): Add missing const.
2687 * xml-support.h: Remove declaration of xml_builtins.
2688
d10eccaa
TV
26892019-10-16 Tom de Vries <tdevries@suse.de>
2690
2691 PR tdep/25096
2692 * amd64-tdep.c (amd64_classify_aggregate_field): Factor out of ...
2693 (amd64_classify_aggregate): ... here.
2694 (amd64_classify_aggregate_field): Handled fiels of nested structs
2695 recursively.
2696
745ff14e
TV
26972019-10-16 Tom de Vries <tdevries@suse.de>
2698
2699 PR tdep/24104
2700 * amd64-tdep.c (amd64_push_arguments): Handle AMD64_NO_CLASS in loop
2701 that handles 'theclass'.
2702
791b7405
AB
27032019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
2704
2705 * linespec.c (decode_digits_ordinary): Update comment.
2706 * make-target-delegates: No longer need to handle VEC case.
2707 * memrange.c (normalize_mem_ranges): Update comment.
2708 * namespace.c (add_using_directive): Update comment.
2709 * objc-lang.c (uniquify_strings): Update comment.
2710 * ppc-linux-nat.c (struct thread_points): Update comment.
2711 * probe.h (find_probes_in_objfile): Update comment.
2712 * target.h (enum flash_preserve_mode): Update comment.
2713 * varobj.c (varobj_restrict_range): Update comment.
2714 * varobj.h (varobj_list_children): Update comment.
2715
0dc32745
AB
27162019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
2717
2718 * Makefile.in: Remove references to vec.h and vec.c.
2719 * aarch64-tdep.c: No longer include vec.h.
2720 * ada-lang.c: Likewise.
2721 * ada-lang.h: Likewise.
2722 * arm-tdep.c: Likewise.
2723 * ax.h: Likewise.
2724 * breakpoint.h: Likewise.
2725 * charset.c: Likewise.
2726 * cp-support.h: Likewise.
2727 * dtrace-probe.c: Likewise.
2728 * dwarf2read.c: Likewise.
2729 * extension.h: Likewise.
2730 * gdb_bfd.c: Likewise.
2731 * gdbsupport/gdb_vecs.h: Likewise.
2732 * gdbsupport/vec.c: Remove.
2733 * gdbsupport/vec.h: Remove.
2734 * gdbthread.h: Likewise.
2735 * guile/scm-type.c: Likewise.
2736 * inline-frame.c: Likewise.
2737 * machoread.c: Likewise.
2738 * memattr.c: Likewise.
2739 * memrange.h: Likewise.
2740 * namespace.h: Likewise.
2741 * nat/linux-btrace.h: Likewise.
2742 * osdata.c: Likewise.
2743 * parser-defs.h: Likewise.
2744 * progspace.h: Likewise.
2745 * python/py-type.c: Likewise.
2746 * record-btrace.c: Likewise.
2747 * rust-exp.y: Likewise.
2748 * solib-target.c: Likewise.
2749 * stap-probe.c: Likewise.
2750 * target-descriptions.c: Likewise.
2751 * target-memory.c: Likewise.
2752 * target.h: Likewise.
2753 * varobj.c: Likewise.
2754 * varobj.h: Likewise.
2755 * xml-support.h: Likewise.
2756
ae640021
AB
27572019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
2758
2759 * gdb/dwarf2read.c (dwarf2_per_objfile::~dwarf2_per_objfile):
2760 Update for new std::vector based implementation.
2761 (process_psymtab_comp_unit_reader): Likewise.
2762 (scan_partial_symbols): Likewise.
2763 (recursively_compute_inclusions): Likewise.
2764 (compute_compunit_symtab_includes): Likewise.
2765 (process_imported_unit_die): Likewise.
2766 (queue_and_load_dwo_tu): Likewise.
2767 (follow_die_sig_1): Likewise.
2768 * gdb/dwarf2read.h: Remove DEF_VEC_P.
2769 (typedef dwarf2_per_cu_ptr): Remove.
2770 (struct dwarf2_per_cu_data) <imported_symtabs_empty>: New
2771 function.
2772 (struct dwarf2_per_cu_data) <imported_symtabs_push>: New function.
2773 (struct dwarf2_per_cu_data) <imported_symtabs_size>: New function.
2774 (struct dwarf2_per_cu_data) <imported_symtabs_free>: New function.
2775 (struct dwarf2_per_cu_data) <imported_symtabs>: Change to
2776 std::vector.
2777
55dfc88f
TT
27782019-10-15 Tom Tromey <tromey@adacore.com>
2779
2780 * windows-nat.c (windows_nat_target::resume): Use %x when logging
2781 TID.
2782
96b49c5e
TT
27832019-10-15 Tom Tromey <tromey@adacore.com>
2784
2785 * windows-nat.c (windows_nat_target::fetch_registers)
2786 (windows_nat_target::store_registers): Rename "pid" to "tid".
2787
953cff56
TT
27882019-10-15 Tom Tromey <tromey@adacore.com>
2789
2790 * gdbarch.h, gdbarch.c: Rebuild.
2791 * gdbarch.sh (gcc_target_options): Change return type to
2792 std::string.
2793 * compile/compile.c (get_args): Update.
2794 * nios2-tdep.c (nios2_gcc_target_options): Return std::string.
2795 * arm-linux-tdep.c (arm_linux_gcc_target_options): Return
2796 std::string.
2797 * aarch64-linux-tdep.c (aarch64_linux_gcc_target_options): Return
2798 std::string.
2799 * arch-utils.c (default_gcc_target_options): Return std::string.
2800 * arch-utils.h (default_gcc_target_options): Return std::string.
2801 * s390-tdep.c (s390_gcc_target_options): Return std::string.
2802
81e6b8eb
CB
28032019-10-15 Christian Biesinger <cbiesinger@google.com>
2804
2805 * breakpoint.c (breakpoint_chain): Make static.
2806 * tui/tui-winsource.c: Call iterate_over_breakpoints instead
2807 of accessing breakpoint_chain.
2808
95da600f
CB
28092019-10-15 Christian Biesinger <cbiesinger@google.com>
2810
2811 * breakpoint.c (iterate_over_breakpoints): Change function pointer
2812 to a gdb::function_view and return value to bool.
2813 * breakpoint.h (iterate_over_breakpoints): Likewise.
2814 * dummy-frame.c (pop_dummy_frame_bpt): Update.
2815 (pop_dummy_frame): Update.
2816 * guile/scm-breakpoint.c (bpscm_build_bp_list): Update.
2817 (gdbscm_breakpoints): Update.
2818 * python/py-breakpoint.c (build_bp_list): Update.
2819 (gdbpy_breakpoints): Update.
2820 * python/py-finishbreakpoint.c (bpfinishpy_detect_out_scope_cb):
2821 Update.
2822 (bpfinishpy_handle_stop): Update.
2823 (bpfinishpy_handle_exit): Update.
2824 * solib-svr4.c (svr4_update_solib_event_breakpoint): Update.
2825 (svr4_update_solib_event_breakpoints): Update.
2826
ba18312d
AA
28272019-10-15 Andreas Arnez <arnez@linux.ibm.com>
2828
2829 * s390-tdep.c (s390_effective_inner_type): Ignore static fields
2830 when unwrapping single-field structs.
2831
6acc1a0b
SM
28322019-10-14 Simon Marchi <simon.marchi@polymtl.ca>
2833
2834 * dwarf2read.c: Remove includes.
2835
284782de
SM
28362019-10-13 Simon Marchi <simon.marchi@polymtl.ca>
2837
2838 * ui-out.c (ui_out::call_do_message): Silence
2839 -Wformat-nonliteral warning.
2840
073bbbb0
SM
28412019-10-12 Simon Marchi <simon.marchi@polymtl.ca>
2842
2843 * breakpoint.c: Remove some includes: continuations.h, skip.h,
2844 mi/mi-main.h, readline/readline.h, readline/history.h. Add
2845 include: readline/tilde.h.
2846
7b9a15e1
CB
28472019-10-12 Christian Biesinger <cbiesinger@google.com>
2848
2849 * remote.c (remote_target::get_trace_status): Remove declaration of
2850 trace_regblock_size.
2851
cc8dee1f
CB
28522019-10-12 Christian Biesinger <cbiesinger@google.com>
2853
2854 * cli/cli-cmds.c (max_user_call_depth): Move comment to header.
2855 (show_user): Remove declaration of cmdlist.
2856 * cli/cli-cmds.h (max_user_call_depth): Declare.
2857 * cli/cli-script.c (execute_user_command): Remove declaration
2858 of max_user_call_depth.
2859
a83d4ef6
JW
28602019-10-11 Jim Wilson <jimw@sifive.com>
2861
5f93c5a6
JW
2862 * gdbsupport/print-utils.h (pulongest): Fix comment.
2863 (plongest): Likewise.
2864 (phex): Add missing comment, mention leading zeros.
2865 (phex_nz): Add mention of no leading zeros to comment.
2866
a83d4ef6
JW
2867 * riscv-tdep.c (riscv_push_dummy_code): Change %lld to %s and use
2868 plongest instead of unsigned long long cast.
2869
26344e0c
CB
28702019-10-10 Christian Biesinger <cbiesinger@google.com>
2871
2872 * main.c (captured_main_1): Include gdbtk.h and remove declarations
2873 for external_editor_command and gdbtk_test.
2874
c2c440a9
CB
28752019-10-10 Christian Biesinger <cbiesinger@google.com>
2876
2877 * mi/mi-cmd-var.c (varobjdebug): Remove declaration.
2878 * varobj.c (varobjdebug): Move comment to...
2879 * varobj.h (varobjdebug): ...here, and declare.
2880
a31bff9d
TT
28812019-10-09 Tom Tromey <tom@tromey.com>
2882
2883 * tui/tui-regs.c (tui_data_window::show_registers): Don't call
2884 erase_data_content.
2885
7523da63
TT
28862019-10-09 Tom Tromey <tom@tromey.com>
2887
2888 * tui/tui-wingeneral.h (tui_delete_win): Don't declare.
2889 * tui/tui-stack.c (tui_locator_window::rerender): Update.
2890 * tui/tui-command.c (tui_cmd_window::resize)
2891 (tui_refresh_cmd_win): Update.
2892 * tui/tui-win.c (tui_resize_all, tui_set_focus_command): Update.
2893 * tui/tui.c (tui_rl_other_window, tui_enable): Update.
2894 * tui/tui-data.c (~tui_gen_win_info): Remove.
2895 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
2896 * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts)
2897 (tui_redisplay_readline, tui_mld_flush)
2898 (tui_mld_erase_entire_line, tui_mld_getc, tui_getc): Update.
2899 * tui/tui-regs.c (tui_data_window::delete_data_content_windows)
2900 (tui_data_window::erase_data_content)
2901 (tui_data_item_window::rerender)
2902 (tui_data_item_window::refresh_window): Update.
2903 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window)
2904 (box_win, tui_gen_win_info::make_window)
2905 (tui_gen_win_info::make_visible): Update.
2906 (tui_delete_win): Remove.
2907 * tui/tui-winsource.c
2908 (tui_source_window_base::do_erase_source_content): Update.
2909 (tui_show_source_line, tui_source_window_base::update_tab_width)
2910 (tui_source_window_base::update_exec_info): Update.
2911 * tui/tui-data.h (struct curses_deleter): New.
2912 (struct tui_gen_win_info) <handle>: Now a unique_ptr.
2913 (struct tui_gen_win_info) <~tui_gen_win_info>: Define.
2914
a7798e7f
TT
29152019-10-09 Tom Tromey <tom@tromey.com>
2916
2917 * tui/tui-wingeneral.h (struct tui_gen_win_info): Don't declare.
2918
5c45899e
TT
29192019-10-09 Tom Tromey <tom@tromey.com>
2920
2921 * tui/tui-data.c (tui_win_is_auxiliary): Remove.
2922 * tui/tui-data.h (tui_win_is_auxiliary): Don't declare.
2923
6d7fd9aa
TT
29242019-10-09 Tom Tromey <tom@tromey.com>
2925
2926 * tui/tui-disasm.c (tui_get_low_disassembly_address): Compute
2927 window height directly.
2928 * tui/tui-layout.h (tui_default_win_viewport_height): Don't
2929 declare.
2930 * tui/tui-layout.c (tui_default_win_height): Remove.
2931 (tui_default_win_viewport_height): Remove.
2932
d2dd1084
TT
29332019-10-09 Tom Tromey <tom@tromey.com>
2934
2935 * tui/tui.h: Remove comments.
2936
cff32449
TV
29372019-10-09 Tom de Vries <tdevries@suse.de>
2938
2939 * python/lib/gdb/printer/bound_registers.py: Use
2940 '^builtin_type_bound128' as regexp argument for
2941 add_builtin_pretty_printer.
2942
6a25e8a2
CB
29432019-10-09 Christian Biesinger <cbiesinger@google.com>
2944
2945 * guile/guile.c (guile_extension_script_ops): Remove forward
2946 declaration and mark as static.
2947 (guile_script_ops): Likewise.
2948 (extension_language_guile): Move further down in the file so
2949 it can reference the definitions for guile_{extension_,}script_ops.
2950
6d9d6da4
AA
29512019-10-09 Andreas Arnez <arnez@linux.ibm.com>
2952
2953 * s390-tdep.c (390_process_record): Handle new arch13 instructions
2954 except SORTL, DFLTCC, and KDSA.
2955
3abea05d
TT
29562019-10-08 Tom Tromey <tromey@adacore.com>
2957
2958 * windows-nat.c (struct windows_thread_info_struct) <sf>: Remove.
2959 (struct safe_symbol_file_add_args): Remove.
2960
dde996e2
TT
29612019-10-08 Tom Tromey <tromey@adacore.com>
2962
2963 * windows-nat.c: Don't include buildsym-legacy.h.
2964
cd6fdaa1
TT
29652019-10-08 Tom Tromey <tromey@adacore.com>
2966
2967 * contrib/ari/gdb_ari.sh (%p): Allow gdb-specific %p extensions.
2968
79bb1944
CB
29692019-10-08 Christian Biesinger <cbiesinger@google.com>
2970
2971 * gdbtypes.c (overload_debug): Move comment to header.
2972 * gdbtypes.h (overload_debug): Declare.
2973 * valops.c: Remove declaration of overload_debug, instead
2974 include gdbtypes.h.
2975
34916edc
CB
29762019-10-08 Christian Biesinger <cbiesinger@google.com>
2977
2978 * language.c (show_language_command): Pass lang_frame_mismatch_warn
2979 through _().
2980 (lang_frame_mismatch_warn): Make const, mark with N_(), and
2981 move comment...
2982 * language.h (lang_frame_mismatch_warn): ... here. Also add
2983 declaration.
2984 * top.c (lang_frame_mismatch_warn): Remove declaration.
2985 (check_frame_language_change): Pass lang_frame_mismatch_warn
2986 through _().
2987
bad5c026
CB
29882019-10-07 Christian Biesinger <cbiesinger@google.com>
2989
2990 * c-lang.h (vtbl_ptr_name): Declare.
2991 * cp-valprint.c (vtbl_ptr_name): Remove "extern" now that we get
2992 it from the header.
2993 * stabsread.c (define_symbol): Remove declaration of vtbl_ptr_name.
2994
51f1fdc3
CB
29952019-10-07 Christian Biesinger <cbiesinger@google.com>
2996
2997 * charset.c (your_gdb_wchar_t_is_bogus): Replace with a
2998 gdb_static_assert.
2999
30d1f018
WP
30002019-10-07 Weimin Pan <weimin.pan@oracle.com>
3001
606813d5
WP
3002 * ../Makefile.def (dependencies): Add all-libctf to all-gdb
3003 * ../Makefile.in: Add "all-gdb: maybe-all-libctf"
30d1f018
WP
3004 * ctfread.c: New file.
3005 * ctfread.h: New file.
3006 * elfread.c: Include ctfread.h.
3007 (struct elfinfo text_p): New member ctfsect.
3008 (elf_locate_sections): Mark CTF section.
3009 (elf_symfile_read): Call elfctf_build_psymtabs.
3010 * Makefile.in (LIBCTF): Add.
3011 (CLIBS): Use it.
3012 (CDEPS): Likewise.
3013 (DIST): Add ctfread.c.
606813d5
WP
3014
30152019-10-07 Andrew Burgess <andrew.burgess@embecosm.com>
3016
3017 * ctfread.c (struct nextfield): Renamed to ...
3018 (struct ctf_nextfield): ... this.
3019 (struct field_info): Renamed to ...
3020 (strut ctf_field_info): ... this.
3021 (attach_fields_to_type): Update for renamed structures.
3022 (ctf_add_member_cb): Likewise.
3023 (ctf_add_enum_member_cb): Likewise.
3024 (process_struct_members): Likewise.
3025 (process_enum_type): Likewise.
30d1f018 3026
518fe38c
WP
30272019-10-07 Weimin Pan <weimin.pan@oracle.com>
3028
3029 * tracectf.h: Rename, was ctf.h.
3030 * tracectf.c: Rename, was ctf.c, replace ctf.h with tracectf.h.
3031 * tracefile.c: Likewise.
3032 * tracepoint.c: Remove unused include ctf.h.
3033 * mi/mi-main.c: Likewise.
3034 * Makefile.in Replace ctf.c with tracectf.c.
3035
225f296a
JB
30362019-10-06 Joel Brobecker <brobecker@adacore.com>
3037
3038 * version.in: Change version number to "9.0.50.DATE-git".
3039
77c2dba3
TT
30402019-10-03 Tom Tromey <tom@tromey.com>
3041
3042 PR rust/24976:
3043 * dwarf2read.c (quirk_rust_enum): Handle single-element unions.
3044
179aed7f
AB
30452019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
3046
3047 * f-lang.c (f_language_defn): Use cp_get_symbol_name_matcher and
3048 cp_search_name_hash.
3049 * NEWS: Add entry about nested function support.
3050
0a4b0913
AB
30512019-10-03 Bernhard Heckel <bernhard.heckel@intel.com>
3052 Andrew Burgess <andrew.burgess@embecosm.com>
3053
3054 * cp-namespace.c (cp_search_static_and_baseclasses): Only search
3055 for nested static variables when searchin VAR_DOMAIN.
3056 * dwarf2read.c (add_partial_symbol): Add nested subroutines to the
3057 global scope, update comment.
3058 (add_partial_subprogram): Call add_partial_subprogram recursively
3059 for nested subroutines when processinng Fortran.
3060 (load_partial_dies): Process the child entities of a subprogram
3061 when processing Fortran.
3062 (partial_die_parent_scope): Handle building scope
3063 for Fortran nested functions.
3064 (process_die): Record that nested functions have a scope.
3065 (new_symbol): Always record Fortran subprograms on the global
3066 symbol list.
3067 (determine_prefix): How to build the prefix for Fortran
3068 subprograms.
3069
d8c06f22
AB
30702019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
3071
3072 * linux-nat.c (linux_nat_filter_event): Don't ignore SIGSTOP if we
3073 have just sent the thread a SIGSTOP and are waiting for it to
3074 arrive.
3075
a8b3b8e9
AB
30762019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
3077
3078 * btrace.c (btrace_add_pc): Remove whitespace before the template
3079 parameter in 'std::vector <...>'.
3080 (parse_xml_btrace_block): Likewise.
3081 (btrace_maint_decode_pt): Likewise.
3082 (btrace_maint_update_packets): Likewise.
3083 (btrace_maint_print_packets): Likewise.
3084 * btrace.h (struct btrace_maint_info): Likewise.
3085 * dwarf2read.c (struct type_unit_group): Likewise.
3086 (build_type_psymtabs_reader): Likewise.
3087 * gdbsupport/btrace-common.c (btrace_data_append): Likewise.
3088 * gdbsupport/btrace-common.h (struct btrace_data_bts): Likewise.
3089 * nat/linux-btrace.c (perf_event_read_bts): Likewise.
3090
4d825eab
TV
30912019-10-03 Tom de Vries <tdevries@suse.de>
3092
3093 * cli/cli-style.c (_initialize_cli_style): Adding a '.' at the end of
3094 the first line of the help text for set/show style metadata.
3095
80fd2826
TT
30962019-10-02 Tom Tromey <tromey@adacore.com>
3097
3098 * Makefile.in (COMMON_SFILES): Add common-inferior.c.
3099 * gdbsupport/common-inferior.c: New file.
3100 * infcmd.c (startup_with_shell): Don't define.
3101 * nat/fork-inferior.h (startup_with_shell): Don't declare.
3102 * gdbsupport/common-inferior.h (startup_with_shell): Declare.
3103 * inferior.h (startup_with_shell): Don't declare.
3104
70054538
CB
31052019-10-02 Christian Biesinger <cbiesinger@google.com>
3106
3107 * gdbsupport/gdb_assert.h: Include errors.h.
3108 * gdbsupport/gdb_string_view.h: Include gdb_assert.h.
3109
37f6a7f4
TT
31102019-10-02 Tom Tromey <tromey@adacore.com>
3111
3112 * NEWS: Add $_ada_exception entry.
3113 * ada-lang.c (struct ada_catchpoint): Add constructor.
3114 <m_kind>: New member.
3115 (allocate_location_exception, re_set_exception): Remove
3116 "ex" parameter.
3117 (should_stop_exception): Compute $_ada_exception.
3118 (check_status_exception, print_it_exception)
3119 (print_one_exception, print_mention_exception): Remove
3120 "ex" parameter.
3121 (allocate_location_catch_exception, re_set_catch_exception)
3122 (check_status_exception, print_it_catch_exception)
3123 (print_one_catch_exception, print_mention_catch_exception)
3124 (print_recreate_catch_exception)
3125 (allocate_location_catch_exception_unhandled)
3126 (re_set_catch_exception_unhandled)
3127 (check_status_exception, print_it_catch_exception_unhandled)
3128 (print_one_catch_exception_unhandled)
3129 (print_mention_catch_exception_unhandled)
3130 (print_recreate_catch_exception_unhandled)
3131 (allocate_location_catch_assert, re_set_catch_assert)
3132 (check_status_assert, print_it_catch_assert)
3133 (print_one_catch_assert, print_mention_catch_assert)
3134 (print_recreate_catch_assert)
3135 (allocate_location_catch_handlers, re_set_catch_handlers)
3136 (check_status_handlers, print_it_catch_handlers)
3137 (print_one_catch_handlers, print_mention_catch_handlers)
3138 (print_recreate_catch_handlers): Remove.
3139 (create_ada_exception_catchpoint): Update.
3140 (initialize_ada_catchpoint_ops): Update.
3141
fccf9de1
TT
31422019-10-02 Tom Tromey <tromey@adacore.com>
3143
3144 * ada-lang.c (ada_lookup_simple_minsyms): Remove.
3145 (create_excep_cond_exprs): Simplify exception string computation.
3146 (ada_exception_catchpoint_cond_string): Likewise.
3147
4b610737
TT
31482019-10-02 Tom Tromey <tromey@adacore.com>
3149
3150 * symmisc.c (dump_msymbols): Don't use MSYMBOL_VALUE_ADDRESS.
3151 * ada-lang.c (lesseq_defined_than): Handle
3152 LOC_STATIC.
3153 * dwarf2read.c (dwarf2_per_objfile): Add can_copy
3154 parameter.
3155 (dwarf2_has_info): Likewise.
3156 (new_symbol): Set maybe_copied on symbol when
3157 appropriate.
3158 * dwarf2read.h (dwarf2_per_objfile): Add can_copy
3159 parameter.
3160 <can_copy>: New member.
3161 * elfread.c (record_minimal_symbol): Set maybe_copied
3162 on symbol when appropriate.
3163 (elf_symfile_read): Update call to dwarf2_has_info.
3164 * minsyms.c (lookup_minimal_symbol_linkage): New
3165 function.
3166 * minsyms.h (lookup_minimal_symbol_linkage): Declare.
3167 * symtab.c (get_symbol_address, get_msymbol_address):
3168 New functions.
3169 * symtab.h (get_symbol_address, get_msymbol_address):
3170 Declare.
3171 (SYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_ADDRESS): Handle
3172 maybe_copied.
3173 (struct symbol, struct minimal_symbol) <maybe_copied>:
3174 New member.
3175
1dd58850
TT
31762019-10-02 Tom Tromey <tromey@adacore.com>
3177
3178 * source.c (struct current_source_location): New.
3179 (current_source_key): New global.
3180 (current_source_symtab, current_source_line)
3181 (current_source_pspace): Remove.
3182 (get_source_location): New function.
3183 (get_current_source_symtab_and_line)
3184 (set_default_source_symtab_and_line)
3185 (set_current_source_symtab_and_line)
3186 (clear_current_source_symtab_and_line, select_source_symtab)
3187 (info_source_command, print_source_lines_base)
3188 (info_line_command, search_command_helper, _initialize_source):
3189 Update.
3190
5c281dbb
TT
31912019-10-02 Tom Tromey <tromey@adacore.com>
3192
3193 * source.c (select_source_symtab): Don't call
3194 decode_line_with_current_source.
3195
d3d32391
AB
31962019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
3197
3198 * symtab.c (lookup_global_symbol): Search global block.
3199
38583298
TT
32002019-10-02 Tom Tromey <tromey@adacore.com>
3201
3202 * coffread.c (process_coff_symbol): Update.
3203 * dwarf2read.c (var_decode_location, new_symbol): Update.
3204 * mdebugread.c (parse_symbol): Update.
3205 * objfiles.c (relocate_one_symbol): Update.
3206 * stabsread.c (define_symbol, fix_common_block)
3207 (scan_file_globals): Update.
3208 * symtab.h (SYMBOL_VALUE_ADDRESS): Expand to an rvalue.
3209 (SET_SYMBOL_VALUE_ADDRESS): New macro.
3210 * xcoffread.c (process_xcoff_symbol): Update.
3211
9344c18f
AA
32122019-10-02 Andreas Arnez <arnez@linux.ibm.com>
3213
3214 * MAINTAINERS: Update my email address.
3215
df07e2c7
AB
32162019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
3217
3218 * dwarf2read.c (struct type_unit_group) <tus>: Convert to
3219 std::vector.
3220 (build_type_psymtabs_reader): Update for std::vector.
3221 (build_type_psymtab_dependencies): Likewise.
3222 * dwarf2read.h: Remove use of DEF_VEC_P.
3223 (typedef sig_type_ptr): Delete.
3224
554ac434
AB
32252019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
3226
3227 * btrace.c (btrace_maint_clear): Update to handle change from VEC
3228 to std::vector.
3229 (btrace_maint_decode_pt): Likewise, and move allocation of the
3230 vector outside of the loop.
3231 (btrace_maint_update_packets): Update to handle change from VEC to
3232 std::vector.
3233 (btrace_maint_print_packets): Likewise.
3234 (maint_info_btrace_cmd): Likewise.
3235 * btrace.h: Remove use of DEF_VEC_O.
3236 (typedef btrace_pt_packet_s): Delete.
3237 (struct btrace_maint_info) <packets>: Change fromm VEC to
3238 std::vector.
3239 * gdbsupport/btrace-common.h: Remove 'vec.h' include.
3240
46f29a9a
AB
32412019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
3242
3243 * btrace.c (btrace_compute_ftrace_bts): Update for std::vector,
3244 make accesses into the vector constant references.
3245 (btrace_add_pc): Update for std::vector.
3246 (btrace_stitch_bts): Likewise.
3247 (parse_xml_btrace_block): Likewise.
3248 (btrace_maint_update_packets): Likewise.
3249 (btrace_maint_print_packets): Likewise.
3250 (maint_info_btrace_cmd): Likewise.
3251 * gdbsupport/btrace-common.c (btrace_data::fini): Update for
3252 std::vector.
3253 (btrace_data::empty): Likewise.
3254 (btrace_data_append): Likewise.
3255 * gdbsupport/btrace-common.h: Remove use of DEF_VEC_O.
3256 (typedef btrace_block_s): Delete.
3257 (struct btrace_block): Add constructor.
3258 (struct btrace_data_bts) <blocks>: Change to std::vector.
3259 * nat/linux-btrace.c (perf_event_read_bts): Update for
3260 std::vector.
3261 (linux_read_bts): Likewise.
3262
d770d56f
TT
32632019-10-01 Tom Tromey <tom@tromey.com>
3264
3265 * cli/cli-logging.c (show_logging_filename): Use styled_string.
3266
9d636d67
TT
32672019-10-01 Tom Tromey <tom@tromey.com>
3268
3269 * stack.c (print_frame, info_frame_command_core): Use
3270 styled_string.
3271 * linux-thread-db.c (try_thread_db_load_1)
3272 (try_thread_db_load_from_pdir_1): Use styled_string.
3273 * auto-load.c (file_is_auto_load_safe, execute_script_contents)
3274 (auto_load_section_scripts, info_auto_load_local_gdbinit)
3275 (maybe_print_unsupported_script_warning)
3276 (maybe_print_script_not_found_warning): Use styled_string.
3277 * ada-lang.c (user_select_syms): Use styled_string.
3278
7f6aba03
TT
32792019-10-01 Tom Tromey <tom@tromey.com>
3280
3281 * p-lang.c (pascal_printstr): Use metadata style.
3282 * value.c (show_convenience): Use metadata style.
3283 * valprint.c (valprint_check_validity, val_print_optimized_out)
3284 (val_print_not_saved, val_print_unavailable)
3285 (val_print_invalid_address, generic_val_print, val_print)
3286 (value_check_printable, val_print_array_elements): Use metadata
3287 style.
3288 * ui-out.h (class ui_out) <field_fmt>: New overload.
3289 <do_field_fmt>: Add style parameter.
3290 * ui-out.c (ui_out::field_fmt): New overload.
3291 * typeprint.c (type_print_unknown_return_type)
3292 (val_print_not_allocated, val_print_not_associated): Use metadata
3293 style.
3294 * tui/tui-out.h (class tui_ui_out) <do_field_fmt>: Add style
3295 parameter.
3296 * tui/tui-out.c (tui_ui_out::do_field_fmt): Update.
3297 * tracepoint.c (tvariables_info_1): Use metadata style.
3298 * stack.c (print_frame_arg, print_frame_info, print_frame)
3299 (info_frame_command_core): Use metadata style.
3300 * skip.c (info_skip_command): Use metadata style.
3301 * rust-lang.c (rust_print_enum): Use metadata style.
3302 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
3303 metadata style.
3304 * python/py-framefilter.c (py_print_single_arg): Use metadata
3305 style.
3306 * printcmd.c (do_one_display, print_variable_and_value): Use
3307 metadata style.
3308 * p-valprint.c (pascal_val_print)
3309 (pascal_object_print_value_fields): Use metadata style.
3310 * p-typeprint.c (pascal_type_print_base): Use metadata style.
3311 * mi/mi-out.h (class mi_ui_out) <do_field_fmt>: Add style
3312 parameter.
3313 * mi/mi-out.c (mi_ui_out::do_field_fmt): Update.
3314 * m2-valprint.c (m2_print_long_set): Use metadata style.
3315 * m2-typeprint.c (m2_print_type): Use metadata style.
3316 * infcmd.c (print_return_value_1): Use metadata style.
3317 * gnu-v3-abi.c (print_one_vtable): Use metadata style.
3318 * f-valprint.c (info_common_command_for_block): Use metadata
3319 style.
3320 * f-typeprint.c (f_type_print_base): Use metadata style.
3321 * expprint.c (print_subexp_standard): Use metadata style.
3322 * cp-valprint.c (cp_print_value_fields): Use metadata style.
3323 * cli/cli-style.h (class cli_style_option): Add constructor.
3324 (metadata_style): Declare.
3325 * cli/cli-style.c (metadata_style): New global.
3326 (_initialize_cli_style): Register metadata style.
3327 * cli-out.h (class cli_ui_out) <do_field_fmt>: Add style
3328 parameter.
3329 * cli-out.c (cli_ui_out::do_field_fmt): Update.
3330 * c-typeprint.c (c_type_print_base_struct_union)
3331 (c_type_print_base_1): Use metadata style.
3332 * breakpoint.c (watchpoint_value_print)
3333 (print_one_breakpoint_location): Use metadata style.
3334 * break-catch-syscall.c (print_one_catch_syscall): Use metadata
3335 style.
3336 * break-catch-sig.c (signal_catchpoint_print_one): Use metadata
3337 style.
3338 * ada-valprint.c (val_print_packed_array_elements, printstr)
3339 (print_field_values, ada_val_print_ref, ada_val_print): Use
3340 metadata style.
3341 * ada-typeprint.c (print_array_type, ada_print_type): Use metadata
3342 style.
3343 * ada-tasks.c (print_ada_task_info, info_task): Use metadata
3344 style.
3345 * ada-lang.c (user_select_syms): Use metadata style.
3346
14309bb6
TT
33472019-10-01 Tom Tromey <tom@tromey.com>
3348
3349 * cli/cli-cmds.c (pwd_command): Style output.
3350
6a831f06
PA
33512019-10-01 Pedro Alves <palves@redhat.com>
3352 Tom Tromey <tom@tromey.com>
3353
3354 * symtab.c (print_symbol_info): Use %ps.
3355 (print_msymbol_info): Use %ps.
3356 * symfile.c (symbol_file_add_with_addrs): Use %ps.
3357 * printcmd.c (print_variable_and_value): Use %ps.
3358 * macrocmd.c (show_pp_source_pos): Use %ps.
3359 * infrun.c (print_exited_reason): Use ui_out::message.
3360 * breakpoint.c (watchpoint_check, print_one_breakpoint_location)
3361 (describe_other_breakpoints): Use ui_out::message and new
3362 formats.
3363 (say_where): Use new formats.
3364 (bkpt_print_it, tracepoint_print_one_detail): Use ui_out::message
3365 and new formats.
3366
2a3c1174
PA
33672019-10-01 Pedro Alves <palves@redhat.com>
3368 Tom Tromey <tom@tromey.com>
3369
3370 * unittests/format_pieces-selftests.c: Add gdb_format parameter.
3371 (test_gdb_formats): New function.
3372 (run_tests): Call it.
3373 (test_format_specifier): Update.
3374 * utils.h (fputs_filtered): Update comment.
3375 (vfprintf_styled, vfprintf_styled_no_gdbfmt)
3376 (fputs_styled_unfiltered): Declare.
3377 * utils.c (fputs_styled_unfiltered): New function.
3378 (vfprintf_maybe_filtered): Add gdbfmt parameter.
3379 (vfprintf_filtered): Update.
3380 (vfprintf_unfiltered, vprintf_filtered): Update.
3381 (vfprintf_styled, vfprintf_styled_no_gdbfmt): New functions.
3382 * ui-out.h (enum ui_out_flag) <unfiltered_output,
3383 disallow_ui_out_field>: New constants.
3384 (enum class field_kind): New.
3385 (struct base_field_s, struct signed_field_s): New.
3386 (signed_field): New function.
3387 (struct string_field_s): New.
3388 (string_field): New function.
3389 (struct styled_string_s): New.
3390 (styled_string): New function.
3391 (class ui_out) <message>: Add comment.
3392 <vmessage, call_do_message>: New methods.
3393 <do_message>: Add style parameter.
3394 * ui-out.c (ui_out::call_do_message, ui_out::vmessage): New
3395 methods.
3396 (ui_out::message): Rewrite.
3397 * mi/mi-out.h (class mi_ui_out) <do_message>: Add style
3398 parameter.
3399 * mi/mi-out.c (mi_ui_out::do_message): Add style parameter.
3400 * gdbsupport/format.h (class format_pieces) <format_pieces>: Add
3401 gdb_extensions parameter.
3402 (class format_piece): Add parameter to constructor.
3403 (n_int_args): New field.
3404 * gdbsupport/format.c (format_pieces::format_pieces): Add
3405 gdb_extensions parameter. Handle '*'.
3406 * cli-out.h (class cli_ui_out) <do_message>: Add style parameter.
3407 * cli-out.c (cli_ui_out::do_message): Add style parameter. Call
3408 vfprintf_styled_no_gdbfmt.
3409 (cli_ui_out::do_field_string, cli_ui_out::do_spaces)
3410 (cli_ui_out::do_text, cli_ui_out::field_separator): Allow
3411 unfiltered output.
3412 * ui-style.h (struct ui_file_style) <ptr>: New method.
3413
0dfe5bfb
TT
34142019-10-01 Tom Tromey <tom@tromey.com>
3415
3416 * unittests/format_pieces-selftests.c: Update. Add final format.
3417 * gdbsupport/format.c (format_pieces::format_pieces): Don't add
3418 empty literal pieces.
3419
e43b10e1
TT
34202019-10-01 Tom Tromey <tom@tromey.com>
3421
3422 * ui-out.h (enum class ui_out_style_kind): Remove.
3423 (class ui_out) <field_string, field_stsream, do_field_string>:
3424 Change type of "style".
3425 * ui-out.c (ui_out::field_core_addr, ui_out::field_stream)
3426 (ui_out::field_string): Update.
3427 * tui/tui-out.h (class tui_ui_out) <do_field_string>: Change type
3428 of "style".
3429 * tui/tui-out.c (tui_ui_out::do_field_string): Update.
3430 * tracepoint.c (print_one_static_tracepoint_marker): Update.
3431 * stack.c (print_frame_arg, print_frame_info, print_frame):
3432 Update.
3433 * source.c (print_source_lines_base): Update.
3434 * solib.c (info_sharedlibrary_command): Update.
3435 * skip.c (info_skip_command): Update.
3436 * record-btrace.c (btrace_call_history_src_line)
3437 (btrace_call_history): Update.
3438 * python/py-framefilter.c (py_print_frame): Update.
3439 * mi/mi-out.h (class mi_ui_out) <do_field_string>: Change type of
3440 "style".
3441 * mi/mi-out.c (mi_ui_out::do_table_header)
3442 (mi_ui_out::do_field_signed, mi_ui_out::do_field_unsigned)
3443 (mi_ui_out::do_field_string): Update.
3444 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
3445 Update.
3446 * cli-out.h (class cli_ui_out) <do_field_string>: Change type of
3447 "style".
3448 * cli-out.c (cli_ui_out::do_table_header)
3449 (cli_ui_out::do_field_signed, cli_ui_out::do_field_unsigned)
3450 (cli_ui_out::do_field_skip, cli_ui_out::do_field_string)
3451 (cli_ui_out::do_field_fmt): Update.
3452 * breakpoint.c (print_breakpoint_location): Update.
3453 (update_static_tracepoint): Update.
3454
cd7c32c3
PW
34552019-10-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3456
3457 * main.c (relocate_gdbinit_path_maybe_in_datadir): Remove std::string
3458 conversion of gdb_datadir.
3459 (captured_main_1): Remove xstrdup when assigning to gdb_datadir,
3460 remove not needed c_str ().
3461
8fe0f950
AT
34622019-09-30 Ali Tamur <tamur@google.com>
3463
3464 * dwarf2read.c (skip_one_die): Handle DW_FORM_strx forms.
3465 (dwarf2_string_attr): Likewise.
3466
5f48f8f3
AT
34672019-09-30 Ali Tamur <tamur@google.com>
3468
3469 * dwarf2read.c (process_full_comp_unit): Remove whitespace at the EOL.
3470 (process_full_type_unit): Likewise.
3471 (dump_die_shallow): Likewise.
3472 (cu_debug_loc_section): Likewise.
3473
6fb08628
CB
34742019-09-28 Christian Biesinger <cbiesinger@google.com>
3475
3476 * minsyms.c (compare_minimal_symbols): Rename to...
3477 (minimal_symbol_is_less_than): ...this, and adjust to STL
3478 conventions (return bool, take arguments as references)
3479 (minimal_symbol_reader::install): Call std::sort instead
3480 of qsort.
3481
c7ee338a
CB
34822019-09-29 Christian Biesinger <cbiesinger@google.com>
3483
3484 * minsyms.h (msymbol_hash): Document that this is a case-insensitive
3485 hash and why.
3486 * objfiles.h (struct objfile_per_bfd_storage) <demangled_names_hash,
3487 msymbol_hash, msymbol_demangled_hash>: Improve comments.
3488
703a86c2
SM
34892019-09-30 Simon Marchi <simon.marchi@polymtl.ca>
3490
3491 * psymtab.c (add_psymbol_to_list): Move comment to psympriv.h.
3492 * psympriv.h (add_psymbol_to_list): Move comment here and update
3493 it.
3494
0df0352a
TV
34952019-09-29 Tom de Vries <tdevries@suse.de>
3496
3497 * contrib/cc-with-tweaks.sh (get_tmpdir): New function.
3498 Use $tmpdir/$(basename "$output_file").dwz instead of
3499 "${output_file}.dwz".
3500
ad75efa6
SM
35012019-09-28 Simon Marchi <simon.marchi@polymtl.ca>
3502
3503 PR gdb/25045
3504 * hppa-linux-nat.c: Include gdbarch.h.
3505
ececd218
CB
35062019-09-26 Christian Biesinger <cbiesinger@google.com>
3507
3508 * blockframe.c (find_pc_partial_function): Change return type to bool.
3509 * elfread.c (elf_gnu_ifunc_resolve_name): Likewise.
3510 * minsyms.c (in_gnu_ifunc_stub): Likewise.
3511 (stub_gnu_ifunc_resolve_name): Likewise.
3512 * symtab.c (compare_filenames_for_search): Likewise.
3513 (compare_glob_filenames_for_search): Likewise.
3514 (matching_obj_sections): Likewise.
3515 (symbol_matches_domain): Likewise.
3516 (find_line_symtab): Change out param EXACT_MATCH to bool *.
3517 (find_line_pc): Change return type to bool.
3518 (find_line_pc_range): Likewise.
3519 (producer_is_realview): Likewise.
3520 * symtab.h (symbol_matches_domain): Likewise.
3521 (find_pc_partial_function): Likewise.
3522 (find_pc_line_pc_range): Likewise.
3523 (in_gnu_ifunc_stub): Likewise.
3524 (struct gnu_ifunc_fns) <gnu_ifunc_resolve_name>: Likewise.
3525 (find_line_pc): Likewise.
3526 (find_line_pc_range): Likewise.
3527 (matching_obj_sections): Likewise.
3528 (find_line_symtab): Change out parameter to bool.
3529 (producer_is_realview): Change return type to bool.
3530 (compare_filenames_for_search): Likewise.
3531 (compare_glob_filenames_for_search): Likewise.
3532
27a900b8
TT
35332019-09-26 Tom Tromey <tom@tromey.com>
3534
3535 * Makefile.in (COMMON_SFILES): Remove gdb_usleep.c.
3536 (HFILES_NO_SRCDIR): Remove gdb_usleep.h.
3537 * gdb_usleep.h: Remove.
3538 * gdb_usleep.c: Remove.
3539 * utils.c: Don't include gdb_usleep.h.
3540
5d63b30a
TT
35412019-09-26 Tom Tromey <tromey@adacore.com>
3542
3543 * python/py-type.c (type_to_type_object): Call check_typedef
3544 for stub types.
3545
12904d37
TT
35462019-09-26 Tom Tromey <tom@tromey.com>
3547
3548 * utils.h (initialize_utils): Don't declare.
3549 * top.c (gdb_init): Don't call initialize_utils.
3550 * utils.c (initialize_utils): Remove. Move contents...
3551 (_initialize_utils): ... here.
3552
858f25f0
TT
35532019-09-25 Tom Tromey <tom@tromey.com>
3554
3555 * python/py-objfile.c (objfpy_get_build_id): Use bin2hex.
3556 * utils.h (make_hex_string): Don't declare.
3557 * utils.c (make_hex_string): Remove.
3558
3d435220
TV
35592019-09-24 Tom de Vries <tdevries@suse.de>
3560
3561 PR gdb/23815
3562 * amd64-linux-nat.c (amd64_linux_nat_target::fetch_registers):
3563 Initialize xstateregs before ptrace PTRACE_GETREGSET call.
3564
ddd44b70
DD
35652019-09-23 Dimitar Dimitrov <dimitar@dinux.eu>
3566
3567 * NEWS: Mention new simulator port for PRU.
3568
f945dedf
CB
35692019-09-23 Christian Biesinger <cbiesinger@google.com>
3570
3571 * ada-exp.y (write_object_remaining): Update.
3572 * ada-lang.c (ada_decode): Return a std::string instead of a char*
3573 and eliminate the static buffer.
3574 (ada_decode_symbol): Update.
3575 (ada_la_decode): Update.
3576 (ada_sniff_from_mangled_name): Update.
3577 (is_valid_name_for_wild_match): Update.
3578 (ada_lookup_name_info::matches): Update and simplify.
3579 (name_matches_regex): Update.
3580 (ada_add_global_exceptions): Update.
3581 * ada-lang.h (ada_decode): Update signature.
3582 * ada-varobj.c (ada_varobj_describe_simple_array_child): Update.
3583 * dwarf-index-write.c (debug_names::insert): Update.
3584
7ab78ccb
SM
35852019-09-21 Simon Marchi <simon.marchi@polymtl.ca>
3586
3587 * solib-svr4.c (svr4_iterate_over_objfiles_in_search_order): Fix
3588 formatting.
3589
9252448b
SM
35902019-09-21 Simon Marchi <simon.marchi@polymtl.ca>
3591
3592 * breakpoint.h (bp_location) <inserted, permanent, duplicate>:
3593 Change "nonzero" to "true" in documentation.
3594
626ca2c0
CB
35952019-09-20 Christian Biesinger <cbiesinger@google.com>
3596
3597 * solib-darwin.c (darwin_lookup_lib_symbol): Remove.
3598 (_initialize_darwin_solib): Don't set
3599 darwin_so_ops.lookup_lib_global_symbol.
3600 * solib-svr4.c (set_solib_svr4_fetch_link_map_offsets): Call
3601 set_gdbarch_iterate_over_objfiles_in_search_order.
3602 (elf_lookup_lib_symbol): Rename to...
3603 (svr4_iterate_over_objfiles_in_search_order): this, and update
3604 to iterate semantics.
3605 (_initialize_svr4_solib): Don't set lookup_lib_global_symbol.
3606 * solib.c (solib_global_lookup): Remove.
3607 * solist.h (struct target_so_ops): Remove lookup_lib_global_symbol.
3608 (solib_global_lookup): Remove.
3609 * symtab.c (lookup_global_or_static_symbol): Remove call to
3610 solib_global_lookup.
3611
5a3a0d63
JB
36122019-09-20 Joel Brobecker <brobecker@adacore.com>
3613
3614 * NEWS: Move entries about default MI version now being
3615 version 3, and about the GDB/MI fix for multi-location
3616 breakpoints to the "since GDB 8.3" section.
3617
ffea1427
JB
36182019-09-20 Joel Brobecker <brobecker@adacore.com>
3619
3620 GDB 8.3.1 released.
3621
abf516c6
UW
36222019-09-20 Ulrich Weigand <uweigand@de.ibm.com>
3623
3624 * NEWS: Mention that Cell/B.E. debugging support was removed.
3625 * MAINTAINERS: Remove spu target.
3626
3627 * config/djgpp/fnchange.lst: Remove entries for removed files.
3628
3629 * Makefile.in (ALL_TARGET_OBS): Remove solib-spu.o,
3630 spu-multiarch.o, and spu-tdep.o.
3631 (HFILES_NO_SRCDIR): Remove solib-spu.h and spu-tdep.h.
3632 (ALLDEPFILES): Remove solib-spu.c, spu-linux-nat.c,
3633 spu-multiarch.c, and spu-tdep.c.
3634 * spu-linux-nat.c: Remove file.
3635 * spu-multiarch.c: Remove file.
3636 * spu-tdep.c: Remove file.
3637 * spu-tdep.h: Remove file.
3638 * solib-spu.c: Remove file.
3639 * solib-spu.h: Remove file.
3640
3641 * configure.host (powerpc64*-*-linux*): Remove Cell/B.E. support.
3642 * configure.nat (spu-linux): Remove.
3643 * configure.tgt (powerpc*-*-linux*): Remove solib-spu.o and
3644 solib-multiarch.o from gdb_target_obs.
3645 (spu*-*-*): Remove.
3646
3647 * arch/ppc-linux-common.h (struct ppc_linux_features): Remove "cell"
3648 feature flag.
3649 (ppc_linux_no_features): Update.
3650 * arch/ppc-linux-common.c (ppc_linux_match_description): Remove
3651 Cell/B.E. support.
3652 * arch/ppc-linux-tdesc.h (tdesc_powerpc_cell32l): Remove declaration.
3653 (tdesc_powerpc_cell64l): Likewise.
3654 * nat/ppc-linux.h (PPC_FEATURE_CELL): Remove.
3655 * ppc-linux-nat.c (ppc_linux_nat_target::read_description): Remove
3656 Cell/B.E. support.
3657 * ppc-linux-tdep.h: Do not include "solib-spu.h" or "spu-tdep.h".
3658 Do not include "features/rs6000/powerpc-cell32l.c" or
3659 "features/rs6000/powerpc-cell64l.c".
3660 (ppc_linux_spu_section): Remove.
3661 (ppc_linux_core_read_description): Remove Cell/B.E. support.
3662 (spe_context_objfile, spe_context_lm_addr, spe_context_offset,
3663 spe_context_cache_ptid, spe_context_cache_ptid): Remove.
3664 (ppc_linux_spe_context_lookup): Remove.
3665 (ppc_linux_spe_context_inferior_created): Remove.
3666 (ppc_linux_spe_context_solib_loaded): Remove.
3667 (ppc_linux_spe_context_solib_unloaded): Remove.
3668 (ppc_linux_spe_context): Remove.
3669 (struct ppu2spu_cache): Remove.
3670 (ppu2spu_prev_arch, ppu2spu_this_id, ppu2spu_prev_register): Remove.
3671 (struct ppu2spu_data): Remove.
3672 (ppu2spu_unwind_register, ppu2spu_sniffer, ppu2spu_dealloc_cache,
3673 ppu2spu_unwind): Remove.
3674 (ppc_linux_init_abi): Remove Cell/B.E. support.
3675 * rs6000-tdep.h (rs6000_gdbarch_init): Remove Cell/B.E. support.
3676
3677 * features/Makefile (rs6000/powerpc-cell32l-expedite): Remove.
3678 (rs6000/powerpc-cell64l-expedite): Likewise
3679 (WHICH): Remove rs6000/powerpc-cell32l and rs6000/powerpc-cell64l.
3680 (XMLTOC): Remove rs6000/powerpc-cell32l.xml and
3681 rs6000/powerpc-cell64l.xml.
3682 * features/rs6000/powerpc-cell32l.xml: Remove.
3683 * features/rs6000/powerpc-cell64l.xml: Likewise.
3684 * features/rs6000/powerpc-cell32l.c: Remove generated file.
3685 * features/rs6000/powerpc-cell64l.c: Likewise.
3686 * regformats/rs6000/powerpc-cell32l.dat: Remove generated file.
3687 * regformats/rs6000/powerpc-cell64l.dat: Likewise.
3688 * regformats/reg-spu.dat: Remove.
3689
3690 * target.h (enum target_object): Remove TARGET_OBJECT_SPU.
3691 * corelow.c (struct spuid_list): Remove.
3692 (add_to_spuid_list): Remove.
3693 (core_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
3694 * remote.c (PACKET_qXfer_spu_read, PACKET_qXfer_spu_write): Remove.
3695 (remote_protocol_features): Remove associated entries.
3696 (_initialize_remote): No longer initialize them.
3697 (remote_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
3698 * linux-nat.c (SPUFS_MAGIC): Remove.
3699 (linux_proc_xfer_spu): Remove.
3700 (spu_enumerate_spu_ids): Remove.
3701 (linux_nat_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
3702 * linux-tdep.c (-linux_spu_make_corefile_notes): Remove.
3703 (linux_make_corefile_notes): No longer call it.
3704
3705 * regcache.c (cooked_read_test): Remove bfd_arch_spu special case.
3706 (cooked_write_test): Likewise.
3707
78e8cb91
TT
37082019-09-20 Tom Tromey <tom@tromey.com>
3709
3710 * NEWS: Mention case-sensitivity of TUI commands.
3711 * tui/tui-win.c (tui_set_focus_command): Now case-sensitive.
3712 (tui_set_win_height_command, parse_scrolling_args): Likewise.
3713 * tui/tui-layout.c (tui_layout_command): Now case-sensitive.
3714
f074b67e
TT
37152019-09-20 Tom Tromey <tom@tromey.com>
3716
3717 * tui/tui-source.c (tui_source_window::set_contents): Use
3718 make_unique_xstrdup.
3719 * tui/tui-disasm.c (tui_disasm_window::set_contents): Use
3720 make_unique_xstrdup.
3721
63c4bf19
TT
37222019-09-20 Tom Tromey <tom@tromey.com>
3723
3724 * tui/tui-data.c: Remove separator comments.
3725 * tui/tui-layout.c: Remove separator comments.
3726 * tui/tui-win.c: Remove separator comments.
3727 * tui/tui-wingeneral.c: Remove separator comments.
3728
43df9b2f
TT
37292019-09-20 Tom Tromey <tom@tromey.com>
3730
3731 * tui/tui.h (strcat_to_buf): Don't declare.
3732 * tui/tui.c (strcat_to_buf): Remove.
3733
7226433c
TT
37342019-09-20 Tom Tromey <tom@tromey.com>
3735
3736 * tui/tui-source.h (struct tui_source_window) <m_fullname>: Rename
3737 from "fullname".
3738 * tui/tui-source.c (tui_source_window::set_contents)
3739 (tui_source_window::location_matches_p)
3740 (tui_source_window::maybe_update): Update.
3741
80df3337
TT
37422019-09-20 Tom Tromey <tom@tromey.com>
3743
3744 * tui/tui-regs.h (struct tui_data_window) <get_current_group>:
3745 Update.
3746 <m_regs_content, m_regs_column_count, m_current_group>: Add "m_"
3747 prefix.
3748 * tui/tui-regs.c (tui_data_window::last_regs_line_no)
3749 (tui_data_window::line_from_reg_element_no)
3750 (tui_data_window::first_reg_element_no_inline)
3751 (tui_data_window::show_registers)
3752 (tui_data_window::show_register_group)
3753 (tui_data_window::display_registers_from)
3754 (tui_data_window::display_registers_from_line)
3755 (tui_data_window::first_data_item_displayed)
3756 (tui_data_window::delete_data_content_windows)
3757 (tui_data_window::erase_data_content)
3758 (tui_data_window::do_scroll_vertical)
3759 (tui_data_window::refresh_window)
3760 (tui_data_window::check_register_values): Update.
3761
9923f347
TT
37622019-09-20 Tom Tromey <tom@tromey.com>
3763
3764 * tui/tui-stack.h (MAX_LOCATOR_ELEMENT_LEN): Remove define.
3765 (struct tui_locator_window) <full_name, proc_name>: Now
3766 std::string.
3767 * tui/tui-stack.c (tui_locator_window::make_status_line)
3768 (tui_locator_window::set_locator_fullname)
3769 (tui_locator_window::set_locator_info): Update.
3770 * tui/tui-source.c (tui_source_window::set_contents)
3771 (tui_source_window::showing_source_p): Update.
3772
b76251ab
TT
37732019-09-20 Tom Tromey <tom@tromey.com>
3774
3775 * tui/tui-stack.c (tui_locator_window::set_locator_fullname):
3776 Don't call tui_locator_win_info_ptr.
3777
0891be08
TT
37782019-09-20 Tom Tromey <tom@tromey.com>
3779
3780 * tui/tui-win.c (tui_resize_all): Don't call refresh.
3781
1b935acf
TT
37822019-09-20 Tom Tromey <tom@tromey.com>
3783
3784 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Use 1 as
3785 height for locator.
3786 * tui/tui-stack.c (tui_locator_window::rerender): Call scrollok.
3787 * tui/tui-layout.c (show_source_disasm_command, show_data)
3788 (show_source_or_disasm_and_command): Use 1 as height for locator.
3789
9abd8a65
TT
37902019-09-20 Tom Tromey <tom@tromey.com>
3791
3792 * tui/tui.c (tui_enable): Update.
3793 * tui/tui-win.c (tui_sigwinch_handler, tui_async_resize_screen):
3794 Update.
3795 * tui/tui-data.h (tui_win_resized, tui_set_win_resized_to):
3796 Update.
3797 * tui/tui-data.c (win_resized): Now bool.
3798 (tui_win_resized): Return bool.
3799 (tui_set_win_resized_to): Accept a bool.
3800
b5457826
TT
38012019-09-20 Tom Tromey <tom@tromey.com>
3802
3803 * tui/tui-regs.h (struct tui_data_window) <show_register_group>:
3804 Change type of "refresh_values_only".
3805 * tui/tui-regs.c (tui_data_window::show_register_group): Change
3806 type of "refresh_values_only".
3807
6b915f7d
TT
38082019-09-20 Tom Tromey <tom@tromey.com>
3809
3810 * tui/tui-disasm.c (struct tui_asm_line) <addr_string, insn>: Now
3811 std::string.
3812 (tui_disassemble): Add "pos" parameter.
3813 (tui_disasm_window::set_contents): Simplify.
3814
2ad52f6f
TT
38152019-09-20 Tom Tromey <tom@tromey.com>
3816
3817 * tui/tui-winsource.h (struct tui_source_window_base)
3818 <show_source_content>: Now private.
3819 * tui/tui-winsource.c
3820 (tui_source_window_base::show_source_content): Don't handle empty
3821 content case.
3822
b3b1bde6
TT
38232019-09-20 Tom Tromey <tom@tromey.com>
3824
3825 * tui/tui-layout.c (show_source_disasm_command)
3826 (show_source_or_disasm_and_command): Don't call
3827 show_source_content.
3828
71a25ed2
TT
38292019-09-20 Tom Tromey <tom@tromey.com>
3830
3831 * tui/tui-stack.h (struct tui_locator_window) <make_status_line>:
3832 Declare.
3833 * tui/tui-stack.c (tui_locator_window::make_status_line): Rename
3834 from tui_make_status_line.
3835 (tui_locator_window::rerender): Update.
3836
f8532154
TT
38372019-09-20 Tom Tromey <tom@tromey.com>
3838
3839 * tui/tui-stack.c (tui_make_status_line): Return std::string.
3840 (tui_locator_window::rerender): Update.
3841
2d81b349
TT
38422019-09-20 Tom Tromey <tom@tromey.com>
3843
3844 * tui/tui-winsource.h (struct tui_source_window_base)
3845 <~tui_source_window_base>: Don't declare.
3846 <fullname>: Remove.
3847 * tui/tui-winsource.c (~tui_source_window_base): Remove.
3848 * tui/tui-source.h (struct tui_source_window) <fullname>: New
3849 member.
3850 * tui/tui-source.c (tui_source_window::set_contents): Update.
3851 (tui_source_window::location_matches_p)
3852 (tui_source_window::maybe_update): Update.
3853
f14bec58
TT
38542019-09-20 Tom Tromey <tom@tromey.com>
3855
3856 * tui/tui-winsource.h (~tui_source_element): Remove.
3857 (tui_source_element): Update.
3858 (struct tui_source_element) <line>: Now a unique_xmalloc_ptr.
3859 * tui/tui-winsource.c (tui_show_source_line): Update.
3860 * tui/tui-source.c (tui_source_window::set_contents): Update.
3861 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
3862
78d5933a
TT
38632019-09-20 Tom Tromey <tom@tromey.com>
3864
3865 * tui/tui-data.h (tui_clear_source_windows_detail): Don't
3866 declare.
3867 * tui/tui-layout.c (tui_add_win_to_layout): Don't call
3868 tui_clear_source_windows_detail.
3869 * tui/tui-winsource.h (struct tui_source_window_base)
3870 <clear_detail>: Don't declare.
3871 * tui/tui-winsource.c (tui_source_window_base::clear_detail):
3872 Remove.
3873 * tui/tui-data.c (tui_clear_source_windows_detail): Remove.
3874
d4207696
TT
38752019-09-20 Tom Tromey <tromey@adacore.com>
3876
3877 PR ada/24919:
3878 * block.c (contained_in): Fix final return value.
3879
00f93c44
AM
38802019-09-20 Alan Modra <amodra@gmail.com>
3881
3882 * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Use bfd_set_usrdata.
3883 * dwarf2read.c (dwarf2_read_gdb_index, dwarf2_read_debug_names),
3884 (read_indirect_string_from_dwz): Use bfd accessor.
3885 * dwarf2read.h (struct dwz_file <filename>): Likewise.
3886 * machoread.c (macho_symfile_read_all_oso): Likewise.
3887 * solib.c (solib_bfd_open): Likewise.
3888
e4153ae6
CB
38892019-09-19 Christian Biesinger <cbiesinger@google.com>
3890
3891 * eval.c: Move declaration of overload_resolution to...
3892 * value.h: ...here.
3893
c7ae7675
CB
38942019-09-19 Christian Biesinger <cbiesinger@google.com>
3895
3896 * arm-linux-nat.c: Remove extern declaration for arm_apcs_32.
3897 * arm-linux-tdep.c: Likewise.
3898 * arm-nbsd-nat.c: Likewise.
3899 * arm-tdep.h: Declare arm_apcs_32.
3900 * arm-tdep.c: Move documentation for arm_apcs_32 to arm-tdep.h.
3901
e86f08d2
CB
39022019-09-19 Christian Biesinger <cbiesinger@google.com>
3903
3904 * dwarf2loc.c: Remove extern declaration of dwarf_always_disassemble.
3905 * dwarf2read.h: Declare dwarf_always_disassemble.
3906
f64e2f40
TV
39072019-09-19 Tom de Vries <tdevries@suse.de>
3908
3909 PR gdb/25009
3910 * source-cache.c (source_cache::ensure): Catch exception thrown during
3911 construction of the highlighter.
3912
fd361982
AM
39132019-09-18 Alan Modra <amodra@gmail.com>
3914
3915 * aarch64-linux-tdep.c, * arm-tdep.c, * auto-load.c,
3916 * coff-pe-read.c, * coffread.c, * corelow.c, * dbxread.c,
3917 * dicos-tdep.c, * dwarf2-frame.c, * dwarf2read.c, * elfread.c,
3918 * exec.c, * fbsd-tdep.c, * gcore.c, * gdb_bfd.c, * gdb_bfd.h,
3919 * hppa-tdep.c, * i386-cygwin-tdep.c, * i386-fbsd-tdep.c,
3920 * i386-linux-tdep.c, * jit.c, * linux-tdep.c, * machoread.c,
3921 * maint.c, * mdebugread.c, * minidebug.c, * mips-linux-tdep.c,
3922 * mips-sde-tdep.c, * mips-tdep.c, * mipsread.c, * nto-tdep.c,
3923 * objfiles.c, * objfiles.h, * osabi.c, * ppc-linux-tdep.c,
3924 * ppc64-tdep.c, * record-btrace.c, * record-full.c, * remote.c,
3925 * rs6000-aix-tdep.c, * rs6000-tdep.c, * s390-linux-tdep.c,
3926 * s390-tdep.c, * solib-aix.c, * solib-dsbt.c, * solib-frv.c,
3927 * solib-spu.c, * solib-svr4.c, * solib-target.c,
3928 * spu-linux-nat.c, * spu-tdep.c, * symfile-mem.c, * symfile.c,
3929 * symmisc.c, * symtab.c, * target.c, * windows-nat.c,
3930 * xcoffread.c, * cli/cli-dump.c, * compile/compile-object-load.c,
3931 * mi/mi-interp.c: Update throughout for bfd section macro and
3932 function changes.
3933 * gcore (gcore_create_callback): Use bfd_set_section_lma.
3934 * spu-tdep.c (spu_overlay_new_objfile): Likewise.
3935
11061048
TT
39362019-09-18 Tom Tromey <tom@tromey.com>
3937
3938 * NEWS: Add entry.
3939 * tui/tui.c (tui_initialize_readline): Set name of keymap. Do not
3940 call rl_initialize.
3941 (tui_enable): Do not call rl_initialize.
3942
7a27b85f
CG
39432019-09-18 Christian Groessler <chris@groessler.org>
3944
3945 * alpha-linux-nat.c: Include gdbarch.h.
3946
f64eea3a
SM
39472019-09-18 Simon Marchi <simon.marchi@polymtl.ca>
3948
3949 * ui-file.c: Include cli/cli-style.h.
3950 (term_cli_styling): Remove cli_styling declaration.
3951
e6f7f6d1
AM
39522019-09-18 Alan Modra <amodra@gmail.com>
3953
3954 * arm-tdep.c (arm_record_special_symbol): Update bfd_get_section
3955 to bfd_asymbol_section.
3956
1d38e9d1
AM
39572019-09-18 Alan Modra <amodra@gmail.com>
3958
3959 * amd64-dicos-tdep.c (amd64_dicos_osabi_sniffer): Constify target.
3960 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
3961 * i386-dicos-tdep.c (i386_dicos_osabi_sniffer): Likewise.
3962
90d92a63
AM
39632019-09-18 Alan Modra <amodra@gmail.com>
3964
3965 * solib-spu.c (spu_bfd_open): Use bfd_set_filename.
3966 * spu-linux-nat.c (spu_bfd_open): Likewise.
3967
a3d181d2
CB
39682019-09-18 Christian Biesinger <cbiesinger@google.com>
3969
3970 * dwarf2loc.c: Change extern declaration of dwarf_always_disassemble
3971 to bool to match definition in dwarf2read.c.
3972
491144b5
CB
39732019-09-17 Christian Biesinger <cbiesinger@google.com>
3974
3975 * ada-lang.c (ada_ignore_descriptive_types_p): Change to bool.
3976 (print_signatures): Likewise.
3977 (trust_pad_over_xvs): Likewise.
3978 * arch/aarch64-insn.c (aarch64_debug): Likewise.
3979 * arch/aarch64-insn.h (aarch64_debug): Likewise.
3980 * arm-linux-nat.c (arm_apcs_32): Likewise.
3981 * arm-linux-tdep.c (arm_apcs_32): Likewise.
3982 * arm-nbsd-nat.c (arm_apcs_32): Likewise.
3983 * arm-tdep.c (arm_debug): Likewise.
3984 (arm_apcs_32): Likewise.
3985 * auto-load.c (debug_auto_load): Likewise.
3986 (auto_load_gdb_scripts): Likewise.
3987 (global_auto_load): Likewise.
3988 (auto_load_local_gdbinit): Likewise.
3989 (auto_load_local_gdbinit_loaded): Likewise.
3990 * auto-load.h (global_auto_load): Likewise.
3991 (auto_load_local_gdbinit): Likewise.
3992 (auto_load_local_gdbinit_loaded): Likewise.
3993 * breakpoint.c (disconnected_dprintf): Likewise.
3994 (breakpoint_proceeded): Likewise.
3995 (automatic_hardware_breakpoints): Likewise.
3996 (always_inserted_mode): Likewise.
3997 (target_exact_watchpoints): Likewise.
3998 (_initialize_breakpoint): Update.
3999 * breakpoint.h (target_exact_watchpoints): Change to bool.
4000 * btrace.c (maint_btrace_pt_skip_pad): Likewise.
4001 * cli/cli-cmds.c (trace_commands): Likewise.
4002 * cli/cli-cmds.h (trace_commands): Likewise.
4003 * cli/cli-decode.c (add_setshow_boolean_cmd): Change int* argument
4004 to bool*.
4005 * cli/cli-logging.c (logging_overwrite): Change to bool.
4006 (logging_redirect): Likewise.
4007 (debug_redirect): Likewise.
4008 * cli/cli-option.h (option_def) <boolean>: Change return type to bool*.
4009 (struct boolean_option_def) <get_var_address_cb_>: Change return type
4010 to bool.
4011 <boolean_option_def>: Update.
4012 (struct flag_option_def): Change default type of Context to bool
4013 from int.
4014 <flag_option_def>: Change return type of var_address_cb_ to bool*.
4015 * cli/cli-setshow.c (do_set_command): Cast to bool* instead of int*.
4016 (get_setshow_command_value_string): Likewise.
4017 * cli/cli-style.c (cli_styling): Change to bool.
4018 (source_styling): Likewise.
4019 * cli/cli-style.h (source_styling): Likewise.
4020 (cli_styling): Likewise.
4021 * cli/cli-utils.h (struct qcs_flags) <quiet, cont, silent>: Change
4022 to bool.
4023 * command.h (var_types): Update comment.
4024 (add_setshow_boolean_cmd): Change int* var argument to bool*.
4025 * compile/compile-cplus-types.c (debug_compile_cplus_types): Change to
4026 bool.
4027 (debug_compile_cplus_scopes): Likewise.
4028 * compile/compile-internal.h (compile_debug): Likewise.
4029 * compile/compile.c (compile_debug): Likewise.
4030 (struct compile_options) <raw>: Likewise.
4031 * cp-support.c (catch_demangler_crashes): Likewise.
4032 * cris-tdep.c (usr_cmd_cris_version_valid): Likewise.
4033 (usr_cmd_cris_dwarf2_cfi): Likewise.
4034 * csky-tdep.c (csky_debug): Likewise.
4035 * darwin-nat.c (enable_mach_exceptions): Likewise.
4036 * dcache.c (dcache_enabled_p): Likewise.
4037 * defs.h (info_verbose): Likewise.
4038 * demangle.c (demangle): Likewise.
4039 (asm_demangle): Likewise.
4040 * dwarf-index-cache.c (debug_index_cache): Likewise.
4041 * dwarf2-frame.c (dwarf2_frame_unwinders_enabled_p): Likewise.
4042 * dwarf2-frame.h (dwarf2_frame_unwinders_enabled_p): Likewise.
4043 * dwarf2read.c (check_physname): Likewise.
4044 (use_deprecated_index_sections): Likewise.
4045 (dwarf_always_disassemble): Likewise.
4046 * eval.c (overload_resolution): Likewise.
4047 * event-top.c (set_editing_cmd_var): Likewise.
4048 (exec_done_display_p): Likewise.
4049 * event-top.h (set_editing_cmd_var): Likewise.
4050 (exec_done_display_p): Likewise.
4051 * exec.c (write_files): Likewise.
4052 * fbsd-nat.c (debug_fbsd_lwp): Likewise
4053 (debug_fbsd_nat): Likewise.
4054 * frame.h (struct frame_print_options) <print_raw_frame_arguments>:
4055 Likewise.
4056 (struct set_backtrace_options) <backtrace_past_main>: Likewise.
4057 <backtrace_past_entry> Likewise.
4058 * gdb-demangle.h (demangle): Likewise.
4059 (asm_demangle): Likewise.
4060 * gdb_bfd.c (bfd_sharing): Likewise.
4061 * gdbcore.h (write_files): Likewise.
4062 * gdbsupport/common-debug.c (show_debug_regs): Likewise.
4063 * gdbsupport/common-debug.h (show_debug_regs): Likewise.
4064 * gdbthread.h (print_thread_events): Likewise.
4065 * gdbtypes.c (opaque_type_resolution): Likewise.
4066 (strict_type_checking): Likewise.
4067 * gnu-nat.c (gnu_debug_flag): Likewise.
4068 * guile/scm-auto-load.c (auto_load_guile_scripts): Likewise.
4069 * guile/scm-param.c (pascm_variable): Add boolval.
4070 (add_setshow_generic): Update.
4071 (pascm_param_value): Update.
4072 (pascm_set_param_value_x): Update.
4073 * hppa-tdep.c (hppa_debug): Change to bool..
4074 * infcall.c (may_call_functions_p): Likewise.
4075 (coerce_float_to_double_p): Likewise.
4076 (unwind_on_signal_p): Likewise.
4077 (unwind_on_terminating_exception_p): Likewise.
4078 * infcmd.c (startup_with_shell): Likewise.
4079 * inferior.c (print_inferior_events): Likewise.
4080 * inferior.h (startup_with_shell): Likewise.
4081 (print_inferior_events): Likewise.
4082 * infrun.c (step_stop_if_no_debug): Likewise.
4083 (detach_fork): Likewise.
4084 (debug_displaced): Likewise.
4085 (disable_randomization): Likewise.
4086 (non_stop): Likewise.
4087 (non_stop_1): Likewise.
4088 (observer_mode): Likewise.
4089 (observer_mode_1): Likewise.
4090 (set_observer_mode): Update.
4091 (sched_multi): Change to bool.
4092 * infrun.h (debug_displaced): Likewise.
4093 (sched_multi): Likewise.
4094 (step_stop_if_no_debug): Likewise.
4095 (non_stop): Likewise.
4096 (disable_randomization): Likewise.
4097 * linux-tdep.c (use_coredump_filter): Likewise.
4098 (dump_excluded_mappings): Likewise.
4099 * linux-thread-db.c (auto_load_thread_db): Likewise.
4100 (check_thread_db_on_load): Likewise.
4101 * main.c (captured_main_1): Update.
4102 * maint-test-options.c (struct test_options_opts) <flag_opt, xx1_opt,
4103 xx2_opt, boolean_opt>: Change to bool.
4104 * maint-test-settings.c (maintenance_test_settings_boolean): Likewise.
4105 * maint.c (maintenance_profile_p): Likewise.
4106 (per_command_time): Likewise.
4107 (per_command_space): Likewise.
4108 (per_command_symtab): Likewise.
4109 * memattr.c (inaccessible_by_default): Likewise.
4110 * mi/mi-main.c (mi_async): Likewise.
4111 (mi_async_1): Likewise.
4112 * mips-tdep.c (mips64_transfers_32bit_regs_p): Likewise.
4113 * nat/fork-inferior.h (startup_with_shell): Likewise.
4114 * nat/linux-namespaces.c (debug_linux_namespaces): Likewise.
4115 * nat/linux-namespaces.h (debug_linux_namespaces): Likewise.
4116 * nios2-tdep.c (nios2_debug): Likewise.
4117 * or1k-tdep.c (or1k_debug): Likewise.
4118 * parse.c (parser_debug): Likewise.
4119 * parser-defs.h (parser_debug): Likewise.
4120 * printcmd.c (print_symbol_filename): Likewise.
4121 * proc-api.c (procfs_trace): Likewise.
4122 * python/py-auto-load.c (auto_load_python_scripts): Likewise.
4123 * python/py-param.c (union parmpy_variable): Add "bool boolval" field.
4124 (set_parameter_value): Update.
4125 (add_setshow_generic): Update.
4126 * python/py-value.c (copy_py_bool_obj): Change argument from int*
4127 to bool*.
4128 * python/python.c (gdbpy_parameter_value): Cast to bool* instead of
4129 int*.
4130 * ravenscar-thread.c (ravenscar_task_support): Change to bool.
4131 * record-btrace.c (record_btrace_target::store_registers): Update.
4132 * record-full.c (record_full_memory_query): Change to bool.
4133 (record_full_stop_at_limit): Likewise.
4134 * record-full.h (record_full_memory_query): Likewise.
4135 * remote-notif.c (notif_debug): Likewise.
4136 * remote-notif.h (notif_debug): Likewise.
4137 * remote.c (use_range_stepping): Likewise.
4138 (interrupt_on_connect): Likewise.
4139 (remote_break): Likewise.
4140 * ser-tcp.c (tcp_auto_retry): Likewise.
4141 * ser-unix.c (serial_hwflow): Likewise.
4142 * skip.c (debug_skip): Likewise.
4143 * solib-aix.c (solib_aix_debug): Likewise.
4144 * spu-tdep.c (spu_stop_on_load_p): Likewise.
4145 (spu_auto_flush_cache_p): Likewise.
4146 * stack.c (struct backtrace_cmd_options) <full, no_filters, hide>:
4147 Likewise.
4148 (struct info_print_options) <quiet>: Likewise.
4149 * symfile-debug.c (debug_symfile): Likewise.
4150 * symfile.c (auto_solib_add): Likewise.
4151 (separate_debug_file_debug): Likewise.
4152 * symfile.h (auto_solib_add): Likewise.
4153 (separate_debug_file_debug): Likewise.
4154 * symtab.c (basenames_may_differ): Likewise.
4155 (struct filename_partial_match_opts) <dirname, basename>: Likewise.
4156 (struct info_print_options) <quiet, exclude_minsyms>: Likewise.
4157 (struct info_types_options) <quiet>: Likewise.
4158 * symtab.h (demangle): Likewise.
4159 (basenames_may_differ): Likewise.
4160 * target-dcache.c (stack_cache_enabled_1): Likewise.
4161 (code_cache_enabled_1): Likewise.
4162 * target.c (trust_readonly): Likewise.
4163 (may_write_registers): Likewise.
4164 (may_write_memory): Likewise.
4165 (may_insert_breakpoints): Likewise.
4166 (may_insert_tracepoints): Likewise.
4167 (may_insert_fast_tracepoints): Likewise.
4168 (may_stop): Likewise.
4169 (auto_connect_native_target): Likewise.
4170 (target_stop_and_wait): Update.
4171 (target_async_permitted): Change to bool.
4172 (target_async_permitted_1): Likewise.
4173 (may_write_registers_1): Likewise.
4174 (may_write_memory_1): Likewise.
4175 (may_insert_breakpoints_1): Likewise.
4176 (may_insert_tracepoints_1): Likewise.
4177 (may_insert_fast_tracepoints_1): Likewise.
4178 (may_stop_1): Likewise.
4179 * target.h (target_async_permitted): 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 * thread.c (struct info_threads_opts) <show_global_ids>: Likewise.
4187 (make_thread_apply_all_options_def_group): Change argument from int*
4188 to bool*.
4189 (thread_apply_all_command): Update.
4190 (print_thread_events): Change to bool.
4191 * top.c (confirm): Likewise.
4192 (command_editing_p): Likewise.
4193 (history_expansion_p): Likewise.
4194 (write_history_p): Likewise.
4195 (info_verbose): Likewise.
4196 * top.h (confirm): Likewise.
4197 (history_expansion_p): Likewise.
4198 * tracepoint.c (disconnected_tracing): Likewise.
4199 (circular_trace_buffer): Likewise.
4200 * typeprint.c (print_methods): Likewise.
4201 (print_typedefs): Likewise.
4202 * utils.c (debug_timestamp): Likewise.
4203 (sevenbit_strings): Likewise.
4204 (pagination_enabled): Likewise.
4205 * utils.h (sevenbit_strings): Likewise.
4206 (pagination_enabled): Likewise.
4207 * valops.c (overload_resolution): Likewise.
4208 * valprint.h (struct value_print_options) <prettyformat_arrays,
4209 prettyformat_structs, vtblprint, unionprint, addressprint, objectprint,
4210 stop_print_at_null, print_array_indexes, deref_ref, static_field_print,
4211 pascal_static_field_print, raw, summary, symbol_print, finish_print>:
4212 Likewise.
4213 * windows-nat.c (new_console): Likewise.
4214 (cygwin_exceptions): Likewise.
4215 (new_group): Likewise.
4216 (debug_exec): Likewise.
4217 (debug_events): Likewise.
4218 (debug_memory): Likewise.
4219 (debug_exceptions): Likewise.
4220 (useshell): Likewise.
4221 * windows-tdep.c (maint_display_all_tib): Likewise.
4222 * xml-support.c (debug_xml): Likewise.
4223
f1b620e9
MG
42242019-09-17 Mike Gulick <mgulick@mathworks.com>
4225
4226 * source.c (prepare_path_for_appending): New function.
4227 (openp): Make use of new function.
4228 (find_and_open_source): Search for the compilation directory and
4229 source file as a relative path beneath the directory search path.
4230
67f3ed6a
AB
42312019-09-17 Andrew Burgess <andrew.burgess@embecosm.com>
4232
4233 * source-cache.c (source_cache::get_line_charpos): Catch
4234 exceptions and return false, this matches the behaviour documented
4235 in the header file.
4236
74332189
JB
42372019-09-17 Joel Brobecker <brobecker@adacore.com>
4238
4239 * ada-tasks.c (info_task): Remove quoting of the task's name.
4240
f2f24aa9
CB
42412019-09-16 Christian Biesinger <cbiesinger@google.com>
4242
4243 * symfile.c (auto_solib_add): Replace comment with a reference
4244 to the header file.
4245
6a062a93
CB
42462019-09-14 Christian Biesinger <cbiesinger@google.com>
4247
4248 * NEWS: Mention that gdb can now be compiled with Python 3
4249 on Windows.
4250
ec6c8338
AB
42512019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
4252
4253 * maint.c (maint_print_section_data::maint_print_section_data):
4254 Force use of 'float log10 (float)' by casting the argument to
4255 float.
4256
aa17805f
AB
42572019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
4258
4259 * maint.c: Add 'cmath' include.
4260 (struct maint_print_section_data): New structure.
4261 (print_section_index): New function.
4262 (print_bfd_section_info): Add header comment, small whitespace
4263 cleanup, and update to call new print_section_index function.
4264 (print_objfile_section_info): Likewise.
4265 (maint_obj_section_from_bfd_section): New function.
4266 (print_bfd_section_info_maybe_relocated): New function.
4267 (maintenance_info_sections): Add header comment, always use
4268 bfd_map_over_sections instead of ALL_OBJFILE_OSECTIONS.
4269
3dd9bb46
AB
42702019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
4271
4272 * psymtab.c (find_pc_sect_psymtab): Move baseaddr local into more
4273 inner scope, add check that the objfile has psymtabs before
4274 checking psymtabs_addrmap.
4275 * psymtab.h (psymtab_storage) <psymtabs_addrmap>: Extend comment.
4276
4993045d
PW
42772019-09-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4278
4279 * NEWS: Announce that Ada task names are now shown at more places,
4280 and between quotes (except in info task output).
4281 * gdb/ada-tasks.c (task_to_str): New function.
4282 (display_current_task_id): Call task_to_str.
4283 (task_command_1): Likewise.
4284 (print_ada_task_info): In non-mi mode, Properly align headers and data
4285 when task-id length is > 9 (9 is the default for a 32 bits CORE_ADDR).
4286
7a289707
RO
42872019-09-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4288
4289 * procfs.c (procfs_target::wait) <PR_FAULTED>: Get signal from
4290 prstatus.pr_lwp.pr_info instead of making it up.
4291
f2aec7f6
CB
42922019-09-11 Christian Biesinger <cbiesinger@google.com>
4293
4294 * auto-load.c (auto_load_expand_dir_vars): Update.
4295 * defs.h (gdb_datadir): Change to std::string.
4296 (python_libdir): Likewise.
4297 (relocate_gdb_directory): Change return type to std::string.
4298 * guile/guile.c (gdbscm_data_directory): Update.
4299 (initialize_scheme_side): Update.
4300 * jit.c (jit_reader_dir): Change to std::string.
4301 (jit_reader_load_command): Update.
4302 * main.c (gdb_datadir): Change to std::string.
4303 (python_libdir): Likewise.
4304 (set_gdb_data_directory): Update.
4305 (relocate_path): Change to return std::string.
4306 (relocate_gdb_directory): Change to return std::string.
4307 (relocate_gdbinit_path_maybe_in_datadir): Update.
4308 (captured_main_1): Update.
4309 * python/python.c (do_start_initialization): Update.
4310 * top.c (show_gdb_datadir): Update.
4311 * xml-syscall.c (xml_init_syscalls_info): Update.
4312 (init_syscalls_info): Update.
4313
9224a013
CB
43142019-09-11 Christian Biesinger <cbiesinger@google.com>
4315
4316 * main.c (relocate_gdbinit_path_maybe_in_datadir): Factor this code
4317 out of get_init_files.
4318 (get_init_files): Update.
4319
f48cd836
CB
43202019-09-11 Christian Biesinger <cbiesinger@google.com>
4321
4322 * main.c (get_init_files): Change to use std::string.
4323 (captured_main_1): Update.
4324 (print_gdb_help): Update.
4325
9cab7ecd
AT
43262019-09-11 Ali Tamur <tamur@google.com>
4327
4328 *gdb/target-float.c (host_float_ops<T>::to_longest): Update
4329 implementation.
4330
67547d89
CB
43312019-09-11 Christian Biesinger <cbiesinger@google.com>
4332
4333 * dbxread.c (read_dbx_symtab): Update.
4334 * dwarf2read.c (load_partial_dies): Update.
4335 * mdebugread.c (parse_partial_symbols): Update.
4336 (handle_psymbol_enumerators): Update.
4337 * psympriv.h (add_psymbol_to_list): Change type of copy_names to bool.
4338 * psymtab.c (add_psymbol_to_bcache): Likewise.
4339 (add_psymbol_to_list): Likewise.
4340 * symtab.c (symbol_set_names): Likewise.
4341 * symtab.h (symbol_set_names): Likewise.
4342 * xcoffread.c (scan_xcoff_symtab): Update.
4343
64b2d4a0
TT
43442019-09-11 Tom Tromey <tom@tromey.com>
4345
4346 * symfile-mem.c (symbol_file_add_from_memory): Use
4347 bfd_set_filename.
4348 * solib-darwin.c (darwin_bfd_open): Use bfd_set_filename.
4349 * solib-aix.c (solib_aix_bfd_open): Use bfd_set_filename.
4350
3b00ef10
TT
43512019-09-10 Tom Tromey <tromey@adacore.com>
4352
4353 * dwarf-index-write.c (write_psymbols): Extend error message.
4354 (debug_names::insert): Add Ada code.
4355 (debug_names::write_psymbols): Remove Ada check.
4356 (debug_names) <m_string_obstack>: New member.
4357 * dwarf2read.c (gdb_index_symbol_name_matcher): Remove.
4358 (gdb_index_symbol_name_matcher::matches): Remove.
4359 (mapped_index_base::find_name_components_bounds): Add "lang"
4360 parameter.
4361 (mapped_index_base::build_name_components): Also split names
4362 according to Ada syntax.
4363 (dw2_expand_symtabs_matching_symbol): Loop over languages. Change
4364 type of "match_callback".
4365 (check_match, check_find_bounds_finds)
4366 (dw2_expand_symtabs_matching): Update.
4367 (dw2_debug_names_iterator): Add new constructor.
4368 (dw2_debug_names_map_matching_symbols): New function.
4369 (dw2_debug_names_expand_symtabs_matching): Update.
4370 (dwarf2_debug_names_functions): Use
4371 dw2_debug_names_map_matching_symbols.
4372
aa391654
TT
43732019-09-10 Tom Tromey <tromey@adacore.com>
4374
4375 * dwarf2read.c (dw2_get_file_names_reader): Add the
4376 CU's file name to the results.
4377
b054970d
TT
43782019-09-10 Tom Tromey <tromey@adacore.com>
4379
4380 * ada-lang.c (add_nonlocal_symbols): Combine calls to
4381 map_matching_symbols. Update.
4382 * dwarf2read.c (dw2_map_matching_symbols): Update.
4383 * psymtab.c (match_partial_symbol): Change type; update.
4384 (psym_map_matching_symbols): Likewise.
4385 * symfile-debug.c (debug_qf_map_matching_symbols): Change
4386 type; update.
4387 * symfile.h (struct quick_symbol_functions)
4388 <map_matching_symbols>: Change "name" to be a lookup_name_info.
4389 Remove "match".
4390
6a3dbf1b
TT
43912019-09-10 Tom Tromey <tromey@adacore.com>
4392
4393 * psymtab.c (map_block): Remove.
4394 (psym_map_matching_symbols): Use iterate_over_symbols_terminated.
4395 * symtab.c (iterate_over_symbols_terminated): New function.
4396 * symtab.c (iterate_over_symbols_terminated): Declare.
4397
6969f124
TT
43982019-09-10 Tom Tromey <tromey@adacore.com>
4399
4400 * ada-lang.c (ada_iterate_over_symbols): Return bool.
4401 * language.h (struct language_defn) <la_iterate_over_symbols>:
4402 Return bool.
4403 * symtab.c (iterate_over_symbols): Return bool.
4404 * symtab.h (iterate_over_symbols): Return bool.
4405
199b4314
TT
44062019-09-10 Tom Tromey <tromey@adacore.com>
4407
4408 * ada-lang.c (aux_add_nonlocal_symbols): Change type.
4409 (add_nonlocal_symbols): Update.
4410 * dwarf2read.c (dw2_map_matching_symbols): Change type.
4411 * psymtab.c (map_block, psym_map_matching_symbols): Change type.
4412 * symfile-debug.c (debug_qf_map_matching_symbols): Change type.
4413 * symfile.h (struct quick_symbol_functions) <map_matching_symbols>:
4414 Change type of "callback". Remove "data".
4415
a084a2a6
AT
4416
44172019-09-09 Ali Tamur <tamur@google.com>
4418
4419 * dwarf2read.c (comp_unit_head): Update comment.
4420 (dwarf2_dwo_name): New function declaration.
4421 (dwarf_unit_type_name): New function declaration.
4422 (read_comp_unit_head): Add support for new compilation units,
4423 DW_UT_partial, DW_UT_skeleton, DW_UT_split_compile, DW_UT_split_type.
4424 Particularly, DW_UT_skeleton and DW_UT_split_compile have dwo_id
4425 (currently named as "signature") in their header. Also clarify error
4426 messages.
4427 (lookup_dwo_id): New function. Returns the dwo id of the given
4428 compile unit.
4429 (lookup_dwo_unit): Use the new lookup_dwo_id function.
4430 (init_cutu_and_read_dies): Use the new dwarf2_dwo_name and lookup_dwo_id
4431 functions.
4432 (create_dwo_cu_reader): Use the added lookup_dwo_id function.
4433 (dwarf2_dwo_name): Get the dwo name if present.
4434 (dwarf_unit_type_name): Convert DW_UT_* types to string for diagnostic
4435 purposes.
4436
25a2915e
TT
44372019-09-09 Tom Tromey <tom@tromey.com>
4438
4439 * tui/tui-win.c (tui_all_windows_info): Use ui_out.
4440
e4df0874
PW
44412019-09-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4442
4443 * python/python.c (do_start_initialization): Make progname_copy static,
4444 to avoid a leak report.
4445
8634b462
TT
44462019-09-08 Tom Tromey <tom@tromey.com>
4447
4448 * tui/tui-wingeneral.c (box_win): Truncate long window titles.
4449
c7f839cb
SM
44502019-09-07 Simon Marchi <simon.marchi@efficios.com>
4451
4452 * dwarf2read.c (struct dw2_symtab_iterator) <block_index>:
4453 Change type to gdb::optional<block_enum>.
4454 (dw2_symtab_iter_init): Change block_index parameter type
4455 to gdb::optional<block_enum>.
4456 (dw2_lookup_symbol): Change block_index parameter
4457 type to block_enum.c
4458 (dw2_debug_names_lookup_symbol): Likewise.
4459 * psymtab.c (psym_lookup_symbol): Likewise.
4460 * symfile-debug.c (debug_qf_lookup_symbol): Likewise.
4461 * symfile.h (struct quick_symbol_functions) <lookup_symbol>:
4462 Likewise.
4463
ead0e69a
CB
44642019-09-06 Christian Biesinger <cbiesinger@google.com>
4465
4466 * defs.h (relocate_gdb_directory): Change int to bool in
4467 signature and rename flag to relocatable.
4468 * main.c (relocate_path): Likewise.
4469 (relocate_gdb_directory): Likewise.
4470
b16c44de
AM
44712019-09-06 Alan Modra <amodra@gmail.com>
4472
4473 * coffread.c (coff_symfile_read): Constify filename variable.
4474 * dbxread.c (dbx_symfile_init, coffstab_build_psymtabs),
4475 (elfstab_build_psymtabs, stabsect_build_psymtabs): Likewise.
4476 * gdb_bfd.c (gdb_bfd_close_or_warn): Likewise.
4477 * solib.c (reload_shared_libraries_1): Likewise.
4478 * symfile.c (reread_symbols): Likewise.
4479 * solib-aix.c (solib_aix_bfd_open): Add cast for xfree of filename.
4480 * solib-darwin.c (darwin_bfd_open): Likewise.
4481 * symfile-mem.c (symbol_file_add_from_memory): Likewise.
4482
06ff036e
AB
44832019-09-03 Andrew Burgess <andrew.burgess@embecosm.com>
4484
4485 * psymtab.c (print_partial_symbols): Handle missing domain_enum
4486 values MODULE_DOMAIN and COMMON_BLOCK_DOMAIN.
4487
4e962e74
TT
44882019-09-03 Tom Tromey <tromey@adacore.com>
4489
4490 * ada-valprint.c (ada_val_print_num): Don't recurse for range
4491 types.
4492 (has_negatives): Unbias a range type bound.
4493 * dwarf2read.c (read_subrange_type): Handle DW_AT_GNU_bias.
4494 * gdbtypes.c (operator==): Handle new field.
4495 (create_range_type): Add "bias" parameter.
4496 (create_static_range_type, resolve_dynamic_range): Update.
4497 * gdbtypes.h (struct range_bounds) <bias>: New member.
4498 (create_range_type): Add bias parameter.
4499 * printcmd.c (print_scalar_formatted): Unbias range types.
4500 * value.c (unpack_long): Unbias range types.
4501 (pack_long): Bias range types.
4502
d90b8f26
AH
45032019-09-02 Alan Hayward <alan.hayward@arm.com>
4504
4505 * solib-svr4.c (svr4_find_and_create_probe_breakpoints): Check all
4506 probe arguments.
4507
fe01123e
AH
45082019-09-02 Alan Hayward <alan.hayward@arm.com>
4509
4510 * break-catch-throw.c (fetch_probe_arguments): Use gdbarch.
4511 * dtrace-probe.c (dtrace_probe::get_argument_count): Likewise.
4512 * probe.c (probe_safe_evaluate_at_pc) (compute_probe_arg)
4513 (compile_probe_arg): Likewise.
4514 * probe.h (get_argument_count): Likewise.
4515 * solib-svr4.c (solib_event_probe_action): Likewise.
4516 * stap-probe.c (stap_probe::get_argument_count): Likewise.
4517
e661ef01
AH
45182019-09-02 Alan Hayward <alan.hayward@arm.com>
4519
4520 * solib-svr4.c (svr4_find_and_create_probe_breakpoints): Move
4521 code to here...
4522 (svr4_create_solib_event_breakpoints): ...from here.
4523
47a536d9
SDJ
45242019-08-30 Sergio Durigan Junior <sergiodj@redhat.com>
4525
4526 * nat/fork-inferior.c (trace_start_error): Remove "\nError: "
4527 suffix from warning message.
4528
d6a00eba
TT
45292019-08-30 Tom Tromey <tom@tromey.com>
4530
4531 * tui/tui-winsource.h (struct tui_source_window_base)
4532 <refresh_all>: Don't declare.
4533 * tui/tui-winsource.c (tui_source_window_base::refresh_all):
4534 Remove.
4535 * tui/tui-win.c (tui_refresh_all_win): Don't call refresh_all or
4536 tui_show_locator_content.
4537 * tui/tui-regs.h (struct tui_data_window) <refresh_all>: Don't
4538 declare.
4539 * tui/tui-regs.c (tui_data_window::refresh_all): Remove.
4540 * tui/tui-data.h (struct tui_win_info) <refresh_all>: Don't
4541 declare.
4542
55b2657b
TT
45432019-08-30 Tom Tromey <tom@tromey.com>
4544
4545 * tui/tui-io.c (tui_cont_sig): Don't call wrefresh.
4546
12a8555a
TT
45472019-08-30 Tom Tromey <tom@tromey.com>
4548
4549 * tui/tui-stack.c (_initialize_tui_stack): Move later.
4550 Remove unnecessary forward declarations.
4551
900ac242
TT
45522019-08-30 Tom Tromey <tom@tromey.com>
4553
4554 * tui/tui-stack.c (tui_locator_window::set_locator_fullname): Call
4555 rerender.
4556 (tui_update_locator_fullname, tui_show_frame_info): Don't call
4557 tui_show_locator_content.
4558
99ab33fb
TT
45592019-08-30 Tom Tromey <tom@tromey.com>
4560
4561 * tui/tui-stack.c (tui_show_locator_content): Move lower. Rewrite.
4562 (tui_locator_window::rerender): Rewrite using body of previous
4563 tui_show_locator_content.
4564
e594a5d1
TT
45652019-08-30 Tom Tromey <tom@tromey.com>
4566
4567 * tui/tui-stack.h (struct tui_locator_window) <set_locator_info,
4568 set_locator_fullname>: New methods.
4569 * tui/tui-stack.c (tui_locator_window::set_locator_fullname):
4570 Rename from tui_set_locator_fullname.
4571 (tui_locator_window::set_locator_info): Rename from
4572 tui_set_locator_info. Return bool.
4573 (tui_update_locator_fullname, tui_show_frame_info): Update.
4574
715bb467
TT
45752019-08-30 Tom Tromey <tom@tromey.com>
4576
4577 * tui/tui-layout.c (show_layout): Don't call tui_refresh_all.
4578
772f3f03
TT
45792019-08-30 Tom Tromey <tom@tromey.com>
4580
4581 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Don't
4582 call touchwin.
4583
108e13ab
TT
45842019-08-30 Tom Tromey <tom@tromey.com>
4585
4586 * tui/tui-wingeneral.c (box_win): Assume win_info and
4587 win_info->handle cannot be NULL.
4588
cdaa6eb4
TT
45892019-08-30 Tom Tromey <tom@tromey.com>
4590
4591 * tui/tui-regs.h (struct tui_data_item_window) <rerender,
4592 refresh_window>: Declare.
4593 * tui/tui-regs.c (tui_data_window::display_registers_from): Call
4594 resize.
4595 (tui_data_item_window::rerender): Rename from
4596 tui_display_register.
4597 (tui_data_item_window::refresh_window): New method.
4598 * tui/tui-layout.c (tui_gen_win_info::resize): Do nothing on
4599 no-op.
4600
89df7f90
TT
46012019-08-30 Tom Tromey <tom@tromey.com>
4602
4603 * tui/tui-regs.h (struct tui_data_window) <regs_content,
4604 regs_column_count, current_group>: Move later. Now private.
4605 <get_current_group>: New method.
4606 * tui/tui-regs.c (tui_reg_command): Update.
4607 * tui/tui-layout.c (tui_set_layout): Update.
4608
1bf2866a
TT
46092019-08-30 Tom Tromey <tom@tromey.com>
4610
4611 * tui/tui-regs.c (tui_data_window::display_registers_from_line)
4612 (tui_data_window::rerender): Don't call
4613 check_and_display_highlight_if_needed.
4614 (tui_data_window::refresh_all): Remove call to
4615 erase_data_content.
4616
0670413d
TT
46172019-08-30 Tom Tromey <tom@tromey.com>
4618
4619 * tui/tui-regs.c (tui_data_window::last_regs_line_no)
4620 (tui_data_window::display_registers_from)
4621 (tui_data_window::display_reg_element_at_line)
4622 (tui_data_window::display_registers_from_line): Remove checks of
4623 "empty".
4624
18bb55c7
TT
46252019-08-30 Tom Tromey <tom@tromey.com>
4626
4627 * tui/tui-regs.h (struct tui_data_window) <display_all_data>:
4628 Don't declare.
4629 * tui/tui-regs.c (tui_data_window::show_registers): Call
4630 rerender.
4631 (tui_data_window::rerender): Rename from display_all_data.
4632 (tui_data_window::rerender): Remove old implementation.
4633
1f6d2f10
TT
46342019-08-30 Tom Tromey <tom@tromey.com>
4635
4636 * tui/tui-regs.c (tui_data_window::display_all_data): Change
4637 text.
4638 * tui/tui-data.h (NO_DATA_STRING): Remove define.
4639
16d01f9c
BW
46402019-08-29 Bernhard Wodok <barto@gmx.net>
4641 Sergio Durigan Junior <sergiodj@redhat.com>
4642
4643 PR win32/24284
4644 * mingw-hdep.c (gdb_select): Handle case when 'n' is zero.
4645
d8f27c60
AB
46462019-08-28 Andrew Burgess <andrew.burgess@embecosm.com>
4647
4648 * symtab.c (search_symbols): Don't include MODULE_DOMAIN symbols
4649 when searching for types.
4650
1f20c35e
AB
46512019-08-28 Andrew Burgess <andrew.burgess@embecosm.com>
4652
4653 * f-lang.c (f_language_defn): Use f_print_typedef.
4654 * f-lang.h (f_print_typedef): Declare.
4655 * f-typeprint.c (f_print_typedef): Define.
4656
550105b7
CB
46572019-08-27 Christian Biesinger <cbiesinger@google.com>
4658
4659 * nat/linux-namespaces.c (mnsh_main): Initialize fd (to -1).
4660
4acfdd20
AB
46612019-08-27 Andrew Burgess <andrew.burgess@embecosm.com>
4662
4663 * cli/cli-utils.c (info_print_options_defs): Delete.
4664 (make_info_print_options_def_group): Delete.
4665 (extract_info_print_options): Delete.
4666 (info_print_command_completer): Delete.
4667 (info_print_args_help): Add extra parameter, and optionally
4668 include text about -n flag.
4669 * cli/cli-utils.h (struct info_print_options): Delete.
4670 (extract_info_print_options): Delete declaration.
4671 (info_print_command_completer): Delete declaration.
4672 (info_print_args_help): Add extra parameter, extend header
4673 comment.
4674 * python/python.c (gdbpy_rbreak): Pass additional parameter to
4675 search_symbols.
4676 * stack.c (struct info_print_options): New type.
4677 (info_print_options_defs): New file scoped variable.
4678 (make_info_print_options_def_group): New static function.
4679 (info_print_command_completer): New static function.
4680 (info_locals_command): Update to use new local functions.
4681 (info_args_command): Likewise.
4682 (_initialize_stack): Add extra parameter to calls to
4683 info_print_args_help.
4684 * symtab.c (search_symbols): Add extra parameter, use this to
4685 possibly excluse non-debug symbols.
4686 (symtab_symbol_info): Add extra parameter, which is passed on to
4687 search_symbols.
4688 (struct info_print_options): New type.
4689 (info_print_options_defs): New file scoped variable.
4690 (make_info_print_options_def_group): New static function.
4691 (info_print_command_completer): New static function.
4692 (info_variables_command): Update to use local functions, and pass
4693 extra parameter through to symtab_symbol_info.
4694 (info_functions_command): Likewise.
4695 (info_types_command): Pass additional argument through to
4696 symtab_symbol_info.
4697 (rbreak_command): Pass extra argument to search_symbols.
4698 (_initialize_symtab): Add extra arguments for calls to
4699 info_print_args_help, and update help text for 'info variables',
4700 'whereis', and 'info functions' commands.
4701 * symtab.h (search_symbols): Add extra argument to declaration.
4702 * NEWS: Mention new flags.
4703
9aa55206
CB
47042019-08-26 Christian Biesinger <cbiesinger@google.com>
4705
4706 * symtab.c (lookup_static_symbol): Call the new function (and move
4707 it down to be next to lookup_global_symbol).
4708 (struct global_sym_lookup_data): Add block_enum member and rename to...
4709 (struct global_or_static_sym_lookup_data): ...this.
4710 (lookup_symbol_global_iterator_cb): Pass block_index instead of
4711 GLOBAL_BLOCK to lookup_symbol_in_objfile and rename to...
4712 (lookup_symbol_global_or_static_iterator_cb): ...this.
4713 (lookup_global_or_static_symbol): New function.
4714 (lookup_global_symbol): Call new function.
4715
5c31b358
TV
47162019-08-26 Tom de Vries <tdevries@suse.de>
4717
4718 PR c++/24852
4719 * break-catch-throw.c (fetch_probe_arguments): Improve error mesage
4720 when pc_probe.prob == NULL.
4721
23c13d42
SM
47222019-08-25 Simon Marchi <simon.marchi@efficios.com>
4723
4724 * dwarf2read.c (dw2_debug_names_iterator::next): Rename local
4725 variable symbol_linkage to symbol_linkage_.
4726
beadd3e8
SM
47272019-08-25 Simon Marchi <simon.marchi@efficios.com>
4728
4729 * dwarf2read.c (dw2_debug_names_iterator::next): Use enum to
4730 represent whether the symbol is static, dynamic, or we don't
4731 know.
4732
e3ec872f
YS
47332019-08-25 Yoshinori Sato <ysato@users.sourceforge.jp>
4734
4735 * gdb/rx-tdep.c (rx_register_names): New.
4736 (rx_register_name): Delete.
4737 (rx_psw_type): Delete.
4738 (rx_fpsw_type): Delete.
4739 (rx_register_type): Delete.
4740 (rx_gdbarch_init): Convert target-descriptions.
4741 (_initialize_rx_tdep): Add initialize_tdesc_rx.
4742 * gdb/features/Makefile: Add rx.xml.
4743 * gdb/features/rx.xml: New.
4744 * gdb/features/rx.c: Generated.
4745 * gdb/NEWS: Mention target description support.
4746
d0509ba4
CB
47472019-08-22 Christian Biesinger <cbiesinger@google.com>
4748
4749 * symtab.c (symbol_cache_lookup): Always initialize *bsc_ptr and
4750 *slot_ptr.
4751
2d41fa11
SDJ
47522019-08-23 Sergio Durigan Junior <sergiodj@redhat.com>
4753
4754 * configure.ac: Don't check for 'dlfcn.h' (moved to
4755 gdbsupport/common.m4).
4756 * Makefile.in (COMMON_SFILES): Move 'gdb-dlfcn.c' to
4757 'gdbsupport/'.
4758 (HFILES_NO_SRCDIR): Likewise, for 'gdb-dlfcn.h'.
4759 * compile/compile-c-support.c: Include
4760 'gdbsupport/gdb-dlfcn.h'.
4761 * gdbsupport/common.m4: Check for 'dlfcn.h'.
4762 * gdb-dlfcn.c: Move to...
4763 * gdbsupport/gdb-dlfcn.c: ... here.
4764 * gdb-dlfcn.h: Move to...
4765 * gdbsupport/gdb-dlfcn.h: ... here.
4766
de8af808
SL
47672019-08-23 Sandra Loosemore <sandra@codesourcery.com>
4768
4769 * nios2-tdep.c (struct reg_value): Improve comments. Make
4770 the offset field signed.
4771
27204489
CB
47722019-08-22 Christian Biesinger <cbiesinger@google.com>
4773
4774 * python/lib/gdb/__init__.py (_execute_file): New function.
4775 * python/python.c (python_run_simple_file): Call gdb._execute_file
4776 on Windows.
4777
43771869
AB
47782019-08-22 Andrew Burgess <andrew.burgess@embecosm.com>
4779
4780 * f-exp.y (yylex): Remove is_a_field_of_this local variable, and
4781 all uses as this was never set to anything but a zero value.
4782
26c957f1
PA
47832019-08-21 Bogdan Harjoc <harjoc@gmail.com>
4784
4785 * cli/cli-cmds.c (with_command_1): Error out if no arguments.
4786
c07aae6e
CB
47872019-08-21 Christian Biesinger <cbiesinger@google.com>
4788
4789 * tui/tui-data.h (tui_gen_win_info): Add an =default
4790 move constructor, required by some GCC versions.
4791
3960cb7a
JF
47922019-08-21 Jinke Fan <fanjinke51@yeah.net>
4793
4794 * go32-nat.c (go32_sysinfo): Add hygon_p.
4795
04c72a68
TT
47962019-08-20 Tom Tromey <tom@tromey.com>
4797
4798 * tui/tui-regs.h (struct tui_data_window) <last_regs_line_no,
4799 line_from_reg_element_no, first_reg_element_no_inline,
4800 display_all_data, delete_data_content_windows,
4801 erase_data_content>: Now private.
4802
072272ce
TT
48032019-08-20 Tom Tromey <tom@tromey.com>
4804
4805 * tui/tui-wingeneral.c (box_win): Change type of highlight_flag.
4806 (tui_unhighlight_win, tui_highlight_win)
4807 (tui_win_info::make_window): Update.
4808 * tui/tui-data.h (HILITE, NO_HILITE): Remove.
4809
973961bd
TT
48102019-08-20 Tom Tromey <tom@tromey.com>
4811
4812 * tui/tui-data.h (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
4813 (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
4814 (MAX_PID_WIDTH): Move to tui-stack.c.
4815 * tui/tui-stack.c (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
4816 (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
4817 (MAX_PID_WIDTH): Move from tui-data.h.
4818
ab0e1f1a
TT
48192019-08-20 Tom Tromey <tom@tromey.com>
4820
4821 * tui/tui-wingeneral.h (tui_make_window): Don't declare.
4822 * tui/tui-wingeneral.c (box_win): Change type of win_info.
4823 (box_win): Update.
4824 (tui_gen_win_info::make_window): Rename from tui_make_window.
4825 (tui_win_info::make_window): New method.
4826 (tui_gen_win_info::make_visible): Update.
4827 * tui/tui-source.c (tui_source_window::set_contents): Update.
4828 * tui/tui-regs.c (tui_data_window::show_register_group): Update.
4829 (tui_data_window::display_registers_from): Update.
4830 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
4831 * tui/tui-data.h (struct tui_gen_win_info) <make_window>:
4832 Declare.
4833 <can_box>: Remove.
4834 <title>: Remove.
4835 (struct tui_win_info) <make_window>: Declare.
4836 <can_box>: Now virtual.
4837 <title>: New member.
4838 * tui/tui-data.c (~tui_gen_win_info): Don't free title.
4839 * tui/tui-command.c (tui_cmd_window::resize): Update.
4840
100c2bf3
TT
48412019-08-20 Tom Tromey <tom@tromey.com>
4842
4843 * tui/tui-regs.h (struct tui_data_window) <display_regs>: Remove.
4844 * tui/tui-regs.c (tui_data_window::show_registers): Update.
4845 (tui_data_window::check_register_values): Update.
4846
fa4dc567
TT
48472019-08-20 Tom Tromey <tom@tromey.com>
4848
4849 * tui/tui-regs.h (struct tui_data_window): Use
4850 DISABLE_COPY_AND_ASSIGN.
4851 <regs_content>: Change type, removing unique_ptr.
4852 <tui_data_window>: Add move constructor.
4853 * tui/tui-regs.c (tui_data_window::show_registers)
4854 (tui_data_window::show_register_group)
4855 (tui_data_window::display_registers_from)
4856 (tui_data_window::display_registers_from)
4857 (tui_data_window::first_data_item_displayed)
4858 (tui_data_window::delete_data_content_windows)
4859 (tui_data_window::rerender, tui_data_window::refresh_window)
4860 (tui_data_window::check_register_values): Update.
4861
ca02d7c8
TT
48622019-08-20 Tom Tromey <tom@tromey.com>
4863
4864 * tui/tui-regs.h (struct tui_data_window) <show_registers,
4865 show_register_group>: Declare.
4866 (tui_show_register_group): Don't declare.
4867 * tui/tui-regs.c (tui_data_window::show_registers): Rename from
4868 tui_show_registers.
4869 (tui_data_window::show_register_group): Rename from
4870 tui_show_register_group.
4871 (tui_data_window::check_register_values, tui_reg_command):
4872 Update.
4873 * tui/tui-layout.c (tui_set_layout): Update.
4874
63356bfd
TT
48752019-08-20 Tom Tromey <tom@tromey.com>
4876
4877 * tui/tui-regs.h (struct tui_data_window) <check_register_values>:
4878 Declare.
4879 (tui_check_register_values): Don't declare.
4880 * tui/tui-regs.c (tui_data_window::check_register_values): Rename
4881 from tui_check_register_values.
4882 * tui/tui-hooks.c (tui_register_changed): Update.
4883
42cc14a7
TT
48842019-08-20 Tom Tromey <tom@tromey.com>
4885
4886 * tui/tui-regs.c (tui_reg_layout): Move later.
4887 (tui_show_registers): Don't enable TUI mode or change layout.
4888
b9ad3686
TT
48892019-08-20 Tom Tromey <tom@tromey.com>
4890
4891 * tui/tui-regs.h (struct tui_data_item_window)
4892 <~tui_data_item_window>: Remove.
4893 <content>: Now a unique_xmalloc_ptr.
4894 * tui/tui-regs.c (tui_register_format): Return a
4895 unique_xmalloc_ptr.
4896 (tui_get_register): Update.
4897 (~tui_data_item_window): Remove.
4898 (tui_data_window::display_registers_from, tui_display_register):
4899 Update.
4900 * tui/tui-io.h (tui_expand_tabs): Update.
4901 * tui/tui-io.c (tui_expand_tabs): Return a unique_xmalloc_ptr.
4902 Remove "col" parameter.
4903
8e114aab
TT
49042019-08-20 Tom Tromey <tom@tromey.com>
4905
4906 * tui/tui-regs.h (struct tui_data_item_window) <value>: Remove
4907 field.
4908 * tui/tui-regs.c (~tui_data_item_window): Update.
4909
1a4f81dd
TT
49102019-08-20 Tom Tromey <tom@tromey.com>
4911
4912 * tui/tui-regs.c (tui_register_format, tui_get_register): Move
4913 earlier.
4914
0f8d8876
TT
49152019-08-20 Tom Tromey <tom@tromey.com>
4916
4917 * tui/tui-regs.c (tui_reg_command): Remove NULL check.
4918
605dc2c2
TT
49192019-08-20 Tom Tromey <tom@tromey.com>
4920
4921 * tui/tui-source.h (struct tui_source_window): Update.
4922 * tui/tui-regs.c (tui_show_registers): Update.
4923 * tui/tui-disasm.h (struct tui_disasm_window): Update.
4924 * tui/tui-data.h (NO_SRC_STRING, NO_DISASSEM_STRING)
4925 (NO_REGS_STRING): Remove defines.
4926
aedbe3bb
CM
49272019-08-20 Conrad Meyer <cem@FreeBSD.org>
4928
4929 * remote.c (remote_target::remote_btrace_maybe_reopen): Avoid
4930 unnecessary thread walk if remote doesn't support the packet.
4931
7ce8f214
TT
49322019-08-19 Tom Tromey <tromey@adacore.com>
4933
4934 * python/py-value.c (value_has_field): Fix indentation.
4935
f21c2bd7
TT
49362019-08-19 Tom Tromey <tromey@adacore.com>
4937
4938 * printcmd.c (do_one_display, info_display_command): Update.
4939 * block.h (contained_in): Return bool. Add allow_nested
4940 parameter.
4941 * block.c (contained_in): Return bool. Add allow_nested
4942 parameter.
4943
d806ea2d
TT
49442019-08-19 Tom Tromey <tom@tromey.com>
4945
4946 * configure: Rebuild.
4947 * configure.ac: Disallow the combination of -static-libstdc++ and
4948 source highlight.
4949 * source-cache.c (get_language_name): Handle rust.
4950 (source_cache::get_source_lines): Ignore highlighting exceptions.
4951
398fdd60
TT
49522019-08-16 Tom Tromey <tom@tromey.com>
4953
4954 * tui/tui.h (enum tui_win_type) <EXEC_INFO_WIN>: Remove.
4955 * tui/tui-winsource.h (struct tui_exec_info_window): Remove.
4956 (struct tui_source_window_base) <make_visible, refresh_window,
4957 resize>: Remove methods.
4958 <execution_info>: Remove field.
4959 * tui/tui-winsource.c (tui_source_window_base::do_erase_source_content)
4960 (tui_show_source_line, tui_source_window_base)
4961 (~tui_source_window_base): Update.
4962 (tui_source_window_base::resize)
4963 (tui_source_window_base::make_visible)
4964 (tui_source_window_base::refresh_window): Remove.
4965 (tui_source_window_base::update_exec_info): Update.
4966 * tui/tui-source.c (tui_source_window::set_contents): Update.
4967 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
4968
e699d331
TT
49692019-08-16 Tom Tromey <tom@tromey.com>
4970
4971 * tui/tui-hooks.c (tui_remove_hooks): Don't set
4972 deprecated_query_hook.
4973
bb01dbfc
TT
49742019-08-16 Tom Tromey <tom@tromey.com>
4975
4976 * tui/tui-winsource.c (tui_update_source_windows_with_addr)
4977 (tui_update_source_windows_with_line): Update.
4978 * tui/tui-source.h (struct tui_source_window)
4979 <show_symtab_source>: Declare.
4980 (tui_show_symtab_source): Don't declare.
4981 * tui/tui-source.c (tui_show_symtab_source): Rename from
4982 tui_show_symtab_source.
4983
81c82c4b
TT
49842019-08-16 Tom Tromey <tom@tromey.com>
4985
4986 * tui/tui-winsource.h (struct tui_source_window_base)
4987 <set_contents>: Declare.
4988 * tui/tui-winsource.c
4989 (tui_source_window_base::update_source_window_as_is): Update.
4990 * tui/tui-source.h (struct tui_source_window) <set_contents>:
4991 Declare.
4992 (tui_set_source_content): Don't declare.
4993 * tui/tui-source.c (tui_source_window::set_contents): Rename from
4994 tui_set_source_content.
4995 * tui/tui-disasm.h (struct tui_disasm_window) <set_contents>:
4996 Declare.
4997 (tui_set_disassem_content): Don't declare.
4998 * tui/tui-disasm.c (tui_disasm_window::set_contents): Rename from
4999 tui_set_disassem_content.
5000
2ddaf614
TT
50012019-08-16 Tom Tromey <tom@tromey.com>
5002
5003 * tui/tui-winsource.h (struct tui_source_window_base)
5004 <update_breakpoint_info>: Declare.
5005 (tui_update_breakpoint_info): Don't declare.
5006 * tui/tui-winsource.c (tui_source_window_base::update_source_window_as_is)
5007 (tui_update_all_breakpoint_info): Update.
5008 (tui_source_window_base::update_breakpoint_info): Rename from
5009 tui_update_breakpoint_info.
5010 (tui_source_window_base::update_exec_info): Update.
5011
017f9828
TT
50122019-08-16 Tom Tromey <tom@tromey.com>
5013
5014 * tui/tui-winsource.h (struct tui_source_window_base)
5015 <update_source_window>: Declare.
5016 (tui_update_source_window): Don't declare.
5017 * tui/tui-winsource.c
5018 (tui_source_window_base::update_source_window): Rename from
5019 tui_update_source_window.
5020 (tui_source_window_base::rerender): Update.
5021 * tui/tui-source.c (tui_source_window::maybe_update): Update.
5022 * tui/tui-disasm.c (tui_show_disassem)
5023 (tui_show_disassem_and_update_source)
5024 (tui_disasm_window::maybe_update): Update.
5025
ed8358e9
TT
50262019-08-16 Tom Tromey <tom@tromey.com>
5027
5028 * tui/tui-winsource.h (struct tui_source_window_base)
5029 <update_source_window_as_is>: Declare.
5030 (tui_update_source_window_as_is): Don't declare.
5031 * tui/tui-winsource.c (tui_update_source_window): Update
5032 (tui_source_window_base::update_source_window_as_is): Rename from
5033 tui_update_source_window_as_is.
5034 (tui_source_window_base::refill): Update.
5035 * tui/tui-source.c (tui_show_symtab_source): Update.
5036 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical):
5037 Update.
5038
20149b6b
TT
50392019-08-16 Tom Tromey <tom@tromey.com>
5040
5041 * tui/tui-winsource.h (tui_update_source_window)
5042 (tui_update_source_window_as_is): Remove "noerror" parameter.
5043 * tui/tui-winsource.c (tui_update_source_window)
5044 (tui_update_source_window_as_is): Remove "noerror" parameter.
5045 (tui_update_source_windows_with_addr)
5046 (tui_update_source_windows_with_line)
5047 (tui_source_window_base::rerender)
5048 (tui_source_window_base::refill): Update.
5049 * tui/tui-source.h (tui_set_source_content)
5050 (tui_show_symtab_source): Remove "noerror" parameter.
5051 * tui/tui-source.c (tui_set_source_content): Remove "noerror"
5052 parameter.
5053 (tui_show_symtab_source): Likewise.
5054 (tui_source_window::maybe_update): Update.
5055 * tui/tui-disasm.c (tui_show_disassem)
5056 (tui_show_disassem_and_update_source)
5057 (tui_disasm_window::do_scroll_vertical)
5058 (tui_disasm_window::maybe_update): Update.
5059
2d83e710
TT
50602019-08-16 Tom Tromey <tom@tromey.com>
5061
5062 * tui/tui.c (tui_is_window_visible): Update.
5063 * tui/tui-wingeneral.c (tui_make_window)
5064 (tui_gen_win_info::make_visible, tui_refresh_all): Update.
5065 * tui/tui-win.c (window_name_completer, tui_refresh_all_win)
5066 (tui_set_focus_command, tui_all_windows_info, update_tab_width)
5067 (tui_set_win_height_command, parse_scrolling_args): Update.
5068 * tui/tui-source.c (tui_source_window::style_changed): Update.
5069 * tui/tui-regs.c (tui_show_registers)
5070 (tui_data_window::first_data_item_displayed)
5071 (tui_data_window::delete_data_content_windows)
5072 (tui_check_register_values, tui_reg_command): Update.
5073 * tui/tui-disasm.c (tui_show_disassem): Update.
5074 * tui/tui-data.h (struct tui_gen_win_info) <is_visible>: New
5075 method.
5076 <is_visible>: Remove field.
5077 * tui/tui-data.c (tui_next_win, tui_prev_win)
5078 (tui_delete_invisible_windows): Update.
5079
d4ab829a
TT
50802019-08-16 Tom Tromey <tom@tromey.com>
5081
5082 * tui/tui-winsource.h (struct tui_source_window_base)
5083 <m_has_locator>: Remove.
5084 * tui/tui-layout.c (show_source_disasm_command, show_data)
5085 (show_source_or_disasm_and_command): Update.
5086
aa7ca1bb
AH
50872019-08-16 Alan Hayward <alan.hayward@arm.com>
5088
5089 * NEWS (Other MI changes): New subsection.
5090 * aarch64-tdep.c (aarch64_get_pc_address_flags): New function.
5091 (aarch64_gdbarch_init): Add aarch64_get_pc_address_flags.
5092 * arch-utils.c (default_get_pc_address_flags): New function.
5093 * arch-utils.h (default_get_pc_address_flags): New declaration.
5094 * gdbarch.sh: Add get_pc_address_flags.
5095 * gdbarch.c: Regenerate.
5096 * gdbarch.h: Likewise.
5097 * stack.c (print_pc): New function.
5098 (print_frame_info) (print_frame): Call print_pc.
5099
6eac171f
TV
51002019-08-16 Tom de Vries <tdevries@suse.de>
5101
5102 * maint.c (maintenance_info_sections): Also handle !ALLOBJ case using
5103 print_objfile_section_info.
5104
3df505f6
TT
51052019-08-15 Tom Tromey <tom@tromey.com>
5106
5107 * tui/tui-io.c (tui_puts_internal): Check TUI_CMD_WIN before
5108 calling update_cmdwin_start_line.
5109 * tui/tui-winsource.h (struct tui_source_window_base)
5110 <do_make_visible_with_new_height, set_new_height>: Don't declare.
5111 <rerender>: Declare.
5112 * tui/tui-winsource.c (tui_source_window_base::update_tab_width):
5113 Call rerender.
5114 (tui_source_window_base::set_new_height): Remove.
5115 (tui_source_window_base::rerender): Rename from
5116 do_make_visible_with_new_height.
5117 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Use
5118 resize method.
5119 (tui_win_info::make_invisible_and_set_new_height)
5120 (tui_win_info::make_visible_with_new_height): Remove.
5121 * tui/tui-stack.h (struct tui_locator_window) <rerender>:
5122 Declare.
5123 * tui/tui-stack.c (tui_locator_window::rerender): New method.
5124 * tui/tui-regs.h (struct tui_data_window) <set_new_height,
5125 do_make_visible_with_new_height>: Don't declare.
5126 <rerender>: Declare.
5127 * tui/tui-regs.c (tui_data_window::rerender): Rename from
5128 set_new_height.
5129 (tui_data_window::do_make_visible_with_new_height): Remove.
5130 * tui/tui-layout.c (show_source_disasm_command, show_data): Don't
5131 call tui_show_locator_content.
5132 (tui_gen_win_info::resize): Call rerender.
5133 (show_source_or_disasm_and_command): Don't call
5134 tui_show_locator_content.
5135 * tui/tui-data.h (struct tui_gen_win_info) <rerender>: New
5136 method.
5137 (struct tui_win_info) <rerender>: Declare.
5138 <set_new_height, make_invisible_and_set_new_height,
5139 make_visible_with_new_height>: Don't declare.
5140 * tui/tui-data.c (tui_win_list::rerender): New method.
5141 * tui/tui-command.h (struct tui_cmd_window)
5142 <do_make_visible_with_new_height>: Don't declare.
5143 * tui/tui-command.c
5144 (tui_cmd_window::do_make_visible_with_new_height): Remove.
5145
272560b5
TT
51462019-08-15 Tom Tromey <tromey@adacore.com>
5147
5148 * ada-exp.y (convert_char_literal): Handle "Q%c" encoding.
5149 * ada-lang.c (ada_enum_name): Likewise.
5150
08235187
CB
51512019-08-15 Christian Biesinger <cbiesinger@google.com>
5152
5153 * python/lib/gdb/__init__.py (GdbOutputFile): Rename to have a
5154 leading underscore.
5155 (GdbOutputErrorFile): Likewise.
5156 (global scope): Adjust constructor calls to GdbOutput{,Error}File
5157 accordingly.
5158 (execute_unwinders): Rename to have a leading underscore.
5159 (auto_load_packages): Likewise.
5160 (global scope): Adjust call to auto_load_packages accordingly.
5161 (GdbSetPythonDirectory): Likewise.
5162 * python/py-unwind.c (pyuw_sniffer): Call _execute_unwinders
5163 instead of execute_unwinders.
5164
db502012
TT
51652019-08-15 Tom Tromey <tom@tromey.com>
5166
5167 * tui/tui-layout.c (show_layout, show_source_disasm_command)
5168 (show_data): Don't change window visibility.
5169 (tui_gen_win_info::resize): Remove special case for command
5170 window. Use wresize, when available.
5171 (show_source_or_disasm_and_command): Don't change window
5172 visibility.
5173 * tui/tui-command.h (struct tui_cmd_window) <resize>: Declare.
5174 <make_visible>: New method.
5175 * tui/tui-command.c (tui_cmd_window::resize): New method.
5176
3891b65e
TT
51772019-08-15 Tom Tromey <tom@tromey.com>
5178
5179 * tui/tui-winsource.h (struct tui_source_window_iterator): New.
5180 (struct tui_source_windows): New.
5181 * tui/tui-winsource.c (tui_display_main): Update.
5182 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
5183 (new_height_ok, parse_scrolling_args): Update.
5184 * tui/tui-layout.c (show_layout, show_data): Update.
5185 * tui/tui-data.h (tui_source_windows, tui_clear_source_windows)
5186 (tui_add_to_source_windows): Don't declare.
5187 * tui/tui-data.c (source_windows, tui_source_windows)
5188 (tui_clear_source_windows, tui_add_to_source_windows): Remove.
5189
ee556432
TT
51902019-08-15 Tom Tromey <tom@tromey.com>
5191
5192 * tui/tui-winsource.h (struct tui_source_window_base) <resize>:
5193 Rename from reset.
5194 * tui/tui-winsource.c (tui_source_window_base::resize): Rename.
5195 * tui/tui-layout.c (show_source_disasm_command, show_data):
5196 Update.
5197 (tui_gen_win_info::resize): Rename.
5198 (show_source_or_disasm_and_command): Update.
5199 * tui/tui-data.h (struct tui_gen_win_info) <resize>: Rename from
5200 reset.
5201
46f438e3
TT
52022019-08-15 Tom Tromey <tom@tromey.com>
5203
5204 * tui/tui-stack.c (tui_initialize_static_data): Remove.
5205 * tui/tui-interp.c (tui_interp::init): Don't call
5206 tui_initialize_static_data.
5207 * tui/tui-data.h (tui_initialize_static_data): Don't declare.
5208
f4ce562c
TT
52092019-08-15 Tom Tromey <tom@tromey.com>
5210
5211 * tui/tui-layout.c (tui_default_win_viewport_height): Don't
5212 examine tui_win_list.
5213
c398c3d0
TT
52142019-08-15 Tom Tromey <tom@tromey.com>
5215
5216 * tui/tui-winsource.h (tui_clear_source_content): Don't declare.
5217 * tui/tui-winsource.c (tui_update_source_window_as_is): Don't call
5218 tui_clear_source_content.
5219 (tui_clear_source_content): Remove.
5220 (tui_source_window_base::do_erase_source_content): Hoist call to
5221 content.clear().
5222 * tui/tui-stack.c (tui_show_frame_info): Don't call
5223 tui_clear_source_content.
5224
e25d2004
TT
52252019-08-15 Tom Tromey <tom@tromey.com>
5226
5227 * tui/tui-winsource.h (struct tui_source_window_base)
5228 <do_erase_source_content>: New method.
5229 <erase_source_content>: New method.
5230 (tui_erase_source_content): Don't declare.
5231 * tui/tui-winsource.c (tui_clear_source_content): Update.
5232 (tui_source_window_base::do_erase_source_content): Rename from
5233 tui_erase_source_content.
5234 (tui_source_window_base::show_source_content): Update.
5235 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
5236 * tui/tui-source.h (struct tui_source_window)
5237 <erase_source_content>: New method.
5238 * tui/tui-disasm.h (struct tui_disasm_window)
5239 <erase_source_content>: New method.
5240
002f15c2
TT
52412019-08-15 Tom Tromey <tom@tromey.com>
5242
5243 * tui/tui-winsource.h (tui_alloc_source_buffer): Don't declare.
5244 (struct tui_source_element): Add DISABLE_COPY_AND_ASSIGN, and move
5245 constructor.
5246 * tui/tui-winsource.c (tui_alloc_source_buffer): Remove.
5247 * tui/tui-source.c (tui_set_source_content): Update.
5248 * tui/tui-disasm.c (tui_set_disassem_content): Update.
5249
c9033fe8
TT
52502019-08-15 Tom Tromey <tom@tromey.com>
5251
5252 * tui/tui-winsource.h (tui_line_is_displayed): Don't declare.
5253 * tui/tui-winsource.c (tui_line_is_displayed): Move to
5254 tui-source.c.
5255 * tui/tui-source.h (struct tui_source_window) <line_is_displayed>:
5256 Declare.
5257 * tui/tui-source.c (tui_source_window::line_is_displayed): New
5258 method.
5259 (tui_source_window::maybe_update): Update.
5260
088f37dd
TT
52612019-08-15 Tom Tromey <tom@tromey.com>
5262
5263 * tui/tui-winsource.h (tui_addr_is_displayed): Don't declare.
5264 * tui/tui-winsource.c (tui_addr_is_displayed): Move to
5265 tui-disasm.c.
5266 * tui/tui-disasm.h (struct tui_disasm_window) <addr_is_displayed>:
5267 Declare.
5268 * tui/tui-disasm.c (tui_disasm_window::addr_is_displayed): New
5269 method.
5270 (tui_disasm_window::maybe_update): Update.
5271
a54700c6
TT
52722019-08-15 Tom Tromey <tom@tromey.com>
5273
5274 * tui/tui-winsource.h (struct tui_source_window_base)
5275 <maybe_update>: Declare.
5276 * tui/tui-stack.c (tui_show_frame_info): Call maybe_update
5277 method.
5278 * tui/tui-source.h (struct tui_source_window) <maybe_update>:
5279 Declare.
5280 * tui/tui-source.c (tui_source_window::maybe_update): New method.
5281 * tui/tui-disasm.h (struct tui_disasm_window) <maybe_update>:
5282 Declare.
5283 * tui/tui-disasm.c (tui_disasm_window::maybe_update): New method.
5284
e2a678a5
TT
52852019-08-15 Tom Tromey <tom@tromey.com>
5286
5287 * tui/tui-stack.c (tui_make_status_line): Use string constructor.
5288
f2dda477
TT
52892019-08-15 Tom Tromey <tom@tromey.com>
5290
5291 * tui/tui-wingeneral.c: Include tui-stack.h.
5292 * tui/tui-stack.h (MAX_LOCATOR_ELEMENT_LEN)
5293 (struct tui_locator_window): Move from tui-data.h.
5294 * tui/tui-stack.c (_locator, tui_locator_win_info_ptr)
5295 (tui_initialize_static_data): Move from tui-data.c.
5296 * tui/tui-data.h (MAX_LOCATOR_ELEMENT_LEN)
5297 (struct tui_locator_window): Move to tui-stack.c.
5298 * tui/tui-data.c (_locator, tui_locator_win_info_ptr)
5299 (tui_initialize_static_data): Move to tui-stack.c.
5300
ed4a1084
TT
53012019-08-15 Tom Tromey <tom@tromey.com>
5302
5303 * tui/tui-layout.c (show_source_disasm_command)
5304 (show_source_or_disasm_and_command): Use make_visible method, not
5305 tui_make_window.
5306 * tui/tui-command.h (struct tui_cmd_window) <make_visible>:
5307 Remove.
5308
65962b20
TT
53092019-08-15 Tom Tromey <tom@tromey.com>
5310
5311 * tui/tui-wingeneral.h (tui_make_window): Update.
5312 * tui/tui-wingeneral.c (tui_make_window): Remove "box_it"
5313 parameter.
5314 (tui_gen_win_info::make_visible): Update.
5315 * tui/tui-regs.c (tui_data_window::display_registers_from):
5316 Update.
5317 * tui/tui-layout.c (show_source_disasm_command)
5318 (show_source_or_disasm_and_command): Update.
5319 * tui/tui-data.h (struct tui_gen_win_info) <can_box>: New method.
5320 (enum tui_box): Remove.
5321 (struct tui_win_info) <can_box>: New method.
5322 * tui/tui-command.h (struct tui_cmd_window) <can_box>: New
5323 method.
5324
2208ee91
TV
53252019-08-15 Tom de Vries <tdevries@suse.de>
5326
5327 * linux-nat-trad.c: Include gdbarch.h.
5328
75faf5c4
AH
53292019-08-14 Alan Hayward <alan.hayward@arm.com>
5330
5331 * aarch64-tdep.c (aarch64_analyze_prologue): Allow any valid
5332 register sizes.
5333
b1c896b3
TT
53342019-08-14 Tom Tromey <tromey@adacore.com>
5335
5336 * darwin-nat.c: Include gdbarch.h.
5337 * darwin-nat-info.c: Include gdbarch.h.
5338
6405cd73
TT
53392019-08-13 Tom Tromey <tom@tromey.com>
5340
5341 * tui/tui-data.h (struct tui_gen_win_info) <last_visible_line>:
5342 Remove.
5343 * tui/tui-data.c (tui_initialize_static_data): Update.
5344
5216580d
TT
53452019-08-13 Tom Tromey <tom@tromey.com>
5346
5347 * tui/tui-winsource.h (struct tui_exec_info_window)
5348 <~tui_exec_info_window, maybe_allocate_content, get_content,
5349 m_content>: Remove.
5350 (struct tui_source_window_base) <set_exec_info_content,
5351 show_exec_info_content>: Don't declare.
5352 * tui/tui-winsource.c
5353 (tui_exec_info_window::maybe_allocate_content): Remove.
5354 (tui_source_window_base::update_exec_info): Rename from
5355 set_exec_info_content.
5356 (tui_source_window_base::show_exec_info_content)
5357 (tui_source_window_base::update_exec_info): Remove.
5358
93858ad3
TT
53592019-08-13 Tom Tromey <tom@tromey.com>
5360
5361 * tui/tui-winsource.h (tui_clear_exec_info_content): Don't
5362 declare.
5363 * tui/tui-winsource.c (tui_update_source_window_as_is)
5364 (tui_update_source_windows_with_addr, tui_erase_source_content):
5365 Update.
5366 (tui_clear_exec_info_content): Remove.
5367
e321e7ce
TT
53682019-08-13 Tom Tromey <tom@tromey.com>
5369
5370 * tui/tui-winsource.h (tui_erase_exec_info_content): Don't
5371 declare.
5372 * tui/tui-winsource.c (tui_source_window_base::refresh_all): Don't
5373 call tui_erase_exec_info_content.
5374 (tui_clear_exec_info_content): Rename from
5375 tui_erase_exec_info_content.
5376 (tui_clear_exec_info_content): Delete.
5377
8270ac62
TT
53782019-08-13 Tom Tromey <tom@tromey.com>
5379
5380 * tui/tui-winsource.h (struct tui_source_window_base)
5381 <show_exec_info_content>: Declare.
5382 (tui_show_exec_info_content): Don't declare.
5383 * tui/tui-winsource.c
5384 (tui_source_window_base::show_exec_info_content): Rename from
5385 tui_show_exec_info_content.
5386 (tui_source_window_base::update_exec_info): Update.
5387
7b56485d
TT
53882019-08-13 Tom Tromey <tom@tromey.com>
5389
5390 * tui/tui-data.h (enum tui_bp_flag, tui_bp_flags, struct tui_source_element)
5391 (TUI_BP_HIT_POS, TUI_BP_BREAK_POS, TUI_EXEC_POS)
5392 (TUI_EXECINFO_SIZE, tui_exec_info_content): Move ...
5393 * tui/tui-winsource.h (enum tui_bp_flag, tui_bp_flags, struct
5394 tui_source_element, TUI_BP_HIT_POS, TUI_BP_BREAK_POS)
5395 (TUI_EXEC_POS, TUI_EXECINFO_SIZE, tui_exec_info_content):
5396 ... here.
5397
7ba913dc
TT
53982019-08-13 Tom Tromey <tom@tromey.com>
5399
5400 * tui/tui-winsource.h (struct tui_source_window_base)
5401 <update_exec_info>: Declare.
5402 (tui_update_exec_info): Don't declare.
5403 * tui/tui-winsource.c (tui_update_source_window_as_is)
5404 (tui_source_window_base::refresh_all)
5405 (tui_update_all_breakpoint_info): Update.
5406 (tui_source_window_base::update_exec_info): Rename from
5407 tui_update_exec_info.
5408 * tui/tui-stack.c (tui_show_frame_info): Update.
5409
37a4a131
TT
54102019-08-13 Tom Tromey <tom@tromey.com>
5411
5412 * tui/tui-winsource.h (struct tui_source_window_base)
5413 <set_exec_info_content>: Declare.
5414 (tui_set_exec_info_content): Don't declare.
5415 * tui/tui-winsource.c
5416 (tui_source_window_base::set_exec_info_content): Rename from
5417 tui_set_exec_info_content.
5418 (tui_update_exec_info): Update.
5419
0bd27e07
TT
54202019-08-13 Tom Tromey <tom@tromey.com>
5421
5422 * tui/tui-winsource.h (struct tui_source_window_base)
5423 <show_source_content>: Declare.
5424 (tui_show_source_content): Don't declare.
5425 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
5426 (tui_source_window_base::show_source_content): Rename from
5427 tui_show_source_content.
5428 (tui_source_window_base::refresh_all): Update.
5429 * tui/tui-layout.c (show_source_disasm_command)
5430 (show_source_or_disasm_and_command): Update.
5431
b4ef5aeb
TT
54322019-08-13 Tom Tromey <tom@tromey.com>
5433
5434 * tui/tui-winsource.c (tui_erase_source_content)
5435 (tui_show_source_content, tui_source_window_base::refresh_all):
5436 Update.
5437 * tui/tui-wingeneral.h
5438 (tui_check_and_display_highlight_if_needed): Don't declare.
5439 * tui/tui-wingeneral.c
5440 (tui_win_info::check_and_display_highlight_if_needed): Rename from
5441 check_and_display_highlight_if_needed.
5442 * tui/tui-win.c (tui_rehighlight_all)
5443 (tui_win_info::make_visible_with_new_height): Update.
5444 * tui/tui-regs.c (tui_data_window::display_registers_from_line)
5445 (tui_data_window::erase_data_content)
5446 (tui_data_window::display_all_data): Update.
5447 * tui/tui-data.h (struct tui_win_info)
5448 <check_and_display_highlight_if_needed>: Declare.
5449
fede5273
TT
54502019-08-13 Tom Tromey <tom@tromey.com>
5451
5452 * tui/tui-win.c (tui_resize_all): Call
5453 tui_delete_invisible_windows.
5454 * tui/tui-layout.c (show_layout): Call
5455 tui_delete_invisible_windows.
5456 * tui/tui-data.h (tui_delete_invisible_windows): Declare.
5457 * tui/tui-data.c (tui_delete_invisible_windows): New function.
5458
22c3f490
TT
54592019-08-13 Tom Tromey <tom@tromey.com>
5460
5461 * tui/tui-disasm.c (tui_show_disassem): Add assertion. Don't call
5462 tui_add_win_to_layout.
5463
16cb7910
TT
54642019-08-13 Tom Tromey <tom@tromey.com>
5465
5466 * tui/tui-layout.h (tui_default_win_height): Don't declare.
5467 * tui/tui-layout.c (tui_default_win_height): Now static.
5468
cc0c3ffb
TT
54692019-08-13 Tom Tromey <tom@tromey.com>
5470
5471 * tui/tui-layout.c (show_layout): Unify all layout cases into a
5472 single switch.
5473 (show_source_disasm_command, show_source_or_disasm_and_command):
5474 Don't check current layout.
5475
3f3ffe54
TT
54762019-08-13 Tom Tromey <tom@tromey.com>
5477
5478 * tui/tui-wingeneral.c (make_all_visible): Remove.
5479 (tui_make_all_invisible): Simplify.
5480 * tui/tui-layout.c (tui_make_all_invisible): Move from
5481 tui-wingeneral.c; simplify.
5482 (show_layout): Hoist call to tui_make_all_invisible.
5483 (show_data): Don't call tui_make_all_invisible.
5484
69258091
TT
54852019-08-13 Tom Tromey <tom@tromey.com>
5486
5487 * tui/tui-wingeneral.h (tui_make_all_visible): Don't declare.
5488 * tui/tui-wingeneral.c (tui_make_all_visible): Remove.
5489
62cf57fe
TT
54902019-08-13 Tom Tromey <tom@tromey.com>
5491
5492 * tui/tui-layout.c (current_layout, tui_current_layout): Move from
5493 tui-data.c.
5494 (show_source_disasm_command, show_data)
5495 (show_source_or_disasm_and_command): Don't use
5496 tui_set_current_layout_to.
5497 * tui/tui-data.h (tui_set_current_layout_to): Don't declare.
5498 * tui/tui-data.c (current_layout, tui_current_layout): Move to
5499 tui-layout.c.
5500 (tui_set_current_layout_to): Remove.
5501
2afade5d
TT
55022019-08-13 Tom Tromey <tom@tromey.com>
5503
5504 * tui/tui-layout.c (tui_set_layout): Update.
5505 * tui/tui-data.h (struct tui_layout_def): Remove.
5506 (tui_layout_def): Don't declare.
5507 * tui/tui-data.c (layout_def): Remove.
5508 (tui_layout_def): Remove.
5509
a3504e96
TT
55102019-08-13 Tom Tromey <tom@tromey.com>
5511
5512 * tui/tui-winsource.h (struct tui_source_window_base)
5513 <clear_detail>: No longer "override".
5514 * tui/tui-regs.h (struct tui_data_window) <clear_detail>: Remove.
5515 * tui/tui-regs.c (tui_data_window::clear_detail): Remove.
5516 * tui/tui-data.h (struct tui_win_info) <clear_detail>: Remove.
5517 * tui/tui-command.h (struct tui_cmd_window) <clear_detail>:
5518 Remove.
5519 * tui/tui-command.c (tui_cmd_window::clear_detail): Remove.
5520
29c92911
TT
55212019-08-13 Tom Tromey <tromey@adacore.com>
5522
5523 * tracepoint.c: Don't include readline.h or history.h.
5524
86c6b807
TT
55252019-08-12 Tom Tromey <tom@tromey.com>
5526
5527 * configure: Rebuild.
5528 * configure.ac: Check for readline 7.
5529 * NEWS: Mention readline 7 requirement.
5530 * README: Update.
5531
5db2718c
TT
55322019-08-12 Tom Tromey <tom@tromey.com>
5533
5534 * mingw-hdep.c (gdb_select): Remove readline hack.
5535
dac36daf
PFC
55362019-08-09 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
5537
5538 * blockframe.c (find_pc_partial_function): Set *block to nullptr
5539 when the function fails.
5540
1022c627
AA
55412019-08-09 Andreas Arnez <arnez@linux.ibm.com>
5542
5543 * s390-tdep.c (s390_type_align): New function.
5544 (s390_gdbarch_init): Set it as type_align gdbarch method.
5545
eba4caf2
TV
55462019-08-09 Tom de Vries <tdevries@suse.de>
5547
5548 PR gdb/24591
5549 * dwarf2read.c (dwarf2_fetch_die_loc_sect_off): Adjust pc_high and
5550 pc_low with relocation offset.
5551
123cd851
TT
55522019-08-07 Tom Tromey <tromey@adacore.com>
5553
5554 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
5555 (print_frame_args): Update.
5556 * python/py-framefilter.c (py_print_single_arg, enumerate_args):
5557 Update.
5558 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
5559 * frame.h (struct frame_arg): Add initializers.
5560 <error>: Now a unique_xmalloc_ptr.
5561
3d31bc39
AH
55622019-08-07 Alan Hayward <alan.hayward@arm.com>
5563
5564 * NEWS: Expand the Pointer Authentication entry.
5565 * aarch64-tdep.c (aarch64_frame_unmask_address): Rename from this.
5566 (aarch64_frame_unmask_lr): ... to this.
5567 (aarch64_prologue_prev_register, aarch64_dwarf2_prev_register):
5568 Call aarch64_frame_unmask_lr.
5569 * frame.c (struct frame_info): Add "masked" variable.
5570 (frame_set_previous_pc_masked) (frame_get_pc_masked): New functions.
5571 (fprint_frame): Check for masked pc.
5572 * frame.h (frame_set_previous_pc_masked) (frame_get_pc_masked): New
5573 declarations.
5574 * python/py-framefilter.c (py_print_frame): Check for masked pc.
5575 * stack.c (print_frame): Check for masked pc.
5576
0cf9feb9
TT
55772019-08-06 Tom Tromey <tom@tromey.com>
5578
5579 * stabsread.c (patch_block_stabs, read_one_struct_field)
5580 (read_enum_type): Use obstack_strndup.
5581 * rust-exp.y (rust_parser::copy_name): Use obstack_strndup.
5582 * gdb_obstack.h (obstack_strndup): Use obstack_strndup.
5583 * dwarf2read.c (guess_full_die_structure_name)
5584 (anonymous_struct_prefix): Use obstack_strndup.
5585 * dbxread.c (cp_set_block_scope): Use obstack_strndup.
5586 * c-exp.y (yylex): Use obstack_strndup.
5587 * ada-exp.y (write_object_renaming, write_ambiguous_var)
5588 (write_var_or_type): Use obstack_strndup.
5589
efba19b0
TT
55902019-08-06 Tom Tromey <tom@tromey.com>
5591
5592 * symfile.c (reread_symbols): Use obstack_strdup.
5593 * stabsread.c (read_type): Use obstack_strdup.
5594 * gdb_obstack.h (obstack_strdup): New overload.
5595 * dwarf2read.c (dwarf2_compute_name, create_dwo_unit_in_dwp_v1)
5596 (create_dwo_unit_in_dwp_v2, build_error_marker_type)
5597 (dwarf2_canonicalize_name): Use obstack_strdup.
5598 * dbxread.c (read_dbx_symtab): Use obstack_strdup.
5599 * cp-support.c (inspect_type, replace_typedefs_qualified_name):
5600 Use obstack_strdup.
5601
f25102f7
TT
56022019-08-06 Tom Tromey <tom@tromey.com>
5603
5604 * gdb_obstack.h (obstack_strdup): Define.
5605 * gdb_obstack.c (obstack_strdup): Don't define.
5606
021887d8
TT
56072019-08-06 Tom Tromey <tom@tromey.com>
5608
5609 * xcoffread.c (SYMNAME_ALLOC, process_xcoff_symbol): Use
5610 obstack_strdup.
5611 * typeprint.c (typedef_hash_table::find_global_typedef): Use
5612 obstack_strdup.
5613 * symfile.c (allocate_compunit_symtab): Use obstack_strdup.
5614 * stabsread.c (common_block_start): Use obstack_strdup.
5615 * objfiles.c (set_objfile_main_name, objfile): Use
5616 obstack_strdup.
5617 * namespace.c (add_using_directive): Use obstack_strdup.
5618 * mdebugread.c (parse_symbol, parse_type): Use obstack_strdup.
5619 * jit.c (finalize_symtab): Use obstack_strdup.
5620 * dwarf2read.c (fixup_go_packaging, dwarf2_physname)
5621 (guess_partial_die_structure_name, partial_die_info::fixup)
5622 (dwarf2_name): Use obstack_strdup.
5623 * coffread.c (coff_read_struct_type, coff_read_enum_type): Use
5624 obstack_strdup.
5625 * c-exp.y (scan_macro_expansion): Use obstack_strdup.
5626 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
5627 obstack_strdup.
5628 * ada-lang.c (ada_decode_symbol): Use obstack_strdup.
5629
d2834edc
PW
56302019-08-07 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5631
5632 * unittests/help-doc-selftests.c: New file.
5633 * Makefile.in: Add the new file.
5634
590042fc
PW
56352019-08-07 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5636
5637 * cli/cli-decode.h (print_doc_line): Add for_value_prefix argument.
5638 * cli/cli-decode.c (print_doc_line): Likewise. It now prints
5639 the full first line, except when FOR_VALUE_PREFIX. In this case,
5640 the trailing '.' is not output, and the first character is uppercased.
5641 (print_help_for_command): Update call to print_doc_line.
5642 (print_doc_of_command): Likewise.
5643 * cli/cli-setshow.c (deprecated_show_value_hack): Likewise.
5644 * cli/cli-option.c (append_indented_doc): Do not append newline.
5645 (build_help_option): Append newline after first appended_indented_doc
5646 only if a second call is done.
5647 (build_help): Append 2 new lines before each option, except the first
5648 one.
5649 * compile/compile.c (_initialize_compile): Add new lines after
5650 %OPTIONS%, when not at the end of the help.
5651 Change help doc or code
5652 producing the help doc to respect the invariants.
5653 * maint-test-options.c (_initialize_maint_test_options): Likewise.
5654 Also removed the new line after 'Options:', as all other commands
5655 do not put an empty line between 'Options:' and the first option.
5656 * printcmd.c (_initialize_printcmd): Likewise.
5657 * stack.c (_initialize_stack): Likewise.
5658 * interps.c (interpreter_exec_cmd): Fix "Usage:" line that was
5659 incorrectly telling COMMAND is optional.
5660 * ada-lang.c (_initialize_ada_language): Change help doc or code
5661 producing the help doc to respect the invariants.
5662 * ada-tasks.c (_initialize_ada_tasks): Likewise.
5663 * breakpoint.c (_initialize_breakpoint): Likewise.
5664 * cli/cli-cmds.c (_initialize_cli_cmds): Likewise.
5665 * cli/cli-logging.c (_initialize_cli_logging): Likewise.
5666 * cli/cli-setshow.c (_initialize_cli_setshow): Likewise.
5667 * cli/cli-style.c (cli_style_option::add_setshow_commands,
5668 _initialize_cli_style): Likewise.
5669 * corelow.c (core_target_info): Likewise.
5670 * dwarf-index-cache.c (_initialize_index_cache): Likewise.
5671 * dwarf2read.c (_initialize_dwarf2_read): Likewise.
5672 * filesystem.c (_initialize_filesystem): Likewise.
5673 * frame.c (_initialize_frame): Likewise.
5674 * gnu-nat.c (add_task_commands): Likewise.
5675 * infcall.c (_initialize_infcall): Likewise.
5676 * infcmd.c (_initialize_infcmd): Likewise.
5677 * interps.c (_initialize_interpreter): Likewise.
5678 * language.c (_initialize_language): Likewise.
5679 * linux-fork.c (_initialize_linux_fork): Likewise.
5680 * maint-test-settings.c (_initialize_maint_test_settings): Likewise.
5681 * maint.c (_initialize_maint_cmds): Likewise.
5682 * memattr.c (_initialize_mem): Likewise.
5683 * printcmd.c (_initialize_printcmd): Likewise.
5684 * python/lib/gdb/function/strfns.py (_MemEq, _StrLen, _StrEq,
5685 _RegEx): Likewise.
5686 * ravenscar-thread.c (_initialize_ravenscar): Likewise.
5687 * record-btrace.c (_initialize_record_btrace): Likewise.
5688 * record-full.c (_initialize_record_full): Likewise.
5689 * record.c (_initialize_record): Likewise.
5690 * regcache-dump.c (_initialize_regcache_dump): Likewise.
5691 * regcache.c (_initialize_regcache): Likewise.
5692 * remote.c (add_packet_config_cmd, init_remote_threadtests,
5693 _initialize_remote): Likewise.
5694 * ser-tcp.c (_initialize_ser_tcp): Likewise.
5695 * serial.c (_initialize_serial): Likewise.
5696 * skip.c (_initialize_step_skip): Likewise.
5697 * source.c (_initialize_source): Likewise.
5698 * stack.c (_initialize_stack): Likewise.
5699 * symfile.c (_initialize_symfile): Likewise.
5700 * symtab.c (_initialize_symtab): Likewise.
5701 * target-descriptions.c (_initialize_target_descriptions): Likewise.
5702 * top.c (init_main): Likewise.
5703 * tracefile-tfile.c (tfile_target_info): Likewise.
5704 * tracepoint.c (_initialize_tracepoint): Likewise.
5705 * tui/tui-win.c (_initialize_tui_win): Likewise.
5706 * utils.c (add_internal_problem_command): Likewise.
5707 * valprint.c (value_print_option_defs): Likewise.
5708
404f2902
FCE
57092019-08-06 Frank Ch. Eigler <fche@redhat.com>
5710
5711 PR build/24886
5712 * configure.ac: Drop enable-libmcheck support.
5713 * configure, config.in: Rebuild.
5714 * libmcheck.m4: Remove.
5715 * acinclude.m4: Don't include it.
5716 * Makefile.in: Don't distribute it.
5717 * top.c (print_gdb_configuration): Don't mention it.
5718
046bebe1
TT
57192019-08-06 Tom Tromey <tom@tromey.com>
5720
5721 * utils.c (set_output_style): Sometimes pass stream to
5722 emit_style_escape.
5723 * ui-out.h (class ui_out) <can_emit_style_escape>: Declare.
5724 * record-btrace.c (btrace_insn_history): Update.
5725 * mi/mi-out.h (class mi_ui_out) <can_emit_style_escape>: New
5726 method.
5727 * disasm.h (gdb_pretty_print_disassembler): Add uiout parameter.
5728 Update initializers.
5729 <m_uiout>: New field.
5730 <m_di>: Move lower.
5731 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
5732 Remove "uiout" parameter.
5733 (dump_insns): Update.
5734 * cli-out.h (class cli_ui_out) <can_emit_style_escape>: Declare.
5735 * cli-out.c (cli_ui_out::can_emit_style_escape): New method.
5736
ddbcedf5
CB
57372019-08-06 Christian Biesinger <cbiesinger@google.com>
5738
5739 * symtab.c (symbol_cache_lookup): Change int to enum block_enum.
5740 (error_in_psymtab_expansion): Likewise.
5741 (lookup_symbol_via_quick_fns): Likewise.
5742 (basic_lookup_transparent_type_quick): Likewise.
5743 (basic_lookup_transparent_type_1): Likewise.
5744
b08b16c8
TT
57452019-08-06 Tom Tromey <tromey@adacore.com>
5746
5747 * source.c (last_source_error): Now bool.
5748 (print_source_lines_base): Make "noprint" bool. Only open
5749 source file when last_source_visited changes.
5750
cb44333d
TT
57512019-08-06 Tom Tromey <tromey@adacore.com>
5752
5753 * annotate.c (annotate_source_line): Use g_source_cache.
5754 * source-cache.c (source_cache::get_plain_source_lines): Change
5755 parameters. Populate m_offset_cache.
5756 (source_cache::ensure): New method.
5757 (source_cache::get_line_charpos): New method.
5758 (extract_lines): Move lower. Change parameters.
5759 (source_cache::get_source_lines): Move lower.
5760 * source-cache.h (class source_cache): Update comment.
5761 <get_line_charpos>: New method.
5762 <get_source_lines>: Update comment.
5763 <clear>: Clear m_offset_cache.
5764 <get_plain_source_lines>: Change parameters.
5765 <ensure>: New method
5766 <m_offset_cache>: New member.
5767 * source.c (forget_cached_source_info_for_objfile): Update.
5768 (info_source_command): Use g_source_cache.
5769 (find_source_lines, open_source_file_with_line_charpos): Remove.
5770 (print_source_lines_base, search_command_helper): Use g_source_cache.
5771 * source.h (open_source_file_with_line_charpos): Don't declare.
5772 * symtab.h (struct symtab) <nlines, line_charpos>: Remove.
5773 * tui/tui-source.c (tui_source_window::do_scroll_vertical):
5774 Use g_source_cache.
5775
872dceaa
TT
57762019-08-06 Tom Tromey <tromey@adacore.com>
5777
5778 * source-cache.c (source_cache::get_plain_source_lines):
5779 Remove "first_line" and "last_line" parameters.
5780 (source_cache::get_source_lines): Cache plain text.
5781 * source-cache.h (class source_cache)
5782 <get_plain_source_lines>: Update.
5783
269249d9
TT
57842019-08-06 Tom Tromey <tromey@adacore.com>
5785
5786 * source-cache.c (extract_lines): No longer a method.
5787 Changed type of parameter. Include final newline.
5788 (selftests::extract_lines_test): New function.
5789 (_initialize_source_cache): Likewise.
5790 * source-cache.h (class source_cache)
5791 <extract_lines>: Don't declare.
5792
c0e8dcd8
TT
57932019-08-06 Tom Tromey <tromey@adacore.com>
5794
5795 * breakpoint.c (init_breakpoint_sal): Update.
5796 (breakpoint): Update.
5797 * breakpoint.h (struct breakpoint) <filter>: Now a
5798 unique_xmalloc_ptr.
5799
0b27c27d
CB
58002019-08-05 Christian Biesinger <cbiesinger@google.com>
5801
5802 * NEWS: Mention dictionary access on blocks.
5803 * python/py-block.c (blpy_getitem): New function.
5804 (block_object_as_mapping): New struct.
5805 (block_object_type): Use new struct for tp_as_mapping field.
5806
4ee94178
CB
58072019-08-05 Christian Biesinger <cbiesinger@google.com>
5808
5809 * objfiles.h (objfile): Add a comment describing partial symbols.
5810
8abfcabc
TT
58112019-08-05 Tom Tromey <tromey@adacore.com>
5812
5813 * compile/compile.c (_initialize_compile): Use _(), not N_().
5814 * thread.c (_initialize_thread): Use _(), not N_().
5815 * stack.c (_initialize_stack): Use _(), not N_().
5816 * printcmd.c (_initialize_printcmd): Use _(), not N_().
5817
2b79f376
SM
58182019-08-04 Simon Marchi <simon.marchi@polymtl.ca>
5819
5820 * dwarf2read.c (struct dw2_symtab_iterator):
5821 <want_specific_block>: Remove.
5822 <block_index>: Change type to gdb::optional.
5823 (dw2_symtab_iter_init): Remove WANT_SPECIFIC_BLOCK parameter,
5824 change type of BLOCK_INDEX parameter to gdb::optional.
5825 (dw2_symtab_iter_next): Re-write in function of gdb::optional.
5826 (dw2_lookup_symbol): Don't pass argument for
5827 WANT_SPECIFIC_BLOCK.
5828 (dw2_expand_symtabs_for_function): Don't pass argument for
5829 WANT_SPECIFIC_BLOCK, pass empty optional for BLOCK_INDEX.
5830 (class dw2_debug_names_iterator)
5831 <dw2_debug_names_iterator>: Remove WANT_SPECIFIC_BLOCK
5832 parameter, change BLOCK_INDEX type to gdb::optional.
5833 <m_want_specific_block>: Remove.
5834 <m_block_index>: Change type to gdb::optional.
5835 (dw2_debug_names_iterator::next): Change type of IS_STATIC to
5836 gdb::optional. Re-write in function of gdb::optional.
5837 (dw2_debug_names_lookup_symbol): Don't pass argument for
5838 WANT_SPECIFIC_BLOCK.
5839 (dw2_debug_names_expand_symtabs_for_function): Don't pass
5840 argument for WANT_SPECIFIC_BLOCK, pass empty optional for
5841 BLOCK_INDEX.
5842
ae60f04e
PW
58432019-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5844
5845 * NEWS: Mention changes to "info sources" command.
5846
28cd9371
PW
58472019-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5848
5849 * symtab.c (filename_partial_match_opts): New struct type.
5850 (struct output_source_filename_data): New members
5851 regexp, c_regexp, partial_match.
5852 (output_source_filename): Use new members to decide to print file.
5853 (info_sources_option_defs): New variable.
5854 (make_info_sources_options_def_group, print_info_sources_header,
5855 info_sources_command_completer):
5856 New functions.
5857 (info_sources_command): Read new optional arguments.
5858 (_initialize_symtab): Update info sources help.
5859
ca683e3a
AO
58602019-08-02 Alexandre Oliva <oliva@adacore.com>
5861
5862 * ada-lang.c (exception_support_info_v0): Renamed from...
5863 (default_exception_support_info): ... this. Create new
5864 definition for v1.
5865 (ada_has_this_exception_support): Look up catch_handlers_sym.
5866 (ada_exception_support_info_sniffer): Try v0 after default.
5867
f1264162
TT
58682019-08-01 Tom Tromey <tromey@adacore.com>
5869
5870 * ia64-libunwind-tdep.h (struct libunwind_descr): Include
5871 gdbarch.h.
5872
0a7b2485
CB
58732019-08-01 Christian Biesinger <cbiesinger@google.com>
5874
5875 * s12z-tdep.c: Fix include path for s12z-opc.h.
5876
c6bdbeb7
AH
58772019-08-01 Alan Hayward <alan.hayward@arm.com>
5878
5879 * NEWS: Require GNU make 3.82.
5880
a2bd7b82
TT
58812019-07-16 Tom Tromey <tom@tromey.com>
5882
5883 * tui/tui-wingeneral.h (tui_copy_win, tui_box_win): Don't
5884 declare.
5885
aa3b6533
TT
58862019-07-30 Tom Tromey <tromey@adacore.com>
5887
5888 * block.c (contained_in): Remove BLOCK_FUNCTION check.
5889
a1530dc7
KB
58902019-07-30 Kevin Buettner <kevinb@redhat.com>
5891
5892 * printcmd.c (print_address_symbolic): Print negative offsets.
5893 (build_address_symbolic): Force signed arithmetic when computing
5894 offset.
5895
2906593f
CB
58962019-07-30 Christian Biesinger <cbiesinger@google.com>
5897
5898 PR/24474: Add a function to lookup static variables.
5899 * NEWS: Mention this new function.
5900 * python/py-symbol.c (gdbpy_lookup_static_symbol): New function.
5901 * python/python-internal.h (gdbpy_lookup_static_symbol): New function.
5902 * python/python.c (python_GdbMethods): Add new function.
5903
c620ed88
CB
59042019-07-29 Christian Biesinger <cbiesinger@google.com>
5905
5906 * NEWS: Mention new functions Objfile.lookup_{global,static}_symbol.
5907 * python/py-objfile.c (objfpy_lookup_global_symbol): New function.
5908 (objfpy_lookup_static_symbol): New function.
5909 (objfile_object_methods): Add new functions.
5910
bc4268a5
PW
59112019-07-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5912
5913 * NEWS: Mention 'set|show print frame-info'. Mention new
5914 'presence' value for 'frame-arguments'. Mention new '-frame-info'
5915 backtrace argument. Mention that python frame filtering code
5916 is now consistent with what 'backtrace' command prints.
5917
4b5e8d19
PW
59182019-07-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5919
5920 * frame.h (enum print_what): New value 'SHORT_LOCATION', update
5921 comments.
5922 (print_frame_info_auto, print_frame_info_source_line,
5923 print_frame_info_location, print_frame_info_source_and_location,
5924 print_frame_info_location_and_address, print_frame_info_short_location):
5925 New declarations.
5926 (struct frame_print_options): New member print_frame_info.
5927 * extension.h (enum ext_lang_frame_args): New value CLI_PRESENCE.
5928 * stack.h (get_user_print_what_frame_info): New declaration.
5929 (frame_show_address): New declaration.
5930 * stack.c (print_frame_arguments_choices): New value 'presence'.
5931 (print_frame_info_auto, print_frame_info_source_line,
5932 print_frame_info_location, print_frame_info_source_and_location,
5933 print_frame_info_location_and_address, print_frame_info_short_location,
5934 print_frame_info_choices, print_frame_info_print_what): New definitions.
5935 (print_frame_args): Only print dots for args if print frame-arguments
5936 is 'presence'.
5937 (frame_print_option_defs): New element for "frame-info".
5938 (get_user_print_what_frame_info): New function.
5939 (frame_show_address): Make non static. Move comment to stack.h.
5940 (print_frame_info_to_print_what): New function.
5941 (print_frame_info): Update comment. Use fp_opts.print_frame_info
5942 to decide what to print.
5943 (backtrace_command_1): Handle the new print_frame_arguments_presence
5944 value.
5945 (_initialize_stack): Call add_setshow_enum_cmd for frame-info.
5946 * python/py-framefilter.c (py_print_args): Handle CLI_PRESENCE.
5947 (py_print_frame): In non-mi mode, use LOCATION as default for
5948 print_what, similarly to frame information printed directly by
5949 backtrace command. Handle frame-info user option in non MI mode.
5950
6bdfee81
KB
59512019-07-27 Kevin Buettner <kevinb@redhat.com>
5952
5953 * linux-thread-db.c (thread_db_target::thread_handle_to_thread_info):
5954 Add case for debugging 32-bit target on 64-bit host. Revise
5955 comment.
5956
98a617f8
KB
59572019-07-27 Kevin Buettner <kevinb@redhat.com>
5958
5959 * infrun.c (fill_in_stop_func): Use find_pc_partial_function
5960 instead of find_function_entry_range_from_pc.
5961
567238c9
KB
59622019-07-27 Kevin Buettner <kevinb@redhat.com>
5963
5964 * stack.c (find_frame_funname): Remove code which preferred
5965 minsym over symtab sym in "certain pathological cases".
5966
2dc80cf8
KB
5967 * valprint.h (build_address_symbolic): Add "prefer_sym_over_minsym"
5968 parameter. Change type of "do_demangle" to bool.
5969 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
5970 Pass suitable "prefer_sym_over_minsym" flag to
5971 build_address_symbolic(). Don't output "+" for negative offsets.
5972 * printcmd.c (print_address_symbolic): Update invocation of
5973 build_address_symbolic to include a "prefer_sym_over_minsym"
5974 flag.
5975 (build_address_symbolic): Add "prefer_sym_over_minsym" parameter.
5976 Restrict cases in which use of minimal symbol is preferred to that
5977 of a found symbol. Update comments.
5978
1aff7173
KB
5979 * dwarf2-frame.c (dwarf2_frame_cache): Don't decode FDE instructions
5980 for entry pc when entry pc is out of range for that FDE.
5981
89b085ac
BC
59822019-07-26 Brian Callahan <bcallah@openbsd.org>
5983
5984 PR gdb/24839:
5985 * gdb/obsd-nat.c (obsd_nat_target::pid_to_str): Fix typo in return
5986 type.
5987
f32feb4a
CB
59882019-07-25 Christian Biesinger <cbiesinger@google.com>
5989
5990 * python/py-objfile.c (add_separate_debug_file): Fix comment about
5991 this function's Python signature.
5992
5993
59942019-07-24 Christian Biesinger <cbiesinger@google.com>
442853af
CB
5995
5996 * compile/compile-object-load.c (compile_object_load): Pass GLOBAL_SCOPE.
5997 * solib-spu.c (spu_lookup_lib_symbol): Pass GLOBAL_SCOPE.
5998 * solib-svr4.c (elf_lookup_lib_symbol): Pass GLOBAL_SCOPE.
5999 * symtab.c (lookup_global_symbol_from_objfile): Add a scope parameter.
6000 * symtab.h (lookup_global_symbol_from_objfile): Likewise.
6001
6002
c54e4253
YS
60032019-07-24 Yoshinori Sato <ysato@users.sourceforge.jp>
6004
6005 * h8300-tdep.c (h8300_register_name_common): New.
6006 h8300_register_name): Use h8300_register_name_common.
6007 (h8300s_register_name): Likewise.
6008 (h8300sx_register_name): Likewise.
6009 (h8300h_register_nam): New.
6010 (h8300_gdbarch_init): Use h8300h_register_name in h8300h machine.
6011
6012
40eadf04
SP
60132019-07-23 Srinath Parvathaneni <srinath.parvathaneni@arm.com>
6014
6015 * arm-tdep.c (arm_skip_cmse_entry): New function.
6016 (arm_is_sgstubs_section): New function.
6017 (arm_skip_stub): Add call to arm_skip_cmse_entry function.
6018
bfa2a36d
TT
60192019-07-22 Tom Tromey <tom@tromey.com>
6020
6021 * tui/tui-win.c (tui_win_info::make_invisible_and_set_new_height):
6022 Don't self-assign.
6023
a8e9d247
AB
60242019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
6025
6026 * c-typeprint.c (c_print_typedef): Pass -1 instead of 0 to
6027 type_print.
6028
eb86c5e2
AB
60292019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
6030
6031 * symtab.c (search_symbols): Adjust msymbol matching type arrays
6032 so that GDB doesn't match any msymbols when searching in the
6033 TYPES_DOMAIN.
6034 (print_symbol_info): Print using typedef_print or type_print based
6035 on the type of the symbol. Add updated FIXME comment moved from...
6036 (_initialize_symtab): ... move and update FIXME comment to above.
6037
a8eab7c6
AB
60382019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
6039
6040 * NEWS: Mention adding -q option to "info types".
6041 * symtab.c (struct info_types_options): New struct.
6042 (info_types_options_defs): New variable.
6043 (make_info_types_options_def_group): New function.
6044 (info_types_command): Use gdb::option framework to parse options.
6045 (info_types_command_completer): New function.
6046 (_initialize_symtab): Extend the help text on "info types" and
6047 register command completer.
6048
b4603c34
CB
60492019-07-21 Christian Biesinger <cbiesinger@google.com>
6050
6051 * symtab.c (lookup_symbol_in_objfile_symtabs): Change int to block_enum.
6052 (lookup_symbol_in_objfile): Change int to block_enum and add a
6053 gdb_assert to make sure block_index is GLOBAL_BLOCK or STATIC_BLOCK.
6054
c8cdc1e0
CB
60552019-07-20 Christian Biesinger <cbiesinger@google.com>
6056
6057 * MAINTAINERS (Write After Approval): Add self.
6058
01e175fe
AB
60592019-07-19 Andrew Burgess <andrew.burgess@embecosm.com>
6060
6061 * riscv-tdep.c (riscv_push_dummy_code): Write a 4-byte nop
6062 instruction to the dummy code region.
6063
56f79b63
TT
60642019-07-19 Tom Tromey <tromey@adacore.com>
6065
6066 * contrib/ari/gdb_ari.sh: Mention C++11, not ISO C 90.
6067 (ARGSUSED, PARAMS, __func__): Remove rules.
6068
4c5aa8e0
AH
60692019-07-19 Alan Hayward <alan.hayward@arm.com>
6070
6071 * arm-tdep.c (_initialize_arm_tdep): Remove xml tests.
6072 * features/arm/arm-with-iwmmxt.c: Remove.
6073 * features/arm/arm-with-iwmmxt.xml: Remove.
6074 * features/arm/arm-with-m-fpa-layout.c: Remove.
6075 * features/arm/arm-with-m-fpa-layout.xml: Remove.
6076 * features/arm/arm-with-m-vfp-d16.c: Remove.
6077 * features/arm/arm-with-m-vfp-d16.xml: Remove.
6078 * features/arm/arm-with-m.c: Remove.
6079 * features/arm/arm-with-m.xml: Remove.
6080 * features/arm/arm-with-neon.c: Remove.
6081 * features/arm/arm-with-neon.xml: Remove.
6082 * features/arm/arm-with-vfpv2.c: Remove.
6083 * features/arm/arm-with-vfpv2.xml: Remove.
6084 * features/arm/arm-with-vfpv3.c: Remove.
6085 * features/arm/arm-with-vfpv3.xml: Remove.
6086
f42b2617
AH
60872019-07-19 Alan Hayward <alan.hayward@arm.com>
6088
6089 * arm-tdep.c (_initialize_arm_tdep): Add xml regression tests.
6090
f29ec966
AH
60912019-07-19 Alan Hayward <alan.hayward@arm.com>
6092
6093 * arch/aarch32.c (aarch32_create_target_description): Create
6094 target descriptions using features.
6095 * arch/arm.c (arm_create_target_description)
6096 (arm_create_mprofile_target_description): Likewise.
6097 * arm-tdep.c (_initialize_arm_tdep): Remove tdesc init calls.
6098
d105cce5
AH
60992019-07-19 Alan Hayward <alan.hayward@arm.com>
6100
6101 * Makefile.in: Add new files.
6102 * aarch32-tdep.c: New file.
6103 * aarch32-tdep.h: New file.
6104 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
6105 Call aarch32_read_description.
6106 * arch/aarch32.c: New file.
6107 * arch/aarch32.h: New file.
6108 * arch/arm.c (arm_create_target_description)
6109 (arm_create_mprofile_target_description): New function.
6110 * arch/arm.h (arm_fp_type, arm_m_profile_type): New enum.
6111 (arm_create_target_description)
6112 (arm_create_mprofile_target_description): New declaration.
6113 * arm-fbsd-tdep.c (arm_fbsd_read_description_auxv): Call
6114 read_description functions.
6115 * arm-linux-nat.c (arm_linux_nat_target::read_description):
6116 Likewise.
6117 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
6118 * arm-tdep.c (tdesc_arm_list): New variable.
6119 (arm_register_g_packet_guesses): Call create description functions.
6120 (arm_read_description) (arm_read_mprofile_description): New
6121 function.
6122 * arm-tdep.h (arm_read_description)
6123 (arm_read_mprofile_description): Add declaration.
6124 * configure.tgt: Add new files.
6125
afe09f0b
GL
61262019-07-18 Guillaume LABARTHE <guillaume.labarthe@gmail.com>
6127
6128 * top.c (new_ui_command): Open specified terminal just once.
6129
cd215b2e
TT
61302019-07-18 Tom Tromey <tromey@adacore.com>
6131
6132 * symtab.c (main_name): Constify return type.
6133 * symfile.c (set_initial_language): Update.
6134 * symtab.h (main_name): Constify return type.
6135
d8f68fcb
TT
61362019-07-17 Tom Tromey <tom@tromey.com>
6137
6138 * tui/tui-winsource.c (tui_update_source_window)
6139 (tui_update_source_window_as_is)
6140 (tui_update_source_windows_with_line): Remove return.
6141 * tui/tui-disasm.c (tui_show_disassem)
6142 (tui_show_disassem_and_update_source): Remove return.
6143 * tui/tui.c (tui_reset): Remove return.
6144 * tui/tui-wingeneral.c
6145 (tui_check_and_display_highlight_if_needed): Remove return.
6146
ca5af91e
TT
61472019-07-17 Tom Tromey <tom@tromey.com>
6148
6149 * tui/tui-win.c (parse_scrolling_args): Throw separate errors.
6150
5104fe36
TT
61512019-07-17 Tom Tromey <tom@tromey.com>
6152
6153 * tui/tui-winsource.h (struct tui_exec_info_window)
6154 (struct tui_source_window_base): Move from tui-data.h.
6155 * tui/tui-winsource.c: Move many method definitions from
6156 elsewhere. Remove "structuring" comments.
6157 * tui/tui-wingeneral.c (tui_source_window_base::make_visible)
6158 (tui_source_window_base::refresh_window): Move to
6159 tui-winsource.c.
6160 * tui/tui-win.c (tui_source_window_base::refresh_all)
6161 (tui_source_window_base::update_tab_width)
6162 (tui_source_window_base::set_new_height)
6163 (tui_source_window_base::do_make_visible_with_new_height): Move to
6164 tui-winsource.c.
6165 * tui/tui-source.h: Update.
6166 * tui/tui-source.c (tui_source_window_base::reset): Move to
6167 tui-winsource.c.
6168 * tui/tui-disasm.h: Update.
6169 * tui/tui-data.h (struct tui_exec_info_window): Move to
6170 tui-winsource.h.
6171 (struct tui_source_window_base): Likewise.
6172 * tui/tui-data.c (tui_source_window_base::clear_detail)
6173 (tui_source_window_base, ~tui_source_window_base): Move to
6174 tui-winsource.c.
6175
daa15dde
TT
61762019-07-17 Tom Tromey <tom@tromey.com>
6177
6178 * tui/tui-win.c (tui_resize_all)
6179 (tui_source_window_base::update_tab_width)
6180 (tui_adjust_win_heights): Update.
6181 (tui_win_info::make_invisible_and_set_new_height): Rename from
6182 make_invisible_and_set_new_height.
6183 * tui/tui-data.h (struct tui_win_info)
6184 <make_invisible_and_set_new_height>: New method.
6185
bfad4537
TT
61862019-07-17 Tom Tromey <tom@tromey.com>
6187
6188 * tui/tui.c: Update.
6189 * tui/tui-source.h (struct tui_source_window): Move from
6190 tui-data.h.
6191 * tui/tui-layout.c: Update.
6192 * tui/tui-disasm.c: Update.
6193 * tui/tui-data.h (struct tui_source_window): Move to
6194 tui-source.h.
6195
88f7e873
TT
61962019-07-17 Tom Tromey <tom@tromey.com>
6197
6198 * tui/tui-disasm.h (struct tui_disasm_window): Move from
6199 tui-data.h.
6200 * tui/tui-data.h (struct tui_disasm_window): Move to
6201 tui-disasm.h.
6202
96bd6233
TT
62032019-07-17 Tom Tromey <tom@tromey.com>
6204
6205 * tui/tui-regs.h (struct tui_data_item_window): Move from
6206 tui-data.h.
6207 * tui/tui-regs.c (tui_data_item_window): Move from tui-data.c.
6208 * tui/tui-data.h (struct tui_data_item_window): Move to
6209 tui-regs.h.
6210 * tui/tui-data.c (~tui_data_item_window): Move to tui-regs.c.
6211
ce38393b
TT
62122019-07-17 Tom Tromey <tom@tromey.com>
6213
6214 * tui/tui.c: Update.
6215 * tui/tui-win.c (tui_cmd_window::do_make_visible_with_new_height)
6216 (tui_cmd_window::max_height): Move to tui-command.c.
6217 * tui/tui-layout.c: Update.
6218 * tui/tui-data.h (struct tui_cmd_window): Move to tui-command.h.
6219 * tui/tui-data.c (tui_cmd_window::clear_detail): Move to
6220 tui-command.c.
6221 * tui/tui-command.h (struct tui_cmd_window): Move from
6222 tui-data.h.
6223 * tui/tui-command.c: Remove "structuring" comments.
6224 (tui_cmd_window::clear_detail)
6225 (tui_cmd_window::do_make_visible_with_new_height)
6226 (tui_cmd_window::max_height): Move from elsewhere.
6227
2d8b51cb
TT
62282019-07-17 Tom Tromey <tom@tromey.com>
6229
6230 * tui/tui-io.c (tui_dispatch_ctrl_char): Move from tui-command.c.
6231 Now static.
6232 * tui/tui-command.h (tui_dispatch_ctrl_char): Don't declare.
6233 * tui/tui-command.c (tui_dispatch_ctrl_char): Move to tui-io.c.
6234
18ab23af
TT
62352019-07-17 Tom Tromey <tom@tromey.com>
6236
6237 * tui/tui.c: Update.
6238 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Move to
6239 tui-regs.c.
6240 * tui/tui-windata.h: Remove file.
6241 * tui/tui-windata.c: Remove file.
6242 * tui/tui-win.c (tui_data_window::set_new_height)
6243 (tui_data_window::do_make_visible_with_new_height): Move to
6244 tui-regs.c.
6245 * tui/tui-regs.h (struct tui_data_window): Move from tui-data.h.
6246 * tui/tui-regs.c: Remove "structuring" comments.
6247 (tui_data_window::first_data_item_displayed)
6248 (tui_data_window::delete_data_content_windows)
6249 (tui_data_window::erase_data_content)
6250 (tui_data_window::display_all_data)
6251 (tui_data_window::refresh_all)
6252 (tui_data_window::do_scroll_vertical)
6253 (tui_data_window::clear_detail, tui_data_window::set_new_height)
6254 (tui_data_window::do_make_visible_with_new_height)
6255 (tui_data_window::refresh_window): Move from elsewhere.
6256 (_initialize_tui_regs): Move to end of file.
6257 * tui/tui-layout.c: Update.
6258 * tui/tui-hooks.c: Update.
6259 * tui/tui-data.h (struct tui_data_window): Move to tui-regs.h.
6260 * tui/tui-data.c (tui_data_window::clear_detail): Move to
6261 tui-regs.c.
6262 * Makefile.in (SUBDIR_TUI_SRCS): Remove tui-windata.c.
6263
88b7e7cc
TT
62642019-07-17 Tom Tromey <tom@tromey.com>
6265
6266 * tui/tui-io.c (tui_puts_internal): Call wrefresh if newline is
6267 seen.
6268
0fcd3711
TT
62692019-07-17 Tom Tromey <tom@tromey.com>
6270
6271 * tui/tui-win.c (tui_source_window_base::set_new_height)
6272 (tui_source_window_base::do_make_visible_with_new_height): Use
6273 m_has_locator field directly.
6274 * tui/tui-data.h (struct tui_win_info) <has_locator>: Remove
6275 method.
6276 (struct tui_source_window_base) <has_locator>: Likewise.
6277
4a38112d
TT
62782019-07-17 Tom Tromey <tom@tromey.com>
6279
6280 * tui/tui-wingeneral.h (tui_make_visible, tui_make_invisible):
6281 Don't declare.
6282 * tui/tui-wingeneral.c (tui_make_visible, tui_make_invisible):
6283 Remove.
6284 * tui/tui-win.c (tui_source_window_base::set_new_height)
6285 (tui_source_window_base::set_new_height)
6286 (make_invisible_and_set_new_height)
6287 (tui_source_window_base::do_make_visible_with_new_height)
6288 (tui_source_window_base::do_make_visible_with_new_height):
6289 Update.
6290 * tui/tui-layout.c (show_source_disasm_command, show_data)
6291 (show_source_or_disasm_and_command): Update.
6292 * tui/tui-layout.c (show_layout): Update.
6293
09129226
TT
62942019-07-17 Tom Tromey <tom@tromey.com>
6295
6296 * tui/tui-layout.c (make_data_window): Remove.
6297 (show_data): Unify creation and re-initialization cases.
6298
4a8a5e84
TT
62992019-07-17 Tom Tromey <tom@tromey.com>
6300
6301 * tui/tui-layout.c (make_source_window, make_disasm_window):
6302 Remove.
6303 (show_data): Unify creation and re-initialization cases.
6304
76d2be8e
TT
63052019-07-17 Tom Tromey <tom@tromey.com>
6306
6307 * tui/tui-layout.c (make_command_window): Remove.
6308 (show_source_disasm_command, show_source_or_disasm_and_command):
6309 Unify creation and re-initialization cases.
6310
890b8bde
TT
63112019-07-17 Tom Tromey <tom@tromey.com>
6312
6313 * tui/tui-layout.c (show_source_or_disasm_and_command): Unify
6314 creation and re-initialization cases.
6315
2cdfa113
TT
63162019-07-17 Tom Tromey <tom@tromey.com>
6317
6318 * tui/tui-regs.c (tui_get_register): Return void.
6319
8e3cfd09
TT
63202019-07-17 Tom Tromey <tom@tromey.com>
6321
6322 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible):
6323 Simplify.
6324
f4e04977
TT
63252019-07-17 Tom Tromey <tom@tromey.com>
6326
6327 * tui/tui-layout.c (show_source_disasm_command): Simplify window
6328 resetting.
6329
0379b883
TT
63302019-07-17 Tom Tromey <tom@tromey.com>
6331
6332 * tui/tui.h (tui_set_layout_by_name): Don't declare.
6333 * tui/tui-regs.c (tui_reg_layout): New function.
6334 (tui_show_registers, tui_reg_command): Use it.
6335 * tui/tui-layout.c (LAYOUT_USAGE): Remove.
6336 (tui_layout_command): Rename from tui_set_layout_by_name. Change
6337 parameters.
6338 (tui_layout_command): Remove.
6339
b7fbad91
TT
63402019-07-17 Tom Tromey <tom@tromey.com>
6341
6342 * tui/tui-layout.h (tui/tui-layout): Return void.
6343 * tui/tui-layout.c (tui_set_layout): Return void. Add assert.
6344
4e1e56b9
TT
63452019-07-17 Tom Tromey <tom@tromey.com>
6346
6347 * tui/tui-layout.c (show_source_disasm_command, show_data):
6348 Update.
6349 (reset_locator): Remove.
6350 (show_source_or_disasm_and_command): Update.
6351
1e0c09ba
TT
63522019-07-17 Tom Tromey <tom@tromey.com>
6353
6354 * tui/tui-source.c (tui_source_window_base::reset): Remove
6355 win_type parameter.
6356 * tui/tui-layout.c (make_command_window, make_source_window)
6357 (make_disasm_window, make_data_window)
6358 (show_source_disasm_command, show_data, tui_gen_win_info::reset)
6359 (reset_locator, show_source_or_disasm_and_command): Update.
6360 * tui/tui-data.h (struct tui_gen_win_info) <reset>: Remove
6361 win_type parameter.
6362 (struct tui_source_window_base) <reset>: Likewise.
6363
1bf605de
TT
63642019-07-17 Tom Tromey <tom@tromey.com>
6365
6366 * tui/tui-layout.c (show_source_disasm_command): Use
6367 reset_locator.
6368 (reset_locator): New function.
6369 (init_and_make_win): Remove.
6370 (show_source_or_disasm_and_command): Use reset_locator.
6371
098f9ed4
TT
63722019-07-17 Tom Tromey <tom@tromey.com>
6373
6374 * tui/tui-winsource.c (tui_set_exec_info_content): Remove
6375 condition.
6376 * tui/tui-wingeneral.c (tui_source_window_base::make_visible):
6377 Remove condition.
6378 * tui/tui-source.c (tui_source_window_base::reset): New method.
6379 * tui/tui-layout.c (make_command_window): Don't call
6380 init_and_make_win.
6381 (make_source_window, make_disasm_window): Don't call
6382 make_source_or_disasm_window.
6383 (make_data_window): Don't call init_and_make_win. Change calling
6384 convention.
6385 (show_source_disasm_command, show_data): Simplify.
6386 (make_source_or_disasm_window): Remove.
6387 (show_source_or_disasm_and_command): Simplify.
6388 * tui/tui-data.h (struct tui_gen_win_info) <reset>: Now virtual.
6389 (struct tui_source_window_base) <reset>: Likewise.
6390 <execution_info>: Remove initializer.
6391 * tui/tui-data.c (tui_source_window_base): Initialize
6392 execution_info.
6393
80110957
TT
63942019-07-17 Tom Tromey <tom@tromey.com>
6395
6396 * tui/tui-layout.c (tui_set_layout): Remove regs_populate
6397 variable.
6398
cf82af05
TT
63992019-07-17 Tom Tromey <tom@tromey.com>
6400
6401 * tui/tui.c (tui_rl_other_window): Update.
6402 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Call
6403 superclass method first. Always iterate over regs_content.
6404 (tui_unhighlight_win, tui_highlight_win): Use refresh_window
6405 method.
6406 * tui/tui-win.c (tui_set_focus_command): Update.
6407
01aeb396
TT
64082019-07-17 Tom Tromey <tom@tromey.com>
6409
6410 * tui/tui-win.c (tui_set_focus_command): Rename from
6411 tui_set_focus. Call tui_enable.
6412 (tui_set_focus_command): Remove.
6413
fd6c75ee
TT
64142019-07-17 Tom Tromey <tom@tromey.com>
6415
6416 * tui/tui-winsource.c (tui_show_exec_info_content): Don't call
6417 refresh_window.
6418 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Call
6419 touchwin.
6420 (tui_data_window::refresh_window): Call refresh_window on data
6421 items. Always call superclass refresh_window.
6422 (tui_win_info::refresh): Remove.
6423 (tui_source_window_base::refresh_window): Update.
6424 (tui_refresh_all): Update.
6425 * tui/tui-layout.c (show_source_disasm_command): Remove call to
6426 refresh_window.
6427 (show_source_or_disasm_and_command): Likewise.
6428 * tui/tui-data.h (struct tui_win_info) <refresh>: Remove.
6429 (struct tui_source_window_base) <refresh>: Likewise.
6430
f6cc34a9
TT
64312019-07-17 Tom Tromey <tom@tromey.com>
6432
6433 * tui/tui-winsource.c (tui_clear_source_content)
6434 (tui_show_source_content): Update.
6435 * tui/tui-source.c (tui_source_window::showing_source_p): Check
6436 whether content is empty.
6437 * tui/tui-data.h (struct tui_source_window_base) <content_in_use>:
6438 Remove.
6439
f31ec9af
TT
64402019-07-17 Tom Tromey <tom@tromey.com>
6441
6442 * tui/tui-winsource.c (tui_erase_source_content): Clear the
6443 window's contents.
6444 * tui/tui-source.h (tui_set_source_content_nil): Don't declare.
6445 * tui/tui-source.c (tui_set_source_content_nil): Remove.
6446
d1b6f1e5
TT
64472019-07-17 Tom Tromey <tom@tromey.com>
6448
6449 * tui/tui-data.h (UNDEFINED_ITEM): Remove define.
6450 (struct tui_data_item_window): Update.
6451
d9743a13
TT
64522019-07-17 Tom Tromey <tom@tromey.com>
6453
6454 * tui/tui-data.h (MAX_CONTENT_COUNT, TUI_NULL_STR)
6455 (DEFAULT_HISTORY_COUNT, WITH_LOCATOR, NO_LOCATOR): Remove
6456 defines.
6457
caf0bc4e
TT
64582019-07-17 Tom Tromey <tom@tromey.com>
6459
6460 * tui/tui-winsource.h (tui_erase_source_content)
6461 (tui_clear_source_content): Remove "display_prompt" parameter.
6462 * tui/tui-winsource.c (tui_update_source_window_as_is)
6463 (tui_update_source_windows_with_addr): Update.
6464 (tui_clear_source_content): Remove "display_prompt" parameter.
6465 (tui_erase_source_content): Likewise. Simplify.
6466 (tui_show_source_content): Update.
6467 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
6468 * tui/tui-stack.c (tui_show_frame_info): Update.
6469 * tui/tui-data.h (EMPTY_SOURCE_PROMPT, NO_EMPTY_SOURCE_PROMPT):
6470 Remove defines.
6471
9d391078
TT
64722019-07-17 Tom Tromey <tom@tromey.com>
6473
6474 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
6475 * tui/tui-disasm.h (tui_set_disassem_content): Add win_info
6476 parameter.
6477 * tui/tui-disasm.c (tui_set_disassem_content): Add win_info
6478 parameter.
6479
a38da35d
TT
64802019-07-17 Tom Tromey <tom@tromey.com>
6481
6482 * tui/tui-winsource.c (tui_clear_source_content)
6483 (tui_show_source_content, tui_show_exec_info_content)
6484 (tui_clear_exec_info_content): Update.
6485 * tui/tui-stack.c (tui_show_locator_content): Update.
6486 (tui_show_frame_info): Update.
6487 * tui/tui-source.h (tui_source_window): Don't declare.
6488 * tui/tui-source.c (tui_source_window::showing_source_p): Rename
6489 from tui_source_is_displayed.
6490 * tui/tui-data.h (struct tui_gen_win_info) <content_in_use>:
6491 Remove field.
6492 (struct tui_source_window_base) <content_in_use>: New field. Now
6493 bool.
6494 (struct tui_source_window) <showing_source_p>: New method.
6495 (TUI_SRC_WIN): Change cast.
6496 * tui/tui-data.c (tui_initialize_static_data): Update.
6497
c2cd8994
TT
64982019-07-17 Tom Tromey <tom@tromey.com>
6499
6500 * tui/tui-winsource.c (tui_update_breakpoint_info): Use
6501 location_matches_p.
6502 * tui/tui-source.c (tui_source_window::location_matches_p): New
6503 method.
6504 * tui/tui-disasm.c (tui_disasm_window::location_matches_p): New
6505 method.
6506 * tui/tui-data.h (struct tui_source_window_base)
6507 <location_matches_p>: New method.
6508 (struct tui_source_window, struct tui_disasm_window)
6509 <location_matches_p>: Likewise.
6510
4dde7b34
TT
65112019-07-17 Tom Tromey <tom@tromey.com>
6512
6513 * tui/tui-win.c (tui_set_win_height_command): Rename from
6514 tui_set_win_height.
6515 (tui_set_win_height_command): Remove.
6516
b73dd877
TT
65172019-07-17 Tom Tromey <tom@tromey.com>
6518
6519 * tui/tui-source.c (tui_source_window): New constructor. Add
6520 observer.
6521 (~tui_source_window): New destructor.
6522 (tui_source_window::style_changed): New method.
6523 * tui/tui-hooks.c (tui_redisplay_source): Remove.
6524 (tui_attach_detach_observers): Update.
6525 * tui/tui-data.h (struct tui_source_window): Make constructor not
6526 inline. Add destructor.
6527 (struct tui_source_window) <style_changed>: New method.
6528 <m_observable>: New member.
6529
ae2b5380
TT
65302019-07-17 Tom Tromey <tom@tromey.com>
6531
6532 * tui/tui-data.c (tui_clear_source_windows_detail): Fix typo.
6533 * tui/tui-win.c (tui_resize_all): Fix typo.
6534
1ce3e844
TT
65352019-07-17 Tom Tromey <tom@tromey.com>
6536
6537 * tui/tui-wingeneral.h (tui_refresh_all): Update.
6538 * tui/tui-wingeneral.c (make_all_visible): Use foreach.
6539 (tui_refresh_all): Remove "list" parameter. Use foreach.
6540 * tui/tui-win.c (window_name_completer): Use foreach.
6541 (tui_refresh_all_win, tui_rehighlight_all, tui_all_windows_info)
6542 (update_tab_width): Likewise.
6543 * tui/tui-layout.c (show_layout): Update.
6544 * tui/tui-data.h (class tui_window_iterator): New.
6545 (struct all_tui_windows): New.
6546 * tui/tui-data.c (tui_partial_win_by_name): Use foreach.
6547
fe3eaf1c
TT
65482019-07-17 Tom Tromey <tom@tromey.com>
6549
6550 * tui/tui-regs.c (tui_reg_next, tui_reg_prev): Add "current_group"
6551 parameter. Don't reference globals.
6552 (tui_reg_command): Update.
6553
368c1354
TT
65542019-07-17 Tom Tromey <tom@tromey.com>
6555
6556 * tui/tui-regs.c (tui_show_registers): Simplify.
6557
e80cd204
TT
65582019-07-17 Tom Tromey <tom@tromey.com>
6559
6560 * tui/tui-regs.c (tui_show_registers): Update.
6561 (tui_show_register_group): Add win_info parameter.
6562
aca2dd16
TT
65632019-07-17 Tom Tromey <tom@tromey.com>
6564
6565 * tui/tui-regs.c (tui_data_window::display_reg_element_at_line):
6566 Rename from tui_display_reg_element_at_line.
6567 (tui_data_window::display_registers_from_line): Update.
6568 * tui/tui-data.h (struct tui_data_window)
6569 <display_reg_element_at_line>: New method.
6570
517e9505
TT
65712019-07-17 Tom Tromey <tom@tromey.com>
6572
6573 * tui/tui-regs.h (tui_display_registers_from)
6574 (tui_display_registers_from_line): Don't declare.
6575 * tui/tui-windata.c (tui_data_window::display_all_data)
6576 (tui_data_window::refresh_all)
6577 (tui_data_window::do_scroll_vertical): Update.
6578 * tui/tui-regs.c (tui_data_window::display_registers_from): Rename
6579 from tui_display_registers_from.
6580 (tui_display_reg_element_at_line): Update.
6581 (tui_data_window::display_registers_from_line): Rename from
6582 tui_display_registers_from_line.
6583 * tui/tui-data.h (struct tui_data_window) <display_registers_from,
6584 display_registers_from_line>: New methods.
6585
f76d8b19
TT
65862019-07-17 Tom Tromey <tom@tromey.com>
6587
6588 * tui/tui-windata.h (tui_erase_data_content): Don't declare.
6589 * tui/tui-windata.c (tui_data_window::erase_data_content): Rename
6590 from tui_erase_data_content.
6591 (tui_data_window::display_all_data)
6592 (tui_data_window::refresh_all)
6593 (tui_data_window::do_scroll_vertical): Update.
6594 * tui/tui-regs.c (tui_show_registers): Update.
6595 * tui/tui-data.h (struct tui_data_window) <erase_data_content>:
6596 New method.
6597
b4094625
TT
65982019-07-17 Tom Tromey <tom@tromey.com>
6599
6600 * tui/tui-windata.h (tui_delete_data_content_windows): Don't
6601 declare.
6602 * tui/tui-windata.c
6603 (tui_data_window::delete_data_content_windows): Rename from
6604 tui_delete_data_content_windows.
6605 (tui_data_window::display_all_data)
6606 (tui_data_window::do_scroll_vertical): Update.
6607 * tui/tui-data.h (struct tui_data_window)
6608 <delete_data_content_windows>: New method.
6609
c223a729
TT
66102019-07-17 Tom Tromey <tom@tromey.com>
6611
6612 * tui/tui-windata.h (tui_refresh_data_win): Don't declare.
6613 * tui/tui-regs.h (tui_first_reg_element_inline): Don't declare.
6614
50daf268
TT
66152019-07-17 Tom Tromey <tom@tromey.com>
6616
6617 * tui/tui-windata.h (tui_display_all_data): Don't declare.
6618 * tui/tui-windata.c (tui_data_window::display_all_data): Rename
6619 from tui_display_all_data.
6620 * tui/tui-win.c
6621 (tui_data_window::do_make_visible_with_new_height): Update.
6622 * tui/tui-regs.c (tui_show_registers): Update.
6623 * tui/tui-layout.c (tui_set_layout): Update.
6624 * tui/tui-data.h (struct tui_data_window) <display_all_data>: New
6625 method.
6626
df5f8cab
TT
66272019-07-17 Tom Tromey <tom@tromey.com>
6628
6629 * tui/tui-windata.h (tui_display_data_from): Don't declare.
6630 * tui/tui-windata.c (tui_display_data_from): Remove.
6631 (tui_data_window::refresh_all): Update.
6632
80cb6c27
TT
66332019-07-17 Tom Tromey <tom@tromey.com>
6634
6635 * tui/tui-windata.h (tui_display_data_from_line): Don't declare.
6636 * tui/tui-windata.c (tui_display_data_from_line): Remove.
6637 (tui_display_data_from, tui_data_window::do_scroll_vertical): Call
6638 tui_display_registers_from_line.
6639 * tui/tui-regs.h (tui_display_registers_from_line): Update.
6640 * tui/tui-regs.c (tui_display_registers_from_line): Remove
6641 "force_display" parameter.
6642
baff0c28
TT
66432019-07-17 Tom Tromey <tom@tromey.com>
6644
6645 * tui/tui-regs.h (tui_first_reg_element_no_inline): Don't
6646 declare.
6647 * tui/tui-regs.c (tui_data_window::first_reg_element_no_inline):
6648 Rename from tui_first_reg_element_no_inline.
6649 (tui_display_reg_element_at_line)
6650 (tui_display_registers_from_line): Update.
6651 * tui/tui-data.h (struct tui_data_window)
6652 <first_reg_element_no_inline>: New method.
6653
3b23c5f2
TT
66542019-07-17 Tom Tromey <tom@tromey.com>
6655
6656 * tui/tui-windata.c (tui_display_data_from)
6657 (tui_data_window::do_scroll_vertical): Update.
6658 * tui/tui-regs.h (tui_line_from_reg_element_no): Don't declare.
6659 * tui/tui-regs.c (tui_data_window::line_from_reg_element_no):
6660 Rename from tui_line_from_reg_element_no.
6661 (tui_display_registers_from_line): Update.
6662 * tui/tui-data.h (struct tui_data_window)
6663 <line_from_reg_element_no>: New method.
6664
0b5ec218
TT
66652019-07-17 Tom Tromey <tom@tromey.com>
6666
6667 * tui/tui-regs.h (tui_last_regs_line_no): Don't declare.
6668 * tui/tui-regs.c (tui_data_window::last_regs_line_no): Rename from
6669 tui_last_regs_line_no.
6670 (tui_display_reg_element_at_line)
6671 (tui_display_registers_from_line): Update.
6672 * tui/tui-data.h (struct tui_data_window) <last_regs_line_no>: New
6673 method.
6674
0807ab7b
TT
66752019-07-17 Tom Tromey <tom@tromey.com>
6676
6677 PR tui/24722:
6678 * tui/tui-winsource.h (tui_update_all_breakpoint_info)
6679 (tui_update_breakpoint_info): Add "being_deleted" parameter.
6680 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
6681 (tui_update_all_breakpoint_info): Add "being_deleted" parameter.
6682 (tui_update_breakpoint_info): Likewise.
6683 * tui/tui-hooks.c (tui_event_create_breakpoint)
6684 (tui_event_delete_breakpoint, tui_event_modify_breakpoint):
6685 Update.
6686
9ad7fdef
TT
66872019-07-17 Tom Tromey <tom@tromey.com>
6688
6689 * tui/tui-stack.c (tui_show_frame_info): Consolidate "if"s.
6690
5813316f
TT
66912019-07-17 Tom Tromey <tom@tromey.com>
6692
6693 * tui/tui-winsource.c (tui_update_source_window_as_is)
6694 (tui_update_source_windows_with_addr): Update.
6695 * tui/tui-source.h (tui_set_source_content)
6696 (tui_show_symtab_source): Add "win_info" parameter.
6697 * tui/tui-source.c (tui_set_source_content): Add "win_info"
6698 parameter.
6699 (tui_show_symtab_source): Likewise.
6700
00e264e7
TT
67012019-07-17 Tom Tromey <tom@tromey.com>
6702
6703 * tui/tui-wingeneral.c
6704 (tui_check_and_display_highlight_if_needed): Check can_highlight.
6705
06210ce4
TT
67062019-07-17 Tom Tromey <tom@tromey.com>
6707
6708 * tui/tui-data.h (struct tui_win_info) <can_scroll>: New method.
6709 (struct tui_cmd_window) <can_scroll>: New method.
6710 * tui/tui-command.c (tui_dispatch_ctrl_char): Use can_scroll
6711 method.
6712
381befee
TT
67132019-07-17 Tom Tromey <tromey@adacore.com>
6714
6715 * ui-out.h (class ui_out) <field_signed, field_fmt_signed,
6716 do_field_signed>: Rename. Change type of "value".
6717 * ui-out.c (ui_out::field_signed): Rename from field_int.
6718 Change type of "value".
6719 (ui_out::field_fmt_signed): Rename from field_fmt_int. Change
6720 type of "value".
6721 * tui/tui-out.h (class tui_ui_out) <do_field_signed>: Rename from
6722 do_field_int. Change type of "value".
6723 * tui/tui-out.c (tui_ui_out::do_field_signed): Rename from
6724 do_field_int. Change type of "value".
6725 * tracepoint.c (trace_status_mi, tfind_1)
6726 (print_one_static_tracepoint_marker): Update.
6727 * thread.c (print_thread_info_1, print_selected_thread_frame):
6728 Update.
6729 * stack.c (print_frame, print_frame_info): Update.
6730 * spu-tdep.c (info_spu_signal_command, info_spu_dma_cmdlist):
6731 Update.
6732 * source.c (print_source_lines_base): Update.
6733 * skip.c (info_skip_command): Update.
6734 * record-btrace.c (btrace_ui_out_decode_error)
6735 (btrace_call_history_src_line): Update.
6736 * python/py-framefilter.c (py_print_single_arg, py_print_frame):
6737 Update.
6738 * progspace.c (print_program_space): Update.
6739 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Update.
6740 * mi/mi-out.h (class mi_ui_out) <do_field_signed>: Rename from
6741 do_field_int. Change type of "value".
6742 * mi/mi-out.c (mi_ui_out::do_table_begin)
6743 (mi_ui_out::do_table_header): Update.
6744 (mi_ui_out::do_field_signed): Rename from do_field_int. Change
6745 type of "value".
6746 * mi/mi-main.c (mi_cmd_thread_list_ids, print_one_inferior)
6747 (mi_cmd_data_list_changed_registers, output_register)
6748 (mi_cmd_data_read_memory, mi_load_progress)
6749 (mi_cmd_trace_frame_collected): Update.
6750 * mi/mi-interp.c (mi_on_normal_stop_1, mi_output_solib_attribs):
6751 Update.
6752 * mi/mi-cmd-var.c (print_varobj, mi_cmd_var_create)
6753 (mi_cmd_var_delete, mi_cmd_var_info_num_children)
6754 (mi_cmd_var_list_children, varobj_update_one): Update.
6755 * mi/mi-cmd-stack.c (mi_cmd_stack_info_depth)
6756 (mi_cmd_stack_list_args, list_arg_or_local): Update.
6757 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Update.
6758 * inferior.c (print_inferior): Update.
6759 * gdb_bfd.c (print_one_bfd): Update.
6760 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
6761 Update.
6762 * darwin-nat-info.c (darwin_debug_regions_recurse): Update.
6763 * cli-out.h (class cli_ui_out) <do_field_signed>: Rename from
6764 do_field_int. Change type of "value".
6765 * cli-out.c (cli_ui_out::do_field_signed): Rename from
6766 do_field_int. Change type of "value".
6767 * breakpoint.c (watchpoint_check, print_breakpoint_location)
6768 (print_one_breakpoint_location, print_it_catch_fork)
6769 (print_one_catch_fork, print_it_catch_vfork)
6770 (print_one_catch_vfork, print_it_catch_solib)
6771 (print_it_catch_exec, print_it_ranged_breakpoint)
6772 (print_mention_watchpoint, print_mention_masked_watchpoint)
6773 (bkpt_print_it, update_static_tracepoint): Update.
6774 * break-catch-throw.c (print_it_exception_catchpoint): Update.
6775 * break-catch-syscall.c (print_it_catch_syscall): Update.
6776 * ada-tasks.c (print_ada_task_info): Update.
6777 * ada-lang.c (print_it_exception, print_mention_exception):
6778 Update.
6779
6b78c3f8
AB
67802019-07-17 Andrew Burgess <andrew.burgess@embecosm.com>
6781
6782 PR breakpoints/24541
6783 * gdbarch.c: Regenerate.
6784 * gdbarch.h: Regenerate.
6785 * gdbarch.sh: Adjust return type and parameter types for
6786 'stap_adjust_register'.
6787 (i386_stap_adjust_register): Adjust signature and return new
6788 register name.
6789 * stap-probe.c (stap_parse_register_operand): Adjust use of
6790 'gdbarch_stap_adjust_register'.
6791
d72a9b85
TT
67922019-07-17 Tom Tromey <tromey@adacore.com>
6793
6794 * s390-linux-nat.c (s390_watch_area): Remove typedef. Don't
6795 declare VEC.
6796 (struct s390_debug_reg_state) <watch_areas, break_areas>: Now
6797 std::vector.
6798 (struct s390_process_info): Add initializers.
6799 (s390_add_process): Use new.
6800 (s390_linux_nat_target::low_forget_process): Use delete.
6801 (s390_linux_nat_target::low_new_fork)
6802 (s390_linux_nat_target::stopped_by_watchpoint)
6803 (s390_linux_nat_target::low_prepare_to_resume)
6804 (s390_linux_nat_target::insert_watchpoint)
6805 (s390_linux_nat_target::insert_hw_breakpoint)
6806 (s390_linux_nat_target::remove_watchpoint)
6807 (s390_linux_nat_target::remove_hw_breakpoint): Update.
6808
206e6c58
JB
68092019-07-16 John Baldwin <jhb@FreeBSD.org>
6810
6811 * aarch64-fbsd-nat.c: Include regcache.h.
6812 (getregs_supplies, getfpregs_supplies): Remove unused gdbarch
6813 argument.
6814 (aarch64_fbsd_nat_target::fetch_registers)
6815 (aarch64_fbsd_nat_target::store_registers): Remove gdbarch
6816 variable.
6817 * arm-fbsd-nat.c, riscv-fbsd-nat.c: Likewise.
6818
cbde90f2
JB
68192019-07-16 John Baldwin <jhb@FreeBSD.org>
6820
6821 * fbsd-nat.c: Include gdbarch.h.
6822
07128006
TT
68232019-07-15 Tom Tromey <tromey@adacore.com>
6824
6825 * mi/mi-out.c (mi_ui_out::do_field_int): Use plongest.
6826
1f77b012
TT
68272019-07-15 Tom Tromey <tromey@adacore.com>
6828
6829 * mi/mi-out.h (class mi_ui_out) <do_field_unsigned>: Declare.
6830 * mi/mi-out.c (mi_ui_out::do_field_unsigned): New method.
6831 * cli-out.h (class cli_ui_out) <do_field_unsigned>: Declare.
6832 * cli-out.c (cli_ui_out::do_field_int): New method.
6833 * ui-out.c (ui_out::field_unsigned): New method.
6834 * symfile.c (generic_load): Use field_unsigned.
6835 (print_transfer_performance): Likewise.
6836 * record-btrace.c (ui_out_field_uint): Remove.
6837 (btrace_call_history_insn_range, btrace_call_history): Use
6838 field_unsigned.
6839 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn): Use
6840 field_unsigned.
6841 * ui-out.h (class ui_out) <field_unsigned>: New method.
6842 <do_field_unsigned>: Likewise.
6843
33eca680
TT
68442019-07-15 Tom Tromey <tromey@adacore.com>
6845
6846 * mi/mi-main.c (list_available_thread_groups): Use field_string.
6847 * mi/mi-interp.c (mi_memory_changed): Use field_string.
6848 * target.c (flash_erase_command): Use field_string.
6849 * infrun.c (print_signal_received_reason): Use field_string.
6850 * i386-tdep.c (i386_mpx_print_bounds): Use field_string.
6851 * breakpoint.c (maybe_print_thread_hit_breakpoint): Use
6852 field_string.
6853 * ada-tasks.c (print_ada_task_info): Use field_string.
6854
ca8d69be
TT
68552019-07-15 Tom Tromey <tromey@adacore.com>
6856
6857 * target.c (flash_erase_command): Use field_core_addr.
6858 * symfile.c (generic_load): Use field_core_addr.
6859 * sparc64-linux-tdep.c (sparc64_linux_handle_segmentation_fault):
6860 Use field_core_addr.
6861 * i386-linux-tdep.c (i386_linux_handle_segmentation_fault): Use
6862 field_core_addr.
6863
0d4e84ed
AB
68642019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
6865
6866 * dwarf2loc.c (dwarf2_evaluate_property): Sign extend property
6867 value if its desired type is smaller than a CORE_ADDR and signed.
6868
9a49df9d
AB
68692019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
6870
6871 * dwarf2loc.c (dwarf2_evaluate_property): Update to take account
6872 of changes to field names, and use new is_reference field to
6873 decide if a property is a reference or not.
6874 * dwarf2loc.h (struct dwarf2_locexpr_baton): Add 'is_reference'
6875 field.
6876 (struct dwarf2_property_baton): Update header comment, rename
6877 'referenced_type' to 'property_type' and update comments.
6878 * dwarf2read.c (attr_to_dynamic_prop): Add extra parameter to hold
6879 default property type, store in property baton, update to take
6880 accound of renamed field.
6881 (read_func_scope): Update call to attr_to_dynamic_prop.
6882 (read_array_type): Likewise.
6883 (dwarf2_per_cu_addr_sized_int_type): New function.
6884 (read_subrange_index_type): Move type finding code to
6885 dwarf2_per_cu_addr_sized_int_type.
6886 (read_subrange_type): Update calls to attr_to_dynamic_prop.
6887 (dwarf2_per_cu_addr_type): New function.
6888 (set_die_type): Update calls to attr_to_dynamic_prop.
6889
b86352cf
AB
68902019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
6891
6892 * dwarf2read.c (read_subrange_index_type): New function.
6893 (read_subrange_type): Move code into new function and call it.
6894 * gdbtypes.c (create_range_type): Add some asserts.
6895
603490bf
AB
68962019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
6897
6898 * dwarf2loc.c (dwarf2_evaluate_property): Change return type, and
6899 update return statements.
6900 * dwarf2loc.h (dwarf2_evaluate_property): Update return type on
6901 declaration, and update comment to match.
6902 * gdbtypes.c (resolve_dynamic_array): Update call to
6903 dwarf2_evaluate_property to match new return type.
6904
592f9d27
AB
69052019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
6906
6907 * valarith.c (value_subscripted_rvalue): Change lowerbound
6908 parameter type from int to LONGEST.
6909 * value.h (value_subscripted_rvalue): Likewise in declaration.
6910
60cfcb20
AB
69112019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
6912
6913 * cli/cli-utils.c (info_print_command_completer): New function.
6914 * cli/cli-utils.h: Add 'completer.h' include, and forward
6915 declaration for 'struct cmd_list_element'.
6916 (info_print_command_completer): Declare.
6917 * stack.c (_initialize_stack): Add completer for 'info locals' and
6918 'info args'.
6919 * symtab.c (_initialize_symtab): Add completer for 'info
6920 variables' and 'info functions'.
6921 * NEWS: Mention completion for additional info commands.
6922
b16507e0
AB
69232019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
6924
6925 * cli/cli-utils.c (extract_info_print_args): Delete.
6926 (extract_arg_maybe_quoted): Delete.
6927 (info_print_options_defs): New variable.
6928 (make_info_print_options_def_group): New function.
6929 (extract_info_print_options): Define new function.
6930 * cli/cli-utils.h (extract_info_print_args): Delete.
6931 (struct info_print_options): New structure.
6932 (extract_info_print_options): Declare new function.
6933 * stack.c (info_locals_command): Update to use new
6934 extract_info_print_options, also add a header comment.
6935 (info_args_command): Likewise.
6936 * symtab.c (info_variables_command): Likewise.
6937 (info_functions_command): Likewise.
6938
021d8588
AB
69392019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
6940
6941 * cli/cli-option.c (parse_option): Use extract_string_maybe_quoted
6942 to extract string arguments.
6943 * common/common-utils.c (extract_string_maybe_quoted): New function.
6944 * common/common-utils.h (extract_string_maybe_quoted): Declare.
6945
b777eb6d
TT
69462019-07-11 Tom Tromey <tromey@adacore.com>
6947
6948 * main.c (get_init_files): Use GDBINIT, not gdbinit.
6949 * auto-load.c (file_is_auto_load_safe): Use GDBINIT, not gdbinit.
6950 * top.h (gdbinit): Don't declare.
6951 * cli/cli-cmds.c (init_cli_cmds): Remove, merging contents
6952 into...
6953 (_initialize_cli_cmds): ...here. Use GDBINIT, not gdbinit.
6954 * top.c (gdb_init): Don't call init_cli_cmds.
6955 (gdbinit): Remove.
6956 * cli/cli-cmds.h (init_cli_cmds): Don't declare.
6957
72ee03ff
TT
69582019-07-11 Tom Tromey <tromey@adacore.com>
6959
6960 * python/py-inferior.c (add_thread_object): Don't use thread_obj
6961 after it has been moved.
6962
00db9531
SM
69632019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
6964
6965 * valops.c (value_must_coerce_to_target): Change return type to
6966 bool.
6967 * value.h (value_must_coerce_to_target): Likewise.
6968
f2478a7e
SM
69692019-07-10 Simon Marchi <simon.marchi@efficios.com>
6970
6971 * breakpoint.c (is_hardware_watchpoint): Remove
6972 forward-declaration.
6973 (is_masked_watchpoint): Change return type to bool.
6974 (is_tracepoint): Likewise.
6975 (is_breakpoint): Likewise.
6976 (is_hardware_watchpoint): Likewise.
6977 (is_watchpoint): Likewise.
6978 (is_no_memory_software_watchpoint): Likewise.
6979 (is_catchpoint): Likewise.
6980 (breakpoint_1): Make FILTER parameter's return type bool.
6981 is_masked_watchpoint): Change return type to bool.
6982 (save_breakpoints): Make FILTER parameter's return type bool.
6983 * breakpoint.h (is_breakpoint): Change return type to bool.
6984 (is_watchpoint): Likewise.
6985 (is_catchpoint): Likewise.
6986 (is_tracepoint): Likewise.
6987
0d12e84c
TT
69882019-07-10 Tom Tromey <tom@tromey.com>
6989
6990 * defs.h: Don't include gdbarch.h.
6991 * aarch64-ravenscar-thread.c, aarch64-tdep.c, alpha-bsd-tdep.h,
6992 alpha-linux-tdep.c, alpha-mdebug-tdep.c, arch-utils.h, arm-tdep.h,
6993 ax-general.c, btrace.c, buildsym-legacy.c, buildsym.h, c-lang.c,
6994 cli/cli-decode.h, cli/cli-dump.c, cli/cli-script.h,
6995 cli/cli-style.h, coff-pe-read.h, compile/compile-c-support.c,
6996 compile/compile-cplus.h, compile/compile-loc2c.c, corefile.c,
6997 cp-valprint.c, cris-linux-tdep.c, ctf.c, d-lang.c, d-namespace.c,
6998 dcache.c, dicos-tdep.c, dictionary.c, disasm-selftests.c,
6999 dummy-frame.c, dummy-frame.h, dwarf2-frame-tailcall.c,
7000 dwarf2expr.c, expression.h, f-lang.c, frame-base.c,
7001 frame-unwind.c, frv-linux-tdep.c, gdbarch-selftests.c, gdbtypes.h,
7002 go-lang.c, hppa-nbsd-tdep.c, hppa-obsd-tdep.c, i386-dicos-tdep.c,
7003 i386-tdep.h, ia64-vms-tdep.c, interps.h, language.c,
7004 linux-record.c, location.h, m2-lang.c, m32r-linux-tdep.c,
7005 mem-break.c, memattr.c, mn10300-linux-tdep.c, nios2-linux-tdep.c,
7006 objfiles.h, opencl-lang.c, or1k-linux-tdep.c, p-lang.c,
7007 parser-defs.h, ppc-tdep.h, probe.h, python/py-record-btrace.c,
7008 record-btrace.c, record.h, regcache-dump.c, regcache.h,
7009 riscv-fbsd-tdep.c, riscv-linux-tdep.c, rust-exp.y,
7010 sh-linux-tdep.c, sh-nbsd-tdep.c, source-cache.c,
7011 sparc-nbsd-tdep.c, sparc-obsd-tdep.c, sparc-ravenscar-thread.c,
7012 sparc64-fbsd-tdep.c, std-regs.c, target-descriptions.h,
7013 target-float.c, tic6x-linux-tdep.c, tilegx-linux-tdep.c, top.c,
7014 tracefile.c, trad-frame.c, type-stack.h, ui-style.c, utils.c,
7015 utils.h, valarith.c, valprint.c, varobj.c, x86-tdep.c,
7016 xml-support.h, xtensa-linux-tdep.c, cli/cli-cmds.h: Update.
7017 * s390-linux-nat.c, procfs.c, inf-ptrace.c: Likewise.
7018
f06f1252
TT
70192019-07-10 Tom Tromey <tromey@adacore.com>
7020
7021 * ada-lang.h (is_ada_exception_catchpoint): Declare.
7022 * breakpoint.c (init_ada_exception_breakpoint): Register as
7023 bp_catchpoint.
7024 (print_one_breakpoint_location, print_one_breakpoint): Use
7025 is_ada_exception_catchpoint.
7026 * ada-lang.c (class ada_catchpoint_location): Pass
7027 bp_loc_software_breakpoint to bp_location constructor.
7028 (is_ada_exception_catchpoint): New function.
7029
7a5d944b
TT
70302019-07-10 Tom Tromey <tromey@adacore.com>
7031
7032 * arm-tdep.c (arm_exidx_entry_s): Remove typedef. Don't define
7033 VEC.
7034 (struct arm_exidx_entry): New method operator<.
7035 (struct arm_exidx_data) <section_maps>: Change type.
7036 (arm_exidx_data_free): Remove.
7037 (arm_exidx_data_key): Change type. Move lower.
7038 (arm_exidx_new_objfile): Update.
7039 (arm_compare_exidx_entries): Remove.
7040 (arm_find_exidx_entry, _initialize_arm_tdep)
7041
48c66e1d
TT
70422019-07-10 Tom Tromey <tromey@adacore.com>
7043
7044 * solib-spu.c (ocl_program_data_key): Change type.
7045 (append_ocl_sos, ocl_enable_break, _initialize_spu_solib):
7046 Update.
7047
a269fbf1
TT
70482019-07-10 Tom Tromey <tromey@adacore.com>
7049
7050 * solib-aix.c (lm_info_aix_p): Remove typedef. Don't define VEC.
7051 (struct solib_aix_inferior_data) <library_list>: Change type.
7052 (solib_aix_inferior_data_handle): Change type.
7053 (get_solib_aix_inferior_data): Update.
7054 (solib_aix_free_library_list): Remove.
7055 (library_list_start_library): Update.
7056 (solib_aix_parse_libraries, solib_aix_get_library_list): Change
7057 return type.
7058 (solib_aix_get_library_list)
7059 (solib_aix_solib_create_inferior_hook, solib_aix_current_sos)
7060 (solib_aix_normal_stop_observer, _initialize_solib_aix): Update.
7061
c294730c
TT
70622019-07-10 Tom Tromey <tromey@adacore.com>
7063
7064 * solib-dsbt.c (struct dsbt_info): Add initializers.
7065 (solib_dsbt_pspace_data): Change type.
7066 (dsbt_pspace_data_cleanup): Remove.
7067 (get_dsbt_info, _initialize_dsbt_solib): Update.
7068
9d52077d
TT
70692019-07-10 Tom Tromey <tromey@adacore.com>
7070
7071 * spu-tdep.c (spu_overlay_data): Change type.
7072 (spu_get_overlay_table, spu_overlay_new_objfile)
7073 (_initialize_spu_tdep): Update.
7074
22a20dca
TT
70752019-07-10 Tom Tromey <tromey@adacore.com>
7076
7077 * gdb-stabs.h (struct dbx_symfile_info): Add initializers and
7078 destructor.
7079 (dbx_objfile_data_key): Change type and declare later.
7080 (DBX_SYMFILE_INFO): Rewrite.
7081 * dbxread.c (dbx_objfile_data_key): Change type.
7082 (dbx_symfile_init): Update.
7083 (~dbx_symfile_info): Rename from dbx_free_symfile_info. Update.
7084 (coffstab_build_psymtabs, elfstab_build_psymtabs)
7085 (stabsect_build_psymtabs, _initialize_dbxread): Update.
7086
cb60f420
TT
70872019-07-10 Tom Tromey <tromey@adacore.com>
7088
7089 * jit.c (jit_program_space_key): Change type. Move lower.
7090 (get_jit_program_space_data): Update.
7091 (jit_program_space_data_cleanup): Remove.
7092 (jit_breakpoint_deleted, free_objfile_data, _initialize_jit):
7093 Update.
7094 (struct jit_program_space_data): Add initializers.
7095
51df2ae3
TT
70962019-07-10 Tom Tromey <tromey@adacore.com>
7097
7098 * solib-darwin.c (struct darwin_info): Add initializers.
7099 (solib_darwin_pspace_data): Change type.
7100 (darwin_pspace_data_cleanup): Remove.
7101 (get_darwin_info, _initialize_darwin_solib): Update.
7102
18101a35
TT
71032019-07-10 Tom Tromey <tromey@adacore.com>
7104
7105 * remote-sim.c (struct sim_inferior_data): Add initializers,
7106 constructor, and destructor.
7107 (sim_inferior_data_key): Change type. Move lower.
7108 (check_for_duplicate_sim_descriptor): Update.
7109 (get_sim_inferior_data): Use new. Update.
7110 (~sim_inferior_data_cleanup): Rename from
7111 sim_inferior_data_cleanup. Simplify.
7112 (gdbsim_close_inferior, simulator_command)
7113 (sim_command_completer, _initialize_remote_sim): Update.
7114 (next_pid, INITIAL_PID): Move earlier.
7115
05b08ac1
TT
71162019-07-10 Tom Tromey <tromey@adacore.com>
7117
7118 * python/python-internal.h (create_thread_object): Return
7119 gdbpy_ref.
7120 * python/py-infthread.c (create_thread_object): Return gdbpy_ref.
7121 * python/py-inferior.c (struct threadlist_entry): Add
7122 constructor.
7123 <thread_obj>: Now a gdbpy_ref.
7124 (thread_to_thread_object): Update.
7125 (add_thread_object): Use new.
7126 (delete_thread_object): Use delete.
7127 (infpy_threads): Update.
7128 (py_free_inferior): Update. Construct "inf_obj" after acquiring
7129 GIL.
7130
32372d80
TT
71312019-07-10 Tom Tromey <tromey@adacore.com>
7132
7133 * valops.c (value_cast): Specialize error message for Ada.
7134
5c458ae8
SM
71352019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
7136
7137 * breakpoint.c (breakpoint_1): Update doc and parameter names.
7138
4c462cb0
SM
71392019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
7140
7141 * breakpoint.h (bpstat_explains_signal, bpstat_causes_stop,
7142 bpstat_should_step): Return bool, adjust comments.
7143 * breakpoint.c (bpstat_explains_signal, bpstat_causes_stop,
7144 bpstat_should_step): Likewise.
7145
89abbcc2
AH
71462019-07-10 Alan Hayward <alan.hayward@arm.com>
7147
7148 * features/Makefile: Use feature target descriptions for Arm.
7149 * features/arm/arm-core.c: Generate new file.
7150 * features/arm/arm-fpa.c: Likewise.
7151 * features/arm/arm-m-profile-with-fpa.xml: Likewise.
7152 * features/arm/arm-m-profile.c: Likewise.
7153 * features/arm/arm-vfpv2.c: Likewise.
7154 * features/arm/arm-vfpv3.c: Likewise.
7155 * features/arm/xscale-iwmmxt.c: Likewise.
7156 * target-descriptions.c (maint_print_c_tdesc_cmd): Add Arm.
7157
166a82be
AH
71582019-07-10 Alan Hayward <alan.hayward@arm.com>
7159
7160 * arm-linux-nat.c (arm_linux_nat_target::read_description): Check
7161 ptrace earlier.
7162
9fb4c7e9
AH
71632019-07-10 Alan Hayward <alan.hayward@arm.com>
7164
7165 * features/aarch64-pauth.c: Regenerate.
7166
e2d0f980
SM
71672019-07-09 Simon Marchi <simon.marchi@polymtl.ca>
7168
7169 * breakpoint.h (struct bpstat_what) <is_longjmp>: Change type to
7170 bool.
7171 (bpstat_what): Use false instead of 0.
7172
a38118e5
PA
71732019-07-09 Pedro Alves <palves@redhat.com>
7174
7175 * break-catch-throw.c (is_exception_catchpoint): New.
7176 * breakpoint.c (print_one_breakpoint_location): New parameter
7177 'raw_loc'. Handle it. Use
7178 is_watchpoint/is_catchpoint/is_exception_catchpoint instead of
7179 looking at the breakpoint's type.
7180 (print_one_breakpoint): If handling "maint info breakpoints", also
7181 print locations of exception catchpoints.
7182 * breakpoint.h (is_exception_catchpoint): Declare.
7183
cb1e4e32
PA
71842019-07-09 Pedro Alves <palves@redhat.com>
7185
7186 * break-catch-throw.c (print_one_exception_catchpoint): Skip the
7187 "addr" field.
7188 (allocate_location_exception_catchpoint): New.
7189 (handle_gnu_v3_exceptions): Don't reset 'type' to bp_breakpoint.
7190 (initialize_throw_catchpoint_ops): Install
7191 allocate_location_exception_catchpoint as allocate_location
7192 method.
7193 * breakpoint.c (bpstat_what) <bp_catch>: Set action to
7194 BPSTAT_WHAT_SINGLE if not stopping and the location's type is not
7195 bp_loc_other.
7196 (breakpoint_address_is_meaningful): Delete.
7197 (bl_address_is_meaningful): New.
7198 (breakpoint_locations_match): Adjust comment.
7199 (bp_location_from_bp_type): New, factored out of...
7200 (bp_location::bp_location(breakpoint *)): ... this.
7201 (bp_location::bp_location(breakpoint *, bp_loc_type)): New,
7202 factored out of...
7203 (bp_location::bp_location(breakpoint *)): ... this. Reimplement.
7204 (bp_loc_is_permanent): Use bl_address_is_meaningful instead of
7205 breakpoint_address_is_meaningful.
7206 (bp_locations_compare): Adjust comment.
7207 (update_global_location_list): Use bl_address_is_meaningful
7208 instead of breakpoint_address_is_meaningful.
7209 * breakpoint.h (bp_location::bp_location(breakpoint *)): New
7210 explicit.
7211 (bp_location::bp_location(breakpoint *, bp_loc_type)): Declare.
7212 * python/py-breakpoint.c (bppy_get_location): No longer check
7213 whether location is null.
7214
b58a68fe
PA
72152019-07-09 Pedro Alves <palves@redhat.com>
7216
7217 PR c++/15468
7218 * breakpoint.c (print_one_breakpoint_location): Remove
7219 single-location assert.
7220
268a13a5
TT
72212019-07-09 Tom Tromey <tom@tromey.com>
7222
7223 * contrib/ari/gdb_ari.sh: Change common to gdbsupport.
7224 * configure: Rebuild.
7225 * configure.ac: Change common to gdbsupport.
7226 * gdbsupport: Rename from common.
7227 * acinclude.m4: Change common to gdbsupport.
7228 * Makefile.in (CONFIG_SRC_SUBDIR, COMMON_SFILES)
7229 (HFILES_NO_SRCDIR, stamp-version, ALLDEPFILES): Change common to
7230 gdbsupport.
7231 * aarch64-tdep.c, ada-lang.c, ada-lang.h, agent.c, alloc.c,
7232 amd64-darwin-tdep.c, amd64-dicos-tdep.c, amd64-fbsd-nat.c,
7233 amd64-fbsd-tdep.c, amd64-linux-nat.c, amd64-linux-tdep.c,
7234 amd64-nbsd-tdep.c, amd64-obsd-tdep.c, amd64-sol2-tdep.c,
7235 amd64-tdep.c, amd64-windows-tdep.c, arch-utils.c,
7236 arch/aarch64-insn.c, arch/aarch64.c, arch/aarch64.h, arch/amd64.c,
7237 arch/amd64.h, arch/arm-get-next-pcs.c, arch/arm-linux.c,
7238 arch/arm.c, arch/i386.c, arch/i386.h, arch/ppc-linux-common.c,
7239 arch/riscv.c, arch/riscv.h, arch/tic6x.c, arm-tdep.c, auto-load.c,
7240 auxv.c, ax-gdb.c, ax-general.c, ax.h, breakpoint.c, breakpoint.h,
7241 btrace.c, btrace.h, build-id.c, build-id.h, c-lang.h, charset.c,
7242 charset.h, cli/cli-cmds.c, cli/cli-cmds.h, cli/cli-decode.c,
7243 cli/cli-dump.c, cli/cli-option.h, cli/cli-script.c,
7244 coff-pe-read.c, command.h, compile/compile-c-support.c,
7245 compile/compile-c.h, compile/compile-cplus-symbols.c,
7246 compile/compile-cplus-types.c, compile/compile-cplus.h,
7247 compile/compile-loc2c.c, compile/compile.c, completer.c,
7248 completer.h, contrib/ari/gdb_ari.sh, corefile.c, corelow.c,
7249 cp-support.c, cp-support.h, cp-valprint.c, csky-tdep.c, ctf.c,
7250 darwin-nat.c, debug.c, defs.h, disasm-selftests.c, disasm.c,
7251 disasm.h, dtrace-probe.c, dwarf-index-cache.c,
7252 dwarf-index-cache.h, dwarf-index-write.c, dwarf2-frame.c,
7253 dwarf2expr.c, dwarf2loc.c, dwarf2read.c, event-loop.c,
7254 event-top.c, exceptions.c, exec.c, extension.h, fbsd-nat.c,
7255 features/aarch64-core.c, features/aarch64-fpu.c,
7256 features/aarch64-pauth.c, features/aarch64-sve.c,
7257 features/i386/32bit-avx.c, features/i386/32bit-avx512.c,
7258 features/i386/32bit-core.c, features/i386/32bit-linux.c,
7259 features/i386/32bit-mpx.c, features/i386/32bit-pkeys.c,
7260 features/i386/32bit-segments.c, features/i386/32bit-sse.c,
7261 features/i386/64bit-avx.c, features/i386/64bit-avx512.c,
7262 features/i386/64bit-core.c, features/i386/64bit-linux.c,
7263 features/i386/64bit-mpx.c, features/i386/64bit-pkeys.c,
7264 features/i386/64bit-segments.c, features/i386/64bit-sse.c,
7265 features/i386/x32-core.c, features/riscv/32bit-cpu.c,
7266 features/riscv/32bit-csr.c, features/riscv/32bit-fpu.c,
7267 features/riscv/64bit-cpu.c, features/riscv/64bit-csr.c,
7268 features/riscv/64bit-fpu.c, features/tic6x-c6xp.c,
7269 features/tic6x-core.c, features/tic6x-gp.c, filename-seen-cache.h,
7270 findcmd.c, findvar.c, fork-child.c, gcore.c, gdb_bfd.c, gdb_bfd.h,
7271 gdb_proc_service.h, gdb_regex.c, gdb_select.h, gdb_usleep.c,
7272 gdbarch-selftests.c, gdbthread.h, gdbtypes.h, gnu-nat.c,
7273 go32-nat.c, guile/guile.c, guile/scm-ports.c,
7274 guile/scm-safe-call.c, guile/scm-type.c, i386-fbsd-nat.c,
7275 i386-fbsd-tdep.c, i386-go32-tdep.c, i386-linux-nat.c,
7276 i386-linux-tdep.c, i386-tdep.c, i387-tdep.c,
7277 ia64-libunwind-tdep.c, ia64-linux-nat.c, inf-child.c,
7278 inf-ptrace.c, infcall.c, infcall.h, infcmd.c, inferior-iter.h,
7279 inferior.c, inferior.h, inflow.c, inflow.h, infrun.c, infrun.h,
7280 inline-frame.c, language.h, linespec.c, linux-fork.c, linux-nat.c,
7281 linux-tdep.c, linux-thread-db.c, location.c, machoread.c,
7282 macrotab.h, main.c, maint.c, maint.h, memattr.c, memrange.h,
7283 mi/mi-cmd-break.h, mi/mi-cmd-env.c, mi/mi-cmd-stack.c,
7284 mi/mi-cmd-var.c, mi/mi-interp.c, mi/mi-main.c, mi/mi-parse.h,
7285 minsyms.c, mips-linux-tdep.c, namespace.h,
7286 nat/aarch64-linux-hw-point.c, nat/aarch64-linux-hw-point.h,
7287 nat/aarch64-linux.c, nat/aarch64-sve-linux-ptrace.c,
7288 nat/amd64-linux-siginfo.c, nat/fork-inferior.c,
7289 nat/linux-btrace.c, nat/linux-btrace.h, nat/linux-namespaces.c,
7290 nat/linux-nat.h, nat/linux-osdata.c, nat/linux-personality.c,
7291 nat/linux-procfs.c, nat/linux-ptrace.c, nat/linux-ptrace.h,
7292 nat/linux-waitpid.c, nat/mips-linux-watch.c,
7293 nat/mips-linux-watch.h, nat/ppc-linux.c, nat/x86-dregs.c,
7294 nat/x86-dregs.h, nat/x86-linux-dregs.c, nat/x86-linux.c,
7295 nto-procfs.c, nto-tdep.c, objfile-flags.h, objfiles.c, objfiles.h,
7296 obsd-nat.c, observable.h, osdata.c, p-valprint.c, parse.c,
7297 parser-defs.h, ppc-linux-nat.c, printcmd.c, probe.c, proc-api.c,
7298 procfs.c, producer.c, progspace.h, psymtab.h,
7299 python/py-framefilter.c, python/py-inferior.c, python/py-ref.h,
7300 python/py-type.c, python/python.c, record-btrace.c, record-full.c,
7301 record.c, record.h, regcache-dump.c, regcache.c, regcache.h,
7302 remote-fileio.c, remote-fileio.h, remote-sim.c, remote.c,
7303 riscv-tdep.c, rs6000-aix-tdep.c, rust-exp.y, s12z-tdep.c,
7304 selftest-arch.c, ser-base.c, ser-event.c, ser-pipe.c, ser-tcp.c,
7305 ser-unix.c, skip.c, solib-aix.c, solib-target.c, solib.c,
7306 source-cache.c, source.c, source.h, sparc-nat.c, spu-linux-nat.c,
7307 stack.c, stap-probe.c, symfile-add-flags.h, symfile.c, symfile.h,
7308 symtab.c, symtab.h, target-descriptions.c, target-descriptions.h,
7309 target-memory.c, target.c, target.h, target/waitstatus.c,
7310 target/waitstatus.h, thread-iter.h, thread.c, tilegx-tdep.c,
7311 top.c, top.h, tracefile-tfile.c, tracefile.c, tracepoint.c,
7312 tracepoint.h, tui/tui-io.c, ui-file.c, ui-out.h,
7313 unittests/array-view-selftests.c,
7314 unittests/child-path-selftests.c, unittests/cli-utils-selftests.c,
7315 unittests/common-utils-selftests.c,
7316 unittests/copy_bitwise-selftests.c, unittests/environ-selftests.c,
7317 unittests/format_pieces-selftests.c,
7318 unittests/function-view-selftests.c,
7319 unittests/lookup_name_info-selftests.c,
7320 unittests/memory-map-selftests.c, unittests/memrange-selftests.c,
7321 unittests/mkdir-recursive-selftests.c,
7322 unittests/observable-selftests.c,
7323 unittests/offset-type-selftests.c, unittests/optional-selftests.c,
7324 unittests/parse-connection-spec-selftests.c,
7325 unittests/ptid-selftests.c, unittests/rsp-low-selftests.c,
7326 unittests/scoped_fd-selftests.c,
7327 unittests/scoped_mmap-selftests.c,
7328 unittests/scoped_restore-selftests.c,
7329 unittests/string_view-selftests.c, unittests/style-selftests.c,
7330 unittests/tracepoint-selftests.c, unittests/unpack-selftests.c,
7331 unittests/utils-selftests.c, unittests/xml-utils-selftests.c,
7332 utils.c, utils.h, valarith.c, valops.c, valprint.c, value.c,
7333 value.h, varobj.c, varobj.h, windows-nat.c, x86-linux-nat.c,
7334 xml-support.c, xml-support.h, xml-tdesc.h, xstormy16-tdep.c,
7335 xtensa-linux-nat.c, dwarf2read.h: Change common to gdbsupport.
7336
5b0e2db4
AB
73372019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
7338
7339 * linespec.c (decode_digits_list_mode): Set explicit_line to a
7340 bool value.
7341 (decode_digits_ordinary): Set explicit_line field in sal.
7342 * symtab.c (skip_prologue_sal): Don't skip prologue for a
7343 symtab_and_line that was set on an explicit line number in
7344 assembler code. Do always update the recorded symtab and line if
7345 we do skip the prologue.
7346
0ba852ab
AB
73472019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
7348
7349 * breakpoint.c (set_breakpoint_location_function): Remove
7350 explicit_loc parameter.
7351 (momentary_breakpoint_from_master): Update call to
7352 set_breakpoint_location_function.
7353 (add_location_to_breakpoint): Likewise.
7354
b3a7d171
AB
73552019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
7356
7357 * riscv-tdep.c (riscv_features_from_gdbarch_info): Don't modify
7358 required features based on default bfd type when no specific bfd
7359 is present.
7360
1f6f6e21
PW
73612019-07-08 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7362
7363 * NEWS: Mention that GDB printf and eval commands can now print
7364 C-style and Ada-style convenience var strings without
7365 calling the inferior.
7366 * printcmd.c (printf_c_string): Locally print GDB internal var
7367 instead of transiting via the inferior.
7368 (printf_wide_c_string): Likewise.
7369
73702019-07-04 Alan Hayward <alan.hayward@arm.com>
ea142fbf 7371
5862c886 7372 PR breakpoints/25011
ea142fbf
AH
7373 * symfile.c (symbol_file_command): Call solib_create_inferior_hook.
7374
0598af48
TT
73752019-07-04 Tom Tromey <tom@tromey.com>
7376
7377 PR tui/24724:
7378 * tui/tui-winsource.c (tui_clear_source_content): Update.
7379 (tui_source_window_base::set_is_exec_point_at): Fix comment.
7380 (tui_update_breakpoint_info): Update.
7381 (tui_set_exec_info_content): Update.
7382 * tui/tui-source.c (tui_set_source_content_nil): Update.
7383 * tui/tui-disasm.c (tui_set_disassem_content): Don't set
7384 has_break.
7385 * tui/tui-data.h (enum tui_bp_flag): New.
7386 (tui_bp_flags): New enum flags type.
7387 (struct tui_source_element) <break_mode>: Change type. Rename
7388 from has_break.
7389 (TUI_BP_ENABLED, TUI_BP_DISABLED, TUI_BP_HIT)
7390 (TUI_BP_CONDITIONAL, TUI_BP_HARDWARE): Don't define. Now enum
7391 constants.
7392 * tui/tui-winsource.h: Fix comment.
7393
350fab54
AH
73942019-07-04 Alan Hayward <alan.hayward@arm.com>
7395
7396 * aarch32-linux-nat.h (VFP_REGS_SIZE): Remove define.
7397 * aarch64-linux-nat.c (fetch_fpregs_from_thread)
7398 (store_fpregs_to_thread)
7399 (aarch64_linux_nat_target::read_description): Use ARM_VFP3_REGS_SIZE.
7400 * arch/arm.h (IWMMXT_VEC_REGISTER_SIZE, ARM_CORE_REGS_SIZE)
7401 (ARM_FP_REGS_SIZE, ARM_VFP2_REGS_SIZE, ARM_VFP3_REGS_SIZE)
7402 (IWMMXT_REGS_SIZE): Add define.
7403 * arm-linux-nat.c (IWMMXT_REGS_SIZE): Remove define.
7404 (fetch_vfp_regs, store_vfp_regs)
7405 (arm_linux_nat_target::read_description): Use ARM_VFP3_REGS_SIZE.
7406 * arm-tdep.c (arm_register_g_packet_guesses): Use new defines.
7407
f0452268
AH
74082019-07-04 Alan Hayward <alan.hayward@arm.com>
7409
7410 * arch/arm-get-next-pcs.c (thumb_get_next_pcs_raw): Use ARM_
7411 defines.
7412 * arch/arm-linux.c (arm_linux_sigreturn_next_pc_offset): Likewise.
7413 * arch/arm.h (INT_REGISTER_SIZE) Rename from...
7414 (ARM_INT_REGISTER_SIZE): ...to this.
7415 (ARM_FP_REGISTER_SIZE) (ARM_VFP_REGISTER_SIZE): Add define.
7416 * arm-linux-tdep.c (ARM_LINUX_JB_ELEMENT_SIZE)
7417 (ARM_LINUX_SIZEOF_GREGSET, arm_linux_supply_gregset)
7418 (arm_linux_collect_gregset, supply_nwfpe_register)
7419 (collect_nwfpe_register, arm_linux_collect_nwfpe): Use ARM_
7420 defines.
7421 * arm-linux-tdep.h (ARM_LINUX_SIZEOF_NWFPE, NWFPE_FPSR_OFFSET)
7422 (NWFPE_FPCR_OFFSET, NWFPE_TAGS_OFFSET): Likewise
7423 * arm-nbsd-tdep.c (ARM_NBSD_JB_ELEMENT_SIZE): Likewise.
7424 * arm-tdep.c (arm_push_dummy_call, arm_extract_return_value)
7425 (arm_return_in_memory, arm_store_return_value)
7426 (arm_get_longjmp_target, arm_register_g_packet_guesses)
7427 (arm_record_ld_st_multiple): Likewise.
7428 * arm-tdep.h (FP_REGISTER_SIZE, VFP_REGISTER_SIZE): Remove.
7429 * arm-wince-tdep.c (ARM_WINCE_JB_ELEMENT_SIZE): Use ARM_ defines.
7430
e935475c
AH
74312019-07-04 Alan Hayward <alan.hayward@arm.com>
7432
7433 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Use
7434 AARCH64_DISPLACED_MODIFIED_INSNS.
7435 * aarch64-tdep.c (struct aarch64_displaced_step_data)
7436 (aarch64_displaced_step_copy_insn): Likewise.
7437 * aarch64-tdep.h (DISPLACED_MODIFIED_INSNS): Rename from..
7438 (AARCH64_DISPLACED_MODIFIED_INSNS): ...to this.
7439 * arm-linux-tdep.c (arm_linux_cleanup_svc): Use
7440 ARM_DISPLACED_MODIFIED_INSNS.
7441 * arm-tdep.c (arm_gdbarch_init): Likewise.
7442 * arm-tdep.h (DISPLACED_MODIFIED_INSNS): Rename from..
7443 (ARM_DISPLACED_MODIFIED_INSNS): ...to this.
7444 (struct arm_displaced_step_closure): Use
7445 ARM_DISPLACED_MODIFIED_INSNS.
7446
df0bb381
AH
74472019-07-04 Alan Hayward <alan.hayward@arm.com>
7448
7449 * features/Makefile: Remove unused xml files.
7450 * features/aarch64.xml: Remove.
7451 * features/i386/amd64-avx-avx512-linux.xml: Remove.
7452 * features/i386/amd64-avx-avx512.xml: Remove.
7453 * features/i386/amd64-avx-linux.xml: Remove.
7454 * features/i386/amd64-avx-mpx-avx512-pku-linux.xml: Remove.
7455 * features/i386/amd64-avx-mpx-avx512-pku.xml: Remove.
7456 * features/i386/amd64-avx-mpx-linux.xml: Remove.
7457 * features/i386/amd64-avx-mpx.xml: Remove.
7458 * features/i386/amd64-avx.xml: Remove.
7459 * features/i386/amd64-linux.xml: Remove.
7460 * features/i386/amd64-mpx-linux.xml: Remove.
7461 * features/i386/amd64-mpx.xml: Remove.
7462 * features/i386/amd64.xml: Remove.
7463 * features/i386/i386-avx-avx512-linux.xml: Remove.
7464 * features/i386/i386-avx-avx512.xml: Remove.
7465 * features/i386/i386-avx-linux.xml: Remove.
7466 * features/i386/i386-avx-mpx-avx512-pku-linux.xml: Remove.
7467 * features/i386/i386-avx-mpx-avx512-pku.xml: Remove.
7468 * features/i386/i386-avx-mpx-linux.xml: Remove.
7469 * features/i386/i386-avx-mpx.xml: Remove.
7470 * features/i386/i386-avx.xml: Remove.
7471 * features/i386/i386-linux.xml: Remove.
7472 * features/i386/i386-mmx-linux.xml: Remove.
7473 * features/i386/i386-mmx.xml: Remove.
7474 * features/i386/i386-mpx-linux.xml: Remove.
7475 * features/i386/i386-mpx.xml: Remove.
7476 * features/i386/i386.xml: Remove.
7477 * features/i386/x32-avx-avx512-linux.xml: Remove.
7478 * features/i386/x32-avx-linux.xml: Remove.
7479 * features/i386/x32-linux.xml: Remove.
7480
edd6266a
AH
74812019-07-04 Alan Hayward <alan.hayward@arm.com>
7482
7483 * regformats/aarch64.dat: Remove.
7484 * regformats/i386/amd64-avx-avx512-linux.dat: Remove.
7485 * regformats/i386/amd64-avx-linux.dat: Remove.
7486 * regformats/i386/amd64-avx-mpx-avx512-pku-linux.dat: Remove.
7487 * regformats/i386/amd64-avx-mpx-linux.dat: Remove.
7488 * regformats/i386/amd64-linux.dat: Remove.
7489 * regformats/i386/amd64-mpx-linux.dat: Remove.
7490 * regformats/i386/amd64.dat: Remove.
7491 * regformats/i386/i386-avx-avx512-linux.dat: Remove.
7492 * regformats/i386/i386-avx-linux.dat: Remove.
7493 * regformats/i386/i386-avx-mpx-avx512-pku-linux.dat: Remove.
7494 * regformats/i386/i386-avx-mpx-linux.dat: Remove.
7495 * regformats/i386/i386-linux.dat: Remove.
7496 * regformats/i386/i386-mmx-linux.dat: Remove.
7497 * regformats/i386/i386-mpx-linux.dat: Remove.
7498 * regformats/i386/i386.dat: Remove.
7499 * regformats/i386/x32-avx-avx512-linux.dat: Remove.
7500 * regformats/i386/x32-avx-linux.dat: Remove.
7501 * regformats/i386/x32-linux.dat: Remove.
7502
2b40fda7
AH
75032019-07-04 Alan Hayward <alan.hayward@arm.com>
7504
7505 * aarch64-tdep.c: Remove xml self tests.
7506 * amd64-linux-tdep.c: Likewise.
7507 * amd64-tdep.c: Likewise.
7508 * i386-linux-tdep.c: Likewise.
7509 * i386-tdep.c: Likewise.
7510
5f4ba3e7
PA
75112019-07-03 Pedro Alves <palves@redhat.com>
7512
7513 PR cli/24732
7514 * cli/cli-cmds.c (struct pipe_cmd_opts): New.
7515 (pipe_cmd_option_defs): New.
7516 (make_pipe_cmd_options_def_group): New.
7517 (pipe_command): Use gdb::option::process_options.
7518 (pipe_command_completer): New function.
7519 (_initialize_cli_cmds): Install completer for "pipe" command.
7520
3d9be6f5
PA
75212019-07-03 Pedro Alves <palves@redhat.com>
7522
7523 * cli/cli-option.c (union option_value) <string>: New field.
7524 (struct option_def_and_value): Add ctor, move ctor, dtor and
7525 use DISABLE_COPY_AND_ASSIGN.
7526 (option_def_and_value::clear_value): New.
7527 (parse_option, save_option_value_in_ctx, get_val_type_str)
7528 (add_setshow_cmds_for_options): Handle var_string.
7529 * cli-option.h (union option_def::var_address) <string>: New
7530 field.
7531 (struct string_option_def): New.
7532 * maint-test-options.c (struct test_options_opts): Add default
7533 ctor and use DISABLE_COPY_AND_ASSIGN.
7534 <string_opt>: New field.
7535 (test_options_opts::~test_options_opts): New.
7536 (test_options_opts::dump): Also dump "-string".
7537 (test_options_option_defs): Install "string.
7538
41fc454c
PA
75392019-07-03 Pedro Alves <palves@redhat.com>
7540
7541 * cli/cli-option.c (parse_option) <var_enum>: Don't return an
7542 option_value with a null enumeration.
7543 (complete_options): Save the option values in the context.
7544 (save_option_value_in_ctx): New, factored out from ...
7545 (process_options): ... here.
7546 * cli/cli-utils.c (get_ulongest): Don't advance PP until the end
7547 of the function.
7548 * maint-test-options.c (test_options_opts::dump): New, factored
7549 out from ...
7550 (maintenance_test_options_command_mode): ... here.
7551 (maintenance_test_options_command_completion_result): Delete.
7552 (maintenance_test_options_command_completion_text): Update
7553 comment.
7554 (maintenance_show_test_options_completion_result): Change
7555 prototype. Just print
7556 maintenance_test_options_command_completion_text.
7557 (save_completion_result): New.
7558 (maintenance_test_options_completer_mode): Pass options context to
7559 complete_options, and then save a dump.
7560 (_initialize_maint_test_options): Use add_cmd to install "maint
7561 show test-options-completion-result".
7562
fdbc9870
PA
75632019-07-03 Pedro Alves <palves@redhat.com>
7564
7565 * NEWS (New commands): Mention "with" and "maint with".
7566 * cli/cli-cmds.c (with_command_1, with_command_completer_1)
7567 (with_command, with_command_completer): New.
7568 (pipe_command): Adjust to new repeat_previous
7569 interface.
7570 (_initialize_cli_cmds): Install the "with" command and its "w"
7571 alias.
7572 * cli/cli-cmds.h (with_command_1, with_command_completer_1): New
7573 declarations.
7574 * cli/cli-setshow.c (parse_cli_var_uinteger)
7575 (parse_cli_var_zuinteger_unlimited, do_set_command): Handle empty
7576 argument strings for all var_types.
7577 (get_setshow_command_value_string): New, factored out from ...
7578 (do_show_command): ... this.
7579 * cli/cli-setshow.h: Include <string>.
7580 (get_setshow_command_value_string): Declare.
7581 * command.h (repeat_previous): Now returns const char *. Adjust
7582 comment.
7583 * maint.c: Include "cli/cli-cmds.h".
7584 (maintenance_with_cmd, maintenance_with_cmd_completer): New.
7585 (_initialize_maint_cmds): Register the "maintenance with" command.
7586 * top.c (repeat_previous): Move bits from pipe_command here:
7587 Return the saved command line, if any; error out if there's no
7588 command to relaunch.
7589
c6ac8931
PA
75902019-07-03 Pedro Alves <palves@redhat.com>
7591
7592 * NEWS (New commands): Mention "maint set/show test-settings"
7593 instead of "maint test-settings".
7594 * maint-test-settings.c (maintenance_test_settings_list): Delete.
7595 (maintenance_test_settings_set_list): Rename to ...
7596 (maintenance_set_test_settings_list): ... this.
7597 (maintenance_test_settings_show_list): Rename to ...
7598 (maintenance_show_test_settings_list): ... this.
7599 (maintenance_test_settings_cmd): Delete.
7600 (maintenance_test_settings_set_cmd): ...
7601 (maintenance_set_test_settings_cmd): ... this.
7602 (maintenance_test_settings_show_cmd): ...
7603 (maintenance_show_test_settings_cmd): ... this.
7604 (maintenance_test_settings_show_value_cmd):
7605 (maintenance_show_test_settings_value_cmd): ... this.
7606 (_initialize_maint_test_settings): No longer install the "maint
7607 test-settings" prefix command. Rename "maint test-settings set"
7608 to "maint set test-settings", and "maint test-settings show" to
7609 "maint show test-settings". Adjust all subcommands.
7610
d1fcf2fd
PA
76112019-07-03 Pedro Alves <palves@redhat.com>
7612
7613 * maint-test-settings.c: Fix file's intro comment. Replace all
7614 references to "test-options" with references to "test-settings",
7615 in comments.
7616
970f9d09
PA
76172019-07-03 Pedro Alves <palves@redhat.com>
7618
7619 * maint-test-settings.c (maintenance_test_settings_xxx)
7620 (maintenance_test_settings_yyy, maintenance_test_settings_zzz):
7621 New.
7622 (maintenance_test_settings_enums): Use them.
7623 (maintenance_test_settings_enum): Default to
7624 maintenance_test_settings_xxx.
7625 (_initialize_maint_test_settings): Initialize
7626 MAINTENANCE_TEST_SETTINGS_FILENAME.
7627
f3869b1a
SM
76282019-07-02 Simon Marchi <simon.marchi@polymtl.ca>
7629
7630 * breakpoint.h (remove_breakpoints_inf): Change return type to
7631 void, move function documentation here.
7632 * breakpoint.c (remove_breakpoints_inf): Change return type to
7633 void, move function documentation to header.
7634
54d66006
PA
76352019-07-02 Pedro Alves <palves@redhat.com>
7636
7637 * NEWS (Completion improvements): Mention "info threads".
7638 * thread.c (struct info_threads_opts, info_threads_option_defs)
7639 (make_info_threads_options_def_group): New.
7640 (info_threads_command): Use gdb::option::process_options.
7641 (info_threads_command_completer): New.
7642 (_initialize_thread): Use gdb::option::build_help to build the
7643 help text for "info threads".
7644
854f6088
SM
76452019-07-02 Simon Marchi <simon.marchi@polymtl.ca>
7646
7647 * defs.h (generic_load): Move from here...
7648 * symfile.h (generic_load): ... to here. Rename name parameter
7649 to args.
7650 * symfile.c (generic_load): Add comment.
7651
54ee4252
TT
76522019-07-01 Tom Tromey <tromey@adacore.com>
7653
7654 * dwarf2read.c
7655 (dw2_debug_names_iterator::find_vec_in_debug_names): Hoist
7656 declaration of without_params. Fix formatting.
7657
65392b3e
TT
76582019-07-01 Tom Tromey <tromey@adacore.com>
7659
7660 * ada-exp.y (find_primitive_type): Update.
7661 * ada-lang.h (ada_lookup_symbol): Update.
7662 * ada-lang.c (ada_lookup_symbol): Remove "is_a_field_of_this"
7663 parameter.
7664 (ada_lookup_encoded_symbol, ada_lookup_symbol_nonlocal): Update.
7665
7d7571f0
SDJ
76662019-06-28 Sergio Durigan Junior <sergiodj@redhat.com>
7667
7668 PR breakpoints/24541
7669 * gdbarch.c: Regenerate.
7670 * gdbarch.h: Regenerate.
7671 * gdbarch.sh: Add 'stap_adjust_register'.
7672 * i386-tdep.c: Include '<unordered_set>'.
7673 (i386_stap_adjust_register): New function.
7674 (i386_elf_init_abi): Register 'i386_stap_adjust_register'.
7675 * stap-probe.c (stap_parse_register_operand): Call
7676 'gdbarch_stap_adjust_register'.
7677
5af5392a
SDJ
76782019-06-28 Sergio Durigan Junior <sergiodj@redhat.com>
7679
7680 PR python/24742
7681 https://bugzilla.redhat.com/show_bug.cgi?id=1723564
7682 * python/python.c (do_start_initialization): Use 'xmalloc'
7683 instead of 'PyMem_Malloc'.
7684
10d06d82
TT
76852019-06-28 Tom Tromey <tromey@adacore.com>
7686
7687 * dwarf2read.c (partial_die_info::read): Prefer the linkage name
7688 for Ada.
7689
1b7f24cd
TT
76902019-06-27 Tom Tromey <tromey@adacore.com>
7691
7692 * arm-tdep.c (arm_objfile_data_key): Move lower. Change type to
7693 objfile_key.
7694 (arm_find_mapping_symbol, arm_record_special_symbol)
7695 (_initialize_arm_tdep): Update.
7696 (arm_objfile_data_free): Remove.
7697
3d507ff2
TT
76982019-06-27 Tom Tromey <tromey@adacore.com>
7699
7700 * cp-valprint.c (cp_print_value_fields): Pass opts, not options,
7701 to cp_print_static_field.
7702
762c164d
TT
77032019-06-26 Tom Tromey <tromey@adacore.com>
7704
7705 * minsyms.c (lookup_minimal_symbol_solib_trampoline): Remove.
7706 * minsyms.h (lookup_minimal_symbol_solib_trampoline): Don't
7707 declare.
7708
aa2f9bcf
AH
77092019-06-26 Alan Hayward <alan.hayward@arm.com>
7710
7711 * features/aarch64-core.c (create_feature_aarch64_core):
7712 Regenerate.
7713 * features/aarch64-core.xml: Add cpsr flags.
7714
3426ae57
AH
77152019-06-26 Alan Hayward <alan.hayward@arm.com>
7716
7717 * arm-tdep.c (arm_gnu_triplet_regexp): New function.
7718 (arm_gdbarch_init): Add arm_gnu_triplet_regexp.
7719
4838e44c
SM
77202019-06-25 Simon Marchi <simon.marchi@polymtl.ca>
7721
7722 * arm-tdep.c (struct arm_per_objfile) <section_maps_sorted>: New
7723 field.
7724 (arm_find_mapping_symbol): Sort mapping symbol vectors on first
7725 use.
7726 (arm_record_special_symbol): Don't insert new symbol in sorted
7727 position, push it at the end.
7728
54cc7474
SM
77292019-06-25 Simon Marchi <simon.marchi@polymtl.ca>
7730
7731 * arm-tdep.c (struct arm_mapping_symbol) (operator <): New.
7732 (arm_mapping_symbol_s): Remove.
7733 (DEF_VEC_O(arm_mapping_symbol_s)): Remove.
7734 (arm_mapping_symbol_vec): New typedef.
7735 (struct arm_per_objfile): Add constructor.
7736 <section_maps>: Change type to
7737 std::unique_ptr<arm_mapping_symbol_vec[]>.
7738 (arm_compare_mapping_symbols): Remove.
7739 (arm_find_mapping_symbol): Adjust to section_maps type change.
7740 (arm_objfile_data_free): Call delete on arm_per_objfile.
7741 (arm_record_special_symbol): Adjust to section_maps type change.
7742 Allocate arm_per_objfile with new.
7743
b65b566c
PW
77442019-06-25 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7745
7746 * cli/cli-cmds.c (alias_command): Compare the alias prefix
7747 with the command prefix.
7748
c2fc64f5
TT
77492019-06-25 Tom Tromey <tom@tromey.com>
7750
7751 * tui/tui-wingeneral.c (tui_delete_win): Remove "return".
7752 * tui/tui-data.c (~tui_gen_win_info): Remove "if".
7753
fb54fa76
TT
77542019-06-25 Tom Tromey <tom@tromey.com>
7755
7756 * tui/tui-layout.c (init_and_make_win): Assert on unrecognized
7757 type.
7758 * tui/tui-data.h (struct tui_gen_win_info): Make constructor
7759 protected.
7760
f7952c57
TT
77612019-06-25 Tom Tromey <tom@tromey.com>
7762
7763 * tui/tui-winsource.c
7764 (tui_source_window_base::set_is_exec_point_at): Add check against
7765 LOA_ADDRESS.
7766
17568d78
TT
77672019-06-25 Tom Tromey <tom@tromey.com>
7768
7769 * tui/tui-source.c (tui_set_source_content): Don't check before
7770 xfree.
7771 * tui/tui-disasm.c (tui_disassemble): Don't check before xfree.
7772
53e7cdba
TT
77732019-06-25 Tom Tromey <tom@tromey.com>
7774
7775 * tui/tui-winsource.h (tui_update_source_window_as_is)
7776 (tui_alloc_source_buffer, tui_line_is_displayed)
7777 (tui_addr_is_displayed): Change type of win_info.
7778 * tui/tui-winsource.c (tui_update_source_window_as_is)
7779 (tui_clear_source_content, tui_show_source_line)
7780 (tui_show_source_content, tui_source_window_base::refill)
7781 (tui_source_window_base::set_is_exec_point_at)
7782 (tui_source_window_base::set_is_exec_point_at)
7783 (tui_update_breakpoint_info, tui_set_exec_info_content): Update.
7784 (tui_alloc_source_buffer, tui_line_is_displayed)
7785 (tui_addr_is_displayed): Change type of win_info. Update.
7786 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
7787 (tui_source_window_base::do_make_visible_with_new_height):
7788 Update.
7789 * tui/tui-source.c (tui_set_source_content)
7790 (tui_set_source_content_nil)
7791 (tui_source_window::do_scroll_vertical): Update.
7792 * tui/tui-layout.c (show_layout): Update.
7793 * tui/tui-disasm.c (tui_set_disassem_content)
7794 (tui_disasm_window::do_scroll_vertical): Update.
7795 * tui/tui-data.h (tui_win_content): Remove.
7796 (struct tui_gen_win_info) <content, content_size>: Remove.
7797 (struct tui_source_element): Add initializers and destructor.
7798 (union tui_which_element, struct tui_win_element): Remove.
7799 (struct tui_source_window_base) <content>: New field.
7800 (struct tui_data_window): Remove destructor.
7801 (tui_alloc_content, tui_free_win_content)
7802 (tui_free_all_source_wins_content): Don't declare.
7803 * tui/tui-data.c (tui_initialize_static_data): Update.
7804 (init_content_element, tui_alloc_content): Remove.
7805 (~tui_gen_win_info): Update.
7806 (~tui_data_window, tui_free_all_source_wins_content)
7807 (tui_free_win_content, free_content, free_content_elements):
7808 Remove.
7809
7908abbf
TT
78102019-06-25 Tom Tromey <tom@tromey.com>
7811
7812 * tui/tui-winsource.h (tui_clear_source_content)
7813 (tui_erase_source_content, tui_show_source_content): Change type
7814 of win_info.
7815 * tui/tui-winsource.c (tui_clear_source_content)
7816 (tui_erase_source_content, tui_show_source_content): Change type
7817 of win_info.
7818 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
7819 * tui/tui-source.h (tui_set_source_content_nil): Change type of
7820 win_info.
7821 * tui/tui-source.c (tui_set_source_content_nil): Change type of
7822 win_info.
7823 * tui/tui-layout.c (show_source_or_disasm_and_command): Update.
7824
02c28df0
TT
78252019-06-25 Tom Tromey <tom@tromey.com>
7826
7827 * tui/tui-winsource.c (tui_clear_source_content)
7828 (tui_source_window_base::set_is_exec_point_at): Update.
7829 * tui/tui-source.c (tui_set_source_content_nil): Update.
7830 * tui/tui-data.h (struct tui_source_element) <is_exec_point>: Now
7831 a bool.
7832 * tui/tui-data.c (init_content_element): Update.
7833
6658b1bf
TT
78342019-06-25 Tom Tromey <tom@tromey.com>
7835
7836 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Update.
7837 * tui/tui-win.c (make_invisible_and_set_new_height): Update.
7838 * tui/tui-layout.c (init_and_make_win): Update.
7839 * tui/tui.h (enum tui_win_type): Update.
7840 * tui/tui-data.h (tui_win_is_auxiliary): Rename from
7841 tui_win_is_auxillary.
7842 * tui/tui-data.c (tui_win_is_auxiliary): Rename from
7843 tui_win_is_auxillary.
7844
21e1c91e
TT
78452019-06-25 Tom Tromey <tom@tromey.com>
7846
7847 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Update.
7848 * tui/tui-windata.c (tui_data_window::first_data_item_displayed)
7849 (tui_delete_data_content_windows, tui_display_all_data)
7850 (tui_data_window::do_scroll_vertical, tui_display_data_from):
7851 Update.
7852 * tui/tui-win.c (tui_data_window::set_new_height): Simplify.
7853 * tui/tui-regs.c (tui_last_regs_line_no)
7854 (tui_line_from_reg_element_no, tui_first_reg_element_no_inline)
7855 (tui_show_registers): Update.
7856 (tui_show_register_group): Return void. Update.
7857 (tui_display_registers_from, tui_display_reg_element_at_line)
7858 (tui_display_registers_from_line, tui_check_register_values):
7859 Update.
7860 * tui/tui-data.h (union tui_which_element) <data_window>: Remove
7861 member.
7862 (struct tui_data_window) <regs_content>: Now a std::vector.
7863 <regs_content_count>: Remove.
7864 (tui_add_content_elements, tui_free_data_content): Don't declare.
7865 * tui/tui-data.c (tui_data_window::clear_detail): Update.
7866 (init_content_element): Remove DATA_WIN case. Add assert.
7867 (tui_add_content_elements): Remove.
7868 (tui_data_window): Update.
7869 (tui_free_data_content): Remove.
7870 (free_content_elements): Remove DATA_WIN case.
7871
115ac53b
TT
78722019-06-25 Tom Tromey <tom@tromey.com>
7873
7874 * tui/tui-data.c (tui_data_item_window): Update.
7875 * tui/tui-windata.h (tui_check_data_values): Don't declare.
7876 * tui/tui-windata.c (tui_display_all_data)
7877 (tui_display_data_from_line): Update.
7878 (tui_check_data_values): Remove.
7879 * tui/tui-regs.c (tui_show_register_group)
7880 (tui_display_reg_element_at_line): Update.
7881 * tui/tui-hooks.c (tui_register_changed)
7882 (tui_refresh_frame_and_register_information): Call
7883 tui_check_register_values.
7884 * tui/tui-data.h (struct tui_data_window) <data_content,
7885 data_content_count, data_type>: Remove.
7886 (enum tui_data_type): Remove.
7887
7888 * tui/tui-data.c (tui_data_window::clear_detail)
7889 (~tui_data_window): Update.
7890
eaf9738b
TT
78912019-06-25 Tom Tromey <tom@tromey.com>
7892
7893 * tui/tui-windata.h (tui_first_data_item_displayed): Don't
7894 declare.
7895 * tui/tui-windata.c (tui_data_window::first_data_item_displayed):
7896 Rename from tui_first_data_item_displayed. Update.
7897 (tui_data_window::refresh_all)
7898 (tui_data_window::do_scroll_vertical): Update.
7899 * tui/tui-data.h (struct tui_data_window)
7900 <first_data_item_displayed>: Declare new method.
7901
31ca4723
TT
79022019-06-25 Tom Tromey <tom@tromey.com>
7903
7904 * tui/tui-data.h (tui_init_generic_part): Don't declare.
7905 * tui/tui-data.c (tui_init_generic_part): Remove, moving
7906 contents...
7907 (tui_initialize_static_data): ...here.
7908
41bcff7f
TT
79092019-06-25 Tom Tromey <tom@tromey.com>
7910
7911 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
7912 (tui_display_registers_from, tui_check_register_values): Update.
7913 (tui_display_register): Remove win_info parameter; update.
7914 (tui_get_register): Change type of parameters.
7915 * tui/tui-data.h (struct tui_data_element): Remove.
7916 (union tui_which_element) <data>: Remove.
7917 <data_window>: Change type.
7918 (struct tui_data_item_window): New.
7919 * tui/tui-data.c (init_content_element): Remove DATA_ITEM_WIN
7920 case. Add assert.
7921 (~tui_data_item_window): New destructor.
7922 (free_content_elements): Remove DATA_ITEM_WIN case.
7923
d2802c33
TT
79242019-06-25 Tom Tromey <tom@tromey.com>
7925
7926 * tui/tui.h (enum tui_win_type) <MAX_WINDOWS, UNDEFINED_WIN>:
7927 Remove.
7928
dd835f8b
TT
79292019-06-25 Tom Tromey <tom@tromey.com>
7930
7931 * tui/tui-data.h (struct tui_command_element): Remove.
7932 (union tui_which_element) <command>: Remove.
7933 * tui/tui-data.c (init_content_element): Remove CMD_WIN case. Add
7934 assert.
7935 (free_content_elements): Remove CMD_WIN case.
7936
bd7db367
TT
79372019-06-25 Tom Tromey <tom@tromey.com>
7938
7939 * tui/tui-layout.c (tui_set_layout): Update.
7940 * tui/tui-data.h (struct tui_layout_def) <split>: Remove.
7941 * tui/tui-data.c (layout_def): Update.
7942
3add462f
TT
79432019-06-25 Tom Tromey <tom@tromey.com>
7944
7945 * tui/tui-wingeneral.c (tui_refresh_all): Update.
7946 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
7947 (tui_source_window_base::set_new_height): Update.
7948 * tui/tui-stack.c (tui_make_status_line): Change parameter type.
7949 Update.
7950 (tui_set_locator_fullname, tui_set_locator_info)
7951 (tui_show_frame_info): Update.
7952 * tui/tui-source.c (tui_set_source_content)
7953 (tui_source_is_displayed): Update.
7954 * tui/tui-layout.c (show_source_disasm_command, show_data)
7955 (show_source_or_disasm_and_command): Update.
7956 * tui/tui-disasm.c (tui_set_disassem_content)
7957 (tui_get_begin_asm_address): Update.
7958 * tui/tui-data.h (struct tui_locator_element): Remove.
7959 (union tui_which_element) <locator>: Remove.
7960 (struct tui_locator_window): New.
7961 (tui_locator_win_info_ptr): Change return type.
7962 * tui/tui-data.c (_locator): Change type.
7963 (tui_locator_win_info_ptr): Change return type.
7964 (init_content_element): Remove LOCATOR_WIN case. Add assert.
7965 (tui_alloc_content): Add assert.
7966
489e9d8b
TT
79672019-06-25 Tom Tromey <tom@tromey.com>
7968
7969 * tui/tui-winsource.c
7970 (tui_exec_info_window::maybe_allocate_content): New method.
7971 (tui_set_exec_info_content, tui_show_exec_info_content): Update.
7972 * tui/tui-layout.c (init_and_make_win): Add EXEC_INFO_WIN case.
7973 (make_source_or_disasm_window): Add cast.
7974 * tui/tui-data.h (union tui_which_element) <simple_string>:
7975 Remove.
7976 (struct tui_source_info): New.
7977 (struct tui_source_window_base) <execution_info>: Change type.
7978 * tui/tui-data.c (init_content_element): Remove EXEC_INFO_WIN
7979 case, and add assert.
7980 (tui_alloc_content): Add assert.
7981
c3fabb7d
TT
79822019-06-25 Tom Tromey <tom@tromey.com>
7983
7984 * tui/tui-data.h (tui_alloc_win_info): Don't declare.
7985 * tui/tui-layout.c (init_and_make_win): Use "new" directly.
7986 * tui/tui-data.c (tui_alloc_win_info): Remove.
7987
bbc228ee
TT
79882019-06-25 Tom Tromey <tom@tromey.com>
7989
7990 * tui/tui-win.c (tui_set_win_focus_to): Don't check window type.
7991 * tui/tui-wingeneral.c (tui_unhighlight_win): Check
7992 can_highlight.
7993
5fcee43a
TT
79942019-06-25 Tom Tromey <tom@tromey.com>
7995
7996 * tui/tui-win.c (tui_source_window_base::update_tab_width): Call
7997 make_visible_with_new_height method.
7998 (tui_win_info::make_visible_with_new_height): New method.
7999 (tui_source_window_base::do_make_visible_with_new_height)
8000 (tui_data_window::do_make_visible_with_new_height)
8001 (tui_cmd_window::do_make_visible_with_new_height): New methods.
8002 (make_visible_with_new_height): Remove.
8003 (tui_resize_all, tui_adjust_win_heights): Use
8004 make_visible_with_new_height method.
8005 * tui/tui-data.h (struct tui_win_info)
8006 <do_make_visible_with_new_height, make_visible_with_new_height>:
8007 New methods.
8008 (struct tui_source_window_base, struct tui_data_window)
8009 (struct tui_cmd_window) <do_make_visible_with_new_height>: New
8010 methods.
8011
d83f1fe6
TT
80122019-06-25 Tom Tromey <tom@tromey.com>
8013
8014 * tui/tui-win.c (tui_source_window_base::update_tab_width): New
8015 method.
8016 (update_tab_width): Call update_tab_width method.
8017 * tui/tui-data.h (struct tui_win_info)
8018 (struct tui_source_window_base) <update_tab_width>: New methods.
8019
17374de4
TT
80202019-06-25 Tom Tromey <tom@tromey.com>
8021
8022 * tui/tui-wingeneral.h (tui_make_window): Change type of "box_it"
8023 parameter.
8024 * tui/tui-wingeneral.c (tui_make_window): Change type of "box_it"
8025 parameter.
8026 (tui_gen_win_info::make_visible): Update.
8027 * tui/tui-layout.c (init_and_make_win): Change type of "box_it"
8028 parameter.
8029 * tui/tui-data.h (enum tui_box): New enum.
8030 (BOX_WINDOW, DONT_BOX_WINDOW): Remove defines.
8031
f936bca2
TT
80322019-06-25 Tom Tromey <tom@tromey.com>
8033
8034 * tui/tui-layout.c (make_source_or_disasm_window): Always use
8035 init_and_make_win for EXEC_INFO_WIN.
8036 * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>: No
8037 longer inline.
8038 (struct tui_win_info) <~tui_win_info>: Inline.
8039 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
8040 Don't declare.
8041 * tui/tui-data.c (source_win, disasm_win): Remove globals.
8042 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
8043 Remove.
8044 (tui_initialize_static_data): Update.
8045 (~tui_gen_win_info): Handle more cleanup here.
8046 (~tui_source_window_base): Delete "execution_info".
8047 (~tui_win_info): Move code to ~tui_gen_win_info; remove.
8048
d6ba6a11
TT
80492019-06-25 Tom Tromey <tom@tromey.com>
8050
8051 * tui/tui-layout.c (make_command_window): Don't set
8052 can_highlight.
8053 (show_source_disasm_command): Call the reset method.
8054 (show_data): Don't set can_highlight. Call the reset method.
8055 (tui_gen_win_info::reset): Rename from init_gen_win_info
8056 (init_and_make_win): Simplify. Return tui_gen_win_info.
8057 (show_source_or_disasm_and_command): Call the reset method.
8058 * tui/tui-data.h (struct tui_gen_win_info) <reset>: New method.
8059 (struct tui_cmd_window): Set can_highlight.
8060
48a3bd16
TT
80612019-06-25 Tom Tromey <tom@tromey.com>
8062
8063 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Rename
8064 from make_visible.
8065 (tui_make_visible, tui_make_invisible): Rewrite.
8066 (tui_win_info::make_visible): Remove.
8067 (tui_source_window_base::make_visible): Update.
8068 * tui/tui-data.h (struct tui_gen_win_info) <make_visible>: New
8069 method. Moved from...
8070 (struct tui_win_info) <make_visible>: ...here.
8071
c3bd716f
TT
80722019-06-25 Tom Tromey <tom@tromey.com>
8073
8074 * tui/tui-winsource.c
8075 (tui_source_window_base::do_scroll_horizontal): Remove direction
8076 parameter.
8077 * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Remove
8078 direction parameter.
8079 * tui/tui-win.c (tui_win_info::forward_scroll)
8080 (tui_win_info::backward_scroll, tui_win_info::left_scroll)
8081 (tui_win_info::right_scroll): Update.
8082 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Remove
8083 direction parameter.
8084 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Remove
8085 direction parameter.
8086 * tui/tui-data.h (enum tui_scroll_direction): Remove.
8087 (struct tui_win_info) <do_scroll_vertical, do_scroll_horizontal>:
8088 Remove direction parameter.
8089 (struct tui_source_window_base, struct tui_source_window)
8090 (struct tui_disasm_window, struct tui_data_window)
8091 (struct tui_cmd_window): Update.
8092
21c32dca
TT
80932019-06-25 Tom Tromey <tom@tromey.com>
8094
8095 * tui/tui-winsource.h (tui_set_exec_info_content)
8096 (tui_show_exec_info_content, tui_erase_exec_info_content)
8097 (tui_clear_exec_info_content, tui_update_exec_info): Change
8098 argument to tui_source_window_base.
8099 * tui/tui-winsource.c (tui_set_exec_info_content)
8100 (tui_show_exec_info_content, tui_erase_exec_info_content)
8101 (tui_clear_exec_info_content, tui_update_exec_info): Change
8102 argument to tui_source_window_base.
8103
73fbdc65
TT
81042019-06-25 Tom Tromey <tom@tromey.com>
8105
8106 * tui/tui-winsource.h (tui_set_exec_info_content): Return void.
8107 * tui/tui-winsource.c (tui_set_exec_info_content): Return void.
8108
33325343
TT
81092019-06-25 Tom Tromey <tom@tromey.com>
8110
8111 * tui/tui-winsource.c (tui_set_exec_info_content): Remove NULL
8112 check.
8113
29d2c474
TT
81142019-06-25 Tom Tromey <tom@tromey.com>
8115
8116 * tui/tui-winsource.h (tui_alloc_source_buffer): Change return
8117 type to void.
8118 * tui/tui-winsource.c (tui_alloc_source_buffer): Change return
8119 type to void.
8120 * tui/tui-source.c (tui_set_source_content): Update.
8121 * tui/tui-disasm.c (tui_set_disassem_content): Update.
8122
152f3f4b
TT
81232019-06-25 Tom Tromey <tom@tromey.com>
8124
8125 * tui/tui-win.c (window_name_completer, tui_set_focus)
8126 (tui_all_windows_info): Use name method.
8127 * tui/tui-data.h (struct tui_gen_win_info)
8128 (struct tui_source_window, struct tui_disasm_window)
8129 (struct tui_data_window, struct tui_cmd_window) <name>: New
8130 method.
8131 (tui_win_name): Don't declare.
8132 * tui/tui-data.c (tui_partial_win_by_name): Use name method.
8133 (tui_win_name): Remove.
8134
be4da588
TT
81352019-06-25 Tom Tromey <tom@tromey.com>
8136
8137 * tui/tui-winsource.h (tui_update_source_window)
8138 (tui_update_source_window_as_is): Change parameter type.
8139 * tui/tui-winsource.c (tui_update_source_window): Change win_info
8140 to be a tui_source_window_base.
8141 (tui_update_source_window_as_is): Likewise.
8142 * tui/tui-win.c (make_visible_with_new_height): Update.
8143
5b81daba
TT
81442019-06-25 Tom Tromey <tom@tromey.com>
8145
8146 * tui/tui-winsource.c (tui_erase_source_content)
8147 (tui_show_source_content, tui_show_exec_info_content)
8148 (tui_erase_exec_info_content): Use refresh_window method.
8149 * tui/tui-wingeneral.h (tui_refresh_win): Don't declare.
8150 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Rename
8151 from tui_refresh_win.
8152 (tui_data_window::refresh_window): New method.
8153 (tui_win_info::refresh, tui_source_window_base::refresh)
8154 (tui_refresh_all): Use refresh_window method.
8155 * tui/tui-stack.c (tui_show_locator_content): Call refresh_window
8156 method.
8157 * tui/tui-regs.c (tui_display_register): Call refresh_window
8158 method.
8159 * tui/tui-layout.c (show_source_disasm_command)
8160 (show_source_or_disasm_and_command): Call refresh_window method.
8161 * tui/tui-data.h (struct tui_gen_win_info)
8162 (struct tui_data_window, struct tui_cmd_window) <refresh_window>:
8163 New method.
8164
cb2ce893
TT
81652019-06-25 Tom Tromey <tom@tromey.com>
8166
8167 * tui/tui.c (tui_rl_other_window, tui_enable)
8168 (tui_is_window_visible, tui_get_command_dimension): Update.
8169 * tui/tui-winsource.c (tui_update_source_window_as_is)
8170 (tui_clear_source_content, tui_erase_source_content)
8171 (tui_show_source_line, tui_source_window_base::refill)
8172 (tui_source_window_base::do_scroll_horizontal)
8173 (tui_source_window_base::set_is_exec_point_at)
8174 (tui_update_breakpoint_info, tui_set_exec_info_content)
8175 (tui_alloc_source_buffer, tui_line_is_displayed)
8176 (tui_addr_is_displayed): Update.
8177 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win)
8178 (tui_check_and_display_highlight_if_needed)
8179 (tui_win_info::make_visible, tui_win_info::refresh)
8180 (tui_refresh_all): Update.
8181 * tui/tui-windata.c (tui_first_data_item_displayed)
8182 (tui_delete_data_content_windows, tui_erase_data_content)
8183 (tui_display_all_data, tui_data_window::refresh_all)
8184 (tui_check_data_values): Update.
8185 * tui/tui-win.c (window_name_completer, tui_update_gdb_sizes)
8186 (tui_set_win_focus_to, tui_win_info::forward_scroll)
8187 (tui_win_info::backward_scroll, tui_refresh_all_win)
8188 (tui_resize_all, tui_set_focus, tui_all_windows_info)
8189 (update_tab_width, tui_set_win_height, tui_adjust_win_heights)
8190 (tui_source_window_base::set_new_height)
8191 (tui_data_window::set_new_height)
8192 (make_invisible_and_set_new_height)
8193 (make_visible_with_new_height, new_height_ok)
8194 (parse_scrolling_args): Update.
8195 * tui/tui-stack.c (tui_show_frame_info): Update.
8196 * tui/tui-source.c (tui_set_source_content)
8197 (tui_set_source_content_nil, tui_source_is_displayed)
8198 (tui_source_window::do_scroll_vertical): Update.
8199 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
8200 (tui_display_registers_from, tui_display_reg_element_at_line)
8201 (tui_check_register_values, tui_reg_command): Update.
8202 * tui/tui-layout.c (tui_default_win_height)
8203 (show_source_disasm_command, show_data, init_and_make_win)
8204 (show_source_or_disasm_and_command): Update.
8205 * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts)
8206 (tui_redisplay_readline, tui_mld_flush)
8207 (tui_mld_erase_entire_line, tui_mld_getc, tui_cont_sig)
8208 (tui_getc): Update.
8209 * tui/tui-disasm.c (tui_set_disassem_content)
8210 (tui_disasm_window::do_scroll_vertical): Update.
8211 * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>:
8212 Now virtual.
8213 (struct tui_win_info): Derive from tui_gen_win_info.
8214 <~tui_win_info>: Mark as override.
8215 <generic>: Remove member.
8216 * tui/tui-data.c (tui_cmd_window::clear_detail, tui_next_win)
8217 (tui_prev_win, tui_partial_win_by_name, tui_win_info)
8218 (~tui_data_window, ~tui_win_info)
8219 (tui_free_all_source_wins_content): Update.
8220 * tui/tui-command.c (tui_refresh_cmd_win): Update.
8221
ab313b35
TT
82222019-06-25 Tom Tromey <tom@tromey.com>
8223
8224 * tui/tui-layout.c (init_and_make_win): Use new.
8225 * tui/tui-data.h (struct tui_gen_win_info): Add constructor,
8226 destructor, initializers.
8227 (tui_alloc_generic_win_info): Don't declare.
8228 * tui/tui-data.c (_locator): Add argument to constructor.
8229 (source_win, disasm_win): New globals.
8230 (exec_info): Remove.
8231 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
8232 Update.
8233 (tui_alloc_generic_win_info): Remove.
8234 (init_content_element): Use new.
8235 (tui_win_info::tui_win_info): Update.
8236 (free_content_elements) <case DATA_WIN>: Use delete.
8237
dc2c33e4
TT
82382019-06-25 Tom Tromey <tom@tromey.com>
8239
8240 * tui/tui-wingeneral.c (tui_refresh_win): Update.
8241 * tui/tui-windata.c (tui_first_data_item_displayed)
8242 (tui_delete_data_content_windows): Update.
8243 * tui/tui-win.c (tui_data_window::set_new_height): Update.
8244 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
8245 (tui_display_registers_from, tui_check_register_values): Update.
8246 * tui/tui-data.h (union tui_which_element) <data_window>: Now a
8247 pointer.
8248 * tui/tui-data.c (init_content_element): Update. Allocate the new
8249 window.
8250 (tui_free_data_content): Update.
8251 (free_content_elements) <case DATA_WIN>: Free the window.
8252
214a5cbe
TT
82532019-06-25 Tom Tromey <tom@tromey.com>
8254
8255 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win):
8256 Update.
8257 * tui/tui-layout.c (make_command_window)
8258 (show_source_disasm_command, show_data, init_and_make_win)
8259 (show_source_or_disasm_and_command): Update.
8260 * tui/tui-data.h (struct tui_win_info) <set_highlight>: New
8261 method.
8262 <can_highight, is_highlighted>: Now bool.
8263 (tui_set_win_highlight): Don't declare.
8264 * tui/tui-data.c (tui_set_win_highlight): Remove.
8265
8e2daf15
TT
82662019-06-25 Tom Tromey <tom@tromey.com>
8267
8268 * tui/tui-wingeneral.c (make_visible): Remove check of window
8269 type.
8270
8903bd8a
TT
82712019-06-25 Tom Tromey <tom@tromey.com>
8272
8273 * tui/tui-win.c (tui_win_info::max_height)
8274 (tui_cmd_window::max_height): New methods.
8275 (new_height_ok): Call max_height.
8276 * tui/tui-data.h (struct tui_win_info, struct tui_cmd_window)
8277 <max_height>: New method.
8278
3f02ce1e
TT
82792019-06-25 Tom Tromey <tom@tromey.com>
8280
8281 * tui/tui-win.c (tui_source_window_base::set_new_height)
8282 (tui_data_window::set_new_height): New methods.
8283 (make_invisible_and_set_new_height): Call set_new_height method.
8284 * tui/tui-data.h (struct tui_win_info)
8285 (struct tui_source_window_base, struct tui_data_window)
8286 <set_new_height>: New method.
8287
1825f487
TT
82882019-06-25 Tom Tromey <tom@tromey.com>
8289
8290 * tui/tui.c (tui_rl_other_window): Call the refresh_all method.
8291 * tui/tui-windata.c (tui_data_window::refresh_all): Rename from
8292 tui_refresh_data_win.
8293 * tui/tui-win.c (tui_source_window_base::refresh_all): New
8294 method.
8295 (tui_refresh_all_win): Call the refresh_all method.
8296 (tui_set_focus): Likewise.
8297 * tui/tui-data.h (struct tui_win_info) <refresh_all>: New method.
8298 (struct tui_source_window_base, struct tui_data_window) <refresh>:
8299 Likewise.
8300
ad54d15b
TT
83012019-06-25 Tom Tromey <tom@tromey.com>
8302
8303 * tui/tui-winsource.h (tui_refill_source_window)
8304 (tui_set_is_exec_point_at): Don't declare.
8305 * tui/tui-winsource.c (tui_update_source_windows_with_addr)
8306 (tui_source_window_base::refill): Rename from
8307 tui_refill_source_window.
8308 (tui_source_window_base::do_scroll_horizontal): Update.
8309 (tui_source_window_base::set_is_exec_point_at): Rename from
8310 tui_set_is_exec_point_at.
8311 (tui_update_all_breakpoint_info): Update.
8312 * tui/tui-stack.c (tui_show_frame_info): Update.
8313 * tui/tui-layout.c (show_data): Add cast.
8314 * tui/tui-hooks.c (tui_redisplay_source): Call refill method.
8315 * tui/tui-data.h (struct tui_source_window_base) <refill,
8316 set_is_exec_point_at>: New methods.
8317 (tui_source_windows, tui_add_to_source_windows): Update types.
8318 (tui_add_to_source_windows): Remove redundant declaration.
8319 * tui/tui-data.c (source_windows): Store tui_source_window_base.
8320 (tui_source_windows): Change return type.
8321 (tui_clear_source_windows_detail): Update.
8322 (tui_add_to_source_windows): Change type of parameter.
8323 (tui_free_all_source_wins_content): Update.
8324
2042b506
TT
83252019-06-25 Tom Tromey <tom@tromey.com>
8326
8327 * tui/tui-wingeneral.c (tui_win_info::refresh)
8328 (tui_source_window_base::refresh): New methods.
8329 (tui_refresh_all): Call the refresh method.
8330 * tui/tui-data.h (struct tui_win_info)
8331 (struct tui_source_window_base) <refresh>: New method.
8332
56122977
TT
83332019-06-25 Tom Tromey <tom@tromey.com>
8334
8335 * tui/tui.h (tui_is_window_visible): Return bool.
8336 * tui/tui.c (tui_is_window_visible): Return bool.
8337 * tui/tui-wingeneral.c (tui_make_window, make_visible)
8338 (tui_make_visible, tui_make_invisible)
8339 (tui_win_info::make_visible)
8340 (tui_source_window_base::make_visible, make_all_visible)
8341 (tui_make_all_visible, tui_make_all_invisible): Update.
8342 * tui/tui-windata.c (tui_delete_data_content_windows): Update.
8343 * tui/tui-data.h (struct tui_gen_win_info) <is_visible>: Now
8344 bool.
8345 (struct tui_win_info, struct tui_source_window_base)
8346 (struct tui_cmd_window) <make_visible>: Change parameter to bool.
8347 * tui/tui-data.c (tui_init_generic_part): Update.
8348
cda37efb
TT
83492019-06-25 Tom Tromey <tom@tromey.com>
8350
8351 * tui/tui-wingeneral.c (tui_win_info::make_visible)
8352 (tui_source_window_base::make_visible): New methods.
8353 (make_all_visible): Make method call.
8354 * tui/tui-data.h (struct tui_win_info) <make_visible>: New method.
8355 (struct tui_source_window_base, struct tui_cmd_window): Override
8356 make_visible.
8357 (tui_win_is_source_type): Don't declare.
8358 * tui/tui-data.c (tui_win_is_source_type): Remove.
8359
6a0ee02c
TT
83602019-06-25 Tom Tromey <tom@tromey.com>
8361
8362 * tui/tui-layout.c (show_source_or_disasm_and_command): Remove
8363 NULL check.
8364
63901aec
TT
83652019-06-25 Tom Tromey <tom@tromey.com>
8366
8367 * tui/tui-data.h (struct tui_data_window, struct tui_cmd_window):
8368 Inline constructor. Add initializers for members.
8369 * tui/tui-data.c (tui_data_window, tui_cmd_window): Remove
8370 constructors; now inline in class.
8371
ceb13a13
TT
83722019-06-25 Tom Tromey <tom@tromey.com>
8373
8374 * tui/tui-regs.c (tui_show_registers): Update.
8375 * tui/tui-data.h (struct tui_data_window) <display_regs>: Now
8376 bool.
8377 * tui/tui-data.c (tui_data_window::clear_detail)
8378 (tui_data_window): Update.
8379
238eb706
TT
83802019-06-25 Tom Tromey <tom@tromey.com>
8381
8382 * tui/tui-windata.c (tui_display_all_data)
8383 (tui_display_data_from_line, tui_display_data_from)
8384 (tui_check_data_values, tui_data_window::do_scroll_vertical):
8385 Update.
8386 * tui/tui-regs.c (tui_last_regs_line_no)
8387 (tui_line_from_reg_element_no, tui_first_reg_element_no_inline)
8388 (tui_show_registers, tui_show_register_group)
8389 (tui_display_registers_from, tui_display_reg_element_at_line)
8390 (tui_display_registers_from_line, tui_check_register_values)
8391 (tui_reg_next, tui_reg_prev): Update.
8392 * tui/tui-layout.c (tui_set_layout, show_data): Update.
8393 * tui/tui-data.h (struct tui_data_info): Remove. Move contents to
8394 tui_data_window.
8395 (struct tui_win_info) <detail>: Remove. Add new fields from
8396 tui_data_info.
8397 (TUI_DATA_WIN): Add cast.
8398 * tui/tui-data.c (tui_data_window::clear_detail, tui_data_window)
8399 (~tui_data_window): Simplify.
8400
81491aa0
TT
84012019-06-25 Tom Tromey <tom@tromey.com>
8402
8403 * tui/tui-layout.c (show_source_disasm_command)
8404 (show_source_or_disasm_and_command): Update.
8405 * tui/tui-io.c (update_cmdwin_start_line)
8406 (tui_redisplay_readline): Update.
8407 * tui/tui-data.h (struct tui_command_info): Remove.
8408 (struct tui_win_info) <detail>: Remove command_info member.
8409 (struct tui_data_window) <start_line>: New member, from
8410 tui_command_info.
8411 (TUI_CMD_WIN): Add casts.
8412
e6e41501
TT
84132019-06-25 Tom Tromey <tom@tromey.com>
8414
8415 * tui/tui-winsource.c (tui_update_source_window)
8416 (tui_refill_source_window)
8417 (tui_source_window_base::do_scroll_horizontal)
8418 (tui_update_breakpoint_info, tui_set_exec_info_content)
8419 (tui_show_exec_info_content, tui_erase_exec_info_content)
8420 (tui_clear_exec_info_content): Update.
8421 * tui/tui-wingeneral.c (make_all_visible, tui_refresh_all):
8422 Update.
8423 * tui/tui-win.c (make_invisible_and_set_new_height)
8424 (make_visible_with_new_height): Update.
8425 * tui/tui-source.c (tui_set_source_content)
8426 (tui_show_symtab_source): Update.
8427 * tui/tui-layout.c (extract_display_start_addr)
8428 (show_source_disasm_command, show_data)
8429 (make_source_or_disasm_window)
8430 (show_source_or_disasm_and_command): Update.
8431 * tui/tui-disasm.c (tui_set_disassem_content): Simplify.
8432 (tui_disasm_window::do_scroll_vertical): Remove shadowing
8433 "gdbarch".
8434 * tui/tui-data.h (struct tui_source_info): Remove. Move contents
8435 to tui_source_window_base.
8436 (struct tui_win_info) <detail>: Remove source_info member.
8437 (struct tui_source_window_base) <has_locator>: Inline.
8438 Move contents from tui_source_info; rename has_locator member to
8439 m_has_locator.
8440 (TUI_SRC_WIN, TUI_DISASM_WIN): Add casts.
8441 * tui/tui-data.c (tui_source_window_base::has_locator): Move to
8442 header file.
8443 (tui_source_window_base::clear_detail, ~tui_source_window_base):
8444 Simplify.
8445 (tui_free_all_source_wins_content): Cast to
8446 tui_source_window_base.
8447
44f0e208
TT
84482019-06-25 Tom Tromey <tom@tromey.com>
8449
8450 * tui/tui-win.c (make_invisible_and_set_new_height)
8451 (make_visible_with_new_height): Call has_locator method.
8452 * tui/tui-layout.c (show_source_disasm_command, show_data)
8453 (show_source_or_disasm_and_command): Update for bool change.
8454 * tui/tui-data.h (struct tui_source_info) <has_locator>: Now bool.
8455 (tui_win_info) <has_locator>: New method.
8456 (struct tui_source_window_base) <has_locator>: New method.
8457 (tui_win_has_locator): Don't declare.
8458 * tui/tui-data.c (tui_source_window_base::has_locator): Rename
8459 from tui_win_has_locator.
8460 (tui_source_window_base): Use false, not FALSE.
8461
7778b912
TT
84622019-06-25 Tom Tromey <tom@tromey.com>
8463
8464 * tui/tui-data.h (tui_clear_win_detail): Don't declare.
8465 * tui/tui-data.c (tui_clear_source_windows_detail): Call the
8466 clear_detail method directly.
8467 (tui_clear_win_detail): Remove.
8468
f83d391c
TT
84692019-06-25 Tom Tromey <tom@tromey.com>
8470
8471 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Use
8472 "this", not TUI_DISASM_WIN.
8473
13446e05
TT
84742019-06-25 Tom Tromey <tom@tromey.com>
8475
8476 * tui/tui-winsource.h (tui_horizontal_source_scroll): Don't
8477 declare.
8478 * tui/tui-winsource.c
8479 (tui_source_window_base::do_scroll_horizontal): Rename from
8480 tui_horizontal_source_scroll.
8481 * tui/tui-windata.h (tui_vertical_data_scroll): Don't declare.
8482 * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Rename
8483 from tui_vertical_data_scroll.
8484 * tui/tui-win.h (tui_scroll): Don't declare.
8485 * tui/tui-win.c (tui_win_info::forward_scroll)
8486 (tui_win_info::backward_scroll, tui_win_info::left_scroll)
8487 (tui_win_info::right_scroll): Rename and update.
8488 (tui_scroll_forward_command, tui_scroll_backward_command)
8489 (tui_scroll_left_command, tui_scroll_right_command): Update.
8490 (tui_scroll): Remove.
8491 * tui/tui-source.h: Don't declare tui_vertical_source_scroll.
8492 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Rename
8493 from tui_vertical_source_scroll.
8494 * tui/tui-disasm.h (tui_vertical_disassem_scroll): Don't declare.
8495 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Rename
8496 from tui_vertical_disassem_scroll.
8497 * tui/tui-data.h (struct tui_win_info) <do_scroll_vertical,
8498 do_scroll_horizontal>: New methods.
8499 <forward_scroll, backward_scroll, left_scroll, right_scroll>:
8500 Likewise.
8501 (struct tui_source_window_base): Add do_scroll_horizontal.
8502 (struct tui_source_window, struct tui_disasm_window): Add
8503 do_scroll_vertical.
8504 (struct tui_data_window, struct tui_cmd_window): Add
8505 do_scroll_horizontal and do_scroll_vertical.
8506 * tui/tui-command.c (tui_dispatch_ctrl_char): Use method calls.
8507
5cf82909
TT
85082019-06-25 Tom Tromey <tom@tromey.com>
8509
8510 * tui/tui-data.h (struct tui_source_window_base): New struct.
8511 (struct tui_source_window): Derive from tui_source_window_base.
8512 (struct tui_disasm_window): New struct.
8513 * tui/tui-data.c (tui_source_window_base::clear_detail): Rename
8514 from tui_source_window::clear_detail.
8515 (tui_source_window_base): Rename from tui_source_window.
8516 (~tui_source_window_base): Rename from ~tui_source_window.
8517 (tui_alloc_win_info): Create a tui_disasm_window.
8518
ee1d42d6
TT
85192019-06-25 Tom Tromey <tom@tromey.com>
8520
8521 * tui/tui-data.h (struct tui_source_window)
8522 (struct tui_data_window): Declare destructors.
8523 * tui/tui-data.c (~tui_source_window, ~tui_data_window): New
8524 destructors.
8525 (tui_win_info): Simplify.
8526
b4eb2452
TT
85272019-06-25 Tom Tromey <tom@tromey.com>
8528
8529 * tui/tui-winsource.c (tui_display_main)
8530 (tui_update_source_windows_with_addr)
8531 (tui_update_all_breakpoint_info): Update.
8532 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
8533 (new_height_ok, parse_scrolling_args): Update.
8534 * tui/tui-stack.c (tui_show_frame_info): Update.
8535 * tui/tui-data.h (struct tui_list): Remove.
8536 (tui_source_windows): Return a reference to a std::vector.
8537 * tui/tui-data.c (source_windows): Now a std::vector.
8538 (tui_source_windows): Change return type.
8539 (tui_clear_source_windows): Rewrite.
8540 (tui_clear_source_windows_detail, tui_add_to_source_windows)
8541 (tui_free_all_source_wins_content): Rewrite.
8542
8761a91b
TT
85432019-06-25 Tom Tromey <tom@tromey.com>
8544
8545 * tui/tui-data.h (struct tui_win_info, struct tui_source_window)
8546 (struct tui_data_window, struct tui_cmd_window): Declare
8547 clear_detail method.
8548 * tui/tui-data.c (tui_source_window::clear_detail)
8549 (tui_cmd_window::clear_detail, tui_data_window::clear_detail): New
8550 methods.
8551 (tui_clear_win_detail): Simplify.
8552
0ed69eda
TT
85532019-06-25 Tom Tromey <tom@tromey.com>
8554
8555 * tui/tui-layout.c (make_source_window, make_disasm_window)
8556 (make_source_or_disasm_window): Remove win_info_ptr parameter.
8557 Return the new window.
8558 (show_source_disasm_command, show_data)
8559 (show_source_or_disasm_and_command): Update.
8560
82432e10
TT
85612019-06-25 Tom Tromey <tom@tromey.com>
8562
8563 * tui/tui-layout.c (make_command_window): Remove win_info_ptr
8564 parameter. Return the new window.
8565 (show_source_disasm_command): Update and remove NULL check.
8566 (show_source_or_disasm_and_command): Update.
8567
ec328aa5
TT
85682019-06-25 Tom Tromey <tom@tromey.com>
8569
8570 * tui/tui-layout.c (init_and_make_win): Remove NULL check.
8571
33b906ab
TT
85722019-06-25 Tom Tromey <tom@tromey.com>
8573
8574 * tui/tui-data.h (struct tui_win_info): Make constructor
8575 protected. Make destructor virtual. Add initializers.
8576 (tui_source_window, tui_data_window, tui_cmd_window): New
8577 classes.
8578 * tui/tui-data.c (tui_win_info): Rename from init_win_info. Now a
8579 constructor. Add "type" parameter.
8580 (tui_source_window, tui_data_window, tui_cmd_window): New
8581 constructors.
8582 (tui_alloc_win_info): Instantiate the appropriate subclass.
8583
e7e11af4
TT
85842019-06-25 Tom Tromey <tom@tromey.com>
8585
8586 * tui/tui-win.c (tui_resize_all): Use delete.
8587 * tui/tui-data.h (struct tui_win_info) <~tui_win_info>: Declare
8588 destructor.
8589 (tui_free_window): Don't declare.
8590 * tui/tui-data.c (~tui_win_info): Rename from tui_free_window.
8591 Update.
8592
6792b55e
TT
85932019-06-25 Tom Tromey <tom@tromey.com>
8594
8595 * tui/tui-data.h (struct tui_win_info): Add constructor.
8596 * tui/tui-data.c (tui_alloc_win_info): Use new.
8597 (tui_free_window): Use delete.
8598
f95675e1
TT
85992019-06-22 Tom Tromey <tom@tromey.com>
8600
8601 * tui/tui-windata.h (tui_first_data_element_no_in_line): Don't
8602 declare.
8603 * tui/tui-windata.c (tui_first_data_element_no_in_line): Remove.
8604
5bff081c
TT
86052019-06-22 Tom Tromey <tom@tromey.com>
8606
8607 * tui/tui-data.h (tui_del_window, tui_del_data_windows): Don't
8608 declare.
8609 * tui/tui-data.c (tui_del_window, tui_del_data_windows): Remove.
8610
47e3f474
TV
86112019-06-22 Tom de Vries <tdevries@suse.de>
8612
8613 * dwarf2read.c (create_addrmap_from_aranges)
8614 (read_debug_names_from_section): Print ptrdiff_t using '%s' and plongest
8615 instead of '%zu'.
8616
fd5866f6
SM
86172019-06-21 Simon Marchi <simon.marchi@efficios.com>
8618
8619 * dwarf2read.h (dwarf2_section_info_def): Remove.
8620 (DEF_VEC_O (dwarf2_section_info_def)): Remove.
8621 * dwarf2read.c (struct dwo_sections) <types>: Change type to
8622 std::vector<dwarf2_section_info>.
8623 (struct dwo_file) <~dwo_file>: Remove.
8624 (dwarf2_per_objfile::~dwarf2_per_objfile): Don't manually free
8625 types field.
8626 (dwarf2_per_objfile::locate_sections): Adjust to std::vector.
8627 (dwarf2_read_debug_names): Likewise.
8628 (create_debug_types_hash_table): Change parameter type to
8629 array_view, adjust code accordingly.
8630 (dwarf2_locate_dwo_sections): Adjust to std::vector.
8631 (partial_die_info::fixup): Likewise.
8632 (determine_prefix): Likewise.
8633 * dwarf-index-write.c (write_psymtabs_to_index): Adjust.
8634
fb1eb2f9
SM
86352019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
8636
8637 * dwarf2read.c (struct dwo_file) <dbfd>: Change type to
8638 gdb_bfd_ref_ptr.
8639 <~dwo_file>: Remove call to gdb_bfd_unref.
8640 (open_and_init_dwo_file): Move gdb_bfd_ref_ptr into dbfd field. Call
8641 gdb_bfd_ref_ptr::get.
8642
51ac9db5
SM
86432019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
8644
8645 * dwarf2read.h (struct dwarf2_per_objfile) <dwo_files>: Change
8646 type to htab_up.
8647 * dwarf2read.c (struct dwo_file): Initialize fields.
8648 <~dwo_file>: New.
8649 (free_dwo_file): Remove, move content to ~dwo_file.
8650 (struct dwo_file_deleter): Remove.
8651 (dwo_file_up>: Remove custom deleter.
8652 (free_dwo_files): Remove.
8653 (dwarf2_per_objfile::~dwarf2_per_objfile): Don't explicitly free
8654 dwo_files.
8655 (process_skeletonless_type_units): Call unique_ptr::get.
8656 (allocate_dwo_file_hash_table): Add deleter to created hash
8657 table. Change return type to htab_up.
8658 (lookup_dwo_file_slot): Don't memset dwo_file, call
8659 unique_ptr::get.
8660 (create_dwo_unit_in_dwp_v1): Allocate dwo_file with new.
8661 (create_dwo_unit_in_dwp_v2): Likewise.
8662 (open_and_init_dwo_file): Likewise.
8663 (free_dwo_file_from_slot): Remove.
8664
dc4ccb6f
SM
86652019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
8666
8667 * dwarf2read.h (struct dwarf2_section_info) <readin,
8668 is_virtual>: Change type to bool.
8669 * dwarf2read.c (dwarf2_read_section, create_dwp_v2_section): Use
8670 true instead of 1.
8671
e6a1c5cb
TT
86722019-06-19 Tom Tromey <tom@tromey.com>
8673
8674 * tui/tui-data.h (tui_init_content_element): Don't declare.
8675
6f6ffbeb
TT
86762019-06-19 Tom Tromey <tom@tromey.com>
8677
8678 * tui/tui-data.h (tui_init_win_info): Don't declare.
8679
f23f598e
TV
86802019-06-19 Tom de Vries <tdevries@suse.de>
8681
8682 * dwarf2read.h (abstract_to_concrete): Change type to
8683 std::unordered_map<sect_offset, std::vector<sect_offset>,
8684 gdb::hash_enum<sect_offset>>.
8685
680e1bee
TT
86862019-06-19 Tom Tromey <tromey@adacore.com>
8687
8688 * ada-lang.c (ada_evaluate_subexp) <case OP_ATR_FIRST>: Handle
8689 EVAL_AVOID_SIDE_EFFECTS specially.
8690
dcf37923
TT
86912019-06-19 Tom Tromey <tromey@adacore.com>
8692
8693 * source-cache.c (highlighter): New global.
8694 (source_cache::get_source_lines): Create a highlighter on demand.
8695
494986d5
AB
86962019-06-18 Andrew Burgess <andrew.burgess@embecosm.com>
8697
8698 * defs.h (deprecated_interactive_hook): Delete declaration.
8699 * interps.c (clear_interpreter_hooks): Remove use of
8700 deprecated_interactive_hook.
8701 * top.c (deprecated_interactive_hook): Delete definition.
8702 * utils.c (maybe_quit): Remove use of deprecated_interactive_hook.
8703
3360b6e7
TV
87042019-06-18 Tom de Vries <tdevries@suse.de>
8705
8706 PR gdb/24515
8707 * dwarf2read.h (abstract_to_concrete): Change type from
8708 std::unordered_map<die_info_ptr, std::vector<die_info_ptr>> to
8709 std::unordered_map<sect_offset, std::vector<sect_offset>>.
8710 * dwarf2read.c (read_variable): Update.
8711 (dwarf2_fetch_die_loc_sect_off): Update.
8712
310b3441
TV
87132019-06-17 Tom de Vries <tdevries@suse.de>
8714
8715 PR gdb/24617
8716 * common/pathstuff.c (child_path): Make sure parent_len > 0 before
8717 accessing parent[parent_len - 1].
8718
ba9777be
PP
87192019-06-17 Paul Pluzhnikov <ppluzhnikov@google.com>
8720
8721 PR gdb/24364
8722 * gdb/dtrace-probe.c (dtrace_static_probe_ops::get_probe): Don't
8723 call dtrace_process_dof with NULL dof.
8724
2b9f6e89
TV
87252019-06-16 Tom de Vries <tdevries@suse.de>
8726
8727 PR gdb/24445
8728 * contrib/gdb-add-index.sh: Update to handle dwz-m-ed executable.
8729
431b3ead
TT
87302019-06-16 Tom Tromey <tom@tromey.com>
8731
8732 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win)
8733 (make_all_visible): Use address of member.
8734
d04b44a1
TT
87352019-06-16 Tom Tromey <tom@tromey.com>
8736
8737 * tui/tui-data.c (tui_clear_win_detail, init_win_info)
8738 (tui_free_window, free_content, free_content_elements): Remove
8739 unnecessary cast.
8740 * tui/tui-windata.c (tui_display_all_data): Remove unnecessary
8741 cast.
8742 * tui/tui-regs.c (tui_show_register_group)
8743 (tui_display_registers_from, tui_display_reg_element_at_line):
8744 Remove unnecessary cast.
8745
bf5142e7
AB
87462019-06-16 Andrew Burgess <andrew.burgess@embecosm.com>
8747
8748 * linux-nat.c (normal_mask): Delete.
8749 (_initialize_linux_nat): Don't initialise normal_mask.
8750
c4973306
SM
87512019-06-16 Simon Marchi <simon.marchi@polymtl.ca>
8752
8753 PR gdb/24445
8754 * dwarf-index-write.h (write_psymtabs_to_index): Add
8755 dwz_basename parameter.
8756 * dwarf-index-write.c (write_gdbindex): Move file writing to
8757 write_gdbindex_1. Change return type void.
8758 (assert_file_size): Move up, remove filename parameter.
8759 (write_gdbindex_1): New function.
8760 (write_debug_names): Change return type to void, call
8761 assert_file_size.
8762 (struct index_wip_file): New struct.
8763 (write_psymtabs_to_index): Add dwz_basename parameter. Move
8764 file logic to index_wip_file. Write index for dwz file if
8765 needed.
8766 (save_gdb_index_command): Pass basename of dwz file, if present.
8767 * dwarf-index-cache.c (index_cache::store): Obtain and pass
8768 build-id of dwz file, if present.
8769 * dwarf2read.c (struct dwz_file): Move to dwarf2read.h.
8770 (dwarf2_get_dwz_file): Likewise.
8771 * dwarf2read.h (struct dwz_file): Move from dwarf2read.c.
8772 (dwarf2_get_dwz_file): Likewise.
8773
395f9c91
TT
87742019-06-16 Tom Tromey <tom@tromey.com>
8775
8776 * coffread.c (process_coff_symbol): Use xstrdup.
8777 * value.c (create_internalvar): Use xstrdup.
8778
cafb3438
TT
87792019-06-16 Tom Tromey <tom@tromey.com>
8780
8781 * valops.c (value_cast, value_slice): Remove unnecessary cast.
8782 * breakpoint.c (stopin_command, stopat_command)
8783 (until_break_command, decode_location_default): Remove unnecessary
8784 cast.
8785 * utils.c (subset_compare): Remove unnecessary cast.
8786 * ada-lang.c (ada_update_initial_language): Remove unnecessary
8787 cast.
8788 * linespec.c (decode_line_with_last_displayed): Remove unnecessary
8789 cast.
8790 * infcmd.c (path_command): Remove unnecessary cast.
8791 * coffread.c (decode_type): Remove unnecessary cast.
8792 * xcoffread.c (read_xcoff_symtab): Remove unnecessary cast.
8793 * mipsread.c (mipscoff_symfile_read): Remove unnecessary cast.
8794 * tui/tui-stack.c (tui_show_locator_content)
8795 (tui_show_frame_info): Remove unnecessary cast.
8796 * tui/tui-win.c (tui_scroll_forward_command)
8797 (tui_scroll_backward_command, tui_set_focus, tui_set_win_height)
8798 (parse_scrolling_args): Remove unnecessary cast.
8799 * tui/tui-data.c (init_win_info, tui_del_window)
8800 (tui_free_window, tui_del_data_windows, tui_free_data_content)
8801 (free_content_elements): Remove unnecessary cast.
8802 * tui/tui-windata.c (tui_first_data_item_displayed): Remove
8803 unnecessary cast.
8804 * tui/tui-source.c (tui_set_source_content)
8805 (tui_vertical_source_scroll): Remove unnecessary cast.
8806 * tui/tui-layout.c (tui_default_win_height): Remove unnecessary
8807 cast.
8808 * tui/tui-io.c (tui_initialize_io): Remove unnecessary cast.
8809 * tui/tui-regs.c (tui_display_registers_from)
8810 (tui_display_register): Remove unnecessary cast.
8811 * tui/tui-wingeneral.c (tui_refresh_win, tui_delete_win)
8812 (tui_unhighlight_win, tui_highlight_win, tui_make_window)
8813 (make_visible): Remove unnecessary cast.
8814 * tui/tui-winsource.c (tui_erase_source_content)
8815 (tui_update_breakpoint_info, tui_set_exec_info_content): Remove
8816 unnecessary cast.
8817 * ax-gdb.c (agent_command_1): Remove unnecessary cast.
8818 * cli/cli-setshow.c (cmd_show_list): Remove unnecessary cast.
8819 * stabsread.c (read_type, read_array_type, read_range_type):
8820 Remove unnecessary cast.
8821 * mdebugread.c (mdebug_build_psymtabs): Remove unnecessary cast.
8822 (parse_symbol, parse_type, upgrade_type, parse_external)
8823 (parse_partial_symbols, psymtab_to_symtab_1, cross_ref): Remove
8824 unnecessary cast.
8825 * gdb_bfd.c (gdb_bfd_map_section): Remove unnecessary cast.
8826
730ead81
TT
88272019-06-16 Tom Tromey <tom@tromey.com>
8828
8829 * tui/tui-data.c (tui_alloc_generic_win_info)
8830 (tui_alloc_win_info, tui_add_content_elements): Remove NULL
8831 checks.
8832
584a927c
AB
88332019-06-16 Bernhard Heckel <bernhard.heckel@intel.com>
8834 Andrew Burgess <andrew.burgess@embecosm.com>
8835
8836 * f-typeprint.c (f_print_type): Don't return early for not
8837 associated or not allocated types.
8838 (f_type_print_varspec_suffix): Add print_rank parameter and print
8839 ranks of array types in case they dangling.
8840 (f_type_print_base): Add print_rank parameter.
8841
30056ea0
AB
88422019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
8843
8844 * NEWS: Mention new MI commands.
8845 * break-catch-throw.c (enum exception_event_kind): Move to
8846 breakpoint.h.
8847 (print_mention_exception_catchpoint): Output text as a single
8848 message.
8849 (catch_exception_command_1): Rename to...
8850 (catch_exception_event): ...this, make non-static, update header
8851 command, and change some parameter types.
8852 (catch_catch_command): Update for changes to
8853 catch_exception_command_1.
8854 (catch_throw_command): Likewise.
8855 (catch_rethrow_command): Likewise.
8856 * breakpoint.c (enum exception_event_kind): Delete.
8857 * breakpoint.h (enum exception_event_kind): Moved here from
8858 break-catch-throw.c.
8859 (catch_exception_event): Declare.
8860 * mi/mi-cmd-catch.c (mi_cmd_catch_exception_event): New function.
8861 (mi_cmd_catch_throw): New function.
8862 (mi_cmd_catch_rethrow): New function.
8863 (mi_cmd_catch_catch): New function.
8864 * mi/mi-cmds.c (mi_cmds): Add 'catch-throw', 'catch-rethrow', and
8865 'catch-catch' entries.
8866 * mi/mi-cmds.h (mi_cmd_catch_throw): Declare.
8867 (mi_cmd_catch_rethrow): Declare.
8868 (mi_cmd_catch_catch): Declare.
8869
ec8e2b6d
AB
88702019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
8871
8872 * annotate.c (annotate_source_line): Change return type to void,
8873 update implementation to match.
8874 * annotate.h (annotate_source_line): Change return type to void,
8875 update header comment.
8876 * stack.c (print_frame_info): Don't change what frame information
8877 is printed based on whether annotations are on or not.
8878
0d3abd8c
AB
88792019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
8880
8881 * annotate.c: Add 'source.h' and 'objfiles.h' includes.
8882 (annotate_source): Make static.
8883 (annotate_source_line): Moved from source.c and renamed from
8884 identify_source_line. Update the return type.
8885 * annotate.h (annotate_source): Delete declaration.
8886 (annotate_source_line): Declaration moved from source.h, and
8887 renamed from identify_source_line. Return type updated.
8888 * source.c (identify_source_line): Moved to annotate.c and renamed
8889 to annotate_source_line.
8890 (info_line_command): Remove check of annotation_level.
8891 * source.h (identify_source_line): Move declaration to annotate.h
8892 and rename to annotate_source_line.
8893 * stack.c: Add 'annotate.h' include.
8894 (print_frame_info): Remove check of annotation_level before
8895 calling annotate_source_line.
8896
00df30ae
AB
88972019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
8898
8899 * source-cache.c (source_cache::get_plain_source_lines): Use
8900 open_source_file_with_line_charpos instead of just
8901 open_source_file, remove call to find_source_lines.
8902 (source_cache::get_source_lines): Likewise.
8903 * source.c (find_source_lines): Make static.
8904 (get_filename_and_charpos): Renamed into...
8905 (open_source_file_with_line_charpos): ..this along with changes to
8906 return a scoped_fd, and some other minor clean ups.
8907 (identify_source_line): Use open_source_file_with_line_charpos.
8908 (search_command_helper): Use open_source_file_with_line_charpos
8909 instead of just open_source_file, remove call to
8910 find_source_lines.
8911 * source.h (open_source_file_with_line_charpos): Declare new
8912 function.
8913 (find_source_lines): Delete declaration.
8914
afda45a2
AB
89152019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
8916
8917 * source.c (get_filename_and_charpos): Remove fullname
8918 parameter.
8919 (identify_source_line): Update call to get_filename_and_charpos.
8920
0735b091
TT
89212019-06-14 Tom Tromey <tromey@adacore.com>
8922
8923 PR gdb/24502:
8924 * ui-style.h (skip_ansi_escape): Update comment.
8925 * ui-file.h (class no_terminal_escape_file): New class.
8926 * ui-file.c (no_terminal_escape_file::write)
8927 (no_terminal_escape_file::puts): New methods.
8928 * cli/cli-logging.c (handle_redirections): Use
8929 no_terminal_escape_file.
8930
52ce35e2
TT
89312019-06-14 Tom Tromey <tromey@adacore.com>
8932
8933 * NEWS: Move convenience variable news above Python news.
8934
73cc7272
TT
89352019-06-14 Tom Tromey <tom@tromey.com>
8936
8937 * gnulib: Move directory to top-level.
8938 * configure.ac: Don't configure gnulib.
8939 * configure: Rebuild.
8940 * common/common-defs.h: Use new path to gnulib.
8941 * Makefile.in (GNULIB_BUILDDIR): Now ../gnulib.
8942 (GNULIB_H): Remove.
8943 (INCGNU): Look in new gnulib location.
8944 (HFILES_NO_SRCDIR): Remove gnulib files.
8945 (SUBDIR, REQUIRED_SUBDIRS): Remove gnulib.
8946 (generated_files): Remove GNULIB_H.
8947 ($(LIBGNU), all-lib): Remove targets.
8948 (distclean): Don't mention GNULIB_BUILDDIR.
8949 ($(GNULIB_BUILDDIR)/Makefile): Remove target.
8950
f5686554
TT
89512019-06-14 Tom Tromey <tromey@adacore.com>
8952
8953 * symfile.c (add_symbol_file_command): Remove obsolete comment.
8954 Warn if symbol file does not provide any symbols.
8955
a0c1ffed
TT
89562019-06-14 Tom Tromey <tromey@adacore.com>
8957
8958 * source.c (find_and_open_source): Respect basenames_may_differ.
8959
7c39e397
AB
89602019-06-14 Andrew Burgess <andrew.burgess@embecosm.com>
8961
8962 * annotate.c (annotate_breakpoints_invalid): Make use of
8963 scoped_restore_terminal_state.
8964 (annotate_frames_invalid): Likewise.
8965
f411722c
TT
89662019-06-14 Tom Tromey <tromey@adacore.com>
8967
8968 * ada-lang.c (ada_evaluate_subexp) <case BINOP_ASSIGN>: Always
8969 allow assignment to an internalvar.
8970
4268ec18
TT
89712019-06-14 Tom Tromey <tromey@adacore.com>
8972
8973 * ada-lex.l: Allow "_" in attribute names.
8974
abdb711e
TT
89752019-06-14 Tom Tromey <tromey@adacore.com>
8976
8977 PR gdb/24653:
8978 * regcache.c (registers_changed): Don't call alloca.
8979 * top.c (execute_command): Don't call alloca.
8980
4c048731
PA
89812019-06-13 Pedro Alves <palves@redhat.com>
8982
8983 * cli/cli-setshow.c (cli/cli-setshow.c): New parameter
8984 'expression'. When parsing an expression, error out if there's
8985 junk after "unlimited".
8986 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
8987 (do_set_command): Adjust calls to is_unlimited_literal.
8988
66eb1ed3
PA
89892019-06-13 Pedro Alves <palves@redhat.com>
8990
8991 * compile/compile.c (make_compile_options_def_group): Add braces
8992 around array_view initializer.
8993 * thread.c (make_thread_apply_all_options_def_group)
8994 (make_thread_apply_all_options_def_group): Likewise.
8995
3345721a
PA
89962019-06-13 Pedro Alves <palves@redhat.com>
8997
8998 * NEWS (New commands): Mention "maint test-options
8999 require-delimiter", "maint test-options unknown-is-error", "maint
9000 test-options unknown-is-operand" and "maint show
9001 test-options-completion-result".
9002 (New command options, command completion): New section.
9003 (Completion improvements): New section.
9004 Mention that you can abbreviate "unlimited".
9005
6206060d
PA
90062019-06-13 Pedro Alves <palves@redhat.com>
9007
9008 * cli/cli-utils.c (parse_flags, parse_flags_qcs): Delete.
9009 * cli/cli-utils.h (parse_flags, parse_flags_qcs): Delete.
9010 * unittests/cli-utils-selftests.c (test_parse_flags)
9011 (test_parse_flags_qcs): Delete.
9012 (test_cli_utils): Don't call deleted functions.
9013
6665660a
PA
90142019-06-13 Pedro Alves <palves@redhat.com>
9015
9016 * thread.c: Include "cli/cli-option.h".
9017 (tp_array_compar_ascending): Global.
9018 (tp_array_compar): Delete function.
9019 (tp_array_compar_ascending, tp_array_compar_descending): New
9020 functions.
9021 (ascending_option_def, qcs_flag_option_def)
9022 (thr_qcs_flags_option_defs)
9023 (make_thread_apply_all_options_def_group)
9024 (make_thread_apply_options_def_group): New.
9025 (thread_apply_all_command): Use gdb::option::process_options.
9026 (thread_apply_command_completer)
9027 (thread_apply_all_command_completer): New.
9028 (thread_apply_command): Use gdb::option::process_options.
9029 (_initialize_thread): Delete THREAD_APPLY_FLAGS_HELP, replace it
9030 with a new THREAD_APPLY_OPTION_HELP. Use gdb::option::build_help
9031 to generate help text of "thread apply". Adjust "taas"'s help.
9032 * tid-parse.c (tid_range_parser::in_thread_range): New method.
9033 * tid-parse.h (tid_range_parser::in_thread_range): New method.
9034
f7e13587
PA
90352019-06-13 Pedro Alves <palves@redhat.com>
9036
9037 * thread.c (thread_apply_command): Check for invalid TID with
9038 isdigit instead of !isalpha.
9039
5d707134
PA
90402019-06-13 Pedro Alves <palves@redhat.com>
9041
9042 * cli/cli-utils.c (parse_flags_qcs): Use validate_flags_qcs.
9043 (validate_flags_qcs): New.
9044 * cli/cli-utils.h (struct qcs_flags): Change field types to int.
9045 (validate_flags_qcs): Declare.
9046 * stack.c (qcs_flag_option_def, fr_qcs_flags_option_defs): New.
9047 (make_frame_apply_options_def_group): New.
9048 (frame_apply_command_count): Process options with
9049 gdb::option::process_options.
9050 (frame_apply_completer): New.
9051 (frame_apply_level_completer, frame_apply_all_completer)
9052 (frame_apply_completer): New.
9053 (_initialize_stack): Update help of "frame apply", "frame apply
9054 level", "frame apply all" and "faas" to mention supported options
9055 and install command completers.
9056 * stack.h (frame_apply_all_completer): Declare.
9057 * thread.c: Include "stack.h".
9058 (tfaas_command): Add "--".
9059 (_initialize_thread): Update help "tfaas" to mention supported
9060 options and install command completer.
9061
272d4594
PA
90622019-06-13 Pedro Alves <palves@redhat.com>
9063
9064 * completer.c (complete_nested_command_line): New.
9065 (gdb_completion_word_break_characters_throw): Add assertion.
9066 * completer.h (complete_nested_command_line): Declare.
9067
90a1ef87
PA
90682019-06-13 Pedro Alves <palves@redhat.com>
9069
9070 * stack.c (parse_backtrace_qualifiers): New.
9071 (backtrace_command): Use it.
9072 (backtrace_command_completer): Complete on qualifiers.
9073
d4c16835
PA
90742019-06-13 Pedro Alves <palves@redhat.com>
9075
9076 * frame.c: Include "cli/cli-option.h.
9077 (user_set_backtrace_options): New.
9078 (backtrace_past_main, backtrace_past_entry, backtrace_limit):
9079 Delete.
9080 (get_prev_frame): Adjust.
9081 (boolean_option_def, uinteger_option_def)
9082 (set_backtrace_option_defs): New.
9083 (_initialize_frame): Adjust and use
9084 gdb::option::add_setshow_cmds_for_options to install "set
9085 backtrace past-main" and "set backtrace past-entry".
9086 * frame.h: Include "cli/cli-option.h".
9087 (struct frame_print_options): Forward declare.
9088 (print_frame_arguments_all, print_frame_arguments_scalars)
9089 (print_frame_arguments_none): Declare.
9090 (print_entry_values): Delete declaration.
9091 (struct frame_print_options, user_frame_print_options): New.
9092 (struct set_backtrace_options): New.
9093 (set_backtrace_option_defs, user_set_backtrace_options): Declare.
9094 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
9095 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
9096 (mi_cmd_stack_list_variables): Pass down USER_FRAME_PRINT_OPTIONS.
9097 (list_args_or_locals): Add frame_print_options parameter.
9098 (mi_cmd_stack_info_frame): Pass down USER_FRAME_PRINT_OPTIONS.
9099 * python/py-framefilter.c (enumerate_args): Pass down
9100 USER_FRAME_PRINT_OPTIONS.
9101 * stack.c: Include "cli/cli-option.h".
9102 (print_frame_arguments_all, print_frame_arguments_scalars)
9103 (print_frame_arguments_none): Declare.
9104 (print_raw_frame_arguments, print_entry_values): Delete.
9105 (user_frame_print_options): New.
9106 (boolean_option_def, enum_option_def, frame_print_option_defs):
9107 New.
9108 (struct backtrace_cmd_options): New.
9109 (bt_flag_option_def): New.
9110 (backtrace_command_option_defs): New.
9111 (print_stack_frame): Pass down USER_FRAME_PRINT_OPTIONS.
9112 (print_frame_arg, read_frame_arg, print_frame_args)
9113 (print_frame_info, print_frame): Add frame_print_options parameter
9114 and use it.
9115 (info_frame_command_core): Pass down USER_FRAME_PRINT_OPTIONS.
9116 (backtrace_command_1): Add frame_print_options and
9117 backtrace_cmd_options parameters and use them.
9118 (make_backtrace_options_def_group): New.
9119 (backtrace_command): Process command options with
9120 gdb::option::process_options.
9121 (backtrace_command_completer): New.
9122 (_initialize_stack): Extend "backtrace"'s help to mention
9123 supported options. Install completer for "backtrace".
9124 Install some settings commands with add_setshow_cmds_for_options.
9125
2daf894e
PA
91262019-06-13 Pedro Alves <palves@redhat.com>
9127
9128 * NEWS (Changed commands): Mention set/show print raw-frame-arguments,
9129 and that "set/show print raw frame-arguments" are now deprecated.
9130
9131 * cli/cli-decode.c (add_setshow_boolean_cmd): Now returns the
9132 command.
9133 * command.h (add_setshow_boolean_cmd): Return cmd_list_element *.
9134 * stack.c (_initialize_stack): Install "set/show print
9135 raw-frame-arguments", and deprecate "set/show print raw
9136 frame-arguments".
9137 * valprint.c (_initialize_valprint): Deprecate "set/show print
9138 raw".
9139
e6ed716c
PA
91402019-06-13 Pedro Alves <palves@redhat.com>
9141
9142 * compile/compile.c (struct compile_options): New.
9143 (compile_flag_option_def, compile_command_option_defs)
9144 (make_compile_options_def_group): New.
9145 (compile_file_command): Handle options with
9146 gdb::option::process_options.
9147 (compile_file_command_completer): New function.
9148 (compile_code_command): Handle options with
9149 gdb::option::process_options.
9150 (compile_code_command_completer): New function.
9151 (_initialize_compiler): Install completers for "compile code" and
9152 "compile file". Mention available options in "compile code" and
9153 "compile code"'s help.
9154 * completer.c (advance_to_completion_word): New, factored out from
9155 ...
9156 (advance_to_expression_complete_word_point): ... this.
9157 (advance_to_filename_complete_word_point): New.
9158 * completer.h (advance_to_filename_complete_word_point): New
9159 declaration.
9160
7d8062de
PA
91612019-06-13 Pedro Alves <palves@redhat.com>
9162
9163 * compile/compile.c: Include "cli/cli-option.h".
9164 (compile_print_value): Scope data pointer is now a
9165 value_print_options pointer; adjust.
9166 (compile_print_command): Process options. Scope data pointer is
9167 now a value_print_options pointer; adjust.
9168 (_initialize_compile): Update "compile print"'s help to include
9169 supported options. Install a completer for "compile print".
9170 * cp-valprint.c (show_vtblprint, show_objectprint)
9171 (show_static_field_print): Delete.
9172 (_initialize_cp_valprint): Don't install "set print
9173 static-members", "set print vtbl", "set print object" here.
9174 * printcmd.c: Include "cli/cli-option.h" and
9175 "common/gdb_optional.h".
9176 (print_command_parse_format): Rework to fill in a
9177 value_print_options instead of a format_data.
9178 (print_value): Change parameter type from format_data pointer to
9179 value_print_options reference. Adjust.
9180 (print_command_1): Process options. Adjust to pass down a
9181 value_print_options.
9182 (print_command_completer): New.
9183 (_initialize_printcmd): Install print_command_completer as
9184 handle_brkchars completer for the "print" command. Update
9185 "print"'s help to include supported options.
9186 * valprint.c: Include "cli/cli-option.h".
9187 (show_vtblprint, show_objectprint, show_static_field_print): Moved
9188 here from cp-valprint.c.
9189 (boolean_option_def, uinteger_option_def)
9190 (value_print_option_defs, make_value_print_options_def_group):
9191 New. Use gdb::option::add_setshow_cmds_for_options to install
9192 "set print elements", "set print null-stop", "set print repeats",
9193 "set print pretty", "set print union", "set print array", "set
9194 print address", "set print symbol", "set print array-indexes".
9195 * valprint.h: Include <string> and "cli/cli-option.h".
9196 (make_value_print_options_def_group): Declare.
9197 (print_value): Change parameter type from format_data pointer to
9198 value_print_options reference.
9199 (print_command_completer): Declare.
9200
9d0faba9
PA
92012019-06-13 Pedro Alves <palves@redhat.com>
9202
9203 * Makefile.in (SUBDIR_CLI_SRCS): Add cli/cli-option.c.
9204 (COMMON_SFILES): Add maint-test-settings.c.
9205 * cli/cli-decode.c (boolean_enums): New global, factored out from
9206 ...
9207 (add_setshow_boolean_cmd): ... here.
9208 * cli/cli-decode.h (boolean_enums): Declare.
9209 * cli/cli-option.c: New file.
9210 * cli/cli-option.h: New file.
9211 * cli/cli-setshow.c (parse_cli_boolean_value(const char **)): New,
9212 factored out from ...
9213 (parse_cli_boolean_value(const char *)): ... this.
9214 (is_unlimited_literal): Change parameter type to pointer to
9215 pointer. Adjust and advance ARG pointer.
9216 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
9217 (parse_cli_var_enum): New, factored out from ...
9218 (do_set_command): ... this. Adjust.
9219 * cli/cli-setshow.h (parse_cli_boolean_value)
9220 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
9221 (parse_cli_var_enum): Declare.
9222 * cli/cli-utils.c: Include "cli/cli-option.h".
9223 (get_ulongest): New.
9224 * cli/cli-utils.h (get_ulongest): Declare.
9225 (check_for_argument): New overloads.
9226 * maint-test-options.c: New file.
9227
2c722807
PA
92282019-06-13 Pedro Alves <palves@redhat.com>
9229
9230 * cli/cli-utils.c (number_or_range_parser::get_number): Do not
9231 parse a range if "-" is at the end of the string.
9232
dee7b4c8
PA
92332019-06-13 Pedro Alves <palves@redhat.com>
9234
9235 * cli/cli-setshow.c (parse_auto_binary_operation)
9236 (parse_cli_boolean_value): Don't allow "o".
9237
dca0f6c0
PA
92382019-06-13 Pedro Alves <palves@redhat.com>
9239
9240 * Makefile.in (COMMON_SFILES): Add maint-test-settings.c.
9241 * NEWS: Mention maint test-settings KIND.
9242 * maint-test-settings.c: New file.
9243
597bf39d
PA
92442019-06-13 Pedro Alves <palves@redhat.com>
9245
9246 * cli/cli-decode.c (add_setshow_cmd_full): Remove "show"
9247 completer.
9248 (add_setshow_string_cmd, add_setshow_string_noescape_cmd): Remove
9249 "set" completers.
9250
48c410fb
PA
92512019-06-13 Pedro Alves <palves@redhat.com>
9252
9253 * cli/cli-setshow.c (do_set_command) <var_enum>: Detect junk
9254 after item.
9255
93bcb043
PA
92562019-06-13 Pedro Alves <palves@redhat.com>
9257
9258 * cli/cli-setshow.c (is_unlimited_literal): Allow abbreviations.
9259
cbba3ecd
PA
92602019-06-13 Pedro Alves <palves@redhat.com>
9261
9262 * ax-gdb.c (agent_command_1): Remove skip_spaces call.
9263 * breakpoint.c (watch_maybe_just_location): Remove skip_spaces
9264 call.
9265 * cli/cli-cmds.c (apropos_command): Remove skip_spaces call.
9266 * cli/cli-utils.c (extract_info_print_args): Remove skip_spaces
9267 calls.
9268 (check_for_argument): Skip spaces after argument.
9269
b9a3f842
PA
92702019-06-13 Pedro Alves <palves@redhat.com>
9271
9272 * thread.c (thread_apply_command): Adjust TID parsing.
9273 * tid-parse.c (tid_range_parser::finished): Ensure parsing end is
9274 detected before end of string.
9275 (tid_is_in_list): Error out if LIST is invalid.
9276
3844e605
PA
92772019-06-13 Pedro Alves <palves@redhat.com>
9278
9279 * completer.c (complete_line_internal_1): Rewind completion word
9280 point.
9281 (completion_tracker::advance_custom_word_point_by): Change
9282 parameter type to int.
9283 * completer.h (completion_tracker::advance_custom_word_point_by):
9284 Likewise.
9285
00b56dbe
PA
92862019-06-13 Pedro Alves <palves@redhat.com>
9287
9288 * completer.c (advance_to_completion_word): Handle delimiters.
9289
d106773e
PA
92902019-06-11 Bernhard Heckel <bernhard.heckel@intel.com>
9291
9292 * dwarf2read.c (add_partial_symbol): Skip nameless modules.
9293
08f10e02
TT
92942019-06-11 Tom Tromey <tom@tromey.com>
9295
9296 * common/common-utils.c (xmalloc, xrealloc, xcalloc)
9297 (xmalloc_failed): Move to alloc.c.
9298 * alloc.c: New file.
9299 * Makefile.in (COMMON_SFILES): Add alloc.c.
9300
1c7fe951
TT
93012019-06-11 Tom Tromey <tom@tromey.com>
9302
9303 * nat/linux-waitpid.c: Don't include server.h.
9304 (linux_debug): Remove.
9305 (my_waitpid): Update.
9306
89549d7f
TT
93072019-06-11 Tom Tromey <tromey@adacore.com>
9308
9309 * infcall.c (_initialize_infcall): Remove trailing newline from
9310 help.
9311 * user-regs.c (_initialize_user_regs): Remove trailing newline
9312 from help.
9313 * typeprint.c (_initialize_typeprint): Remove trailing newline
9314 from help.
9315 * reverse.c (_initialize_reverse): Remove trailing newlines from
9316 help.
9317 * tracepoint.c (_initialize_tracepoint): Remove trailing newlines
9318 from help.
9319 * language.c (add_set_language_command): Remove trailing newline
9320 from help.
9321 * infcmd.c (_initialize_infcmd): Remove trailing newlines from
9322 help.
9323 * disasm.c (_initialize_disasm): Remove trailing newline from
9324 help.
9325 * top.c (init_main): Remove trailing newline from help.
9326 * interps.c (_initialize_interpreter): Remove trailing newline
9327 from help.
9328 * btrace.c (_initialize_btrace): Remove trailing newlines from
9329 help.
9330 * breakpoint.c (_initialize_breakpoint): Remove trailing newline
9331 from help.
9332 * python/python.c (_initialize_python): Remove trailing newline
9333 from help.
9334 * spu-tdep.c (_initialize_spu_tdep): Remove trailing newlines from
9335 help.
9336 * tui/tui-win.c (_initialize_tui_win): Remove trailing newlines
9337 from help. Reformat some text.
9338 * tui/tui-stack.c (_initialize_tui_stack): Remove trailing newline
9339 from help.
9340 * tui/tui-layout.c (_initialize_tui_layout): Remove trailing
9341 newline from help.
9342
86108c13
TT
93432019-06-11 Tom Tromey <tromey@adacore.com>
9344
9345 * darwin-nat.c (darwin_decode_exception_message)
9346 (darwin_decode_message, darwin_nat_target::kill): Fix shadowing.
9347
a7067863
AB
93482019-06-10 Andrew Burgess <andrew.burgess@embecosm.com>
9349
9350 * valops.c (value_slice): Check for not allocated or not
9351 associated values.
9352
9ab08412
TV
93532019-06-10 Tom de Vries <tdevries@suse.de>
9354
9355 PR gdb/24618
9356 * dwarf2read.c (struct mapped_index::symbol_name_slot_invalid): Make
9357 sure an empty slot (defined by a 32-bit zero pair) is recognized as
9358 invalid.
9359
f19e22e9
TV
93602019-06-10 Tom de Vries <tdevries@suse.de>
9361
9362 PR gdb/24611
9363 * linespec.c (linespec_lexer_lex_string): Remove incorrect
9364 "++(PARSER_STREAM (parser))" for "[abi"-prefixed colon. Add assert.
9365
e99f9db0
TV
93662019-06-10 Tom de Vries <tdevries@suse.de>
9367
9368 PR symtab/24545
9369 * symtab.c (struct demangled_name_entry): Add language field.
9370 (symbol_set_names): Revert "[gdb/symtab] Fix language of duplicate
9371 static minimal symbol". Set and use language field.
9372
9bf7038b
TT
93732019-06-10 Tom Tromey <tromey@adacore.com>
9374
9375 * ada-lang.c (_initialize_ada_language): Update help text.
9376
422186a9
TT
93772019-06-10 Tom Tromey <tromey@adacore.com>
9378
9379 * m32c-tdep.c (m32c_m16c_address_to_pointer): Don't end warning
9380 with a newline.
9381 * guile/guile.c (handle_boot_error): Don't end warning with a
9382 newline.
9383 * cli/cli-cmds.c (exit_status_set_internal_vars): Don't end
9384 warning with a newline.
9385 * s12z-tdep.c (s12z_skip_prologue): Don't end warning with a
9386 newline.
9387 (s12z_frame_cache): Likewise.
9388 * dwarf-index-cache.c (index_cache::store): Don't end warning with
9389 a newline.
9390 * solib-svr4.c (disable_probes_interface): Don't end warning with
9391 a newline.
9392 * nat/fork-inferior.c (fork_inferior): Don't end warning with a
9393 newline.
9394 * python/python.c (do_finish_initialization): Don't end warning
9395 with a newline.
9396
25ce02ee
TT
93972019-06-10 Tom Tromey <tom@tromey.com>
9398
9399 * python/py-breakpoint.c (gdbpy_breakpoint_created)
9400 (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
9401 gdbpy_enter.
9402
caa429d8
TT
94032019-06-10 Tom Tromey <tromey@adacore.com>
9404
9405 * elfread.c (elf_read_minimal_symbols): Don't set the dbx objfile
9406 data.
9407 (elf_new_init): Don't call stabsread_new_init.
9408 * dbxread.c (coffstab_build_psymtabs): Set dbx objfile data.
9409 (elfstab_build_psymtabs): Likewise. Call stabsread_new_init.
9410 * coffread.c (coff_symfile_init): Don't set the dbx objfile data.
9411
81873cc8
TV
94122019-06-10 Tom de Vries <tdevries@suse.de>
9413
9414 PR symtab/16264
9415 PR symtab/24517
9416 * dwarf2read.c (read_func_scope): Handle DW_AT_main_subprogram.
9417
4fa0265e
РИ
94182019-06-06 Руслан Ижбулатов <lrn1986@gmail.com>
9419
9420 * source.c (find_and_open_source): Also rewrite relative file
9421 names.
9422
1a3da2cd
AB
94232019-04-26 Amos Bird <amosbird@gmail.com>
9424
9425 * annotate.c (annotate_thread_exited): Add "thread-exited"
9426 annotation.
9427
3847a7bf
TT
94282019-06-06 Tom Tromey <tromey@adacore.com>
9429
9430 * maint.h (class scoped_command_stats): Use
9431 DISABLE_COPY_AND_ASSIGN.
9432 <print_time>: New method.
9433 * maint.c (scoped_command_stats, ~scoped_command_stats): Call
9434 print_time.
9435 (scoped_command_stats::print_time): New method.
9436
312617a3
AB
94372019-06-05 Andrew Burgess <andrew.burgess@embecosm.com>
9438
9439 * riscv-tdep.c (riscv_insn::decode): Gracefully ignore
9440 instructions of lengths 6 or 8 bytes.
9441
b02f78f9
PA
94422019-06-04 Pedro Alves <palves@redhat.com>
9443
9444 * common/gdb_unique_ptr.h (make_unique_xstrdup): New.
9445
9446 * ada-lang.c (catch_ada_completer): Use make_unique_xstrdup.
9447 * breakpoint.c (condition_completer): Likewise.
9448 * cli/cli-dump.c (scan_expression): Likewise.
9449 * common/filestuff.c (mkdir_recursive): Likewise.
9450 * common/gdb_tilde_expand.c (gdb_tilde_expand_up)
9451 * common/pathstuff.c (gdb_realpath, gdb_realpath_keepfile)
9452 (gdb_abspath): Likewise.
9453 * compile/compile-cplus-types.c
9454 (compile_cplus_instance::decl_name): Likewise.
9455 * completer.c (complete_explicit_location):
9456 (signal_completer, reg_or_group_completer_1): Likewise.
9457 * cp-support.c (cp_remove_params_if_any): Likewise.
9458 * fbsd-tdep.c (fbsd_core_vnode_path): Likewise.
9459 * guile/scm-safe-call.c (gdbscm_safe_eval_string): Likewise.
9460 * infcmd.c (strip_bg_char): Likewise.
9461 * linespec.c (copy_token_string): Likewise.
9462 * mi/mi-main.c (output_cores): Likewise.
9463 * psymtab.c (psymtab_search_name):
9464 * symfile.c (test_set_ext_lang_command): Likewise.
9465 * target.c (target_fileio_read_stralloc): Likewise.
9466 * tui/tui-regs.c (tui_reggroup_completer): Likewise.
9467 * value.c (complete_internalvar): Likewise.
9468
e1f2e1a2
CB
94692019-06-04 Christian Biesinger <cbiesinger@google.com>
9470
9471 Add objfile property to gdb.Type.
d3238f7d
PA
9472 * NEWS: Mention Python API addition.
9473 * python/py-type.c (typy_get_objfile): New method.
e1f2e1a2 9474
e664d728
PW
94752019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9476
9477 * NEWS: Mention the new set|show style [title|highlight].
9478 Mention changes to "show style", "help" and "apropos".
9479
66d8c862
PW
94802019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9481
9482 * cli/cli-decode.h (apropos_cmd): Add verbose argument.
9483 * cli/cli-decode.c (apropos_cmd): Likewise. Use print_doc_of_command
9484 instead of print_help_for_command.
9485 (print_doc_of_command): New function.
9486 (help_list): Add 'apropos -v word' suggestion.
9487 (print_help_for_command): Style the command name using title style.
9488 * cli/cli-cmds.c (apropos_command): Parse optional -v flag.
9489 (_initialize_cli_cmds): Describe -v in apropos_command help.
9490
9303eb2f
PW
94912019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9492
9493 * cli/cli-style.h (cli_style_option): Add name in constructor,
9494 add m_name class member, add constructor with intensity,
9495 add name class function.
9496 (cli_style_option::add_setshow_commands): Remove name argument.
9497 (highlight_style, title_style): New styles.
9498 * cli/cli-style.c (do_show): New function that shows a style
9499 characteristic styling the style name with itself.
9500 (set_style_name): New function.
9501 (STYLE_ADD_SETSHOW_COMMANDS): Remove NAME arguments.
9502 Update all callers according to the changes in cli/cli-style.h.
9503 * utils.h (fputs_highlighted): New function.
9504 * utils.c (fputs_highlighted): Likewise.
9505
e2c52041
PW
95062019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9507
9508 * NEWS: Mention new pipe command and new convenience variables.
9509
947d3946
PW
95102019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9511
9512 * cli/cli-cmds.c (pipe_command): New function.
9513 (_initialize_cli_cmds): Call add_com for pipe_command.
9514 Define | as an alias for pipe.
9515 (exit_status_set_internal_vars): New function.
9516 (shell_escape): Call exit_status_set_internal_vars.
9517 cli/cli-decode.c (find_command_name_length): Recognize | as
9518 a single character command.
9519
b8fd0918
PW
95202019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9521
9522 * gdbcmd.h (execute_command_to_ui_file): New declaration.
9523 top.c (execute_command_to_ui_file): New function, mostly a copy
9524 of execute_command_to_string.
9525 (execute_command_to_string): Implement by calling
9526 execute_command_to_ui_file.
9527
68bb5386
PW
95282019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9529
9530 * top.h (saved_command_line): Remove declaration.
9531 * top.c (previous_saved_command_line, previous_repeat_arguments):
9532 New variables.
9533 (saved_command_line): Make static, define together with other
9534 'repeat variables'.
9535 (dont_repeat): Clear repeat_arguments.
9536 (repeat_previous, get_saved_command_line, save_command_line):
9537 New functions.
9538 (gdb_init): Initialize saved_command_line
9539 and previous_saved_command_line.
9540 * main.c (captured_main_1): Remove saved_command_line initialization.
9541 * event-top.c (handle_line_of_input): Update to use
9542 the new 'repeat' related functions instead of direct access to
9543 saved_command_line.
9544 * command.h (repeat_previous, get_saved_command_line,
9545 save_command_line): New declarations.
9546 (dont_repeat): Add comment.
9547
bfcdb852
TT
95482019-05-30 Tom Tromey <tromey@adacore.com>
9549
9550 * gdbtypes.h (struct range_bounds) <flag_upper_bound_is_count>:
9551 Fix comment.
9552 (TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED): Rewrite comment.
9553
0ef209f2
JV
95542019-05-30 Jan Vrany <jan.vrany@fit.cvut.cz>
9555
9556 PR cli/24587
9557 * completer.c (complete): Initialize variable word.
9558
955b06fa
SDJ
95592019-05-29 Sergio Durigan Junior <sergiodj@redhat.com>
9560
9561 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192
9562 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1715008
9563 * dwarf2read.c (dwarf_decode_macro_bytes): Move check to see if
9564 'body' is NULL to the outter 'if', protecting the '!is_define'
9565 situation as well.
9566
fa9c3fa0
TT
95672019-05-29 Tom Tromey <tromey@adacore.com>
9568
9569 * dwarf2read.c (partial_die_parent_scope): Call dwarf_tag_name.
9570 (dwarf_unknown): New function.
9571 (dwarf_tag_name, dwarf_attr_name, dwarf_form_name)
9572 (dwarf_type_encoding_name): Use dwarf_unknown.
9573
4330d61d
TT
95742019-05-29 Tom Tromey <tromey@adacore.com>
9575
9576 PR c++/20020:
9577 * cp-valprint.c (cp_print_value_fields): Call
9578 cp_print_static_field inside "try".
9579
33a6bc35
TT
95802019-05-29 Tom Tromey <tromey@adacore.com>
9581
9582 * inflow.c (struct terminal_info): Add default operator=.
9583 * configure: Rebuild.
9584 * warning.m4 (AM_GDB_WARNINGS): Add -Wdeprecated-copy,
9585 -Wdeprecated-copy-dtor, -Wredundant-move.
9586
000439d5
TT
95872019-05-29 Tom Tromey <tromey@adacore.com>
9588
9589 * NEWS: Add entry.
9590 * infcmd.c (print_return_value_1): Handle finish_print
9591 option.
9592 (show_print_finish): New function.
9593 (_initialize_infcmd): Add "set/show print finish" commands.
9594 * valprint.c (user_print_options): Initialize new member.
9595 * valprint.h (struct value_print_options) <finish_print>: New
9596 member.
9597
c0e70c62
TT
95982019-05-28 Tom Tromey <tromey@adacore.com>
9599
9600 * ada-lang.c (ada_remove_Xbn_suffix)
9601 (find_old_style_renaming_symbol)
9602 (parse_old_style_renaming): Remove.
9603 (ada_find_renaming_symbol): Don't call
9604 find_old_style_renaming_symbol.
9605 (ada_is_renaming_symbol): Rename from
9606 ada_find_renaming_symbol. Remove "block" parameter. Return
9607 bool. Now static.
9608 (ada_read_var_value): Update and simplify.
9609 * ada-exp.y (write_var_or_type): Remove old code.
9610
766f8836
AH
96112019-05-28 Alan Hayward <alan.hayward@arm.com>
9612
68255adc 9613 PR gdb/25010
766f8836
AH
9614 * event-top.c: Remove include comment.
9615 * inflow.c (class scoped_ignore_sigttou): Move from here...
9616 * inflow.h (class scoped_ignore_sigttou): ...to here.
9617 * ser-unix.c (hardwire_drain_output): Block SIGTTOU during drain.
9618 * top.c: Remove include comment.
9619
eb41253a
TT
96202019-05-27 Tom Tromey <tom@tromey.com>
9621
9622 * NEWS: Fix typo.
9623
4ca51187
TT
96242019-05-22 Tom Tromey <tromey@adacore.com>
9625
9626 * target.c (target_follow_exec): Constify parameter.
9627 * target-delegates.c: Rebuild.
9628 * remote.c (remote_target::follow_exec): Constify parameter.
9629 * infrun.c (follow_exec): Constify parameter.
9630 * target.h (struct target_ops) <follow_exec>: Constify parameter.
9631 (target_follow_exec): Likewise.
9632
8fca4da0
AH
96332019-05-22 Alan Hayward <alan.hayward@arm.com>
9634
9635 * aarch64-tdep.c (aarch64_execute_dwarf_cfa_vendor_op): Treat
9636 DW_CFA_AARCH64_negate_ra_state as nop on non pauth targets.
9637
b7060614
AH
96382019-05-22 Alan Hayward <alan.hayward@arm.com>
9639
9640 * NEWS: Add debugredirect and testsuite sections.
9641
0a5954bd
SC
96422019-05-22 Simon Cook <simon.cook@embecosm.com>
9643
9644 * riscv-tdep.c (riscv_gdbarch_init): Support determining flen from
9645 target descriptions using exclusively floating point register name
9646 aliases.
9647
dc42e902
AB
96482019-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
9649
9650 PR gdb/18644:
9651 * f-lang.c (build_fortran_types): Handle the case where
9652 gdbarch_floatformat_for_type returns a nullptr.
9653
fb7806c7
TV
96542019-05-21 Tom de Vries <tdevries@suse.de>
9655
9656 PR cli/24587
9657 * cli/cli-cmds.c (complete_command): Fix use of unitialized variable.
9658
34d11c68
AB
96592019-05-18 Andrew Burgess <andrew.burgess@embecosm.com>
9660
9661 PR gdb/18644:
9662 * f-lang.c (build_fortran_types): Use floatformats_ia64_quad for
9663 16-byte floats.
9664 * i386-tdep.c (i386_floatformat_for_type): Use
9665 floatformats_ia64_quad for the 16-byte floating point component
9666 within a fortran 32-byte complex number.
9667
122cf0f2
AB
96682019-05-18 Andrew Burgess <andrew.burgess@embecosm.com>
9669
9670 * dwarf2read.c (struct cu_partial_die_info): Add constructor,
9671 delete default constructor.
9672 (find_partial_die): Update to return const struct.
9673 (partial_die_parent_scope): Move variable declaration into scope
9674 of its use and change its type to auto.
9675 (guess_partial_die_structure_name): Likewise.
9676 (partial_die_info::fixup): Likewise.
9677
33d0e35a
TT
96782019-05-17 Tom Tromey <tromey@adacore.com>
9679
9680 * source.c (find_and_open_source): Remove cast.
9681
a45575b0
TT
96822019-05-17 Tom Tromey <tromey@adacore.com>
9683
9684 * annotate.c (annotate_source): Make "filename" const.
9685 * annotate.h (annotate_source): Use const.
9686
81f47ac2
AH
96872019-05-17 Alan Hayward <alan.hayward@arm.com>
9688
9689 * disasm.c (set_disassembler_options): Send errors to stderr.
9690
ca1285d1
AH
96912019-05-17 Alan Hayward <alan.hayward@arm.com>
9692
9693 * cli/cli-interp.c (struct saved_output_files): Add saved entry.
9694 (cli_interp_base::set_logging): Check debug_redirect.
9695 * cli/cli-interp.h (set_logging): Add debug_redirect parameter.
9696 * cli/cli-logging.c (debug_redirect): Add static variable.
9697 (pop_output_files): Add default param.
9698 (handle_redirections): Print debug setting.
9699 (show_logging_command): Likewise.
9700 (_initialize_cli_logging): Add debugredirect command.
9701 * interps.c (current_interp_set_logging): Add debug_redirect
9702 parameter.
9703 * interps.h (set_logging): Add debug_redirect parameter.
9704 (current_interp_set_logging): Likewise.
9705 * mi/mi-common.h: Likewise.
9706 * mi/mi-interp.c (mi_interp::set_logging): Likewise.
9707
97082019-05-17 Alan Hayward <alan.hayward@arm.com>
f3a09c80
AH
9709 Tom Tromey <tromey@adacore.com>
9710
9711 * cli/cli-interp.c (cli_interp_base::set_logging): Create tee_file
9712 directly.
9713 * cli/cli-interp.h (make_logging_output): Remove declaration.
9714 * cli/cli-logging.c (make_logging_output): Remove function.
9715 * mi/mi-interp.c (mi_interp::set_logging): Create tee_file
9716 directly.
9717 * ui-file.c (tee_file::tee_file): Remove bools.
9718 (tee_file::~tee_file): Remove deletes.
9719 * ui-file.h (tee_file): Remove bools.
9720
26648588
JV
97212019-01-28 Jan Vrany <jan.vrany@fit.cvut.cz>
9722
9723 * mi/mi-cmds.h (mi_cmd_complete): New function.
9724 * mi/mi-main.c (mi_cmd_complete): Likewise.
9725 * mi/mi-cmds.c: Define new MI command -complete.
9726 * NEWS: Mention new -complete command.
9727
6e035501
JV
97282019-01-24 Jan Vrany <jan.vrany@fit.cvut.cz>
9729
9730 * completer.h (complete): New function.
9731 * completer.c (complete): Likewise.
9732 * cli/cli-cmds.c: (complete_command): Update to use new complete()
9733 function defined in completer.h.
9734
7d0e2ece
JV
97352019-05-17 Jan Vrany <jan.vrany@fit.cvut.cz>
9736
e79be6e5 9737 * MAINTAINERS (Write After Approval): Add myself.
7d0e2ece 9738
fb816e8b
TV
97392019-05-17 Tom de Vries <tdevries@suse.de>
9740
9741 PR gdb/24094
9742 * dwarf2read.c (struct cu_partial_die_info): New struct.
9743 (find_partial_die): Return cu_partial_die_info.
9744 (partial_die_parent_scope, guess_partial_die_structure_name)
9745 (partial_die_info::fixup): Handle new return type of find_partial_die.
9746
677052f2
SDJ
97472019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
9748
a1726c38 9749 PR breakpoints/24541
677052f2
SDJ
9750 * stap-probe.c (stap_parse_register_operand): Make "regname" an
9751 "std::string", simplifying the algorithm.
9752
f3da9116
SDJ
97532019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
9754
9755 * stap-probe.c (handle_stap_probe): Fix complaint formatting.
9756 (stap_static_probe_ops::get_probes): Likewise.
9757
f1bb75ab
SDJ
97582019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
9759
9760 * stap-probe.c (stap_parse_register_operand): Make "if (*p->arg ==
9761 '-')" and "else if".
9762 (stap_parse_single_operand): Join checks for
9763 "gdbarch_stap_parse_special_token_p" and
9764 "gdbarch_stap_parse_special_token" in the same "if" statement.
9765 Invert check when verifying for operation on register
9766 displacement.
9767
3ca58cde
SDJ
97682019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
9769
9770 * stap-probe.c (stap_get_opcode): Update comment.
9771 (stap_get_expected_argument_type): Likewise.
9772 (handle_stap_probe): Likewise.
9773
af2d9bee
SDJ
97742019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
9775
9776 * i386-tdep.c (i386_stap_parse_special_token_triplet): Change
9777 return type to 'bool'. Adjust comment. Use 'bool' when
9778 appropriate.
9779 (i386_stap_parse_special_token_three_arg_disp): Likewise.
9780 * stap-probe.c (stap_parse_argument_1): Likewise.
9781 (stap_is_operator): Likewise.
9782 (stap_is_generic_prefix): Likewise.
9783 (stap_is_register_prefix): Likewise.
9784 (stap_is_register_indirection_prefix): Likewise.
9785 (stap_is_integer_prefix): Likewise.
9786 (stap_generic_check_suffix): Likewise.
9787 (stap_check_integer_suffix): Likewise.
9788 (stap_check_register_suffix): Likewise.
9789 (stap_check_register_indirection_suffix): Likewise.
9790 (stap_parse_register_operand): Likewise.
9791 (stap_parse_single_operand): Likewise.
9792 (stap_parse_argument_1): Likewise.
9793 (stap_probe::get_argument_count): Likewise.
9794 (stap_is_operator): Likewise.
9795
61c9c421
TT
97962019-05-16 Tom Tromey <tromey@adacore.com>
9797
9798 * darwin-nat.c (thread_info_from_private_thread_info): Add struct
9799 keyword to foreach.
9800
9ddc1af1
SM
98012019-05-15 Simon Marchi <simon.marchi@efficios.com>
9802
9803 * linux-thread-db.c (try_thread_db_load_1): Change return type
9804 to bool.
9805 (try_thread_db_load): Likewise.
9806 (try_thread_db_load_from_pdir_1): Likewise.
9807 (try_thread_db_load_from_pdir): Likewise.
9808 (try_thread_db_load_from_sdir): Likewise.
9809 (try_thread_db_load_from_dir): Likewise.
9810 (thread_db_load_search): Likewise.
9811 (has_libpthread): Likewise.
9812 (thread_db_load): Likewise.
9813
7bede828
SDJ
98142019-05-15 Sergio Durigan Junior <sergiodj@redhat.com>
9815
9816 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192
9817 * dwarf2read.c (parse_macro_definition): Check whether 'body' is
9818 NULL, and complain/return if that's the case.
9819
c5358db4
JD
98202019-05-15 John Darrington <john@darrington.wattle.id.au>
9821
9822 * s12z-tdep.c (push_pull_get_stack_adjustment): New function.
9823 (advance, posn, abstract_read_memory): New functions.
9824 [struct mem_read_abstraction]: New struct.
9825 (s12z_frame_cache): Use opcodes API to interpret stack frame code.
9826
c408a94f
TT
98272019-05-14 Tom Tromey <tromey@adacore.com>
9828
9829 * ada-lang.c (coerce_unspec_val_to_type): Only set address when
9830 value is not lval_memory.
9831
e7bd7fba
TT
98322019-05-14 Tom Tromey <tromey@adacore.com>
9833
9834 * solib.c (info_sharedlibrary_command): Style the file name.
9835
a6d0f249
AH
98362019-05-14 Alan Hayward <alan.hayward@arm.com>
9837
9838 * aarch64-tdep.c (aarch64_vnh_type): Add half view.
9839 (aarch64_vnv_type): Likewise.
9840 * target-descriptions.c (make_gdb_type): Add TDESC_TYPE_IEEE_HALF.
9841 * common/tdesc.c: Likewise.
9842 * common/tdesc.h (enum tdesc_type_kind): Likewise.
9843 * features/aarch64-fpu.c (create_feature_aarch64_fpu): Regenerate.
9844 * features/aarch64-fpu.xml: Add ieee half view.
9845 * features/aarch64-sve.c (create_feature_aarch64_fpu): Likewise.
9846 * gdbtypes.c (gdbtypes_post_init): Add builtin_half
9847 * gdbtypes.h (struct builtin_type): Likewise.
9848 (struct objfile_type): Likewise.
9849
66b8bb74
SM
98502019-05-12 Paul Naert <paul.naert@polymtl.ca>
9851
9852 * language.c (language_sniff_from_mangled_name): Fix "langauge"
9853 typo.
9854 * location.h (string_to_event_location): Likewise.
9855
21c219fd
JB
98562019-05-11 Joel Brobecker <brobecker@adacore.com>
9857
9858 GDB 8.3 released.
9859
13674803
SM
98602019-05-10 Simon Marchi <simon.marchi@efficios.com>
9861
9862 * breakpoint.h (fix_multi_location_breakpoint_output_globally):
9863 New variable declaration.
9864 * breakpoint.c (fix_multi_location_breakpoint_output_globally):
9865 New variable.
9866 (print_one_breakpoint): Use ui_out::test_flags and new global
9867 variable to compute use_fixed_output.
9868 * mi/mi-main.h (mi_multi_location_breakpoint_output_fixed):
9869 Remove.
9870 * mi/mi-main.c (fix_multi_location_breakpoint_output): Remove.
9871 (mi_multi_location_breakpoint_output_fixed): Remove.
9872 (mi_cmd_fix_multi_location_breakpoint_output): Adjust to set the
9873 new variable.
9874 * mi/mi-out.c (mi_ui_out::mi_ui_out): Set
9875 fix_multi_location_breakpoint_output flag if version >= 3.
9876 * ui-out.h (enum ui_out_flag)
9877 <fix_multi_location_breakpoint_output>: New enumerator.
9878
a9eac7f9
SM
98792019-05-10 Simon Marchi <simon.marchi@efficios.com>
9880
9881 * contrib/cc-with-tweaks.sh: Validate dwz's work.
9882
71bed2db
TT
98832019-05-10 Tom Tromey <tromey@adacore.com>
9884
9885 * ada-lang.c (catch_ada_completer): New function.
9886 (_initialize_ada_language): Use it.
9887
24c54127
TT
98882019-05-10 Tom Tromey <tromey@adacore.com>
9889
9890 * thread.c (print_thread_info): Make "requested_threads" const.
9891 * gdbthread.h (print_thread_info): Make "requested_threads"
9892 const.
9893 * ada-tasks.c (print_ada_task_info): Make "taskno_str" const.
9894 * ada-lang.h (print_ada_task_info): Make "taskno_str" const.
9895
7a102139
TT
98962019-05-08 Tom Tromey <tom@tromey.com>
9897
9898 * gdbtypes.c (objfile_type_data): Change type.
9899 (objfile_type, _initialize_gdbtypes): Update.
9900
924d79e2
TT
99012019-05-08 Tom Tromey <tom@tromey.com>
9902
9903 * dwarf2-frame.c (dwarf2_frame_objfile_data): Change type.
9904 (dwarf2_frame_find_fde, dwarf2_build_frame_info)
9905 (_initialize_dwarf2_frame): Update.
9906
4c58e337
TT
99072019-05-08 Tom Tromey <tom@tromey.com>
9908
9909 * objc-lang.c (objc_objfile_data): Change type.
9910 (find_methods): Update.
9911 (_initialize_objc_lang): Remove.
9912
d772d2ab
TT
99132019-05-08 Tom Tromey <tom@tromey.com>
9914
9915 * stabsread.c (rs6000_builtin_type_data): Change type.
9916 (rs6000_builtin_type, _initialize_stabsread): Update.
9917
d11d83f4
TT
99182019-05-08 Tom Tromey <tom@tromey.com>
9919
9920 * mips-tdep.c (mips_pdr_data): Remove.
9921 (_initialize_mips_tdep): Update.
9922
9a73f0ad
TT
99232019-05-08 Tom Tromey <tom@tromey.com>
9924
9925 * hppa-tdep.c (hppa_objfile_priv_data): Change type.
9926 (hppa_init_objfile_priv_data, read_unwind_info)
9927 (find_unwind_entry, _initialize_hppa_tdep): Update.
9928
8127a2fa
TT
99292019-05-08 Tom Tromey <tom@tromey.com>
9930
9931 * elfread.c (elf_objfile_gnu_ifunc_cache_data): Change type.
9932 (elf_gnu_ifunc_record_cache): Update. Don't allocate hash table
9933 on obstack.
9934 (elf_gnu_ifunc_resolve_by_cache, _initialize_elfread): Update.
9935
91d3055d
TT
99362019-05-08 Tom Tromey <tom@tromey.com>
9937
9938 * mdebugread.c (basic_type_data): Change type.
9939 (basic_type, _initialize_mdebugread): Update.
9940
31930bd3
TT
99412019-05-08 Tom Tromey <tom@tromey.com>
9942
9943 * common/gdb_unique_ptr.h (struct noop_deleter): New.
9944
bdb3ed9e
TT
99452019-05-08 Tom Tromey <tom@tromey.com>
9946
9947 * nto-tdep.c (nto_inferior_data_reg): Change type.
9948 (nto_inferior_data): Update.
9949 (nto_inferior_data_cleanup, nto_new_inferior_data)
9950 (_initialize_nto_tdep): Remove.
9951 * nto-tdep.h (struct nto_inferior_data): Add initializers.
9952
f37b313d
TT
99532019-05-08 Tom Tromey <tom@tromey.com>
9954
9955 * ada-lang.c (struct ada_inferior_data): Add initializers.
9956 (ada_inferior_data): Change type.
9957 (ada_inferior_data_cleanup): Remove.
9958 (get_ada_inferior_data, ada_inferior_exit)
9959 (struct ada_pspace_data): Add initializers, destructor.
9960 (ada_pspace_data_handle): Change type.
9961 (get_ada_pspace_data): Update.
9962 (ada_pspace_data_cleanup): Remove.
9963
24699405
TT
99642019-05-08 Tom Tromey <tom@tromey.com>
9965
9966 * coffread.c (struct coff_symfile_info): Add initializers.
9967 (coff_objfile_data_key): Move lower. Change type.
9968 (coff_symfile_init, coff_symfile_read, _initialize_coffread):
9969 Update.
9970 (coff_free_info): Remove.
9971
d4e05d2f
TT
99722019-05-08 Tom Tromey <tom@tromey.com>
9973
9974 * fbsd-tdep.c (struct fbsd_pspace_data): Add initializers.
9975 (fbsd_pspace_data_handle): Move lower. Change type.
9976 (get_fbsd_pspace_data): Update.
9977 (fbsd_pspace_data_cleanup): Remove.
9978 (_initialize_fbsd_tdep): Update.
9979
14ef6690
TT
99802019-05-08 Tom Tromey <tom@tromey.com>
9981
9982 * ada-tasks.c (ada_tasks_pspace_data_handle): Change type.
9983 (get_ada_tasks_pspace_data): Update.
9984 (ada_tasks_pspace_data_cleanup): Remove.
9985 (_initialize_tasks): Update.
9986 (ada_tasks_inferior_data_handle): Change type.
9987 (get_ada_tasks_inferior_data): Update.
9988 (ada_tasks_inferior_data_cleanup): Remove.
9989 (struct ada_tasks_pspace_data): Add initializers.
9990
814cf43a
TT
99912019-05-08 Tom Tromey <tom@tromey.com>
9992
9993 * symfile.h (struct sym_probe_fns) <sym_get_probes>: Change type.
9994 * symfile-debug.c (debug_sym_get_probes): Change type.
9995 * stap-probe.c (handle_stap_probe):
9996 (stap_static_probe_ops::get_probes): Change type.
9997 * probe.h (class static_probe_ops) <get_probes>: Change type.
9998 * probe.c (class any_static_probe_ops) <get_probes>: Change type.
9999 (parse_probes_in_pspace): Update.
10000 (find_probes_in_objfile, find_probe_by_pc, collect_probes):
10001 Update.
10002 (any_static_probe_ops::get_probes): Change type.
10003 * elfread.c (elfread_data): New typedef.
10004 (probe_key): Change type.
10005 (elf_get_probes): Likewise. Update.
10006 (probe_key_free): Remove.
10007 (_initialize_elfread): Update.
10008 * dtrace-probe.c (class dtrace_static_probe_ops) <get_probes>:
10009 Change type.
10010 (dtrace_process_dof_probe, dtrace_process_dof)
10011 (dtrace_static_probe_ops::get_probe): Change type.
10012
02dc647e
TT
100132019-05-08 Tom Tromey <tom@tromey.com>
10014
10015 * xcoffread.c (struct xcoff_symfile_info): Rename from
10016 coff_symfile_info. Add initializers.
10017 (xcoff_objfile_data_key): Move lower. Change type.
10018 (XCOFF_DATA): Rewrite.
10019 (xcoff_free_info): Remove.
10020 (xcoff_symfile_init, _initialize_xcoffread, read_xcoff_symtab)
10021 (read_symbol, read_symbol_lineno, find_linenos, init_stringtab)
10022 (xcoff_initial_scan): Update.
10023
09232438
TT
100242019-05-08 Tom Tromey <tom@tromey.com>
10025
10026 * solib-svr4.c (struct svr4_info): Add initializers and
10027 destructor.
10028 <probes_table>: Now an htab_up.
10029 (solib_svr4_pspace_data): Change type.
10030 (free_probes_table): Simplify.
10031 (~svr4_info): Rename from svr4_pspace_data_cleanup.
10032 (get_svr4_info, probes_table_htab_remove_objfile_probes)
10033 (probes_table_remove_objfile_probes, register_solib_event_probe)
10034 (solib_event_probe_at, svr4_update_solib_event_breakpoint)
10035 (_initialize_svr4_solib): Update.
10036
7b4a314f
TT
100372019-05-08 Tom Tromey <tom@tromey.com>
10038
10039 * remote.c (remote_pspace_data): Change type.
10040 (remote_pspace_data_cleanup): Remove.
10041 (get_remote_exec_file, set_pspace_remote_exec_file)
10042 (_initialize_remote): Update.
10043
51d3063a
TT
100442019-05-08 Tom Tromey <tom@tromey.com>
10045
10046 * breakpoint.c (breakpoint_objfile_key): Change type.
10047 (get_breakpoint_objfile_data): Update.
10048 (free_breakpoint_objfile_data): Remove.
10049 (_initialize_breakpoint): Update.
10050
89fb8848
TT
100512019-05-08 Tom Tromey <tom@tromey.com>
10052
10053 * linux-tdep.c (struct linux_info): Add initializers.
10054 (linux_inferior_data): Move. Change type.
10055 (invalidate_linux_cache_inf): Update.
10056 (linux_inferior_data_cleanup): Remove.
10057 (get_linux_inferior_data, _initialize_linux_tdep): Update.
10058
e9b89e2d
TT
100592019-05-08 Tom Tromey <tom@tromey.com>
10060
10061 * auxv.c (auxv_inferior_data): Move. Change type.
10062 (auxv_inferior_data_cleanup): Remove.
10063 (invalidate_auxv_cache_inf): Rewrite.
10064 (get_auxv_inferior_data, _initialize_auxv): Update.
10065
8c42777c
TT
100662019-05-08 Tom Tromey <tom@tromey.com>
10067
10068 * symfile-debug.c (struct debug_sym_fns_data): Add initializers.
10069 (symfile_debug_objfile_data_key): Change type.
10070 (symfile_debug_installed, debug_qf_has_symbols)
10071 (debug_qf_find_last_source_symtab)
10072 (debug_qf_forget_cached_source_info)
10073 (debug_qf_map_symtabs_matching_filename, debug_qf_lookup_symbol)
10074 (debug_qf_print_stats, debug_qf_dump)
10075 (debug_qf_expand_symtabs_for_function)
10076 (debug_qf_expand_all_symtabs)
10077 (debug_qf_expand_symtabs_with_fullname)
10078 (debug_qf_map_matching_symbols)
10079 (debug_qf_expand_symtabs_matching)
10080 (debug_qf_find_pc_sect_compunit_symtab)
10081 (debug_qf_map_symbol_filenames)
10082 (debug_qf_find_compunit_symtab_by_address, debug_sym_get_probes)
10083 (debug_sym_new_init, debug_sym_init, debug_sym_read)
10084 (debug_sym_read_psymbols, debug_sym_finish, debug_sym_offsets)
10085 (debug_sym_read_linetable, debug_sym_relocate): Update.
10086 (symfile_debug_free_objfile): Remove.
10087 (install_symfile_debug_logging, _initialize_symfile_debug):
10088 Update.
10089
5bfd760d
TT
100902019-05-08 Tom Tromey <tom@tromey.com>
10091
10092 * dwarf2read.h (struct dwarf2_per_objfile): Don't inherit from
10093 allocate_on_obstack.
10094 * dwarf2read.c (dwarf2_objfile_data_key): Change type.
10095 (get_dwarf2_per_objfile): Update.
10096 (set_dwarf2_per_objfile): Remove.
10097 (dwarf2_has_info, dwarf2_get_section_info): Update.
10098 (dwarf2_free_objfile): Remove.
10099 (_initialize_dwarf2_read): Update.
10100
e85e19b4
TT
101012019-05-08 Tom Tromey <tom@tromey.com>
10102
10103 * auto-load.c (struct auto_load_pspace_info): Add destructor and
10104 initializers.
10105 <unsupported_script_warning_printed,
10106 script_not_found_warning_printed>: Now bool.
10107 (auto_load_pspace_data): Change type.
10108 (~auto_load_pspace_info): Rename from
10109 auto_load_pspace_data_cleanup.
10110 (get_auto_load_pspace_data, init_loaded_scripts_info)
10111 (clear_section_scripts, maybe_print_unsupported_script_warning)
10112 (maybe_print_script_not_found_warning, _initialize_auto_load):
10113 Update.
10114
f6aa7436
TT
101152019-05-08 Tom Tromey <tom@tromey.com>
10116
10117 * objfiles.c (objfile_pspace_info): Add destructor and
10118 initializers.
10119 (objfiles_pspace_data): Change type.
10120 (~objfile_pspace_info): Rename from objfiles_pspace_data_cleanup.
10121 (get_objfile_pspace_data): Update.
10122 (objfiles_bfd_data): Change type.
10123 (get_objfile_bfd_data): Update.
10124 (objfile_bfd_data_free, _initialize_objfiles): Remove.
10125
6ae614f6
TT
101262019-05-08 Tom Tromey <tom@tromey.com>
10127
10128 * break-catch-syscall.c (catch_syscall_inferior_data): Move.
10129 Change type.
10130 (get_catch_syscall_inferior_data): Update.
10131 (catch_syscall_inferior_data_cleanup): Remove.
10132 (_initialize_break_catch_syscall): Update.
10133
6509b8eb
TT
101342019-05-08 Tom Tromey <tom@tromey.com>
10135
10136 * inflow.c (struct terminal_info): Add destructor and
10137 initializers.
10138 (inflow_inferior_data): Change type.
10139 (~terminal_info): Rename from inflow_inferior_data_cleanup.
10140 (get_inflow_inferior_data, inflow_inferior_exit)
10141 (swap_terminal_info, _initialize_inflow): Update.
10142
35632941
TT
101432019-05-08 Tom Tromey <tom@tromey.com>
10144
10145 * target-dcache.c (target_dcache_cleanup): Remove.
10146 (target_dcache_aspace_key): Change type.
10147 (target_dcache_init_p, target_dcache_invalidate)
10148 (target_dcache_get, target_dcache_get_or_init)
10149 (_initialize_target_dcache): Update.
10150 * dcache.h (struct dcache_deleter): New.
10151
3017b94d
TT
101522019-05-08 Tom Tromey <tom@tromey.com>
10153
10154 * symtab.c (struct symbol_cache): Add destructor and
10155 initializers.
10156 (symbol_cache_key): Move. Change type.
10157 (make_symbol_cache, free_symbol_cache): Remove.
10158 (get_symbol_cache): Update.
10159 (symbol_cache_cleanup): Remove.
10160 (ALL_PSPACES, symbol_cache_flush)
10161 (maintenance_print_symbol_cache)
10162 (maintenance_print_symbol_cache_statistics, _initialize_symtab):
10163 Update.
10164
a32ad8c5
TT
101652019-05-08 Tom Tromey <tom@tromey.com>
10166
10167 * symtab.c (struct main_info): Add destructor and initializers.
10168 (main_progspace_key): Move. Change type.
10169 (get_main_info): Update.
10170 (main_info_cleanup): Remove.
10171 (_initialize_symtab): Update.
10172
5f6e90a0
TT
101732019-05-08 Tom Tromey <tom@tromey.com>
10174
10175 * registry.h (DECLARE_REGISTRY): Define the _key class.
10176
1bd0c6e4
AB
101772019-05-08 Andrew Burgess <andrew.burgess@embecosm.com>
10178
10179 * NEWS: Merge two 'New commands' sections.
10180
2228ef77
XR
101812019-05-08 Joel Brobecker <brobecker@adacore.com>
10182
10183 * ada-valprint.c (ada_val_print_gnat_array): Remove language
10184 parameter and use Ada language definition instead.
10185 (ada_val_print_ptr): Remove unused language parameter.
10186 (ada_val_print_num): Remove language parameter and use Ada language
10187 definition instead.
10188 (ada_val_print_enum, ada_val_print_flt): Remove unused language
10189 parameter.
10190 (ada_val_print_struct_union, ada_val_print_ref): Remove language
10191 parameter and use Ada language definition instead.
10192 (ada_val_print_1): Update all ada_val_print_xxx calls.
10193 Remove language parameter.
10194 (ada_val_print): Update ada_val_print_1 call.
10195
60fcc1c3
TT
101962019-05-08 Tom Tromey <tromey@adacore.com>
10197
10198 * remote.c (remote_hw_watchpoint_limit)
10199 (remote_hw_watchpoint_length_limit, remote_hw_breakpoint_limit):
10200 Now static.
10201
ed2b7c17
TT
102022019-05-08 Tom Tromey <tromey@adacore.com>
10203
10204 * maint.c (_initialize_maint_cmds): Move initialization code to
10205 remote.c.
10206 (watchdog, show_watchdog): Move to remote.c.
10207 * remote.c (watchdog, show_watchdog): Move from maint.c. Make
10208 "watchdog" static.
10209 (_initialize_remote): Move initialization code from maint.c.
10210 * defs.h (watchdog): Don't declare.
10211
b0be6c91
TT
102122019-05-08 Tom Tromey <tromey@adacore.com>
10213
10214 * tui/tui-interp.c: Include main.h.
10215 * interps.c: Include main.h.
10216 * main.h (interpreter_p): Declare.
10217 * defs.h (interpreter_p): Don't declare.
10218
587ee17b
TT
102192019-05-08 Tom Tromey <tromey@adacore.com>
10220
10221 * dwarf2loc.c: Include dwarf2read.h.
10222 * defs.h (read_unsigned_leb128): Don't declare.
10223 * dwarf2read.h (read_unsigned_leb128): Declare.
10224
ca1df239
TT
102252019-05-08 Tom Tromey <tromey@adacore.com>
10226
10227 * utils.c (fputs_maybe_filtered): Call can_emit_style_escape as a
10228 method.
10229
99f20f08
TT
102302019-05-08 Tom Tromey <tromey@adacore.com>
10231
10232 * utils.c (fputs_maybe_filtered): Reset style after paging, even
10233 when no wrap column is set.
10234
80e55b13
TT
102352019-05-08 Tom Tromey <tromey@adacore.com>
10236
10237 * c-lang.c (c_get_string): Handle non-C-style arrays.
10238
9d3421af
TT
102392019-05-08 Tom Tromey <tromey@adacore.com>
10240
10241 * typeprint.c (print_offset_data::update): Print the bit offset,
10242 not the number of bits remaining.
10243
844333e2
TT
102442019-05-08 Tom Tromey <tromey@adacore.com>
10245
10246 * typeprint.c (print_offset_data::maybe_print_hole): Add extra
10247 padding at end of comment.
10248
988915ee
TT
102492019-05-08 Tom Tromey <tromey@adacore.com>
10250
10251 * dwarf2loc.c (dwarf2_evaluate_property) <PROP_ADDR_OFFSET>:
10252 Compare main types.
10253
26bfd823
TT
102542019-05-06 Tom Tromey <tom@tromey.com>
10255
10256 * common/scoped_mmap.c: Include common-defs.h.
10257 * common/scoped_mmap.h: Don't include config.h.
10258
89055eaa
TT
102592019-05-04 Tom Tromey <tom@tromey.com>
10260
10261 * aarch64-tdep.c (stack_item_t): Remove typedef and DEF_VEC.
10262 (struct aarch64_call_info): Add initializers.
10263 <si>: Now a std::vector.
10264 (pass_on_stack, aarch64_push_dummy_call): Update.
10265
5da01df5
TT
102662019-05-04 Simon Marchi <simon.marchi@efficios.com>
10267 Tom Tromey <tom@tromey.com>
10268
10269 * ppc-linux-nat.c (thread_points_p): Remove typedef and DEF_VEC.
10270 (ppc_threads): Now a std::vector. Now static.
10271 (hwdebug_find_thread_points_by_tid)
10272 (ppc_linux_nat_target::low_new_thread, ppc_linux_thread_exit):
10273 Update.
10274
fbdf05a1
TT
102752019-05-04 Tom Tromey <tom@tromey.com>
10276
10277 * arc-tdep.c (arc_tdesc_init): Return bool.
10278
06d16ec9
TT
102792019-05-04 Tom Tromey <tom@tromey.com>
10280
10281 * arm-linux-nat.c (arm_linux_nat_target::can_use_hw_breakpoint):
10282 Use gdb_assert_not_reached.
10283
9c056022
TT
102842019-05-04 Tom Tromey <tom@tromey.com>
10285
10286 * compile/compile-cplus-types.c (compile_cplus_convert_enum): Use
10287 "false".
10288
fa9c2a59
TT
102892019-05-04 Tom Tromey <tom@tromey.com>
10290
10291 * arc-tdep.c (arc_tdesc_init): Use bool.
10292
e2eb806a
TT
102932019-05-04 Tom Tromey <tom@tromey.com>
10294
10295 * stack.c (select_frame_for_mi): Use "false", not "FALSE".
10296
6fe87677
TT
102972019-05-04 Tom Tromey <tom@tromey.com>
10298
10299 * cli/cli-cmds.c (valid_command_p): Return bool.
10300
7f008c9e
TT
103012019-05-04 Tom Tromey <tom@tromey.com>
10302
10303 * cli/cli-decode.c (valid_user_defined_cmd_name_p): Return bool.
10304 * command.h (valid_user_defined_cmd_name_p): Channge return type.
10305
b6484282
RT
103062019-05-04 Raul Tambre <raul@tambre.ee>
10307
10308 * python/lib/gdb/prompt.py (_ExtendedPrompt)
10309 <before_prompt_hook, get_show_string>: Fix incorrect use of 'is'
10310 operator for comparison.
10311
af97b416
TT
103122019-05-04 Tom Tromey <tom@tromey.com>
10313
10314 * psymtab.c (psymbol_name_matches, match_partial_symbol)
10315 (lookup_partial_symbol, print_partial_symbols)
10316 (recursively_search_psymtabs, sort_pst_symbols, psymbol_hash)
10317 (psymbol_compare): Update.
10318 (add_psymbol_to_bcache): Clear the entire psymbol.
10319 (maintenance_check_psymtabs): Update.
10320 * psympriv.h (struct partial_symbol): Don't derive from
10321 general_symbol_info.
10322 <obj_section, unrelocated_address, address,
10323 set_unrelocated_address>: Update.
10324 <ginfo>: New member.
10325 * dwarf-index-write.c (write_psymbols, debug_names::insert)
10326 (debug_names::write_psymbols): Update.
10327
9d6d4be8
TV
103282019-05-04 Tom de Vries <tdevries@suse.de>
10329
10330 * contrib/cc-with-tweaks.sh: Support -n arg.
10331
66452beb
PW
103322019-05-04 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10333
10334 * corelow.c (core_target::detach): Ensure frame cache and
10335 register caches are cleared.
10336 inferior.c (exit_inferior_1): Likewise.
10337
bde09ab7
TT
103382019-05-03 Sandra Loosemore <sandra@codesourcery.com>
10339 Tom Tromey <tom@tromey.com>
10340
10341 * dictionary.c (collate_pending_symbols_by_language): Remove
10342 "struct" from foreach.
10343 * symtab.c (lookup_global_symbol_from_objfile)
10344 (lookup_symbol_in_objfile_from_linkage_name): Remove "struct" from
10345 foreach.
10346 * ser-tcp.c (net_open): Remove "struct" from foreach.
10347 * objfiles.c (objfile_relocate, objfile_rebase)
10348 (objfile_has_symbols): Remove "struct" from foreach.
10349 * minsyms.c (lookup_minimal_symbol_by_pc_section): Remove "struct"
10350 from foreach.
10351 * dwarf2read.c (handle_struct_member_die): Remove "struct" from
10352 foreach.
10353 * darwin-nat.c (thread_info_from_private_thread_info): Remove
10354 "struct" from foreach.
10355 * ada-lang.c (create_excep_cond_exprs)
10356 (ada_exception_catchpoint_cond_string): Remove "struct" from
10357 foreach.
10358
222a8d25
TT
103592019-05-03 Tom Tromey <tromey@adacore.com>
10360
10361 * ada-exp.y (convert_char_literal): Check suffix of each
10362 enumerator.
10363
fcd60b84
DP
103642019-05-03 Dilyan Palauzov <dilyan.palauzov@aegee.org>
10365
10366 PR ada/21406:
10367 * ada-exp.y (yywrap): Don't define.
10368 * ada-lex.l (%option): Add noyywrap
10369 (yywrap): Remove.
10370
5f2459c2
EZ
103712019-05-03 Eli Zaretskii <eliz@gnu.org>
10372
353ea2d1
EZ
10373 * common/common-defs.h [__MINGW32__ || __CYGWIN__]: Define
10374 _WIN32_WINNT to the XP level, unless already defined to a higher
10375 level.
10376
10377 * unittests/parse-connection-spec-selftests.c:
10378 * ser-tcp.c:
10379 * common/netstuff.c [USE_WIN32API]: Remove the _WIN32_WINNT
10380 override.
10381
5f2459c2
EZ
10382 * symfile.c (find_separate_debug_file): Remove colon from the
10383 drive spec of DOS/Windows file names of the target, so that the
10384 file name produced from DEBUGDIR and the target's directory will
10385 be valid on DOS/Windows systems.
10386
80062eb9
AB
103872019-05-02 Andrew Burgess <andrew.burgess@embecosm.com>
10388
10389 * rust-lang.c (val_print_struct): Handle printing structures
10390 containing strings.
10391
b8c05e85
TT
103922019-05-02 Tom Tromey <tromey@adacore.com>
10393
10394 * valarith.c (_initialize_valarith): Remove.
10395
4504bbde
TT
103962019-05-01 Tom Tromey <tromey@adacore.com>
10397
10398 * ada-lang.c (ada_value_primitive_field): Treat more fields as
10399 bitfields.
10400
d48e62f4
TT
104012019-05-01 Tom Tromey <tromey@adacore.com>
10402
10403 * ada-lang.c (ada_value_assign): Correctly compute starting offset
10404 for big-endian copies.
10405
15f18d14
AT
104062019-04-30 Ali Tamur <tamur@google.com>
10407 * gdb/dwarf2read.c (read_3_bytes): New declaration.
10408 (read_attribute_value): Added DW_FORM_strx1-4 cases.
10409 (read_3_bytes): New function.
10410
ab4ee614
JB
104112019-04-30 Joel Brobecker <brobecker@adacore.com>
10412
10413 * windows-nat.c (main_thread_id): Delete.
10414 (handle_output_debug_string): Replace main_thread_id by
10415 current_event.dwThreadId.
10416 (fake_create_process): Likewise.
10417 (get_windows_debug_event) <CREATE_PROCESS_DEBUG_EVENT>:
10418 Do not set main_thread_id.
10419 <LOAD_DLL_DEBUG_EVENT>: Replace main_thread_id by
10420 current_event.dwThreadId.
10421 <UNLOAD_DLL_DEBUG_EVENT>: Likewise.
10422
8ed5b76e
JB
104232019-04-30 Joel Brobecker <brobecker@adacore.com>
10424
10425 * windows-nat.c (get_windows_debug_event) <EXIT_PROCESS_DEBUG_EVENT>:
10426 Use current_event.dwThreadId instead of main_thread_id.
10427
2ff0a947
TT
104282019-04-30 Tom Tromey <tromey@adacore.com>
10429
10430 * ada-lang.c (ada_lookup_simple_minsyms): New function.
10431 (create_excep_cond_exprs): Iterate over program spaces.
10432 (ada_exception_catchpoint_cond_string): Examine all minimal
10433 symbols for exception types.
10434
a776957c
TT
104352019-04-30 Tom Tromey <tromey@adacore.com>
10436
10437 PR c++/24470:
10438 * dwarf2read.c (process_structure_scope): Handle case where type
10439 has template parameters but no symbol was created.
10440
bc68014d
AB
104412019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
10442 Chris January <chris.january@arm.com>
10443
10444 * f-typeprint.c (f_type_print_base): Print 'allocatable' type
10445 qualifier.
10446 * gdbtypes.h (TYPE_IS_ALLOCATABLE): Define.
10447
f1fdc960
AB
104482019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
10449
10450 * f-typeprint.c (f_print_type): Update rules for printing
10451 whitespace.
10452 (f_type_print_varspec_suffix): Likewise.
10453
bf7a4de1
AB
104542019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
10455 Chris January <chris.january@arm.com>
10456
10457 * f-typeprint.c (f_type_print_varspec_suffix): Handle printing
10458 function arguments.
10459
bbe75b9d
AB
104602019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
10461
10462 * f-lang.c (build_fortran_types): Change name of void type to
10463 lower case.
10464 * f-typeprint.c (f_type_print_base): Print the name of the void
10465 type, rather than a fixed string.
10466 * f-valprint.c (f_decorations): Use lower case void string.
10467
1db455a7
AB
104682019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
10469 Chris January <chris.january@arm.com>
10470
10471 * dwarf2read.c (dwarf2_init_complex_target_type): Use different
10472 types for Fortran.
10473
b6d03bb2
AB
104742019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
10475 Chris January <chris.january@arm.com>
10476 David Lecomber <david.lecomber@arm.com>
10477
10478 * f-exp.y (BINOP_INTRINSIC): New token.
10479 (exp): New parser rule handling BINOP_INTRINSIC.
10480 (f77_keywords): Add new builtin procedures.
10481 * f-lang.c (evaluate_subexp_f): Handle BINOP_MOD, UNOP_FORTRAN_CEILING,
10482 UNOP_FORTRAN_FLOOR, BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
10483 (operator_length_f): Handle UNOP_FORTRAN_CEILING,
10484 UNOP_FORTRAN_FLOOR, BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
10485 (print_unop_subexp_f): New function.
10486 (print_binop_subexp_f): New function.
10487 (print_subexp_f): Handle UNOP_FORTRAN_CEILING, UNOP_FORTRAN_FLOOR,
10488 BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
10489 (dump_subexp_body_f): Likewise.
10490 (operator_check_f): Likewise.
10491 * fortran-operator.def: Add UNOP_FORTRAN_CEILING, UNOP_FORTRAN_FLOOR,
10492 BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX
10493
83228e93
AB
104942019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
10495
10496 * gdb/expprint.c (dump_subexp_body_standard): Remove use of
10497 UNOP_KIND.
10498 * gdb/expression.h (exp_opcode): Include 'fortran-operator.def'.
10499 * gdb/f-exp.y (exp): Rename UNOP_KIND to UNOP_FORTRAN_KIND.
10500 * gdb/f-lang.c (evaluate_subexp_f): Likewise.
10501 (operator_length_f): New fuction.
10502 (print_subexp_f): New function.
10503 (op_name_f): New function.
10504 (dump_subexp_body_f): New function.
10505 (operator_check_f): New function.
10506 (exp_descriptor_f): Replace standard expression handling functions
10507 with new functions.
10508 * gdb/fortran-operator.def: New file.
10509 * gdb/parse.c (operator_length_standard): Remove use of UNOP_KIND.
10510 * gdb/std-operator.def: Remove UNOP_KIND.
10511
6fdcd7cc
AB
105122019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
10513
10514 * std-operator.def: Remove unbalanced, stray double quote
10515 character.
10516
2e62ab40
AB
105172019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
10518 Chris January <chris.january@arm.com>
10519 Daniel Everett <daniel.everett@arm.com>
10520 Nick Forrington <nick.forrington@arm.com>
10521 Richard Bunt <richard.bunt@arm.com>
10522
10523 * cp-valprint.c (cp_print_value_fields): Allow an additional level
10524 of depth when printing anonymous structs or unions.
10525 * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer):
10526 Don't print either the top-level value, or the children if the
10527 max-depth is exceeded.
10528 (ppscm_print_children): When printing the key of a map, allow one
10529 extra level of depth.
10530 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Don't
10531 print either the top-level value, or the children if the max-depth
10532 is exceeded.
10533 (print_children): When printing the key of a map, allow one extra
10534 level of depth.
10535 * python/py-value.c (valpy_format_string): Add max_depth keyword.
10536 * valprint.c: (PRINT_MAX_DEPTH_DEFAULT): Define.
10537 (user_print_options): Initialise max_depth field.
10538 (val_print_scalar_or_string_type_p): New function.
10539 (val_print): Check to see if the max depth has been reached.
10540 (val_print_check_max_depth): Define new function.
10541 (show_print_max_depth): New function.
10542 (_initialize_valprint): Add 'print max-depth' option.
10543 * valprint.h (struct value_print_options) <max_depth>: New field.
10544 (val_print_check_max_depth): Declare new function.
10545 * NEWS: Document new feature.
10546
4be290b2
AB
105472019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
10548
10549 * ada-lang.c (ada_language_defn): Initialise new field.
10550 * c-lang.c (c_is_string_type_p): New function.
10551 (c_language_defn): Initialise new field.
10552 (cplus_language_defn): Initialise new field.
10553 (asm_language_defn): Initialise new field.
10554 (minimal_language_defn): Initialise new field.
10555 * c-lang.h (c_is_string_type_p): Declare new function.
10556 * d-lang.c (d_language_defn): Initialise new field.
10557 * f-lang.c (f_is_string_type_p): New function.
10558 (f_language_defn): Initialise new field.
10559 * go-lang.c (go_is_string_type_p): New function.
10560 (go_language_defn): Initialise new field.
10561 * language.c (default_is_string_type_p): New function.
10562 (unknown_language_defn): Initialise new field.
10563 (auto_language_defn): Initialise new field.
10564 * language.h (struct language_defn) <la_is_string_type_p>: New
10565 member variable.
10566 (default_is_string_type_p): Declare new function.
10567 * m2-lang.c (m2_language_defn): Initialise new field.
10568 * objc-lang.c (objc_language_defn): Initialise new field.
10569 * opencl-lang.c (opencl_language_defn): Initialise new field.
10570 * p-lang.c (pascal_is_string_type_p): New function.
10571 (pascal_language_defn): Initialise new field.
10572 * rust-lang.c (rust_is_string_type_p): New function.
10573 (rust_language_defn): Initialise new field.
10574
721b08c6
AB
105752019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
10576
10577 * language.h (struct language_defn) <la_struct_too_deep_ellipsis>:
10578 New field.
10579 * ada-lang.c (ada_language_defn): Initialise new field.
10580 * c-lang.c (c_language_defn): Likewise.
10581 (cplus_language_defn): Likewise.
10582 (asm_language_defn): Likewise.
10583 (minimal_language_defn): Likewise.
10584 * d-lang.c (d_language_defn): Likewise.
10585 * f-lang.c (f_language_defn): Likewise.
10586 * go-lang.c (go_language_defn): Likewise.
10587 * language.c (unknown_language_defn): Likewise.
10588 (auto_language_defn): Likewise.
10589 * m2-lang.c (m2_language_defn): Likewise.
10590 * objc-lang.c (objc_language_defn): Likewise.
10591 * opencl-lang.c (opencl_language_defn): Likewise.
10592 * p-lang.c (pascal_language_defn): Likewise.
10593 * rust-lang.c (rust_language_defn): Likewise.
10594
fc913e53
AB
105952019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
10596
10597 * ada-lang.c (ada_is_character_type): Change return type to bool.
10598 (ada_is_string_type): Likewise.
10599 * ada-lang.h (ada_is_character_type): Update declaration
10600 (ada_is_string_type): Likewise.
10601
fa731fa0
PW
106022019-04-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10603
10604 Support style in 'frame|thread apply'
10605
10606 * gdbcmd.h (execute_command_to_string): New term_out parameter.
10607 * record.c (record_start, record_stop): Update callers of
10608 execute_command_to_string with false.
10609 * guile/guile.c (gdbscm_execute_gdb_command): Likewise.
10610 * ui-file.h (class ui_file): New term_out and can_emit_style_escape
10611 methods.
10612 (class string_file): New constructor with term_out parameter.
10613 Override methods term_out and can_emit_style_escape. New member
10614 term_out.
10615 (class stdio_file): Override can_emit_style_escape.
10616 (class tee_file): Override term_out and can_emit_style_escape.
10617 * utils.h (can_emit_style_escape): Remove.
10618 * utils.c (can_emit_style_escape): Likewise.
10619 Update all callers of can_emit_style_escape (SOMESTREAM) to
10620 SOMESTREAM->can_emit_style_escape.
10621 * source-cache.c (source_cache::get_source_lines): Likewise.
10622 * stack.c (frame_apply_command_count): Call execute_command_to_string
10623 passing the term_out characteristic of the current gdb_stdout.
10624 * thread.c (thr_try_catch_cmd): Likewise.
10625 * top.c (execute_command_to_string): pass term_out parameter
10626 to construct the string_file for the command output.
10627 * ui-file.c (term_cli_styling): New function (most code moved
10628 from utils.c can_emit_style_escape).
10629 (string_file::string_file, string_file::can_emit_style_escape,
10630 stdio_file::can_emit_style_escape, tee_file::term_out,
10631 tee_file::can_emit_style_escape): New functions.
10632
136afab8
PW
106332019-04-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10634
10635 * NEWS: Mention the new set|show may-call-functions.
10636 * infcall.c (may_call_functions_p): New variable.
10637 (show_may_call_functions_p): New function.
10638 (call_function_by_hand_dummy): Throws an error if not
10639 may-call-functions.
10640 (_initialize_infcall): Call add_setshow_boolean_cmd for
10641 may-call-functions.
10642
725cbb63
KS
106432019-04-25 Keith Seitz <keiths@redhat.com>
10644
10645 PR c++/24367
10646 * cp-support.c (inspect_type): Don't attempt substitutions
10647 of symbol with the same name.
10648
3d1cbb78
TT
106492019-04-25 Tom Tromey <tromey@adacore.com>
10650
10651 PR gdb/24475:
10652 * event-top.c (gdb_rl_callback_handler): Make "gdb_rl_expt"
10653 static.
10654
94aeb44b
TT
106552019-04-25 Tom Tromey <tromey@adacore.com>
10656
10657 * xml-support.c (struct gdb_xml_parser) <set_error>: Take an
10658 rvalue reference.
10659 (gdb_xml_start_element_wrapper, gdb_xml_end_element_wrapper)
10660 (gdb_xml_parser::parse): Use std::move.
10661 * python/python-internal.h (gdbpy_convert_exception): Take a const
10662 reference.
10663 * python/py-value.c (valpy_getitem, valpy_nonzero): Use
10664 std::move.
10665 * python/py-utils.c (gdbpy_convert_exception): Take a const
10666 reference.
10667 * python/py-inferior.c (infpy_write_memory, infpy_search_memory):
10668 Use std::move.
10669 * python/py-breakpoint.c (bppy_set_condition, bppy_set_commands):
10670 Use std::move.
10671 * mi/mi-main.c (mi_print_exception): Take a const reference.
10672 * main.c (handle_command_errors): Take a const reference.
10673 * linespec.c (parse_linespec): Use std::move.
10674 * infcall.c (run_inferior_call): Use std::move.
10675 (call_function_by_hand_dummy): Use std::move.
10676 * exec.c (try_open_exec_file): Use std::move.
10677 * exceptions.h (exception_print, exception_fprintf)
10678 (exception_print_same): Update.
10679 * exceptions.c (print_exception, exception_print)
10680 (exception_fprintf, exception_print_same): Change parameters to
10681 const reference.
10682 * event-top.c (gdb_rl_callback_read_char_wrapper): Update.
10683 * common/new-op.c: Use std::move.
10684 * common/common-exceptions.h (struct gdb_exception): Add move
10685 constructor.
10686 (struct gdb_exception_error, struct gdb_exception_quit, struct
10687 gdb_quit_bad_alloc): Change constructor to move constructor.
10688 (throw_exception): Change parameter to rvalue reference.
10689 * common/common-exceptions.c (throw_exception): Take rvalue
10690 reference.
10691 * cli/cli-interp.c (safe_execute_command): Use std::move.
10692 * breakpoint.c (insert_bp_location, location_to_sals): Use
10693 std::move.
10694
680d7fd5
TT
106952019-04-25 Tom Tromey <tromey@adacore.com>
10696
10697 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception)
10698 (gdbscm_throw_gdb_exception): Take a gdbscm_gdb_exception.
10699 * guile/scm-block.c, guile/scm-breakpoint.c, guile/scm-cmd.c,
10700 guile/scm-disasm.c, guile/scm-frame.c, guile/scm-lazy-string.c,
10701 guile/scm-math.c, guile/scm-param.c, guile/scm-ports.c,
10702 guile/scm-symbol.c, guile/scm-symtab.c, guile/scm-type.c,
10703 guile/scm-value.c: Use unpack.
10704 * guile/guile-internal.h (gdbscm_scm_from_gdb_exception): Take a
10705 gdbscm_gdb_exception.
10706 (gdbscm_throw_gdb_exception): Likewise.
10707 (struct gdbscm_gdb_exception): New.
10708 (unpack): New function.
10709 (gdbscm_wrap): Use unpack.
10710
c6fdd8b2
TT
107112019-04-25 Tom Tromey <tromey@adacore.com>
10712
10713 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept)
10714 (gdb_rl_callback_handler): Use std::move.
10715 * common/common-exceptions.h (struct gdb_exception): Add move
10716 assignment operator.
10717 (throw_exception_sjlj): Change "exception" to const reference.
10718 * common/common-exceptions.c (exceptions_state_mc_catch): Update.
10719 (throw_exception_sjlj): Change "exception" to const reference.
10720
cc06b668
TT
107212019-04-25 Tom Tromey <tromey@adacore.com>
10722
10723 * xml-support.c (gdb_xml_parser::gdb_xml_parser): Update.
10724 * python/py-value.c (valpy_getitem, valpy_nonzero): Update.
10725 * python/py-inferior.c (infpy_write_memory, infpy_search_memory):
10726 Update.
10727 * python/py-breakpoint.c (bppy_set_condition, bppy_set_commands):
10728 Update.
10729 * mi/mi-interp.c (mi_interp::exec): Update.
10730 * linespec.c (parse_linespec): Update.
10731 * infcall.c (run_inferior_call): Update.
10732 * guile/scm-value.c (gdbscm_value_to_lazy_string): Update.
10733 * guile/scm-symbol.c (gdbscm_lookup_symbol)
10734 (gdbscm_lookup_global_symbol): Update.
10735 * guile/scm-param.c (gdbscm_parameter_value): Update.
10736 * guile/scm-frame.c (gdbscm_frame_read_register)
10737 (gdbscm_frame_read_var): Update.
10738 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Update.
10739 * exec.c (try_open_exec_file): Update.
10740 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept)
10741 (gdb_rl_callback_handler): Update.
10742 * common/common-exceptions.h (exception_none): Don't declare.
10743 * common/common-exceptions.c (exception_none): Don't define.
10744 (struct catcher) <exception>: Update.
10745 * cli/cli-interp.c (safe_execute_command): Update.
10746 * breakpoint.c (insert_bp_location, location_to_sals): Update.
10747
cf532bd1
AT
107482019-04-25 Ali Tamur <tamur@google.com>
10749
10750 * dwarf2read.c (skip_one_die): Add DW_FORM_strx.
10751 (read_attribute_value): Likewise.
10752 (dwarf2_read_addr_index): Update comment.
10753 (read_str_index): Add DW_FORM_strx.
10754 (dwarf2_string_attr): Likewise.
10755 (dwarf2_const_value_attr): Likewise.
10756 (dump_die_shallow): Likewise.
10757 (dwarf2_fetch_constant_bytes): Likewise.
10758 (skip_form_bytes): Likewise.
10759 * testsuite/lib/dwarf.exp (_handle_DW_FORM): Add DW_FORM_strx.
10760
82433e3e
SDJ
107612019-04-25 Sergio Durigan Junior <sergiodj@redhat.com>
10762
10763 PR corefiles/11608
10764 PR corefiles/18187
10765 * linux-tdep.c (dump_mapping_p): Add new parameters ADDR and
10766 OFFSET. Verify if current mapping contains an ELF header.
10767 (linux_find_memory_regions_full): Adjust call to
10768 dump_mapping_p.
10769
723adb65
SL
107702019-04-25 Sandra Loosemore <sandra@codesourcery.com>
10771 Kang Li <kanglictf@gmail.com>
10772
10773 PR gdb/21600
10774
10775 * dwarf2-frame.c (read_initial_length): Be consistent about using
10776 unsigned representation of length.
10777 (decode_frame_entry_1): Likewise. Check for wraparound of
10778 end pointer as well as buffer overflow.
10779
596179f7
SDJ
107802019-04-24 Sergio Durigan Junior <sergiodj@redhat.com>
10781
10782 * aarch64-tdep.c (aarch64_gdbarch_init): Use "pulongest" to print
10783 "vq".
10784
a59240a4
TT
107852019-04-24 Tom Tromey <tromey@adacore.com>
10786
10787 * amd64-tdep.c (amd64_has_unaligned_fields): Ignore bitfields.
10788
f872fdbb
AB
107892019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10790
10791 * s12z-tdep.c (s12z_unwind_pc): Delete.
10792 (s12z_unwind_sp): Delete.
10793 (s12z_gdbarch_init): Don't register deleted functions with
10794 gdbarch.
10795
b614e6f3
AB
107962019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10797
10798 * rl78-tdep.c (rl78_unwind_sp): Delete.
10799 (rl78_gdbarch_init): Don't register deleted function with gdbarch.
10800
14faed38
AB
108012019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10802
10803 * xstormy16-tdep.c (xstormy16_unwind_sp): Delete.
10804 (xstormy16_unwind_pc): Delete.
10805 (xstormy16_dummy_id): Delete.
10806 (xstormy16_gdbarch_init): Don't register deleted functions with
10807 gdbarch.
10808
541aad8a
AB
108092019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10810
10811 * vax-tdep.c (vax_unwind_pc): Delete.
10812 (vax_gdbarch_init): Don't register deleted function with gdbarch.
10813
29222070
AB
108142019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10815
10816 * v850-tdep.c (v850_unwind_sp): Delete.
10817 (v850_unwind_pc): Delete.
10818 (v850_dummy_id): Delete.
10819 (v850_gdbarch_init): Don't register deleted functions with
10820 gdbarch.
10821
0f534d76
AB
108222019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10823
10824 * tilegx-tdep.c (tilegx_unwind_sp): Delete.
10825 (tilegx_unwind_pc): Delete.
10826 (tilegx_unwind_dummy_id): Delete.
10827 (tilegx_gdbarch_init): Don't register deleted functions with
10828 gdbarch.
10829
1ba7b7f9
AB
108302019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10831
10832 * tic6x-tdep.c (tic6x_unwind_sp): Delete.
10833 (tic6x_dummy_id): Delete.
10834 (tic6x_gdbarch_init): Don't register deleted functions with
10835 gdbarch.
10836
d31f262c
AB
108372019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10838
10839 * sparc-tdep.c (sparc_unwind_pc): Delete.
10840 (sparc32_gdbarch_init): Don't register deleted function with
10841 gdbarch.
10842
6d14d64d
AB
108432019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10844
10845 * sh-tdep.c (sh_unwind_sp): Delete.
10846 (sh_unwind_pc): Delete.
10847 (sh_dummy_id): Delete.
10848 (sh_gdbarch_init): Don't register deleted functions with
10849 gdbarch.
10850
a40dde9d
AB
108512019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10852
10853 * score-tdep.c (score_unwind_sp): Delete.
10854 (score_unwind_pc): Delete.
10855 (score_dummy_id): Delete.
10856 (score_gdbarch_init): Don't register deleted functions with
10857 gdbarch.
10858
47c47d69
AB
108592019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10860
10861 * rx-tdep.c (rx_unwind_pc): Delete.
10862 (rx_unwind_sp): Delete.
10863 (rx_dummy_id): Delete.
10864 (rx_gdbarch_init): Don't register deleted functions with
10865 gdbarch. Update comment.
10866
833a4480
AB
108672019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10868
10869 * rs6000-tdep.c (rs6000_unwind_pc): Delete.
10870 (rs6000_dummy_id): Delete.
10871 (rs6000_gdbarch_init): Don't register deleted functions with
10872 gdbarch.
10873
3f2cef49
AB
108742019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10875
10876 * or1k-tdep.c (or1k_dummy_id): Delete.
10877 (or1k_gdbarch_init): Don't register deleted function with gdbarch.
10878
96acf884
AB
108792019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10880
10881 * nios2-tdep.c (nios2_dummy_id): Delete.
10882 (nios2_unwind_sp): Delete.
10883 (nios2_gdbarch_init): Don't register deleted functions with
10884 gdbarch.
10885
ca0ab0aa
AB
108862019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10887
10888 * nds32-tdep.c (nds32_dummy_id): Delete.
10889 (nds32_unwind_pc): Delete.
10890 (nds32_unwind_sp): Delete.
10891 (nds32_gdbarch_init): Don't register deleted functions with
10892 gdbarch.
10893
c8259044
AB
108942019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10895
10896 * msp430-tdep.c (msp430_unwind_pc): Delete.
10897 (msp430_unwind_sp): Delete.
10898 (msp430_dummy_id): Delete.
10899 (msp430_gdbarch_init): Don't register deleted functions with
10900 gdbarch.
10901
27f113c8
AB
109022019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10903
10904 * moxie-tdep.c (moxie_unwind_sp): Delete.
10905 (moxie_unwind_pc): Delete.
10906 (moxie_dummy_id): Delete.
10907 (moxie_gdbarch_init): Don't register deleted functions with
10908 gdbarch.
10909
aee6c3cd
AB
109102019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10911
10912 * mn10300-tdep.c (mn10300_dummy_id): Delete.
10913 (mn10300_unwind_pc): Delete.
10914 (mn10300_unwind_sp): Delete.
10915 (mn10300_push_dummy_call): Use gdbarch_unwind_sp not
10916 mn10300_unwind_sp.
10917 (mn10300_frame_unwind_init): Don't register deleted functions with
10918 gdbarch.
10919
8e2b5aea
AB
109202019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10921
10922 * mep-tdep.c (mep_unwind_pc): Delete.
10923 (mep_unwind_sp): Delete.
10924 (mep_dummy_id): Delete.
10925 (mep_gdbarch_init): Don't register deleted functions with
10926 gdbarch.
10927
43cf3ede
AB
109282019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10929
10930 * m68hc11-tdep.c (m68hc11_unwind_pc): Delete.
10931 (m68hc11_unwind_sp): Delete.
10932 (m68hc11_gdbarch_init): Don't register deleted functions with
10933 gdbarch.
10934
5e79b7bb
AB
109352019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10936
10937 * m32r-tdep.c (m32r_unwind_sp): Delete.
10938 (m32r_unwind_pc): Delete.
10939 (m32r_dummy_id): Delete.
10940 (m32r_gdbarch_init): Don't register deleted functions with
10941 gdbarch.
10942
89b268d8
AB
109432019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10944
10945 * m32c-tdep.c (m32c_unwind_pc): Delete.
10946 (m32c_unwind_sp): Delete.
10947 (m32c_dummy_id): Delete.
10948 (m32c_gdbarch_init): Don't register deleted functions with
10949 gdbarch.
10950
946c28d2
AB
109512019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10952
10953 * gdb/lm32-tdep.c (lm32_unwind_sp): Delete.
10954 (lm32_unwind_pc): Delete.
10955 (lm32_dummy_id): Delete.
10956 (lm32_gdbarch_init): Don't register deleted functions with
10957 gdbarch.
10958
bf12844a
AB
109592019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10960
10961 * gdb/iq2000-tdep.c (iq2000_unwind_sp): Delete.
10962 (iq2000_unwind_pc): Delete.
10963 (iq2000_dummy_id): Delete.
10964 (iq2000_gdbarch_init): Don't register deleted functions with
10965 gdbarch.
10966
ecbc06d2
AB
109672019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10968
10969 * nds32-tdep.c (nds32_type_align): Delete.
10970 (nds32_push_dummy_call): Use type_align instead.
10971
030197b4
AB
109722019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10973
10974 * arm-tdep.c (arm_type_align): Only handle vector override case.
10975 (arm_push_dummy_call): Use type_align.
10976 (arm_gdbarch_init): Register arm_type_align gdbarch function.
10977
b907456c
AB
109782019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10979
10980 * aarch64-tdep.c (aarch64_type_align): Only handle vector override
10981 case.
10982 (pass_on_stack): Use type_align.
10983 (aarch64_gdbarch_init): Register aarch64_type_align gdbarch
10984 function.
10985
9e97ba43
TT
109862019-04-23 Tom Tromey <tromey@adacore.com>
10987
10988 * dwarf2read.c (line_header::file_name_at): Remove unused
10989 overload.
10990
6892f601
TV
109912019-04-23 Tom de Vries <tdevries@suse.de>
10992
10993 PR gdb/24438
10994 * contrib/cc-with-tweaks.sh: Remove superfluous .alt file after dwz
10995 invocation.
10996
336d760d
AT
10997
109982019-03-27 Ali Tamur <tamur@google.com>
10999
11000 * dwarf2-frame.c(dwarf_expr_executor::get_addr_index): Update comment
11001 * dwarf2expr.c(dwarf_expr_context::execute_stack_op): Add DW_OP_addrx
11002 * dwarf2expr.h(dwarf_expr_context::offset): Update comment
11003 (dwarf_expr_context::get_addr_index): Likewise
11004 * dwarf2loc.c(dwarf_evaluate_loc_desc::get_addr_index): Likewise
11005 (symbol_needs_eval_context::get_addr_index): Likewise
11006 (disassemble_dwarf_expression): Add DW_OP_addrx
11007 * dwarf2read.c(attr_value_as_address): Add DW_FORM_addrx
11008 (read_cutu_die_from_dwo): Update comment
11009 (skip_one_die): Add DW_FORM_addrx
11010 (read_attribute_value): Likewise
11011 (var_decode_location): Add DW_OP_addrx
11012 (dwarf2_const_value_attr): Add DW_FORM_addrx
11013 (dump_die_shallow): Likewise
11014 (dwarf2_fetch_constant_bytes): Likewise
11015 (decode_locdesc): Add DW_OP_addrx
11016 (skip_form_bytes): Add DW_FORM_addrx
11017
ad9d13f8
AT
110182019-04-22 Ali Tamur <tamur@google.com>
11019
11020 * MAINTAINERS (Write After Approval): Add self.
11021
d70cc3ba
SM
110222019-04-22 Simon Marchi <simon.marchi@efficios.com>
11023
11024 * solib-svr4.c (get_svr4_info): Add pspace parameter.
11025 (svr4_keep_data_in_core): Pass current_program_space to get_svr4_info.
11026 (open_symbol_file_object): Likewise.
11027 (svr4_default_sos): Add info parameter.
11028 (svr4_read_so_list): Likewise.
11029 (svr4_current_sos_direct): Adjust functions calls to pass down
11030 info.
11031 (svr4_current_sos_1): Add info parameter.
11032 (svr4_current_sos): Call get_svr4_info, pass info down to
11033 svr4_current_sos_1.
11034 (svr4_fetch_objfile_link_map): Pass objfile->pspace to
11035 get_svr4_info.
11036 (svr4_in_dynsym_resolve_code): Pass current_program_space to
11037 get_svr4_info.
11038 (probes_table_htab_remove_objfile_probes): Pass objfile->pspace
11039 to get_svr4_info.
11040 (probes_table_remove_objfile_probes): Likewise.
11041 (register_solib_event_probe): Add info parameter.
11042 (solist_update_incremental): Pass info parameter down to
11043 svr4_read_so_list.
11044 (disable_probes_interface): Add info parameter.
11045 (svr4_handle_solib_event): Pass current_program_space to
11046 get_svr4_info. Adjust disable_probes_interface cleanup.
11047 (svr4_create_probe_breakpoints): Add info parameter, pass it
11048 down to register_solib_event_probe.
11049 (svr4_create_solib_event_breakpoints): Add info parameter,
11050 pass it down to svr4_create_probe_breakpoints.
11051 (enable_break): Pass info down to
11052 svr4_create_solib_event_breakpoints.
11053 (svr4_solib_create_inferior_hook): Pass current_program_space to
11054 get_svr4_info.
11055 (svr4_clear_solib): Likewise.
11056
7905fc35
PA
110572019-04-22 Pedro Alves <palves@redhat.com>
11058
11059 * solib-svr4.c (svr4_free_objfile_observer): New.
11060 (probe_and_action::objfile): New field.
11061 (probes_table_htab_remove_objfile_probes)
11062 (probes_table_remove_objfile_probes): New functions.
11063 (register_solib_event_probe): Add 'objfile' parameter. Store it
11064 in the new probe_and_action. Don't store the probe in 'lookup'.
11065 (svr4_create_probe_breakpoints): Pass objfile to
11066 register_solib_event_probe.
11067 (_initialize_svr4_solib): Register a free_objfile observer.
11068
fb881986
TT
110692019-04-19 Tom Tromey <tom@tromey.com>
11070
11071 * common/queue.h: Remove.
11072
8732db6c
TT
110732019-04-19 Tom Tromey <tom@tromey.com>
11074
11075 * event-loop.c: Don't include "common/queue.h".
11076
97dfbadd
TT
110772019-04-19 Tom Tromey <tom@tromey.com>
11078
11079 * remote.c (remote_target): Use delete.
11080 * remote-notif.h: Include <list>, not "common/queue.h".
11081 (notif_client_p): Remove typedef.
11082 (remote_notif_state): Add constructor, destructor, initializer.
11083 <notif_queue>: Now a std::list.
11084 (remote_notif_state_xfree): Don't declare.
11085 * remote-notif.c (remote_notif_process, handle_notification)
11086 (remote_notif_state_allocate): Update.
11087 (~remote_notif_state): Rename from remote_notif_state_xfree.
11088
cf250e36
TT
110892019-04-19 Tom Tromey <tom@tromey.com>
11090
11091 * symfile.c (reread_symbols): Update.
11092 * objfiles.c (objfile_register_static_link)
11093 (objfile_lookup_static_link): Update
11094 (~objfile) Don't delete static_links.
11095 * objfiles.h (struct objfile) <static_links>: Now an htab_up.
11096
61f4b350
TT
110972019-04-19 Tom Tromey <tom@tromey.com>
11098
11099 * type-stack.h (struct type_stack) <insert>: Constify string.
11100 * type-stack.c (type_stack::insert): Constify string.
11101 * gdbtypes.h (lookup_template_type): Update.
11102 (address_space_name_to_int): Update.
11103 * gdbtypes.c (address_space_name_to_int): Make space_identifier
11104 const.
11105 (lookup_template_type): Make name const.
11106 * c-exp.y: Update rules.
11107 (lex_one_token, classify_name, classify_inner_name)
11108 (c_print_token): Update.
11109 * p-exp.y: Update rules.
11110 (yylex): Update.
11111 * f-exp.y: Update rules.
11112 (yylex): Update.
11113 * d-exp.y: Update rules.
11114 (lex_one_token, classify_name, classify_inner_name): Update.
11115 * parse.c (write_dollar_variable, copy_name): Return std::string.
11116 * parser-defs.h (copy_name): Change return type.
11117 * m2-exp.y: Update rules.
11118 (yylex): Update.
11119 * go-exp.y (lex_one_token): Update.
11120 Update rules.
11121 (classify_unsafe_function, classify_packaged_name)
11122 (classify_name, yylex): Update.
11123
189b8c2e
ST
111242019-04-19 Sergei Trofimovich <siarheit@google.com>
11125
11126 * configure.ac: add --enable-source-highlight switch.
11127 * configure: Regenerate.
11128 * top.c (print_gdb_version): plumb --enable-source-highlight
11129 status to "show configuration".
11130
8ecb59f8
TT
111312019-04-19 Tom Tromey <tromey@adacore.com>
11132
11133 * ada-lang.c (ada_is_variant_part, ada_to_fixed_type_1):
11134 Check ADA_TYPE_P.
11135 (empty_record, ada_template_to_fixed_record_type_1)
11136 (template_to_static_fixed_type)
11137 (to_record_with_fixed_variant_part): Use INIT_NONE_SPECIFIC.
11138 * cp-abi.c (value_rtti_type): Check HAVE_CPLUS_STRUCT.
11139 * gdbtypes.h (INIT_NONE_SPECIFIC, ADA_TYPE_P): New
11140 macros.
11141
62160ec9
TT
111422019-04-19 Ilya Yu. Malakhov <malakhov@mcst.ru>
11143
11144 PR symtab/24423:
11145 * source.c (print_source_lines_base): Advance "iter" when a
11146 control character is seen.
11147
f2ae8bc8
PW
111482019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11149
11150 * inferior.h (struct infcall_suspend_state_deleter):
11151 Catch exception in destructor to avoid crash.
11152
d563b953
PW
111532019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11154
11155 * cli/cli-cmds.c (_initialize_cli_cmds): Move "shell" "!" alias
11156 close to the add_com "shell".
11157
dc34c897
TT
111582019-04-18 Tom Tromey <tromey@adacore.com>
11159
11160 * process-stratum-target.h (class process_stratum_target)
11161 <stratum>: Add "final".
11162
a12e5744
TT
111632019-04-17 Tom Tromey <tromey@adacore.com>
11164
11165 * dwarf2read.c (dwarf2_init_complex_target_type): Check "tt"
11166 against nullptr before use.
11167
a7e559cc
AH
111682019-04-17 Alan Hayward <alan.hayward@arm.com>
11169
11170 * nat/linux-waitpid.c (linux_debug): Call debug_vprintf.
11171
c01660c6
AB
111722019-04-17 Jim Wilson <jimw@sifive.com>
11173 Andrew Burgess <andrew.burgess@embecosm.com>
11174
11175 * riscv-tdep.c (riscv_breakpoint_kind_from_pc): Hanndle case where
11176 code read might fail, assume 4-byte breakpoint in that case.
11177
4aa866af
LS
111782019-04-15 Leszek Swirski <leszeks@google.com>
11179
11180 * amd64-tdep.c (amd64_classify_aggregate): Use cp_pass_by_reference
11181 rather than a hand-rolled POD check when checking for forced MEMORY
11182 classification.
11183
48574d91
AH
111842019-04-15 Alan Hayward <alan.hayward@arm.com>
11185
11186 * aarch64-linux-nat.c (store_sveregs_to_thread): Set vector length.
11187 * nat/aarch64-sve-linux-ptrace.c (aarch64_sve_set_vq): New
11188 function.
11189 (aarch64_sve_regs_copy_to_reg_buf): Remove VG checks.
11190 (aarch64_sve_regs_copy_from_reg_buf): Likewise.
11191 * nat/aarch64-sve-linux-ptrace.h (aarch64_sve_set_vq): New
11192 declaration.
11193
4da037ef
AH
111942019-04-15 Alan Hayward <alan.hayward@arm.com>
11195
11196 * aarch64-linux-nat.c
11197 (aarch64_linux_nat_target::thread_architecture): Add override.
11198 * aarch64-tdep.c (aarch64_gdbarch_init): Ensure different tdesc for
11199 each VQ.
11200
ccb8d7e8
AH
112012019-04-15 Alan Hayward <alan.hayward@arm.com>
11202
11203 * aarch64-tdep.c (aarch64_gdbarch_init): Move gdbarch lookup.
11204
35add35e
AB
112052019-04-13 Andrew Burgess <andrew.burgess@embecosm.com>
11206
11207 * dwarf2read.c (dwarf2_init_complex_target_type): Handle complex
11208 target types of size 96-bits, add some additional comments, and
11209 check that the builtin type we found was the correct size.
11210
51196bbc
EZ
112112019-04-12 Eli Zaretskii <eliz@gnu.org>
11212
11213 * utils.c (prompt_for_continue): Don't restore the styling at the
11214 end, as applied_style has the wrong value. This fixes styling in
11215 long lists of file names that are interrupted by the "Continue?"
11216 prompt.
11217
62253a61
AB
112182019-04-12 Andrew Burgess <andrew.burgess@embecosm.com>
11219
11220 * ada-lang.c (ada_language_defn): Remove use of LANG_MAGIC.
11221 * c-lang.c (c_language_defn): Likewise.
11222 (cplus_language_defn): Likewise.
11223 (asm_language_defn): Likewise.
11224 (minimal_language_defn): Likewise.
11225 * d-lang.c (d_language_defn): Likewise.
11226 * f-lang.c (f_language_defn): Likewise.
11227 * go-lang.c (go_language_defn): Likewise.
11228 * language.c (unknown_language_defn): Likewise.
11229 (auto_language_defn): Likewise.
11230 * language.h (struct language_defn): Remove la_magic field.
11231 (LANG_MAGIC): Delete.
11232 * m2-lang.c (m2_language_defn): Remove use of LANG_MAGIC.
11233 * objc-lang.c (objc_language_defn): Likewise.
11234 * opencl-lang.c (opencl_language_defn): Likewise.
11235 * p-lang.c (pascal_language_defn): Likewise.
11236 * rust-lang.c (rust_language_defn): Likewise.
11237
a9158a86
AB
112382019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
11239
11240 * riscv-tdep.c (riscv_type_align): New function.
11241 (riscv_type_alignment): Delete.
11242 (riscv_arg_location): Use 'type_align'.
11243 (riscv_gdbarch_init): Register riscv_type_align gdbarch function.
11244
41077b66
AB
112452019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
11246
11247 * gdbtypes.c (type_align): A struct with no non-static fields also
11248 has alignment of 1.
11249
9f0272f8
AB
112502019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
11251
11252 * riscv-tdep.c (riscv_call_arg_complex_float): Fix offset of first
11253 component to 0.
11254 (riscv_struct_info::riscv_struct_info): Initialise m_offsets
11255 member.
11256 (riscv_struct_info::analyse): New implementation using new
11257 analyse_inner member function.
11258 (riscv_struct_info::field_offset): New member function.
11259 (riscv_struct_info::m_offsets): New member variable.
11260 (riscv_struct_info::analyse_inner): New private member function,
11261 takes the old implementation of riscv_struct_info::analyse but
11262 extended to track field offsets.
11263 (riscv_call_arg_struct): Update the struct folding special cases
11264 to handle cases where empty C++ structs, which are non-zero
11265 length, are found.
11266 (riscv_arg_location): Initialise the length of each location, a
11267 non-zero length now indicates the location is in use.
11268 (riscv_push_dummy_call): Allow for the first location having a
11269 non-zero offset when setting up arguments.
11270 (riscv_return_value): Likewise, but for return values.
11271
02cf60c7
TT
112722019-04-11 Tom Tromey <tromey@adacore.com>
11273
11274 * utils.c (internal_vproblem): Make "msg" const.
11275
68811f8f
AH
112762019-04-11 Alan Hayward <alan.hayward@arm.com>
11277
11278 * aarch64-tdep.c (aarch64_analyze_prologue_test): Reset saved regs.
11279 * trad-frame.c (trad_frame_reset_saved_regs): New function.
11280 (trad_frame_alloc_saved_regs): Call trad_frame_reset_saved_regs.
11281 * trad-frame.h (trad_frame_reset_saved_regs): New declaration.
11282
3f52fdbc
KB
112832019-04-10 Kevin Buettner <kevinb@redhat.com>
11284
11285 * amd64-linux-nat.c (amd64_linux_collect_native_gregset): New
11286 function.
11287 (fill_gregset): Call amd64_linux_collect_native_gregset instead
11288 of amd64_collect_native_gregset.
11289 (amd64_linux_nat_target::store_registers): Likewise.
11290
e9ad22ee
TT
112912019-04-10 Tom Tromey <tom@tromey.com>
11292
11293 * symtab.c (lookup_global_symbol_from_objfile)
11294 (lookup_symbol_in_objfile_from_linkage_name): Use the iterator.
11295 * objfiles.h (class separate_debug_iterator): New.
11296 (class separate_debug_range): New.
11297 (struct objfile) <separate_debug_objfiles>: New method.
11298 (objfile_separate_debug_iterate): Don't declare.
11299 * objfiles.c (separate_debug_iterator::operator++): Rename from
11300 objfile_separate_debug_iterate.
11301 (objfile_relocate, objfile_rebase, objfile_has_symbols): Use the
11302 iterator.
11303 * minsyms.c (lookup_minimal_symbol_by_pc_section): Use the
11304 iterator.
11305
ee371134
TT
113062019-04-10 Tom Tromey <tom@tromey.com>
11307
11308 * symfile.c (reread_symbols): Remove old comment.
11309 * objfiles.c (free_all_objfiles): Fix a typo.
11310
bf227d61
TT
113112019-04-10 Tom Tromey <tom@tromey.com>
11312
11313 * ia64-tdep.c (ia64_get_dyn_info_list): Use foreach.
11314 * minsyms.c (lookup_minimal_symbol): Use foreach.
11315 (lookup_minimal_symbol_text, lookup_minimal_symbol_by_pc_name)
11316 (lookup_minimal_symbol_solib_trampoline): Likewise.
11317 * symfile.c (reread_symbols): Use foreach.
11318
8dc433a0
TT
113192019-04-09 Ivan Begert <ivanbegert@gmail.com>
11320 Tom Tromey <tromey@adacore.com>
11321
11322 PR rust/24414:
11323 * rust-exp.y (rust_parser::lex_number): Use strtoulst.
11324 (rust_lex_int_test): Change "value" to be LONGEST.
11325 (rust_lex_tests): Add test for long integer literal.
11326
9ab8741a
TT
113272019-04-09 Tom Tromey <tromey@adacore.com>
11328
11329 * remote.c (remote_target::remote_add_inferior): Change fake_pid_p
11330 to bool.
11331 (extended_remote_target::attach): Update.
11332 (remote_target::remote_notice_new_inferior): Update.
11333 (remote_target::add_current_inferior_and_thread): Update.
11334 * inferior.c (exit_inferior_1): Use "false".
11335 * corelow.c (add_to_thread_list): Make fake_pid_p bool.
11336
e242fd12
SM
113372019-04-09 Simon Marchi <simon.marchi@efficios.com>
11338
9ca1957f 11339 * infcmd.c (run_command_1): Pass -qualified to tbreak when using
e242fd12
SM
11340 the "start" command.
11341
2b0c8b01
KB
113422019-04-08 Kevin Buettner <kevinb@redhat.com>
11343
11344 * python/py-inferior.c (infpy_thread_from_thread_handle):
11345 Adjust comments to reflect renaming of thread_from_thread_handle
11346 to thread_from_handle. Adjust keywords. Fix type error message.
11347 (inferior_object_methods): Add thread_from_handle. Retain
11348 thread_from_thread_handle, but mark it as deprecated.
11349
50a82723
KB
113502019-04-08 Kevin Buettner <kevinb@redhat.com>
11351
11352 * gdbthread.h (find_thread_by_handle): Revise declaration.
11353 * thread.c (find_thread_by_handle): Likewise. Adjust
11354 implementation too.
11355 * python/py-inferior.c (infpy_thread_from_thread_handle): Add
11356 support for buffer objects as handles.
11357
cf63b016
KB
113582019-04-08 Kevin Buettner <kevinb@redhat.com>
11359
11360 * python/py-infthread.c (thpy_thread_handle): New function.
11361 (thread_object_methods): Register thpy_thread_handle.
11362
3d6c6204
KB
113632019-04-08 Kevin Buettner <kevinb@redhat.com>
11364
11365 * gdbthread.h (thread_to_thread_handle): Declare.
11366 * thread.c (gdbtypes.h): Include.
11367 (thread_to_thread_handle): New function.
11368
11369 * target.h (struct target_ops): Add thread_info_to_thread_handle.
11370 (target_thread_info_to_thread_handle): Declare.
11371 * target.c (target_thread_info_to_thread_handle): New function.
11372 * target-debug.h (target_debug_print_gdb_byte_vector): Define.
11373 * target-delegates.c: Regenerate.
11374
11375 * linux-thread-db.c (class thread_db_target): Add method
11376 thread_info_to_thread_handle.
11377 (thread_db_target::thread_info_to_thread_handle): Define.
11378 * remote.c (class remote_target): Add new method
11379 thread_info_to_thread_handle.
11380 (remote_target::thread_info_to_thread_handle): Define.
11381
56be6ea8
PA
113822019-04-08 Pedro Alves <palves@redhat.com>
11383
11384 * common/common-exceptions.c (throw_exception): Don't create
11385 named object to throw; throw directly.
11386 (throw_it): Likewise. Don't initialize gdb_exception::message
11387 here, with new; pass FMT and AP to the ctor instead.
11388 * common/common-exceptions.h: Include <string>.
11389 (gdb_exception::gdb_exception(enum return_reason, enum errors,
11390 const char *, va_list)): New ctor. Use std::make_shared.
11391 (gdb_exception_error::gdb_exception_error(enum return_reason, enum
11392 errors)): Delete.
11393 (gdb_exception_error::gdb_exception_error(enum errors, const char
11394 *, va_list)): New.
11395 (gdb_exception_error::gdb_exception_error(const gdb_exception &)):
11396 Add assertion.
11397 (gdb_exception_quit::gdb_exception_quit(enum return_reason, enum
11398 errors)): Delete.
11399 (gdb_exception_quit::gdb_exception_quit(const char *, va_list)): New.
11400 (gdb_exception_quit::gdb_exception_quit(const gdb_exception &)):
11401 Add assertion.
11402
eedc3f4f
TT
114032019-04-08 Tom Tromey <tom@tromey.com>
11404
11405 * valops.c (value_rtti_indirect_type): Replace throw_exception
11406 with throw.
11407 * tracefile-tfile.c (tfile_target_open): Replace throw_exception
11408 with throw.
11409 * thread.c (thr_try_catch_cmd): Replace throw_exception with
11410 throw.
11411 * target.c (target_translate_tls_address): Replace throw_exception
11412 with throw.
11413 * stack.c (frame_apply_command_count): Replace throw_exception
11414 with throw.
11415 * solib-spu.c (append_ocl_sos): Replace throw_exception with
11416 throw.
11417 * s390-tdep.c (s390_frame_unwind_cache): Replace throw_exception
11418 with throw.
11419 * rs6000-tdep.c (rs6000_frame_cache)
11420 (rs6000_epilogue_frame_cache): Replace throw_exception with throw.
11421 * remote.c: Replace throw_exception with throw.
11422 * record-full.c (record_full_message, record_full_wait_1)
11423 (record_full_restore): Replace throw_exception with throw.
11424 * record-btrace.c:
11425 (get_thread_current_frame_id, record_btrace_start_replaying)
11426 (cmd_record_btrace_bts_start, cmd_record_btrace_pt_start)
11427 (cmd_record_btrace_start): Replace throw_exception with throw.
11428 * parse.c (parse_exp_in_context_1): Replace throw_exception with
11429 throw.
11430 * linux-nat.c (detach_one_lwp, linux_resume_one_lwp)
11431 (resume_stopped_resumed_lwps): Replace throw_exception with throw.
11432 * linespec.c:
11433 (find_linespec_symbols): Replace throw_exception with throw.
11434 * infrun.c (displaced_step_prepare, resume): Replace
11435 throw_exception with throw.
11436 * infcmd.c (post_create_inferior): Replace throw_exception with
11437 throw.
11438 * inf-loop.c (inferior_event_handler): Replace throw_exception
11439 with throw.
11440 * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache)
11441 (i386_sigtramp_frame_cache): Replace throw_exception with throw.
11442 * frame.c (frame_unwind_pc, get_prev_frame_if_no_cycle)
11443 (get_prev_frame_always, get_frame_pc_if_available)
11444 (get_frame_address_in_block_if_available, get_frame_language):
11445 Replace throw_exception with throw.
11446 * frame-unwind.c (frame_unwind_try_unwinder): Replace
11447 throw_exception with throw.
11448 * eval.c (fetch_subexp_value, evaluate_var_value)
11449 (evaluate_funcall, evaluate_subexp_standard): Replace
11450 throw_exception with throw.
11451 * dwarf2loc.c (call_site_find_chain)
11452 (dwarf2_evaluate_loc_desc_full, dwarf2_locexpr_baton_eval):
11453 Replace throw_exception with throw.
11454 * dwarf2-frame.c (dwarf2_frame_cache): Replace throw_exception
11455 with throw.
11456 * darwin-nat.c (darwin_attach_pid): Replace throw_exception with
11457 throw.
11458 * cp-abi.c (baseclass_offset): Replace throw_exception with throw.
11459 * completer.c (complete_line_internal): Replace throw_exception
11460 with throw.
11461 * compile/compile-object-run.c (compile_object_run): Replace
11462 throw_exception with throw.
11463 * cli/cli-script.c (process_next_line): Replace throw_exception
11464 with throw.
11465 * btrace.c (btrace_compute_ftrace_pt, btrace_compute_ftrace)
11466 (btrace_enable, btrace_maint_update_pt_packets): Replace
11467 throw_exception with throw.
11468 * breakpoint.c (create_breakpoint, save_breakpoints): Replace
11469 throw_exception with throw.
11470 * break-catch-throw.c (re_set_exception_catchpoint): Replace
11471 throw_exception with throw.
11472 * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache)
11473 (amd64_epilogue_frame_cache): Replace throw_exception with throw.
11474 * aarch64-tdep.c (aarch64_make_prologue_cache)
11475 (aarch64_make_stub_cache): Replace throw_exception with throw.
11476
26003a20
TT
114772019-04-08 Tom Tromey <tom@tromey.com>
11478
11479 * common/common-exceptions.c (throw_exception): Rename from
11480 throw_exception_cxx. Remove old copy. Make argument const.
11481 (throw_it): Create and throw exception objects directly.
11482 * common/common-exceptions.h (throw_exception): Make argument
11483 const.
11484 (struct gdb_exception_error): Add constructor.
11485 (struct gdb_exception_quit): Add constructor.
11486
d272eb37
TT
114872019-04-08 Tom Tromey <tom@tromey.com>
11488
11489 * common/common-exceptions.h (exception_rethrow): Don't declare.
11490 (TRY_SJLJ): Update comment.
11491 (TRY, CATCH, END_CATCH): Remove.
11492 * common/common-exceptions.c (exception_rethrow): Remove.
11493
230d2906
TT
114942019-04-08 Tom Tromey <tom@tromey.com>
11495
11496 * common/common-exceptions.h (gdb_exception_RETURN_MASK_ALL):
11497 Remove.
11498 (gdb_exception_error): Rename from
11499 gdb_exception_RETURN_MASK_ERROR.
11500 (gdb_exception_quit): Rename from gdb_exception_RETURN_MASK_QUIT.
11501 (gdb_quit_bad_alloc): Update.
11502 * aarch64-tdep.c: Update.
11503 * ada-lang.c: Update.
11504 * ada-typeprint.c: Update.
11505 * ada-valprint.c: Update.
11506 * amd64-tdep.c: Update.
11507 * arch-utils.c: Update.
11508 * break-catch-throw.c: Update.
11509 * breakpoint.c: Update.
11510 * btrace.c: Update.
11511 * c-varobj.c: Update.
11512 * cli/cli-cmds.c: Update.
11513 * cli/cli-interp.c: Update.
11514 * cli/cli-script.c: Update.
11515 * common/common-exceptions.c: Update.
11516 * common/new-op.c: Update.
11517 * common/selftest.c: Update.
11518 * compile/compile-c-symbols.c: Update.
11519 * compile/compile-cplus-symbols.c: Update.
11520 * compile/compile-object-load.c: Update.
11521 * compile/compile-object-run.c: Update.
11522 * completer.c: Update.
11523 * corelow.c: Update.
11524 * cp-abi.c: Update.
11525 * cp-support.c: Update.
11526 * cp-valprint.c: Update.
11527 * darwin-nat.c: Update.
11528 * disasm-selftests.c: Update.
11529 * dtrace-probe.c: Update.
11530 * dwarf-index-cache.c: Update.
11531 * dwarf-index-write.c: Update.
11532 * dwarf2-frame-tailcall.c: Update.
11533 * dwarf2-frame.c: Update.
11534 * dwarf2loc.c: Update.
11535 * dwarf2read.c: Update.
11536 * eval.c: Update.
11537 * event-loop.c: Update.
11538 * event-top.c: Update.
11539 * exec.c: Update.
11540 * f-valprint.c: Update.
11541 * fbsd-tdep.c: Update.
11542 * frame-unwind.c: Update.
11543 * frame.c: Update.
11544 * gdbtypes.c: Update.
11545 * gnu-v3-abi.c: Update.
11546 * guile/guile-internal.h: Update.
11547 * guile/scm-block.c: Update.
11548 * guile/scm-breakpoint.c: Update.
11549 * guile/scm-cmd.c: Update.
11550 * guile/scm-disasm.c: Update.
11551 * guile/scm-frame.c: Update.
11552 * guile/scm-lazy-string.c: Update.
11553 * guile/scm-math.c: Update.
11554 * guile/scm-param.c: Update.
11555 * guile/scm-ports.c: Update.
11556 * guile/scm-pretty-print.c: Update.
11557 * guile/scm-symbol.c: Update.
11558 * guile/scm-symtab.c: Update.
11559 * guile/scm-type.c: Update.
11560 * guile/scm-value.c: Update.
11561 * i386-linux-tdep.c: Update.
11562 * i386-tdep.c: Update.
11563 * inf-loop.c: Update.
11564 * infcall.c: Update.
11565 * infcmd.c: Update.
11566 * infrun.c: Update.
11567 * jit.c: Update.
11568 * language.c: Update.
11569 * linespec.c: Update.
11570 * linux-fork.c: Update.
11571 * linux-nat.c: Update.
11572 * linux-tdep.c: Update.
11573 * linux-thread-db.c: Update.
11574 * main.c: Update.
11575 * mi/mi-cmd-break.c: Update.
11576 * mi/mi-cmd-stack.c: Update.
11577 * mi/mi-interp.c: Update.
11578 * mi/mi-main.c: Update.
11579 * objc-lang.c: Update.
11580 * p-valprint.c: Update.
11581 * parse.c: Update.
11582 * ppc-linux-tdep.c: Update.
11583 * printcmd.c: Update.
11584 * python/py-arch.c: Update.
11585 * python/py-breakpoint.c: Update.
11586 * python/py-cmd.c: Update.
11587 * python/py-finishbreakpoint.c: Update.
11588 * python/py-frame.c: Update.
11589 * python/py-framefilter.c: Update.
11590 * python/py-gdb-readline.c: Update.
11591 * python/py-inferior.c: Update.
11592 * python/py-infthread.c: Update.
11593 * python/py-lazy-string.c: Update.
11594 * python/py-linetable.c: Update.
11595 * python/py-objfile.c: Update.
11596 * python/py-param.c: Update.
11597 * python/py-prettyprint.c: Update.
11598 * python/py-progspace.c: Update.
11599 * python/py-record-btrace.c: Update.
11600 * python/py-record.c: Update.
11601 * python/py-symbol.c: Update.
11602 * python/py-type.c: Update.
11603 * python/py-unwind.c: Update.
11604 * python/py-utils.c: Update.
11605 * python/py-value.c: Update.
11606 * python/python.c: Update.
11607 * record-btrace.c: Update.
11608 * record-full.c: Update.
11609 * remote-fileio.c: Update.
11610 * remote.c: Update.
11611 * riscv-tdep.c: Update.
11612 * rs6000-aix-tdep.c: Update.
11613 * rs6000-tdep.c: Update.
11614 * rust-exp.y: Update.
11615 * rust-lang.c: Update.
11616 * s390-tdep.c: Update.
11617 * selftest-arch.c: Update.
11618 * solib-dsbt.c: Update.
11619 * solib-frv.c: Update.
11620 * solib-spu.c: Update.
11621 * solib-svr4.c: Update.
11622 * solib.c: Update.
11623 * sparc64-linux-tdep.c: Update.
11624 * stack.c: Update.
11625 * symfile-mem.c: Update.
11626 * symmisc.c: Update.
11627 * target.c: Update.
11628 * thread.c: Update.
11629 * top.c: Update.
11630 * tracefile-tfile.c: Update.
11631 * tui/tui.c: Update.
11632 * typeprint.c: Update.
11633 * unittests/cli-utils-selftests.c: Update.
11634 * unittests/parse-connection-spec-selftests.c: Update.
11635 * valops.c: Update.
11636 * valprint.c: Update.
11637 * value.c: Update.
11638 * varobj.c: Update.
11639 * windows-nat.c: Update.
11640 * x86-linux-nat.c: Update.
11641 * xml-support.c: Update.
11642
a70b8144
TT
116432019-04-08 Tom Tromey <tom@tromey.com>
11644
11645 * xml-support.c: Use C++ exception handling.
11646 * x86-linux-nat.c: Use C++ exception handling.
11647 * windows-nat.c: Use C++ exception handling.
11648 * varobj.c: Use C++ exception handling.
11649 * value.c: Use C++ exception handling.
11650 * valprint.c: Use C++ exception handling.
11651 * valops.c: Use C++ exception handling.
11652 * unittests/parse-connection-spec-selftests.c: Use C++ exception
11653 handling.
11654 * unittests/cli-utils-selftests.c: Use C++ exception handling.
11655 * typeprint.c: Use C++ exception handling.
11656 * tui/tui.c: Use C++ exception handling.
11657 * tracefile-tfile.c: Use C++ exception handling.
11658 * top.c: Use C++ exception handling.
11659 * thread.c: Use C++ exception handling.
11660 * target.c: Use C++ exception handling.
11661 * symmisc.c: Use C++ exception handling.
11662 * symfile-mem.c: Use C++ exception handling.
11663 * stack.c: Use C++ exception handling.
11664 * sparc64-linux-tdep.c: Use C++ exception handling.
11665 * solib.c: Use C++ exception handling.
11666 * solib-svr4.c: Use C++ exception handling.
11667 * solib-spu.c: Use C++ exception handling.
11668 * solib-frv.c: Use C++ exception handling.
11669 * solib-dsbt.c: Use C++ exception handling.
11670 * selftest-arch.c: Use C++ exception handling.
11671 * s390-tdep.c: Use C++ exception handling.
11672 * rust-lang.c: Use C++ exception handling.
11673 * rust-exp.y: Use C++ exception handling.
11674 * rs6000-tdep.c: Use C++ exception handling.
11675 * rs6000-aix-tdep.c: Use C++ exception handling.
11676 * riscv-tdep.c: Use C++ exception handling.
11677 * remote.c: Use C++ exception handling.
11678 * remote-fileio.c: Use C++ exception handling.
11679 * record-full.c: Use C++ exception handling.
11680 * record-btrace.c: Use C++ exception handling.
11681 * python/python.c: Use C++ exception handling.
11682 * python/py-value.c: Use C++ exception handling.
11683 * python/py-utils.c: Use C++ exception handling.
11684 * python/py-unwind.c: Use C++ exception handling.
11685 * python/py-type.c: Use C++ exception handling.
11686 * python/py-symbol.c: Use C++ exception handling.
11687 * python/py-record.c: Use C++ exception handling.
11688 * python/py-record-btrace.c: Use C++ exception handling.
11689 * python/py-progspace.c: Use C++ exception handling.
11690 * python/py-prettyprint.c: Use C++ exception handling.
11691 * python/py-param.c: Use C++ exception handling.
11692 * python/py-objfile.c: Use C++ exception handling.
11693 * python/py-linetable.c: Use C++ exception handling.
11694 * python/py-lazy-string.c: Use C++ exception handling.
11695 * python/py-infthread.c: Use C++ exception handling.
11696 * python/py-inferior.c: Use C++ exception handling.
11697 * python/py-gdb-readline.c: Use C++ exception handling.
11698 * python/py-framefilter.c: Use C++ exception handling.
11699 * python/py-frame.c: Use C++ exception handling.
11700 * python/py-finishbreakpoint.c: Use C++ exception handling.
11701 * python/py-cmd.c: Use C++ exception handling.
11702 * python/py-breakpoint.c: Use C++ exception handling.
11703 * python/py-arch.c: Use C++ exception handling.
11704 * printcmd.c: Use C++ exception handling.
11705 * ppc-linux-tdep.c: Use C++ exception handling.
11706 * parse.c: Use C++ exception handling.
11707 * p-valprint.c: Use C++ exception handling.
11708 * objc-lang.c: Use C++ exception handling.
11709 * mi/mi-main.c: Use C++ exception handling.
11710 * mi/mi-interp.c: Use C++ exception handling.
11711 * mi/mi-cmd-stack.c: Use C++ exception handling.
11712 * mi/mi-cmd-break.c: Use C++ exception handling.
11713 * main.c: Use C++ exception handling.
11714 * linux-thread-db.c: Use C++ exception handling.
11715 * linux-tdep.c: Use C++ exception handling.
11716 * linux-nat.c: Use C++ exception handling.
11717 * linux-fork.c: Use C++ exception handling.
11718 * linespec.c: Use C++ exception handling.
11719 * language.c: Use C++ exception handling.
11720 * jit.c: Use C++ exception handling.
11721 * infrun.c: Use C++ exception handling.
11722 * infcmd.c: Use C++ exception handling.
11723 * infcall.c: Use C++ exception handling.
11724 * inf-loop.c: Use C++ exception handling.
11725 * i386-tdep.c: Use C++ exception handling.
11726 * i386-linux-tdep.c: Use C++ exception handling.
11727 * guile/scm-value.c: Use C++ exception handling.
11728 * guile/scm-type.c: Use C++ exception handling.
11729 * guile/scm-symtab.c: Use C++ exception handling.
11730 * guile/scm-symbol.c: Use C++ exception handling.
11731 * guile/scm-pretty-print.c: Use C++ exception handling.
11732 * guile/scm-ports.c: Use C++ exception handling.
11733 * guile/scm-param.c: Use C++ exception handling.
11734 * guile/scm-math.c: Use C++ exception handling.
11735 * guile/scm-lazy-string.c: Use C++ exception handling.
11736 * guile/scm-frame.c: Use C++ exception handling.
11737 * guile/scm-disasm.c: Use C++ exception handling.
11738 * guile/scm-cmd.c: Use C++ exception handling.
11739 * guile/scm-breakpoint.c: Use C++ exception handling.
11740 * guile/scm-block.c: Use C++ exception handling.
11741 * guile/guile-internal.h: Use C++ exception handling.
11742 * gnu-v3-abi.c: Use C++ exception handling.
11743 * gdbtypes.c: Use C++ exception handling.
11744 * frame.c: Use C++ exception handling.
11745 * frame-unwind.c: Use C++ exception handling.
11746 * fbsd-tdep.c: Use C++ exception handling.
11747 * f-valprint.c: Use C++ exception handling.
11748 * exec.c: Use C++ exception handling.
11749 * event-top.c: Use C++ exception handling.
11750 * event-loop.c: Use C++ exception handling.
11751 * eval.c: Use C++ exception handling.
11752 * dwarf2read.c: Use C++ exception handling.
11753 * dwarf2loc.c: Use C++ exception handling.
11754 * dwarf2-frame.c: Use C++ exception handling.
11755 * dwarf2-frame-tailcall.c: Use C++ exception handling.
11756 * dwarf-index-write.c: Use C++ exception handling.
11757 * dwarf-index-cache.c: Use C++ exception handling.
11758 * dtrace-probe.c: Use C++ exception handling.
11759 * disasm-selftests.c: Use C++ exception handling.
11760 * darwin-nat.c: Use C++ exception handling.
11761 * cp-valprint.c: Use C++ exception handling.
11762 * cp-support.c: Use C++ exception handling.
11763 * cp-abi.c: Use C++ exception handling.
11764 * corelow.c: Use C++ exception handling.
11765 * completer.c: Use C++ exception handling.
11766 * compile/compile-object-run.c: Use C++ exception handling.
11767 * compile/compile-object-load.c: Use C++ exception handling.
11768 * compile/compile-cplus-symbols.c: Use C++ exception handling.
11769 * compile/compile-c-symbols.c: Use C++ exception handling.
11770 * common/selftest.c: Use C++ exception handling.
11771 * common/new-op.c: Use C++ exception handling.
11772 * cli/cli-script.c: Use C++ exception handling.
11773 * cli/cli-interp.c: Use C++ exception handling.
11774 * cli/cli-cmds.c: Use C++ exception handling.
11775 * c-varobj.c: Use C++ exception handling.
11776 * btrace.c: Use C++ exception handling.
11777 * breakpoint.c: Use C++ exception handling.
11778 * break-catch-throw.c: Use C++ exception handling.
11779 * arch-utils.c: Use C++ exception handling.
11780 * amd64-tdep.c: Use C++ exception handling.
11781 * ada-valprint.c: Use C++ exception handling.
11782 * ada-typeprint.c: Use C++ exception handling.
11783 * ada-lang.c: Use C++ exception handling.
11784 * aarch64-tdep.c: Use C++ exception handling.
11785
3d6e9d23
TT
117862019-04-08 Tom Tromey <tom@tromey.com>
11787
11788 * xml-support.c (gdb_xml_parser::parse): Update.
11789 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
11790 * value.c (show_convenience): Update.
11791 * unittests/cli-utils-selftests.c (test_number_or_range_parser)
11792 (test_parse_flags_qcs): Update.
11793 * thread.c (thr_try_catch_cmd): Update.
11794 * target.c (target_translate_tls_address): Update.
11795 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
11796 (info_frame_command_core, frame_apply_command_count): Update.
11797 * rust-exp.y (rust_lex_exception_test): Update.
11798 * riscv-tdep.c (riscv_print_one_register_info): Update.
11799 * remote.c (remote_target::enable_btrace): Update.
11800 * record-btrace.c (record_btrace_enable_warn): Update.
11801 * python/py-utils.c (gdbpy_convert_exception): Update.
11802 * printcmd.c (do_one_display, print_variable_and_value): Update.
11803 * mi/mi-main.c (mi_print_exception): Update.
11804 * mi/mi-interp.c (mi_cmd_interpreter_exec): Use SCOPE_EXIT.
11805 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
11806 * linux-nat.c (linux_nat_target::attach): Update.
11807 * linux-fork.c (class scoped_switch_fork_info): Update.
11808 * infrun.c (displaced_step_prepare): Update.
11809 * infcall.c (call_function_by_hand_dummy): Update.
11810 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception): Update.
11811 * gnu-v3-abi.c (print_one_vtable): Update.
11812 * frame.c (get_prev_frame_always): Update.
11813 * f-valprint.c (info_common_command_for_block): Update.
11814 * exec.c (try_open_exec_file): Update.
11815 * exceptions.c (print_exception, exception_print)
11816 (exception_fprintf, exception_print_same): Update.
11817 * dwarf2-frame.c (dwarf2_build_frame_info): Update.
11818 * dwarf-index-cache.c (index_cache::store)
11819 (index_cache::lookup_gdb_index): Update.
11820 * darwin-nat.c (maybe_cache_shell): Update.
11821 * cp-valprint.c (cp_print_value_fields): Update.
11822 * compile/compile-cplus-symbols.c (gcc_cplus_convert_symbol)
11823 (gcc_cplus_symbol_address): Update.
11824 * compile/compile-c-symbols.c (gcc_convert_symbol)
11825 (gcc_symbol_address, generate_c_for_for_one_variable): Update.
11826 * common/selftest.c: Update.
11827 * common/common-exceptions.h (struct gdb_exception) <message>: Now
11828 a std::string.
11829 (exception_try_scope_entry, exception_try_scope_exit): Don't
11830 declare.
11831 (struct exception_try_scope): Remove.
11832 (TRY): Don't use exception_try_scope.
11833 (struct gdb_exception): Add constructor, operator=.
11834 <what>: New method.
11835 (struct gdb_exception_RETURN_MASK_ALL)
11836 (struct gdb_exception_RETURN_MASK_ERROR)
11837 (struct gdb_exception_RETURN_MASK_QUIT): Add constructor.
11838 (struct gdb_quit_bad_alloc): Update.
11839 * common/common-exceptions.c (exception_none): Change
11840 initializer.
11841 (struct catcher) <state, exception>: Initialize inline.
11842 <prev>: Remove member.
11843 (current_catcher): Remove.
11844 (catchers): New global.
11845 (exceptions_state_mc_init): Simplify.
11846 (catcher_pop): Remove.
11847 (exceptions_state_mc, exceptions_state_mc_catch): Update.
11848 (try_scope_depth, exception_try_scope_entry)
11849 (exception_try_scope_exit): Remove.
11850 (throw_exception_sjlj): Update.
11851 (exception_messages, exception_messages_size): Remove.
11852 (throw_it): Simplify.
11853 (gdb_exception_sliced_copy): Remove.
11854 (throw_exception_cxx): Update.
11855 * cli/cli-script.c (script_from_file): Update.
11856 * breakpoint.c (insert_bp_location, update_breakpoint_locations):
11857 Update.
11858 * ada-valprint.c (ada_val_print): Update.
11859 * ada-lang.c (ada_to_fixed_type_1, ada_exception_name_addr)
11860 (create_excep_cond_exprs): Update.
11861
c5c10118
TT
118622019-04-08 Tom Tromey <tom@tromey.com>
11863
11864 * common/common-exceptions.h (GDB_XCPT_SJMP, GDB_XCPT_TRY)
11865 (GDB_XCPT_RAW_TRY, GDB_XCPT): Remove.
11866 (TRY, CATCH, END_CATCH): Remove some definitions.
11867 * common/common-exceptions.c: Don't use GDB_XCPT.
11868 (catcher_list_size): Remove.
11869 (throw_exception, throw_it): Simplify.
11870
4de283e4
TT
118712019-04-05 Tom Tromey <tom@tromey.com>
11872
11873 Revert the header-sorting patch.
11874 * ft32-tdep.c: Revert.
11875 * frv-tdep.c: Revert.
11876 * frv-linux-tdep.c: Revert.
11877 * frame.c: Revert.
11878 * frame-unwind.c: Revert.
11879 * frame-base.c: Revert.
11880 * fork-child.c: Revert.
11881 * findvar.c: Revert.
11882 * findcmd.c: Revert.
11883 * filesystem.c: Revert.
11884 * filename-seen-cache.h: Revert.
11885 * filename-seen-cache.c: Revert.
11886 * fbsd-tdep.c: Revert.
11887 * fbsd-nat.h: Revert.
11888 * fbsd-nat.c: Revert.
11889 * f-valprint.c: Revert.
11890 * f-typeprint.c: Revert.
11891 * f-lang.c: Revert.
11892 * extension.h: Revert.
11893 * extension.c: Revert.
11894 * extension-priv.h: Revert.
11895 * expprint.c: Revert.
11896 * exec.h: Revert.
11897 * exec.c: Revert.
11898 * exceptions.c: Revert.
11899 * event-top.c: Revert.
11900 * event-loop.c: Revert.
11901 * eval.c: Revert.
11902 * elfread.c: Revert.
11903 * dwarf2read.h: Revert.
11904 * dwarf2read.c: Revert.
11905 * dwarf2loc.c: Revert.
11906 * dwarf2expr.h: Revert.
11907 * dwarf2expr.c: Revert.
11908 * dwarf2-frame.c: Revert.
11909 * dwarf2-frame-tailcall.c: Revert.
11910 * dwarf-index-write.h: Revert.
11911 * dwarf-index-write.c: Revert.
11912 * dwarf-index-common.c: Revert.
11913 * dwarf-index-cache.h: Revert.
11914 * dwarf-index-cache.c: Revert.
11915 * dummy-frame.c: Revert.
11916 * dtrace-probe.c: Revert.
11917 * disasm.h: Revert.
11918 * disasm.c: Revert.
11919 * disasm-selftests.c: Revert.
11920 * dictionary.c: Revert.
11921 * dicos-tdep.c: Revert.
11922 * demangle.c: Revert.
11923 * dcache.h: Revert.
11924 * dcache.c: Revert.
11925 * darwin-nat.h: Revert.
11926 * darwin-nat.c: Revert.
11927 * darwin-nat-info.c: Revert.
11928 * d-valprint.c: Revert.
11929 * d-namespace.c: Revert.
11930 * d-lang.c: Revert.
11931 * ctf.c: Revert.
11932 * csky-tdep.c: Revert.
11933 * csky-linux-tdep.c: Revert.
11934 * cris-tdep.c: Revert.
11935 * cris-linux-tdep.c: Revert.
11936 * cp-valprint.c: Revert.
11937 * cp-support.c: Revert.
11938 * cp-namespace.c: Revert.
11939 * cp-abi.c: Revert.
11940 * corelow.c: Revert.
11941 * corefile.c: Revert.
11942 * continuations.c: Revert.
11943 * completer.h: Revert.
11944 * completer.c: Revert.
11945 * complaints.c: Revert.
11946 * coffread.c: Revert.
11947 * coff-pe-read.c: Revert.
11948 * cli-out.h: Revert.
11949 * cli-out.c: Revert.
11950 * charset.c: Revert.
11951 * c-varobj.c: Revert.
11952 * c-valprint.c: Revert.
11953 * c-typeprint.c: Revert.
11954 * c-lang.c: Revert.
11955 * buildsym.c: Revert.
11956 * buildsym-legacy.c: Revert.
11957 * build-id.h: Revert.
11958 * build-id.c: Revert.
11959 * btrace.c: Revert.
11960 * bsd-uthread.c: Revert.
11961 * breakpoint.h: Revert.
11962 * breakpoint.c: Revert.
11963 * break-catch-throw.c: Revert.
11964 * break-catch-syscall.c: Revert.
11965 * break-catch-sig.c: Revert.
11966 * blockframe.c: Revert.
11967 * block.c: Revert.
11968 * bfin-tdep.c: Revert.
11969 * bfin-linux-tdep.c: Revert.
11970 * bfd-target.c: Revert.
11971 * bcache.c: Revert.
11972 * ax-general.c: Revert.
11973 * ax-gdb.h: Revert.
11974 * ax-gdb.c: Revert.
11975 * avr-tdep.c: Revert.
11976 * auxv.c: Revert.
11977 * auto-load.c: Revert.
11978 * arm-wince-tdep.c: Revert.
11979 * arm-tdep.c: Revert.
11980 * arm-symbian-tdep.c: Revert.
11981 * arm-pikeos-tdep.c: Revert.
11982 * arm-obsd-tdep.c: Revert.
11983 * arm-nbsd-tdep.c: Revert.
11984 * arm-nbsd-nat.c: Revert.
11985 * arm-linux-tdep.c: Revert.
11986 * arm-linux-nat.c: Revert.
11987 * arm-fbsd-tdep.c: Revert.
11988 * arm-fbsd-nat.c: Revert.
11989 * arm-bsd-tdep.c: Revert.
11990 * arch-utils.c: Revert.
11991 * arc-tdep.c: Revert.
11992 * arc-newlib-tdep.c: Revert.
11993 * annotate.h: Revert.
11994 * annotate.c: Revert.
11995 * amd64-windows-tdep.c: Revert.
11996 * amd64-windows-nat.c: Revert.
11997 * amd64-tdep.c: Revert.
11998 * amd64-sol2-tdep.c: Revert.
11999 * amd64-obsd-tdep.c: Revert.
12000 * amd64-obsd-nat.c: Revert.
12001 * amd64-nbsd-tdep.c: Revert.
12002 * amd64-nbsd-nat.c: Revert.
12003 * amd64-nat.c: Revert.
12004 * amd64-linux-tdep.c: Revert.
12005 * amd64-linux-nat.c: Revert.
12006 * amd64-fbsd-tdep.c: Revert.
12007 * amd64-fbsd-nat.c: Revert.
12008 * amd64-dicos-tdep.c: Revert.
12009 * amd64-darwin-tdep.c: Revert.
12010 * amd64-bsd-nat.c: Revert.
12011 * alpha-tdep.c: Revert.
12012 * alpha-obsd-tdep.c: Revert.
12013 * alpha-nbsd-tdep.c: Revert.
12014 * alpha-mdebug-tdep.c: Revert.
12015 * alpha-linux-tdep.c: Revert.
12016 * alpha-linux-nat.c: Revert.
12017 * alpha-bsd-tdep.c: Revert.
12018 * alpha-bsd-nat.c: Revert.
12019 * aix-thread.c: Revert.
12020 * agent.c: Revert.
12021 * addrmap.c: Revert.
12022 * ada-varobj.c: Revert.
12023 * ada-valprint.c: Revert.
12024 * ada-typeprint.c: Revert.
12025 * ada-tasks.c: Revert.
12026 * ada-lang.c: Revert.
12027 * aarch64-tdep.c: Revert.
12028 * aarch64-ravenscar-thread.c: Revert.
12029 * aarch64-newlib-tdep.c: Revert.
12030 * aarch64-linux-tdep.c: Revert.
12031 * aarch64-linux-nat.c: Revert.
12032 * aarch64-fbsd-tdep.c: Revert.
12033 * aarch64-fbsd-nat.c: Revert.
12034 * aarch32-linux-nat.c: Revert.
12035
d55e5aa6
TT
120362019-04-05 Tom Tromey <tom@tromey.com>
12037
12038 * ft32-tdep.c: Sort headers.
12039 * frv-tdep.c: Sort headers.
12040 * frv-linux-tdep.c: Sort headers.
12041 * frame.c: Sort headers.
12042 * frame-unwind.c: Sort headers.
12043 * frame-base.c: Sort headers.
12044 * fork-child.c: Sort headers.
12045 * findvar.c: Sort headers.
12046 * findcmd.c: Sort headers.
12047 * filesystem.c: Sort headers.
12048 * filename-seen-cache.h: Sort headers.
12049 * filename-seen-cache.c: Sort headers.
12050 * fbsd-tdep.c: Sort headers.
12051 * fbsd-nat.h: Sort headers.
12052 * fbsd-nat.c: Sort headers.
12053 * f-valprint.c: Sort headers.
12054 * f-typeprint.c: Sort headers.
12055 * f-lang.c: Sort headers.
12056 * extension.h: Sort headers.
12057 * extension.c: Sort headers.
12058 * extension-priv.h: Sort headers.
12059 * expprint.c: Sort headers.
12060 * exec.h: Sort headers.
12061 * exec.c: Sort headers.
12062 * exceptions.c: Sort headers.
12063 * event-top.c: Sort headers.
12064 * event-loop.c: Sort headers.
12065 * eval.c: Sort headers.
12066 * elfread.c: Sort headers.
12067 * dwarf2read.h: Sort headers.
12068 * dwarf2read.c: Sort headers.
12069 * dwarf2loc.c: Sort headers.
12070 * dwarf2expr.h: Sort headers.
12071 * dwarf2expr.c: Sort headers.
12072 * dwarf2-frame.c: Sort headers.
12073 * dwarf2-frame-tailcall.c: Sort headers.
12074 * dwarf-index-write.h: Sort headers.
12075 * dwarf-index-write.c: Sort headers.
12076 * dwarf-index-common.c: Sort headers.
12077 * dwarf-index-cache.h: Sort headers.
12078 * dwarf-index-cache.c: Sort headers.
12079 * dummy-frame.c: Sort headers.
12080 * dtrace-probe.c: Sort headers.
12081 * disasm.h: Sort headers.
12082 * disasm.c: Sort headers.
12083 * disasm-selftests.c: Sort headers.
12084 * dictionary.c: Sort headers.
12085 * dicos-tdep.c: Sort headers.
12086 * demangle.c: Sort headers.
12087 * dcache.h: Sort headers.
12088 * dcache.c: Sort headers.
12089 * darwin-nat.h: Sort headers.
12090 * darwin-nat.c: Sort headers.
12091 * darwin-nat-info.c: Sort headers.
12092 * d-valprint.c: Sort headers.
12093 * d-namespace.c: Sort headers.
12094 * d-lang.c: Sort headers.
12095 * ctf.c: Sort headers.
12096 * csky-tdep.c: Sort headers.
12097 * csky-linux-tdep.c: Sort headers.
12098 * cris-tdep.c: Sort headers.
12099 * cris-linux-tdep.c: Sort headers.
12100 * cp-valprint.c: Sort headers.
12101 * cp-support.c: Sort headers.
12102 * cp-namespace.c: Sort headers.
12103 * cp-abi.c: Sort headers.
12104 * corelow.c: Sort headers.
12105 * corefile.c: Sort headers.
12106 * continuations.c: Sort headers.
12107 * completer.h: Sort headers.
12108 * completer.c: Sort headers.
12109 * complaints.c: Sort headers.
12110 * coffread.c: Sort headers.
12111 * coff-pe-read.c: Sort headers.
12112 * cli-out.h: Sort headers.
12113 * cli-out.c: Sort headers.
12114 * charset.c: Sort headers.
12115 * c-varobj.c: Sort headers.
12116 * c-valprint.c: Sort headers.
12117 * c-typeprint.c: Sort headers.
12118 * c-lang.c: Sort headers.
12119 * buildsym.c: Sort headers.
12120 * buildsym-legacy.c: Sort headers.
12121 * build-id.h: Sort headers.
12122 * build-id.c: Sort headers.
12123 * btrace.c: Sort headers.
12124 * bsd-uthread.c: Sort headers.
12125 * breakpoint.h: Sort headers.
12126 * breakpoint.c: Sort headers.
12127 * break-catch-throw.c: Sort headers.
12128 * break-catch-syscall.c: Sort headers.
12129 * break-catch-sig.c: Sort headers.
12130 * blockframe.c: Sort headers.
12131 * block.c: Sort headers.
12132 * bfin-tdep.c: Sort headers.
12133 * bfin-linux-tdep.c: Sort headers.
12134 * bfd-target.c: Sort headers.
12135 * bcache.c: Sort headers.
12136 * ax-general.c: Sort headers.
12137 * ax-gdb.h: Sort headers.
12138 * ax-gdb.c: Sort headers.
12139 * avr-tdep.c: Sort headers.
12140 * auxv.c: Sort headers.
12141 * auto-load.c: Sort headers.
12142 * arm-wince-tdep.c: Sort headers.
12143 * arm-tdep.c: Sort headers.
12144 * arm-symbian-tdep.c: Sort headers.
12145 * arm-pikeos-tdep.c: Sort headers.
12146 * arm-obsd-tdep.c: Sort headers.
12147 * arm-nbsd-tdep.c: Sort headers.
12148 * arm-nbsd-nat.c: Sort headers.
12149 * arm-linux-tdep.c: Sort headers.
12150 * arm-linux-nat.c: Sort headers.
12151 * arm-fbsd-tdep.c: Sort headers.
12152 * arm-fbsd-nat.c: Sort headers.
12153 * arm-bsd-tdep.c: Sort headers.
12154 * arch-utils.c: Sort headers.
12155 * arc-tdep.c: Sort headers.
12156 * arc-newlib-tdep.c: Sort headers.
12157 * annotate.h: Sort headers.
12158 * annotate.c: Sort headers.
12159 * amd64-windows-tdep.c: Sort headers.
12160 * amd64-windows-nat.c: Sort headers.
12161 * amd64-tdep.c: Sort headers.
12162 * amd64-sol2-tdep.c: Sort headers.
12163 * amd64-obsd-tdep.c: Sort headers.
12164 * amd64-obsd-nat.c: Sort headers.
12165 * amd64-nbsd-tdep.c: Sort headers.
12166 * amd64-nbsd-nat.c: Sort headers.
12167 * amd64-nat.c: Sort headers.
12168 * amd64-linux-tdep.c: Sort headers.
12169 * amd64-linux-nat.c: Sort headers.
12170 * amd64-fbsd-tdep.c: Sort headers.
12171 * amd64-fbsd-nat.c: Sort headers.
12172 * amd64-dicos-tdep.c: Sort headers.
12173 * amd64-darwin-tdep.c: Sort headers.
12174 * amd64-bsd-nat.c: Sort headers.
12175 * alpha-tdep.c: Sort headers.
12176 * alpha-obsd-tdep.c: Sort headers.
12177 * alpha-nbsd-tdep.c: Sort headers.
12178 * alpha-mdebug-tdep.c: Sort headers.
12179 * alpha-linux-tdep.c: Sort headers.
12180 * alpha-linux-nat.c: Sort headers.
12181 * alpha-bsd-tdep.c: Sort headers.
12182 * alpha-bsd-nat.c: Sort headers.
12183 * aix-thread.c: Sort headers.
12184 * agent.c: Sort headers.
12185 * addrmap.c: Sort headers.
12186 * ada-varobj.c: Sort headers.
12187 * ada-valprint.c: Sort headers.
12188 * ada-typeprint.c: Sort headers.
12189 * ada-tasks.c: Sort headers.
12190 * ada-lang.c: Sort headers.
12191 * aarch64-tdep.c: Sort headers.
12192 * aarch64-ravenscar-thread.c: Sort headers.
12193 * aarch64-newlib-tdep.c: Sort headers.
12194 * aarch64-linux-tdep.c: Sort headers.
12195 * aarch64-linux-nat.c: Sort headers.
12196 * aarch64-fbsd-tdep.c: Sort headers.
12197 * aarch64-fbsd-nat.c: Sort headers.
12198 * aarch32-linux-nat.c: Sort headers.
12199
699bd4cf
TT
122002019-04-04 Tom Tromey <tom@tromey.com>
12201
12202 * varobj.c (varobj_create): Update.
12203 * rust-exp.y (struct rust_parser) <update_innermost_block,
12204 lookup_symbol>: New methods.
12205 (rust_parser::update_innermost_block, rust_parser::lookup_symbol):
12206 Rename.
12207 (rust_parser::rust_lookup_type)
12208 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
12209 * printcmd.c (display_command, do_one_display): Update.
12210 * parser-defs.h (struct parser_state) <parser_state>: Add
12211 "tracker" parameter.
12212 (block_tracker): New member.
12213 (class innermost_block_tracker) <innermost_block_tracker>: Add
12214 "types" parameter.
12215 <reset>: Remove method.
12216 (innermost_block): Don't declare.
12217 (null_post_parser): Update.
12218 * parse.c (innermost_block): Remove global.
12219 (write_dollar_variable): Update.
12220 (parse_exp_1, parse_exp_in_context): Add "tracker" parameter.
12221 Remove "tracker_types" parameter.
12222 (parse_expression): Add "tracker" parameter.
12223 (parse_expression_for_completion): Update.
12224 (null_post_parser): Add "tracker" parameter.
12225 * p-exp.y: Update rules.
12226 * m2-exp.y: Update rules.
12227 * language.h (struct language_defn) <la_post_parser>: Add
12228 "tracker" parameter.
12229 * go-exp.y: Update rules.
12230 * f-exp.y: Update rules.
12231 * expression.h (parse_expression, parse_exp_1): Add "tracker"
12232 parameter.
12233 * d-exp.y: Update rules.
12234 * c-exp.y: Update rules.
12235 * breakpoint.c (set_breakpoint_condition): Create an
12236 innermost_block_tracker.
12237 (watch_command_1): Likewise.
12238 * ada-lang.c (resolve): Add "tracker" parameter.
12239 (resolve_subexp): Likewise.
12240 * ada-exp.y (write_var_from_sym): Update.
12241
dac43e32
TT
122422019-04-04 Tom Tromey <tom@tromey.com>
12243
12244 * type-stack.h: New file.
12245 * type-stack.c: New file.
12246 * parser-defs.h (enum type_pieces, union type_stack_elt): Move to
12247 type-stack.h.
12248 (insert_into_type_stack, insert_type, push_type, push_type_int)
12249 (insert_type_address_space, pop_type, pop_type_int)
12250 (pop_typelist, pop_type_stack, append_type_stack)
12251 (push_type_stack, get_type_stack, push_typelist)
12252 (follow_type_instance_flags, follow_types): Don't declare.
12253 * parse.c (type_stack): Remove global.
12254 (parse_exp_in_context): Update.
12255 (insert_into_type_stack, insert_type, push_type, push_type_int)
12256 (insert_type_address_space, pop_type, pop_type_int)
12257 (pop_typelist, pop_type_stack, append_type_stack)
12258 (push_type_stack, get_type_stack, push_typelist)
12259 (follow_type_instance_flags, follow_types): Remove (moved to
12260 type-stack.c).
12261 * f-exp.y (type_stack): New global.
12262 Update rules.
12263 (push_kind_type, f_parse): Update.
12264 * d-exp.y (type_stack): New global.
12265 Update rules.
12266 (d_parse): Update.
12267 * c-exp.y (struct c_parse_state) <type_stack>: New member.
12268 Update rules.
12269 * Makefile.in (COMMON_SFILES): Add type-stack.c.
12270 (HFILES_NO_SRCDIR): Add type-stack.h.
12271
2a612529
TT
122722019-04-04 Tom Tromey <tom@tromey.com>
12273
12274 * rust-exp.y (rust_parser::lex_identifier, rustyylex)
12275 (rust_parser::convert_ast_to_expression, rust_parse)
12276 (rust_lex_test_completion, rust_lex_tests): Update.
12277 * parser-defs.h (struct expr_completion_state): New.
12278 (struct parser_state) <parser_state>: Add completion parameter.
12279 <mark_struct_expression, mark_completion_tag>: New methods.
12280 <parse_completion, m_completion_state>: New members.
12281 (prefixify_expression, null_post_parser): Update.
12282 (mark_struct_expression, mark_completion_tag): Don't declare.
12283 * parse.c (parse_completion, expout_last_struct)
12284 (expout_tag_completion_type, expout_completion_name): Remove
12285 globals.
12286 (parser_state::mark_struct_expression)
12287 (parser_state::mark_completion_tag): Now methods.
12288 (prefixify_expression): Add last_struct parameter.
12289 (prefixify_subexp): Likewise.
12290 (parse_exp_1): Update.
12291 (parse_exp_in_context): Add cstate parameter. Update.
12292 (parse_expression_for_completion): Create an
12293 expr_completion_state.
12294 (null_post_parser): Add "completion" parameter.
12295 * p-exp.y: Update rules.
12296 (yylex): Update.
12297 * language.h (struct language_defn) <la_post_parser>: Add
12298 "completing" parameter.
12299 * go-exp.y: Update rules.
12300 (lex_one_token): Update.
12301 * expression.h (parse_completion): Don't declare.
12302 * d-exp.y: Update rules.
12303 (lex_one_token): Update rules.
12304 * c-exp.y: Update rules.
12305 (lex_one_token): Update.
12306 * ada-lang.c (resolve): Add "parse_completion" parameter.
12307 (resolve_subexp): Likewise.
12308 (ada_resolve_function): Likewise.
12309
43476f0b
TT
123102019-04-04 Tom Tromey <tom@tromey.com>
12311
12312 * parser-defs.h (struct parser_state) <start_arglist,
12313 end_arglist>: New methods.
12314 <arglist_len, m_funcall_chain>: New members.
12315 (arglist_len, start_arglist, end_arglist): Don't declare.
12316 * parse.c (arglist_len, funcall_chain): Remove global.
12317 (start_arglist, end_arglist): Remove functions.
12318 (parse_exp_in_context): Update.
12319 * p-exp.y: Update rules.
12320 * m2-exp.y: Update rules.
12321 * go-exp.y: Update rules.
12322 * f-exp.y: Update rules.
12323 * d-exp.y: Update rules.
12324 * c-exp.y: Update rules.
12325
5776fca3
TT
123262019-04-04 Tom Tromey <tom@tromey.com>
12327
12328 * rust-exp.y (struct rust_parser) <lex_hex, lex_escape,
12329 lex_operator, push_back>: New methods.
12330 Update all rules.
12331 (rust_parser::lex_hex, lex_escape): Rename and update.
12332 (rust_parser::lex_string, rust_parser::lex_identifier): Update.
12333 (rust_parser::lex_operator): Rename and update.
12334 (rust_parser::lex_number, rustyylex, rustyyerror)
12335 (rust_lex_test_init, rust_lex_test_sequence)
12336 (rust_lex_test_push_back, rust_lex_tests): Update.
12337 * parser-defs.h (struct parser_state) <parser_state>: Add "input"
12338 parameter.
12339 <lexptr, prev_lexptr>: New members.
12340 (lexptr, prev_lexptr): Don't declare.
12341 * parse.c (lexptr, prev_lexptr): Remove globals.
12342 (parse_exp_in_context): Update.
12343 * p-exp.y (yylex, yyerror): Update.
12344 * m2-exp.y (parse_number, yylex, yyerror): Update.
12345 * go-exp.y (lex_one_token, yyerror): Update.
12346 * f-exp.y (match_string_literal, yylex, yyerror): Update.
12347 * d-exp.y (lex_one_token, yyerror): Update.
12348 * c-exp.y (scan_macro_expansion, finished_macro_expansion)
12349 (lex_one_token, yyerror): Update.
12350 * ada-lex.l (YY_INPUT): Update.
12351 (rewind_to_char): Update.
12352 * ada-exp.y (yyerror): Update.
12353
8621b685
TT
123542019-04-04 Tom Tromey <tom@tromey.com>
12355
12356 * rust-exp.y (rustyylex, rust_lex_tests): Update.
12357 * parser-defs.h (struct parser_state) <parser_state>: Add new
12358 parameter.
12359 <comma_terminates>: New member.
12360 (comma_terminates): Don't declare global.
12361 * parse.c (comma_terminates): Remove global.
12362 (parse_exp_in_context): Update.
12363 * p-exp.y (yylex): Update.
12364 * m2-exp.y (yylex): Update.
12365 * go-exp.y (lex_one_token): Update.
12366 * f-exp.y (yylex): Update.
12367 * d-exp.y (lex_one_token): Update.
12368 * c-exp.y (lex_one_token): Update.
12369 * ada-lex.l: Update.
12370
28aaf3fd
TT
123712019-04-04 Tom Tromey <tom@tromey.com>
12372
12373 * rust-exp.y (struct rust_parser) <paren_depth>: New member.
12374 (rustyylex, rust_lex_test_init, rust_lex_test_one)
12375 (rust_lex_test_sequence, rust_lex_test_push_back): Update.
12376 * parser-defs.h (paren_depth): Don't declare.
12377 * parse.c (paren_depth): Remove global.
12378 (parse_exp_in_context): Update.
12379 * p-exp.y (paren_depth): New global.
12380 (pascal_parse): Initialize it.
12381 * m2-exp.y (paren_depth): New global.
12382 (m2_parse): Initialize it.
12383 * go-exp.y (paren_depth): New global.
12384 (go_parse): Initialize it.
12385 * f-exp.y (paren_depth): New global.
12386 (f_parse): Initialize it.
12387 * d-exp.y (paren_depth): New global.
12388 (d_parse): Initialize it.
12389 * c-exp.y (paren_depth): New global.
12390 (c_parse): Initialize it.
12391 * ada-lex.l (paren_depth): New global.
12392 (lexer_init): Initialize it.
12393
1e58a4a4
TT
123942019-04-04 Tom Tromey <tom@tromey.com>
12395
12396 * rust-exp.y (rust_parser::crate_name, rust_parser::super_name)
12397 (rust_parser::convert_ast_to_type)
12398 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
12399 * parser-defs.h (struct parser_state) <parser_state>: Add
12400 parameters. Initialize new members.
12401 <expression_context_block, expression_context_pc>: New members.
12402 * parse.c (expression_context_block, expression_context_pc):
12403 Remove globals.
12404 (parse_exp_in_context): Update.
12405 * p-exp.y: Update all rules.
12406 (yylex): Update.
12407 * m2-exp.y: Update all rules.
12408 (yylex): Update.
12409 * go-exp.y (yylex): Update.
12410 * f-exp.y (yylex): Update.
12411 * d-exp.y: Update all rules.
12412 (yylex): Update.
12413 * c-exp.y: Update all rules.
12414 (lex_one_token, classify_name, yylex, c_parse): Update.
12415 * ada-exp.y (write_var_or_type, write_name_assoc): Update.
12416
37eedb39
TT
124172019-04-04 Tom Tromey <tom@tromey.com>
12418
12419 * gdbarch.h, gdbarch.c: Rebuild.
12420 * gdbarch.sh (dtrace_parse_probe_argument): Change type.
12421 * stap-probe.h:
12422 (struct stap_parse_info): Replace "parser_state" with
12423 "expr_builder".
12424 * parser-defs.h (struct expr_builder): Rename from "parser_state".
12425 (parser_state): New class.
12426 * parse.c (expr_builder): Rename.
12427 (expr_builder::release): Rename.
12428 (write_exp_elt, write_exp_elt_opcode, write_exp_elt_sym)
12429 (write_exp_elt_msym, write_exp_elt_block, write_exp_elt_objfile)
12430 (write_exp_elt_longcst, write_exp_elt_floatcst)
12431 (write_exp_elt_type, write_exp_elt_intern, write_exp_string)
12432 (write_exp_string_vector, write_exp_bitstring)
12433 (write_exp_msymbol, mark_struct_expression)
12434 (write_dollar_variable)
12435 (insert_type_address_space, increase_expout_size): Replace
12436 "parser_state" with "expr_builder".
12437 * dtrace-probe.c: Replace "parser_state" with "expr_builder".
12438 * amd64-linux-tdep.c (amd64_dtrace_parse_probe_argument): Replace
12439 "parser_state" with "expr_builder".
12440
73923d7e
TT
124412019-04-04 Tom Tromey <tom@tromey.com>
12442
12443 * rust-exp.y: Replace "parse_language" with method call.
12444 * p-exp.y:
12445 (yylex): Replace "parse_language" with method call.
12446 * m2-exp.y:
12447 (yylex): Replace "parse_language" with method call.
12448 * go-exp.y (classify_name): Replace "parse_language" with method
12449 call.
12450 * f-exp.y (yylex): Replace "parse_language" with method call.
12451 * d-exp.y (lex_one_token): Replace "parse_language" with method
12452 call.
12453 * c-exp.y:
12454 (lex_one_token, classify_name, yylex): Replace "parse_language"
12455 with method call.
12456 * ada-exp.y (find_primitive_type, type_char)
12457 (type_system_address): Replace "parse_language" with method call.
12458
fa9f5be6
TT
124592019-04-04 Tom Tromey <tom@tromey.com>
12460
12461 * rust-exp.y: Replace "parse_gdbarch" with method call.
12462 * parse.c (write_dollar_variable, insert_type_address_space):
12463 Replace "parse_gdbarch" with method call.
12464 * p-exp.y (parse_type, yylex): Replace "parse_gdbarch" with method
12465 call.
12466 * objc-lang.c (end_msglist): Replace "parse_gdbarch" with method
12467 call.
12468 * m2-exp.y (parse_type, parse_m2_type, yylex): Replace
12469 "parse_gdbarch" with method call.
12470 * go-exp.y (parse_type, classify_name): Replace "parse_gdbarch"
12471 with method call.
12472 * f-exp.y (parse_type, parse_f_type, yylex): Replace
12473 "parse_gdbarch" with method call.
12474 * d-exp.y (parse_type, parse_d_type, lex_one_token): Replace
12475 "parse_gdbarch" with method call.
12476 * c-exp.y (parse_type, parse_number, classify_name): Replace
12477 "parse_gdbarch" with method call.
12478 * ada-lex.l: Replace "parse_gdbarch" with method call.
12479 * ada-exp.y (parse_type, find_primitive_type, type_char)
12480 (type_system_address): Replace "parse_gdbarch" with method call.
12481
1201a264
TT
124822019-04-04 Tom Tromey <tom@tromey.com>
12483
12484 * dtrace-probe.c (dtrace_probe::build_arg_exprs): Update.
12485 * stap-probe.c (stap_parse_argument): Update.
12486 * stap-probe.h (struct stap_parse_info) <stap_parse_info>: Remove
12487 initial_size parameter.
12488 * rust-exp.y (rust_lex_tests): Update.
12489 * parse.c (parser_state): Update.
12490 (parse_exp_in_context): Update.
12491 * parser-defs.h (struct parser_state) <parser_state>: Remove
12492 "initial_size" parameter.
12493
e3980ce2
TT
124942019-04-04 Tom Tromey <tom@tromey.com>
12495
12496 * parser-defs.h (increase_expout_size): Don't declare.
12497 * parse.c (increase_expout_size): Now static.
12498
e9f8e3f1
TS
124992019-04-04 Thomas Schwinge <thomas@codesourcery.com>
12500
12501 * gnu-nat.c (gnu_nat_target::wait): Fix
12502 target_waitstatus_to_string call.
12503
d7df6549
AB
125042019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
12505
12506 * eval.c (evaluate_subexp_standard): Handle internal functions
12507 during Fortran function call handling.
12508
8bdc1658
AB
125092019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
12510
12511 * NEWS: Mention new internal functions.
12512 * dwarf2read.c (dwarf2_init_complex_target_type): New function.
12513 (read_base_type): Use dwarf2_init_complex_target_type.
12514 * value.c (creal_internal_fn): New function.
12515 (cimag_internal_fn): New function.
12516 (_initialize_values): Register new internal functions.
12517
c29705b7
PW
125182019-04-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12519
12520 * infrun.c (stop_all_threads): If debug_infrun, always
12521 trace the wait status after wait_one, using
12522 target_waitstatus_to_string and target_pid_to_str.
12523 (handle_inferior_event): Replace various trace of
12524 wait status kind by a single trace.
12525 * gdb/gnu-nat.c (gnu_nat_target::wait): Replace local
12526 wait status kind image by target_waitstatus_to_string.
12527 * target/waitstatus.c (target_waitstatus_to_string): Fix
12528 obsolete comment.
12529
05caa1d2
TT
125302019-04-01 Tom Tromey <tromey@adacore.com>
12531
12532 PR symtab/23331:
12533 * dwarf2read.c (partial_die_info::read): Handle DW_AT_ranges.
12534
9d1447e0
SDJ
125352019-04-01 Sergio Durigan Junior <sergiodj@redhat.com>
12536 Pedro Alves <palves@redhat.com>
12537
12538 * top.c (quit_force): Call 'finalize_values'.
12539 * value.c (finalize_values): New function.
12540 * value.h (finalize_values): Declare.
12541
7734102d
EZ
125422019-03-30 Eli Zaretskii <eliz@gnu.org>
12543
12544 * NEWS: Announce $_gdb_major and $_gdb_minor.
12545
12546 * top.c (init_gdb_version_vars): New function.
12547 (gdb_init): Call init_gdb_version_vars.
12548
188e1fa9
TT
125492019-03-29 Tom Tromey <tromey@adacore.com>
12550
12551 * printcmd.c (_initialize_printcmd): Add usage lines. Update some
12552 help text. Remove dead code.
12553
2880242d
KS
125542019-03-29 Keith Seitz <keiths@redhat.com>
12555
12556 From Siddhesh Poyarekar:
12557 * f-lang.h (f77_get_upperbound): Return LONGEST.
12558 (f77_get_lowerbound): Likewise.
12559 * f-typeprint.c (f_type_print_varspec_suffix): Expand
12560 UPPER_BOUND and LOWER_BOUND to LONGEST. Use plongest to format
12561 print them.
12562 (f_type_print_base): Expand UPPER_BOUND to LONGEST. Use
12563 plongest to format print it.
12564 * f-valprint.c (f77_get_lowerbound): Return LONGEST.
12565 (f77_get_upperbound): Likewise.
12566 (f77_get_dynamic_length_of_aggregate): Expand UPPER_BOUND,
12567 LOWER_BOUND to LONGEST.
12568 (f77_create_arrayprint_offset_tbl): Likewise.
12569
cc1defb1
KS
125702019-03-29 Keith Seitz <keiths@redhat.com>
12571
12572 * ada-lang.c (ada_template_to_fixed_record_type_1): Use
12573 %s/pulongest for TYPE_LENGTH instead of %d in format
12574 strings.
12575 * ada-typerint.c (ada_print_type): Likewise.
12576 * amd64-windows-tdep.c (amd64_windows_store_arg_in_reg): Likewise.
12577 * compile/compile-c-support.c (generate_register_struct): Likewise.
12578 * gdbtypes.c (recursive_dump_type): Likewise.
12579 * gdbtypes.h (struct type) <length>: Change type to ULONGEST.
12580 * m2-typeprint.c (m2_array): Use %s/pulongest for TYPE_LENGTH
12581 instead of %d in format strings.
12582 * riscv-tdep.c (riscv_type_alignment): Cast second argument
12583 to std::min to ULONGEST.
12584 * symmisc.c (print_symbol): Use %s/pulongest for TYPE_LENGTH
12585 instead of %d in format strings.
12586 * tracepoint.c (info_scope_command): Likewise.
12587 * typeprint.c (print_offset_data::update)
12588 (print_offset_data::finish): Likewise.
12589 * xtensa-tdep.c (xtensa_store_return_value)
12590 (xtensa_push_dummy_call): Likewise.
12591
e432ccf1
JT
125922019-03-28 Jon Turney <jon.turney@dronecode.org.uk>
12593
12594 * windows-nat.c (display_selector): Fixed format specifications
12595 for 64-bit Cygwin.
12596
65d2b333
PW
125972019-03-28 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12598
12599 * infrun.c (follow_exec): Call target_terminal::ours_for_output.
12600
f489207e
SL
126012019-03-28 Sandra Loosemore <sandra@codesourcery.com>
12602
12603 * nios2-tdep.h (struct gdbarch_tdep): Add is_kernel_helper.
12604 * nios2-tdep.c (nios2_get_next_pc): Skip over kernel helpers.
12605 * nios2-linux-tdep.c (nios2_linux_is_kernel_helper): New.
12606 (nios2_linux_init_abi): Install it.
12607
bffa1015
AH
126082019-03-28 Alan Hayward <alan.hayward@arm.com>
12609
12610 * aarch64-tdep.c (aarch64_vnv_type): Use vector types.
12611
fc96163a
AH
126122019-03-28 Alan Hayward <alan.hayward@arm.com>
12613
12614 * features/aarch64-sve.c (create_feature_aarch64_sve): Add q view.
12615
20dc7e9b
PW
126162019-03-24 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12617 Tom Tromey <tromey@adacore.com>
12618
12619 * minsyms.c (minimal_symbol_upper_bound): Fix buffer overflow.
12620
7f5331a8
JB
126212019-03-26 Joel Brobecker <brobecker@adacore.com>
12622
12623 * gdb-gdb.py.in (StructMainTypePrettyPrinter.bound_img): New method.
12624 (StructMainTypePrettyPrinter.bounds_img): Use new "bound_img"
12625 method to compute the bounds of range types. Also print "[evaluated]"
12626 if the bounds' values come from a dynamic evaluation.
12627
18c77628
AB
126282019-03-26 Andrew Burgess <andrew.burgess@embecosm.com>
12629
12630 * cp-valprint.c (cp_print_value_fields): Don't print trailing
12631 whitespace when pretty printing is on.
12632
53c973f2
AH
126332019-03-26 Alan Hayward <alan.hayward@arm.com>
12634
e79be6e5 12635 * ppc-linux-nat.c: Add include.
53c973f2 12636
d851aa71
AH
126372019-03-26 Alan Hayward <alan.hayward@arm.com>
12638
e79be6e5 12639 * NEWS: Mention AArch64 Pointer Authentication.
d851aa71 12640
2fe7bab7
AH
126412019-03-26 Alan Hayward <alan.hayward@arm.com>
12642
e79be6e5 12643 * arm-linux-nat.c: Add include.
2fe7bab7 12644
068ef30e
SM
126452019-03-25 Simon Marchi <simon.marchi@polymtl.ca>
12646
12647 * source-cache.c (source_cache::get_source_lines): Re-read
12648 fullname after calling open_source_file.
12649
81a24d04
JB
126502019-03-25 John Baldwin <jhb@FreeBSD.org>
12651
12652 * NEWS: Mention TLS support for FreeBSD.
12653
79e7ae11
TT
126542019-03-25 Tom Tromey <tromey@adacore.com>
12655
12656 * minsyms.c (BUNCH_SIZE): Update comment.
12657 (~minimal_symbol_reader): Remove old comment.
12658 (compact_minimal_symbols): Update comment.
12659 (minimal_symbol_reader::install): Remove old comment. Update
12660 other comments.
12661
d45963c2
AH
126622019-03-25 Alan Hayward <alan.hayward@arm.com>
12663
12664 * s390-linux-nat.c: Add include.
12665
0f83012e
AH
126662019-03-25 Alan Hayward <alan.hayward@arm.com>
12667
12668 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
12669 Call linux_get_hwcap.
12670 * aarch64-linux-tdep.c (aarch64_linux_core_read_description):
12671 Likewise.
12672 (aarch64_linux_get_hwcap): Remove function.
12673 * aarch64-linux-tdep.h (aarch64_linux_get_hwcap): Remove
12674 declaration.
12675 * arm-linux-nat.c (arm_linux_nat_target::read_description):Call
12676 linux_get_hwcap.
12677 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
12678 * linux-tdep.c (linux_get_hwcap): Add function.
12679 (linux_get_hwcap2): Likewise.
12680 * linux-tdep.h (linux_get_hwcap): Add declaration.
12681 (linux_get_hwcap2): Likewise.
12682 * ppc-linux-nat.c (ppc_linux_get_hwcap): Remove function.
12683 (ppc_linux_get_hwcap2): Likewise.
12684 (ppc_linux_nat_target::region_ok_for_hw_watchpoint): Call
12685 linux_get_hwcap.
12686 (ppc_linux_nat_target::insert_watchpoint): Likewise.
12687 (ppc_linux_nat_target::watchpoint_addr_within_range): Likewise.
12688 (ppc_linux_nat_target::read_description): Likewise.
12689 * ppc-linux-tdep.c (ppc_linux_core_read_description): Likewise.
12690 * s390-linux-nat.c: Likewise.
12691 * s390-linux-tdep.c (s390_core_read_description): Likewise.
12692
6640a367
TT
126932019-03-24 Tom Tromey <tom@tromey.com>
12694
12695 * ada-lang.c (standard_lookup): Simplify initialization.
12696 (ada_lookup_symbol_nonlocal): Simplify return.
12697 * solib-spu.c (spu_lookup_lib_symbol): Simplify return.
12698 * solib-darwin.c (darwin_lookup_lib_symbol): Simplify return.
12699 * solib-svr4.c (elf_lookup_lib_symbol): Simplify return.
12700 * rust-lang.c (rust_lookup_symbol_nonlocal): Simplify
12701 initialization.
12702 * solib.c (solib_global_lookup): Simplify.
12703 * symtab.c (null_block_symbol): Remove.
12704 (symbol_cache_lookup): Simplify returns.
12705 (lookup_language_this): Simplify returns.
12706 (lookup_symbol_aux): Simplify return.
12707 (lookup_local_symbol): Simplify returns.
12708 (lookup_global_symbol_from_objfile): Simplify return.
12709 (lookup_symbol_in_objfile_symtabs)
12710 (lookup_symbol_in_objfile_from_linkage_name): Simplify return.
12711 (lookup_symbol_via_quick_fns, lookup_symbol_in_static_block)
12712 (lookup_static_symbol, lookup_global_symbol): Simplify return.
12713 * cp-namespace.c (cp_lookup_bare_symbol)
12714 (cp_search_static_and_baseclasses, cp_lookup_symbol_via_imports)
12715 (cp_lookup_symbol_via_all_imports, cp_lookup_nested_symbol_1)
12716 (cp_lookup_nested_symbol): Don't use null_block_symbol.
12717 (cp_lookup_symbol_via_imports): Simplify initialization.
12718 (find_symbol_in_baseclass): Likewise.
12719 * symtab.h (null_block_symbol): Remove.
12720 * d-namespace.c (d_lookup_symbol): Don't use null_block_symbol.
12721 (d_lookup_nested_symbol, d_lookup_symbol_imports)
12722 (d_lookup_symbol_module): Likewise.
12723 (find_symbol_in_baseclass): Simplify initialization.
12724
a930ebcd
TT
127252019-03-24 Tom Tromey <tom@tromey.com>
12726
12727 * expression.h: Don't include symtab.h.
12728 (struct block): Forward declare.
12729
582942f4
TT
127302019-03-24 Tom Tromey <tom@tromey.com>
12731
12732 * c-exp.y (typebase): Remove casts.
12733 * gdbtypes.c (lookup_unsigned_typename, )
12734 (lookup_signed_typename): Remove cast.
12735 * eval.c (parse_to_comma_and_eval): Remove cast.
12736 * parse.c (write_dollar_variable): Remove cast.
12737 * block.h (struct block) <superblock>: Now const.
12738 * symfile-debug.c (debug_qf_map_matching_symbols): Update.
12739 * psymtab.c (psym_map_matching_symbols): Make "block" const.
12740 (map_block): Make "block" const.
12741 * symfile.h (struct quick_symbol_functions)
12742 <map_matching_symbols>: Constify block argument to "callback".
12743 * symtab.c (basic_lookup_transparent_type_quick): Make "block"
12744 const.
12745 (find_pc_sect_compunit_symtab): Make "b" const.
12746 (find_symbol_at_address): Likewise.
12747 (search_symbols): Likewise.
12748 * dwarf2read.c (dw2_lookup_symbol): Make "block" const.
12749 (dw2_debug_names_lookup_symbol): Likewise.
12750 (dw2_map_matching_symbols): Update.
12751 * p-valprint.c (pascal_val_print): Remove "block".
12752 * ada-lang.c (ada_add_global_exceptions): Make "b" const.
12753 (aux_add_nonlocal_symbols): Make "block" const.
12754 (resolve_subexp): Remove cast.
12755 * linespec.c (iterate_over_all_matching_symtabs): Make "block"
12756 const.
12757 (iterate_over_file_blocks): Likewise.
12758 * f-exp.y (%union) <bval>: Remove.
12759 * coffread.c (patch_opaque_types): Make "b" const.
12760 * spu-tdep.c (spu_catch_start): Make "block" const.
12761 * c-valprint.c (print_unpacked_pointer): Remove "block".
12762 * symmisc.c (dump_symtab_1): Make "b" const.
12763 (block_depth): Make "block" const.
12764 * d-exp.y (%union) <bval>: Remove.
12765 * cp-support.h (cp_lookup_rtti_type): Update.
12766 * cp-support.c (cp_lookup_rtti_type): Make "block" const.
12767 * psymtab.c (psym_lookup_symbol): Make "block" const.
12768 (maintenance_check_psymtabs): Make "b" const.
12769 * python/py-framefilter.c (extract_sym): Make "sym_block" const.
12770 (enumerate_locals, enumerate_args): Update.
12771 * python/py-symtab.c (stpy_global_block): Make "block" const.
12772 (stpy_static_block): Likewise.
12773 * inline-frame.c (block_starting_point_at): Make "new_block"
12774 const.
12775 * block.c (find_block_in_blockvector): Make return type const.
12776 (blockvector_for_pc_sect): Make "b" const.
12777 (find_block_in_blockvector): Make "b" const.
12778
7ad417dd
TT
127792019-03-23 Tom Tromey <tom@tromey.com>
12780
12781 * varobj.c (varobj_create): Update.
12782 * symfile.c (clear_symtab_users): Don't reset innermost_block.
12783 * printcmd.c (display_command, do_one_display): Don't reset
12784 innermost_block.
12785 * parser-defs.h (enum innermost_block_tracker_type): Move to
12786 expression.h.
12787 (innermost_block): Update comment.
12788 * parse.c (parse_exp_1): Add tracker_types parameter.
12789 (parse_exp_in_context): Rename from parse_exp_in_context_1. Add
12790 tracker_types parameter. Reset innermost_block.
12791 (parse_exp_in_context): Remove.
12792 (parse_expression_for_completion): Update.
12793 * objfiles.c (~objfile): Don't reset expression_context_block or
12794 innermost_block.
12795 * expression.h (enum innermost_block_tracker_type): Move from
12796 parser-defs.h.
12797 (parse_exp_1): Add tracker_types parameter.
12798 * breakpoint.c (set_breakpoint_condition, watch_command_1): Don't
12799 reset innermost_block.
12800
b366c208
TT
128012019-03-23 Tom Tromey <tom@tromey.com>
12802
12803 * objfiles.h: Include bcache.h.
12804
9bb9b2f9
TT
128052019-03-23 Tom Tromey <tom@tromey.com>
12806
12807 * linespec.c (get_current_search_block): Use
12808 scoped_restore_current_language.
12809 * symmisc.c (dump_symtab): Use scoped_restore_current_language.
12810
59c28372
AH
128112019-03-22 Alan Hayward <alan.hayward@arm.com>
12812 Jiong Wang <jiong.wang@arm.com>
12813
12814 * aarch64-linux-tdep.c
12815 (aarch64_linux_iterate_over_regset_sections): Check for pauth
12816 section.
12817 * aarch64-linux-tdep.h (AARCH64_LINUX_SIZEOF_PAUTH): New define.
12818
17e116a7
AH
128192019-03-22 Alan Hayward <alan.hayward@arm.com>
12820 Jiong Wang <jiong.wang@arm.com>
12821
12822 * aarch64-tdep.c (aarch64_analyze_prologue): Check for pauth
12823 instructions.
12824 (aarch64_analyze_prologue_test): Add PACIASP test.
12825 (aarch64_prologue_prev_register): Unmask PC value.
12826
11e1b75f
AH
128272019-03-22 Alan Hayward <alan.hayward@arm.com>
12828 Jiong Wang <jiong.wang@arm.com>
12829
12830 * aarch64-tdep.c (aarch64_frame_unmask_address): New function.
12831 (aarch64_dwarf2_prev_register): Unmask PC value.
12832 (aarch64_dwarf2_frame_init_reg): Init pauth registers.
12833 (aarch64_execute_dwarf_cfa_vendor_op): Check for
12834 DW_CFA_AARCH64_negate_ra_state.
12835 (aarch64_gdbarch_init): Add aarch64_execute_dwarf_cfa_vendor_op.
12836
34dcc7cf
AH
128372019-03-22 Alan Hayward <alan.hayward@arm.com>
12838 Jiong Wang <jiong.wang@arm.com>
12839
12840 * aarch64-tdep.c (aarch64_dwarf_reg_to_regnum): Check for pauth
12841 registers.
12842 (aarch64_pseudo_register_name): Likewise.
12843 (aarch64_pseudo_register_type): Likewise.
12844 (aarch64_pseudo_register_reggroup_p): Likewise.
12845 (aarch64_gdbarch_init): Add pauth registers.
12846 * aarch64-tdep.h (AARCH64_DWARF_PAUTH_RA_STATE): New define.
12847 (AARCH64_DWARF_PAUTH_DMASK): Likewise.
12848 (AARCH64_DWARF_PAUTH_CMASK): Likewise.
12849 (struct gdbarch_tdep): Add regnum for ra_state.
12850
1ef53e6b
AH
128512019-03-22 Alan Hayward <alan.hayward@arm.com>
12852 Jiong Wang <jiong.wang@arm.com>
12853
12854 * arch/aarch64.h (AARCH64_PAUTH_REGS_SIZE): New define.
12855
76bed0fd
AH
128562019-03-22 Alan Hayward <alan.hayward@arm.com>
12857 Jiong Wang <jiong.wang@arm.com>
12858
12859 * aarch64-linux-nat.c (fetch_pauth_masks_from_thread): New
12860 function.
12861 (aarch64_linux_nat_target::fetch_registers): Read pauth registers.
12862 * aarch64-tdep.c (aarch64_cannot_store_register): New function.
12863 (aarch64_gdbarch_init): Add puth registers.
12864 * aarch64-tdep.h (struct gdbarch_tdep): Add pauth features.
12865 * arch/aarch64.h (AARCH64_PAUTH_DMASK_REGNUM): New define.
12866 (AARCH64_PAUTH_CMASK_REGNUM): Likewise.
12867
ee4fbcfa
AH
128682019-03-22 Alan Hayward <alan.hayward@arm.com>
12869 Jiong Wang <jiong.wang@arm.com>
12870
12871 * aarch64-linux-nat.c
12872 (aarch64_linux_nat_target::read_description): Read PACA hwcap.
12873 * aarch64-linux-tdep.c
12874 (aarch64_linux_core_read_description): Likewise.
12875 (aarch64_linux_get_hwcap): New function.
12876 * aarch64-linux-tdep.h (AARCH64_HWCAP_PACA): New define.
12877 (aarch64_linux_get_hwcap): New declaration.
12878
6dc0ebde
AH
128792019-03-22 Alan Hayward <alan.hayward@arm.com>
12880 Jiong Wang <jiong.wang@arm.com>
12881
12882 * aarch64-linux-nat.c
12883 (aarch64_linux_nat_target::read_description): Add pauth param.
12884 * aarch64-linux-tdep.c
12885 (aarch64_linux_core_read_description): Likewise.
12886 * aarch64-tdep.c (struct target_desc): Add in pauth.
12887 (aarch64_read_description): Add pauth param.
12888 (aarch64_gdbarch_init): Likewise.
12889 * aarch64-tdep.h (aarch64_read_description): Likewise.
12890 * arch/aarch64.c (aarch64_create_target_description): Likewise.
12891 * arch/aarch64.h (aarch64_create_target_description): Likewise.
12892 * features/Makefile: Add new files.
12893 * features/aarch64-pauth.c: New file.
12894 * features/aarch64-pauth.xml: New file.
12895
595915c1
TT
128962019-03-20 Tom Tromey <tromey@adacore.com>
12897
12898 * infrun.c (handle_inferior_event): Rename from
12899 handle_inferior_event_1. Create a scoped_value_mark.
12900 (handle_inferior_event): Remove.
12901
4c7d57e7
TT
129022019-03-19 Tom Tromey <tromey@adacore.com>
12903
12904 * mi/mi-interp.c (mi_on_normal_stop_1): Only show displays once.
12905 * infrun.h (print_stop_event): Add "displays" parameter.
12906 * infrun.c (print_stop_event): Add "displays" parameter.
12907
cb246234
PA
129082019-03-19 Pedro Alves <palves@redhat.com>
12909
12910 * tui/tui-out.c (tui_ui_out::do_field_string): Simplify.
12911 (tui_ui_out::do_text): Add comments. Reset M_LINE to 0 instead of
12912 to -1. Fix TABs vs spaces.
12913 (tui_ui_out::tui_ui_out): Don't initialize fields here.
12914 * tui/tui-out.h (tui_ui_out) Add intro comments.
12915 <m_line, m_start_of_line>: In-class initialize, and add describing
12916 comment.
12917
3a0e45b2
AH
129182019-03-18 Alan Hayward <alan.hayward@arm.com>
12919
12920 * arm-linux-nat.c (arm_linux_insert_hw_breakpoint1): Fix
12921 variable names.
12922 (arm_linux_remove_hw_breakpoint1): Use a gdb::function_view.
12923
5371b850
PA
129242019-03-18 Pedro Alves <palves@redhat.com>
12925 Eli Zaretskii <eliz@gnu.org>
12926
12927 * tui/tui-out.c (tui_ui_out::tui_ui_out): Fix initialization of
12928 m_line and m_start_of_line.
12929
b17c4cd0
EZ
129302019-03-18 Eli Zaretskii <eliz@gnu.org>
12931
12932 * tui/tui-io.c (gdb_wgetch): Don't echo CR.
12933 (tui_getc): When gdb_wgetch returns a CR, behave the same as when
12934 it returns a newline. This fixes a regression in TU mode, whereby
12935 the next line is output on the same screen line as the user input.
12936
4bd56d18
TT
129372019-03-18 Tom Tromey <tromey@adacore.com>
12938
12939 * minsyms.c (minimal_symbol_reader::install): Remove call to
12940 obstack_blank.
12941
55c10aca
PA
129422019-03-18 Pedro Alves <palves@redhat.com>
12943
12944 * tui/tui-io.c (reverse_mode_p, reverse_save_bg, reverse_save_fg):
12945 New globals.
12946 (apply_style): New, factored out from ...
12947 (apply_ansi_escape): ... this. Handle reverse video mode.
12948 (tui_set_reverse_mode): New function.
12949 * tui/tui-io.h (tui_set_reverse_mode): New declaration.
12950 * tui/tui-winsource.c (tui_show_source_line): Use
12951 tui_set_reverse_mode instead of setting A_STANDOUT.
12952 * ui-style.h (struct ui_file_style) <set_reverse, set_fg, set_bg>:
12953 New setter methods.
12954
647bb750
HD
129552019-03-18 Hannes Domani <ssbssa@yahoo.de>
12956
12957 * tui/tui-source.c (copy_source_line): Fix handling of 'column'.
12958 Handle tabs.
12959
bff8c71f
TT
129602019-03-18 Tom Tromey <tromey@adacore.com>
12961
12962 * ada-lang.c (empty_array): Add "high" parameter.
12963 (ada_evaluate_subexp): Update.
12964
58785d98
ST
129652019-03-17 Sergei Trofimovich <siarheit@google.com>
12966
12967 * unittests/string_view-selftests.c: Define
12968 _initialize_string_view_selftests unconditionally.
12969
d4cbef22
ВМ
129702019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
12971
12972 PR gdb/24350
12973 * windows-nat.c (windows_make_so): Remove unused text_vma variable.
12974
fce4c071
ВМ
129752019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
12976
12977 PR gdb/24351
12978 * windows-nat.c (display_selector): Fix format specifiers.
12979
f7f0a123
EZ
129802019-03-17 Eli Zaretskii <eliz@gnu.org>
12981
12982 * tui/tui-winsource.c (tui_set_is_exec_point_at): Call
12983 tui_refill_source_window instead of tui_refresh_win, to update the
12984 current execution line. This fixes redisplay of the current line
12985 when stepping through the code with "next" or "step".
12986
ab42892f
EZ
129872019-03-16 Eli Zaretskii <eliz@gnu.org>
12988
12989 * source-cache.c (source_cache::get_source_lines): Call
12990 find_source_lines to initialize s->nlines. This fixes vertical
12991 scrolling of TUI source window when the DOWN arrow is pressed.
12992
8d8c087f
PW
129932019-03-16 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12994
12995 * auto-load.c (_initialize_auto_load): Fix 'This options has'.
12996 linux-thread-db.c (_initialize_thread_db): Likewise.
12997
798e1c30
EZ
129982019-03-16 Eli Zaretskii <eliz@gnu.org>
12999
13000 * tui/tui-winsource.c (tui_show_source_line): Revert "Use
13001 wclrtoeol in tui_show_source_line". This reverts changes made in
13002 commit 4a3045920bbe4e50a0f4920b0fdc4e88ef23015c.
13003
eefba3da
TT
130042019-03-15 Tom Tromey <tom@tromey.com>
13005
13006 * symtab.h (struct minimal_symbol): Derive from
13007 general_symbol_info.
13008 (MSYMBOL_VALUE, MSYMBOL_VALUE_RAW_ADDRESS)
13009 (MSYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_BYTES)
13010 (MSYMBOL_BLOCK_VALUE, MSYMBOL_VALUE_CHAIN, MSYMBOL_LANGUAGE)
13011 (MSYMBOL_SECTION, MSYMBOL_OBJ_SECTION, MSYMBOL_NATURAL_NAME)
13012 (MSYMBOL_LINKAGE_NAME, MSYMBOL_DEMANGLED_NAME)
13013 (MSYMBOL_SEARCH_NAME): Update.
13014 (MSYMBOL_SET_LANGUAGE, MSYMBOL_SET_NAMES): Remove.
13015 * solib.c (gdb_bfd_lookup_symbol_from_symtab): Don't use memset.
13016 * minsyms.c (minimal_symbol_reader::record_full): Update.
13017
0de2420c
TT
130182019-03-15 Tom Tromey <tom@tromey.com>
13019
13020 * minsyms.c (minimal_symbol_reader::install): Use memcpy.
13021
042d75e4
TT
130222019-03-15 Tom Tromey <tom@tromey.com>
13023
13024 * objfiles.h (struct objfile_per_bfd_storage) <msymbols>: Now a
13025 unique_xmalloc_ptr.
13026 (objfile::msymbols_range::begin, objfile::msymbols_range::end):
13027 Update.
13028 * minsyms.c (lookup_minimal_symbol_by_pc_section)
13029 (build_minimal_symbol_hash_tables)
13030 (minimal_symbol_reader::install): Update.
13031
db92718b
TT
130322019-03-15 Tom Tromey <tom@tromey.com>
13033
13034 * symtab.c (create_demangled_names_hash): Update.
13035 (symbol_set_names): Update.
13036 * objfiles.h (struct objfile_per_bfd_storage)
13037 <demangled_names_hash>: Now an htab_up.
13038 * objfiles.c (objfile_per_bfd_storage): Simplify.
13039
d6797f46
TT
130402019-03-15 Tom Tromey <tom@tromey.com>
13041
13042 * objfiles.h (struct objfile_per_bfd_storage): Declare
13043 destructor.
13044 * objfiles.c (objfile_per_bfd_storage::~objfile_per_bfd_storage):
13045 New.
13046 (get_objfile_bfd_data): Use new. Don't initialize
13047 language_of_main.
13048 (free_objfile_per_bfd_storage): Remove.
13049 (objfile_bfd_data_free, objfile::~objfile): Use delete.
13050
741d7538
TT
130512019-03-15 Tom Tromey <tom@tromey.com>
13052
13053 * symfile.c (reread_symbols): Update.
13054 * objfiles.c (objfile::objfile): Update.
13055 * minsyms.h (terminate_minimal_symbol_table): Don't declare.
13056 * minsyms.c (lookup_minimal_symbol_by_pc_section): Update
13057 comment.
13058 (minimal_symbol_reader::install): Update.
13059 (terminate_minimal_symbol_table): Remove.
13060 * jit.c (jit_object_close_impl): Update.
13061
788c80d1
TT
130622019-03-15 Tom Tromey <tom@tromey.com>
13063
13064 * minsyms.c (minimal_symbol_reader::record_full): Remove some
13065 initializations.
13066
1b7a07cb
TT
130672019-03-15 Tom Tromey <tom@tromey.com>
13068
13069 * objfiles.h (struct objfile_per_bfd_storage)
13070 <demangled_hash_languages>: Now a bitset.
13071 * minsyms.c (add_minsym_to_demangled_hash_table): Update.
13072 (lookup_minimal_symbol): Update.
13073
3db066bc
TT
130742019-03-15 Tom Tromey <tom@tromey.com>
13075
13076 * minsyms.h (class minimal_symbol_reader) <record_with_info>:
13077 Don't return the symbol.
13078 * coffread.c (record_minimal_symbol): Use record_full.
13079
3fff2c37
EZ
130802019-03-14 Eli Zaretskii <eliz@gnu.org>
13081
13082 The MS-Windows port of ncurses fails to switch to a color pair if
13083 one or both of the colors are the implicit default colors. This
13084 change records the default colors when TUI is initialized, and
13085 then specifies them explicitly when a color pair uses the default
13086 colors. This allows color styling in TUI mode on MS-Windows.
13087
13088 * tui/tui-io.c [__MINGW32__]: Include windows.h. Declare
13089 ncurses_norm_attr.
13090 (tui_initialize_io) [__MINGW32__]: Record the default terminal
13091 colors in ncurses_norm_attr.
13092 (apply_ansi_escape) [__MINGW32__]: If a color in a color pair is
13093 "none", replace it with the default color recorded in
13094 ncurses_norm_attr.
13095
3b336828
TT
130962019-03-14 Tom Tromey <tromey@adacore.com>
13097
13098 * source-cache.h (class source_cache) <get_source_lines>: Return
13099 std::string.
13100 * source-cache.c (source_cache::extract_lines): Handle case where
13101 first_pos==npos. Return std::string.
13102 (source_cache::get_source_lines): Update.
13103
d085f989
TT
131042019-03-14 Tom Tromey <tromey@adacore.com>
13105
13106 * NEWS: Add item for "style sources" commands.
13107 * source-cache.c (source_cache::get_source_lines): Check
13108 source_styling.
13109 * cli/cli-style.c (source_styling): New global.
13110 (_initialize_cli_style): Add "style sources" commands.
13111 (show_style_sources): New function.
13112 * cli/cli-style.h (source_styling): Declare.
13113
6f11e682
TT
131142019-03-14 Pedro Alves <palves@redhat.com>
13115 Tom Tromey <tromey@adacore.com>
13116
13117 * tui/tui-winsource.h (tui_refill_source_window): Declare.
13118 * tui/tui-winsource.c (tui_refill_source_window): New function,
13119 from...
13120 (tui_horizontal_source_scroll): ... here. Move some logic.
13121 * cli/cli-style.c (set_style_enabled): Notify new observable.
13122 * tui/tui-hooks.c (tui_redisplay_source): New function.
13123 (tui_attach_detach_observers): Attach or detach
13124 tui_redisplay_source.
13125 * observable.h (source_styling_changed): New observable.
13126 * observable.c: Define source_styling_changed observable.
13127
a068643d
TT
131282019-03-13 Tom Tromey <tromey@adacore.com>
13129
13130 * i386-gnu-nat.c (i386_gnu_nat_target::fetch_registers)
13131 (i386_gnu_nat_target::store_registers): Update.
13132 * target-debug.h (target_debug_print_std_string): New macro.
13133 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
13134 * windows-tdep.c (display_one_tib): Update.
13135 * tui/tui-stack.c (tui_make_status_line): Update.
13136 * top.c (print_inferior_quit_action): Update.
13137 * thread.c (thr_try_catch_cmd): Update.
13138 (add_thread_with_info): Update.
13139 (thread_target_id_str): Update.
13140 (thr_try_catch_cmd): Update.
13141 (thread_command): Update.
13142 (thread_find_command): Update.
13143 * record-btrace.c (record_btrace_target::info_record)
13144 (record_btrace_resume_thread, record_btrace_target::resume)
13145 (record_btrace_cancel_resume, record_btrace_step_thread)
13146 (record_btrace_target::wait, record_btrace_target::wait)
13147 (record_btrace_target::wait, record_btrace_target::stop): Update.
13148 * progspace.c (print_program_space): Update.
13149 * process-stratum-target.c
13150 (process_stratum_target::thread_address_space): Update.
13151 * linux-fork.c (linux_fork_mourn_inferior)
13152 (detach_checkpoint_command, info_checkpoints_command)
13153 (linux_fork_context): Update.
13154 (linux_fork_detach): Update.
13155 (class scoped_switch_fork_info): Update.
13156 (delete_checkpoint_command): Update.
13157 * infrun.c (follow_fork_inferior): Update.
13158 (follow_fork_inferior): Update.
13159 (proceed_after_vfork_done): Update.
13160 (handle_vfork_child_exec_or_exit): Update.
13161 (follow_exec): Update.
13162 (displaced_step_prepare_throw): Update.
13163 (displaced_step_restore): Update.
13164 (start_step_over): Update.
13165 (resume_1): Update.
13166 (clear_proceed_status_thread): Update.
13167 (proceed): Update.
13168 (print_target_wait_results): Update.
13169 (do_target_wait): Update.
13170 (context_switch): Update.
13171 (stop_all_threads): Update.
13172 (restart_threads): Update.
13173 (finish_step_over): Update.
13174 (handle_signal_stop): Update.
13175 (switch_back_to_stepped_thread): Update.
13176 (keep_going_pass_signal): Update.
13177 (print_exited_reason): Update.
13178 (normal_stop): Update.
13179 * inferior.c (inferior_pid_to_str): Change return type.
13180 (print_selected_inferior): Update.
13181 (add_inferior): Update.
13182 (detach_inferior): Update.
13183 * dummy-frame.c (fprint_dummy_frames): Update.
13184 * dcache.c (dcache_info_1): Update.
13185 * btrace.c (btrace_enable, btrace_disable, btrace_teardown)
13186 (btrace_fetch, btrace_clear): Update.
13187 * linux-tdep.c (linux_core_pid_to_str): Change return type.
13188 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): Change return
13189 type.
13190 * fbsd-tdep.c (fbsd_core_pid_to_str): Change return type.
13191 * sol2-tdep.h (sol2_core_pid_to_str): Change return type.
13192 * sol2-tdep.c (sol2_core_pid_to_str): Change return type.
13193 * gdbarch.c, gdbarch.h: Rebuild.
13194 * gdbarch.sh (core_pid_to_str): Change return type.
13195 * windows-nat.c (struct windows_nat_target) <pid_to_str>: Change
13196 return type.
13197 (windows_nat_target::pid_to_str): Change return type.
13198 (windows_delete_thread): Update.
13199 (windows_nat_target::attach): Update.
13200 (windows_nat_target::files_info): Update.
13201 * target-delegates.c: Rebuild.
13202 * sol-thread.c (class sol_thread_target) <pid_to_str>: Change
13203 return type.
13204 (sol_thread_target::pid_to_str): Change return type.
13205 * remote.c (class remote_target) <pid_to_str>: Change return
13206 type.
13207 (remote_target::pid_to_str): Change return type.
13208 (extended_remote_target::attach, remote_target::remote_stop_ns)
13209 (remote_target::remote_notif_remove_queued_reply)
13210 (remote_target::push_stop_reply, remote_target::disable_btrace):
13211 Update.
13212 (extended_remote_target::attach): Update.
13213 * remote-sim.c (struct gdbsim_target) <pid_to_str>: Change return
13214 type.
13215 (gdbsim_target::pid_to_str): Change return type.
13216 * ravenscar-thread.c (struct ravenscar_thread_target)
13217 <pid_to_str>: Change return type.
13218 (ravenscar_thread_target::pid_to_str): Change return type.
13219 * procfs.c (class procfs_target) <pid_to_str>: Change return
13220 type.
13221 (procfs_target::pid_to_str): Change return type.
13222 (procfs_target::attach): Update.
13223 (procfs_target::detach): Update.
13224 (procfs_target::fetch_registers): Update.
13225 (procfs_target::store_registers): Update.
13226 (procfs_target::wait): Update.
13227 (procfs_target::files_info): Update.
13228 * obsd-nat.c (obsd_nat_target::pid_to_str): Change return type.
13229 * nto-procfs.c (struct nto_procfs_target) <pid_to_str>: Change
13230 return type.
13231 (nto_procfs_target::pid_to_str): Change return type.
13232 (nto_procfs_target::files_info, nto_procfs_target::attach): Update.
13233 * linux-thread-db.c (class thread_db_target) <pid_to_str>: Change
13234 return type.
13235 * linux-nat.c (linux_nat_target::pid_to_str): Change return type.
13236 (exit_lwp): Update.
13237 (attach_proc_task_lwp_callback, get_detach_signal)
13238 (detach_one_lwp, resume_lwp, linux_nat_target::resume)
13239 (linux_nat_target::resume, wait_lwp, stop_callback)
13240 (maybe_clear_ignore_sigint, stop_wait_callback, status_callback)
13241 (save_stop_reason, select_event_lwp, linux_nat_filter_event)
13242 (linux_nat_wait_1, resume_stopped_resumed_lwps)
13243 (linux_nat_target::wait, linux_nat_stop_lwp): Update.
13244 * inf-ptrace.c (inf_ptrace_target::pid_to_str): Change return
13245 type.
13246 (inf_ptrace_target::attach): Update.
13247 (inf_ptrace_target::files_info): Update.
13248 * go32-nat.c (struct go32_nat_target) <pid_to_str>: Change return
13249 type.
13250 (go32_nat_target::pid_to_str): Change return type.
13251 * gnu-nat.c (gnu_nat_target::pid_to_str): Change return type.
13252 (gnu_nat_target::wait): Update.
13253 (gnu_nat_target::wait): Update.
13254 (gnu_nat_target::resume): Update.
13255 * fbsd-nat.c (fbsd_nat_target::pid_to_str): Change return type.
13256 (fbsd_nat_target::wait): Update.
13257 * darwin-nat.c (darwin_nat_target::pid_to_str): Change return
13258 type.
13259 (darwin_nat_target::attach): Update.
13260 * corelow.c (class core_target) <pid_to_str>: Change return type.
13261 (core_target::pid_to_str): Change return type.
13262 * target.c (normal_pid_to_str): Change return type.
13263 (default_pid_to_str): Likewise.
13264 (target_pid_to_str): Change return type.
13265 (target_translate_tls_address): Update.
13266 (target_announce_detach): Update.
13267 * bsd-uthread.c (struct bsd_uthread_target) <pid_to_str>: Change
13268 return type.
13269 (bsd_uthread_target::pid_to_str): Change return type.
13270 * bsd-kvm.c (class bsd_kvm_target) <pid_to_str>: Change return
13271 type.
13272 (bsd_kvm_target::pid_to_str): Change return type.
13273 * aix-thread.c (class aix_thread_target) <pid_to_str>: Change
13274 return type.
13275 (aix_thread_target::pid_to_str): Change return type.
13276 * target.h (struct target_ops) <pid_to_str>: Change return type.
13277 (target_pid_to_str, normal_pid_to_str): Likewise.
13278 * obsd-nat.h (class obsd_nat_target) <pid_to_str>: Change return
13279 type.
13280 * linux-nat.h (class linux_nat_target) <pid_to_str>: Change return
13281 type.
13282 * inf-ptrace.h (struct inf_ptrace_target) <pid_to_str>: Change
13283 return type.
13284 * gnu-nat.h (struct gnu_nat_target) <pid_to_str>: Change return
13285 type.
13286 * fbsd-nat.h (class fbsd_nat_target) <pid_to_str>: Change return
13287 type.
13288 * darwin-nat.h (class darwin_nat_target) <pid_to_str>: Change
13289 return type.
13290
b4be1b06
SM
132912019-03-13 Simon Marchi <simon.marchi@ericsson.com>
13292
13293 * NEWS: Mention that the new default MI version is 3. Mention
13294 changes to the output of commands and events that deal with
13295 multi-location breakpoints.
13296 * breakpoint.c: Include "mi/mi-out.h".
13297 (print_one_breakpoint): Change output syntax if using MI version
13298 >= 3.
13299 * mi/mi-main.h (mi_cmd_fix_multi_location_breakpoint_output):
13300 New.
13301 (mi_multi_location_breakpoint_output_fixed): New.
13302 * mi/mi-main.c (fix_multi_location_breakpoint_output): New.
13303 (mi_cmd_fix_multi_location_breakpoint_output): New.
13304 (mi_multi_location_breakpoint_output_fixed): New.
13305 * mi/mi-cmds.c (mi_cmds): Register command
13306 -fix-multi-location-breakpoint-output.
13307 * mi/mi-out.c (mi_out_new): Instantiate version 3 when using
13308 interpreter "mi".
13309
8e5e5494
SM
133102019-03-13 Simon Marchi <simon.marchi@polymtl.ca>
13311
13312 * mi/mi-out.h (mi_out_new): Change parameter to const char *.
13313 * mi/mi-out.c (mi_out_new): Change parameter to const char *,
13314 instantiate mi_ui_out based on interpreter name.
13315 * mi/mi-interp.c (mi_interp::init): Use the new mi_out_new.
13316 * mi/mi-main.c (mi_load_progress): Likewise.
13317
197df35e
JB
133182019-03-12 John Baldwin <jhb@FreeBSD.org>
13319
13320 * NEWS: Combine separate "New targets" sections for 8.3.
13321
8399425f
JB
133222019-03-12 John Baldwin <jhb@FreeBSD.org>
13323
13324 * ppc-fbsd-tdep.c (ppcfbsd_get_thread_local_address): New.
13325 (ppcfbsd_init_abi): Install gdbarch
13326 "fetch_tls_load_module_address" and "get_thread_local_address"
13327 methods.
13328
b0f87ed0
JB
133292019-03-12 John Baldwin <jhb@FreeBSD.org>
13330
13331 * riscv-fbsd-tdep.c (riscv_fbsd_get_thread_local_address): New.
13332 (riscv_fbsd_init_abi): Install gdbarch
13333 "fetch_tls_load_module_address" and "get_thread_local_address"
13334 methods.
13335
ce25aa57
JB
133362019-03-12 John Baldwin <jhb@FreeBSD.org>
13337
13338 * i386-fbsd-tdep.c (i386fbsd_get_thread_local_address): New.
13339 (i386fbsd_init_abi): Install gdbarch
13340 "fetch_tls_load_module_address" and "get_thread_local_address"
13341 methods.
13342
f5424cfa
JB
133432019-03-12 John Baldwin <jhb@FreeBSD.org>
13344
13345 * amd64-fbsd-tdep.c (amd64fbsd_get_thread_local_address): New.
13346 (amd64fbsd_init_abi): Install gdbarch
13347 "fetch_tls_load_module_address" and "get_thread_local_address"
13348 methods.
13349
945f3901
JB
133502019-03-12 John Baldwin <jhb@FreeBSD.org>
13351
13352 * fbsd-tdep.c (fbsd_pspace_data_handle): New variable.
13353 (struct fbsd_pspace_data): New type.
13354 (get_fbsd_pspace_data, fbsd_pspace_data_cleanup)
13355 (fbsd_read_integer_by_name, fbsd_fetch_rtld_offsets)
13356 (fbsd_get_tls_index, fbsd_get_thread_local_address): New function.
13357 (_initialize_fbsd_tdep): Initialize 'fbsd_pspace_data_handle'.
13358 * fbsd-tdep.c (fbsd_get_thread_local_address): New prototype.
13359
ef0bd204
JB
133602019-03-12 John Baldwin <jhb@FreeBSD.org>
13361
13362 * gdbtypes.c (lookup_struct_elt): New function.
13363 (lookup_struct_elt_type): Reimplement via lookup_struct_elt.
13364 * gdbtypes.h (struct struct_elt): New type.
13365 (lookup_struct_elt): New prototype.
13366
36c53a02
JB
133672019-03-12 John Baldwin <jhb@FreeBSD.org>
13368
13369 * gdbtypes.c (lookup_struct_elt_type): Update comment and
13370 remove disabled code block.
13371
6e056c81
JB
133722019-03-12 John Baldwin <jhb@FreeBSD.org>
13373
13374 * gdbarch.sh (get_thread_local_address): New method.
13375 * gdbarch.h, gdbarch.c: Regenerate.
13376 * target.c (target_translate_tls_address): Use
13377 gdbarch_get_thread_local_address if present instead of
13378 target::get_thread_local_address.
13379
cd250a18
JB
133802019-03-12 John Baldwin <jhb@FreeBSD.org>
13381
13382 * target.h (target::get_thread_local_address): Update comment.
13383
df22c1e5
JB
133842019-03-12 John Baldwin <jhb@FreeBSD.org>
13385
13386 * solib-svr4.c (svr4_fetch_objfile_link_map): Look for
13387 objfile->separate_debug_objfile_backlink if not NULL.
13388
dd6876c9
JB
133892019-03-12 John Baldwin <jhb@FreeBSD.org>
13390
13391 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
13392 tdep->fsbase_regnum instead of constants for fs_base and gs_base.
13393 (amd64bsd_store_inferior_registers): Likewise.
13394 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
13395 Enable segment base registers.
13396 * i386-bsd-nat.c (i386bsd_fetch_inferior_registers): Use
13397 PT_GETFSBASE and PT_GETGSBASE.
13398 (i386bsd_store_inferior_registers): Use PT_SETFSBASE and
13399 PT_SETGSBASE.
13400 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Enable
13401 segment base registers.
13402 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
13403
1163a4b7
JB
134042019-03-12 John Baldwin <jhb@FreeBSD.org>
13405
13406 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
13407 Update calls to i386_target_description to add 'segments'
13408 parameter.
13409 * amd64-tdep.c (amd64_init_abi): Set tdep->fsbase_regnum. Don't
13410 add segment base registers.
13411 * arch/i386.c (i386_create_target_description): Add 'segments'
13412 parameter to enable segment base registers.
13413 * arch/i386.h (i386_create_target_description): Likewise.
13414 * features/i386/32bit-segments.xml: New file.
13415 * features/i386/32bit-segments.c: Generate.
13416 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Update
13417 call to i386_target_description to add 'segments' parameter.
13418 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
13419 * i386-go32-tdep.c (i386_go32_init_abi): Likewise.
13420 * i386-linux-tdep.c (i386_linux_read_description): Likewise.
13421 * i386-tdep.c (i386_validate_tdesc_p): Add segment base registers
13422 if feature is present.
13423 (i386_gdbarch_init): Pass I386_NUM_REGS to set_gdbarch_num_regs.
13424 Add 'segments' parameter to call to i386_target_description.
13425 (i386_target_description): Add 'segments' parameter to enable
13426 segment base registers.
13427 (_initialize_i386_tdep) [GDB_SELF_TEST]: Add 'segments' parameter
13428 to call to i386_target_description.
13429 * i386-tdep.h (struct gdbarch_tdep): Add 'fsbase_regnum'.
13430 (enum i386_regnum): Add I386_FSBASE_REGNUM and I386_GSBASE_REGNUM.
13431 Define I386_NUM_REGS.
13432 (i386_target_description): Add 'segments' parameter to enable
13433 segment base registers.
13434
3a350822
EZ
134352019-03-12 Eli Zaretskii <eliz@gnu.org>
13436
13437 PR/24325
13438 * source-cache.c: #undef open and close, to avoid unresolved
13439 externals during linking.
13440
ffdd69cf
TT
134412019-03-12 Tom Tromey <tromey@adacore.com>
13442
13443 * remote.c (magic_null_ptid, not_sent_ptid, any_thread_ptid): Now
13444 const. Add initializers.
13445 (_initialize_remote): Don't initialize ptid globals.
13446
ec148c57
PA
134472019-03-12 Pedro Alves <palves@redhat.com>
13448
13449 * yy-remap.h [TEST_CPNAMES] (YYFPRINTF): Don't define.
13450
32764270
PA
134512019-03-12 Pedro Alves <palves@redhat.com>
13452
13453 * cp-name-parser.y (main): Remove unused 'len' variable.
13454
17547186
TT
134552019-03-12 Tom Tromey <tromey@adacore.com>
13456
13457 * common/ptid.c (null_ptid, minus_one_ptid): Now const.
13458 * common/ptid.h (null_ptid, minus_one_ptid): Now const.
13459
d3a70e03
TT
134602019-03-12 Tom Tromey <tromey@adacore.com>
13461
13462 * linux-nat.c (iterate_over_lwps): Update.
13463 (stop_callback): Remove parameter.
13464 (stop_wait_callback, detach_callback, resume_set_callback)
13465 (select_singlestep_lwp_callback, set_ignore_sigint)
13466 (status_callback, resumed_callback, resume_clear_callback)
13467 (kill_callback, kill_wait_callback, linux_nat_stop_lwp): Remove
13468 data parameter.
13469 (linux_nat_target::detach, linux_nat_target::resume)
13470 (linux_stop_and_wait_all_lwps, select_event_lwp)
13471 (linux_nat_filter_event, linux_nat_wait_1)
13472 (linux_nat_target::kill, linux_nat_target::stop)
13473 (linux_nat_target::stop): Update.
13474 (linux_nat_resume_callback): Change type.
13475 (resume_stopped_resumed_lwps, count_events_callback)
13476 (select_event_lwp_callback): Likewise.
13477 (linux_stop_lwp, linux_nat_stop_lwp): Update.
13478 * arm-linux-nat.c (struct update_registers_data): Remove.
13479 (update_registers_callback): Change type.
13480 (arm_linux_insert_hw_breakpoint1): Update.
13481 * nat/x86-linux-dregs.c (update_debug_registers_callback): Remove
13482 parameter.
13483 (x86_linux_dr_set_addr): Update.
13484 (x86_linux_dr_set_control): Update.
13485 * nat/linux-nat.h (iterate_over_lwps_ftype): Remove parameter.
13486 (iterate_over_lwps): Use gdb::function_view.
13487 * nat/aarch64-linux-hw-point.c (struct
13488 aarch64_dr_update_callback_param): Remove.
13489 (debug_reg_change_callback): Change type.
13490 (aarch64_notify_debug_reg_change): Update.
13491 * s390-linux-nat.c (s390_refresh_per_info): Update.
13492
82cb27ff
TT
134932019-03-11 Tom Tromey <tromey@adacore.com>
13494
13495 * dwarf2read.c (dwarf2_find_containing_comp_unit): Remove
13496 redundant assignment to "this_cu".
13497
568c0683
SM
134982019-03-08 Simon Marchi <simon.marchi@efficios.com>
13499
13500 * gdbtypes.c (rank_one_type): Remove unnecessary cases from switch.
13501
f09ce22d
SM
135022019-03-08 Simon Marchi <simon.marchi@efficios.com>
13503
13504 * gdbtypes.c (rank_one_type_parm_set): New function extracted
13505 from...
13506 (rank_one_type): ... this.
13507
595f96a9
SM
135082019-03-08 Simon Marchi <simon.marchi@efficios.com>
13509
13510 * gdbtypes.c (rank_one_type_parm_struct): New function extracted
13511 from...
13512 (rank_one_type): ... this.
13513
2598a94b
SM
135142019-03-08 Simon Marchi <simon.marchi@efficios.com>
13515
13516 * gdbtypes.c (rank_one_type_parm_complex): New function extracted
13517 from...
13518 (rank_one_type): ... this.
13519
7f17b20d
SM
135202019-03-08 Simon Marchi <simon.marchi@efficios.com>
13521
13522 * gdbtypes.c (rank_one_type_parm_float): New function extracted
13523 from...
13524 (rank_one_type): ... this.
13525
2c509035
SM
135262019-03-08 Simon Marchi <simon.marchi@efficios.com>
13527
13528 * gdbtypes.c (rank_one_type_parm_bool): New function extracted
13529 from...
13530 (rank_one_type): ... this.
13531
0dd322dc
SM
135322019-03-08 Simon Marchi <simon.marchi@efficios.com>
13533
13534 * gdbtypes.c (rank_one_type_parm_range): New function extracted
13535 from...
13536 (rank_one_type): ... this.
13537
41ea4728
SM
135382019-03-08 Simon Marchi <simon.marchi@efficios.com>
13539
13540 * gdbtypes.c (rank_one_type_parm_char): New function extracted
13541 from...
13542 (rank_one_type): ... this.
13543
793cd1d2
SM
135442019-03-08 Simon Marchi <simon.marchi@efficios.com>
13545
13546 * gdbtypes.c (rank_one_type_parm_enum): New function extracted
13547 from...
13548 (rank_one_type): ... this.
13549
34910087
SM
135502019-03-08 Simon Marchi <simon.marchi@efficios.com>
13551
13552 * gdbtypes.c (rank_one_type_parm_int): New function extracted
13553 from...
13554 (rank_one_type): ... this.
13555
f1f832d6
SM
135562019-03-08 Simon Marchi <simon.marchi@efficios.com>
13557
13558 * gdbtypes.c (rank_one_type_parm_func): New function extracted
13559 from...
13560 (rank_one_type): ... this.
13561
b9f4512f
SM
135622019-03-08 Simon Marchi <simon.marchi@efficios.com>
13563
13564 * gdbtypes.c (rank_one_type_parm_array): New function extracted
13565 from...
13566 (rank_one_type): ... this.
13567
9293fc63
SM
135682019-03-08 Simon Marchi <simon.marchi@efficios.com>
13569
13570 * gdbtypes.c (rank_one_type_parm_ptr): New function extracted
13571 from...
13572 (rank_one_type): ... this.
13573
e3abbe7e
PW
135742019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13575
13576 * inferior.c (initialize_inferiors): Ensure 'help set/show print
13577 inferior-events' shows the example events.
13578
e4adb939
EZ
135792019-03-08 Eli Zaretskii <eliz@gnu.org>
13580
13581 Support styling on native MS-Windows console
13582
13583 PR/24315
13584 * utils.c (can_emit_style_escape) [_WIN32]: Don't disable styling
13585 on MS-Windows if $TERM is not defined.
13586
13587 * cli/cli-style.c: Set cli_styling to 1 in the MinGW build.
13588
13589 * posix-hdep.c (gdb_console_fputs):
13590 * mingw-hdep.c (rgb_to_16colors, gdb_console_fputs): New
13591 functions.
13592 * ui-file.h (gdb_console_fputs): Add prototype.
13593
13594 * ui-file.c (stdio_file::puts): Call gdb_console_fputs, and fall
13595 back to fputs only if the former returns zero.
13596
25629dfd
TT
135972019-03-07 Tom Tromey <tom@tromey.com>
13598
13599 * symmisc.c (print_symbol_bcache_statistics): Update.
13600 (print_objfile_statistics): Update.
13601 * symfile.c (allocate_symtab): Update.
13602 * stabsread.c: Don't include bcache.h.
13603 * psymtab.h (struct psymbol_bcache): Don't declare.
13604 (class psymtab_storage) <psymbol_cache>: Now a bcache.
13605 (psymbol_bcache_init, psymbol_bcache_free)
13606 (psymbol_bcache_get_bcache): Don't declare.
13607 * psymtab.c (struct psymbol_bcache): Remove.
13608 (psymtab_storage::psymtab_storage): Update.
13609 (psymtab_storage::~psymtab_storage): Update.
13610 (psymbol_bcache_init, psymbol_bcache_free)
13611 (psymbol_bcache_get_bcache, psymbol_bcache_full): Remove.
13612 (add_psymbol_to_bcache): Update.
13613 (allocate_psymtab): Update.
13614 * objfiles.h (struct objfile_per_bfd_storage) <filename_cache,
13615 macro_cache>: No longer pointers.
13616 * objfiles.c (get_objfile_bfd_data): Don't call bcache_xmalloc.
13617 (free_objfile_per_bfd_storage): Don't call bcache_xfree.
13618 * macrotab.c (macro_bcache): Update.
13619 * macroexp.c: Don't include bcache.h.
13620 * gdbtypes.c (check_types_worklist): Update.
13621 (types_deeply_equal): Remove TRY/CATCH. Update.
13622 * elfread.c (elf_symtab_read): Update.
13623 * dwarf2read.c: Don't include bcache.h.
13624 * buildsym.c (buildsym_compunit::get_macro_table): Update.
13625 * bcache.h (bcache, bcache_full, bcache_xffree, bcache_xmalloc)
13626 (print_bcache_statistics, bcache_memory_used): Don't declare.
13627 (struct bcache): Move from bcache.c. Add constructor, destructor,
13628 methods. Rename all data members.
13629 * bcache.c (struct bcache): Move to bcache.h.
13630 (bcache::expand_hash_table): Rename from expand_hash_table.
13631 (bcache): Remove.
13632 (bcache::insert): Rename from bcache_full.
13633 (bcache::compare): Rename from bcache_compare.
13634 (bcache_xmalloc): Remove.
13635 (bcache::~bcache): Rename from bcache_xfree.
13636 (bcache::print_statistics): Rename from print_bcache_statistics.
13637 (bcache::memory_used): Rename from bcache_memory_used.
13638
fe726667
PA
136392019-03-07 Pedro Alves <palves@redhat.com>
13640
13641 * infrun.c (normal_stop): Also check for
13642 TARGET_WAITKIND_NO_RESUMED before referring to inferior_thread().
13643
7584bb30
AB
136442019-03-07 Andrew Burgess <andrew.burgess@embecosm.com>
13645
13646 * f-lang.c (value_from_host_double): Moved to...
13647 * value.c (value_from_host_double): ...here.
13648 * value.h (value_from_host_double): Declare.
13649 * guile/scm-math.c (vlscm_convert_typed_number): Use
13650 value_from_host_double.
13651 (vlscm_convert_number): Likewise.
13652 * guile/scm-value.c (gdbscm_value_to_real): Likewise.
13653 * python/py-value.c (convert_value_from_python): Likewise.
13654
a7b1986e
TT
136552019-03-06 Tom Tromey <tom@tromey.com>
13656
13657 * gcore.c (write_gcore_file): Use SCOPE_EXIT.
13658
0ccf4211
TT
136592019-03-06 Tom Tromey <tom@tromey.com>
13660
13661 * utils.h (free_current_contents): Don't declare.
13662 * utils.c (free_current_contents): Remove.
13663
fe7b42e5
TT
136642019-03-06 Tom Tromey <tom@tromey.com>
13665
13666 * top.c (quit_force): Update.
13667 * main.c (captured_command_loop): Update.
13668 * common/new-op.c (operator new): Update.
13669 * common/common-exceptions.c (struct catcher)
13670 <save_cleanup_chain>: Remove member.
13671 (exceptions_state_mc_init): Update.
13672 (exception_try_scope_entry): Return nullptr.
13673 (exception_try_scope_exit, exception_rethrow)
13674 (throw_exception_sjlj, throw_exception_cxx): Update.
13675 * common/cleanups.h (make_cleanup, make_cleanup_dtor)
13676 (all_cleanups, do_cleanups, discard_cleanups)
13677 (discard_final_cleanups, save_cleanups, save_final_cleanups)
13678 (restore_cleanups, restore_final_cleanups): Don't declare.
13679 (do_final_cleanups): Remove parameter.
13680 * common/cleanups.c (cleanup_chain, make_cleanup)
13681 (make_cleanup_dtor, all_cleanups, do_cleanups)
13682 (discard_my_cleanups, discard_cleanups)
13683 (discard_final_cleanups, save_my_cleanups, save_cleanups)
13684 (save_final_cleanups, restore_my_cleanups, restore_cleanups)
13685 (null_cleanup): Remove.
13686 (do_final_cleanups): Remove parameter.
13687
c6321f19
TT
136882019-03-06 Tom Tromey <tom@tromey.com>
13689
13690 * remote.c (remote_target::remote_parse_stop_reply): Use
13691 unique_xmalloc_ptr.
13692
61b30099
TT
136932019-03-06 Tom Tromey <tom@tromey.com>
13694
13695 * stabsread.c (struct stabs_field_info): Rename from field_info.
13696 <list, fnlist>: Add initializers.
13697 <obstack>: New member.
13698 (read_member_functions, read_struct_fields, read_baseclasses):
13699 Allocate on obstack. Don't use cleanups.
13700 (read_one_struct_field, read_member_functions, read_struct_fields)
13701 (read_baseclasses, read_tilde_fields, attach_fn_fields_to_type)
13702 (attach_fields_to_type, read_cpp_abbrev, read_member_functions)
13703 (read_struct_type): Update.
13704
6cceac94
TT
137052019-03-06 Tom Tromey <tom@tromey.com>
13706
13707 * nat/linux-namespaces.c (linux_mntns_access_fs): Use SCOPE_EXIT.
13708 * common/filestuff.h (make_cleanup_close): Don't declare.
13709 * common/filestuff.c (do_close_cleanup, make_cleanup_close):
13710 Remove.
13711
72412762
TT
137122019-03-06 Tom Tromey <tom@tromey.com>
13713
13714 * solib-aix.c: Use make_scope_exit.
13715
2b6ff1c0
TT
137162019-03-06 Tom Tromey <tom@tromey.com>
13717
13718 * solib-svr4.c (svr4_parse_libraries, svr4_current_sos_direct):
13719 Use make_scope_exit.
13720
d01c5877
TT
137212019-03-06 Tom Tromey <tom@tromey.com>
13722
13723 * solib-svr4.c (disable_probes_interface): Remove parameter.
13724 (svr4_handle_solib_event): Use make_scope_exit.
13725
32603266
TT
137262019-03-06 Tom Tromey <tom@tromey.com>
13727
13728 * remote.c (struct stop_reply_deleter): Remove.
13729 (stop_reply_up): Update.
13730 (struct stop_reply): Derive from notif_event. Don't typedef.
13731 <regcache>: Now a std::vector.
13732 (stop_reply_xfree): Remove.
13733 (stop_reply::~stop_reply): Rename from stop_reply_dtr.
13734 (remote_notif_stop_alloc_reply): Return a unique_ptr. Use new.
13735 (remote_target::discard_pending_stop_replies): Use delete.
13736 (remote_target::remote_parse_stop_reply): Update.
13737 (remote_target::process_stop_reply): Update.
13738 * remote-notif.h (struct notif_event): Add virtual destructor.
13739 Remove "dtr" member.
13740 (struct notif_client) <alloc_event>: Return a unique_ptr.
13741 (notif_event_xfree): Don't declare.
13742 (notif_event_up): New typedef.
13743 * remote-notif.c (remote_notif_ack, remote_notif_parse): Update.
13744 (notif_event_xfree, do_notif_event_xfree): Remove.
13745 (remote_notif_state_xfree): Update.
13746
9799571e
TT
137472019-03-06 Tom Tromey <tom@tromey.com>
13748
13749 * infrun.c (displaced_step_clear_cleanup): Now a
13750 forward_scope_exit type.
13751 (displaced_step_prepare_throw): Update.
13752 (displaced_step_fixup): Update.
13753
09e3c4ca
TT
137542019-03-06 Tom Tromey <tom@tromey.com>
13755
13756 * inferior.h (class inferior): Update comment.
13757 * gdbthread.h (class thread_info): Update comment.
13758
e2a03548
TT
137592019-03-06 Joel Brobecker <brobecker@adacore.com>
13760 Tom Tromey <tom@tromey.com>
13761
13762 * stabsread.h (struct stab_section_list): Remove.
13763 (coffstab_build_psymtabs): Update.
13764 * dbxread.c (symbuf_sections): Now a std::vector.
13765 (sect_idx): New global.
13766 (fill_symbuf): Update.
13767 (coffstab_build_psymtabs): Change type of stabsects parameter.
13768 Update.
13769 * coffread.c (struct coff_symfile_info) <stabsects>: Now a
13770 std::vector.
13771 (linetab, linetab_offset, linetab_size, stringtab): Move earlier.
13772 (coff_locate_sections): Update.
13773 (coff_symfile_read): Remove cleanups. Update.
13774 (init_stringtab): Add storage parameter.
13775 (free_stringtab, free_stringtab_cleanup): Remove.
13776 (init_lineno): Add storage parameter.
13777 (free_linetab, free_linetab_cleanup): Remove.
13778
b7e60d85
PA
137792019-03-06 Pedro Alves <palves@redhat.com>
13780
13781 * linux-fork.c (fork_info::clobber_regs): Delete.
13782 (fork_load_infrun_state): Remove reference to 'clobber_regs'.
13783 (fork_save_infrun_state): Remove 'clobber_regs' parameter. Update
13784 comment. Adjust.
13785 (scoped_switch_fork_info::scoped_switch_fork_info)
13786 (checkpoint_command, linux_fork_context): Adjust
13787 fork_save_infrun_state calls.
13788
e52c971f
PA
137892019-03-06 Pedro Alves <palves@redhat.com>
13790
13791 * linux-fork.c (inf_has_multiple_thread_cb): Delete.
13792 (inf_has_multiple_threads): Return 'bool' and rewrite using
13793 inferior_info::threads().
13794
06974e6c
PA
137952019-03-06 Pedro Alves <palves@redhat.com>
13796
13797 * linux-fork.c: Include <list>.
13798 (fork_list): Now a std::list instance.
13799 (fork_info): Add ctor, dtor, and in-class initialize all fields.
13800 (forks_exist_p, find_last_fork): Adjust.
13801 (new_fork): Delete.
13802 (one_fork_p): New.
13803 (add_fork): Adjust.
13804 (free_fork): Delete, folded into fork_info::~fork_info().
13805 (delete_fork, find_fork_ptid, find_fork_id, find_fork_pid):
13806 Adjust.
13807 (init_fork_list): Delete.
13808 (linux_fork_killall, linux_fork_mourn_inferior)
13809 (linux_fork_detach, info_checkpoints_command): Adjust.
13810 (_initialize_linux_fork): No longer call init_fork_list.
13811
72f31aea
PA
138122019-03-06 Pedro Alves <palves@redhat.com>
13813
13814 * linux-fork.c (new_fork): New, split out of ...
13815 (add_fork): ... this. Return void. Move "first fork" special
13816 case from here, to ...
13817 (checkpoint_command): ... here.
13818 * linux-linux.h (add_fork): Return void.
13819
efbecbc1
AB
138202019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13821
13822 * f-exp.y (direct_abs_decl): Handle TYPE*SIZE type names.
13823
0841c79a
AB
138242019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13825 Chris January <chris.january@arm.com>
13826 David Lecomber <david.lecomber@arm.com>
13827
13828 * f-exp.y: New token, UNOP_INTRINSIC.
13829 (exp): New pattern using UNOP_INTRINSIC token.
13830 (f77_keywords): Add 'abs' keyword.
13831 * f-lang.c: Add 'target-float.h' and 'math.h' includes.
13832 (value_from_host_double): New function.
13833 (evaluate_subexp_f): Support UNOP_ABS.
13834
4a270568
AB
138352019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13836
13837 * f-lang.c (build_fortran_types): Use TYPE_CODE_CHAR for character
13838 types.
13839
067630bd
AB
138402019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13841
13842 * f-exp.y (convert_to_kind_type): Handle integer (kind=8).
13843 * f-lang.c (build_fortran_types): Setup builtin_integer_s8.
13844 * f-lang.h (struct builtin_f_type): Add builtin_integer_s8 field.
13845
3be47f7a
AB
138462019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13847
13848 * f-exp.y (convert_to_kind_type): Handle more type kinds.
13849
4d00f5d8
AB
138502019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13851 Chris January <chris.january@arm.com>
13852
13853 * expprint.c (dump_subexp_body_standard): Support UNOP_KIND.
13854 * f-exp.y: Define 'KIND' token.
13855 (exp): New pattern for KIND expressions.
13856 (ptype): Handle types with a kind extension.
13857 (direct_abs_decl): Extend to spot kind extensions.
13858 (f77_keywords): Add 'kind' to the list.
13859 (push_kind_type): New function.
13860 (convert_to_kind_type): New function.
13861 * f-lang.c (evaluate_subexp_f): Support UNOP_KIND.
13862 * parse.c (operator_length_standard): Likewise.
13863 * parser-defs.h (enum type_pieces): Add tp_kind.
13864 * std-operator.def: Add UNOP_KIND.
13865
e454224f
AB
138662019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13867
13868 * f-exp.y (f_parse): Set yydebug.
13869
9dad4a58
AB
138702019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13871
13872 * f-lang.c (evaluate_subexp_f): New function.
13873 (exp_descriptor_f): New global.
13874 (f_language_defn): Use exp_descriptor_f instead of
13875 exp_descriptor_standard.
13876
c8f91604
AB
138772019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13878
13879 * f-exp.y (struct token): Add comments.
13880 (dot_ops): Remove uppercase versions and the end marker.
13881 (f77_keywords): Likewise.
13882 (yylex): Use ARRAY_SIZE to iterate over dot_ops, assert all
13883 entries in the dot_ops array are case insensitive, and use
13884 strncasecmp to compare strings. Also some whitespace cleanup in
13885 this area. Similar for the f77_keywords array, except entries in
13886 this list might be case sensitive.
13887
dd9f2c76
AB
138882019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13889
13890 * f-exp.y (struct f77_boolean_val): Add comments.
13891 (boolean_values): Remove uppercase versions, and end marker.
13892 (yylex): Use ARRAY_SIZE for iterating over boolean_values array,
13893 and use strncasecmp to achieve case insensitivity. Additionally,
13894 perform whitespace cleanup around this code.
13895
67a3048c
TT
138962019-03-06 Tom Tromey <tromey@adacore.com>
13897
13898 * remote-sim.c (gdbsim_target_open): Use result of
13899 gdb_argv::release.
13900
aa3cfbda
RB
139012019-03-06 Richard Bunt <richard.bunt@arm.com>
13902 Dirk Schubert <dirk.schubert@arm.com>
13903 Chris January <chris.january@arm.com>
13904
13905 * eval.c (evaluate_subexp_standard): Call Fortran argument
13906 wrapping logic.
13907 * f-lang.c (struct value): A value which can be passed into a
13908 Fortran function call.
13909 (fortran_argument_convert): Wrap Fortran arguments in a pointer
13910 where appropriate.
13911 (struct type): Value ready for a Fortran function call.
13912 (fortran_preserve_arg_pointer): Undo check_typedef, the pointer
13913 is needed.
13914 * f-lang.h (fortran_argument_convert): Declaration.
13915 (fortran_preserve_arg_pointer): Declaration.
13916 * infcall.c (value_arg_coerce): Call Fortran argument logic.
13917
ea38e5df
TT
139182019-03-05 Tom Tromey <tromey@adacore.com>
13919
13920 * python/py-prettyprint.c (print_string_repr): Remove #if.
13921 * python/py-utils.c (unicode_to_encoded_string): Remove #if.
13922
06b5b831
TT
139232019-03-05 Tom Tromey <tromey@adacore.com>
13924
13925 * target.c (the_dummy_target): Move later. Change type to
13926 "dummy_target".
13927 (initialize_targets): Don't initialize the_dummy_target.
13928
edbd9e45
TT
139292019-03-05 Tom Tromey <tromey@adacore.com>
13930
13931 * gdb_bfd.c (gdb_bfd_fdopenr): Remove.
13932 * gdb_bfd.h (gdb_bfd_fdopenr): Don't declare.
13933
c119e040
TT
139342019-03-05 Tom Tromey <tromey@adacore.com>
13935
13936 * windows-nat.c (windows_nat_target::attach)
13937 (windows_nat_target::detach): Don't call gdb_flush.
13938 * valprint.c (generic_val_print, val_print, val_print_string):
13939 Don't call gdb_flush.
13940 * utils.c (defaulted_query): Don't call gdb_flush.
13941 * typeprint.c (print_type_scalar): Don't call gdb_flush.
13942 * target.c (target_announce_detach): Don't call gdb_flush.
13943 * sparc64-tdep.c (adi_print_versions): Don't call gdb_flush.
13944 * remote.c (extended_remote_target::attach): Don't call
13945 gdb_flush.
13946 * procfs.c (procfs_target::detach): Don't call gdb_flush.
13947 * printcmd.c (do_examine): Don't call gdb_flush.
13948 (info_display_command): Don't call gdb_flush.
13949 * p-valprint.c (pascal_val_print): Don't call gdb_flush.
13950 * nto-procfs.c (nto_procfs_target::attach): Don't call gdb_flush.
13951 * memattr.c (info_mem_command): Don't call gdb_flush.
13952 * mdebugread.c (mdebug_build_psymtabs): Don't call gdb_flush.
13953 * m2-valprint.c (m2_val_print): Don't call gdb_flush.
13954 * infrun.c (follow_exec, handle_command): Don't call gdb_flush.
13955 * inf-ptrace.c (inf_ptrace_target::attach): Don't call gdb_flush.
13956 * hppa-tdep.c (unwind_command): Don't call gdb_flush.
13957 * gnu-nat.c (gnu_nat_target::attach): Don't call gdb_flush.
13958 (gnu_nat_target::detach): Don't call gdb_flush.
13959 * f-valprint.c (f_val_print): Don't call gdb_flush.
13960 * darwin-nat.c (darwin_nat_target::attach): Don't call gdb_flush.
13961 * cli/cli-script.c (read_command_lines): Don't call gdb_flush.
13962 * cli/cli-cmds.c (shell_escape, print_disassembly): Don't call
13963 gdb_flush.
13964 * c-valprint.c (c_val_print): Don't call gdb_flush.
13965 * ada-valprint.c (ada_print_scalar): Don't call gdb_flush.
13966
895dafa6
TT
139672019-03-05 Tom Tromey <tromey@adacore.com>
13968
13969 * varobj.c (update_dynamic_varobj_children): Update.
13970 (install_default_visualizer): Use reset, not release.
13971 * value.c (set_internalvar): Update.
13972 * dwarf2loc.c (value_of_dwarf_reg_entry): Update.
13973 * common/gdb_ref_ptr.h (class ref_ptr) <release>: Add
13974 ATTRIBUTE_UNUSED_RESULT.
13975
88a774b9
TT
139762019-03-05 Tom Tromey <tromey@adacore.com>
13977
13978 * remote.c (class scoped_remote_fd) <release>: Add
13979 ATTRIBUTE_UNUSED_RESULT.
13980
4e4a8b93
TT
139812019-03-05 Tom Tromey <tromey@adacore.com>
13982
13983 * macroexp.c (struct macro_buffer) <release>: Add
13984 ATTRIBUTE_UNUSED_RESULT.
13985
083eef1f
TT
139862019-03-05 Tom Tromey <tromey@adacore.com>
13987
13988 * nat/linux-btrace.c (linux_enable_bts, linux_enable_pt): Update.
13989 * common/scoped_mmap.h (class scoped_mmap) <release>: Add
13990 ATTRIBUTE_UNUSED_RESULT.
13991
3cabd438
TT
139922019-03-05 Tom Tromey <tromey@adacore.com>
13993
13994 * common/scoped_fd.h (class scoped_fd) <release>: Add
13995 ATTRIBUTE_UNUSED_RESULT.
13996
41e3300a
TT
139972019-03-05 Tom Tromey <tromey@adacore.com>
13998
13999 * parser-defs.h (struct parser_state) <release>: Add
14000 ATTRIBUTE_UNUSED_RESULT.
14001
18cb7c9f
TT
140022019-03-05 Tom Tromey <tromey@adacore.com>
14003
14004 * utils.h (class gdb_argv) <release>: Add
14005 ATTRIBUTE_UNUSED_RESULT.
14006 * common/common-defs.h (ATTRIBUTE_UNUSED_RESULT): Define.
14007
41fa577f
EZ
140082019-03-02 Eli Zaretskii <eliz@gnu.org>
14009
a6a4b2c6
EZ
14010 * xml-syscall.c (xml_list_syscalls_by_group): Drop 'struct' from
14011 for-loop range, to avoid compiler warnings.
14012
14013 * tui/tui.c (tui_enable) [__MINGW32__]: Don't declare 'cap', to
14014 avoid compiler warnings about unused variables.
14015
742a7df5
EZ
14016 * NEWS: Mention end of support for native debugging on MS-Windows
14017 before XP.
14018
41fa577f
EZ
14019 PR gdb/24292
14020 * common/netstuff.c:
14021 * gdbserver/gdbreplay.c
14022 * gdbserver/remote-utils.c:
14023 * ser-tcp.c:
14024 * unittests/parse-connection-spec-selftests.c [USE_WIN32API]:
14025 Include ws2tcpip.h instead of wsiapi.h and winsock2.h. Redefine
14026 _WIN32_WINNT to 0x0501 if defined to a smaller value, as
14027 'getaddrinfo' and 'freeaddrinfo' were not available before
14028 Windows XP, and mingw.org's MinGW headers by default define
14029 _WIN32_WINNT to 0x500.
14030
827f438f
GB
140312019-03-01 Gary Benson <gbenson@redhat.com>
14032
14033 * coffread.c (coff_start_symtab): Remove unnecessary xstrdup.
14034
92137da0
RO
140352019-02-28 Brian Vandenberg <phantall@gmail.com>
14036 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
14037
14038 PR gdb/8527
14039 * procfs.c (proc_wait_for_stop): Wrap write of PCWSTOP in
14040 set_sigint_trap, clear_sigint_trap.
14041
799efbe8
PW
140422019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14043
14044 * target.c (target_detach): Clear the regcache and the
14045 frame cache.
14046
8ed25214
PA
140472019-02-27 Pedro Alves <palves@redhat.com>
14048
14049 * utils.c (set_screen_size): When we cap the height/width sizes,
14050 tweak the corresponding command variable to show "unlimited":
14051
23031e31
SJ
140522019-02-27 Saagar Jha <saagar@saagarjha.com>
14053 Pedro Alves <palves@redhat.com>
14054
14055 * utils.c (set_screen_size): Reduce "infinite" rows and columns
14056 before calling rl_set_screen_size.
14057
6c28e44a
TT
140582019-02-27 Tom Tromey <tromey@adacore.com>
14059
14060 * configure.ac (HAVE_LIBPYTHON2_4, HAVE_LIBPYTHON2_5): Never
14061 define.
14062 * python/py-value.c: Remove Python 2.4 workaround.
14063 * python/py-utils.c (gdb_pymodule_addobject): Remove Python 2.4
14064 workaround.
14065 * python/py-type.c (convert_field, gdbpy_initialize_types): Remove
14066 Python 2.4 workaround.
14067 * python/python-internal.h: Remove Python 2.4 comment.
14068 (Py_ssize_t): Don't define.
14069 (PyVarObject_HEAD_INIT, Py_TYPE): Don't define.
14070 (gdb_Py_DECREF): Remove Python 2.4 workaround.
14071 (gdb_PyObject_GetAttrString, PyObject_GetAttrString): Remove.
14072 (gdb_PyObject_HasAttrString, PyObject_HasAttrString): Remove.
14073 * python/python.c (do_start_initialization): Remove Python 2.4
14074 workaround.
14075 * python/py-prettyprint.c (class dummy_python_frame): Remove.
14076 (print_children): Remove Python 2.4 workaround.
14077 * python/py-inferior.c (buffer_procs): Remove Python 2.4
14078 workaround.
14079 (CHARBUFFERPROC_NAME): Remove.
14080 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Remove
14081 Python 2.4 workaround.
14082
2c3fc25d 140832019-02-27 Kevin Buettner <kevinb@redhat.com>
799efbe8 14084
2c3fc25d
KB
14085 * NEWS: Note minimum Python version.
14086
6ca62222
KB
140872019-02-27 Kevin Buettner <kevinb@redhat.com>
14088
14089 * python/py-inferior.c (infpy_write_memory): Remove non-IS_PY3K
14090 code from these functions. Remove corresponding ifdefs. Use
14091 Py_buffer_up instead of explicit calls to PyBuffer_Release.
14092 Remove gotos and target of gotos.
14093 (infpy_search_memory): Likewise.
14094
f4bc7d2c
AB
140952019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14096
14097 * gdb/hppa-tdep.c (hppa_dummy_id): Delete.
14098 (hppa_gdbarch_init): Don't register deleted functions with
14099 gdbarch.
14100
9734a586
AB
141012019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14102
14103 * gdb/h8300-tdep.c (h8300_unwind_pc): Delete.
14104 (h8300_unwind_sp): Delete.
14105 (h8300_dummy_id): Delete.
14106 (h8300_gdbarch_init): Don't register deleted functions with
14107 gdbarch.
14108
68b867f3
AB
141092019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14110
14111 * gdb/ft32-tdep.c (ft32_dummy_id): Delete.
14112 (ft32_unwind_pc): Delete.
14113 (ft32_unwind_sp): Delete.
14114 (ft32_gdbarch_init): Don't register deleted functions with
14115 gdbarch.
14116
2fbe7ad0
AB
141172019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14118
14119 * gdb/frv-tdep.c (frv_dummy_id): Delete.
14120 (frv_unwind_pc): Delete.
14121 (frv_unwind_sp): Delete.
14122 (frv_gdbarch_init): Don't register deleted functions with
14123 gdbarch.
14124
76055cbe
AB
141252019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14126
14127 * gdb/riscv-tdep.c (riscv_dummy_id): Delete.
14128 (riscv_unwind_pc): Delete.
14129 (riscv_unwind_sp): Delete.
14130 (riscv_gdbarch_init): Don't register deleted functions with
14131 gdbarch.
14132
4133e5a1
AB
141332019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14134
14135 * gdb/csky-tdep.c (csky_dummy_id): Delete.
14136 (csky_unwind_pc): Delete.
14137 (csky_unwind_sp): Delete.
14138 (csky_gdbarch_init): Don't register deleted functions with
14139 gdbarch.
14140
8010f576
AB
141412019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14142
14143 * gdb/cris-tdep.c (cris_dummy_id): Delete.
14144 (cris_unwind_pc): Delete.
14145 (cris_unwind_sp): Delete.
14146 (cris_gdbarch_init): Don't register deleted functions with
14147 gdbarch.
14148
b56bf084
AB
141492019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14150
14151 * gdb/bfin-tdep.c (bfin_dummy_id): Delete.
14152 (bfin_unwind_pc): Delete.
14153 (bfin_gdbarch_init): Don't register deleted functions with gdbarch.
14154
a19a650f
AB
141552019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14156
14157 * gdb/arm-tdep.c (arm_dummy_id): Delete.
14158 (arm_unwind_pc): Delete.
14159 (arm_unwind_sp): Delete.
14160 (arm_gdbarch_init): Don't register deleted functions with gdbarch.
14161
f8278c3c
AB
141622019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14163
14164 * gdb/arc-tdep.c (arc_dummy_id): Delete.
14165 (arc_unwind_pc): Delete.
14166 (arc_unwind_sp): Delete.
14167 (arc_gdbarch_init): Don't register deleted functions with gdbarch.
14168
480e46cf
AB
141692019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14170
14171 * gdb/alpha-tdep.c (alpha_dummy_id): Delete.
14172 (alpha_unwind_pc): Delete.
14173 (alpha_gdbarch_init): Don't register deleted functions with
14174 gdbarch.
14175
7a995095
AB
141762019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14177
14178 * gdb/aarch64-tdep.c (aarch64_dummy_id): Delete.
14179 (aarch64_unwind_pc): Delete.
14180 (aarch64_unwind_sp): Delete.
14181 (aarch64_gdbarch_init): Don't register deleted functions with
14182 gdbarch.
14183
bf9a735e
AB
141842019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14185
14186 * gdbtypes.c (type_align): Don't consider static members when
14187 computing structure alignment.
14188
5561fc30
AB
141892019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
14190
14191 * arc-tdep.c (arc_type_align): Provide alignment for basic types,
14192 return 0 for other types.
14193 * arch-utils.c (default_type_align): Always return 0.
14194 * gdbarch.h: Regenerate.
14195 * gdbarch.sh (type_align): Extend comment.
14196 * gdbtypes.c (type_align): Add additional comments, always call
14197 gdbarch_type_align before applying the default rules.
14198 * i386-tdep.c (i386_type_align): Return 0 as the default rule,
14199 generic code will then apply a suitable default.
14200 * nios2-tdep.c (nios2_type_align): Provide alignment for basic
14201 types, return 0 for other types.
14202
9335e75a
JB
142032019-02-27 Joel Brobecker <brobecker@adacore.com>
14204
14205 * NEWS: Create a new section for the next release branch.
14206 Rename the section of the current branch, now that it has
14207 been cut.
14208
3d34d8de
JB
142092019-02-27 Joel Brobecker <brobecker@adacore.com>
14210
14211 GDB 8.3 branch created (143420fb0d5ae54323ba9953f0818c194635228d):
14212 * version.in: Bump version to 8.3.50.DATE-git.
14213
143420fb
SM
142142019-02-26 Simon Marchi <simon.marchi@efficios.com>
14215
14216 * aix-thread.c (ptid_cmp): Remove unused variable.
14217 (get_signaled_thread): Likewise.
14218 (store_regs_user_thread): Likewise.
14219 (store_regs_kernel_thread): Likewise.
14220 (fetch_regs_kernel_thread): Remove shadowed variable.
14221
172fb711
AB
142222019-02-26 Andrew Burgess <andrew.burgess@embecosm.com>
14223
14224 * features/riscv/32bit-cpu.xml: Add register numbers.
14225 * features/riscv/32bit-fpu.c: Regenerate.
14226 * features/riscv/32bit-fpu.xml: Add register numbers.
14227 * features/riscv/64bit-cpu.xml: Add register numbers.
14228 * features/riscv/64bit-fpu.c: Regenerate.
14229 * features/riscv/64bit-fpu.xml: Add register numbers.
14230
26c89782
KB
142312019-02-26 Kevin Buettner <kevinb@redhat.com>
14232
af54ade9 14233 * NEWS: Mention two argument form of gdb.Value constructor.
fe07eca5
KB
14234 * python/py-value.c (convert_buffer_and_type_to_value): New
14235 function.
14236 (valpy_new): Parse arguments via gdb_PyArg_ParseTupleAndKeywords.
14237 Add support for handling an optional second argument. Call
14238 convert_buffer_and_type_to_value as appropriate.
26c89782
KB
14239 * python/python-internal.h (Py_buffer_deleter): New struct.
14240 (Py_buffer_up): New typedef.
14241
0f58c9e8
JB
142422019-02-25 John Baldwin <jhb@FreeBSD.org>
14243
14244 * dwarf2read.c (dwarf2_get_dwz_file): Reset dwz_bfd to nullptr
14245 instead of releasing ownership.
14246
0a0f4c01
JR
142472019-02-25 Jordan Rupprecht <rupprecht@google.com>
14248
14249 * dwarf2read.c (open_and_init_dwp_file): Call
14250 elf_numsections instead of bfd_count_sections to initialize
14251 dwp_file->num_sections.
14252
cd5a152c
TT
142532019-02-25 Tom Tromey <tromey@adacore.com>
14254
14255 * solib-darwin.c (darwin_get_dyld_bfd): Don't release dyld_bfd.
14256
8a6a8513
SDJ
142572019-02-23 Sergio Durigan Junior <sergiodj@redhat.com>
14258
14259 * gcore.in: Add '--readnever' option when invoking GDB.
14260
04dcda9c
SM
142612019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
14262
14263 * MAINTAINERS: Update my email address.
14264
07bc701d
SM
142652019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
14266
14267 * build-id.c (build_id_to_debug_bfd_1): New function.
14268 (build_id_to_debug_bfd): Look for separate debug file in
14269 sysroot.
14270
c6f4a5d0
AB
142712019-02-22 Andrew Burgess <andrew.burgess@embecosm.com>
14272
14273 * gdbarch.sh: Update the copyright year range that is placed into
14274 generated files.
14275
9600246d
KS
142762019-02-22 Keith Seitz <keiths@redhat.com>
14277
14278 PR symtab/23853
14279 * linespec.c (create_sals_line_offset): Search for the default
14280 symtab's filename instead of its fullname.
14281
7557a514
AH
142822019-02-21 Alan Hayward <alan.hayward@arm.com>
14283
14284 * NEWS: Update style defaults.
14285
ee2bcb0c
AH
142862019-02-21 Alan Hayward <alan.hayward@arm.com>
14287
14288 * main.c (captured_main_1): Disable styling in batch mode.
14289
0c95f9ed
TT
142902019-02-20 Tom Tromey <tom@tromey.com>
14291
14292 * symtab.c (symtab_symbol_info): Fix typos.
14293
c763b894
TT
142942019-02-20 Tom Tromey <tromey@adacore.com>
14295
14296 * findcmd.c (_initialize_mem_search): Use upper case for
14297 metasyntactic variables.
14298
0ef8a082
AH
142992019-02-20 Alan Hayward <alan.hayward@arm.com>
14300
14301 * aarch64-tdep.c (aarch64_add_reggroups): New function.
14302 (aarch64_gdbarch_init): Call aarch64_add_reggroups.
14303
6caa91b6
SM
143042019-02-19 Simon Marchi <simon.marchi@polymtl.ca>
14305
14306 * top.h (source_file_name): Change to std::string.
14307 * top.c (source_file_name): Likewise.
14308 (command_line_input): Adjust.
14309 * cli/cli-script.c (script_from_file): Adjust.
14310
98814c6c
TT
143112019-02-19 Tom Tromey <tromey@adacore.com>
14312
14313 * ravenscar-thread.c
14314 (ravenscar_thread_target::update_thread_list): Don't call
14315 ada_build_task_list.
14316 * ada-lang.h (ada_build_task_list): Don't declare.
14317 * ada-tasks.c (struct ada_tasks_inferior_data)
14318 <task_list_valid_p>: Now bool.
14319 (read_known_tasks, ada_task_list_changed)
14320 (ada_tasks_invalidate_inferior_data): Update.
14321 (read_known_tasks_array): Return bool.
14322 (read_known_tasks_list): Likewise.
14323 (read_known_tasks): Return void.
14324 (ada_build_task_list): Now static.
14325
70cd633e
AB
143262019-02-18 Andrew Burgess <andrew.burgess@embecosm.com>
14327
14328 * gdbtypes.c (type_align): Allow alignment of TYPE_CODE_METHODPTR
14329 and TYPE_CODE_MEMBERPTR to be overridden by the gdbarch.
14330
040b3e95
PW
143312019-02-18 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14332
14333 * ada-task.c (_initialize_tasks): Use 'with_cleanup' register
14334 variant for ada_tasks_pspace_data_handle and
14335 ada_tasks_inferior_data_handle.
14336 (ada_tasks_pspace_data_cleanup): New function.
14337 (ada_tasks_inferior_data_cleanup): New function.
14338
9409233b
TT
143392019-02-17 Tom Tromey <tom@tromey.com>
14340
14341 * macrotab.h (macro_source_fullname): Return a std::string.
14342 * macrotab.c (macro_include, check_for_redefinition)
14343 (macro_undef, macro_lookup_definition, foreach_macro)
14344 (foreach_macro_in_scope): Update.
14345 (macro_source_fullname): Return a std::string.
14346 * macrocmd.c (show_pp_source_pos): Update.
14347
6506371f
TT
143482019-02-17 Tom Tromey <tom@tromey.com>
14349
14350 * macrocmd.c (show_pp_source_pos): Style the file names.
14351
0c820d67
TT
143522019-02-17 Tom Tromey <tom@tromey.com>
14353
14354 PR tui/24197:
14355 * tui/tui-source.c (tui_set_source_content_nil): Rewrite.
14356
a0087920
TT
143572019-02-17 Tom Tromey <tom@tromey.com>
14358
14359 * ada-lang.c (user_select_syms): Use filtered printing.
14360 * utils.c (wrap_style): New global.
14361 (desired_style): Remove.
14362 (emit_style_escape): Add stream parameter.
14363 (set_output_style, reset_terminal_style, prompt_for_continue):
14364 Update.
14365 (flush_wrap_buffer): Only flush gdb_stdout.
14366 (wrap_here): Set wrap_style.
14367 (fputs_maybe_filtered): Clear the wrap buffer on exception. Don't
14368 treat escape sequences as a character. Change when wrap buffer is
14369 flushed.
14370 (fputs_styled): Do not set the output style when the default is
14371 requested.
14372 * ui-style.h (struct ui_file_style) <is_default>: New method.
14373 * source.c (print_source_lines_base): Emit escape sequences in one
14374 piece.
14375
75ba10dc
JB
143762019-02-17 Joel Brobecker <brobecker@adacore.com>
14377
14378 * gdbtypes.c (type_align): Handle TYPE_CODE_RANGE the same as
14379 integers and enumeration types.
14380
a2cd4f14
JB
143812019-02-17 Joel Brobecker <brobecker@adacore.com>
14382
14383 * ada-lang.c (standard_lookup): Use ada_lookup_encoded_symbol
14384 instead of lookup_symbol_in_language
14385 (do_exact_match): New function.
14386 (ada_get_symbol_name_matcher): Return do_exact_match when
14387 doing a verbatim match.
14388
485b851b
TT
143892019-02-15 Tom Tromey <tromey@adacore.com>
14390
14391 * ravenscar-thread.c (ravenscar_thread_target::resume)
14392 (ravenscar_thread_target::wait): Special case wildcard requests.
14393
0b790b1e
TT
143942019-02-15 Tom Tromey <tromey@adacore.com>
14395
14396 * ravenscar-thread.c (base_ptid): Remove.
14397 (struct ravenscar_thread_target) <close>: New method.
14398 <m_base_ptid>: New member.
14399 <update_inferior_ptid, active_task, task_is_currently_active,
14400 runtime_initialized>: Declare methods.
14401 <ravenscar_thread_target>: Add constructor.
14402 (ravenscar_thread_target::task_is_currently_active)
14403 (ravenscar_thread_target::update_inferior_ptid)
14404 (ravenscar_runtime_initialized): Rename. Now methods.
14405 (ravenscar_thread_target::resume, ravenscar_thread_target::wait)
14406 (ravenscar_thread_target::update_thread_list): Update.
14407 (ravenscar_thread_target::active_task): Now method.
14408 (ravenscar_thread_target::store_registers)
14409 (ravenscar_thread_target::prepare_to_store)
14410 (ravenscar_thread_target::prepare_to_store)
14411 (ravenscar_thread_target::mourn_inferior): Update.
14412 (ravenscar_inferior_created): Use "new" to create target.
14413 (ravenscar_thread_target::get_ada_task_ptid): Update.
14414 (_initialize_ravenscar): Don't initialize base_ptid.
14415 (ravenscar_ops): Remove global.
14416
dea57a62
TT
144172019-02-15 Tom Tromey <tromey@adacore.com>
14418
14419 * target.h (push_target): Declare new overload.
14420 * target.c (push_target): New overload, taking an rvalue reference.
14421 * remote.c (remote_target::open_1): Use push_target overload.
14422 * corelow.c (core_target_open): Use push_target overload.
14423
989f3c58
TT
144242019-02-15 Tom Tromey <tromey@adacore.com>
14425
14426 * ravenscar-thread.c (is_ravenscar_task)
14427 (ravenscar_task_is_currently_active): Return bool.
14428 (ravenscar_update_inferior_ptid, get_running_thread_msymbol)
14429 (_initialize_ravenscar): Remove "(void)".
14430 (has_ravenscar_runtime, ravenscar_runtime_initialized): Likewise.
14431 Return bool.
14432
6cbcc006
TT
144332019-02-15 Tom Tromey <tromey@adacore.com>
14434
14435 * ravenscar-thread.c (ravenscar_runtime_initializer)
14436 (has_ravenscar_runtime, get_running_thread_id)
14437 (ravenscar_thread_target::resume): Fix indentation.
14438
7657f14d
TT
144392019-02-15 Tom Tromey <tromey@adacore.com>
14440
14441 * sparc-ravenscar-thread.c (struct sparc_ravenscar_ops): Derive
14442 from ravenscar_arch_ops.
14443 (sparc_ravenscar_ops::fetch_registers)
14444 (sparc_ravenscar_ops::store_registers): Now methods.
14445 (sparc_ravenscar_prepare_to_store): Remove.
14446 (sparc_ravenscar_ops): Redefine.
14447 * ravenscar-thread.h (struct ravenscar_arch_ops): Add virtual
14448 methods and destructor. Remove members.
14449 * ravenscar-thread.c (ravenscar_thread_target::fetch_registers)
14450 (ravenscar_thread_target::store_registers)
14451 (ravenscar_thread_target::prepare_to_store): Update.
14452 * ppc-ravenscar-thread.c (ppc_ravenscar_generic_prepare_to_store):
14453 Remove.
14454 (struct ppc_ravenscar_powerpc_ops): Derive from
14455 ravenscar_arch_ops.
14456 (ppc_ravenscar_powerpc_ops::fetch_registers)
14457 (ppc_ravenscar_powerpc_ops::store_registers): Now methods.
14458 (ppc_ravenscar_powerpc_ops): Redefine.
14459 (struct ppc_ravenscar_e500_ops): Derive from ravenscar_arch_ops.
14460 (ppc_ravenscar_e500_ops::fetch_registers)
14461 (ppc_ravenscar_e500_ops::store_registers): Now methods.
14462 (ppc_ravenscar_e500_ops): Redefine.
14463 * aarch64-ravenscar-thread.c
14464 (aarch64_ravenscar_generic_prepare_to_store): Remove.
14465 (struct aarch64_ravenscar_ops): Derive from ravenscar_arch_ops.
14466 (aarch64_ravenscar_fetch_registers)
14467 (aarch64_ravenscar_store_registers): Now methods.
14468 (aarch64_ravenscar_ops): Redefine.
14469
5b6ea500
TT
144702019-02-15 Tom Tromey <tromey@adacore.com>
14471
14472 * ravenscar-thread.c (ravenscar_thread_target::stopped_by_sw_breakpoint)
14473 (ravenscar_thread_target::stopped_by_hw_breakpoint)
14474 (ravenscar_thread_target::stopped_by_watchpoint)
14475 (ravenscar_thread_target::stopped_data_address)
14476 (ravenscar_thread_target::core_of_thread): Use scoped_restore.
14477
e397fd39
TT
144782019-02-15 Tom Tromey <tromey@adacore.com>
14479
14480 * ravenscar-thread.c: Fix some typos.
14481
cc12f4a8
TT
144822019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14483 Tom Tromey <tromey@adacore.com>
14484
14485 * ada-lang.c (ada_exception_sal): Change addr_string to a
14486 std::string.
14487 (create_ada_exception_catchpoint): Update.
14488
5f486660
TT
144892019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14490 Tom Tromey <tromey@adacore.com>
14491
14492 * breakpoint.c (~bp_location): Rename from bp_location_dtor.
14493 (bp_location_ops): Remove.
14494 (base_breakpoint_allocate_location): Update.
14495 (free_bp_location): Update.
14496 * ada-lang.c (class ada_catchpoint_location)
14497 <ada_catchpoint_location>: Remove ops parameter.
14498 (ada_catchpoint_location_dtor): Remove.
14499 (ada_catchpoint_location_ops): Remove.
14500 (allocate_location_exception): Update.
14501 * breakpoint.h (struct bp_location_ops): Remove.
14502 (class bp_location) <bp_location>: Remove bp_location_ops
14503 parameter.
14504 <~bp_location>: Add destructor.
14505 <ops>: Remove.
14506
b671c7fb
TS
145072019-02-14 Thomas Schwinge <thomas@codesourcery.com>
14508 Pedro Alves <palves@redhat.com>
14509
14510 * remote.c (remote_target::remote_parse_stop_reply): Avoid using
14511 'PATH_MAX'.
14512
8071c5ce
DM
145132019-02-14 David Michael <fedora.dm0@gmail.com>
14514 Samuel Thibault <samuel.thibault@gnu.org>
14515 Thomas Schwinge <thomas@codesourcery.com>
14516
14517 * gnu-nat.c (S_proc_getmsgport_reply, S_proc_task2proc_reply)
14518 (S_proc_pid2proc_reply): Adjust to Hurd "proc" interface changes.
14519
b1041ae0
TS
145202019-02-14 Thomas Schwinge <thomas@codesourcery.com>
14521
924514e1
TS
14522 * gnu-nat.c (gnu_write_inferior, parse_int_arg, _parse_bool_arg)
14523 (check_empty): Use "const char *".
14524
c29ee8d4
TS
14525 * gnu-nat.c (gnu_nat_target::detach): Instead of
14526 'detach_inferior (pid)' call
14527 'detach_inferior (find_inferior_pid (pid))'.
14528
6c6ef69f
TS
14529 * configure.nat [gdb_host == i386gnu] (NATDEPFILES): Add
14530 'nat/fork-inferior.o'.
14531 * gnu-nat.c: #include "nat/fork-inferior.h".
14532
2d0a338c
TS
14533 * gnu-nat.c (gnu_nat_target::detach): Instead of
14534 'inf_child_maybe_unpush_target (ops)' call 'maybe_unpush_target'.
14535 * gnu-nat.h: #include "inf-child.h".
14536 * i386-gnu-nat.c (gnu_fetch_registers): Rename/move to
14537 'i386_gnu_nat_target::fetch_registers'.
14538 (gnu_store_registers): Rename/move to
14539 'i386_gnu_nat_target::store_registers'.
14540
cabb5f06
TS
14541 * config/i386/nm-i386gnu.h: Don't "#include" any files.
14542 * gnu-nat.h (mach_thread_info): New function.
14543 * gnu-nat.c (thread_takeover_sc_cmd): Use it.
14544
b1041ae0
TS
14545 * config/i386/nm-i386gnu.h (gnu_target_pid_to_str): Remove.
14546
2988d01e
KF
145472019-02-14 Frederic Konrad <konrad@adacore.com>
14548
14549 * riscv-rdep.c (riscv_type_alignment): Handle TYPE_CODE_RANGE.
14550
c559d709
JB
145512019-02-14 Joel Brobecker <brobecker@adacore.com>
14552
14553 * windows-nat.c (windows_add_thread): Add new parameter
14554 "main_thread_p" with default value set to false. Update
14555 function documentation as well as all callers.
14556 (windows_delete_thread): Likewise.
14557 (fake_create_process): Update call to windows_add_thread.
14558 (get_windows_debug_event) <CREATE_THREAD_DEBUG_EVENT>
14559 <CREATE_PROCESS_DEBUG_EVENT>: Likewise.
14560 <EXIT_THREAD_DEBUG_EVENT, EXIT_PROCESS_DEBUG_EVENT>: Update
14561 call to windows_delete_thread.
14562
007024cc
SM
145632019-02-13 Simon Marchi <simon.marchi@ericsson.com>
14564
14565 * MAINTAINERS: Add Andrew Burgess as global maintainer.
14566
f62318e9
JB
145672019-02-12 John Baldwin <jhb@FreeBSD.org>
14568
14569 * symfile.c (find_separate_debug_file): Use canonical path of
14570 sysroot with child_path instead of gdb_sysroot if it is valid.
14571
cd4b7848
JB
145722019-02-12 John Baldwin <jhb@FreeBSD.org>
14573
14574 * symfile.c (find_separate_debug_file): Use child_path to
14575 determine if an object file is under a sysroot.
14576
efac4bfe
JB
145772019-02-12 John Baldwin <jhb@FreeBSD.org>
14578
14579 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
14580 unittests/child-path-selftests.c.
14581 * common/pathstuff.c (child_path): New function.
14582 * common/pathstuff.h (child_path): New prototype.
14583 * unittests/child-path-selftests.c: New file.
14584
402d2bfe
JB
145852019-02-12 John Baldwin <jhb@FreeBSD.org>
14586
14587 * symfile.c (find_separate_debug_file): Look for separate debug
14588 files in debug directories under the sysroot.
14589
1ed9f74e
PW
145902019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14591
14592 * symtab.h (struct minimal_symbol data_p): New const method.
14593 (struct minimal_symbol text_p): Likewise.
14594 * symtab.c (output_source_filename): Use file name style
14595 to print file name.
14596 (print_symbol_info): Likewise.
14597 (print_msymbol_info): Use address style to print addresses.
14598 Use function name style to print executable text symbols.
14599 (expand_symtab_containing_pc): Use data_p.
14600 (find_pc_sect_compunit_symtab): Likewise.
14601
2636d81d
PW
146022019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14603
14604 * breakpoint.c (describe_other_breakpoints): Use address style
14605 to print addresses.
14606 (say_where): Likewise.
14607
ac8c53cc
PW
146082019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14609
14610 * ada-typeprint.c (print_func_type): Print function name
14611 style to print function name.
14612 * c-typeprint.c (c_print_type_1): Likewise.
14613
ea638c43
AH
146142019-02-11 Alan Hayward <alan.hayward@arm.com>
14615
14616 * aarch64-linux-tdep.c (aarch64_linux_get_syscall_number): Check
14617 for execve.
14618
ab759ca8
PW
146192019-02-10 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14620
14621 * c-exp.y (direct_abs_decl): Use emplace_back to record the
14622 type_stack.
14623
aff29d1c
JB
146242019-02-10 Joel Brobecker <brobecker@adacore.com>
14625
14626 * ada-varobj.c (ada_value_is_changeable_p): Add handling of
14627 TYPE_CODE_REF types.
14628
617126bc
JW
146292019-02-08 Jim Wilson <jimw@sifive.com>
14630
14631 * riscv-linux-tdep.c (riscv_linux_fregmap): New.
14632 (riscv_linux_fregset): New.
14633 (riscv_linux_iterate_over_regset_sections): Call cb for .reg2 section.
14634
46e3ed7f
TT
146352019-02-07 Tom Tromey <tom@tromey.com>
14636
14637 * thread.c (thread_cancel_execution_command): Update.
14638 * thread-fsm.h (struct thread_fsm): Add constructor, destructor,
14639 methods.
14640 (struct thread_fsm_ops): Remove.
14641 (thread_fsm_ctor, thread_fsm_delete, thread_fsm_clean_up)
14642 (thread_fsm_should_stop, thread_fsm_return_value)
14643 (thread_fsm_set_finished, thread_fsm_finished_p)
14644 (thread_fsm_async_reply_reason, thread_fsm_should_notify_stop):
14645 Don't declare.
14646 * mi/mi-interp.c (mi_on_normal_stop_1): Update.
14647 * infrun.c (clear_proceed_status_thread)
14648 (clean_up_just_stopped_threads_fsms, fetch_inferior_event)
14649 (print_stop_event): Update.
14650 * infcmd.c (struct step_command_fsm): Inherit from thread_fsm.
14651 Add constructor.
14652 (step_command_fsm_ops): Remove.
14653 (new_step_command_fsm): Remove.
14654 (step_1): Update.
14655 (step_command_fsm::should_stop): Rename from
14656 step_command_fsm_should_stop.
14657 (step_command_fsm::clean_up): Rename from
14658 step_command_fsm_clean_up.
14659 (step_command_fsm::do_async_reply_reason): Rename from
14660 step_command_fsm_async_reply_reason.
14661 (struct until_next_fsm): Inherit from thread_fsm. Add
14662 constructor.
14663 (until_next_fsm_ops): Remove.
14664 (new_until_next_fsm): Remove.
14665 (until_next_fsm::should_stop): Rename from
14666 until_next_fsm_should_stop.
14667 (until_next_fsm::clean_up): Rename from until_next_fsm_clean_up.
14668 (until_next_fsm::do_async_reply_reason): Rename from
14669 until_next_fsm_async_reply_reason.
14670 (struct finish_command_fsm): Inherit from thread_fsm. Add
14671 constructor. Change type of breakpoint.
14672 (finish_command_fsm_ops): Remove.
14673 (new_finish_command_fsm): Remove.
14674 (finish_command_fsm::should_stop): Rename from
14675 finish_command_fsm_should_stop.
14676 (finish_command_fsm::clean_up): Rename from
14677 finish_command_fsm_clean_up.
14678 (finish_command_fsm::return_value): Rename from
14679 finish_command_fsm_return_value.
14680 (finish_command_fsm::do_async_reply_reason): Rename from
14681 finish_command_fsm_async_reply_reason.
14682 (finish_command): Update.
14683 * infcall.c (struct call_thread_fsm): Inherit from thread_fsm.
14684 Add constructor.
14685 (call_thread_fsm_ops): Remove.
14686 (call_thread_fsm::call_thread_fsm): Rename from
14687 new_call_thread_fsm.
14688 (call_thread_fsm::should_stop): Rename from
14689 call_thread_fsm_should_stop.
14690 (call_thread_fsm::should_notify_stop): Rename from
14691 call_thread_fsm_should_notify_stop.
14692 (run_inferior_call, call_function_by_hand_dummy): Update.
14693 * cli/cli-interp.c (should_print_stop_to_console): Update.
14694 * breakpoint.c (struct until_break_fsm): Inherit from thread_fsm.
14695 Add constructor. Change type of location_breakpoint,
14696 caller_breakpoint.
14697 (until_break_fsm_ops): Remove.
14698 (new_until_break_fsm): Remove.
14699 (until_break_fsm::should_stop): Rename from
14700 until_break_fsm_should_stop.
14701 (until_break_fsm::clean_up): Rename from
14702 until_break_fsm_clean_up.
14703 (until_break_fsm::do_async_reply_reason): Rename from
14704 until_break_fsm_async_reply_reason.
14705 (until_break_command): Update.
14706 * thread-fsm.c: Remove.
14707 * Makefile.in (COMMON_SFILES): Remove thread-fsm.c.
14708
1a5c2598
TT
147092019-02-07 Tom Tromey <tom@tromey.com>
14710
14711 * yy-remap.h: Add include guard.
14712 * xtensa-tdep.h: Add include guard.
14713 * xcoffread.h: Rename include guard.
14714 * varobj-iter.h: Add include guard.
14715 * tui/tui.h: Rename include guard.
14716 * tui/tui-winsource.h: Rename include guard.
14717 * tui/tui-wingeneral.h: Rename include guard.
14718 * tui/tui-windata.h: Rename include guard.
14719 * tui/tui-win.h: Rename include guard.
14720 * tui/tui-stack.h: Rename include guard.
14721 * tui/tui-source.h: Rename include guard.
14722 * tui/tui-regs.h: Rename include guard.
14723 * tui/tui-out.h: Rename include guard.
14724 * tui/tui-layout.h: Rename include guard.
14725 * tui/tui-io.h: Rename include guard.
14726 * tui/tui-hooks.h: Rename include guard.
14727 * tui/tui-file.h: Rename include guard.
14728 * tui/tui-disasm.h: Rename include guard.
14729 * tui/tui-data.h: Rename include guard.
14730 * tui/tui-command.h: Rename include guard.
14731 * tic6x-tdep.h: Add include guard.
14732 * target/waitstatus.h: Rename include guard.
14733 * target/wait.h: Rename include guard.
14734 * target/target.h: Rename include guard.
14735 * target/resume.h: Rename include guard.
14736 * target-float.h: Rename include guard.
14737 * stabsread.h: Add include guard.
14738 * rs6000-tdep.h: Add include guard.
14739 * riscv-fbsd-tdep.h: Add include guard.
14740 * regformats/regdef.h: Rename include guard.
14741 * record.h: Rename include guard.
14742 * python/python.h: Rename include guard.
14743 * python/python-internal.h: Rename include guard.
14744 * python/py-stopevent.h: Rename include guard.
14745 * python/py-ref.h: Rename include guard.
14746 * python/py-record.h: Rename include guard.
14747 * python/py-record-full.h: Rename include guard.
14748 * python/py-record-btrace.h: Rename include guard.
14749 * python/py-instruction.h: Rename include guard.
14750 * python/py-events.h: Rename include guard.
14751 * python/py-event.h: Rename include guard.
14752 * procfs.h: Add include guard.
14753 * proc-utils.h: Add include guard.
14754 * p-lang.h: Add include guard.
14755 * or1k-tdep.h: Rename include guard.
14756 * observable.h: Rename include guard.
14757 * nto-tdep.h: Rename include guard.
14758 * nat/x86-linux.h: Rename include guard.
14759 * nat/x86-linux-dregs.h: Rename include guard.
14760 * nat/x86-gcc-cpuid.h: Add include guard.
14761 * nat/x86-dregs.h: Rename include guard.
14762 * nat/x86-cpuid.h: Rename include guard.
14763 * nat/ppc-linux.h: Rename include guard.
14764 * nat/mips-linux-watch.h: Rename include guard.
14765 * nat/linux-waitpid.h: Rename include guard.
14766 * nat/linux-ptrace.h: Rename include guard.
14767 * nat/linux-procfs.h: Rename include guard.
14768 * nat/linux-osdata.h: Rename include guard.
14769 * nat/linux-nat.h: Rename include guard.
14770 * nat/linux-namespaces.h: Rename include guard.
14771 * nat/linux-btrace.h: Rename include guard.
14772 * nat/glibc_thread_db.h: Rename include guard.
14773 * nat/gdb_thread_db.h: Rename include guard.
14774 * nat/gdb_ptrace.h: Rename include guard.
14775 * nat/fork-inferior.h: Rename include guard.
14776 * nat/amd64-linux-siginfo.h: Rename include guard.
14777 * nat/aarch64-sve-linux-sigcontext.h: Rename include guard.
14778 * nat/aarch64-sve-linux-ptrace.h: Rename include guard.
14779 * nat/aarch64-linux.h: Rename include guard.
14780 * nat/aarch64-linux-hw-point.h: Rename include guard.
14781 * mn10300-tdep.h: Add include guard.
14782 * mips-linux-tdep.h: Add include guard.
14783 * mi/mi-parse.h: Rename include guard.
14784 * mi/mi-out.h: Rename include guard.
14785 * mi/mi-main.h: Rename include guard.
14786 * mi/mi-interp.h: Rename include guard.
14787 * mi/mi-getopt.h: Rename include guard.
14788 * mi/mi-console.h: Rename include guard.
14789 * mi/mi-common.h: Rename include guard.
14790 * mi/mi-cmds.h: Rename include guard.
14791 * mi/mi-cmd-break.h: Rename include guard.
14792 * m2-lang.h: Add include guard.
14793 * location.h: Rename include guard.
14794 * linux-record.h: Rename include guard.
14795 * linux-nat.h: Add include guard.
14796 * linux-fork.h: Add include guard.
14797 * i386-darwin-tdep.h: Rename include guard.
14798 * hppa-linux-offsets.h: Add include guard.
14799 * guile/guile.h: Rename include guard.
14800 * guile/guile-internal.h: Rename include guard.
14801 * gnu-nat.h: Rename include guard.
14802 * gdb-stabs.h: Rename include guard.
14803 * frv-tdep.h: Add include guard.
14804 * f-lang.h: Add include guard.
14805 * event-loop.h: Add include guard.
14806 * darwin-nat.h: Rename include guard.
14807 * cp-abi.h: Rename include guard.
14808 * config/sparc/nm-sol2.h: Rename include guard.
14809 * config/nm-nto.h: Rename include guard.
14810 * config/nm-linux.h: Add include guard.
14811 * config/i386/nm-i386gnu.h: Rename include guard.
14812 * config/djgpp/nl_types.h: Rename include guard.
14813 * config/djgpp/langinfo.h: Rename include guard.
14814 * compile/gcc-cp-plugin.h: Add include guard.
14815 * compile/gcc-c-plugin.h: Add include guard.
14816 * compile/compile.h: Rename include guard.
14817 * compile/compile-object-run.h: Rename include guard.
14818 * compile/compile-object-load.h: Rename include guard.
14819 * compile/compile-internal.h: Rename include guard.
14820 * compile/compile-cplus.h: Rename include guard.
14821 * compile/compile-c.h: Rename include guard.
14822 * common/xml-utils.h: Rename include guard.
14823 * common/x86-xstate.h: Rename include guard.
14824 * common/version.h: Rename include guard.
14825 * common/vec.h: Rename include guard.
14826 * common/tdesc.h: Rename include guard.
14827 * common/selftest.h: Rename include guard.
14828 * common/scoped_restore.h: Rename include guard.
14829 * common/scoped_mmap.h: Rename include guard.
14830 * common/scoped_fd.h: Rename include guard.
14831 * common/safe-iterator.h: Rename include guard.
14832 * common/run-time-clock.h: Rename include guard.
14833 * common/refcounted-object.h: Rename include guard.
14834 * common/queue.h: Rename include guard.
14835 * common/ptid.h: Rename include guard.
14836 * common/print-utils.h: Rename include guard.
14837 * common/preprocessor.h: Rename include guard.
14838 * common/pathstuff.h: Rename include guard.
14839 * common/observable.h: Rename include guard.
14840 * common/netstuff.h: Rename include guard.
14841 * common/job-control.h: Rename include guard.
14842 * common/host-defs.h: Rename include guard.
14843 * common/gdb_wait.h: Rename include guard.
14844 * common/gdb_vecs.h: Rename include guard.
14845 * common/gdb_unlinker.h: Rename include guard.
14846 * common/gdb_unique_ptr.h: Rename include guard.
14847 * common/gdb_tilde_expand.h: Rename include guard.
14848 * common/gdb_sys_time.h: Rename include guard.
14849 * common/gdb_string_view.h: Rename include guard.
14850 * common/gdb_splay_tree.h: Rename include guard.
14851 * common/gdb_setjmp.h: Rename include guard.
14852 * common/gdb_ref_ptr.h: Rename include guard.
14853 * common/gdb_optional.h: Rename include guard.
14854 * common/gdb_locale.h: Rename include guard.
14855 * common/gdb_assert.h: Rename include guard.
14856 * common/filtered-iterator.h: Rename include guard.
14857 * common/filestuff.h: Rename include guard.
14858 * common/fileio.h: Rename include guard.
14859 * common/environ.h: Rename include guard.
14860 * common/common-utils.h: Rename include guard.
14861 * common/common-types.h: Rename include guard.
14862 * common/common-regcache.h: Rename include guard.
14863 * common/common-inferior.h: Rename include guard.
14864 * common/common-gdbthread.h: Rename include guard.
14865 * common/common-exceptions.h: Rename include guard.
14866 * common/common-defs.h: Rename include guard.
14867 * common/common-debug.h: Rename include guard.
14868 * common/cleanups.h: Rename include guard.
14869 * common/buffer.h: Rename include guard.
14870 * common/btrace-common.h: Rename include guard.
14871 * common/break-common.h: Rename include guard.
14872 * cli/cli-utils.h: Rename include guard.
14873 * cli/cli-style.h: Rename include guard.
14874 * cli/cli-setshow.h: Rename include guard.
14875 * cli/cli-script.h: Rename include guard.
14876 * cli/cli-interp.h: Rename include guard.
14877 * cli/cli-decode.h: Rename include guard.
14878 * cli/cli-cmds.h: Rename include guard.
14879 * charset-list.h: Add include guard.
14880 * buildsym-legacy.h: Rename include guard.
14881 * bfin-tdep.h: Add include guard.
14882 * ax.h: Rename include guard.
14883 * arm-linux-tdep.h: Add include guard.
14884 * arm-fbsd-tdep.h: Add include guard.
14885 * arch/xtensa.h: Rename include guard.
14886 * arch/tic6x.h: Add include guard.
14887 * arch/i386.h: Add include guard.
14888 * arch/arm.h: Rename include guard.
14889 * arch/arm-linux.h: Rename include guard.
14890 * arch/arm-get-next-pcs.h: Rename include guard.
14891 * arch/amd64.h: Add include guard.
14892 * arch/aarch64-insn.h: Rename include guard.
14893 * arch-utils.h: Rename include guard.
14894 * annotate.h: Add include guard.
14895 * amd64-darwin-tdep.h: Rename include guard.
14896 * aarch64-linux-tdep.h: Add include guard.
14897 * aarch64-fbsd-tdep.h: Add include guard.
14898 * aarch32-linux-nat.h: Add include guard.
14899
ab9268d2
PW
149002019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14901
14902 * macrotab.c (macro_define_internal): New function that
14903 factorizes macro_define_object_internal and macro_define_function
14904 code.
14905 (macro_define_object_internal): Use macro_define_internal.
14906 (macro_define_function): Likewise.
14907
bb0da2b4
PW
149082019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14909
14910 * macrocmd.c (extract_identifier): Return
14911 a gdb::unique_xmalloc_ptr<char> instead of a char *, and update
14912 callers.
14913
424eb552
JB
149142019-02-06 John Baldwin <jhb@FreeBSD.org>
14915
14916 * fbsd-nat.c (fbsd_fetch_cmdline): Join arguments with spaces.
14917
1688cb29
TT
149182019-02-05 Tom Tromey <tom@tromey.com>
14919
14920 * target.c (target_stack::unpush): Move assertion earlier.
14921
b5eba2d8
TT
149222019-01-30 Tom Tromey <tom@tromey.com>
14923
14924 PR python/23615:
14925 * python/python.c (execute_gdb_command): Use gdbpy_allow_threads.
14926 (gdbpy_parse_and_eval): Likewise.
14927 * python/python-internal.h (gdbpy_allow_threads): New class.
14928
7054e2ff
JB
149292019-01-28 John Baldwin <jhb@FreeBSD.org>
14930
14931 * aarch64-fbsd-tdep.c (aarch64_fbsd_gregmap)
14932 (aarch64_fbsd_fpregmap): Move earlier.
14933 (AARCH64_MCONTEXT_REG_SIZE, AARCH64_MCONTEXT_FPREG_SIZE): Delete.
14934 (aarch64_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
14935 instead of individual calls to trad_frame_set_reg_addr.
14936 * arm-fbsd-tdep.c (arm_fbsd_gregmap, arm_fbsd_vfpregmap): Move
14937 earlier.
14938 (ARM_MCONTEXT_REG_SIZE, ARM_MCONTEXT_VFP_REG_SIZE): Delete.
14939 (arm_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
14940 instead of individual calls to trad_frame_set_reg_addr.
14941
36c25ffa
AH
149422019-01-28 Alan Hayward <alan.hayward@arm.com>
14943
14944 * CONTRIBUTE: Replace contribution list with wiki link.
14945
a0707f3c
TT
149462019-01-25 Tom Tromey <tom@tromey.com>
14947
14948 * Makefile.in (GDB_CFLAGS): Don't add -I for common.
14949
0747795c
TT
149502019-01-25 Tom Tromey <tom@tromey.com>
14951
14952 * xtensa-linux-nat.c: Fix common/ includes.
14953 * xml-support.h: Fix common/ includes.
14954 * xml-support.c: Fix common/ includes.
14955 * x86-linux-nat.c: Fix common/ includes.
14956 * windows-nat.c: Fix common/ includes.
14957 * varobj.h: Fix common/ includes.
14958 * varobj.c: Fix common/ includes.
14959 * value.c: Fix common/ includes.
14960 * valops.c: Fix common/ includes.
14961 * utils.c: Fix common/ includes.
14962 * unittests/xml-utils-selftests.c: Fix common/ includes.
14963 * unittests/utils-selftests.c: Fix common/ includes.
14964 * unittests/unpack-selftests.c: Fix common/ includes.
14965 * unittests/tracepoint-selftests.c: Fix common/ includes.
14966 * unittests/style-selftests.c: Fix common/ includes.
14967 * unittests/string_view-selftests.c: Fix common/ includes.
14968 * unittests/scoped_restore-selftests.c: Fix common/ includes.
14969 * unittests/scoped_mmap-selftests.c: Fix common/ includes.
14970 * unittests/scoped_fd-selftests.c: Fix common/ includes.
14971 * unittests/rsp-low-selftests.c: Fix common/ includes.
14972 * unittests/parse-connection-spec-selftests.c: Fix common/
14973 includes.
14974 * unittests/optional-selftests.c: Fix common/ includes.
14975 * unittests/offset-type-selftests.c: Fix common/ includes.
14976 * unittests/observable-selftests.c: Fix common/ includes.
14977 * unittests/mkdir-recursive-selftests.c: Fix common/ includes.
14978 * unittests/memrange-selftests.c: Fix common/ includes.
14979 * unittests/memory-map-selftests.c: Fix common/ includes.
14980 * unittests/lookup_name_info-selftests.c: Fix common/ includes.
14981 * unittests/function-view-selftests.c: Fix common/ includes.
14982 * unittests/environ-selftests.c: Fix common/ includes.
14983 * unittests/copy_bitwise-selftests.c: Fix common/ includes.
14984 * unittests/common-utils-selftests.c: Fix common/ includes.
14985 * unittests/cli-utils-selftests.c: Fix common/ includes.
14986 * unittests/array-view-selftests.c: Fix common/ includes.
14987 * ui-file.c: Fix common/ includes.
14988 * tui/tui-io.c: Fix common/ includes.
14989 * tracepoint.h: Fix common/ includes.
14990 * tracepoint.c: Fix common/ includes.
14991 * tracefile-tfile.c: Fix common/ includes.
14992 * top.h: Fix common/ includes.
14993 * top.c: Fix common/ includes.
14994 * thread.c: Fix common/ includes.
14995 * target/waitstatus.h: Fix common/ includes.
14996 * target/waitstatus.c: Fix common/ includes.
14997 * target.h: Fix common/ includes.
14998 * target.c: Fix common/ includes.
14999 * target-memory.c: Fix common/ includes.
15000 * target-descriptions.c: Fix common/ includes.
15001 * symtab.h: Fix common/ includes.
15002 * symfile.c: Fix common/ includes.
15003 * stap-probe.c: Fix common/ includes.
15004 * spu-linux-nat.c: Fix common/ includes.
15005 * sparc-nat.c: Fix common/ includes.
15006 * source.c: Fix common/ includes.
15007 * solib.c: Fix common/ includes.
15008 * solib-target.c: Fix common/ includes.
15009 * ser-unix.c: Fix common/ includes.
15010 * ser-tcp.c: Fix common/ includes.
15011 * ser-pipe.c: Fix common/ includes.
15012 * ser-base.c: Fix common/ includes.
15013 * selftest-arch.c: Fix common/ includes.
15014 * s12z-tdep.c: Fix common/ includes.
15015 * rust-exp.y: Fix common/ includes.
15016 * rs6000-aix-tdep.c: Fix common/ includes.
15017 * riscv-tdep.c: Fix common/ includes.
15018 * remote.c: Fix common/ includes.
15019 * remote-notif.h: Fix common/ includes.
15020 * remote-fileio.h: Fix common/ includes.
15021 * remote-fileio.c: Fix common/ includes.
15022 * regcache.h: Fix common/ includes.
15023 * regcache.c: Fix common/ includes.
15024 * record-btrace.c: Fix common/ includes.
15025 * python/python.c: Fix common/ includes.
15026 * python/py-type.c: Fix common/ includes.
15027 * python/py-inferior.c: Fix common/ includes.
15028 * progspace.h: Fix common/ includes.
15029 * producer.c: Fix common/ includes.
15030 * procfs.c: Fix common/ includes.
15031 * proc-api.c: Fix common/ includes.
15032 * printcmd.c: Fix common/ includes.
15033 * ppc-linux-nat.c: Fix common/ includes.
15034 * parser-defs.h: Fix common/ includes.
15035 * osdata.c: Fix common/ includes.
15036 * obsd-nat.c: Fix common/ includes.
15037 * nat/x86-linux.c: Fix common/ includes.
15038 * nat/x86-linux-dregs.c: Fix common/ includes.
15039 * nat/x86-dregs.h: Fix common/ includes.
15040 * nat/x86-dregs.c: Fix common/ includes.
15041 * nat/ppc-linux.c: Fix common/ includes.
15042 * nat/mips-linux-watch.h: Fix common/ includes.
15043 * nat/mips-linux-watch.c: Fix common/ includes.
15044 * nat/linux-waitpid.c: Fix common/ includes.
15045 * nat/linux-ptrace.h: Fix common/ includes.
15046 * nat/linux-ptrace.c: Fix common/ includes.
15047 * nat/linux-procfs.c: Fix common/ includes.
15048 * nat/linux-personality.c: Fix common/ includes.
15049 * nat/linux-osdata.c: Fix common/ includes.
15050 * nat/linux-namespaces.c: Fix common/ includes.
15051 * nat/linux-btrace.h: Fix common/ includes.
15052 * nat/linux-btrace.c: Fix common/ includes.
15053 * nat/fork-inferior.c: Fix common/ includes.
15054 * nat/amd64-linux-siginfo.c: Fix common/ includes.
15055 * nat/aarch64-sve-linux-ptrace.c: Fix common/ includes.
15056 * nat/aarch64-linux.c: Fix common/ includes.
15057 * nat/aarch64-linux-hw-point.h: Fix common/ includes.
15058 * nat/aarch64-linux-hw-point.c: Fix common/ includes.
15059 * namespace.h: Fix common/ includes.
15060 * mips-linux-tdep.c: Fix common/ includes.
15061 * minsyms.c: Fix common/ includes.
15062 * mi/mi-parse.h: Fix common/ includes.
15063 * mi/mi-main.c: Fix common/ includes.
15064 * mi/mi-cmd-env.c: Fix common/ includes.
15065 * memrange.h: Fix common/ includes.
15066 * memattr.c: Fix common/ includes.
15067 * maint.h: Fix common/ includes.
15068 * maint.c: Fix common/ includes.
15069 * main.c: Fix common/ includes.
15070 * machoread.c: Fix common/ includes.
15071 * location.c: Fix common/ includes.
15072 * linux-thread-db.c: Fix common/ includes.
15073 * linux-nat.c: Fix common/ includes.
15074 * linux-fork.c: Fix common/ includes.
15075 * inline-frame.c: Fix common/ includes.
15076 * infrun.c: Fix common/ includes.
15077 * inflow.c: Fix common/ includes.
15078 * inferior.h: Fix common/ includes.
15079 * inferior.c: Fix common/ includes.
15080 * infcmd.c: Fix common/ includes.
15081 * inf-ptrace.c: Fix common/ includes.
15082 * inf-child.c: Fix common/ includes.
15083 * ia64-linux-nat.c: Fix common/ includes.
15084 * i387-tdep.c: Fix common/ includes.
15085 * i386-tdep.c: Fix common/ includes.
15086 * i386-linux-tdep.c: Fix common/ includes.
15087 * i386-linux-nat.c: Fix common/ includes.
15088 * i386-go32-tdep.c: Fix common/ includes.
15089 * i386-fbsd-tdep.c: Fix common/ includes.
15090 * i386-fbsd-nat.c: Fix common/ includes.
15091 * guile/scm-type.c: Fix common/ includes.
15092 * guile/guile.c: Fix common/ includes.
15093 * go32-nat.c: Fix common/ includes.
15094 * gnu-nat.c: Fix common/ includes.
15095 * gdbthread.h: Fix common/ includes.
15096 * gdbarch-selftests.c: Fix common/ includes.
15097 * gdb_usleep.c: Fix common/ includes.
15098 * gdb_select.h: Fix common/ includes.
15099 * gdb_bfd.c: Fix common/ includes.
15100 * gcore.c: Fix common/ includes.
15101 * fork-child.c: Fix common/ includes.
15102 * findvar.c: Fix common/ includes.
15103 * fbsd-nat.c: Fix common/ includes.
15104 * event-top.c: Fix common/ includes.
15105 * event-loop.c: Fix common/ includes.
15106 * dwarf2read.c: Fix common/ includes.
15107 * dwarf2loc.c: Fix common/ includes.
15108 * dwarf2-frame.c: Fix common/ includes.
15109 * dwarf-index-cache.c: Fix common/ includes.
15110 * dtrace-probe.c: Fix common/ includes.
15111 * disasm-selftests.c: Fix common/ includes.
15112 * defs.h: Fix common/ includes.
15113 * csky-tdep.c: Fix common/ includes.
15114 * cp-valprint.c: Fix common/ includes.
15115 * cp-support.h: Fix common/ includes.
15116 * cp-support.c: Fix common/ includes.
15117 * corelow.c: Fix common/ includes.
15118 * completer.h: Fix common/ includes.
15119 * completer.c: Fix common/ includes.
15120 * compile/compile.c: Fix common/ includes.
15121 * compile/compile-loc2c.c: Fix common/ includes.
15122 * compile/compile-cplus-types.c: Fix common/ includes.
15123 * compile/compile-cplus-symbols.c: Fix common/ includes.
15124 * command.h: Fix common/ includes.
15125 * cli/cli-dump.c: Fix common/ includes.
15126 * cli/cli-cmds.c: Fix common/ includes.
15127 * charset.c: Fix common/ includes.
15128 * build-id.c: Fix common/ includes.
15129 * btrace.h: Fix common/ includes.
15130 * btrace.c: Fix common/ includes.
15131 * breakpoint.h: Fix common/ includes.
15132 * breakpoint.c: Fix common/ includes.
15133 * ax.h:
15134 (enum agent_op): Fix common/ includes.
15135 * ax-general.c (struct aop_map): Fix common/ includes.
15136 * ax-gdb.c: Fix common/ includes.
15137 * auxv.c: Fix common/ includes.
15138 * auto-load.c: Fix common/ includes.
15139 * arm-tdep.c: Fix common/ includes.
15140 * arch/riscv.c: Fix common/ includes.
15141 * arch/ppc-linux-common.c: Fix common/ includes.
15142 * arch/i386.c: Fix common/ includes.
15143 * arch/arm.c: Fix common/ includes.
15144 * arch/arm-linux.c: Fix common/ includes.
15145 * arch/arm-get-next-pcs.c: Fix common/ includes.
15146 * arch/amd64.c: Fix common/ includes.
15147 * arch/aarch64.c: Fix common/ includes.
15148 * arch/aarch64-insn.c: Fix common/ includes.
15149 * arch-utils.c: Fix common/ includes.
15150 * amd64-windows-tdep.c: Fix common/ includes.
15151 * amd64-tdep.c: Fix common/ includes.
15152 * amd64-sol2-tdep.c: Fix common/ includes.
15153 * amd64-obsd-tdep.c: Fix common/ includes.
15154 * amd64-nbsd-tdep.c: Fix common/ includes.
15155 * amd64-linux-tdep.c: Fix common/ includes.
15156 * amd64-linux-nat.c: Fix common/ includes.
15157 * amd64-fbsd-tdep.c: Fix common/ includes.
15158 * amd64-fbsd-nat.c: Fix common/ includes.
15159 * amd64-dicos-tdep.c: Fix common/ includes.
15160 * amd64-darwin-tdep.c: Fix common/ includes.
15161 * agent.c: Fix common/ includes.
15162 * ada-lang.h: Fix common/ includes.
15163 * ada-lang.c: Fix common/ includes.
15164 * aarch64-tdep.c: Fix common/ includes.
15165
2f5c153e
TT
151662019-01-25 Tom Tromey <tom@tromey.com>
15167
15168 * common/create-version.sh: Use common/version.h.
15169
adc6a863
PA
151702019-01-24 Pedro Alves <palves@redhat.com>
15171
15172 * infrun.c (signal_stop, signal_print, signal_program)
15173 (signal_catch, signal_pass): Now arrays instead of pointers.
15174 (update_signals_program_target, do_target_resume)
15175 (signal_catch_update, handle_command, _initialize_infrun): Adjust.
15176 * linux-nat.c (linux_nat_target::pass_signals)
15177 (linux_nat_target::create_inferior, linux_nat_target::attach):
15178 Adjust.
15179 * linux-nat.h (linux_nat_target::pass_signals): Adjust.
15180 * nto-procfs.c (nto_procfs_target::pass_signals): Adjust.
15181 * procfs.c (procfs_target::pass_signals): Adjust.
15182 * record-full.c (record_full_target::resume): Adjust.
15183 * remote.c (remote_target::pass_signals)
15184 (remote_target::program_signals): Adjust.
15185 * target-debug.h (target_debug_print_signals): Now takes a
15186 gdb::array_view as parameter. Adjust.
15187 * target.h (target_ops) <pass_signals, program_signals>: Replace
15188 pointer and length parameters with gdb::array_view.
15189 (target_pass_signals, target_program_signals): Likewise.
15190 * target-delegates.c: Regenerate.
15191
3046d67a
PA
151922019-01-24 Pedro Alves <palves@redhat.com>
15193
15194 * common/forward-scope-exit.h
15195 (forward_scope_exit::forward_scope_exit): Pass arguments to
15196 m_bind_function directly, instead of creating a std::bind and
15197 copying that.
15198
353229bf
AH
151992019-01-24 Alan Hayward <alan.hayward@arm.com>
15200
15201 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
15202 for static members.
15203 (pass_in_v_vfp_candidate): Likewise.
15204
311dc83a
TT
152052019-01-23 Tom Tromey <tom@tromey.com>
15206 Pedro Alves <palves@redhat.com>
15207
15208 * regcache.c (class regcache_invalidator): Remove.
15209 (regcache::raw_write): Use make_scope_exit.
15210
296bd123
TT
152112019-01-23 Tom Tromey <tom@tromey.com>
15212
15213 * ui-out.h (class ui_out_emit_type): Update comment.
15214
979a0d13
TT
152152019-01-23 Tom Tromey <tom@tromey.com>
15216
15217 * infrun.c (fetch_inferior_event): Update comment.
15218
d238133d
TT
152192019-01-23 Tom Tromey <tom@tromey.com>
15220 Pedro Alves <palves@redhat.com>
15221
15222 * infrun.c (reinstall_readline_callback_handler_cleanup): Remove
15223 parameter.
15224 (fetch_inferior_event): Use SCOPE_EXIT.
15225
15226
9885e6bb
TT
152272019-01-23 Tom Tromey <tom@tromey.com>
15228 Pedro Alves <palves@redhat.com>
15229
15230 * infrun.c (disable_thread_events): Delete.
15231 (stop_all_threads): Use SCOPE_EXIT.
15232
286526c1
TT
152332019-01-23 Tom Tromey <tom@tromey.com>
15234 Pedro Alves <palves@redhat.com>
15235
15236 * symfile.c: Include forward-scope-exit.h.
15237 (clear_symtab_users_cleanup): Replace forward declaration with
15238 a FORWARD_SCOPE_EXIT.
15239 (syms_from_objfile_1): Use the forward_scope_exit and
15240 gdb::optional instead of cleanup_function.
15241 (reread_symbols): Use the forward_scope_exit instead of
15242 cleanup_function.
15243 (clear_symtab_users_cleanup): Remove function.
15244
1db93f14
TT
152452019-01-23 Tom Tromey <tom@tromey.com>
15246 Pedro Alves <palves@redhat.com>
15247
15248 * linux-nat.c: Include scope-exit.h.
15249 (cleanup_target_stop): Remove.
15250 (linux_nat_target::static_tracepoint_markers_by_strid): Use
15251 SCOPE_EXIT.
15252
2cc83d1e
TT
152532019-01-23 Tom Tromey <tom@tromey.com>
15254 Pedro Alves <palves@redhat.com>
15255
15256 * infcall.c (cleanup_delete_std_terminate_breakpoint): Remove.
15257 (call_function_by_hand_dummy): Use SCOPE_EXIT.
15258
694c6bf5
TT
152592019-01-23 Tom Tromey <tom@tromey.com>
15260 Andrew Burgess <andrew.burgess@embecosm.com>
15261 Pedro Alves <palves@redhat.com>
15262
15263 * infrun.c (fetch_inferior_event): Use scope_exit.
15264 * utils.h (make_bpstat_clear_actions_cleanup): Don't declare.
15265 * top.c (execute_command): Use scope_exit.
15266 * breakpoint.c (bpstat_do_actions): Use scope_exit.
15267 * utils.c (do_bpstat_clear_actions_cleanup)
15268 (make_bpstat_clear_actions_cleanup): Remove.
15269
4c41382a
TT
152702019-01-23 Tom Tromey <tom@tromey.com>
15271 Pedro Alves <palves@redhat.com>
15272
15273 * infrun.c: Include "common/scope-exit.h"
15274 (delete_just_stopped_threads_infrun_breakpoints_cleanup): Remove.
15275 (wait_for_inferior): Use SCOPE_EXIT.
15276 (fetch_inferior_event): Use scope_exit.
15277
89f8fb50
TT
152782019-01-23 Tom Tromey <tom@tromey.com>
15279 Pedro Alves <palves@redhat.com>
15280
15281 * breakpoint.c (create_breakpoint): Remove cleanup.
15282
5419bdae
TT
152832019-01-23 Tom Tromey <tom@tromey.com>
15284 Andrew Burgess <andrew.burgess@embecosm.com>
15285 Pedro Alves <palves@redhat.com>
15286
e587ef42
PA
152872019-01-23 Pedro Alves <palves@redhat.com>
15288
15289 * gdbarch-selftests.c (struct on_exit): Use SCOPE_EXIT.
15290
77f0e74c
PA
152912019-01-23 Pedro Alves <palves@redhat.com>
15292 Andrew Burgess <andrew.burgess@embecosm.com>
15293
15294 * gdbthread.h: Include "common/forward-scope-exit.h".
15295 (scoped_finish_thread_state): Redefine custom class in terms of
15296 forward_scope_exit.
15297
5b9b3e53
PA
152982019-01-23 Pedro Alves <palves@redhat.com>
15299 Andrew Burgess <andrew.burgess@embecosm.com>
15300
15301 * common/forward-scope-exit.h: New file.
15302
54b65c9b
PA
153032019-01-23 Pedro Alves <palves@redhat.com>
15304 Andrew Burgess <andrew.burgess@embecosm.com>
15305 Tom Tromey <tom@tromey.com>
15306
15307 * common/scope-exit.h: New file.
15308
cf08fb29
PA
153092019-01-23 Pedro Alves <palves@redhat.com>
15310
15311 * common/preprocessor.h (ESC): Rename to ...
15312 (ESC_PARENS): ... this.
15313 * common/valid-expr.h (CHECK_VALID_EXPR_1, CHECK_VALID_EXPR_2)
15314 (CHECK_VALID_EXPR_3, CHECK_VALID_EXPR_4): Adjust.
15315
ae73e2e2
TT
153162019-01-23 Tom Tromey <tom@tromey.com>
15317
15318 * language.h (class scoped_switch_to_sym_language_if_auto):
15319 Initialize m_lang in both cases.
15320
6594e122
AH
153212019-01-23 Alan Hayward <alan.hayward@arm.com>
15322
15323 * nat/aarch64-linux.c (aarch64_linux_new_thread): Replace XNEW
15324 with XCNEW.
15325
a7c9855d
TT
153262019-01-22 Tom Tromey <tom@tromey.com>
15327
15328 * corelow.c: Do not include sys/file.h.
15329
93cc1d53
TT
153302019-01-22 Tom Tromey <tom@tromey.com>
15331
15332 * tui/tui-wingeneral.h: Include gdb_curses.h.
15333
38561778
TT
153342019-01-22 Tom Tromey <tom@tromey.com>
15335
15336 * source-cache.h (class source_cache) <get_source_lines,
15337 get_plain_source_lines, extract_lines>: Rename "lines" parameter.
15338
37b3ab5b
TT
153392019-01-22 Tom Tromey <tom@tromey.com>
15340
15341 * remote-fileio.h (struct remote_target): Declare.
15342
3fabc016
TT
153432019-01-22 Tom Tromey <tom@tromey.com>
15344
15345 * python/py-arch.c: Do not include py-ref.h.
15346 * python/py-bpevent.c: Do not include py-ref.h.
15347 * python/py-cmd.c: Do not include py-ref.h.
15348 * python/py-continueevent.c: Do not include py-ref.h.
15349 * python/py-event.h: Do not include py-ref.h.
15350 * python/py-evtregistry.c: Do not include py-ref.h.
15351 * python/py-finishbreakpoint.c: Do not include py-ref.h.
15352 * python/py-frame.c: Do not include py-ref.h.
15353 * python/py-framefilter.c: Do not include py-ref.h.
15354 * python/py-function.c: Do not include py-ref.h.
15355 * python/py-infevents.c: Do not include py-ref.h.
15356 * python/py-linetable.c: Do not include py-ref.h.
15357 * python/py-objfile.c: Do not include py-ref.h.
15358 * python/py-param.c: Do not include py-ref.h.
15359 * python/py-prettyprint.c: Do not include py-ref.h.
15360 * python/py-progspace.c: Do not include py-ref.h.
15361 * python/py-symbol.c: Do not include py-ref.h.
15362 * python/py-symtab.c: Do not include py-ref.h.
15363 * python/py-type.c: Do not include py-ref.h.
15364 * python/py-unwind.c: Do not include py-ref.h.
15365 * python/py-utils.c: Do not include py-ref.h.
15366 * python/py-value.c: Do not include py-ref.h.
15367 * python/py-varobj.c: Do not include py-ref.h.
15368 * python/py-xmethods.c: Do not include py-ref.h.
15369 * python/python.c: Do not include py-ref.h.
15370 * varobj.c: Do not include py-ref.h.
15371
6b4d7774
TT
153722019-01-22 Tom Tromey <tom@tromey.com>
15373
15374 * objfiles.h (struct objfile_per_bfd_storage): Use "struct"
15375 keyword for bcache.
15376
7af7e9b5
TT
153772019-01-22 Tom Tromey <tom@tromey.com>
15378
15379 * compile/compile-cplus-types.c: Remove a comment by #include.
15380
951d1049
TT
153812019-01-22 Tom Tromey <tom@tromey.com>
15382
15383 * compile/gcc-c-plugin.h: Include compile-internal.h.
15384
d65d5705
TT
153852019-01-22 Tom Tromey <tom@tromey.com>
15386
15387 * stabsread.c (EXTERN): Do not define.
15388 (symnum, next_symbol_text_func, processing_gcc_compilation)
15389 (within_function, global_sym_chain, global_stabs)
15390 (previous_stab_code, this_object_header_files)
15391 (n_this_object_header_files)
15392 (n_allocated_this_object_header_files): Define.
15393 * stabsread.h (EXTERN): Never define. Use "extern".
15394
b6fb1ee5
PW
153952019-01-22 Philippe Waroquiers <philippe.waroquiers@skynet.be>
15396
15397 * event-top.c (handle_line_of_input): use unique_xmalloc_ptr for
15398 history_value.
15399
be6d4f74
TT
154002019-01-21 Tom Tromey <tom@tromey.com>
15401
15402 * ui-out.c: Fix includes.
15403 * tui/tui-source.c: Fix includes.
15404 * target.c: Fix includes.
15405 * remote.c: Fix includes.
15406 * regcache.c: Fix includes.
15407 * python/py-block.c: Fix includes.
15408 * printcmd.c: Fix includes.
15409 * or1k-tdep.c: Fix includes.
15410 * mi/mi-main.c: Fix includes.
15411 * m32r-tdep.c: Fix includes.
15412 * csky-tdep.c: Fix includes.
15413 * compile/compile-cplus-types.c: Fix includes.
15414 * cli/cli-interp.c: Fix includes.
15415
73021deb
AH
154162019-01-21 Alan Hayward <alan.hayward@arm.com>
15417
15418 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
15419 for padding.
15420
7932255d
TT
154212019-01-16 Tom Tromey <tom@tromey.com>
15422
15423 * objfiles.h (struct minimal_symbol_iterator): Rename. Move
15424 earlier.
15425 (struct objfile) <msymbols_range>: Move from top level.
15426 <msymbols>: New method.
15427 (class objfile_msymbols): Remove.
15428 * symtab.c (default_collect_symbol_completion_matches_break_on):
15429 Update.
15430 * symmisc.c (dump_msymbols): Update.
15431 * stabsread.c (scan_file_globals): Update.
15432 * objc-lang.c (info_selectors_command, info_classes_command)
15433 (find_methods): Update.
15434 * minsyms.c (find_solib_trampoline_target): Update.
15435 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Update.
15436 * coffread.c (coff_symfile_read): Update.
15437 * ada-lang.c (ada_lookup_simple_minsym)
15438 (ada_collect_symbol_completion_matches): Update.
15439
604b1bfb
TT
154402019-01-16 Tom Tromey <tom@tromey.com>
15441
15442 * objfiles.h (class objfile_msymbols) <iterator>: Change argument
15443 type. Remove no-argument constructor.
15444 <iterator::operator++>: Simplify.
15445 <begin>: Update.
15446 <end>: Use minimal_symbol_count.
15447
f252c6d5
TT
154482019-01-16 Tom Tromey <tom@tromey.com>
15449
15450 * objfiles.h (struct objfile) <psymtabs>: New method.
15451 (class objfile_psymtabs): Remove.
15452 * psymtab.h (class psymtab_storage) <partial_symtab_range>: New
15453 typedef.
15454 <range>: New method.
15455 (require_partial_symbols): Change return type.
15456 * psymtab.c (require_partial_symbols)
15457 (psym_expand_symtabs_matching): Update.
15458 * mdebugread.c (parse_partial_symbols): Update.
15459 * dbxread.c (dbx_end_psymtab): Update.
15460
b669c953
TT
154612019-01-15 Tom Tromey <tom@tromey.com>
15462
15463 * symtab.c (lookup_objfile_from_block)
15464 (lookup_symbol_in_objfile_symtabs)
15465 (basic_lookup_transparent_type_1, find_pc_sect_compunit_symtab)
15466 (find_line_symtab, info_sources_command)
15467 (default_collect_symbol_completion_matches_break_on)
15468 (make_source_files_completion_list): Update.
15469 * symmisc.c (print_objfile_statistics, dump_objfile)
15470 (maintenance_print_symbols, maintenance_info_symtabs)
15471 (maintenance_check_symtabs, maintenance_info_line_tables):
15472 Update.
15473 * source.c (select_source_symtab)
15474 (forget_cached_source_info_for_objfile): Update.
15475 * objfiles.h (class objfile_compunits): Remove.
15476 (struct objfile) <compunits_range>: New typedef.
15477 (compunits): New method.
15478 * objfiles.c (objfile_relocate1): Update.
15479 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
15480 * maint.c (count_symtabs_and_blocks): Update.
15481 * linespec.c (iterate_over_all_matching_symtabs): Update.
15482 * cp-support.c (add_symbol_overload_list_qualified): Update.
15483 * coffread.c (coff_symtab_read): Update.
15484 * ada-lang.c (add_nonlocal_symbols)
15485 (ada_collect_symbol_completion_matches)
15486 (ada_add_global_exceptions): Update.
15487
7e955d83
TT
154882019-01-15 Tom Tromey <tom@tromey.com>
15489
15490 * progspace.h (program_space) <objfiles_safe_range>: New
15491 typedef.
15492 <objfiles_safe>: New method.
15493 * objfiles.h (class all_objfiles_safe): Remove.
15494 * objfiles.c (free_all_objfiles, objfile_purge_solibs): Update.
15495 * jit.c (jit_inferior_exit_hook): Update.
15496
2030c079
TT
154972019-01-17 Tom Tromey <tom@tromey.com>
15498
15499 * progspace.h (program_space) <objfiles_range>: New typedef.
15500 <objfiles>: New method.
15501 <objfiles_head>: Rename from objfiles.
15502 (object_files): Update.
15503 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Update.
15504 * guile/scm-pretty-print.c
15505 (ppscm_find_pretty_printer_from_objfiles): Update.
15506 * guile/scm-objfile.c (gdbscm_objfiles): Update.
15507 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers):
15508 Update.
15509 * python/py-progspace.c (pspy_get_objfiles): Update.
15510 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
15511 Update.
15512 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
15513 (objfpy_lookup_objfile_by_build_id): Update.
15514 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
15515 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
15516 Update.
15517 * symtab.c (iterate_over_symtabs, matching_obj_sections)
15518 (expand_symtab_containing_pc, lookup_objfile_from_block)
15519 (lookup_static_symbol, basic_lookup_transparent_type)
15520 (find_pc_sect_compunit_symtab, find_symbol_at_address)
15521 (find_line_symtab, info_sources_command)
15522 (default_collect_symbol_completion_matches_break_on)
15523 (make_source_files_completion_list, find_main_name): Update.
15524 * symmisc.c (print_symbol_bcache_statistics)
15525 (print_objfile_statistics, maintenance_print_symbols)
15526 (maintenance_print_msymbols, maintenance_print_objfiles)
15527 (maintenance_info_symtabs, maintenance_check_symtabs)
15528 (maintenance_expand_symtabs, maintenance_info_line_tables):
15529 Update.
15530 * symfile.c (remove_symbol_file_command, overlay_invalidate_all)
15531 (find_pc_overlay, find_pc_mapped_section, list_overlays_command)
15532 (map_overlay_command, unmap_overlay_command)
15533 (simple_overlay_update, expand_symtabs_matching)
15534 (map_symbol_filenames): Update.
15535 * symfile-debug.c (set_debug_symfile): Update.
15536 * spu-tdep.c (spu_overlay_update, spu_objfile_from_frame):
15537 Update.
15538 * source.c (select_source_symtab, forget_cached_source_info):
15539 Update.
15540 * solib.c (solib_read_symbols): Update.
15541 * solib-spu.c (append_ocl_sos): Update.
15542 * psymtab.c (maintenance_print_psymbols)
15543 (maintenance_info_psymtabs, maintenance_check_psymtabs): Update.
15544 * probe.c (parse_probes_in_pspace, find_probe_by_pc): Update.
15545 * printcmd.c (info_symbol_command): Update.
15546 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created):
15547 Update.
15548 * objfiles.h (class all_objfiles): Remove.
15549 * objfiles.c (have_partial_symbols, have_full_symbols)
15550 (have_minimal_symbols, qsort_cmp, update_section_map)
15551 (shared_objfile_contains_address_p)
15552 (default_iterate_over_objfiles_in_search_order): Update.
15553 * objc-lang.c (info_selectors_command, info_classes_command)
15554 (find_methods): Update.
15555 * minsyms.c (find_solib_trampoline_target): Update.
15556 * maint.c (maintenance_info_sections)
15557 (maintenance_translate_address, count_symtabs_and_blocks):
15558 Update.
15559 * main.c (captured_main_1): Update.
15560 * linux-thread-db.c (try_thread_db_load_from_pdir)
15561 (has_libpthread): Update.
15562 * linespec.c (iterate_over_all_matching_symtabs)
15563 (search_minsyms_for_name): Update.
15564 * jit.c (jit_find_objf_with_entry_addr): Update.
15565 * hppa-tdep.c (find_unwind_entry)
15566 (hppa_lookup_stub_minimal_symbol): Update.
15567 * gcore.c (gcore_create_callback, objfile_find_memory_regions):
15568 Update.
15569 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
15570 (elf_gnu_ifunc_resolve_by_got): Update.
15571 * dwarf2-frame.c (dwarf2_frame_find_fde): Update.
15572 * dwarf-index-write.c (save_gdb_index_command): Update.
15573 * cp-support.c (add_symbol_overload_list_qualified): Update.
15574 * breakpoint.c (create_overlay_event_breakpoint)
15575 (create_longjmp_master_breakpoint)
15576 (create_std_terminate_master_breakpoint)
15577 (create_exception_master_breakpoint): Update.
15578 * blockframe.c (find_pc_partial_function): Update.
15579 * ada-lang.c (ada_lookup_simple_minsym, add_nonlocal_symbols)
15580 (ada_collect_symbol_completion_matches)
15581 (ada_add_global_exceptions): Update.
15582
776489e0
TT
155832019-01-17 Tom Tromey <tom@tromey.com>
15584
15585 * solib-target.c (lm_info_target_p): Remove typedef. Don't
15586 declare VEC.
15587 (solib_target_parse_libraries): Change return type.
15588 (library_list_start_segment, library_list_start_section)
15589 (library_list_end_library, library_list_start_library); Update.
15590 (solib_target_free_library_list): Remove.
15591 (solib_target_parse_libraries): Remove cleanup. Change return
15592 type.
15593 (solib_target_current_sos): Update.
15594
6471e7d2
TT
155952019-01-17 Tom Tromey <tromey@bapiya>
15596
15597 * valprint.c: Replace "the the" with "the".
15598 * symtab.c: Replace "the the" with "the".
15599 * solib.c: Replace "the the" with "the".
15600 * solib-dsbt.c: Replace "the the" with "the".
15601 * linespec.c: Replace "the the" with "the".
15602 * dwarf2loc.h: Replace "the the" with "the".
15603 * amd64-windows-tdep.c: Replace "the the" with "the".
15604 * aarch64-tdep.c: Replace "the the" with "the".
15605
c24bdb02
KS
156062019-01-16 Keith Seitz <keiths@redhat.com>
15607
15608 PR gdb/23773
15609 * dwarf2read.c (dwarf2_cu) <ancestor>: New field.
15610 <builder>: Rename to ..
15611 <m_builder>: ... this and make private.
15612 (dwarf2_cu::get_builder): New method. Change all users of
15613 `builder' to use this method.
15614 (dwarf2_start_symtab): Move to ...
15615 (dwarf2_cu::start_symtab): ... here. Update all callers
15616 (setup_type_unit_groups): Move to ...
15617 (dwarf2_cu::setup_type_unit_groups): ... here. Update all
15618 callers.
15619 (dwarf2_cu::reset_builder): New method.
15620 (process_full_compunit, process_full_type_unit): Use
15621 dwarf2_cu::reset_builder.
15622 (follow_die_offset): Record the ancestor CU if it is different
15623 from the followed DIE's CU.
15624 (follow_die_sig_1): Likewise.
15625
8d64371b
TT
156262019-01-15 Tom Tromey <tom@tromey.com>
15627
15628 * remote.c (class remote_state) <buf>: Now a char_vector.
15629 <buf_size>: Remove.
15630 (remote_target::getpkt): Change type of buf. Remove sizeof_buf
15631 parameter.
15632 (remote_target::getpkt_or_notif_sane_1)
15633 (remote_target::getpkt_sane)
15634 (remote_target::getpkt_or_notif_sane): Likewise.
15635 (class remote_target) <putpkt>: New overload.
15636 (remote_target::read_frame): Change type of "buf_p". Remove
15637 sizeof_p parameter.
15638 (packet_ok): New overload.
15639 (packet_check_result): New overload.
15640 Update all uses.
15641
bb277751
TT
156422019-01-14 Tom Tromey <tom@tromey.com>
15643
15644 * remote-notif.c (handle_notification, remote_notif_ack)
15645 (remote_notif_parse): Make "buf" const.
15646 * remote-notif.h (struct notif_client) <parse, ack>: Make "buf"
15647 const.
15648 (remote_notif_parse, remote_notif_ack, handle_notification):
15649 Likewise.
15650 * remote.c (remote_notif_stop_parse): Make "buf" const.
15651 (remote_target::remote_parse_stop_reply): Make "buf" const.
15652 (remote_notif_stop_ack): Make "buf" const.
15653
05be00a8
TT
156542019-01-14 Tom Tromey <tom@tromey.com>
15655
15656 * remote.c (remote_console_output): Make parameter const.
15657
491adeca
TT
156582019-01-14 Tom Tromey <tom@tromey.com>
15659
15660 * target-debug.h (target_debug_print_signals): Constify.
15661 * nto-procfs.c (nto_procfs_target::pass_signals): Update.
15662 * procfs.c (procfs_target::pass_signals): Update.
15663 * linux-nat.c (linux_nat_target::pass_signals): Update.
15664 * linux-nat.h (class linux_nat_target) <pass_signals>: Update.
15665 * target-delegates.c: Rebuild.
15666 * remote.c (remote_target::program_signals): Update.
15667 (remote_target::pass_signals): Update.
15668 * target.c (target_pass_signals): Constify argument.
15669 (target_program_signals): Likewise.
15670 * target.h (struct target_ops) <pass_signals, program_signals>:
15671 Constify argument.
15672 (target_pass_signals, target_program_signals): Constify argument.
15673
bbd94648
TT
156742019-01-14 Tom Tromey <tom@tromey.com>
15675
15676 PR tui/28819:
15677 * tui/tui-io.c (gdb_wgetch): Print \r when needed.
15678
6f072a10
PFC
156792019-01-14 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
15680
15681 * ppc-tdep.h (struct gdbarch_tdep) <ppc_v0_alias_regnum>: New
15682 field.
15683 * rs6000-tdep.c: Include reggroups.h.
15684 (IS_V_ALIAS_PSEUDOREG): Define.
15685 (rs6000_register_name): Return names for the "vX" aliases.
15686 (rs6000_pseudo_register_type): Return type for the "vX" aliases.
15687 (rs6000_pseudo_register_reggroup_p): Restore. Handle "vX"
15688 aliases. Call default_register_reggroup_p for all other
15689 pseudo-registers.
15690 (v_alias_pseudo_register_read, v_alias_pseudo_register_write):
15691 New functions.
15692 (rs6000_pseudo_register_read, rs6000_pseudo_register_write):
15693 Handle "vX" aliases.
15694 (v_alias_pseudo_register_collect): New function.
15695 (rs6000_ax_pseudo_register_collect): Handle "vX" aliases.
15696 (rs6000_gdbarch_init): Initialize "vX" aliases as
15697 pseudo-registers. Restore registration of
15698 rs6000_pseudo_register_reggroup_p with
15699 set_tdesc_pseudo_register_reggroup_p.
15700
1a782351
MF
157012019-01-13 Max Filippov <jcmvbkbc@gmail.com>
15702
15703 * xtensa-linux-tdep.c (xtensa_linux_init_abi): Update
15704 tdep->num_pseudo_regs. Add calls to set_gdbarch_num_regs and
15705 set_gdbarch_num_pseudo_regs.
15706
d73cff18
PW
157072019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
15708
15709 * cli/cli-style.h (class cli_style_option): <add_setshow_commands>
15710 Remove arg prefixname, add do_set and do_show.
15711 Add member functions set_list and show_list.
15712 * cli/cli-style.c (class cli_style_option): Update accordingly.
15713 (style_set_list): Move to file scope.
15714 (style_show_list): Likewise.
15715 (set_style): Call help_list.
15716 (show_style): Call cmd_show_list.
15717 (_initialize_cli_style): New macro STYLE_ADD_SETSHOW_COMMANDS.
15718 Update to use the new macro.
15719
60a90376
JB
157202019-10-12 Joel Brobecker <brobecker@adacore.com>
15721
15722 * ada-lang.c (_initialize_ada_language): Expand the help text
15723 for the "catch exception" command.
15724
9d7c67bf
PW
157252019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
15726
15727 * symtab.c (matching_obj_sections): Initialize obj,
15728 declare it closer to its usage.
15729
7cf47dc4
TT
157302019-01-10 Tom Tromey <tom@tromey.com>
15731
15732 * thread-iter.h (inf_threads_iterator): Use next_iterator.
15733 (basic_inf_threads_range): Remove.
15734 (inf_threads_range, inf_non_exited_threads_range)
15735 (safe_inf_threads_range): Use next_adapter.
15736
d3cb6808
KS
157372019-01-10 Keith Seitz <keiths@redhat.com>
15738
15739 PR gdb/23712
15740 PR symtab/23010
15741 * dwarf2read.c (dw2_add_symbol_to_list): Remove.
15742 (fixup_go_packaging, new_symbol): Use add_symbol_to_list.
15743
63a20375
KS
157442019-01-10 Keith Seitz <keiths@redhat.com>
15745
15746 PR gdb/23712
15747 PR symtab/23010
15748 * dictionary.c (pending_to_vector): Remove.
15749 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
15750 Remove _1 suffix, replacing functions of the same name. Update
15751 all callers.
15752 (dict_create_hashed, dict_create_hashed_expandable)
15753 (dict_create_linear, dict_create_linear_expandable, dict_free)
15754 (dict_add_symbol, dict_add_pending, dict_size, dict_empty):
15755 Make functions static.
15756
b026f593
KS
157572019-01-10 Keith Seitz <keiths@redhat.com>
15758
15759 PR gdb/23712
15760 PR symtab/23010
15761 * dictionary.h (struct dictionary): Replace declaration with
15762 multidictionary.
15763 (dict_create_hashed, dict_create_hashed_expandable)
15764 (dict_create_linear, dict_create_linear_expandable)
15765 (dict_free, dict_add_symbol, dict_add_pending, dict_empty)
15766 (dict_iterator_first, dict_iterator_next, dict_iter_match_first)
15767 (dict_iter_match_next, dict_size): Rename to "mdict_" versions
15768 taking multidictionary argument.
15769 [ALL_DICT_SYMBOLS]: Update for multidictionary.
15770 * block.h (struct block) <dict>: Change to multidictionary
15771 and rename `multidict'.
15772 * block.c, buildsym.c, jit.c, mdebugread.c, objfiles.c,
15773 symmisc.c: Update all dictionary references to multidictionary.
15774
c7748ee9
KS
157752019-01-10 Keith Seitz <keiths@redhat.com>
15776
15777 PR gdb/23712
15778 PR symtab/23010
15779 * dictionary.c: Include unordered_map.
15780 (pending_to_vector): New function.
15781 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
15782 Rewrite the non-"_1" functions to take vector instead
15783 of linked list.
15784 (dict_create_hashed, dict_create_linear, dict_add_pending): Use the
15785 "new" _1 versions of the same name.
15786 (multidictionary): Define.
15787 (std::hash<enum language): New definition.
15788 (collate_pending_symbols_by_language, mdict_create_hashed)
15789 (mdict_create_hashed_expandable, mdict_create_linear)
15790 (mdict_create_linear_expandable, mdict_free)
15791 (find_language_dictionary, create_new_language_dictionary)
15792 (mdict_add_symbol, mdict_add_pending, mdict_iterator_first)
15793 (mdict_iterator_next, mdict_iter_match_first, mdict_iter_match_next)
15794 (mdict_size, mdict_empty): New functions.
15795 * dictionary.h (mdict_iterator): Define.
15796
67aa1f3c
PA
157972019-01-10 Pedro Alves <palves@redhat.com>
15798
15799 * breakpoint.c (read_uploaded_action)
15800 (create_tracepoint_from_upload): Adjust to use
15801 gdb::unique_xmalloc_ptr.
15802 * ctf.c (ctf_write_uploaded_tp):
15803 (SET_ARRAY_FIELD): Use emplace_back.
15804 (SET_STRING_FIELD): Adjust to use gdb::unique_xmalloc_ptr.
15805 * tracefile-tfile.c (tfile_write_uploaded_tp):
15806 * tracepoint.c (parse_tracepoint_definition): Adjust to use
15807 gdb::unique_xmalloc_ptr.
15808 * tracepoint.h (struct uploaded_tp) <cond, actions, step_actions,
15809 at_string, cond_string, cmd_strings>: Replace char pointers
15810 with gdb::unique_xmalloc_ptr.
15811
2f667667
PA
158122019-01-10 Pedro Alves <palves@redhat.com>
15813
15814 * solib-target.c (library_list_start_library): Don't xstrdup name.
15815
36cb7237
PA
158162019-01-10 Pedro Alves <palves@redhat.com>
15817
15818 * mdebugread.c (parse_partial_symbols): Use
15819 gdb::unique_xmalloc_ptr to manage heap-allocated 'stabsstring'.
15820
da584958
AB
158212019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
15822
15823 * linux-fork.c (scoped_switch_fork_info)
15824 <~scoped_switch_fork_info>: Fix incorrect variable name.
15825
1ef8573c
AB
158262019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
15827
15828 * linux-fork.c (scoped_switch_fork_info)
15829 <scoped_switch_fork_info>: Make explicit.
15830 <~scoped_switch_fork_info>: Wrap core in TRY/CATCH.
15831
8d7bcccb
TT
158322019-01-10 Tom Tromey <tom@tromey.com>
15833
15834 * objfiles.h (objfile::reset_psymtabs): Update.
15835 * objfiles.c (objfile::objfile): Update.
15836 * psymtab.h (psymtab_storage::obstack): Update.
15837 (psymtab_storage::m_obstack): Use gdb::optional.
15838 (class psymtab_storage): Update comment. Remove objfile
15839 parameter.
15840 * psymtab.c (psymtab_storage::psymtab_storage): Update.
15841
b596a3c7
TT
158422019-01-10 Tom Tromey <tom@tromey.com>
15843
15844 * psymtab.h (psymtab_storage::allocate_psymtab): New method.
15845 <free_psymtabs>: Now private.
15846 * psymtab.c (psymtab_storage::allocate_psymtab): Implement.
15847 (allocate_psymtab): Use new method.
15848
a9342b62
TT
158492019-01-10 Tom Tromey <tom@tromey.com>
15850
15851 * xcoffread.c (xcoff_end_psymtab): Use allocate_dependencies.
15852 * psymtab.h (psymtab_storage::allocate_dependencies): New method.
15853 * mdebugread.c (parse_partial_symbols): Use
15854 allocate_dependencies.
15855 * dwarf2read.c (dwarf2_create_include_psymtab): Use
15856 allocate_dependencies.
15857 (process_psymtab_comp_unit_reader)
15858 (build_type_psymtab_dependencies): Likewise.
15859 * dbxread.c (dbx_end_psymtab): Use allocate_dependencies.
15860
5af70966
TT
158612019-01-10 Tom Tromey <tom@tromey.com>
15862
15863 * psymtab.c (add_psymbol_to_bcache): Pass psymtab obstack to
15864 PSYMBOL_SET_LANGUAGE.
15865 (allocate_psymtab): Allocate psymtab on the psymtab obstack.
15866
5923a04c
TT
158672019-01-10 Tom Tromey <tom@tromey.com>
15868
15869 * psymtab.h (psymtab_storage::obstack): New method.
15870 <m_obstack>: Rename from obstack; now private.
15871 * psymtab.c (psymtab_storage): Update.
15872 * dwarf2read.c (create_addrmap_from_index)
15873 (create_addrmap_from_aranges, dwarf2_build_psymtabs_hard):
15874 Update.
15875
6d6a12bf
TT
158762019-01-10 Tom Tromey <tom@tromey.com>
15877
15878 * symfile.c (reread_symbols): Call objfile->reset_psymtabs.
15879 * objfiles.h (objfile::reset_psymtabs): New method.
15880
d320c2b5
TT
158812019-01-10 Tom Tromey <tom@tromey.com>
15882
15883 * symmisc.c (print_symbol_bcache_statistics): Update.
15884 (print_objfile_statistics): Update.
15885 * symfile.c (reread_symbols): Update.
15886 * psymtab.h (class psymtab_storage): New.
15887 * psymtab.c (psymtab_storage): New constructor.
15888 (~psymtab_storage): New destructor.
15889 (require_partial_symbols): Update.
15890 (ALL_OBJFILE_PSYMTABS_REQUIRED): Rewrite.
15891 (find_pc_sect_psymtab, find_pc_sect_psymbol)
15892 (match_partial_symbol, lookup_partial_symbol, dump_psymtab)
15893 (psym_dump, recursively_search_psymtabs, psym_has_symbols)
15894 (psym_find_compunit_symtab_by_address, sort_pst_symbols)
15895 (start_psymtab_common, end_psymtab_common)
15896 (add_psymbol_to_bcache, add_psymbol_to_list, init_psymbol_list)
15897 (allocate_psymtab): Update.
15898 (psymtab_storage::discard_psymtab): Rename from discard_psymtab.
15899 Update.
15900 (dump_psymtab_addrmap, maintenance_print_psymbols)
15901 (maintenance_check_psymtabs): Update.
15902 (class objfile_psymtabs): Move to objfiles.h.
15903 * psympriv.h (discard_psymtab): Now inline.
15904 (psymtab_discarder::psymtab_discarder): Update.
15905 (psymtab_discarder::~psymtab_discarder): Update.
15906 (ALL_OBJFILE_PSYMTABS): Rewrite.
15907 * objfiles.h (struct objfile) <psymtabs, psymtabs_addrmap,
15908 free_psymtabs, psymbol_cache, global_psymbols, static_psymbols>:
15909 Remove fields.
15910 <partial_symtabs>: New field.
15911 (class objfile_psymtabs): Move from psymtab.h. Update.
15912 * objfiles.c (objfile::objfile): Initialize partial_symtabs, not
15913 psymbol_cache.
15914 (objfile::~objfile): Don't destroy psymbol_cache.
15915 * mdebugread.c (parse_partial_symbols): Update.
15916 * dwarf2read.c (create_addrmap_from_index)
15917 (create_addrmap_from_aranges, dw2_find_pc_sect_compunit_symtab)
15918 (process_psymtab_comp_unit_reader, dwarf2_build_psymtabs_hard)
15919 (add_partial_subprogram, dwarf2_ranges_read): Update.
15920 * dwarf-index-write.c (write_address_map)
15921 (write_one_signatured_type, recursively_write_psymbols)
15922 (class debug_names, class debug_names, write_psymtabs_to_index):
15923 Update.
15924
1d94a5a3
TT
159252019-01-10 Tom Tromey <tom@tromey.com>
15926
15927 * symtab.h (SYMBOL_SET_NAMES): Update.
15928 (symbol_set_names): Update.
15929 (MSYMBOL_SET_NAMES): Update.
15930 * symtab.c (symbol_set_names): Change argument to be an
15931 objfile_per_bfd_storage.
15932 * psymtab.c (add_psymbol_to_bcache): Update.
15933 * psympriv.h (PSYMBOL_SET_NAMES): Take per_bfd argument.
15934
0f14768a
TT
159352019-01-10 Tom Tromey <tom@tromey.com>
15936
15937 * symtab.c (create_demangled_names_hash): Change argument to be an
15938 objfile_per_bfd_storage.
15939 (symbol_set_names): Update.
15940
6eee24ce
TT
159412019-01-10 Tom Tromey <tom@tromey.com>
15942
15943 * xcoffread.c (xcoff_initial_scan): Unconditionally call
15944 init_psymbol_list.
15945 * psymtab.c (init_psymbol_list): Do nothing if already called.
15946 * psympriv.h (init_psymbol_list): Add comment.
15947 * dwarf2read.c (dwarf2_build_psymtabs): Unconditionally call
15948 init_psymbol_list.
15949 * dbxread.c (dbx_symfile_read): Unconditionally call
15950 init_psymbol_list.
15951
75aedd27
TT
159522019-01-10 Tom Tromey <tom@tromey.com>
15953
15954 * xcoffread.c (scan_xcoff_symtab): Update.
15955 * psymtab.c (add_psymbol_to_list): Replace "list" parameter with
15956 "where".
15957 * mdebugread.c (parse_partial_symbols)
15958 (handle_psymbol_enumerators): Update.
15959 * dwarf2read.c (add_partial_symbol, load_partial_dies): Update.
15960 * dbxread.c (read_dbx_symtab): Update.
15961 * psympriv.h (psymbol_placement): New enum.
15962 (add_psymbol_to_list): Update.
15963
939652a5
TT
159642019-01-10 Tom Tromey <tom@tromey.com>
15965
15966 * xcoffread.c (xcoff_start_psymtab): Remove global_psymbols and
15967 static_psymbols parameters.
15968 (scan_xcoff_symtab): Update.
15969 * psymtab.c (start_psymtab_common): Remove global_psymbols and
15970 static_psymbols parameters.
15971 * psympriv.h (start_psymtab_common): Update.
15972 * mdebugread.c (parse_partial_symbols): Update.
15973 * dwarf2read.c (create_partial_symtab): Update.
15974 * dbxread.c (read_dbx_symtab): Update.
15975 (start_psymtab): Remove global_psymbols and static_psymbols
15976 parameters.
15977
baa62830
TT
159782019-01-10 Tom Tromey <tom@tromey.com>
15979
15980 * xcoffread.c (xcoff_end_psymtab): Remove some initializations.
15981 * psymtab.c (allocate_psymtab): Add comment.
15982 * psympriv.h (allocate_psymtab): Add comment.
15983 * dwarf2read.c (dwarf2_create_include_psymtab): Remove some
15984 initializations.
15985 * dbxread.c (dbx_end_psymtab): Remove some initializations.
15986
0e8f53ba
TT
159872019-01-10 Tom Tromey <tom@tromey.com>
15988
15989 * symfile.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
15990 Don't declare.
15991 * mipsread.c: Include mdebugread.h.
15992 * mdebugread.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
15993 Declare.
15994 * elfread.c: Include mdebugread.h.
15995
b22a7c6a
TT
159962019-01-09 Tom Tromey <tom@tromey.com>
15997
15998 * dbxread.c (dbx_end_psymtab): Use objfile_psymtabs.
15999 * mdebugread.c (parse_partial_symbols): Use objfile_psymtabs.
16000 * psymtab.c (ALL_OBJFILE_PSYMTABS_REQUIRED): Remove.
16001 (psym_map_symtabs_matching_filename, find_pc_sect_psymtab)
16002 (psym_lookup_symbol, psym_find_last_source_symtab)
16003 (psym_forget_cached_source_info, psym_print_stats)
16004 (psym_expand_symtabs_for_function, psym_expand_all_symtabs)
16005 (psym_expand_symtabs_with_fullname, psym_map_symbol_filenames)
16006 (psym_map_matching_symbols, psym_expand_symtabs_matching)
16007 (psym_find_compunit_symtab_by_address)
16008 (maintenance_print_psymbols, maintenance_info_psymtabs)
16009 (maintenance_check_psymtabs): Use ranged for.
16010 * psymtab.h (class objfile_psymtabs): New.
16011 (require_partial_symbols): Return objfile_psymtabs.
16012 * psympriv.h (ALL_OBJFILE_PSYMTABS): Remove.
16013
3b9d3ac2
TT
160142019-01-09 Tom Tromey <tom@tromey.com>
16015
16016 * symfile.c (overlay_invalidate_all, find_pc_overlay)
16017 (find_pc_mapped_section, list_overlays_command)
16018 (map_overlay_command, unmap_overlay_command)
16019 (simple_overlay_update): Use all_objfiles.
16020 * spu-tdep.c (spu_overlay_update): Use all_objfiles.
16021 * printcmd.c (info_symbol_command): Use all_objfiles.
16022 * objfiles.h (ALL_OBJSECTIONS): Remove.
16023 * maint.c (maintenance_translate_address): Use all_objfiles.
16024 * gcore.c (gcore_create_callback): Use all_objfiles.
16025 (objfile_find_memory_regions): Likewise.
16026
8b31193a
TT
160272019-01-09 Tom Tromey <tom@tromey.com>
16028
16029 * symtab.c (find_line_symtab, info_sources_command)
16030 (make_source_files_completion_list): Use objfile_compunits.
16031 * source.c (select_source_symtab): Use objfile_compunits.
16032 * objfiles.h (struct objfile): Update comment.
16033 (ALL_OBJFILES): Remove.
16034 (ALL_FILETABS): Remove.
16035 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Use
16036 objfile_compunits.
16037
d5da8b3c
TT
160382019-01-09 Tom Tromey <tom@tromey.com>
16039
16040 * symmisc.c (print_objfile_statistics, dump_objfile)
16041 (maintenance_print_symbols): Use compunit_filetabs.
16042 * source.c (forget_cached_source_info_for_objfile): Use
16043 compunit_filetabs.
16044 * objfiles.h (ALL_OBJFILE_FILETABS): Remove.
16045 (ALL_FILETABS): Use compunit_filetabs.
16046 * objfiles.c (objfile_relocate1): Use compunit_filetabs.
16047 * coffread.c (coff_symtab_read): Use compunit_filetabs.
16048
5accd1a0
TT
160492019-01-09 Tom Tromey <tom@tromey.com>
16050
16051 * symtab.h (ALL_COMPUNIT_FILETABS): Remove.
16052 (compunit_filetabs): New.
16053 * symtab.c (iterate_over_some_symtabs, find_pc_sect_line): Use
16054 compunit_filetabs.
16055 (info_sources_command, make_source_files_completion_list): Remove
16056 declaration.
16057 * symmisc.c (print_objfile_statistics, dump_objfile)
16058 (maintenance_print_symbols): Remove declaration.
16059 (maintenance_info_symtabs): Use compunit_filetabs.
16060 (maintenance_info_line_tables): Likewise.
16061 * source.c (select_source_symtab): Change local variable name.
16062 (forget_cached_source_info_for_objfile): Remove declaration.
16063 * objfiles.h (ALL_OBJFILE_FILETABS): Use compunit_filetabs.
16064 * objfiles.c (objfile_relocate1): Remove declaration.
16065 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
16066 declaration.
16067 * maint.c (count_symtabs_and_blocks): Use compunit_filetabs.
16068 * coffread.c (coff_symtab_read): Remove declaration.
16069 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
16070 compunit_filetabs.
16071
d8aeb77f
TT
160722019-01-09 Tom Tromey <tom@tromey.com>
16073
16074 * symtab.c (lookup_objfile_from_block)
16075 (find_pc_sect_compunit_symtab, search_symbols)
16076 (default_collect_symbol_completion_matches_break_on): Use
16077 objfile_compunits.
16078 * objfiles.h (ALL_COMPUNITS): Remove.
16079 * maint.c (count_symtabs_and_blocks): Use objfile_compunits.
16080 * cp-support.c (add_symbol_overload_list_qualified): Use
16081 objfile_compunits.
16082 * ada-lang.c (ada_collect_symbol_completion_matches)
16083 (ada_add_global_exceptions): Use objfile_compunits.
16084
592553c4
TT
160852019-01-09 Tom Tromey <tom@tromey.com>
16086
16087 * source.c (select_source_symtab)
16088 (forget_cached_source_info_for_objfile): Remove declaration.
16089 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
16090 declaration.
16091 * maint.c (count_symtabs_and_blocks): Remove declaration.
16092 * cp-support.c (add_symbol_overload_list_qualified): Remove
16093 declaration.
16094 * coffread.c (coff_symtab_read): Remove declaration.
16095 * symtab.c (lookup_symbol_in_objfile_symtabs)
16096 (basic_lookup_transparent_type_1): Use objfile_compunits.
16097 (lookup_objfile_from_block, find_pc_sect_compunit_symtab)
16098 (info_sources_command, search_symbols)
16099 (default_collect_symbol_completion_matches_break_on)
16100 (make_source_files_completion_list): Remove declaration.
16101 * ada-lang.c (add_nonlocal_symbols): Use objfile_compunits.
16102 (ada_collect_symbol_completion_matches)
16103 (ada_add_global_exceptions): Remove declaration.
16104 * linespec.c (iterate_over_all_matching_symtabs): Use
16105 objfile_compunits.
16106 * objfiles.h (ALL_OBJFILE_COMPUNITS): Remove.
16107 (class objfile_compunits): New.
16108 (ALL_COMPUNITS): Use objfile_compunits.
16109 * symmisc.c (print_objfile_statistics, maintenance_info_symtabs)
16110 (maintenance_check_symtabs, maintenance_info_line_tables): Use
16111 objfile_compunits.
16112 * objfiles.c (objfile_relocate1): Use objfile_compunits.
16113
5325b9bf
TT
161142019-01-09 Tom Tromey <tom@tromey.com>
16115
16116 * symtab.c (search_symbols)
16117 (default_collect_symbol_completion_matches_break_on): Use
16118 objfile_msymbols.
16119 * ada-lang.c (ada_lookup_simple_minsym)
16120 (ada_collect_symbol_completion_matches): Use objfile_msymbols.
16121 * minsyms.c (find_solib_trampoline_target): Use objfile_msymbols.
16122 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Use
16123 objfile_msymbols.
16124 * coffread.c (coff_symfile_read): Use objfile_msymbols.
16125 * symmisc.c (dump_msymbols): Use objfile_msymbols.
16126 * objc-lang.c (find_methods): Use objfile_msymbols.
16127 (info_selectors_command, info_classes_command): Likewise.
16128 * stabsread.c (scan_file_globals): Use objfile_msymbols.
16129 * objfiles.h (class objfile_msymbols): New.
16130 (ALL_OBJFILE_MSYMBOLS): Remove.
16131 (ALL_MSYMBOLS): Remove.
16132
cac85af2
TT
161332019-01-09 Tom Tromey <tom@tromey.com>
16134
16135 * common/next-iterator.h (next_adapter): Add Iterator template
16136 parameter.
16137 * objfiles.h (ALL_OBJFILES_SAFE): Remove.
16138 (class all_objfiles_safe): New.
16139 * jit.c (jit_inferior_exit_hook): Use all_objfiles_safe.
16140 * objfiles.c (put_objfile_before): Update comment.
16141 (add_separate_debug_objfile): Likewise.
16142 (free_all_objfiles): Use all_objfiles_safe.
16143 (objfile_purge_solibs): Likewise.
16144
aed57c53
TT
161452019-01-09 Tom Tromey <tom@tromey.com>
16146
16147 * symtab.c (iterate_over_symtabs, matching_obj_sections)
16148 (expand_symtab_containing_pc, lookup_static_symbol)
16149 (basic_lookup_transparent_type, find_pc_sect_compunit_symtab)
16150 (find_symbol_at_address, find_line_symtab, find_main_name): Use
16151 all_objfiles.
16152 * probe.c (find_probe_by_pc, collect_probes): Use all_objfiles.
16153 * breakpoint.c (create_overlay_event_breakpoint)
16154 (create_longjmp_master_breakpoint)
16155 (create_std_terminate_master_breakpoint)
16156 (create_exception_master_breakpoint): Use all_objfiles.
16157 * linux-thread-db.c (try_thread_db_load_from_pdir)
16158 (has_libpthread): Use all_objfiles.
16159 * ada-lang.c (add_nonlocal_symbols): Use all_objfiles.
16160 * linespec.c (iterate_over_all_matching_symtabs)
16161 (search_minsyms_for_name): Use all_objfiles.
16162 * maint.c (maintenance_info_sections): Use all_objfiles.
16163 * main.c (captured_main_1): Use all_objfiles.
16164 * spu-tdep.c (spu_objfile_from_frame): Use all_objfiles.
16165 * guile/scm-objfile.c (gdbscm_objfiles): Use all_objfiles.
16166 * guile/scm-pretty-print.c
16167 (ppscm_find_pretty_printer_from_objfiles): Use all_objfiles.
16168 * solib-spu.c (append_ocl_sos): Use all_objfiles.
16169 * symmisc.c (maintenance_print_symbols): Use all_objfiles.
16170 (maintenance_print_msymbols): Use all_objfiles.
16171 * source.c (select_source_symtab): Use all_objfiles.
16172 * jit.c (jit_find_objf_with_entry_addr): Use all_objfiles.
16173 * symfile.c (remove_symbol_file_command)
16174 (expand_symtabs_matching, map_symbol_filenames): Use
16175 all_objfiles.
16176 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created): Use
16177 all_objfiles.
16178 * dwarf2-frame.c (dwarf2_frame_find_fde): Use all_objfiles.
16179 * objc-lang.c (find_methods): Use all_objfiles.
16180 * objfiles.c (have_partial_symbols, have_full_symbols)
16181 (have_minimal_symbols, qsort_cmp)
16182 (default_iterate_over_objfiles_in_search_order): Use
16183 all_objfiles.
16184 * hppa-tdep.c (find_unwind_entry): Use all_objfiles.
16185 * psymtab.c (maintenance_print_psymbols): Use all_objfiles.
16186 (maintenance_check_psymtabs): Use all_objfiles.
16187 (ALL_PSYMTABS): Remove.
16188 * compile/compile-object-run.c (do_module_cleanup): Use
16189 all_objfiles.
16190 * blockframe.c (find_pc_partial_function): Use all_objfiles.
16191 * cp-support.c (add_symbol_overload_list_qualified): Use
16192 all_objfiles.
16193 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
16194 Use all_objfiles.
16195 * dwarf-index-write.c (save_gdb_index_command): Use all_objfiles.
16196 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): Use
16197 all_objfiles.
16198 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
16199 (objfpy_lookup_objfile_by_build_id): Use all_objfiles.
16200 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
16201 Uses all_objfiles.
16202 * solib.c (solib_read_symbols): Use all_objfiles
16203
99d89cde
TT
162042019-01-09 Tom Tromey <tom@tromey.com>
16205
16206 * probe.c (parse_probes_in_pspace): Use all_objfiles.
16207 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Use
16208 all_objfiles.
16209 * objfiles.h (ALL_PSPACE_OBJFILES): Remove.
16210 * symmisc.c (print_symbol_bcache_statistics)
16211 (print_objfile_statistics, maintenance_print_objfiles)
16212 (maintenance_info_symtabs, maintenance_check_symtabs)
16213 (maintenance_expand_symtabs, maintenance_info_line_tables): Use
16214 all_objfiles.
16215 * source.c (forget_cached_source_info): Use all_objfiles.
16216 * symfile-debug.c (set_debug_symfile): Use all_objfiles.
16217 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
16218 (elf_gnu_ifunc_resolve_by_got): Use all_objfiles.
16219 * objfiles.c (update_section_map): Use all_objfiles.
16220 (shared_objfile_contains_address_p): Likewise.
16221 * psymtab.c (maintenance_info_psymtabs): Use all_objfiles.
16222 * python/py-progspace.c (pspy_get_objfiles): Use all_objfiles.
16223
21708325
TT
162242019-01-09 Tom Tromey <tom@tromey.com>
16225
16226 * common/next-iterator.h: New file.
16227 * objfiles.h (class all_objfiles): New.
16228 (struct objfile_iterator): New.
16229
669e09f6
PW
162302019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
16231
16232 * NEWS: Move the description of the changed "frame", "select-frame",
16233 and "info frame" commands to the Changed commands section.
16234
041be526
SM
162352019-01-09 Simon Marchi <simon.marchi@ericsson.com>
16236
16237 * gdbtypes.c (check_stub_method_group): Remove handling of old
16238 mangling schemes.
16239 * linespec.c (find_methods): Likewise.
16240 * stabsread.c (read_member_functions): Likewise.
16241 * valops.c (search_struct_method): Likewise.
16242 (value_struct_elt_for_reference): Likewise.
16243 * NEWS: Mention this change.
16244
0e2a2133
AB
162452019-01-09 Andrew Burgess <andrew.burgess@embecosm.com>
16246
16247 * cli/cli-cmds.c (list_command): Pass a source_lines_range to
16248 print_source_lines.
16249 * source.c (print_source_lines_base): Update line number check.
16250 (print_source_lines): New function.
16251 (source_lines_range::source_lines_range): New function.
16252 * source.h (class source_lines_range): New class.
16253 (print_source_lines): New declaration.
16254
1055a3b4
PW
162552019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
16256
16257 * linespec.c (linespec_state_destructor): Free self->canonical_names.
16258
cfeadda5
TT
162592019-01-08 Tom Tromey <tom@tromey.com>
16260 Simon Marchi <simon.marchi@ericsson.com>
16261
16262 PR gdb/24060
16263 * ada-exp.y (DOLLAR_VARIABLE): Rename from SPECIAL_VARIABLE.
16264 * ada-lex.l (DOLLAR_VARIABLE): Likewise.
16265 * c-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
16266 * f-exp.y (DOLLAR_VARIABLE): Likewise.
16267 * m2-exp.y (DOLLAR_VARIABLE): Rename from INTERNAL_VAR.
16268 * p-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
16269
583068ca
AB
162702019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
16271
16272 * source.c (select_source_symtab): Move header comment to
16273 declaration in source.h.
16274 (forget_cached_source_info_for_objfile): Likewise.
16275 (forget_cached_source_info): Likewise.
16276 (identify_source_line): Likewise.
16277 * source.h (identify_source_line): Move declaration from symtab.h
16278 and add comment from source.c
16279 (print_source_lines): Likewise.
16280 (forget_cached_source_info_for_objfile): Likewise.
16281 (forget_cached_source_info): Likewise.
16282 (select_source_symtab): Likewise.
16283 (enum print_source_lines_flag): Move definition from symtab.h.
16284 * symtab.h (identify_source_line): Move declaration to source.h.
16285 (print_source_lines): Likewise.
16286 (forget_cached_source_info_for_objfile): Likewise.
16287 (forget_cached_source_info): Likewise.
16288 (select_source_symtab): Likewise.
16289 (enum print_source_lines_flag): Move definition to source.h.
16290 * tui/tui-hooks.c: Add 'source.h' include.
16291
ec98a4ad
AB
162922019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
16293
16294 * source.c (print_source_lines_base): Handle requests to print
16295 reverse line number sequences, and guard against empty lines
16296 string.
16297
62ea19c1
AB
162982019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
16299
16300 * source.c (print_source_lines_base): Fix skip of '\r' if next
16301 character is '\n'.
16302
9d30e1fd
TT
163032019-01-06 Tom Tromey <tom@tromey.com>
16304
16305 * c-exp.y (struct c_parse_state) <macro_original_text,
16306 expansion_obstack>: New member.
16307 (macro_original_text, expansion_obstack): Remove globals.
16308 (scan_macro_expansion, scanning_macro_expansion)
16309 (finished_macro_expansion): Update.
16310 (scan_macro_cleanup): Remove.
16311 (yylex, c_parse): Update.
16312
c65bac38
TT
163132019-01-06 Tom Tromey <tom@tromey.com>
16314
16315 * c-exp.y (struct c_parse_state) <strings>: New member.
16316 (operator_stoken): Update.
16317
02e12e38
TT
163182019-01-06 Tom Tromey <tom@tromey.com>
16319
16320 * parser-defs.h (type_ptr): Remove typedef. Don't declare VEC.
16321 (union type_stack_elt) <typelist_val>: Now a pointer to
16322 std::vector.
16323 (type_stack_cleanup): Don't declare.
16324 (push_typelist): Update.
16325 * parse.c (pop_typelist): Return a std::vector.
16326 (push_typelist): Take a std::vector.
16327 (follow_types): Update. Do not free args.
16328 (type_stack_cleanup): Remove.
16329 * c-exp.y (struct c_parse_state): New.
16330 (cpstate): New global.
16331 (type_aggregate_p, exp, ptr_operator, parameter_typelist)
16332 (nonempty_typelist): Update.
16333 (func_mod): Create a new vector.
16334 (c_parse): Create a c_parse_state.
16335 (check_parameter_typelist): Do not delete params.
16336 (function_method): Update. Do not delete type_list.
16337
f097f5ad
TT
163382019-01-06 Tom Tromey <tom@tromey.com>
16339
16340 PR gdb/28155:
16341 * python/py-finishbreakpoint.c (bpfinishpy_init): Use
16342 check_typedef.
16343 * infcmd.c (finish_command_fsm_should_stop): Use check_typedef.
16344 (print_return_value): Likewise.
16345
d2adf9f1
TT
163462019-01-05 Tom Tromey <tom@tromey.com>
16347
16348 * contrib/cleanup_check.py: Remove.
16349 * contrib/gcc-with-excheck: Remove.
16350 * contrib/exsummary.py: Remove.
16351 * contrib/excheck.py: Remove.
16352
2eab46b1
JB
163532019-01-05 Joel Brobecker <brobecker@adacore.com>
16354
16355 * thread.c (delete_thread_1): Add gdb_assert that THR is not
16356 NULL. Initialize tpprev to NULL instead of assigning it
16357 to NULL on the next statement.
16358 * windows-nat.c (windows_delete_thread): Remove check for
16359 main_thread_id before printing thread exit notifications.
16360 (get_windows_debug_event) <EXIT_THREAD_DEBUG_EVENT>:
16361 Remove thread ID check against main_thread_id.
16362 <CREATE_PROCESS_DEBUG_EVENT>: Remove call to
16363 windows_delete_thread.
16364 <EXIT_PROCESS_DEBUG_EVENT>: Add call to windows_delete_thread.
16365
48c5e7e2
TT
163662019-01-04 Tom Tromey <tom@tromey.com>
16367
16368 * compile/compile.c (_initialize_compile): Use upper case for
16369 metasyntactic variables.
16370 * symmisc.c (_initialize_symmisc): Use upper case for
16371 metasyntactic variables.
16372 * psymtab.c (_initialize_psymtab): Use upper case for
16373 metasyntactic variables.
16374 * demangle.c (demangle_command): Use upper case for metasyntactic
16375 variables.
16376 (_initialize_demangler): Likewise.
16377 * ax-gdb.c (_initialize_ax_gdb): Use upper case for metasyntactic
16378 variables.
16379
986041cd
TT
163802019-01-03 Tom Tromey <tom@tromey.com>
16381
16382 * tui/tui-source.c (tui_set_source_content): Use xstrdup.
16383
7c711119
TT
163842019-01-03 Tom Tromey <tom@tromey.com>
16385
16386 * python/py-symtab.c (salpy_str): Update.
16387 (struct salpy_sal_object) <symtab>: Now a PyObject.
16388 (salpy_dealloc): Update.
16389 (del_objfile_sal): Use gdbpy_ref.
16390
1b20edf0
TT
163912019-01-03 Tom Tromey <tom@tromey.com>
16392
16393 * python/py-type.c (convert_field): Use new_reference. Return
16394 gdbpy_ref.
16395 (make_fielditem): Return gdbpy_ref.
16396 (typy_fields): Update.
16397 (typy_getitem): Update.
16398 (field_name): Return gdbpy_ref. Use new_reference.
16399 (typy_iterator_iternext): Update.
16400
ea41325b
TT
164012019-01-03 Tom Tromey <tom@tromey.com>
16402
16403 * python/py-record.c (gdbpy_stop_recording): Use Py_RETURN_NONE.
16404
2a3c71d6
TT
164052019-01-03 Tom Tromey <tom@tromey.com>
16406
16407 * python/py-value.c (valpy_dealloc): Use Py_XDECREF.
16408 * python/py-type.c (typy_fields_items): Use gdbpy_ref.
16409 * python/py-progspace.c (pspy_set_printers): Use gdbpy_ref.
16410 (pspy_set_frame_filters, pspy_set_frame_unwinders)
16411 (pspy_set_type_printers): Likewise.
16412 * python/py-function.c (fnpy_init): Use gdbpy_ref.
16413 * python/py-cmd.c (cmdpy_init): Use gdbpy_ref.
16414 * python/py-objfile.c (objfpy_set_printers): Use gdbpy_ref.
16415 (objfpy_set_frame_filters, objfpy_set_frame_unwinders)
16416 (objfpy_set_type_printers): Likewise.
16417
5c329e6a
TT
164182019-01-03 Tom Tromey <tom@tromey.com>
16419
16420 * python/python.c (gdbpy_enter, ~gdbpy_enter): Update.
16421 (gdbpy_print_stack): Use gdbpy_err_fetch.
16422 * python/python-internal.h (class gdbpy_err_fetch): New class.
16423 (class gdbpy_enter) <m_error_type, m_error_value,
16424 m_error_traceback>: Remove.
16425 <m_error>: New member.
16426 (gdbpy_exception_to_string): Don't declare.
16427 * python/py-varobj.c (py_varobj_iter_next): Use gdbpy_err_fetch.
16428 * python/py-value.c (convert_value_from_python): Use
16429 gdbpy_err_fetch.
16430 * python/py-utils.c (gdbpy_err_fetch::to_string): Rename from
16431 gdbpy_exception_to_string.
16432 (gdbpy_handle_exception): Use gdbpy_err_fetch.
16433 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
16434 gdbpy_err_fetch.
16435
169bb27b
AB
164362019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
16437
16438 * linux-nat.c (delete_lwp_cleanup): Delete.
16439 (struct lwp_deleter): New struct.
16440 (lwp_info_up): New typedef.
16441 (linux_nat_target::follow_fork): Delete cleanup, and make use of
16442 lwp_info_up.
16443
a07c8880
AB
164442019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
16445
16446 * linux-fork.c (class scoped_switch_fork_info): New class.
16447 (inferior_call_waitpid): Update to use scoped_switch_fork_info.
16448
26089c49
AB
164492019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
16450
16451 * valops.c (find_overload_match): Remove use of null_cleanup, and
16452 calls to do_cleanups.
16453
06d3e5b0
AB
164542019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
16455
16456 * compile/compile-cplus-types.c
16457 (compile_cplus_instance::decl_name): Handle changes to
16458 cp_func_name.
16459 * cp-support.c (cp_func_name): Update header comment, update
16460 return type.
16461 * cp-support.h (cp_func_name): Update return type in declaration.
16462 * valops.c (find_overload_match): Move temp_func local to top
16463 level of function and change its type. Use temp_func to hold and
16464 delete temporary string obtained from cp_func_name.
16465
66644cd3
AB
164662019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
16467
16468 * remote.c (remote_target::remote_check_symbols): Convert `msg` to
16469 gdb::char_vector, remove cleanup, and update uses of `msg`.
16470
592d8c0a
JW
164712019-01-03 Jim Wilson <jimw@sifive.com>
16472
16473 * riscv-tdep.c (riscv_freg_feature): Drop s0 name from f8.
16474
c55d06ec
TT
164752019-01-02 Tom Tromey <tom@tromey.com>
16476
16477 * xml-tdesc.c (xml_cache): Hold a target_desc_up.
16478 (tdesc_parse_xml): Remove cleanups.
16479 * target-descriptions.h (make_cleanup_free_target_description):
16480 Don't declare.
16481 (target_desc_deleter): New struct.
16482 (target_desc_up): New typedef.
16483 * target-descriptions.c (target_desc_deleter::operator()): Rename
16484 from free_target_description.
16485 (make_cleanup_free_target_description): Remove.
16486
3a6ae42d
TT
164872019-01-02 Tom Tromey <tom@tromey.com>
16488
16489 * linespec.c (struct linespec_parser): Rename from ls_parser. Add
16490 constructor, destructor.
16491 (linespec_parser): Remove typedef.
16492 (~linespec_parser): Rename from linespec_parser_delete.
16493 (linespec_lex_to_end, linespec_complete_label)
16494 (linespec_complete): Update.
16495 (decode_line_full): Remove cleanups.
16496 (decode_line_1): Update.
16497
61fd3e73
TT
164982019-01-02 Tom Tromey <tom@tromey.com>
16499
16500 * python/python-internal.h (inferior_to_inferior_object): Change
16501 return type.
16502 * python/py-exitedevent.c (create_exited_event_object): Update.
16503 * python/py-inferior.c (inferior_to_inferior_object): Return
16504 gdbpy_ref.
16505 (python_new_inferior, python_inferior_deleted)
16506 (thread_to_thread_object, delete_thread_object)
16507 (build_inferior_list, gdbpy_selected_inferior): Update.
16508 * python/py-infthread.c (create_thread_object): Update. Also fail
16509 if inferior_to_inferior_object fails.
16510
d20172fc
SM
165112019-01-02 Simon Marchi <simon.marchi@ericsson.com>
16512
16513 * inferior.h (class inferior) <displaced_step_state>: New field.
16514 * infrun.h (struct displaced_step_state): Move here from
16515 infrun.c. Initialize fields, add constructor.
16516 <inf>: Remove field.
16517 <reset>: New method.
16518 * infrun.c (struct displaced_step_inferior_state): Move to
16519 infrun.h.
16520 (displaced_step_inferior_states): Remove.
16521 (get_displaced_stepping_state): Adust.
16522 (displaced_step_in_progress_any_inferior): Adjust.
16523 (displaced_step_in_progress_thread): Adjust.
16524 (displaced_step_in_progress): Adjust.
16525 (add_displaced_stepping_state): Remove.
16526 (get_displaced_step_closure_by_addr): Adjust.
16527 (remove_displaced_stepping_state): Remove.
16528 (infrun_inferior_exit): Call displaced_step_state.reset.
16529 (use_displaced_stepping): Don't check for NULL.
16530 (displaced_step_prepare_throw): Call
16531 get_displaced_stepping_state.
16532 (displaced_step_fixup): Don't check for NULL.
16533 (prepare_for_detach): Don't check for NULL.
16534
e3319240
PW
165352019-01-02 Philippe Waroquiers <philippe.waroquiers@skynet.be>
16536
16537 * infcall.c (call_function_by_hand_dummy): cleanup/destroy sm
16538 in case of call that did not complete.
16539
5d36dfb9
AU
165402019-01-02 Andrey Utkin <autkin@undo.io>
16541
16542 * symfile.c (find_separate_debug_file): Fix search of debug files for
16543 remote debuggee.
16544
8833fbf0
TT
165452019-01-02 Tom Tromey <tom@tromey.com>
16546
16547 * python/py-inferior.c (gdbpy_initialize_inferior): Fix
16548 indentation.
16549 * python/py-frame.c (frapy_older): Remove cast.
16550 (frapy_newer): Likewise.
16551 * python/py-breakpoint.c (local_setattro): Remove cast.
16552 * python/py-arch.c (archpy_name): Remove local variable.
16553 * python/py-type.c (gdbpy_lookup_type): Remove cast.
16554
4ada3dfd
JB
165552019-01-02 Joel Brobecker <brobecker@adacore.com>
16556
16557 * unittests/basic_string_view/element_access/char/empty.cc:
16558 Fix year range in copyright header.
16559
113b7b81
AB
165602019-01-01 Andrew Burgess <andrew.burgess@embecosm.com>
16561
16562 * arch/riscv.h (struct riscv_gdbarch_features) <hw_float_abi>:
16563 Delete.
16564 <operator==>: Update with for removed field.
16565 <hash>: Likewise.
16566 * riscv-tdep.h (struct gdbarch_tdep) <features>: Renamed to...
16567 <isa_features>: ...this.
16568 <abi_features>: New field.
16569 (riscv_isa_flen): Update comment.
16570 (riscv_abi_xlen): New declaration.
16571 (riscv_abi_flen): New declaration.
16572 * riscv-tdep.c (riscv_isa_xlen): Update to get answer from
16573 isa_features.
16574 (riscv_abi_xlen): New function.
16575 (riscv_isa_flen): Update to get answer from isa_features.
16576 (riscv_abi_flen): New function.
16577 (riscv_has_fp_abi): Update to get answer from abi_features.
16578 (riscv_call_info::riscv_call_info): Use abi xlen and flen, not isa
16579 xlen and flen.
16580 (riscv_call_info) <xlen, flen>: Update comment.
16581 (riscv_call_arg_struct): Remove invalid assertions
16582 (riscv_features_from_gdbarch_info): Update now hw_float_abi field
16583 is removed.
16584 (riscv_gdbarch_init): Gather isa features and abi features
16585 separately, ensure both match on the gdbarch when reusing an old
16586 gdbarch. Relax an error check to allow 32-bit abi float to run on
16587 a target with 64-bit float hardware.
16588
b18ca514
PW
165892019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
16590
16591 * source.c (search_command_helper): Stop reverse search
16592 when line 1 has been searched.
16593
ec70d8db
PW
165942019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
16595
16596 * record-full.c (record_full_base_target::close): Rewrite
16597 record_full_core_buf_list free logic.
16598
5b38f9c1
PW
165992019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
16600
16601 * break-catch-syscall.c (print_one_catch_syscall): xfree
16602 the last text.
16603
66d91b39
JB
166042019-01-01 Joel Brobecker <brobecker@adacore.com>
16605
16606 * top.c (print_gdb_version): Update Copyright year in version
16607 message.
16608
42a4f53d
JB
166092019-01-01 Joel Brobecker <brobecker@adacore.com>
16610
16611 Update copyright year range in all GDB files.
16612
7e955d83 166132019-01-01, 19 Joel Brobecker <brobecker@adacore.com>
2139e8dc 16614
5bbd631d 16615 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2018.
2139e8dc 16616
5bbd631d 16617For older changes see ChangeLog-2018.
c906108c
SS
16618\f
16619Local Variables:
16620mode: change-log
16621left-margin: 8
16622fill-column: 74
16623version-control: never
57da7796 16624coding: utf-8
c906108c 16625End:
5bbd631d 16626
This page took 3.035145 seconds and 4 git commands to generate.