]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/ChangeLog
Add completion styling
[thirdparty/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
eca1f90c
TT
12020-05-23 Tom Tromey <tom@tromey.com>
2
3 * NEWS: Add entry for completion styling.
4 * completer.c (_rl_completion_prefix_display_length): Move
5 declaration earlier.
6 (gdb_fnprint): Use completion_style.
7 (gdb_display_match_list_1): Likewise.
8 * cli/cli-style.c (completion_prefix_style)
9 (completion_difference_style, completion_suffix_style): New
10 globals.
11 (_initialize_cli_style): Register new globals.
12 * cli/cli-style.h (completion_prefix_style)
13 (completion_difference_style, completion_suffix_style): Declare.
14
51e2cfa2
PA
152020-05-23 Pedro Alves <palves@redhat.com>
16
17 * utils.c: Include "gdbsupport/gdb-safe-ctype.h".
18 (parse_escape): Use ISDIGIT instead of isdigit.
19 (puts_debug): Use gdb_isprint instead of isprint.
20 (fprintf_symbol_filtered): Use ISALNUM instead of isalnum.
21 (cp_skip_operator_token, skip_ws, strncmp_iw_with_mode): Use
22 ISSPACE instead of isspace.
23 (strncmp_iw_with_mode): Use TOLOWER instead of tolower and ISSPACE
24 instead of isspace.
25 (strcmp_iw_ordered): Use ISSPACE instead of isspace.
26 (string_to_core_addr): Use TOLOWER instead of tolower, ISXDIGIT
27 instead of isxdigit and ISDIGIT instead of isdigit.
28
80fc5e77
SM
292020-05-22 Simon Marchi <simon.marchi@efficios.com>
30
31 * gdbtypes.h (struct type) <field>: New method.
32 (TYPE_FIELDS): Remove, replace all uses with either type::fields
33 or type::field.
34
3cabb6b0
SM
352020-05-22 Simon Marchi <simon.marchi@efficios.com>
36
37 * gdbtypes.h (struct type) <fields, set_fields>: New methods.
38 (TYPE_FIELDS): Use type::fields. Change all call sites that
39 modify the propery to use type::set_fields instead.
40
1f704f76
SM
412020-05-22 Simon Marchi <simon.marchi@efficios.com>
42
43 * gdbtypes.h (TYPE_NFIELDS): Remove. Change all cal sites to use
44 type::num_fields instead.
45
5e33d5f4
SM
462020-05-22 Simon Marchi <simon.marchi@efficios.com>
47
48 * gdbtypes.h (struct type) <num_fields, set_num_fields>: New
49 methods.
50 (TYPE_NFIELDS): Use type::num_fields. Change all call sites
51 that modify the number of fields to use type::set_num_fields
52 instead.
53
9392ebb3
TT
542020-05-22 Tom Tromey <tromey@adacore.com>
55
56 * compile/compile-object-load.h (munmap_list_free): Don't
57 declare.
58
7c13f4e8
AB
592020-05-22 Andrew Burgess <andrew.burgess@embecosm.com>
60
61 * annotate.c (annotate_source_line): Update return type, add call
62 to update current symtab and line.
63 * annotate.h (annotate_source_line): Update return type, and
64 extend header comment.
65 * source.c (info_line_command): Check annotation_level before
66 calling annotate_source_line.
67 * stack.c (print_frame_info): If calling annotate_source_line
68 returns true, then don't print any other source line information.
69
aa370940
SM
702020-05-21 Simon Marchi <simon.marchi@efficios.com>
71
72 * lm32-tdep.c (lm32_register_reggroup_p): Fix condition.
73
84d53fa9
SM
742020-05-21 Simon Marchi <simon.marchi@efficios.com>
75
76 * coffread.c (patch_type): Remove NULL check before xfree.
77 * corefile.c (set_gnutarget): Likewise.
78 * cp-abi.c (set_cp_abi_as_auto_default): Likewise.
79 * exec.c (build_section_table): Likewise.
80 * remote.c (remote_target::pass_signals): Likewise.
81 * utils.c (n_spaces): Likewise.
82 * cli/cli-script.c (document_command): Likewise.
83 * i386-windows-tdep.c (core_process_module_section): Likewise.
84 * linux-fork.c (struct fork_info) <~fork_info>: Likewise.
85
9d428aae
SM
862020-05-20 Simon Marchi <simon.marchi@efficios.com>
87
88 * symfile.c (reread_symbols): Clear objfile's section_offsets
89 vector and section indices, re-compute them by calling
90 sym_offsets.
91
250106a7
TT
922020-05-20 Tom Tromey <tromey@adacore.com>
93
94 * ada-lang.c (bound_name, MAX_ADA_DIMENS): Remove.
95 (desc_one_bound, desc_index_type): Compute field name.
96
9a0bacfb
TV
972020-05-20 Tom de Vries <tdevries@suse.de>
98
99 PR symtab/25833
100 * dwarf2/read.c (dw2_map_matching_symbols): Handle .gdb_index.
101
7b958a48
AM
1022020-05-20 Alan Modra <amodra@gmail.com>
103
104 PR 25993
105 * solib-darwin.c (darwin_bfd_open): Don't strdup pathname for
106 bfd_set_filename.
107 * solib-aix.c (solib_aix_bfd_open): Use std::string for name
108 passed to bfd_set_filename.
109 * symfile-mem.c (add_vsyscall_page): Likewise for string
110 passed to symbol_file_add_from_memory.
111 (symbol_file_add_from_memory): Make name param a const char* and
112 don't strdup.
113
c7e97679
AM
1142020-05-20 Alan Modra <amodra@gmail.com>
115
116 * coff-pe-read.c (read_pe_exported_syms): Use bfd_get_filename
117 rather than accessing bfd->filename directly.
118 * dtrace-probe.c (dtrace_static_probe_ops::get_probes): Likewise,
119 and use bfd_section_name.
120 * dwarf2/frame.c (decode_frame_entry): Likewise.
121 * exec.c (exec_set_section_address): Likewise.
122 * solib-aix.c (solib_aix_bfd_open): Likewise.
123 * stap-probe.c (get_stap_base_address): Likewise.
124 * symfile.c (reread_symbols): Likewise.
125
563c591b
TT
1262020-05-19 Tom Tromey <tromey@adacore.com>
127
128 * sparc64-tdep.c (adi_tag_fd): Update call to target_fileio_open.
129
f408d82c
SM
1302020-05-19 Simon Marchi <simon.marchi@efficios.com>
131
132 * dwarf2/read.c (quirk_rust_enum): Allocate enough fields.
133
98c59b52
PA
1342020-05-19 Pedro Alves <palves@redhat.com>
135
136 * NEWS (set exec-file-mismatch): Adjust entry.
137 * exec.c: Include "build-id.h".
138 (validate_exec_file): Try to match build IDs instead of filenames.
139 * gdb_bfd.c (struct gdb_bfd_open_closure): New.
140 (gdb_bfd_iovec_fileio_open): Adjust to use gdb_bfd_open_closure
141 and pass down 'warn_if_slow'.
142 (gdb_bfd_open): Add 'warn_if_slow' parameter. Use
143 gdb_bfd_open_closure to pass it down.
144 * gdb_bfd.h (gdb_bfd_open): Add 'warn_if_slow' parameter.
145
4111f652
PA
1462020-05-19 Pedro Alves <palves@redhat.com>
147
148 * gdb_bfd.c (gdb_bfd_iovec_fileio_open): Adjust.
149 * target.c (target_fileio_open_1): Rename to target_fileio_open
150 and make extern. Use bool.
151 (target_fileio_open, target_fileio_open_warn_if_slow): Delete.
152 (target_fileio_read_alloc_1): Adjust.
153 * target.h (target_fileio_open): Add 'warn_if_slow' parameter.
154 (target_fileio_open_warn_if_slow): Delete declaration.
155
ad80db5b
PA
1562020-05-19 Pedro Alves <palves@redhat.com>
157
158 * gdb_bfd.h: (gdb_bfd_open): Default to 'fd' parameter to -1.
159 Adjust all callers.
160
1d6ce4d3
YS
1612020-05-19 Yoshinori Sato <ysato@users.sourceforge.jp>
162
163 * h8300-tdep.c (h8300_is_argument_spill): Change how we check
164 whether disp is negative.
165
9005fbbb
SM
1662020-05-19 Simon Marchi <simon.marchi@efficios.com>
167
168 * symfile.h (struct symfile_segment_data)
169 <~symfile_segment_data>: Remove.
170 <segment_info>: Change to std::vector.
171 * symfile.c (default_symfile_segments): Update.
172 * elfread.c (elf_symfile_segments): Update.
173
68b888ff
SM
1742020-05-19 Simon Marchi <simon.marchi@efficios.com>
175
176 * symfile.h (struct symfile_segment_data) <struct segment>: New.
177 <segments>: New.
178 <segment_bases, segment_sizes>: Remove.
179 * symfile.c (default_symfile_segments): Update.
180 * elfread.c (elf_symfile_segments): Update.
181 * remote.c (remote_target::get_offsets): Update.
182 * solib-target.c (solib_target_relocate_section_addresses):
183 Update.
184
62982abd
SM
1852020-05-19 Simon Marchi <simon.marchi@efficios.com>
186
187 * symfile.h (struct symfile_segment_data): Initialize fields.
188 <~symfile_segment_data>: Add.
189 (symfile_segment_data_up): New.
190 (struct sym_fns) <sym_segments>: Return a
191 symfile_segment_data_up.
192 (default_symfile_segments): Return a symfile_segment_data_up.
193 (free_symfile_segment_data): Remove.
194 (get_symfile_segment_data): Return a symfile_segment_data_up.
195 * symfile.c (default_symfile_segments): Likewise.
196 (get_symfile_segment_data): Likewise.
197 (free_symfile_segment_data): Remove.
198 (symfile_find_segment_sections): Update.
199 * elfread.c (elf_symfile_segments): Return a
200 symfile_segment_data_up.
201 * remote.c (remote_target::get_offsets): Update.
202 * solib-target.c (solib_target_relocate_section_addresses):
203 Update.
204 * symfile-debug.c (debug_sym_segments): Return a
205 symfile_segment_data_up.
206
7f204339
RO
2072020-05-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
208
e52a0f1b
RO
209 PR build/25981
210 * i386-sol2-nat.c [PR_MODEL_NATIVE != PR_MODEL_LP64] (regmap):
211 Hardcode register numbers.
212
7f204339
RO
213 PR build/25981
214 * procfs.c [(__i386__ || __x86_64__) && sun] (proc_get_LDT_entry,
215 procfs_find_LDT_entry): Remove.
216 * procfs.h [(__i386__ || __x86_64__) && sun] (struct ssd,
217 procfs_find_LDT_entry): Remove.
218 * sol-thread.c [(__i386__ || __x86_64__) && sun] (ps_lgetLDT):
219 Remove.
220
7f32a4d5
PA
2212020-05-17 Pedro Alves <palves@redhat.com>
222 Andrew Burgess <andrew.burgess@embecosm.com>
223 Keno Fischer <keno@juliacomputing.com>
224
225 PR gdb/25741
226 * breakpoint.c (build_target_condition_list): Update comments.
227 (build_target_command_list): Update comments and skip matching
228 locations.
229 (insert_bp_location): Move "set breakpoint auto-hw on" handling to
230 a separate function. Simplify "set breakpoint auto-hw off"
231 handling.
232 (insert_breakpoints): Update comment.
233 (tracepoint_locations_match): New parameter. For breakpoints,
234 compare location types too, if the caller wants to.
235 (handle_automatic_hardware_breakpoints): New functions.
236 (bp_location_is_less_than): Also sort by location type and
237 hardware breakpoint length.
238 (update_global_location_list): Handle "set breakpoint auto-hw on"
239 here.
240 (update_breakpoint_locations): Ask breakpoint_locations_match to
241 ignore location types.
242
7d93a1e0
SM
2432020-05-16 Simon Marchi <simon.marchi@efficios.com>
244
245 * gdbtypes.h (TYPE_NAME): Remove. Change all cal sites to use
246 type::name instead.
247
d0e39ea2
SM
2482020-05-16 Simon Marchi <simon.marchi@efficios.com>
249
250 * gdbtypes.h (struct type) <name, set_name>: New methods.
251 (TYPE_CODE): Use type::name. Change all call sites used to set
252 the name to use type::set_name instead.
253
2dab0c7b
TT
2542020-05-16 Tom Tromey <tom@tromey.com>
255
256 * top.c (quit_force): Update.
257 * infrun.c (handle_no_resumed): Update.
258 * top.h (all_uis): New function.
259 (ALL_UIS): Remove.
260
59f7bd8d
SM
2612020-05-16 Simon Marchi <simon.marchi@efficios.com>
262
263 * mips-linux-tdep.c (mips_linux_in_dynsym_stub): Fix condition.
264
9bf058f0
PA
2652020-05-16 Pedro Alves <palves@redhat.com>
266
267 * ia64-linux-nat.c
268 (ia64_linux_nat_target) <enable_watchpoints_in_psr(ptid_t)>:
269 Declare method.
270 (enable_watchpoints_in_psr): Now a method of ia64_linux_nat_target.
271
8f86ae1a
SM
2722020-05-15 Simon Marchi <simon.marchi@efficios.com>
273
274 * sparc64-tdep.c (adi_stat_t): Remove typedef (leaving struct).
275 (sparc64_adi_info): Likewise.
276
d6bc0792
TT
2772020-05-15 Tom Tromey <tom@tromey.com>
278
279 * symtab.c (lookup_language_this, lookup_symbol_aux): Use
280 block_objfile.
281 (lookup_objfile_from_block): Remove.
282 (lookup_symbol_in_block, lookup_symbol_in_static_block)
283 (lookup_global_symbol): Use block_objfile.
284 * symtab.h (lookup_objfile_from_block): Don't declare.
285 * printcmd.c (clear_dangling_display_expressions): Use
286 block_objfile.
287 * parse.c (operator_check_standard): Use block_objfile.
288
8c14c3a3
TT
2892020-05-15 Tom Tromey <tom@tromey.com>
290
291 * language.c (language_alloc_type_symbol): Set
292 SYMBOL_SECTION.
293 * symtab.c (initialize_objfile_symbol): Remove.
294 (allocate_symbol): Remove.
295 (allocate_template_symbol): Remove.
296 * dwarf2/read.c (fixup_go_packaging): Use "new".
297 (new_symbol): Use "new".
298 (read_variable): Don't call initialize_objfile_symbol. Use
299 "new".
300 (read_func_scope): Use "new".
301 * xcoffread.c (process_xcoff_symbol): Don't call
302 initialize_objfile_symbol.
303 (SYMBOL_DUP): Remove.
304 * coffread.c (process_coff_symbol, coff_read_enum_type): Use
305 "new".
306 * symtab.h (allocate_symbol, initialize_objfile_symbol)
307 (allocate_template_symbol): Don't declare.
308 (struct symbol): Add copy constructor. Change defaults.
309 * jit.c (finalize_symtab): Use "new".
310 * ctfread.c (ctf_add_enum_member_cb, new_symbol, ctf_add_var_cb):
311 Use "new".
312 * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
313 (common_block_end): Use "new".
314 * mdebugread.c (parse_symbol): Use "new".
315 (new_symbol): Likewise.
316
5b4a1a8d
PW
3172020-05-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
318
319 * NEWS: Mention changes to help and apropos.
320
57b4f16e
PW
3212020-05-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
322
323 * command.h (enum command_class): Improve comments, document
324 that class_alias is for user-defined aliases, give the class
325 name for each class, remove unused class_xdb.
326 * cli/cli-decode.c (add_com_alias): Document THECLASS intended usage.
327 * breakpoint.c (_initialize_breakpoint): Replace class_alias
328 by a precise class.
329 * infcmd.c (_initialize_infcmd): Likewise.
330 * reverse.c (_initialize_reverse): Likewise.
331 * stack.c (_initialize_stack): Likewise.
332 * symfile.c (_initialize_symfile): Likewise.
333 * tracepoint.c (_initialize_tracepoint): Likewise.
334
7c05caf7
PW
3352020-05-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
336
337 * cli/cli-decode.c (apropos_cmd): Produce output for aliases
338 when their aliased command is traversed.
339 (help_cmd): Add fput_command_names_styled call to
340 output command name and aliases when command has an alias.
341
3b3aaacb
PW
3422020-05-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
343
344 * cli/cli-decode.h (help_cmd_list): Remove declaration.
345 * cli/cli-decode.c (help_cmd_list): Declare as static,
346 remove prefix argument, use bool for recurse arg, rework to show the aliases of
347 a command together with the command.
348 (fput_command_name_styled, fput_command_names_styled): New functions.
349 (print_help_for_command): Remove prefix arg, use bool for recurse arg, use
350 fput_command_name_styled.
351 (help_list, help_all): Update callers to remove prefix arg and use bool recurse.
352 * cli/cli-cmds.c (_initialize_cli_cmds): Update alias_command doc.
353
7aa1b46f
PW
3542020-05-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
355
356 * cli/cli-setshow.h (cmd_show_list): Remove prefix argument.
357 * cli/cli-decode.c (do_show_prefix_cmd): Likewise.
358 * command.h (cmd_show_list): Likewise.
359 * dwarf2/index-cache.c (show_index_cache_command): Likewise.
360 * cli/cli-setshow.c (cmd_show_list): Use the prefix to produce the output. Skip aliases.
361
89bcba74
PW
3622020-05-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
363
364 * unittests/command-def-selftests.c (traverse_command_structure):
365 Verify all commands of a list have the same prefix command and
366 that only the top cmdlist commands have a null prefix.
367
3f4d92eb
PW
3682020-05-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
369
370 * cli/cli-decode.c (lookup_cmd_for_prefix): Return the aliased command
371 as prefix, not one of its aliases.
372 (set_cmd_prefix): Remove.
373 (do_add_cmd): Centralize the setting of the prefix of a command, when
374 command is defined after its full chain of prefix commands.
375 (add_alias_cmd): Remove call to set_cmd_prefix, as do_add_cmd does it.
376 (add_setshow_cmd_full): Likewise.
377 (update_prefix_field_of_prefixed_commands): New function.
378 (add_prefix_cmd): Replace non working call to set_cmd_prefix by
379 update_prefix_field_of_prefixed_commands.
380 * gdb/remote-fileio.c (initialize_remote_fileio): Use the real
381 addresses of remote_set_cmdlist and remote_show_cmdlist given
382 as argument, not the address of an argument.
383 * gdb/remote-fileio.h (initialize_remote_fileio): Likewise.
384 * gdb/remote.c (_initialize_remote): Likewise.
385
0605465f
PW
3862020-05-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
387
388 * cli/cli-cmds.c (alias_command): Check for an existing alias
389 using lookup_cmd_composition, as valid_command_p is too strict
390 and forbids aliases that are the prefix of an existing alias
391 or command.
392 * cli/cli-decode.c (lookup_cmd_composition): Ensure a prefix
393 command is properly recognised as a valid command.
394
58e6ac70
PW
3952020-05-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
396
397 * unittests/help-doc-selftests.c: Rename to
398 unittests/command-def-selftests.c
399 * unittests/command-def-selftests.c (help_doc_tests): Update some
400 comments.
401 (command_structure_tests, traverse_command_structure): New namespace
402 and function.
403 (command_structure_invariants_tests): New function.
404 (_initialize_command_def_selftests) Renamed from
405 _initialize_help_doc_selftests, register command_structure_invariants
406 selftest.
407
a7b9ceb8
PW
4082020-05-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
409
410 * cli/cli-cmds.c (_initialize_cli_cmds): Define 'info set' as
411 an alias of 'show'.
412
b2188a06
JB
4132020-05-15 Joel Brobecker <brobecker@adacore.com>
414
415 * ada-lang.h: (ada_is_gnat_encoded_fixed_point_type): Renames
416 ada_is_fixed_point_type. Update all callers.
417 (gnat_encoded_fixed_point_delta): Renames ada_delta. Update
418 all callers.
419 * ada-lang.c (gnat_encoded_fixed_type_info): Renames fixed_type_info.
420 Update all callers.
421 * ada-typeprint.c (print_gnat_encoded_fixed_point_type): Renames
422 print_fixed_point_type. Update all callers.
423 * ada-valprint.c (ada_value_print_num): Replace call to
424 ada_is_fixed_point_type by ada_is_gnat_encoded_fixed_point_type.
425
a51951c2
KB
4262020-05-14 Kevin Buettner <kevinb@redhat.com>
427
428 * nat/linux-btrace.c (btrace_this_cpu): Add check for AMD
429 processors.
430 (cpu_supports_bts): Add CV_AMD case.
431
29d6859f
LM
4322020-05-14 Laurent Morichetti <Laurent.Morichetti@amd.com>
433 Simon Marchi <simon.marchi@efficios.com>
434
435 * infrun.c (stop_all_threads): Collect multiple wait events at
436 each pass.
437
78134374
SM
4382020-05-14 Simon Marchi <simon.marchi@efficios.com>
439
440 * gdbtypes.h (TYPE_CODE): Remove. Change all call sites to use
441 type::code instead.
442
67607e24
SM
4432020-05-14 Simon Marchi <simon.marchi@efficios.com>
444
445 * gdbtypes.h (struct type) <code, set_code>: New methods.
446 (TYPE_CODE): Use type::code. Change all call sites used to set
447 the code to use type::set_code instead.
448
a05575d3
TBA
4492020-05-14 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
450 Tom de Vries <tdevries@suse.de>
451 Pedro Alves <palves@redhat.com>
452
453 PR threads/25478
454 * infrun.c (stop_all_threads): Do NOT ignore
455 TARGET_WAITKIND_NO_RESUMED, TARGET_WAITKIND_THREAD_EXITED,
456 TARGET_WAITKIND_EXITED, TARGET_WAITKIND_SIGNALLED wait statuses
457 received.
458 (handle_no_resumed): Remove code handling a live inferior with no
459 threads.
460 * remote.c (has_single_non_exited_thread): New.
461 (remote_target::update_thread_list): Do not delete a thread if is
462 the last thread of the process.
463 * thread.c (thread_select): Call delete_exited_threads instead of
464 prune_threads.
465
6ad82919
TBA
4662020-05-14 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
467
468 * infrun.c (stop_all_threads): Enable/disable thread events of all
469 targets. Move a debug message denoting the end of the function
470 into the SCOPED_EXIT block.
471
d890404b
TBA
4722020-05-14 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
473
474 * process-stratum-target.h: Include <set>.
475 (all_non_exited_process_targets, switch_to_target_no_thread): New
476 function declarations.
477 * process-stratum-target.c (all_non_exited_process_targets)
478 (switch_to_target_no_thread): New function implementations.
479
293b3ebc
TBA
4802020-05-14 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
481
482 * infrun.c (handle_inferior_event): Extract out a piece of code
483 into...
484 (mark_non_executing_threads): ...this new function.
485
7ca9b62a
TBA
4862020-05-14 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
487
488 * infrun.c (resume_1): Move a 'regcache_read_pc' call down to first
489 use.
490
fc75c28b
TBA
4912020-05-14 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
492
493 * regcache.c (regcache_read_pc_protected): New function
494 implementation that returns 0 if the PC cannot read via
495 'regcache_read_pc'.
496 * infrun.c (proceed): Call 'regcache_read_pc_protected'
497 instead of 'regcache_read_pc'.
498 (keep_going_pass_signal): Ditto.
499
a89febbd
TT
5002020-05-13 Tom Tromey <tromey@adacore.com>
501
502 * ada-lang.c (align_value): Remove.
503 (ada_template_to_fixed_record_type_1): Use align_up.
504
f7e23710
TBA
5052020-05-13 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
506
507 * async-event.c: Update the copyright year.
508 * async-event.h: Update the copyright year.
509
02ff80c2
SM
5102020-05-12 Simon Marchi <simon.marchi@efficios.com>
511
512 * objfiles.h (is_addr_in_objfile,
513 shared_objfile_contains_address_p): Return bool.
514 * objfile.c (is_addr_in_objfile,
515 shared_objfile_contains_address_p): Return bool.
516
4fd6c7e8
TT
5172020-05-11 Tom Tromey <tromey@adacore.com>
518
519 * cli/cli-cmds.c (info_command): Restore.
520 (_initialize_cli_cmds): Use add_prefix_command for "info".
521 * gdb-gdb.gdb.in: Restore breakpoint on info_command.
522
5eb68a39
TT
5232020-05-11 Tom Tromey <tromey@adacore.com>
524
525 * ada-lang.c (ada_value_primitive_field): Now public.
526 * ada-lang.h (ada_value_primitive_field): Declare.
527 * ada-valprint.c (print_field_values): Use
528 ada_value_primitive_field for wrapper fields.
529
7666722f
TV
5302020-05-11 Tom de Vries <tdevries@suse.de>
531
532 * dwarf2/index-write.c (debug_names::psymbol_tag): Handle
533 MODULE_DOMAIN.
534
3ee6bb11
TV
5352020-05-11 Tom de Vries <tdevries@suse.de>
536
537 PR symtab/25941
538 * dwarf2/read.c (create_cus_from_debug_names_list): Initialize CUs
539 with length 0, if not gdb-produced.
540 (cutu_reader::cutu_reader): Set CU length to actual length if 0.
541
43434996
TV
5422020-05-09 Tom de Vries <tdevries@suse.de>
543
544 PR gdb/25955
545 * break-catch-throw.c (check_status_exception_catchpoint): Fix name
546 calculation.
547
2f78cffc
TT
5482020-05-09 Tom Tromey <tom@tromey.com>
549
550 * top.c (server_command): Now bool.
551 * top.h (server_command): Now bool.
552
4f7bc5ed
TT
5532020-05-08 Tom Tromey <tromey@adacore.com>
554
555 * dwarf2/read.c (read_lexical_block_scope): Don't process a DIE
556 already being processed.
557
8be4b118
TT
5582020-05-08 Tom Tromey <tom@tromey.com>
559
560 * printcmd.c (struct display) <next>: Remove.
561 <display>: New constructor.
562 <exp_string>: Now a std::string.
563 <enabled_p>: Now a bool.
564 (display_number): Move definition earlier.
565 (displays): Rename from display_chain. Now a std::vector.
566 (ALL_DISPLAYS, ALL_DISPLAYS_SAFE): Remove.
567 (display_command): Update.
568 (do_one_display, disable_display)
569 (enable_disable_display_command, do_enable_disable_display):
570 Update.
571 (free_display): Remove.
572 (clear_displays): Rewrite.
573 (delete_display): Update.
574 (map_display_numbers): Use function_view. Remove "data"
575 parameter. Update.
576 (do_delete_display): Remove.
577 (undisplay_command): Update.
578 (do_one_display, do_displays, disable_display)
579 (info_display_command): Update.
580 (do_enable_disable_display): Remove.
581 (enable_disable_display_command)
582 (clear_dangling_display_expressions): Update.
583
94c93c35
TT
5842020-05-08 Tom Tromey <tom@tromey.com>
585
586 * symtab.c (set_symbol_cache_size)
587 (maintenance_print_symbol_cache, maintenance_flush_symbol_cache)
588 (maintenance_print_symbol_cache_statistics): Update.
589 * symmisc.c (print_symbol_bcache_statistics)
590 (print_objfile_statistics, maintenance_print_objfiles)
591 (maintenance_info_symtabs, maintenance_check_symtabs)
592 (maintenance_expand_symtabs, maintenance_info_line_tables):
593 Update.
594 * symfile-debug.c (set_debug_symfile): Update.
595 * source.c (forget_cached_source_info): Update.
596 * python/python.c (gdbpy_progspaces): Update.
597 * psymtab.c (maintenance_info_psymtabs): Update.
598 * probe.c (parse_probes): Update.
599 * linespec.c (iterate_over_all_matching_symtabs)
600 (collect_symtabs_from_filename, search_minsyms_for_name): Update.
601 * guile/scm-progspace.c (gdbscm_progspaces): Update.
602 * exec.c (exec_target::close): Update.
603 * ada-tasks.c (ada_tasks_new_objfile_observer): Update.
604 * breakpoint.c (print_one_breakpoint_location)
605 (create_longjmp_master_breakpoint)
606 (create_std_terminate_master_breakpoint): Update.
607 * progspace.c (program_spaces): Now a std::vector.
608 (maybe_new_address_space): Update.
609 (add_program_space): Remove.
610 (program_space::program_space): Update.
611 (remove_program_space): Update.
612 (number_of_program_spaces): Remove.
613 (print_program_space, update_address_spaces): Update.
614 * progspace.h (program_spaces): Change type.
615 (ALL_PSPACES): Remove.
616 (number_of_program_spaces): Don't declare.
617 (struct program_space) <next>: Remove.
618
a1fd1ac9
TT
6192020-05-08 Tom Tromey <tom@tromey.com>
620
621 * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries): Update.
622 * solib-svr4.c (svr4_fetch_objfile_link_map): Update.
623 (enable_break): Update.
624 * solib-frv.c (frv_fdpic_find_global_pointer): Update.
625 (frv_fdpic_find_canonical_descriptor): Update.
626 (frv_fetch_objfile_link_map): Update.
627 * progspace.c (program_space::free_all_objfiles): Update.
628 (program_space::solibs): New method.
629 * progspace.h (struct program_space) <solibs>: New method.
630 * solist.h (master_so_list): Don't declare.
631 (ALL_SO_LIBS): Remove.
632 * solib.h (so_list_head): Remove.
633 (update_solib_list): Update comment.
634 * solib.c (master_so_list): Remove.
635 (solib_used, update_solib_list, solib_add)
636 (info_sharedlibrary_command, clear_solib)
637 (reload_shared_libraries_1, remove_user_added_objfile): Update.
638
38eae084
TT
6392020-05-08 Tom Tromey <tom@tromey.com>
640
641 * extension.c (extension_languages): Now a std::array.
642 (ALL_EXTENSION_LANGUAGES): Remove.
643 (get_ext_lang_defn, get_ext_lang_of_file)
644 (eval_ext_lang_from_control_command): Update.
645 (finish_ext_lang_initialization)
646 (auto_load_ext_lang_scripts_for_objfile)
647 (ext_lang_type_printers::ext_lang_type_printers)
648 (apply_ext_lang_type_printers)
649 (ext_lang_type_printers::~ext_lang_type_printers)
650 (apply_ext_lang_val_pretty_printer, apply_ext_lang_frame_filter)
651 (preserve_ext_lang_values, get_breakpoint_cond_ext_lang)
652 (breakpoint_ext_lang_cond_says_stop, check_quit_flag)
653 (get_matching_xmethod_workers, ext_lang_colorize)
654 (ext_lang_before_prompt): Update.
655 (ALL_ENABLED_EXTENSION_LANGUAGES): Remove.
656
596dc4ad
TT
6572020-05-08 Tom Tromey <tom@tromey.com>
658
659 * symtab.h (class demangle_result_storage) <set_malloc_ptr>: New
660 overload.
661 <swap_string, m_string>: Remove.
662 * symtab.c (demangle_for_lookup, completion_list_add_symbol):
663 Update.
664 * stabsread.c (define_symbol, read_type): Update.
665 * linespec.c (find_linespec_symbols): Update.
666 * gnu-v3-abi.c (gnuv3_get_typeid): Update.
667 * dwarf2/read.c (dwarf2_canonicalize_name): Update.
668 * dbxread.c (read_dbx_symtab): Update.
669 * cp-support.h (cp_canonicalize_string_full)
670 (cp_canonicalize_string, cp_canonicalize_string_no_typedefs):
671 Return unique_xmalloc_ptr.
672 * cp-support.c (inspect_type): Update.
673 (cp_canonicalize_string_full): Return unique_xmalloc_ptr.
674 (cp_canonicalize_string_no_typedefs, cp_canonicalize_string):
675 Likewise.
676 * c-typeprint.c (print_name_maybe_canonical): Update.
677 * break-catch-throw.c (check_status_exception_catchpoint):
678 Update.
679
bf4cb9be
TV
6802020-05-08 Tom de Vries <tdevries@suse.de>
681
682 * infrun.c (follow_fork): Copy current_line and current_symtab to
683 child thread.
684
a1b68f28
SM
6852020-05-07 Simon Marchi <simon.marchi@efficios.com>
686
687 * async-event.c (struct async_signal_handler, struct
688 async_event_handler): Reformat, remove typedef.
689
98d48915
SM
6902020-05-07 Simon Marchi <simon.marchi@efficios.com>
691
692 * gdbtypes.h (TYPE_DYN_PROP_LIST): Remove. Update all users
693 access thistype->main_type->dyn_prop_list directly.
694
7aa91313
SM
6952020-05-07 Simon Marchi <simon.marchi@efficios.com>
696
697 * gdbtypes.h (struct type) <remove_dyn_prop>: New method.
698 (remove_dyn_prop): Remove. Update all users to use
699 type::remove_dyn_prop.
700 * gdbtypes.c (remove_dyn_prop): Rename to...
701 (type::remove_dyn_prop): ... this.
702
5c54719c
SM
7032020-05-07 Simon Marchi via Gdb-patches <gdb-patches@sourceware.org>
704
705 * gdbtypes.h (struct type) <add_dyn_prop>: New method.
706 (add_dyn_prop): Remove. Update all users to use
707 type::add_dyn_prop.
708 * gdbtypes.c (add_dyn_prop): Rename to...
709 (type::add_dyn_prop): ... this.
710
24e99c6c
SM
7112020-05-07 Simon Marchi <simon.marchi@efficios.com>
712
713 * gdbtypes.h (struct type) <get_dyn_prop>: New method.
714 (get_dyn_prop): Remove. Update all users to use
715 type::dyn_prop.
716 * gdbtypes.c (get_dyn_prop): Rename to...
717 (type::dyn_prop): ... this.
718
0d4bf016
SM
7192020-05-06 Simon Marchi <simon.marchi@efficios.com>
720
721 * gdbtypes.h (struct main_type) <flag_static>: Remove.
722
ac4a4f1c
SM
7232020-05-06 Simon Marchi <simon.marchi@efficios.com>
724
725 * amd64-tdep.c (amd64_analyze_prologue): Check for `endbr64`
726 instruction, skip it if it's there.
727
a3bbacc1
SM
7282020-05-05 Simon Marchi <simon.marchi@efficios.com>
729
730 * gdbtypes.h (struct main_type) <flag_incomplete>: Remove.
731
c3236f84
SM
7322020-05-04 Simon Marchi <simon.marchi@efficios.com>
733
734 * gdbtypes.h (TYPE_INCOMPLETE): Remove.
735 * gdbtypes.c (recursive_dump_type): Remove use of
736 TYPE_INCOMPLETE.
737
3b6acaee
TT
7382020-05-03 Tom Tromey <tom@tromey.com>
739
740 * breakpoint.c (catch_command, tcatch_command): Remove.
741 (_initialize_breakpoint): Use add_basic_prefix_cmd,
742 add_show_prefix_cmd.
743 (set_breakpoint_cmd, show_breakpoint_cmd): Remove
744 * utils.c (set_internal_problem_cmd, show_internal_problem_cmd):
745 Remove.
746 (add_internal_problem_command): Use add_basic_prefix_cmd,
747 add_show_prefix_cmd.
748 * mips-tdep.c (set_mipsfpu_command): Remove.
749 (_initialize_mips_tdep): Use add_basic_prefix_cmd.
750 * dwarf2/index-cache.c (set_index_cache_command): Remove.
751 (_initialize_index_cache): Use add_basic_prefix_cmd.
752 * memattr.c (dummy_cmd): Remove.
753 (_initialize_mem): Use add_basic_prefix_cmd, add_show_prefix_cmd.
754 * tui/tui-win.c (set_tui_cmd, show_tui_cmd): Remove.
755 (_initialize_tui_win): Use add_basic_prefix_cmd,
756 add_show_prefix_cmd.
757 * cli/cli-logging.c (set_logging_command): Remove.
758 (_initialize_cli_logging): Use add_basic_prefix_cmd,
759 add_show_prefix_cmd.
760 (show_logging_command): Remove.
761 * target.c (target_command): Remove.
762 (add_target): Use add_basic_prefix_cmd.
763
a51119cd
HD
7642020-05-02 Hannes Domani <ssbssa@yahoo.de>
765
766 * gdbtypes.h (enum dynamic_prop_node_kind): Fix typo.
767
652fc23a 7682020-05-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
6a6ea76a 769
652fc23a
PW
770 * gdb-gdb.gdb-in: Remove breakpoint on disappeared function
771 info_command.
772
117539e6
KR
7732020-04-30 Kamil Rytarowski <n54@gmx.com>
774
775 * nbsd-nat.c (nbsd_enable_proc_events)
776 (nbsd_nat_target::post_startup_inferior): Add.
777 (nbsd_nat_target::post_attach): Call `nbsd_enable_proc_events'.
778 (nbsd_nat_target::update_thread_list): Rewrite.
779 (nbsd_nat_target::wait): Handle "PTRACE_LWP_EXIT" and
780 "PTRACE_LWP_CREATE".
781 * nbsd-nat.h (nbsd_nat_target::post_startup_inferior): Add.
782
102e38eb 7832020-04-30 Philippe Waroquiers <philippe.waroquiers@skynet.be>
6a6ea76a 784
102e38eb
PW
785 * stack.c (_initialize_stack): Remove duplicated creation
786 of "frame" command and "f" alias.
787
ee9d1e5f
HD
7882020-04-30 Hannes Domani <ssbssa@yahoo.de>
789
790 PR gdb/18706
791 * gdbtypes.c (check_typedef): Calculate size of array of
792 stubbed type.
793
627c7fb8
HD
7942020-04-30 Hannes Domani <ssbssa@yahoo.de>
795
796 PR gdb/15559
797 * i386-tdep.c (i386_push_dummy_call): Call
798 i386_thiscall_push_dummy_call.
799 (i386_thiscall_push_dummy_call): New function.
800 * i386-tdep.h (i386_thiscall_push_dummy_call): Declare.
801 * i386-windows-tdep.c (i386_windows_push_dummy_call): New function.
802 (i386_windows_init_abi): Call set_gdbarch_push_dummy_call.
803
ffc2844e
SM
8042020-04-29 Simon Marchi <simon.marchi@efficios.com>
805
806 * gdbarch.sh (do_read): Add shellcheck disable directive for
807 warning SC2162.
808
1207375d
SM
8092020-04-29 Simon Marchi <simon.marchi@efficios.com>
810
811 * gdbarch.sh: Use ${foo:-} where shellcheck would report a
812 "referenced but not assigned" warning.
813
9fdb2916
SM
8142020-04-29 Simon Marchi <simon.marchi@efficios.com>
815
816 * gdbarch.sh: Remove code that sets fallbackdefault.
817
759cea5e
SM
8182020-04-29 Simon Marchi <simon.marchi@efficios.com>
819
820 * gdbarch.sh: Use shell operators && and || instead of
821 -a and -o.
822
cb02ab24
SM
8232020-04-29 Simon Marchi <simon.marchi@efficios.com>
824
825 * gdbarch.sh: Use $(...) instead of `...`.
826
a6fc5ffc
SM
8272020-04-29 Simon Marchi <simon.marchi@efficios.com>
828
829 * gdbarch.sh: Use double quotes around variables.
830
8d113d13
SM
8312020-04-29 Simon Marchi <simon.marchi@efficios.com>
832
833 * gdbarch.sh: Use %s with printf, instead of variables in the
834 format string.
835
ed6acedd
TT
8362020-04-29 Tom Tromey <tromey@adacore.com>
837
838 PR ada/25875:
839 * dwarf2/read.c (update_enumeration_type_from_children): Compute
840 type fields here.
841 (read_enumeration_type): Call
842 update_enumeration_type_from_children later. Update comments.
843 (process_enumeration_scope): Don't create type fields.
844
b68b1b58
KR
8452020-04-29 Kamil Rytarowski <n54@gmx.com>
846
847 * nbsd-tdep.c: Include "xml-syscall.h".
848 (nbsd_init_abi): Call `set_xml_syscall_file_name'.
849
f94b2e03
KR
8502020-04-29 Kamil Rytarowski <n54@gmx.com>
851
852 * nbsd-nat.c: Include "sys/wait.h".
853 (nbsd_resume, nbsd_nat_target::resume, nbsd_wait)
854 (nbsd_nat_target::wait, nbsd_nat_target::insert_exec_catchpoint)
855 (nbsd_nat_target::remove_exec_catchpoint)
856 (nbsd_nat_target::set_syscall_catchpoint): Add.
857 * nbsd-nat.h (nbsd_nat_target::resume, nbsd_nat_target::wait)
858 (nbsd_nat_target::insert_exec_catchpoint)
859 (nbsd_nat_target::remove_exec_catchpoint)
860 (nbsd_nat_target::set_syscall_catchpoint): Add.
861 * nbsd-tdep.c (nbsd_get_syscall_number): Add.
862 (nbsd_init_abi): Call `set_gdbarch_get_syscall_number' and pass
863 `nbsd_get_syscall_number'.
864
fc49bc72
TT
8652020-04-29 Tom Tromey <tom@tromey.com>
866
867 * stack.c (print_block_frame_labels): Remove.
868
d642b692
HD
8692020-04-29 Hannes Domani <ssbssa@yahoo.de>
870
871 PR gdb/17320
872 * ada-valprint.c (val_print_packed_array_elements): Move array
873 end bracket to new line.
874 (ada_val_print_string): Remove extra spaces before first array
875 element.
876 * c-valprint.c (c_value_print_array): Likewise.
877 * m2-valprint.c (m2_print_array_contents): Likewise.
878 (m2_value_print_inner): Likewise.
879 * p-valprint.c (pascal_value_print_inner): Likewise.
880 * valprint.c (generic_val_print_array): Likewise.
881 (value_print_array_elements): Move first array element and array
882 end bracket to new line.
883
ea90f227
TV
8842020-04-29 Tom de Vries <tdevries@suse.de>
885
886 PR symtab/25889
887 * linespec.c (find_method): Fix ix calculation.
888
4498ef4f
KR
8892020-04-28 Kamil Rytarowski <n54@gmx.com>
890
891 * syscalls/update-netbsd.sh: New file.
892 * syscalls/netbsd.xml: Regenerate.
893 * data-directory/Makefile.in: Register `netbsd.xml' in
894 `SYSCALLS_FILES'.
895
a55e30b5
SM
8962020-04-28 Simon Marchi <simon.marchi@efficios.com>
897
898 * syscalls/update-freebsd.sh: Add double quotes.
899
2b2fbab8
TT
9002020-04-28 Tom Tromey <tom@tromey.com>
901
902 * NEWS: Update.
903 * python/py-cmd.c (gdbpy_initialize_commands): Add COMMAND_TUI.
904 (cmdpy_init): Allow class_tui.
905
a65189c9
TV
9062020-04-28 Mark Williams <mark@myosotissp.com>
907
908 PR gdb/24480
909 * dwarf2read.c: Add missing assingments to list_in_scope when
910 start_symtab was already called.
911
1b95cdb7
SM
9122020-04-28 Simon Marchi <simon.marchi@efficios.com>
913
914 PR gdb/25881
915 * dwarf2/read.c (offset_map_type): Use
916 gdb:hash_enum<sect_offset> as hash function.
917
15cd93d0
TV
9182020-04-28 Tom de Vries <tdevries@suse.de>
919
920 * dwarf2/read.c (process_structure_scope): Add symbol for struct decl
921 with DW_AT_signature.
922
1eb39914
SM
9232020-04-27 Simon Marchi <simon.marchi@efficios.com>
924
925 * configure.ac: Remove check for fs_base/gs_base in
926 user_regs_struct.
927 * configure: Re-generate.
928 * config.in: Re-generate.
929 * amd64-nat.c (amd64_native_gregset_reg_offset): Adjust.
930 * amd64-linux-nat.c (amd64_linux_nat_target::fetch_registers,
931 amd64_linux_nat_target::store_registers, ps_get_thread_area, ): Adjust.
932
991a3e2e
LM
9332020-04-27 Luis Machado <luis.machado@linaro.org>
934
935 * dwarf2/frame-tailcall.c (dwarf2_tailcall_sniffer_first): Handle
936 problematic inline frame unwinding situation.
937 * frame.c (frame_id_computed_p): New function.
938 * frame.h (frame_id_computed_p): New prototype.
939
361ba0e8
TT
9402020-04-26 Tom Tromey <tom@tromey.com>
941
942 * command.h (enum command_class) <class_pseudo>: Remove.
943
bc3609fd
PW
9442020-04-26 Philippe Waroquiers <philippe.waroquiers@skynet.be>
945
946 * cli/cli-decode.c (lookup_cmd_composition): Fix comments
947 and whitespace.
948
b9771db7
KR
9492020-04-25 Kamil Rytarowski <n54@gmx.com>
950
951 * inf-ptrace.c (inf_ptrace_target::wait): Remove
952 `PT_GET_PROCESS_STATE' block.
953
7151c1af
TT
9542020-04-24 Tom Tromey <tom@tromey.com>
955
956 * symtab.h (symbol_get_demangled_name): Don't declare.
957 * symtab.c (symbol_get_demangled_name): Remove.
958 (general_symbol_info::natural_name)
959 (general_symbol_info::demangled_name): Update.
960
906bb4c5
TT
9612020-04-24 Tom Tromey <tom@tromey.com>
962
963 PR rust/25025:
964 * dwarf2/read.c (dwarf2_physname): Do not demangle for Rust.
965
bcfe6157
TT
9662020-04-24 Tom Tromey <tom@tromey.com>
967
968 PR symtab/12707:
969 * dwarf2/read.c (add_partial_symbol): Use the linkage name if it
970 exists.
971 (new_symbol): Likewise.
972 * compile/compile-object-load.c (get_out_value_type): Use
973 symbol_matches_search_name.
974
f049a313
TT
9752020-04-24 Tom Tromey <tom@tromey.com>
976
977 * dwarf2/read.c (add_partial_symbol): Do not call
978 compute_and_set_names.
979
76e288d1
TT
9802020-04-24 Tom Tromey <tom@tromey.com>
981
982 * dwarf2/read.c (add_partial_symbol): Use new add_psymbol_to_list
983 overload.
984
2467f4f6
TT
9852020-04-24 Tom Tromey <tom@tromey.com>
986
987 * psymtab.c (add_psymbol_to_bcache): Simplify calling convention.
988 (add_psymbol_to_list): New overload. Make old overload call new
989 one.
990 * psympriv.h (add_psymbol_to_list): New overload.
991
e61108c9
TT
9922020-04-24 Tom Tromey <tom@tromey.com>
993
994 * dwarf2/read.c (partial_die_info::read) <case
995 DW_AT_linkage_name>: Use value_as_string.
996 (dwarf2_string_attr): Use value_as_string.
997 * dwarf2/attribute.h (struct attribute) <value_as_string>: Declare
998 method.
999 * dwarf2/attribute.c (attribute::value_as_string): New method.
1000
8c87a452
TT
10012020-04-24 Tom Tromey <tom@tromey.com>
1002
1003 * symtab.c (general_symbol_info::natural_name)
1004 (general_symbol_info::demangled_name): Check for language_rust.
1005
787de330
TT
10062020-04-24 Tom Tromey <tom@tromey.com>
1007
1008 * dwarf2/read.c (dw2_linkage_name): Move Rust "{" hack here...
1009 (dwarf2_physname): ... from here.
1010 (partial_die_info::read): Add Rust "{" hack.
1011
ff985671
TT
10122020-04-24 Tom Tromey <tom@tromey.com>
1013
1014 * symtab.h (struct general_symbol_info) <set_demangled_name>: New
1015 method.
1016 (symbol_set_demangled_name): Don't declare.
1017 * symtab.c (general_symbol_info::set_demangled_name): Rename from
1018 symbol_set_demangled_name.
1019 (general_symbol_info::set_language)
1020 (general_symbol_info::compute_and_set_names): Update.
1021 * minsyms.c (minimal_symbol_reader::install): Update.
1022 * dwarf2/read.c (new_symbol): Update.
1023
1acda803
TT
10242020-04-24 Tom Tromey <tromey@adacore.com>
1025
1026 PR python/23662:
1027 * python/py-type.c (convert_field): Handle
1028 FIELD_LOC_KIND_DWARF_BLOCK.
1029 (typy_get_sizeof): Handle TYPE_HAS_DYNAMIC_LENGTH.
1030 (typy_get_dynamic): Nw function.
1031 (type_object_getset): Add "dynamic".
1032 * NEWS: Add entry.
1033
d656f129
TT
10342020-04-24 Tom Tromey <tromey@adacore.com>
1035
1036 * ada-typeprint.c (print_choices, print_variant_part)
1037 (print_record_field_types_dynamic): New functions.
1038 (print_record_field_types): Use print_record_field_types_dynamic.
1039
7d79de9a
TT
10402020-04-24 Tom Tromey <tromey@adacore.com>
1041
1042 * dwarf2/read.c (handle_data_member_location): New overload.
1043 (dwarf2_add_field): Use it.
1044 (decode_locdesc): Add "computed" parameter. Update comment.
1045 * gdbtypes.c (is_dynamic_type_internal): Also look for
1046 FIELD_LOC_KIND_DWARF_BLOCK.
1047 (resolve_dynamic_struct): Handle FIELD_LOC_KIND_DWARF_BLOCK.
1048 * gdbtypes.c (is_dynamic_type_internal): Add special case for C++
1049 virtual base classes.
1050 * gnu-v3-abi.c (gnuv3_baseclass_offset): Handle
1051 FIELD_LOC_KIND_DWARF_BLOCK.
1052
f8e89861
TT
10532020-04-24 Tom Tromey <tromey@adacore.com>
1054
1055 * dwarf2/read.c (read_structure_type): Handle dynamic length.
1056 * gdbtypes.c (is_dynamic_type_internal): Check
1057 TYPE_HAS_DYNAMIC_LENGTH.
1058 (resolve_dynamic_type_internal): Use TYPE_DYNAMIC_LENGTH.
1059 * gdbtypes.h (TYPE_HAS_DYNAMIC_LENGTH, TYPE_DYNAMIC_LENGTH):
1060 New macros.
1061 (enum dynamic_prop_node_kind) <DYN_PROP_BYTE_SIZE>: New
1062 constant.
1063
9c6a1327
TT
10642020-04-24 Tom Tromey <tromey@adacore.com>
1065
1066 * dwarf2/read.c (struct variant_field): Rewrite.
1067 (struct variant_part_builder): New.
1068 (struct nextfield): Remove "variant" field. Add "offset".
1069 (struct field_info): Add "current_variant_part" and
1070 "variant_parts".
1071 (alloc_discriminant_info): Remove.
1072 (alloc_rust_variant): New function.
1073 (quirk_rust_enum): Update.
1074 (dwarf2_add_field): Set "offset" member. Don't handle
1075 DW_TAG_variant_part.
1076 (offset_map_type): New typedef.
1077 (convert_variant_range, create_one_variant)
1078 (create_one_variant_part, create_variant_parts)
1079 (add_variant_property): New functions.
1080 (dwarf2_attach_fields_to_type): Call add_variant_property.
1081 (read_structure_type): Don't handle DW_TAG_variant_part.
1082 (handle_variant_part, handle_variant): New functions.
1083 (handle_struct_member_die): Use them.
1084 (process_structure_scope): Don't handle variant parts.
1085 * gdbtypes.h (TYPE_FLAG_DISCRIMINATED_UNION): Remove.
1086 (struct discriminant_info): Remove.
1087 (enum dynamic_prop_node_kind) <DYN_PROP_DISCRIMINATED>: Remove.
1088 (struct main_type) <flag_discriminated_union>: Remove.
1089 * rust-lang.c (rust_enum_p, rust_empty_enum_p): Rewrite.
1090 (rust_enum_variant): Return int. Remove "contents". Rewrite.
1091 (rust_print_enum, rust_print_struct_def, rust_evaluate_subexp):
1092 Update.
1093 * valops.c (value_union_variant): Remove.
1094 * value.h (value_union_variant): Don't declare.
1095
b249d2c2
TT
10962020-04-24 Tom Tromey <tromey@adacore.com>
1097
1098 * ada-lang.c (ada_discrete_type_high_bound, ada_discrete_type_low)
1099 (ada_value_primitive_packed_val): Update.
1100 * ada-valprint.c (ada_value_print_1): Update.
1101 * dwarf2/loc.c (evaluate_for_locexpr_baton): New struct.
1102 (dwarf2_locexpr_baton_eval): Take a property_addr_info rather than
1103 just an address. Use evaluate_for_locexpr_baton.
1104 (dwarf2_evaluate_property): Update.
1105 * dwarf2/loc.h (struct property_addr_info) <valaddr>: Now an
1106 array_view.
1107 * findvar.c (default_read_var_value): Update.
1108 * gdbtypes.c (compute_variant_fields_inner)
1109 (resolve_dynamic_type_internal): Update.
1110 (resolve_dynamic_type): Change type of valaddr parameter.
1111 * gdbtypes.h (resolve_dynamic_type): Update.
1112 * valarith.c (value_subscripted_rvalue): Update.
1113 * value.c (value_from_contents_and_address): Update.
1114
61122aa9
TT
11152020-04-24 Tom Tromey <tromey@adacore.com>
1116
1117 * dwarf2/loc.c (dwarf2_locexpr_baton_eval): Add
1118 "push_initial_value" parameter.
1119 (dwarf2_evaluate_property): Likewise.
1120 * dwarf2/loc.h (dwarf2_evaluate_property): Update.
1121
ef83a141
TT
11222020-04-24 Tom Tromey <tromey@adacore.com>
1123
1124 * gdbtypes.c (is_dynamic_type_internal): Check for variant parts.
1125 (variant::matches, compute_variant_fields_recurse)
1126 (compute_variant_fields_inner, compute_variant_fields): New
1127 functions.
1128 (resolve_dynamic_struct): Check for DYN_PROP_VARIANT_PARTS.
1129 Use resolved_type after type is made.
1130 (operator==): Add new cases.
1131 * gdbtypes.h (TYPE_HAS_VARIANT_PARTS): New macro.
1132 (struct discriminant_range, struct variant, struct variant_part):
1133 New.
1134 (union dynamic_prop_data) <variant_parts, original_type>: New
1135 members.
1136 (enum dynamic_prop_node_kind) <DYN_PROP_VARIANT_PARTS>: New constant.
1137 (enum dynamic_prop_kind) <PROP_TYPE, PROP_VARIANT_PARTS>: New
1138 constants.
1139 * value.c (unpack_bits_as_long): Now public.
1140 * value.h (unpack_bits_as_long): Declare.
1141
675127ec
TT
11422020-04-24 Tom Tromey <tromey@adacore.com>
1143
1144 * rs6000-tdep.c (struct ppc_variant): Rename from "variant".
1145 (variants, find_variant_by_arch, rs6000_gdbarch_init): Update.
1146
9852ceef
HD
11472020-04-24 Hannes Domani <ssbssa@yahoo.de>
1148
1149 * windows-tdep.c (exception_values): Add WOW64 exception numbers.
1150
7632c6ce
KR
11512020-04-24 Kamil Rytarowski <n54@gmx.com>
1152
1153 * inf-ptrace.h (follow_fork, insert_fork_catchpoint)
1154 (remove_fork_catchpoint, post_startup_inferior)
1155 (post_attach): Move...
1156 * obsd-nat.h (follow_fork, insert_fork_catchpoint)
1157 (remove_fork_catchpoint, post_startup_inferior)
1158 (post_attach): ...here.
1159 * inf-ptrace.c (follow_fork, insert_fork_catchpoint)
1160 (remove_fork_catchpoint, post_startup_inferior)
1161 (post_attach): Move...
1162 * obsd-nat.c (follow_fork, insert_fork_catchpoint)
1163 (remove_fork_catchpoint, post_startup_inferior)
1164 (post_attach): ...here.
1165
7be2bb4f
TT
11662020-04-24 Tom Tromey <tromey@adacore.com>
1167
1168 * nat/windows-nat.h (struct windows_thread_info)
1169 <pc_adjusted>: New member.
1170 * windows-nat.c (windows_fetch_one_register): Check
1171 pc_adjusted.
1172 (windows_nat_target::get_windows_debug_event)
1173 (windows_nat_target::wait): Set pc_adjusted.
1174
f80cb3b4
TV
11752020-04-24 Tom de Vries <tdevries@suse.de>
1176
1177 * contrib/cc-with-tweaks.sh: Remove <exec>.gdb-index file handling.
1178 Run gdb-add-index inside temp dir.
1179
29514b87
TT
11802020-04-23 Tom Tromey <tromey@adacore.com>
1181
1182 * windows-tdep.c (is_linked_with_cygwin_dll): Always update "iter"
1183 in loop.
1184
5939967b
LM
11852020-04-23 Luis Machado <luis.machado@linaro.org>
1186
1187 * dwarf2/frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
1188 get_frame_register instead of gdbarch_unwind_pc.
1189
70bc38f5
TV
11902020-04-23 Tom de Vries <tdevries@suse.de>
1191
1192 * symtab.c (lookup_global_symbol): Prefer def over decl.
1193
de82891c
TV
11942020-04-23 Tom de Vries <tdevries@suse.de>
1195
1196 PR symtab/25807
1197 * block.c (best_symbol, better_symbol): Promote to external.
1198 * block.h (best_symbol, better_symbol): Declare.
1199 * symtab.c (lookup_symbol_in_objfile_symtabs): Prefer def over
1200 decl.
1201
ecc6c606
TT
12022020-04-23 Tom Tromey <tromey@adacore.com>
1203
1204 PR ada/25837:
1205 * dwarf2/read.c (dw2_expand_symtabs_matching_symbol): Store a
1206 "const char *", not a "const std::string &".
1207 <name_and_matcher::operator==>: Update.
1208 * unittests/lookup_name_info-selftests.c: Change type of
1209 "result".
1210
740480b8
TT
12112020-04-23 Tom Tromey <tom@tromey.com>
1212
1213 * inferior.h (iterate_over_inferiors): Don't declare.
1214 * inferior.c (iterate_over_inferiors): Remove.
1215 * darwin-nat.c (find_inferior_task_it, find_inferior_pid_it):
1216 Remove.
1217 (darwin_find_inferior_by_task, darwin_find_inferior_by_pid): Don't
1218 use iterate_over_inferiors.
1219 (darwin_resume_inferior_it)
1220 (struct resume_inferior_threads_param)
1221 (darwin_resume_inferior_threads_it): Remove.
1222 (darwin_nat_target::resume): Don't use iterate_over_inferiors.
1223
ae3ab1f0
TV
12242020-04-23 Tom de Vries <tdevries@suse.de>
1225
1226 * blockframe.c (find_pc_partial_function): Use
1227 find_pc_sect_compunit_symtab rather than
1228 objfile->sf->qf->find_pc_sect_compunit_symtab.
1229
317d2668
TV
12302020-04-22 Tom de Vries <tdevries@suse.de>
1231
1232 PR symtab/25764
1233 * dwarf2/read.c (scan_partial_symbols): Allow external variable decls
1234 in psymtabs.
1235
eea9e357
TV
12362020-04-22 Tom de Vries <tdevries@suse.de>
1237
1238 PR symtab/25801
1239 * psymtab.c (psym_map_symtabs_matching_filename): Don't skip shared
1240 symtabs.
1241
3d5afab3
TV
12422020-04-22 Tom de Vries <tdevries@suse.de>
1243
1244 PR symtab/25700
1245 * dwarf2/read.c (dwarf2_build_psymtabs_hard): Don't create psymtab for
1246 CU if already created.
1247
d43b7a2d
TBA
12482020-04-21 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
1249
1250 * infrun.c (displaced_step_fixup): Switch to the event_thread
1251 before calling displaced_step_restore, not after.
1252
d89edf9b
MM
12532020-04-21 Markus Metzger <markus.t.metzger@intel.com>
1254
1255 * record-btrace.c (record_btrace_enable_warn): Ignore thread if
1256 its inferior is not recorded by us.
1257 (record_btrace_target_open): Replace call to
1258 all_non_exited_threads () with call to current_inferior
1259 ()->non_exited_threads ().
1260 (record_btrace_target::stop_recording): Likewise.
1261 (record_btrace_target::close): Likewise.
1262 (record_btrace_target::wait): Likewise.
1263 (record_btrace_target::record_stop_replaying): Likewise.
1264
5897fd49
MM
12652020-04-21 Markus Metzger <markus.t.metzger@intel.com>
1266
1267 * btrace.c (btrace_enable): Throw an error on double enables and
1268 when enabling recording fails.
1269 (btrace_disable): Throw an error if the thread is not recorded.
1270
1a476b6d
MM
12712020-04-21 Markus Metzger <markus.t.metzger@intel.com>
1272
1273 * record-btrace.c (record_btrace_target::fetch_registers): Forward
1274 request if we do not have a thread_info.
1275
4778a5f8
TV
12762020-04-21 Tom de Vries <tdevries@suse.de>
1277
1278 PR gdb/25471
1279 * thread.c
1280 (scoped_restore_current_thread::scoped_restore_current_thread): Catch
1281 exception in get_frame_id.
1282
0fa7617d
TT
12832020-04-20 Tom Tromey <tromey@adacore.com>
1284
1285 * python/python.c (struct gdbpy_event): Mark move constructor as
1286 noexcept.
1287 * python/py-tui.c (class gdbpy_tui_window_maker): Mark move
1288 constructor as noexcept.
1289 * completer.h (struct completion_result): Mark move constructor as
1290 noexcept.
1291 * completer.c (completion_result::completion_result): Use
1292 initialization style. Don't call reset_match_list.
1293
ad23bda0
MS
12942020-04-20 Mihails Strasuns <mihails.strasuns@intel.com>
1295
1296 * MAINTAINERS (Write After Approval): Add myself.
1297
45e1f031
TT
12982020-04-18 Tom Tromey <tom@tromey.com>
1299
1300 * windows-tdep.c (init_w32_command_list)
1301 (w32_prefix_command_valid): Restore.
1302 (_initialize_windows_tdep): Call init_w32_command_list.
1303
08feed99
TT
13042020-04-18 Tom Tromey <tom@tromey.com>
1305
1306 * xcoffread.c (enter_line_range, scan_xcoff_symtab): Update.
1307 * value.c (value_fn_field): Update.
1308 * valops.c (find_function_in_inferior)
1309 (value_allocate_space_in_inferior): Update.
1310 * tui/tui-winsource.c (tui_update_source_windows_with_line):
1311 Update.
1312 * tui/tui-source.c (tui_source_window::set_contents): Update.
1313 * symtab.c (lookup_global_or_static_symbol)
1314 (find_function_start_sal_1, skip_prologue_sal)
1315 (print_msymbol_info, find_gnu_ifunc, symbol_arch): Update.
1316 * symmisc.c (dump_msymbols, dump_symtab_1)
1317 (maintenance_print_one_line_table): Update.
1318 * symfile.c (init_entry_point_info, section_is_mapped)
1319 (list_overlays_command, simple_read_overlay_table)
1320 (simple_overlay_update_1): Update.
1321 * stap-probe.c (handle_stap_probe): Update.
1322 * stabsread.c (dbx_init_float_type, define_symbol)
1323 (read_one_struct_field, read_enum_type, read_range_type): Update.
1324 * source.c (info_line_command): Update.
1325 * python/python.c (gdbpy_source_objfile_script)
1326 (gdbpy_execute_objfile_script): Update.
1327 * python/py-type.c (save_objfile_types): Update.
1328 * python/py-objfile.c (py_free_objfile): Update.
1329 * python/py-inferior.c (python_new_objfile): Update.
1330 * psymtab.c (psym_find_pc_sect_compunit_symtab, dump_psymtab)
1331 (dump_psymtab_addrmap_1, maintenance_info_psymtabs)
1332 (maintenance_check_psymtabs): Update.
1333 * printcmd.c (info_address_command): Update.
1334 * objfiles.h (struct objfile) <arch>: New method, from
1335 get_objfile_arch.
1336 (get_objfile_arch): Don't declare.
1337 * objfiles.c (get_objfile_arch): Remove.
1338 (filter_overlapping_sections): Update.
1339 * minsyms.c (msymbol_is_function): Update.
1340 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines)
1341 (output_nondebug_symbol): Update.
1342 * mdebugread.c (parse_symbol, basic_type, parse_partial_symbols)
1343 (mdebug_expand_psymtab): Update.
1344 * machoread.c (macho_add_oso_symfile): Update.
1345 * linux-tdep.c (linux_infcall_mmap, linux_infcall_munmap):
1346 Update.
1347 * linux-fork.c (checkpoint_command): Update.
1348 * linespec.c (convert_linespec_to_sals): Update.
1349 * jit.c (finalize_symtab): Update.
1350 * infrun.c (insert_exception_resume_from_probe): Update.
1351 * ia64-tdep.c (ia64_find_unwind_table): Update.
1352 * hppa-tdep.c (internalize_unwinds): Update.
1353 * gdbtypes.c (get_type_arch, init_float_type, objfile_type):
1354 Update.
1355 * gcore.c (call_target_sbrk): Update.
1356 * elfread.c (record_minimal_symbol, elf_symtab_read)
1357 (elf_rel_plt_read, elf_gnu_ifunc_record_cache)
1358 (elf_gnu_ifunc_resolve_by_got): Update.
1359 * dwarf2/read.c (create_addrmap_from_index)
1360 (create_addrmap_from_aranges, dw2_find_pc_sect_compunit_symtab)
1361 (read_debug_names_from_section)
1362 (process_psymtab_comp_unit_reader, add_partial_symbol)
1363 (add_partial_subprogram, process_full_comp_unit)
1364 (read_file_scope, read_func_scope, read_lexical_block_scope)
1365 (read_call_site_scope, dwarf2_ranges_read)
1366 (dwarf2_record_block_ranges, dwarf2_add_field)
1367 (mark_common_block_symbol_computed, read_tag_pointer_type)
1368 (read_tag_string_type, dwarf2_init_float_type)
1369 (dwarf2_init_complex_target_type, read_base_type)
1370 (partial_die_info::read, partial_die_info::read)
1371 (read_attribute_value, dwarf_decode_lines_1, new_symbol)
1372 (dwarf2_fetch_die_loc_sect_off): Update.
1373 * dwarf2/loc.c (dwarf2_find_location_expression)
1374 (class dwarf_evaluate_loc_desc, rw_pieced_value)
1375 (dwarf2_evaluate_loc_desc_full, dwarf2_locexpr_baton_eval)
1376 (dwarf2_loc_desc_get_symbol_read_needs)
1377 (locexpr_describe_location_piece, locexpr_describe_location_1)
1378 (loclist_describe_location): Update.
1379 * dwarf2/index-write.c (write_debug_names): Update.
1380 * dwarf2/frame.c (dwarf2_build_frame_info): Update.
1381 * dtrace-probe.c (dtrace_process_dof): Update.
1382 * dbxread.c (read_dbx_symtab, dbx_end_psymtab)
1383 (process_one_symbol): Update.
1384 * ctfread.c (ctf_init_float_type, read_base_type): Update.
1385 * coffread.c (coff_symtab_read, enter_linenos, decode_base_type)
1386 (coff_read_enum_type): Update.
1387 * cli/cli-cmds.c (edit_command, list_command): Update.
1388 * buildsym.c (buildsym_compunit::finish_block_internal): Update.
1389 * breakpoint.c (create_overlay_event_breakpoint)
1390 (create_longjmp_master_breakpoint)
1391 (create_std_terminate_master_breakpoint)
1392 (create_exception_master_breakpoint, get_sal_arch): Update.
1393 * block.c (block_gdbarch): Update.
1394 * annotate.c (annotate_source_line): Update.
1395
0743fc83
TT
13962020-04-17 Tom Tromey <tromey@adacore.com>
1397
1398 * auto-load.c (show_auto_load_cmd): Remove.
1399 (auto_load_show_cmdlist_get): Use add_show_prefix_cmd.
1400 * arc-tdep.c (_initialize_arc_tdep): Use add_show_prefix_cmd.
1401 (maintenance_print_arc_command): Remove.
1402 * tui/tui-win.c (tui_command): Remove.
1403 (tui_get_cmd_list): Use add_basic_prefix_cmd.
1404 * tui/tui-layout.c (tui_layout_command): Remove.
1405 (_initialize_tui_layout): Use add_basic_prefix_cmd.
1406 * python/python.c (user_set_python, user_show_python): Remove.
1407 (_initialize_python): Use add_basic_prefix_cmd,
1408 add_show_prefix_cmd.
1409 * guile/guile.c (set_guile_command, show_guile_command): Remove.
1410 (install_gdb_commands): Use add_basic_prefix_cmd,
1411 add_show_prefix_cmd.
1412 (info_guile_command): Remove.
1413 * dwarf2/read.c (set_dwarf_cmd, show_dwarf_cmd): Remove.
1414 (_initialize_dwarf2_read): Use add_basic_prefix_cmd,
1415 add_show_prefix_cmd.
1416 * cli/cli-style.h (class cli_style_option) <add_setshow_commands>:
1417 Remove do_set and do_show parameters.
1418 * cli/cli-style.c (set_style, show_style): Remove.
1419 (_initialize_cli_style): Use add_basic_prefix_cmd,
1420 add_show_prefix_cmd.
1421 (cli_style_option::add_setshow_commands): Remove do_set and
1422 do_show parameters.
1423 (cli_style_option::add_setshow_commands): Use
1424 add_basic_prefix_cmd, add_show_prefix_cmd.
1425 (STYLE_ADD_SETSHOW_COMMANDS): Remove macro.
1426 (set_style_name): Remove.
1427 * cli/cli-dump.c (dump_command, append_command): Remove.
1428 (srec_dump_command, ihex_dump_command, verilog_dump_command)
1429 (tekhex_dump_command, binary_dump_command)
1430 (binary_append_command): Remove.
1431 (_initialize_cli_dump): Use add_basic_prefix_cmd.
1432 * windows-tdep.c (w32_prefix_command_valid): Remove global.
1433 (init_w32_command_list): Remove; move into ...
1434 (_initialize_windows_tdep): ... here. Use add_basic_prefix_cmd.
1435 * valprint.c (set_print, show_print, set_print_raw)
1436 (show_print_raw): Remove.
1437 (_initialize_valprint): Use add_basic_prefix_cmd,
1438 add_show_prefix_cmd.
1439 * typeprint.c (set_print_type, show_print_type): Remove.
1440 (_initialize_typeprint): Use add_basic_prefix_cmd,
1441 add_show_prefix_cmd.
1442 * record.c (set_record_command, show_record_command): Remove.
1443 (_initialize_record): Use add_basic_prefix_cmd,
1444 add_show_prefix_cmd.
1445 * cli/cli-cmds.c (_initialize_cli_cmds): Use add_basic_prefix_cmd,
1446 add_show_prefix_cmd.
1447 (info_command, show_command, set_debug, show_debug): Remove.
1448 * top.h (set_history, show_history): Don't declare.
1449 * top.c (set_history, show_history): Remove.
1450 * target-descriptions.c (set_tdesc_cmd, show_tdesc_cmd)
1451 (unset_tdesc_cmd): Remove.
1452 (_initialize_target_descriptions): Use add_basic_prefix_cmd,
1453 add_show_prefix_cmd.
1454 * symtab.c (info_module_command): Remove.
1455 (_initialize_symtab): Use add_basic_prefix_cmd.
1456 * symfile.c (overlay_command): Remove.
1457 (_initialize_symfile): Use add_basic_prefix_cmd.
1458 * sparc64-tdep.c (info_adi_command): Remove.
1459 (_initialize_sparc64_adi_tdep): Use add_basic_prefix_cmd.
1460 * sh-tdep.c (show_sh_command, set_sh_command): Remove.
1461 (_initialize_sh_tdep): Use add_basic_prefix_cmd,
1462 add_show_prefix_cmd.
1463 * serial.c (serial_set_cmd, serial_show_cmd): Remove.
1464 (_initialize_serial): Use add_basic_prefix_cmd,
1465 add_show_prefix_cmd.
1466 * ser-tcp.c (set_tcp_cmd, show_tcp_cmd): Remove.
1467 (_initialize_ser_tcp): Use add_basic_prefix_cmd,
1468 add_show_prefix_cmd.
1469 * rs6000-tdep.c (set_powerpc_command, show_powerpc_command)
1470 (_initialize_rs6000_tdep): Use add_basic_prefix_cmd,
1471 add_show_prefix_cmd.
1472 * riscv-tdep.c (show_riscv_command, set_riscv_command)
1473 (show_debug_riscv_command, set_debug_riscv_command): Remove.
1474 (_initialize_riscv_tdep): Use add_basic_prefix_cmd,
1475 add_show_prefix_cmd.
1476 * remote.c (remote_command, set_remote_cmd): Remove.
1477 (_initialize_remote): Use add_basic_prefix_cmd.
1478 * record-full.c (set_record_full_command)
1479 (show_record_full_command): Remove.
1480 (_initialize_record_full): Use add_basic_prefix_cmd,
1481 add_show_prefix_cmd.
1482 * record-btrace.c (cmd_set_record_btrace)
1483 (cmd_show_record_btrace, cmd_set_record_btrace_bts)
1484 (cmd_show_record_btrace_bts, cmd_set_record_btrace_pt)
1485 (cmd_show_record_btrace_pt): Remove.
1486 (_initialize_record_btrace): Use add_basic_prefix_cmd,
1487 add_show_prefix_cmd.
1488 * ravenscar-thread.c (set_ravenscar_command)
1489 (show_ravenscar_command): Remove.
1490 (_initialize_ravenscar): Use add_basic_prefix_cmd,
1491 add_show_prefix_cmd.
1492 * mips-tdep.c (show_mips_command, set_mips_command)
1493 (_initialize_mips_tdep): Use add_basic_prefix_cmd,
1494 add_show_prefix_cmd.
1495 * maint.c (maintenance_command, maintenance_info_command)
1496 (maintenance_check_command, maintenance_print_command)
1497 (maintenance_set_cmd, maintenance_show_cmd): Remove.
1498 (_initialize_maint_cmds): Use add_basic_prefix_cmd,
1499 add_show_prefix_cmd.
1500 (show_per_command_cmd): Remove.
1501 * maint-test-settings.c (maintenance_set_test_settings_cmd):
1502 Remove.
1503 (maintenance_show_test_settings_cmd): Remove.
1504 (_initialize_maint_test_settings): Use add_basic_prefix_cmd,
1505 add_show_prefix_cmd.
1506 * maint-test-options.c (maintenance_test_options_command):
1507 Remove.
1508 (_initialize_maint_test_options): Use add_basic_prefix_cmd.
1509 * macrocmd.c (macro_command): Remove
1510 (_initialize_macrocmd): Use add_basic_prefix_cmd.
1511 * language.c (set_check, show_check): Remove.
1512 (_initialize_language): Use add_basic_prefix_cmd,
1513 add_show_prefix_cmd.
1514 * infcmd.c (unset_command): Remove.
1515 (_initialize_infcmd): Use add_basic_prefix_cmd.
1516 * i386-tdep.c (set_mpx_cmd, show_mpx_cmd): Remove.
1517 (_initialize_i386_tdep): Use add_basic_prefix_cmd,
1518 add_show_prefix_cmd.
1519 * go32-nat.c (go32_info_dos_command): Remove.
1520 (_initialize_go32_nat): Use add_basic_prefix_cmd.
1521 * cli/cli-decode.c (do_prefix_cmd, add_basic_prefix_cmd)
1522 (do_show_prefix_cmd, add_show_prefix_cmd): New functions.
1523 * frame.c (set_backtrace_cmd, show_backtrace_cmd): Remove.
1524 (_initialize_frame): Use add_basic_prefix_cmd,
1525 add_show_prefix_cmd.
1526 * dcache.c (set_dcache_command, show_dcache_command): Remove.
1527 (_initialize_dcache): Use add_basic_prefix_cmd,
1528 add_show_prefix_cmd.
1529 * cp-support.c (maint_cplus_command): Remove.
1530 (_initialize_cp_support): Use add_basic_prefix_cmd.
1531 * btrace.c (maint_btrace_cmd, maint_btrace_set_cmd)
1532 (maint_btrace_show_cmd, maint_btrace_pt_set_cmd)
1533 (maint_btrace_pt_show_cmd, _initialize_btrace): Use
1534 add_basic_prefix_cmd, add_show_prefix_cmd.
1535 * breakpoint.c (save_command): Remove.
1536 (_initialize_breakpoint): Use add_basic_prefix_cmd.
1537 * arm-tdep.c (set_arm_command, show_arm_command): Remove.
1538 (_initialize_arm_tdep): Use add_basic_prefix_cmd,
1539 add_show_prefix_cmd.
1540 * ada-lang.c (maint_set_ada_cmd, maint_show_ada_cmd)
1541 (set_ada_command, show_ada_command): Remove.
1542 (_initialize_ada_language): Use add_basic_prefix_cmd,
1543 add_show_prefix_cmd.
1544 * command.h (add_basic_prefix_cmd, add_show_prefix_cmd): Declare.
1545
3557f442
KR
15462020-04-16 Kamil Rytarowski <n54@gmx.com>
1547
1548 * nbsd-nat.c (inf_ptrace_target::auxv_parse): Remove.
1549 * nbsd-nat.h (inf_ptrace_target::auxv_parse): Likewise.
1550
16197208
SM
15512020-04-16 Simon Marchi <simon.marchi@polymtl.ca>
1552
1553 * windows-tdep.c (is_linked_with_cygwin_dll): Add filename to
1554 warning messages.
1555
00ac85d3
SM
15562020-04-16 Simon Marchi <simon.marchi@polymtl.ca>
1557
1558 * windows-tdep.c (is_linked_with_cygwin_dll): Consider case where
1559 import table is not at beginning of .idata section.
1560
381ce63f
PA
15612020-04-16 Pedro Alves <palves@redhat.com>
1562
1563 * inferior.c (delete_inferior): Use delete operator directly
1564 instead of delete_program_space.
1565 * progspace.c (add_program_space): New, factored out from
1566 program_space::program_space.
1567 (remove_program_space): New, factored out from
1568 delete_program_space.
1569 (program_space::program_space): Remove intro comment. Rewrite.
1570 (program_space::~program_space): Remove intro comment. Call
1571 remove_program_space.
1572 (delete_program_space): Delete.
1573 * progspace.h (program_space::program_space): Make explicit. Move
1574 intro comment here, adjusted.
1575 (program_space::~program_space): Move intro comment here,
1576 adjusted.
1577 (delete_program_space): Remove.
1578
a010605f
TT
15792020-04-16 Tom Tromey <tromey@adacore.com>
1580
1581 * windows-nat.c (windows_nat::handle_access_violation): New
1582 function.
1583 * nat/windows-nat.h (handle_access_violation): Declare.
1584 * nat/windows-nat.c (handle_exception): Move Cygwin code to
1585 windows-nat.c. Call handle_access_violation.
1586
efba5c23
TV
15872020-04-16 Tom de Vries <tdevries@suse.de>
1588
1589 PR symtab/25791
1590 * dwarf2/index-write.c (write_gdbindex): Generate CU table entries for
1591 CUs without psymtab.
1592
97ed802d
KB
15932020-04-16 Kevin Buettner <kevinb@redhat.com>
1594
1595 * python/python.c (do_start_initialization): Don't call
1596 PyEval_InitThreads for Python 3.9 and beyond.
1597
c7d64809
KR
15982020-04-15 Kamil Rytarowski <n54@gmx.com>
1599
1600 * obsd-nat.c (obsd_nat_target::update_thread_list): Pass "this" to
1601 thread functions.
1602 (obsd_nat_target::wait): Likewise.
1603
ce127a96
TT
16042020-04-15 Tom Tromey <tromey@adacore.com>
1605
1606 * windows-nat.c (DEBUG_EXEC, DEBUG_EVENTS, DEBUG_MEM)
1607 (DEBUG_EXCEPT): Use debug_printf.
1608
99f1bc6a
AB
16092020-04-15 Andrew Burgess <andrew.burgess@embecosm.com>
1610
1611 * completer.c (class completion_tracker::completion_hash_entry)
1612 <hash_name>: New member function.
1613 (completion_tracker::discard_completions): New callback to hash a
1614 completion_hash_entry, pass this to htab_create_alloc.
1615
a0e9b532
JT
16162016-01-20 Jon Turney <jon.turney@dronecode.org.uk>
1617
1618 * windows-nat.c (windows_make_so): Warn rather than stopping with
1619 an error if realpath() fails.
1620
06ca5dd4
KR
16212020-04-14 Kamil Rytarowski <n54@gmx.com>
1622
1623 * nbsd-nat.c (nbsd_pid_to_kinfo_proc2): New.
1624 (nbsd_nat_target::info_proc): Add do_status.
1625
194d088f
TV
16262020-04-14 Simon Marchi <simon.marchi@polymtl.ca>
1627 Tom de Vries <tdevries@suse.de>
1628
1629 PR symtab/25718
1630 * psympriv.h (struct partial_symtab::read_symtab)
1631 (struct partial_symtab::expand_psymtab)
1632 (struct partial_symtab::read_dependencies): Update comments.
1633 * dwarf2/read.c (struct dwarf2_include_psymtab::read_symtab): Call
1634 read_symtab for includer.
1635 (struct dwarf2_include_psymtab::expand_psymtab): Assert false.
1636 (struct dwarf2_include_psymtab::readin_p): Call readin_p () for includer.
1637 (struct dwarf2_include_psymtab::m_readin): Remove.
1638 (struct dwarf2_include_psymtab::includer): New member function.
1639 (dwarf2_psymtab::expand_psymtab): Assert !readin.
1640
c1a66c06
TV
16412020-04-14 Tom de Vries <tdevries@suse.de>
1642
1643 PR symtab/25720
1644 * symmisc.c (maintenance_expand_symtabs): Call expand_symtabs_matching
1645 with NULL symbol_matcher and lookup_name.
1646 * psymtab.c (psym_expand_symtabs_matching): Handle NULL symbol_matcher
1647 and lookup_name.
1648 * dwarf2/read.c (dw2_expand_symtabs_matching)
1649 (dw2_debug_names_expand_symtabs_matching): Same.
1650 * symfile.h (struct quick_symbol_functions::expand_symtabs_matching):
1651 Make lookup_name a pointer. Update comment.
1652 * symtab.c (global_symbol_searcher::expand_symtabs): Handle
1653 lookup_name being a pointer.
1654 * symfile.c (expand_symtabs_matching): Same.
1655 * symfile-debug.c (debug_qf_expand_symtabs_matching): Same.
1656 * linespec.c (iterate_over_all_matching_symtabs): Same.
1657
400b5eca
TT
16582020-04-13 Tom Tromey <tom@tromey.com>
1659
1660 * run-on-main-thread.c: Update include.
1661 * unittests/main-thread-selftests.c: Update include.
1662 * tui/tui-win.c: Update include.
1663 * tui/tui-io.c: Update include.
1664 * tui/tui-interp.c: Update include.
1665 * tui/tui-hooks.c: Update include.
1666 * top.h: Update include.
1667 * top.c: Update include.
1668 * ser-base.c: Update include.
1669 * remote.c: Update include.
1670 * remote-notif.c: Update include.
1671 * remote-fileio.c: Update include.
1672 * record-full.c: Update include.
1673 * record-btrace.c: Update include.
1674 * python/python.c: Update include.
1675 * posix-hdep.c: Update include.
1676 * mingw-hdep.c: Update include.
1677 * mi/mi-main.c: Update include.
1678 * mi/mi-interp.c: Update include.
1679 * main.c: Update include.
1680 * linux-nat.c: Update include.
1681 * interps.c: Update include.
1682 * infrun.c: Update include.
1683 * inf-loop.c: Update include.
1684 * event-top.c: Update include.
1685 * event-loop.c: Move to ../gdbsupport/.
1686 * event-loop.h: Move to ../gdbsupport/.
1687 * async-event.h: Update include.
1688 * Makefile.in (COMMON_SFILES, HFILES_NO_SRCDIR): Update.
1689
93b54c8e
TT
16902020-04-13 Tom Tromey <tom@tromey.com>
1691
1692 * tui/tui-win.c: Include async-event.h.
1693 * remote.c: Include async-event.h.
1694 * remote-notif.c: Include async-event.h.
1695 * record-full.c: Include async-event.h.
1696 * record-btrace.c: Include async-event.h.
1697 * infrun.c: Include async-event.h.
1698 * event-top.c: Include async-event.h.
1699 * event-loop.h: Move some declarations to async-event.h.
1700 * event-loop.c: Don't include ser-event.h or top.h. Move some
1701 code to async-event.c.
1702 * async-event.h: New file.
1703 * async-event.c: New file.
1704 * Makefile.in (COMMON_SFILES): Add async-event.c.
1705 (HFILES_NO_SRCDIR): Add async-event.h.
1706
c1cd3163
TT
17072020-04-13 Tom Tromey <tom@tromey.com>
1708
1709 * utils.c (flush_streams): New function.
1710 * event-loop.c (gdb_wait_for_event): Call flush_streams.
1711
29f2bf4f
TT
17122020-04-13 Tom Tromey <tom@tromey.com>
1713
1714 * event-loop.c (handle_file_event): Use warning, not
1715 printf_unfiltered.
1716
98029d02
TT
17172020-04-13 Tom Tromey <tom@tromey.com>
1718
1719 * event-loop.c: Include <chrono>.
1720
06cc9596
TT
17212020-04-13 Tom Tromey <tom@tromey.com>
1722
1723 * gdb_select.h: Move to ../gdbsupport/.
1724 * event-loop.c: Update include path.
1725 * top.c: Update include path.
1726 * ser-base.c: Update include path.
1727 * ui-file.c: Update include path.
1728 * ser-tcp.c: Update include path.
1729 * guile/scm-ports.c: Update include path.
1730 * posix-hdep.c: Update include path.
1731 * ser-unix.c: Update include path.
1732 * gdb_usleep.c: Update include path.
1733 * mingw-hdep.c: Update include path.
1734 * inflow.c: Update include path.
1735 * infrun.c: Update include path.
1736 * event-top.c: Update include path.
1737
8ae8e197
TT
17382020-04-13 Tom Tromey <tom@tromey.com>
1739
1740 * configure: Rebuild.
1741 * configure.ac: Remove checks that are now in GDB_AC_COMMON.
1742
58cf28e8
TT
17432020-04-13 Tom Tromey <tom@tromey.com>
1744
1745 * event-loop.h (start_event_loop): Don't declare.
1746 * event-loop.c (start_event_loop): Move...
1747 * main.c (start_event_loop): ...here. Now static.
1748
b7f999ae
SDJ
17492020-04-13 Sergio Durigan Junior <sergiodj@sergiodj.net>
1750
1751 * MAINTAINERS: Update my email address.
1752
1085dfd4
KR
17532020-04-12 Kamil Rytarowski <n54@gmx.com>
1754
1755 * nbsd-nat.c (nbsd_nat_target::info_proc): Add IP_MINIMAL and
1756 IP_ALL.
1757
49d1d1f5
KR
17582020-04-12 Kamil Rytarowski <n54@gmx.com>
1759
1760 * nbsd-nat.c (nbsd_pid_to_cmdline): Add.
aac66a4c 1761 (nbsd_nat_target::info_proc): Add do_cmdline.
49d1d1f5 1762
b4848d2a
KR
17632020-04-12 Kamil Rytarowski <n54@gmx.com>
1764
1765 * nbsd-nat.c (nbsd_pid_to_cwd): Add.
aac66a4c 1766 (nbsd_nat_target::info_proc): Add do_cwd.
b4848d2a 1767
51c133d5
KR
17682020-04-12 Kamil Rytarowski <n54@gmx.com>
1769
1770 * nbsd-nat.c (nbsd_nat_target::info_proc): Add do_exe.
1771
54b8cbd0
KR
17722020-04-11 Kamil Rytarowski <n54@gmx.com>
1773
1774 * nbsd-nat.c; Include "nbsd-tdep.h" and "gdbarch.h".
1775 * nbsd-nat.c (nbsd_nat_target::find_memory_regions)
1776 (nbsd_nat_target::info_proc): New functions.
1777 * nbsd-nat.c (kinfo_get_vmmap): New function.
1778 * nbsd-nat.c (nbsd_nat_target::info_proc) Use
1779 nbsd_info_proc_mappings_header and nbsd_info_proc_mappings_entry.
1780 * nbsd-tdep.c (nbsd_info_proc_mappings_header)
1781 (nbsd_info_proc_mappings_entry, nbsd_vm_map_entry_flags): New
1782 functions.
1783 * nbsd-tdep.c (KINFO_VME_PROT_READ, KINFO_VME_PROT_WRITE)
1784 (KINFO_VME_PROT_EXEC, KINFO_VME_FLAG_COW)
1785 (KINFO_VME_FLAG_NEEDS_COPY, KINFO_VME_FLAG_NOCOREDUMP)
1786 (KINFO_VME_FLAG_PAGEABLE, KINFO_VME_FLAG_GROWS_UP)
1787 (KINFO_VME_FLAG_GROWS_DOWN): New.
1788
cf83625d
AS
17892020-04-10 Artur Shepilko <nomadbyte@gmail.com>
1790
1791 * utils.c (copy_bitwise): Use unsigned 0 constant as operand of
1792 bit shift.
1793
0c4311ab
TT
17942020-04-10 Tom Tromey <tromey@adacore.com>
1795
1796 * symfile.c (symbol_file_add_separate): Preserve OBJF_MAINLINE.
1797
3e65b3e9
TT
17982020-04-10 Tom Tromey <tromey@adacore.com>
1799
1800 * symtab.c (get_symbol_address, get_msymbol_address): Skip
1801 separate debug files.
1802
13302e95
HD
18032020-04-10 Hannes Domani <ssbssa@yahoo.de>
1804
1805 * nat/windows-nat.c (STATUS_WX86_BREAKPOINT, STATUS_WX86_SINGLE_STEP):
1806 Move to...
1807 * nat/windows-nat.h (STATUS_WX86_BREAKPOINT, STATUS_WX86_SINGLE_STEP):
1808 ... here.
1809 * windows-nat.c (windows_nat_target::get_windows_debug_event):
1810 Check for STATUS_WX86_BREAKPOINT.
1811 (windows_nat_target::wait): Same.
1812
bdfc1e8a
TV
18132020-04-10 Tom de Vries <tdevries@suse.de>
1814
1815 PR cli/25808
1816 * python/lib/gdb/__init__.py: Initialize lexer with stripnl=False.
1817
f4460aec
SM
18182020-04-09 Simon Marchi <simon.marchi@polymtl.ca>
1819
1820 * MAINTAINERS (Global Maintainers): Add Tom de Vries.
1821 (Write After Approval): Remove Tom de Vries.
1822
a25198bb
BE
18232020-04-09 Bernd Edlinger <bernd.edlinger@hotmail.de>
1824
1825 revert partially:
1826 2020-04-01 Bernd Edlinger <bernd.edlinger@hotmail.de>
1827
aac66a4c
SM
1828 * buildsym.c (record_line): Fix undefined behavior and preserve
1829 lines at eof.
a25198bb 1830
206c98a6
KR
18312020-04-09 Kamil Rytarowski <n54@gmx.com>
1832
1833 * auxv.h (svr4_auxv_parse): New.
1834 * auxv.c (default_auxv_parse): Split into default_auxv_parse
1835 and generic_auxv_parse.
1836 (svr4_auxv_parse): Add.
1837 * obsd-tdep.c: Include "auxv.h".
1838 (obsd_auxv_parse): Remove.
1839 (obsd_init_abi): Remove comment.
1840 (obsd_init_abi): Change set_gdbarch_auxv_parse passed argument
1841 from `obsd_auxv_parse' to `svr4_auxv_parse'.
1842 * nbsd-tdep.c: Include "auxv.h".
1843 (nbsd_init_abi): Call set_gdbarch_auxv_parse.
1844
71fbdbaf
TT
18452020-04-08 Tom Tromey <tromey@adacore.com>
1846
1847 * nat/windows-nat.h (last_wait_event): Don't declare.
1848 (wait_for_debug_event): Update comment.
1849 * nat/windows-nat.c (last_wait_event): Now static.
1850
2c1d95e8
TT
18512020-04-08 Tom Tromey <tromey@adacore.com>
1852
1853 * windows-nat.c (wait_for_debug_event): Move to
1854 nat/windows-nat.c.
1855 * nat/windows-nat.h (wait_for_debug_event): Declare.
1856 * nat/windows-nat.c (wait_for_debug_event): Move from
1857 windows-nat.c. No longer static.
1858
d2977bc4
TT
18592020-04-08 Tom Tromey <tromey@adacore.com>
1860
1861 * windows-nat.c (get_windows_debug_event): Use
1862 fetch_pending_stop.
1863 * nat/windows-nat.h (fetch_pending_stop): Declare.
1864 * nat/windows-nat.c (fetch_pending_stop): New function.
1865
e758e19c
TT
18662020-04-08 Tom Tromey <tromey@adacore.com>
1867
1868 * windows-nat.c (windows_continue): Use matching_pending_stop and
1869 continue_last_debug_event.
1870 * nat/windows-nat.h (matching_pending_stop)
1871 (continue_last_debug_event): Declare.
1872 * nat/windows-nat.c (DEBUG_EVENTS): New define.
1873 (matching_pending_stop, continue_last_debug_event): New
1874 functions.
1875
8d30e395
TT
18762020-04-08 Tom Tromey <tromey@adacore.com>
1877
1878 * windows-nat.c (MS_VC_EXCEPTION): Move to nat/windows-nat.c.
1879 (handle_exception_result): Move to nat/windows-nat.h.
1880 (DEBUG_EXCEPTION_SIMPLE): Remove.
1881 (windows_nat::handle_ms_vc_exception): New function.
1882 (handle_exception): Move to nat/windows-nat.c.
1883 (get_windows_debug_event): Update.
1884 (STATUS_WX86_BREAKPOINT, STATUS_WX86_SINGLE_STEP): Move to
1885 nat/windows-nat.c.
1886 * nat/windows-nat.h (handle_ms_vc_exception): Declare.
1887 (handle_exception_result): Move from windows-nat.c.
1888 (handle_exception): Declare.
1889 * nat/windows-nat.c (MS_VC_EXCEPTION, handle_exception)
1890 (STATUS_WX86_SINGLE_STEP, STATUS_WX86_BREAKPOINT): Move from
1891 windows-nat.c.
1892
29de418d
TT
18932020-04-08 Tom Tromey <tromey@adacore.com>
1894
1895 * windows-nat.c (exception_count, event_count): Remove.
1896 (handle_exception, get_windows_debug_event)
1897 (do_initial_windows_stuff): Update.
1898
a816ba18
TT
18992020-04-08 Tom Tromey <tromey@adacore.com>
1900
1901 * windows-nat.c (windows_nat::handle_load_dll)
1902 (windows_nat::handle_unload_dll): Rename. No longer static.
1903 * nat/windows-nat.h (handle_load_dll, handle_unload_dll):
1904 Declare.
1905
a00caa12
TT
19062020-04-08 Tom Tromey <tromey@adacore.com>
1907
1908 * complaints.h (stop_whining): Declare at top-level.
1909 (complaint): Don't declare stop_whining.
1910
d41b524f
TT
19112020-04-08 Tom Tromey <tromey@adacore.com>
1912
1913 * windows-nat.c (windows_nat::handle_output_debug_string):
1914 Rename. No longer static.
1915 * nat/windows-nat.h (handle_output_debug_string): Declare.
1916
3c76026d
TT
19172020-04-08 Tom Tromey <tromey@adacore.com>
1918
1919 * windows-nat.c (current_process_handle, current_process_id)
1920 (main_thread_id, last_sig, current_event, last_wait_event)
1921 (current_windows_thread, desired_stop_thread_id, pending_stops)
1922 (struct pending_stop, siginfo_er): Move to nat/windows-nat.c.
1923 (display_selectors, fake_create_process)
1924 (get_windows_debug_event): Update.
1925 * nat/windows-nat.h (current_process_handle, current_process_id)
1926 (main_thread_id, last_sig, current_event, last_wait_event)
1927 (current_windows_thread, desired_stop_thread_id, pending_stops)
1928 (struct pending_stop, siginfo_er): Move from windows-nat.c.
1929 * nat/windows-nat.c (current_process_handle, current_process_id)
1930 (main_thread_id, last_sig, current_event, last_wait_event)
1931 (current_windows_thread, desired_stop_thread_id, pending_stops)
1932 (siginfo_er): New globals. Move from windows-nat.c.
1933
9d8679cc
TT
19342020-04-08 Tom Tromey <tromey@adacore.com>
1935
1936 * windows-nat.c (get_image_name): Move to nat/windows-nat.c.
1937 (handle_load_dll): Update.
1938 * nat/windows-nat.c (get_image_name): Move from windows-nat.c.
1939
28688adf
TT
19402020-04-08 Tom Tromey <tromey@adacore.com>
1941
1942 * windows-nat.c (enum thread_disposition_type): Move to
1943 nat/windows-nat.h.
1944 (windows_nat::thread_rec): Rename from thread_rec. No longer
1945 static.
1946 (windows_add_thread, windows_nat_target::fetch_registers)
1947 (windows_nat_target::store_registers, handle_exception)
1948 (windows_nat_target::resume, get_windows_debug_event)
1949 (windows_nat_target::get_tib_address)
1950 (windows_nat_target::thread_name)
1951 (windows_nat_target::thread_alive): Update.
1952 * nat/windows-nat.h (enum thread_disposition_type): Move from
1953 windows-nat.c.
1954 (thread_rec): Declare.
1955
4834dad0
TT
19562020-04-08 Tom Tromey <tromey@adacore.com>
1957
1958 * windows-nat.c: Add "using namespace".
1959 * nat/windows-nat.h: Wrap contents in windows_nat namespace.
1960 * nat/windows-nat.c: Wrap contents in windows_nat namespace.
1961
65bafd5b
TT
19622020-04-08 Tom Tromey <tromey@adacore.com>
1963
1964 * nat/windows-nat.h (struct windows_thread_info): Declare
1965 destructor.
1966 * nat/windows-nat.c (~windows_thread_info): New.
1967
0a4afda3
TT
19682020-04-08 Tom Tromey <tromey@adacore.com>
1969
1970 PR gdb/22992
1971 * windows-nat.c (current_event): Update comment.
1972 (last_wait_event, desired_stop_thread_id): New globals.
1973 (struct pending_stop): New.
1974 (pending_stops): New global.
1975 (windows_nat_target) <stopped_by_sw_breakpoint>
1976 <supports_stopped_by_sw_breakpoint>: New methods.
1977 (windows_fetch_one_register): Add assertions. Adjust PC.
1978 (windows_continue): Handle pending stops. Suspend other threads
1979 when stepping. Use last_wait_event
1980 (wait_for_debug_event): New function.
1981 (get_windows_debug_event): Use wait_for_debug_event. Handle
1982 pending stops. Queue spurious stops.
1983 (windows_nat_target::wait): Set stopped_at_software_breakpoint.
1984 (windows_nat_target::kill): Use wait_for_debug_event.
1985 * nat/windows-nat.h (struct windows_thread_info)
1986 <stopped_at_software_breakpoint>: New field.
1987 * nat/windows-nat.c (windows_thread_info::resume): Clear
1988 stopped_at_software_breakpoint.
1989
8e61ebec
TT
19902020-04-08 Tom Tromey <tromey@adacore.com>
1991
1992 * windows-nat.c (enum thread_disposition_type): New.
1993 (thread_rec): Replace "get_context" parameter with "disposition";
1994 change type.
1995 (windows_add_thread, windows_nat_target::fetch_registers)
1996 (windows_nat_target::store_registers, handle_exception)
1997 (windows_nat_target::resume, get_windows_debug_event)
1998 (windows_nat_target::get_tib_address)
1999 (windows_nat_target::thread_name)
2000 (windows_nat_target::thread_alive): Update.
2001
98a03287
TT
20022020-04-08 Tom Tromey <tromey@adacore.com>
2003
2004 * windows-nat.c (thread_rec): Use windows_thread_info::suspend.
2005 (windows_continue): Use windows_continue::resume.
2006 * nat/windows-nat.h (struct windows_thread_info) <suspend,
2007 resume>: Declare new methods.
2008 * nat/windows-nat.c: New file.
2009 * configure.nat (NATDEPFILES): Add nat/windows-nat.o when needed.
2010
7c7411bc
TT
20112020-04-08 Tom Tromey <tromey@adacore.com>
2012
2013 * windows-nat.c (windows_add_thread, windows_delete_thread)
2014 (windows_nat_target::fetch_registers)
2015 (windows_nat_target::store_registers, fake_create_process)
2016 (windows_nat_target::resume, windows_nat_target::resume)
2017 (get_windows_debug_event, windows_nat_target::wait)
2018 (windows_nat_target::pid_to_str)
2019 (windows_nat_target::get_tib_address)
2020 (windows_nat_target::get_ada_task_ptid)
2021 (windows_nat_target::thread_name)
2022 (windows_nat_target::thread_alive): Use lwp, not tid.
2023
2950fdf7
TT
20242020-04-08 Tom Tromey <tromey@adacore.com>
2025
2026 * windows-nat.c (handle_exception)
2027 (windows_nat_target::thread_name): Update.
2028 * nat/windows-nat.h (windows_thread_info): Remove destructor.
2029 <name>: Now unique_xmalloc_ptr.
2030
62fe396b
TT
20312020-04-08 Tom Tromey <tromey@adacore.com>
2032
2033 * windows-nat.c (thread_rec)
2034 (windows_nat_target::fetch_registers): Update.
2035 * nat/windows-nat.h (struct windows_thread_info) <suspended>:
2036 Update comment.
2037 <debug_registers_changed, reload_context>: Now bool.
2038
e9534bd2
TT
20392020-04-08 Tom Tromey <tromey@adacore.com>
2040
2041 * windows-nat.c (windows_add_thread): Use new.
2042 (windows_init_thread_list, windows_delete_thread): Use delete.
2043 (get_windows_debug_event): Update.
2044 * nat/windows-nat.h (struct windows_thread_info): Add constructor,
2045 destructor, and initializers.
2046
ae1f8880
TT
20472020-04-08 Tom Tromey <tromey@adacore.com>
2048
2049 * windows-nat.c (struct windows_thread_info): Remove.
2050 * nat/windows-nat.h: New file.
2051
55a1e039
TT
20522020-04-08 Tom Tromey <tromey@adacore.com>
2053
2054 * windows-nat.c (struct windows_thread_info) <tid>: Rename from "id".
2055 (thread_rec, windows_add_thread, windows_delete_thread)
2056 (windows_continue): Update.
2057
93366324
TT
20582020-04-08 Tom Tromey <tromey@adacore.com>
2059
2060 * windows-nat.c (struct windows_thread_info): Remove typedef.
2061 (thread_head): Remove.
2062 (thread_list): New global.
2063 (thread_rec, windows_add_thread, windows_init_thread_list)
2064 (windows_delete_thread, windows_continue): Update.
2065
0f2265e2
SM
20662020-04-08 Simon Marchi <simon.marchi@polymtl.ca>
2067
2068 * windows-tdep.h (windows_init_abi): Add comment.
2069 (cygwin_init_abi): New declaration.
2070 * windows-tdep.c: Split signal enumeration in two, one for
2071 Windows and one for Cygwin.
2072 (windows_gdb_signal_to_target): Only deal with signal of the
2073 Windows OS ABI.
2074 (cygwin_gdb_signal_to_target): New function.
2075 (windows_init_abi): Rename to windows_init_abi_common, don't set
2076 gdb_signal_to_target gdbarch method. Add new new function with
2077 this name.
2078 (cygwin_init_abi): New function.
2079 * amd64-windows-tdep.c (amd64_windows_init_abi_common): Add
2080 comment. Don't call windows_init_abi.
2081 (amd64_windows_init_abi): Add comment, call windows_init_abi.
2082 (amd64_cygwin_init_abi): Add comment, call cygwin_init_abi.
2083 * i386-windows-tdep.c (i386_windows_init_abi): Rename to
2084 i386_windows_init_abi_common, don't call windows_init_abi. Add
2085 a new function of this name.
2086 (i386_cygwin_init_abi): New function.
2087 (_initialize_i386_windows_tdep): Bind i386_cygwin_init_abi to
2088 OS ABI Cygwin.
2089
3810f182
SM
20902020-04-08 Simon Marchi <simon.marchi@polymtl.ca>
2091
2092 * dwarf2/read.c (read_gdb_index_from_buffer): Remove objfile
2093 parameter.c.
2094 (dwarf2_read_gdb_index): Update.
2095
063f8e80
KR
20962020-04-07 Kamil Rytarowski <n54@gmx.com>
2097
2098 * nbsd-tdep.c: Include "objfiles.h".
2099 (nbsd_skip_solib_resolver): New.
2100 (nbsd_init_abi): Call set_gdbarch_skip_solib_resolver().
2101
85a9510c 21022020-04-07 Nitika Achra <Nitika.Achra@amd.com>
2103
2104 * dwarf2/loc.c (loclist_describe_location): Call the function decode_debug_loclists_
2105 addresses if DWARF version is 5 or more because DW_LLE_start* or DW_LLE_offset_pair
2106 with DW_LLE_base_addressx are being emitted in DWARFv5.
2107 Add the newly added kind DW_LOC_OFFSET_PAIR also.
2108 The length of location description is an unsigned ULEB integer in DWARFv5 instead of
2109 unsigned integer.
2110
9fc3eaae 21112020-04-07 Nitika Achra <Nitika.Achra@amd.com>
2112
2113 * dwarf2/loc.c (enum debug_loc_kind): Add a new kind DEBUG_LOC_OFFSET_PAIR.
2114 (dwarf2_find_location_expression): Call the function decode_debug_loclists_
2115 addresses if DWARF version is 5 or more. DW_LLE_start* or DW_LLE_offset_pair
2116 with DW_LLE_base_addressx are being emitted in DWARFv5 instead of DW_LLE_GNU*.
2117 Add applicable base address if the entry is DW_LLE_offset_pair from DWO.
2118 (decode_debug_loclists_addresses): Return DEBUG_LOC_OFFSET_PAIR instead of
2119 DEBUG_LOC_START_END in case of DW_LLE_offset_pair.
2120
2121
41144253 21222020-04-07 Nitika Achra <Nitika.Achra@amd.com>
2123
2124 * dwarf2/read.c (cu_debug_loc_section): Added the declaration for the function.
2125 (read_loclist_index): New function definition.
2126 (lookup_loclist_base): New function definition.
2127 (read_loclist_header): New function definition.
2128 (dwarf2_cu): Add loclist_base and loclist_header field.
2129 (dwarf2_locate_dwo_sections): Handle .debug_loclists.dwo section.
2130 (read_full_die_1): Read the value of DW_AT_loclists_base.
2131 (read_attribute_reprocess): Handle DW_FORM_loclistx.
2132 (read_attribute_value): Handle DW_FORM_loclistx.
2133 (skip_one_die): Handle DW_FORM_loclistx.
2134 (loclist_header): New structure declaration.
2135 * dwarf2/attribute.c (form_is_section_offset): Handle DW_FORM_loclistx.
2136
9f4e76a4
SM
21372020-04-07 Simon Marchi <simon.marchi@polymtl.ca>
2138
2139 * dwarf2/read.h (struct dwarf2_psymtab): Remove two-parameters
2140 constructor. Remove `addr` parameter from other constructor and
2141 add `per_cu` parameter.
2142 * dwarf2/read.c (create_partial_symtab): Update.
2143
25c11aca
TV
21442020-04-07 Tom de Vries <tdevries@suse.de>
2145
2146 PR symtab/25796
2147 * dwarf2/read.c (can_have_DW_AT_const_value_p): New function.
2148 (partial_die_info::fixup): Inherit has_const_value.
2149
5707e24b
TV
21502020-04-07 Tom de Vries <tdevries@suse.de>
2151
2152 * psymtab.c (maintenance_check_psymtabs): Skip static LOC_BLOCK
2153 symbols without address.
2154
05f00e22
KR
21552020-04-06 Kamil Rytarowski <n54@gmx.com>
2156
2157 * nbsd-nat.h (struct thread_info): Add forward declaration.
2158 (nbsd_nat_target::thread_alive): Add.
2159 (nbsd_nat_target::thread_name): Likewise.
2160 (nbsd_nat_target::update_thread_list): Likewise.
2161 (update_thread_list::post_attach): Likewise.
2162 (post_attach::pid_to_str): Likewise.
2163 * nbsd-nat.c: Include "gdbthread.h" and "inferior.h".
2164 (nbsd_thread_lister): Add.
2165 (nbsd_nat_target::thread_alive): Likewise.
2166 (nbsd_nat_target::thread_name): Likewise.
2167 (nbsd_add_threads): Likewise.
2168 (update_thread_list::post_attach): Likewise.
2169 (nbsd_nat_target::update_thread_list): Likewise.
2170 (post_attach::pid_to_str): Likewise.
2171
6ee448cc
TT
21722020-04-06 Tom Tromey <tromey@adacore.com>
2173
2174 * ada-valprint.c (print_variant_part): Extract the variant field.
2175 (print_field_values): Use the field as the outer value when
2176 recursing.
2177
dea34e8c
TT
21782020-04-06 Tom Tromey <tromey@adacore.com>
2179
2180 * sh-nbsd-tdep.c: Include nbsd-tdep.h.
2181 * ppc-nbsd-tdep.c: Include nbsd-tdep.h.
2182 * mips-nbsd-tdep.c (mipsnbsd_init_abi): Add missing ";".
2183 * arm-nbsd-tdep.c: Include nbsd-tdep.h.
2184 * hppa-nbsd-tdep.c: Include nbsd-tdep.h.
2185
93689ce9
TT
21862020-04-06 Tom Tromey <tromey@adacore.com>
2187
2188 * dwarf2/read.c (read_base_type) <DW_ATE_complex_float>: Handle
2189 TYPE_CODE_ERROR.
2190
79743962
KR
21912020-04-06 Kamil Rytarowski <n54@gmx.com>
2192
2193 * nbsd-tdep.c: Include "gdbarch.h".
2194 Define enum with NetBSD signal numbers.
2195 (nbsd_gdb_signal_from_target, nbsd_gdb_signal_to_target): New.
2196 * alpha-nbsd-tdep.c (alphanbsd_init_abi): Call nbsd_init_abi().
2197 * amd64-nbsd-tdep.c (amd64nbsd_init_abi): Likewise.
2198 * arm-nbsd-tdep.c (arm_netbsd_elf_init_abi): Likewise.
2199 * hppa-nbsd-tdep.c (hppanbsd_init_abi): Likewise.
2200 * i386-nbsd-tdep.c (i386nbsd_init_abi): Likewise.
2201 * mips-nbsd-tdep.c (nbsd_init_abi): Likewise.
2202 * ppc-nbsd-tdep.c (ppcnbsd_init_abi): Likewise.
2203 * sh-nbsd-tdep.c (shnbsd_init_abi): Likewise.
2204 * sparc-nbsd-tdep.c (sparc32nbsd_init_abi): Likewise.
2205 * sparc64-nbsd-tdep.c (sparc64nbsd_init_abi): Likewise.
2206 * vax-nbsd-tdep.c (vaxnbsd_elf_init_abi): Likewise.
2207
9e7c9a03
HD
22082020-04-03 Hannes Domani <ssbssa@yahoo.de>
2209
2210 PR gdb/25325
2211 * dwarf2/read.c (read_enumeration_type): Fix typed enum attributes.
2212
d9e49b61
TT
22132020-04-03 Tom Tromey <tromey@adacore.com>
2214
2215 * dwarf2/loc.c (disassemble_dwarf_expression) <DW_OP_const_type>:
2216 Read constant block.
2217
e0fc5c3f
SM
22182020-04-02 Simon Marchi <simon.marchi@polymtl.ca>
2219
2220 * gdb_bfd.h: Include gdbsupport/byte-vector.h.
2221 (gdb_bfd_get_full_section_contents): New declaration.
2222 * gdb_bfd.c (gdb_bfd_get_full_section_contents): New function.
2223 * windows-tdep.c (is_linked_with_cygwin_dll): Use
2224 gdb_bfd_get_full_section_contents.
2225
e2ff18a0
SM
22262020-04-02 Simon Marchi <simon.marchi@polymtl.ca>
2227
2228 * exec.c (build_section_table): Replace internal_error with
2229 gdb_assert.
2230 (section_table_xfer_memory_partial): Likewise.
2231 * mdebugread.c (parse_partial_symbols): Likewise.
2232 * psymtab.c (lookup_partial_symbol): Likewise.
2233 * utils.c (wrap_here): Likewise.
2234
0830d301
TT
22352020-04-02 Tom Tromey <tromey@adacore.com>
2236
2237 * f-lang.c (build_fortran_types): Use arch_type to initialize
2238 builtin_complex_s32 in the TYPE_CODE_ERROR case.
2239
e7da7f8f
TT
22402020-04-02 Tom Tromey <tromey@adacore.com>
2241
2242 * dwarf2/read.c (partial_die_info::read): Do not create a vector
2243 of attributes.
2244
c90d28ac
AB
22452020-04-02 Andrew Burgess <andrew.burgess@embecosm.com>
2246 Bernd Edlinger <bernd.edlinger@hotmail.de>
2247 Tom Tromey <tromey@adacore.com>
2248
2249 * buildsym.c (buildsym_compunit::record_line): Remove
2250 deduplication code.
2251
1aa98955
TV
22522020-04-02 Tom de Vries <tdevries@suse.de>
2253
2254 PR ada/24671
2255 * dwarf2/read.c (dw2_map_matching_symbols): Handle -readnow.
2256
d3214198
TV
22572020-04-02 Tom de Vries <tdevries@suse.de>
2258
2259 * dwarf2/read.c (dwarf2_gdb_index_functions,
2260 dwarf2_debug_names_functions): Init lookup_global_symbol_language with
2261 NULL.
2262 * psymtab.c (psym_lookup_global_symbol_language): New function.
2263 (psym_functions): Init psym_lookup_global_symbol_language with
2264 psym_lookup_global_symbol_language.
2265 * symfile-debug.c (debug_sym_quick_functions): Init
2266 lookup_global_symbol_language with NULL.
2267 * symfile.c (set_initial_language): Remove fixme comment.
2268 * symfile.h (struct quick_symbol_functions): Add
2269 lookup_global_symbol_language.
2270 * symtab.c (find_quick_global_symbol_language): New function.
2271 (find_main_name): Use find_quick_global_symbol_language.
2272
2836752f
SM
22732020-04-01 Simon Marchi <simon.marchi@polymtl.ca>
2274
2275 * windows-tdep.c (is_linked_with_cygwin_dll): Fix style.
2276
64dc2d4b
BE
22772020-04-01 Bernd Edlinger <bernd.edlinger@hotmail.de>
2278
2279 * buildsym.c (record_line): Fix undefined behavior and preserve
2280 lines at eof.
2281
bbe3dc41
BE
22822020-04-01 Bernd Edlinger <bernd.edlinger@hotmail.de>
2283
2284 * buildsym.c (record_line): Fix the resizing condition.
2285
6b4a335b
TT
22862020-04-01 Tom Tromey <tom@tromey.com>
2287
2288 * value.h (value_literal_complex): Add comment.
2289 * valops.c (value_literal_complex): Refer to value.h.
2290
3638a098
TT
22912020-04-01 Tom Tromey <tom@tromey.com>
2292
2293 * c-exp.y (FLOAT_KEYWORD, COMPLEX): New tokens.
2294 (scalar_type): New rule, from typebase.
2295 (typebase): Use scalar_type. Recognize complex types.
2296 (field_name): Handle FLOAT_KEYWORD.
2297 (ident_tokens): Add _Complex and __complex__.
2298
c34e8714
TT
22992020-04-01 Tom Tromey <tom@tromey.com>
2300
2301 PR exp/25299:
2302 * valarith.c (promotion_type, complex_binop): New functions.
2303 (scalar_binop): Handle complex numbers. Use promotion_type.
2304 (value_pos, value_neg, value_complement): Handle complex numbers.
2305
fa649bb7
TT
23062020-04-01 Tom Tromey <tom@tromey.com>
2307
2308 * c-exp.y (COMPLEX_INT, COMPLEX_FLOAT): New tokens.
2309 (exp) <COMPLEX_INT, COMPLEX_FLOAT>: New rules.
2310 (parse_number): Handle complex numbers.
2311
981c08ce
TT
23122020-04-01 Tom Tromey <tom@tromey.com>
2313
2314 * c-valprint.c (c_decorations): Change complex suffix to "i".
2315
4c99290d
TT
23162020-04-01 Tom Tromey <tom@tromey.com>
2317
2318 * valprint.c (generic_value_print_complex): Use accessors.
2319 * value.h (value_real_part, value_imaginary_part): Declare.
2320 * valops.c (value_real_part, value_imaginary_part): New
2321 functions.
2322 * value.c (creal_internal_fn, cimag_internal_fn): Use accessors.
2323
5b930b45
TT
23242020-04-01 Tom Tromey <tom@tromey.com>
2325
2326 * stabsread.c (rs6000_builtin_type, read_sun_floating_type)
2327 (read_range_type): Update.
2328 * mdebugread.c (basic_type): Update.
2329 * go-lang.c (build_go_types): Use init_complex_type.
2330 * gdbtypes.h (struct main_type) <complex_type>: New member.
2331 (init_complex_type): Update.
2332 (arch_complex_type): Don't declare.
2333 * gdbtypes.c (init_complex_type): Remove "objfile" parameter.
2334 Make name if none given. Use alloc_type_copy. Look for cached
2335 complex type.
2336 (arch_complex_type): Remove.
2337 (gdbtypes_post_init): Use init_complex_type.
2338 * f-lang.c (build_fortran_types): Use init_complex_type.
2339 * dwarf2/read.c (read_base_type): Update.
2340 * d-lang.c (build_d_types): Use init_complex_type.
2341 * ctfread.c (read_base_type): Update.
2342
53cccef1
TBA
23432020-04-01 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
2344
2345 * infrun.c (stop_all_threads): Update assertion, plus when
2346 stopping threads, take into account that we might be trying
2347 to stop an all-stop target.
2348 (stop_waiting): Call 'stop_all_threads' if there exists a
2349 non-stop target.
2350
a0714d30
TBA
23512020-04-01 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
2352
2353 * target.h (exists_non_stop_target): New function declaration.
2354 * target.c (exists_non_stop_target): New function.
2355
60e22c1e
HD
23562020-04-01 Hannes Domani <ssbssa@yahoo.de>
2357
2358 PR gdb/24789
2359 * eval.c (is_integral_or_integral_reference): New function.
2360 (evaluate_subexp_standard): Allow integer references in
2361 pointer arithmetic.
2362
e139a727
TBA
23632020-04-01 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
2364
2365 * remote.c (remote_target::remote_parse_stop_reply): Remove the
2366 check for no ptid in the stop reply when the target is non-stop.
2367
e0802d59
TT
23682020-04-01 Tom Tromey <tromey@adacore.com>
2369
2370 * symtab.h (class lookup_name_info) <lookup_name_info>: Change
2371 "name" parameter to rvalue reference. Initialize m_name_holder.
2372 <lookup_name_info>: New overloads.
2373 <name>: Return gdb::string_view.
2374 <c_str>: New method.
2375 <make_ignore_params>: Update.
2376 <search_name_hash>: Update.
2377 <language_lookup_name>: Return const char *.
2378 <m_name>: Change type.
2379 * symtab.c (demangle_for_lookup_info::demangle_for_lookup_info)
2380 (demangle_for_lookup_info::demangle_for_lookup_info): Update.
2381 (lookup_name_info::match_any): Update.
2382 * psymtab.c (match_partial_symbol, lookup_partial_symbol):
2383 Update.
2384 * minsyms.c (linkage_name_str): Update.
2385 * language.c (default_symbol_name_matcher): Update.
2386 * dwarf2/read.c (mapped_index_base::find_name_components_bounds):
2387 Update.
2388 * ada-lang.c (ada_fold_name): Change parameter to string_view.
2389 (ada_lookup_name_info::ada_lookup_name_info): Update.
2390 (literal_symbol_name_matcher): Update.
2391
8c072cb6
TT
23922020-04-01 Tom Tromey <tromey@adacore.com>
2393
2394 * psymtab.c (psymtab_search_name): Remove function.
2395 (psym_lookup_symbol): Create search name and lookup name here.
2396 (lookup_partial_symbol): Remove "name" parameter; add
2397 lookup_name.
2398 (psym_expand_symtabs_for_function): Update.
2399
6f29a534
TT
24002020-03-31 Joel Jones <joelkevinjones@gmail.com>
2401
2402 PR tui/25597:
2403 * python/py-tui.c: Include gdb_curses.h inside of #ifdef TUI.
2404
af62665e
TT
24052020-03-31 Tom Tromey <tromey@adacore.com>
2406
2407 * dwarf2/abbrev.c (abbrev_table::read): Conditionally call
2408 memcpy.
2409
d1a89da5
NC
24102020-03-30 Nelson Chu <nelson.chu@sifive.com>
2411
2412 * features/riscv/32bit-csr.xml: Regenerated.
2413 * features/riscv/64bit-csr.xml: Regenerated.
2414
d8af9068
TT
24152020-03-30 Tom Tromey <tromey@adacore.com>
2416
2417 * ada-valprint.c (print_variant_part): Update.
2418 * ada-lang.h (ada_which_variant_applies): Update.
2419 * ada-lang.c (ada_which_variant_applies): Remove outer_type and
2420 outer_valaddr parameters; replace with "outer" value parameter.
2421 (to_fixed_variant_branch_type): Update.
2422
227c0bf4
PFC
24232020-03-30 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
2424
2425 * ppc-linux-nat.c: Include <algorithm>, <unordered_map>, and
2426 <list>. Remove inclusion of observable.h.
2427 (PPC_DEBUG_CURRENT_VERSION): Move up define.
2428 (struct arch_lwp_info): New struct.
2429 (class ppc_linux_dreg_interface): New class.
2430 (struct ppc_linux_process_info): New struct.
2431 (struct ppc_linux_nat_target) <low_delete_thread, low_new_fork>
2432 <low_new_clone, low_forget_process, low_prepare_to_resume>
2433 <copy_thread_dreg_state, mark_thread_stale>
2434 <mark_debug_registers_changed, register_hw_breakpoint>
2435 <clear_hw_breakpoint, register_wp, clear_wp>
2436 <can_use_watchpoint_cond_accel, calculate_dvc, check_condition>
2437 <num_memory_accesses, get_trigger_type>
2438 <create_watchpoint_request, hwdebug_point_cmp>
2439 <init_arch_lwp_info, get_arch_lwp_info>
2440 <low_stopped_by_watchpoint, low_stopped_data_address>: Declare as
2441 methods.
2442 <struct ptid_hash>: New inner struct.
2443 <m_dreg_interface, m_process_info, m_installed_hw_bps>: Declare
2444 members.
2445 (saved_dabr_value, hwdebug_info, max_slots_number)
2446 (struct hw_break_tuple, struct thread_points, ppc_threads)
2447 (have_ptrace_hwdebug_interface)
2448 (hwdebug_find_thread_points_by_tid)
2449 (hwdebug_insert_point, hwdebug_remove_point): Remove.
2450 (ppc_linux_nat_target::can_use_hw_breakpoint): Use
2451 m_dreg_interface, remove call to PTRACE_SET_DEBUGREG.
2452 (ppc_linux_nat_target::region_ok_for_hw_watchpoint): Add comment,
2453 use m_dreg_interface.
2454 (hwdebug_point_cmp): Change to...
2455 (ppc_linux_nat_target::hwdebug_point_cmp): ...this method. Use
2456 reference arguments instead of pointers.
2457 (ppc_linux_nat_target::ranged_break_num_registers): Use
2458 m_dreg_interface.
2459 (ppc_linux_nat_target::insert_hw_breakpoint): Add comment, use
2460 m_dreg_interface. Call register_hw_breakpoint.
2461 (ppc_linux_nat_target::remove_hw_breakpoint): Add comment, use
2462 m_dreg_interface. Call clear_hw_breakpoint.
2463 (get_trigger_type): Change to...
2464 (ppc_linux_nat_target::get_trigger_type): ...this method. Add
2465 comment.
2466 (ppc_linux_nat_target::insert_mask_watchpoint): Update comment,
2467 use m_dreg_interface. Call register_hw_breakpoint.
2468 (ppc_linux_nat_target::remove_mask_watchpoint): Update comment,
2469 use m_dreg_interface. Call clear_hw_breakpoint.
2470 (can_use_watchpoint_cond_accel): Change to...
2471 (ppc_linux_nat_target::can_use_watchpoint_cond_accel): ...this
2472 method. Update comment, use m_dreg_interface and
2473 m_process_info.
2474 (calculate_dvc): Change to...
2475 (ppc_linux_nat_target::calculate_dvc): ...this method. Use
2476 m_dreg_interface.
2477 (num_memory_accesses): Change to...
2478 (ppc_linux_nat_target::num_memory_accesses): ...this method.
2479 (check_condition): Change to...
2480 (ppc_linux_nat_target::check_condition): ...this method.
2481 (ppc_linux_nat_target::can_accel_watchpoint_condition): Update
2482 comment, use m_dreg_interface.
2483 (create_watchpoint_request): Change to...
2484 (ppc_linux_nat_target::create_watchpoint_request): ...this
2485 method. Use m_dreg_interface.
2486 (ppc_linux_nat_target::insert_watchpoint): Add comment, use
2487 m_dreg_interface. Call register_hw_breakpoint or register_wp.
2488 (ppc_linux_nat_target::remove_watchpoint): Add comment, use
2489 m_dreg_interface. Call clear_hw_breakpoint or clear_wp.
2490 (ppc_linux_nat_target::low_forget_process)
2491 (ppc_linux_nat_target::low_new_fork)
2492 (ppc_linux_nat_target::low_new_clone)
2493 (ppc_linux_nat_target::low_delete_thread)
2494 (ppc_linux_nat_target::low_prepare_to_resume): New methods.
2495 (ppc_linux_nat_target::low_new_thread): Remove previous logic,
2496 only call mark_thread_stale.
2497 (ppc_linux_thread_exit): Remove.
2498 (ppc_linux_nat_target::stopped_data_address): Change to...
2499 (ppc_linux_nat_target::low_stopped_data_address): This. Add
2500 comment, use m_dreg_interface and m_thread_hw_breakpoints.
2501 (ppc_linux_nat_target::stopped_by_watchpoint): Change to...
2502 (ppc_linux_nat_target::stopped_by_watchpoint): This. Add
2503 comment. Call low_stopped_data_address.
2504 (ppc_linux_nat_target::watchpoint_addr_within_range): Use
2505 m_dreg_interface.
2506 (ppc_linux_nat_target::masked_watch_num_registers): Use
2507 m_dreg_interface.
2508 (ppc_linux_nat_target::copy_thread_dreg_state)
2509 (ppc_linux_nat_target::mark_thread_stale)
2510 (ppc_linux_nat_target::mark_debug_registers_changed)
2511 (ppc_linux_nat_target::register_hw_breakpoint)
2512 (ppc_linux_nat_target::clear_hw_breakpoint)
2513 (ppc_linux_nat_target::register_wp)
2514 (ppc_linux_nat_target::clear_wp)
2515 (ppc_linux_nat_target::init_arch_lwp_info)
2516 (ppc_linux_nat_target::get_arch_lwp_info): New methods.
2517 (_initialize_ppc_linux_nat): Remove observer callback.
2518
4db10d8f
PFC
25192020-03-30 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
2520
2521 * ppc-linux-nat.c (ppc_linux_nat_target::store_registers)
2522 (ppc_linux_nat_target::auxv_parse)
2523 (ppc_linux_nat_target::read_description)
2524 (supply_gregset, fill_gregset, supply_fpregset, fill_fpregset):
2525 Move up.
2526
1310c1b0
PFC
25272020-03-30 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
2528
2529 * linux-nat.h (low_new_clone): New method.
2530 * linux-nat.c (linux_handle_extended_wait): Call low_new_clone.
2531
69b037c3
SM
25322020-03-29 Simon Marchi <simon.marchi@polymtl.ca>
2533
2534 * dbxread.c (dbx_psymtab_to_symtab_1): Rename to...
2535 (dbx_expand_psymtab): ... this.
2536 (start_psymtab): Update.
2537 * mdebugread.c (psymtab_to_symtab_1): Rename to...
2538 (mdebug_expand_psymtab): ... this.
2539 (parse_partial_symbols): Update.
2540 (new_psymtab): Update.
2541 * xcoffread.c (xcoff_psymtab_to_symtab_1): Rename to...
2542 (xcoff_expand_psymtab): ... this.
2543 (xcoff_start_psymtab): Update.
2544
48993951
SM
25452020-03-29 Simon Marchi <simon.marchi@polymtl.ca>
2546
2547 * psympriv.h (partial_symtab) <read_dependencies>: Rename to...
2548 <expand_dependencies>: ... this.
2549 * psymtab.c (partial_symtab::read_dependencies): Rename to...
2550 (partial_symtab::expand_dependencies): ... this.
2551 * dwarf2/read.c (dwarf2_include_psymtab) <expand_psymtab>:
2552 Update.
2553 (dwarf2_psymtab::expand_psymtab): Update.
2554 * dbxread.c (dbx_psymtab_to_symtab_1): Update.
2555 * mdebugread.c (psymtab_to_symtab_1): Update.
2556 * xcoffread.c (xcoff_psymtab_to_symtab_1): Update.
2557
3ad83046
SM
25582020-03-29 Simon Marchi <simon.marchi@polymtl.ca>
2559
2560 * psympriv.h (discard_psymtab): Remove.
2561 * dbxread.c (dbx_end_psymtab): Update.
2562 * xcoffread.c (xcoff_end_psymtab): Update.
2563
4d1b9ab6
TT
25642020-03-28 Tom Tromey <tom@tromey.com>
2565
2566 * dwarf2/attribute.h (struct attribute) <form_is_constant>: Update
2567 comment.
2568
f1749218
TT
25692020-03-28 Tom Tromey <tom@tromey.com>
2570
2571 * dwarf2/read.c (read_attribute_reprocess): Fix formatting.
2572
ebea7626
HD
25732020-03-27 Hannes Domani <ssbssa@yahoo.de>
2574
2575 * windows-nat.c (windows_add_all_dlls): Fix system dll paths.
2576
a879b4d5
JB
25772020-03-26 John Baldwin <jhb@FreeBSD.org>
2578
2579 * fbsd-tdep.c (fbsd_print_auxv_entry): Handle AT_FREEBSD_BSDFLAGS.
2580
0826b30a
TT
25812020-03-26 Tom Tromey <tom@tromey.com>
2582
2583 * dwarf2/read.c (handle_data_member_location, dwarf2_add_field)
2584 (mark_common_block_symbol_computed, read_tag_string_type)
2585 (attr_to_dynamic_prop, read_subrange_type): Update.
2586 (dwarf2_get_ref_die_offset, dwarf2_get_attr_constant_value): Move
2587 to be methods on struct attribute.
2588 (skip_one_die, process_imported_unit_die, read_namespace_alias)
2589 (read_call_site_scope, partial_die_info::read)
2590 (partial_die_info::read, lookup_die_type, follow_die_ref):
2591 Update.
2592 * dwarf2/attribute.c (attribute::get_ref_die_offset): New method,
2593 from dwarf2_get_ref_die_offset.
2594 (attribute::constant_value): New method, from
2595 dwarf2_get_attr_constant_value.
2596 * dwarf2/attribute.h (struct attribute) <get_ref_die_offset>:
2597 Declare method.
2598 <constant_value>: New method.
2599
2b2558bf
TT
26002020-03-26 Tom Tromey <tom@tromey.com>
2601
2602 * dwarf2/read.c (dwarf_unit_type_name, dwarf_tag_name)
2603 (dwarf_attr_name, dwarf_form_name, dwarf_bool_name)
2604 (dwarf_type_encoding_name): Move to stringify.c.
2605 * Makefile.in (COMMON_SFILES): Add dwarf2/stringify.c.
2606 * dwarf2/stringify.c: New file.
2607 * dwarf2/stringify.h: New file.
2608
eeb64781
TT
26092020-03-26 Tom Tromey <tom@tromey.com>
2610
2611 * dwarf2/die.h (struct die_info) <addr_base, ranges_base>:
2612 Rewrite.
2613
a39fdb41
TT
26142020-03-26 Tom Tromey <tom@tromey.com>
2615
2616 * dwarf2/die.h (struct die_info) <addr_base, ranges_base>: New
2617 methods.
2618 * dwarf2/read.c (lookup_addr_base): Move to die.h.
2619 (lookup_ranges_base): Likewise.
2620 (read_cutu_die_from_dwo, read_full_die_1): Update.
2621
436c571c
TT
26222020-03-26 Tom Tromey <tom@tromey.com>
2623
2624 * dwarf2/read.c (read_import_statement, read_file_scope)
2625 (read_type_unit_scope, inherit_abstract_dies, read_func_scope)
2626 (read_lexical_block_scope, read_call_site_scope)
2627 (dwarf2_get_subprogram_pc_bounds, get_scope_pc_bounds)
2628 (handle_struct_member_die, process_structure_scope)
2629 (update_enumeration_type_from_children)
2630 (process_enumeration_scope, read_array_type, read_common_block)
2631 (read_namespace, read_module, read_subroutine_type): Update.
2632 (sibling_die): Remove.
2633
052c8bb8
TT
26342020-03-26 Tom Tromey <tom@tromey.com>
2635
2636 * dwarf2/read.c (lookup_addr_base, lookup_ranges_base)
2637 (build_type_psymtabs_reader, read_structure_type)
2638 (read_enumeration_type, read_full_die_1): Update.
2639 (dwarf2_attr_no_follow): Move to die.h.
2640 * dwarf2/die.h (struct die_info) <attr>: New method.
2641
2b24b6e4
TT
26422020-03-26 Tom Tromey <tom@tromey.com>
2643
2644 * dwarf2/read.c (struct dwarf2_cu) <base_known>: Remove.
2645 <base_address>: Now an optional.
2646 (dwarf2_find_base_address, dwarf2_rnglists_process)
2647 (dwarf2_ranges_process, fill_in_loclist_baton)
2648 (dwarf2_symbol_mark_computed): Update.
2649
c2d50fd0
TT
26502020-03-26 Tom Tromey <tom@tromey.com>
2651
2652 * dwarf2/read.c (struct die_info): Move to die.h.
2653 * dwarf2/die.h: New file.
2654
0df7ad3a
TT
26552020-03-26 Tom Tromey <tom@tromey.com>
2656
2657 * dwarf2/line-header.h (dwarf_decode_line_header): Declare.
2658 * dwarf2/read.c
2659 (dwarf2_statement_list_fits_in_line_number_section_complaint):
2660 Move to line-header.c.
2661 (read_checked_initial_length_and_offset, read_formatted_entries):
2662 Likewise.
2663 (dwarf_decode_line_header): Split into two.
2664 * dwarf2/line-header.c
2665 (dwarf2_statement_list_fits_in_line_number_section_complaint):
2666 Move from read.c.
2667 (read_checked_initial_length_and_offset, read_formatted_entries):
2668 Likewise.
2669 (dwarf_decode_line_header): New function, split from read.c.
2670
86c0bb4c
TT
26712020-03-26 Tom Tromey <tom@tromey.com>
2672
2673 * dwarf2/read.h (struct dwarf2_per_objfile) <read_line_string>:
2674 Declare method.
2675 * dwarf2/read.c (read_attribute_value): Update.
2676 (dwarf2_per_objfile::read_line_string): Rename from
2677 read_indirect_line_string.
2678 (read_formatted_entries): Update.
2679
2ef46c2f
TT
26802020-03-26 Tom Tromey <tom@tromey.com>
2681
2682 * dwarf2/macro.c (dwarf_decode_macro_bytes): Use objfile local
2683 variable.
2684
4f9c1eda
TT
26852020-03-26 Tom Tromey <tom@tromey.com>
2686
2687 * dwarf2/macro.h (dwarf_decode_macros): Make section parameter
2688 const.
2689 * dwarf2/macro.c (skip_form_bytes, skip_unknown_opcode)
2690 (dwarf_decode_macro_bytes, dwarf_decode_macros): Make section
2691 parameter const.
2692
5a0e026f
TT
26932020-03-26 Tom Tromey <tom@tromey.com>
2694
2695 * dwarf2/read.c (dwarf_decode_macros): Make "lh" const.
2696 * dwarf2/macro.h (dwarf_decode_macros): Constify "lh" parameter.
2697 * dwarf2/macro.c (macro_start_file): Constify "lh" parameter.
2698 (dwarf_decode_macro_bytes, dwarf_decode_macros): Likewise.
2699
8844c11b
TT
27002020-03-26 Tom Tromey <tom@tromey.com>
2701
2702 * dwarf2/line-header.h (struct line_header) <is_valid_file_index,
2703 file_names_size, file_full_name, file_file_name>: Use const.
2704 <file_name_at, file_names>: Add const overload.
2705 * dwarf2/line-header.c (line_header::file_file_name)
2706 (line_header::file_full_name): Update.
2707
c90ec28a
TT
27082020-03-26 Tom Tromey <tom@tromey.com>
2709
2710 * dwarf2/read.c (dwarf2_macro_malformed_definition_complaint)
2711 (macro_start_file, consume_improper_spaces)
2712 (parse_macro_definition, skip_form_bytes, skip_unknown_opcode)
2713 (dwarf_parse_macro_header, dwarf_decode_macro_bytes)
2714 (dwarf_decode_macros): Move to macro.c.
2715 * dwarf2/macro.c: New file.
2716 * dwarf2/macro.h: New file.
2717 * Makefile.in (COMMON_SFILES): Add dwarf2/macro.c.
2718
4f44ae6c
TT
27192020-03-26 Tom Tromey <tom@tromey.com>
2720
2721 * dwarf2/section.h (struct dwarf2_section_info) <read_string>: New
2722 method.
2723 * dwarf2/section.c: New method. From
2724 read_indirect_string_at_offset_from.
2725 * dwarf2/read.c (mapped_debug_names::namei_to_name): Update.
2726 (read_indirect_string_at_offset_from): Move to section.c.
2727 (read_indirect_string_at_offset): Rewrite.
2728 (read_indirect_line_string_at_offset): Remove.
2729 (read_indirect_string, read_indirect_line_string)
2730 (dwarf_decode_macro_bytes): Update.
2731
a0194fa8
TT
27322020-03-26 Tom Tromey <tom@tromey.com>
2733
2734 * dwarf2/section.h (struct dwarf2_section_info)
2735 <overload_complaint>: Declare.
2736 (dwarf2_section_buffer_overflow_complaint): Don't declare.
2737 * dwarf2/section.c (dwarf2_section_info::overflow_complaint):
2738 Rename from dwarf2_section_buffer_overflow_complaint.
2739 * dwarf2/read.c (skip_one_die, partial_die_info::read)
2740 (skip_form_bytes, dwarf_decode_macro_bytes): Update.
2741
3d27bbdb
TT
27422020-03-26 Tom Tromey <tom@tromey.com>
2743
2744 * dwarf2/section.h (dwarf2_section_buffer_overflow_complaint):
2745 Declare.
2746 * dwarf2/section.c (dwarf2_section_buffer_overflow_complaint):
2747 Move from read.c.
2748 * dwarf2/read.c (dwarf2_section_buffer_overflow_complaint): Move
2749 to section.c.
2750
9eac9650
TT
27512020-03-26 Tom Tromey <tom@tromey.com>
2752
2753 * dwarf2/read.c (dwarf_decode_macros): Split into two overloads.
2754
bf80d710
TT
27552020-03-26 Tom Tromey <tom@tromey.com>
2756
2757 * dwarf2/read.c (macro_start_file): Change "cu" parameter to
2758 "builder".
2759 (dwarf_decode_macro_bytes): Likewise. Add dwarf2_per_objfile
2760 parameter.
2761 (dwarf_decode_macros): Update.
2762
0314b390
TT
27632020-03-26 Tom Tromey <tom@tromey.com>
2764
2765 * dwarf2/read.c (read_attribute_value): Update.
2766 (read_indirect_string_from_dwz): Move to dwz.c; change into
2767 method.
2768 (dwarf_decode_macro_bytes): Update.
2769 * dwarf2/dwz.h (struct dwz_file) <read_string>: Declare method.
2770 * dwarf2/dwz.c: New file.
2771 * Makefile.in (COMMON_SFILES): Add dwz.c.
2772
9fda78b6
TT
27732020-03-26 Tom Tromey <tom@tromey.com>
2774
2775 * dwarf2/read.h (struct dwz_file): Move to dwz.h.
2776 * dwarf2/read.c: Add include.
2777 * dwarf2/index-write.c: Add include.
2778 * dwarf2/index-cache.c: Add include.
2779 * dwarf2/dwz.h: New file.
2780
33aa3c10
TT
27812020-03-25 Tom Tromey <tom@tromey.com>
2782
2783 * compile/compile-object-load.c (get_out_value_type): Mention
2784 correct symbol name in error message.
2785
d503b685
HD
27862020-03-25 Hannes Domani <ssbssa@yahoo.de>
2787
2788 * windows-nat.c (windows_add_all_dlls): Fix system dll paths.
2789
7b1eff95
TV
27902020-03-25 Tom de Vries <tdevries@suse.de>
2791
2792 * symtab.h (is_main_symtab_of_compunit_symtab): New function.
2793 * symmisc.c (dump_symtab_1): Print user and includes fields.
2794 (maintenance_info_symtabs): Same.
2795
dd895392
AB
27962020-03-25 Andrew Burgess <andrew.burgess@embecosm.com>
2797
2798 PR gdb/25534
2799 * riscv-tdep.c (riscv_arg_info::c_offset): Update comment.
2800 (riscv_regcache_cooked_write): New function.
2801 (riscv_push_dummy_call): Use new function.
2802 (riscv_return_value): Likewise.
2803
5ab2fbf1
SM
28042020-03-24 Simon Marchi <simon.marchi@polymtl.ca>
2805
2806 * fbsd-nat.c (fbsd_nat_target::follow_fork): Change bool to int.
2807 * fbsd-nat.h (class fbsd_nat_target) <follow_fork>: Likewise.
2808 * inf-ptrace.c (inf_ptrace_target::follow_fork): Likewise.
2809 * inf-ptrace.h (struct inf_ptrace_target) <follow_fork>: Likewise.
2810 * infrun.c (follow_fork): Likewise.
2811 (follow_fork_inferior): Likewise.
2812 * linux-nat.c (linux_nat_target::follow_fork): Likewise.
2813 * linux-nat.h (class linux_nat_target): Likewise.
2814 * remote.c (class remote_target) <follow_fork>: Likewise.
2815 (remote_target::follow_fork): Likewise.
2816 * target-delegates.c: Re-generate.
2817 * target.c (default_follow_fork): Likewise.
2818 (target_follow_fork): Likewise.
2819 * target.h (struct target_ops) <follow_fork>: Likewise.
2820 (target_follow_fork): Likewise.
2821
a64fafb5
TV
28222020-03-24 Tom de Vries <tdevries@suse.de>
2823
2824 * psymtab.c (maintenance_info_psymtabs): Print user field.
2825
fe26d3a3
TT
28262020-03-20 Tom Tromey <tromey@adacore.com>
2827
2828 * dwarf2/loc.h (dwarf2_evaluate_property): Make "addr_stack"
2829 const.
2830 * dwarf2/loc.c (dwarf2_evaluate_property): Make "addr_stack"
2831 const.
2832
c884cc46
SM
28332020-03-20 Simon Marchi <simon.marchi@efficios.com>
2834
2835 * ptrace.m4: Don't check for ptrace declaration.
2836 * config.in: Re-generate.
2837 * configure: Re-generate.
2838 * nat/gdb_ptrace.h: Don't declare ptrace if HAVE_DECL_PTRACE is
2839 not defined.
2840
1ff700c2
KR
28412020-03-20 Kamil Rytarowski <n54@gmx.com>
2842
2843 * amd64-bsd-nat.c (gdb_ptrace): Change return type from `int' to
2844 `PTRACE_TYPE_RET'.
2845 * i386-bsd-nat.c (gdb_ptrace): Likewise.
2846 * sparc-nat.c (gdb_ptrace): Likewise.
2847 * x86-bsd-nat.c (gdb_ptrace): Likewise.
2848
f7d4f0b1
TT
28492020-03-20 Tom Tromey <tromey@adacore.com>
2850
2851 * c-exp.y (lex_one_token): Fix assert.
2852
f67210ff
TT
28532020-03-20 Tom Tromey <tromey@adacore.com>
2854
2855 * ada-tasks.c (read_atcb): Use smaller length in strncpy call.
2856 * linux-tdep.c (linux_fill_prpsinfo): Use smaller length in
2857 strncpy call.
2858
1773be9e
TT
28592020-03-20 Tom Tromey <tromey@adacore.com>
2860
2861 * symmisc.c (maintenance_print_one_line_table): Use ui_out.
2862
70304be9
TT
28632020-03-20 Tom Tromey <tromey@adacore.com>
2864
2865 * ada-valprint.c (print_variant_part): Remove parameters; switch
2866 to value-based API.
2867 (print_field_values): Likewise.
2868 (ada_val_print_struct_union): Likewise.
2869 (ada_value_print_1): Update.
2870
9faa006d
KR
28712020-03-20 Kamil Rytarowski <n54@gmx.com>
2872
2873 * ppc-nbsd-nat.c (ppc_nbsd_nat_target): Inherit from
2874 nbsd_nat_target instead of inf_ptrace_target.
2875 * ppc-nbsd-nat.c: Include "nbsd-nat.h", as we are now using
2876 nbsd_nat_target.
2877
4a90f062
KR
28782020-03-20 Kamil Rytarowski <n54@gmx.com>
2879
2880 * hppa-nbsd-nat.c (fetch_registers): New variable lwp and pass
2881 it to the ptrace call.
2882 * (store_registers): Likewise.
2883
28842020-03-20 Kamil Rytarowski <n54@gmx.com>
c7da12c7
KR
2885
2886 * ppc-nbsd-nat.c (fetch_registers): New variable lwp and pass
2887 it to the ptrace call.
2888 * (store_registers): Likewise.
2889
2d07da27
LM
28902020-03-19 Luis Machado <luis.machado@linaro.org>
2891
2892 * nat/aarch64-sve-linux-ptrace.c (aarch64_sve_set_vq): If vg is not
2893 valid, fetch vg value from ptrace.
2894
f09db380
KR
28952020-03-19 Kamil Rytarowski <n54@gmx.com>
2896 * inf-ptrace.h: Disable get_ptrace_pid on NetBSD.
2897 * inf-ptrace.c: Likewise.
2898 * (gdb_ptrace): Add.
2899 * (inf_ptrace_target::resume): Update.
2900 * (inf_ptrace_target::xfer_partial): Likewise.
2901 * (inf_ptrace_peek_poke): Change argument `pid' to `ptid'.
2902 * (inf_ptrace_peek_poke): Update.
2903
fcc7376e
KR
29042020-03-19 Kamil Rytarowski <n54@gmx.com>
2905
2906 * x86-bsd-nat.c (gdb_ptrace): New.
2907 * (x86bsd_dr_set): Add new argument `ptid'.
2908 * (x86bsd_dr_get, x86bsd_dr_set, x86bsd_dr_set_control,
2909 x86bsd_dr_set_addr): Update.
2910
cada5fc9
AB
29112020-03-19 Andrew Burgess <andrew.burgess@embecosm.com>
2912
2913 * remote.c (remote_target::process_stop_reply): Handle events for
2914 all threads differently.
2915
19a2740f
AB
29162020-03-19 Andrew Burgess <andrew.burgess@embecosm.com>
2917
2918 * completer.c (completion_tracker::remove_completion): Define new
2919 function.
2920 * completer.h (completion_tracker::remove_completion): Declare new
2921 function.
2922 * symtab.c (completion_list_add_symbol): Remove aliasing msymbols
2923 when adding a C++ function symbol.
2924
724fd9ba
AB
29252020-03-19 Andrew Burgess <andrew.burgess@embecosm.com>
2926
2927 * completer.c (completion_tracker::completion_hash_entry): Define
2928 new class.
2929 (advance_to_filename_complete_word_point): Call
2930 recompute_lowest_common_denominator.
2931 (completion_tracker::completion_tracker): Call discard_completions
2932 to setup the hash table.
2933 (completion_tracker::discard_completions): Allow for being called
2934 from the constructor, pass new equal function, and element deleter
2935 when constructing the hash table. Initialise new class member
2936 variables.
2937 (completion_tracker::maybe_add_completion): Remove use of
2938 m_entries_vec, and store more information into m_entries_hash.
2939 (completion_tracker::recompute_lcd_visitor): New function, most
2940 content taken from...
2941 (completion_tracker::recompute_lowest_common_denominator):
2942 ...here, this now just visits each item in the hash calling the
2943 above visitor.
2944 (completion_tracker::build_completion_result): Remove use of
2945 m_entries_vec, call recompute_lowest_common_denominator.
2946 * completer.h (completion_tracker::have_completions): Remove use
2947 of m_entries_vec.
2948 (completion_tracker::completion_hash_entry): Declare new class.
2949 (completion_tracker::recompute_lowest_common_denominator): Change
2950 function signature.
2951 (completion_tracker::recompute_lcd_visitor): Declare new function.
2952 (completion_tracker::m_entries_vec): Delete.
2953 (completion_tracker::m_entries_hash): Initialize to NULL.
2954 (completion_tracker::m_lowest_common_denominator_valid): New
2955 member variable.
2956 (completion_tracker::m_lowest_common_denominator_max_length): New
2957 member variable.
2958
5a82b8a1
KR
29592020-03-17 Kamil Rytarowski <n54@gmx.com>
2960
2961 * regformats/regdef.h: Put reg in gdb namespace.
2962
fb516a69
KR
29632020-03-17 Kamil Rytarowski <n54@gmx.com>
2964
2965 * i386-bsd-nat.c (gdb_ptrace): New.
2966 * (i386bsd_fetch_inferior_registers,
2967 i386bsd_store_inferior_registers) Switch from pid_t to ptid_t.
2968 * (i386bsd_fetch_inferior_registers,
2969 i386bsd_store_inferior_registers) Use gdb_ptrace.
2970
1c0aa1fb
KR
29712020-03-17 Kamil Rytarowski <n54@gmx.com>
2972
2973 * amd64-bsd-nat.c (gdb_ptrace): New.
2974 * (amd64bsd_fetch_inferior_registers,
2975 amd64bsd_store_inferior_registers) Switch from pid_t to ptid_t.
2976 * (amd64bsd_fetch_inferior_registers,
2977 amd64bsd_store_inferior_registers) Use gdb_ptrace.
2978
5ccd2fb7
KR
29792020-03-17 Kamil Rytarowski <n54@gmx.com>
2980
2981 * user-regs.c (user_reg::read): Rename to...
2982 (user_reg::xread): ...this.
2983 * (append_user_reg): Rename argument `read' to `xread'.
2984 * (user_reg_add_builtin): Likewise.
2985 * (user_reg_add): Likewise.
2986 * (value_of_user_reg): Likewise.
2987
2108a63a
KR
29882020-03-17 Kamil Rytarowski <n54@gmx.com>
2989
2990 * sparc-nat.c (gdb_ptrace): New.
2991 * sparc-nat.c (sparc_fetch_inferior_registers)
2992 (sparc_store_inferior_registers) Remove obsolete comment.
2993 * sparc-nat.c (sparc_fetch_inferior_registers)
2994 (sparc_store_inferior_registers) Switch from pid_t to ptid_t.
2995 * sparc-nat.c (sparc_fetch_inferior_registers)
2996 (sparc_store_inferior_registers) Use gdb_ptrace.
2997
a225c9a8
KR
29982020-03-17 Kamil Rytarowski <n54@gmx.com>
2999
3000 * sh-nbsd-nat.c (fetch_registers): New variable lwp and pass
3001 it to the ptrace call.
3002 * sh-nbsd-nat.c (store_registers): Likewise.
3003
98097623
KR
30042020-03-17 Kamil Rytarowski <n54@gmx.com>
3005
3006 * sh-nbsd-nat.c (sh_nbsd_nat_target): Inherit from
3007 nbsd_nat_target instead of inf_ptrace_target.
3008 * sh-nbsd-nat.c: Include "nbsd-nat.h", as we are now using
3009 nbsd_nat_target.
3010
9e38d619
KR
30112020-03-17 Kamil Rytarowski <n54@gmx.com>
3012
3013 * amd64-bsd-nat.c: Include amd64-bsd-nat.h".
3014
a2ecbe9f
KR
30152020-03-17 Kamil Rytarowski <n54@gmx.com>
3016
3017 * nbsd-nat.c: Include <sys/types.h>, <sys/ptrace.h> and
3018 <sys/sysctl.h>.
3019 * nbsd-nat.c (nbsd_nat_target::pid_to_exec_file): Rewrite.
3020
58990295
TV
30212020-03-17 Tom de Vries <tdevries@suse.de>
3022
3023 PR gdb/23710
3024 * dwarf2/read.h (struct dwarf2_per_cu_data): Add unit_type and lang
3025 fields.
3026 * dwarf2/read.c (process_psymtab_comp_unit): Initialize unit_type and lang
3027 fields.
3028 (process_imported_unit_die): Skip import of c++ CUs.
3029
771dd3a8
TT
30302020-03-16 Tom Tromey <tom@tromey.com>
3031
3032 * p-valprint.c (pascal_object_print_value): Initialize
3033 base_value.
3034
817a7585
AK
30352020-03-16 Anton Kolesov <anton.kolesov@synopsys.com>
3036 Shahab Vahedi <shahab@synopsys.com>
3037
3038 * Makefile.in: Add arch/arc.o
3039 * configure.tgt: Likewise.
3040 * arc-tdep.c (arc_tdesc_init): Use arc_read_description.
3041 (_initialize_arc_tdep): Don't initialize old target descriptions.
aac66a4c 3042 (arc_read_description): New function to cache target descriptions.
817a7585
AK
3043 * arc-tdep.h (arc_read_description): Add proto type.
3044 * arch/arc.c: New file.
3045 * arch/arc.h: Likewise.
3046 * features/Makefile: Replace old target descriptions with new.
3047 * features/arc-arcompact.c: Remove.
3048 * features/arc-arcompact.xml: Likewise.
3049 * features/arc-v2.c: Likewise
3050 * features/arc-v2.xml: Likewise
3051 * features/arc/aux-arcompact.xml: New file.
3052 * features/arc/aux-v2.xml: Likewise.
3053 * features/arc/core-arcompact.xml: Likewise.
3054 * features/arc/core-v2.xml: Likewise.
3055 * features/arc/aux-arcompact.c: Generate.
3056 * features/arc/aux-v2.c: Likewise.
3057 * features/arc/core-arcompact.c: Likewise.
3058 * features/arc/core-v2.c: Likewise.
3059 * target-descriptions (maint_print_c_tdesc_cmd): Support ARC features.
3060
67430cd0
TT
30612020-03-16 Tom Tromey <tromey@adacore.com>
3062
3063 PR gdb/25663:
3064 * dwarf2/read.c (dwarf2_name): Strip leading namespaces after
3065 putting value into bcache.
3066
30efb6c7
SM
30672020-03-16 Simon Marchi <simon.marchi@efficios.com>
3068
3069 PR gdb/21500
3070 * amd64-windows-tdep.c (amd64_windows_init_abi): Rename
3071 to...
3072 (amd64_windows_init_abi_common): ... this. Don't set size of
3073 long type.
3074 (amd64_windows_init_abi): New function.
3075 (amd64_cygwin_init_abi): New function.
3076 (_initialize_amd64_windows_tdep): Use amd64_cygwin_init_abi for
3077 the Cygwin OS ABI.
3078 * i386-windows-tdep.c (_initialize_i386_windows_tdep): Clarify
3079 comment.
3080
8db52437
SM
30812020-03-16 Simon Marchi <simon.marchi@efficios.com>
3082
3083 * windows-tdep.h (is_linked_with_cygwin_dll): New declaration.
3084 * windows-tdep.c (CYGWIN_DLL_NAME): New.
3085 (pe_import_directory_entry): New struct type.
3086 (is_linked_with_cygwin_dll): New function.
3087 * amd64-windows-tdep.c (amd64_windows_osabi_sniffer): Select
3088 GDB_OSABI_CYGWIN if the BFD is linked with the Cygwin DLL.
3089 * i386-windows-tdep.c (i386_windows_osabi_sniffer): Likewise.
3090
5982a56a
SM
30912020-03-16 Simon Marchi <simon.marchi@efficios.com>
3092
3093 * i386-windows-tdep.c: Mass-rename "cygwin" to "windows", except
3094 i386_cygwin_core_osabi_sniffer.
3095
7a1998df
SM
30962020-03-16 Simon Marchi <simon.marchi@efficios.com>
3097
3098 * i386-cygwin-tdep.c: Rename to...
3099 * i386-windows-tdep.c: ... this.
3100 * Makefile.in (ALL_TARGET_OBS): Rename i386-cygwin-tdep.c to
3101 i386-windows-tdep.c.
3102 * configure.tgt: Likewise.
3103
053205cc
SM
31042020-03-16 Simon Marchi <simon.marchi@efficios.com>
3105
3106 * osabi.h (enum gdb_osabi): Add GDB_OSABI_WINDOWS.
3107 * osabi.c (gdb_osabi_names): Add "Windows".
3108 * i386-cygwin-tdep.c (i386_cygwin_osabi_sniffer): Return
3109 GDB_OSABI_WINDOWS when the binary's target is "pei-i386".
3110 (i386_cygwin_core_osabi_sniffer): New function, extracted from
3111 i386_cygwin_osabi_sniffer.
3112 (_initialize_i386_cygwin_tdep): Register OS ABI
3113 GDB_OSABI_WINDOWS for i386.
3114 * amd64-windows-tdep.c (amd64_windows_osabi_sniffer): Return
3115 GDB_OSABI_WINDOWS when the binary's target is "pei-x86-64".
3116 (_initialize_amd64_windows_tdep): Register OS ABI GDB_OSABI_WINDOWS
3117 for x86-64.
3118 * configure.tgt: Use GDB_OSABI_WINDOWS as the default OS ABI
3119 when the target matches '*-*-mingw*'.
3120
fe4b2ee6
SM
31212020-03-16 Simon Marchi <simon.marchi@efficios.com>
3122
3123 * defs.h (enum gdb_osabi): Move to...
3124 * osabi.h (enum gdb_osabi): ... here.
3125 * gdbarch.sh: Include osabi.h in gdbarch.h.
3126 * gdbarch.h: Re-generate.
3127
cb9b645d
SM
31282020-03-16 Simon Marchi <simon.marchi@efficios.com>
3129
3130 * amd64-windows-tdep.c (amd64_windows_osabi_sniffer): New
3131 function.
3132 (_initialize_amd64_windows_tdep): Register osabi sniffer.
3133
3293bbaf
TT
31342020-03-14 Tom Tromey <tom@tromey.com>
3135
3136 * c-typeprint.c (cp_type_print_method_args): Print "__restrict__"
3137 for C++.
3138 (c_type_print_modifier): Likewise. Add "language" parameter.
3139 (c_type_print_varspec_prefix, c_type_print_base_struct_union)
3140 (c_type_print_base_1): Update.
3141 * type-stack.h (enum type_pieces) <tp_atomic, tp_restrict>: New
3142 constants.
3143 * type-stack.c (type_stack::insert): Handle tp_atomic and
3144 tp_restrict.
3145 (type_stack::follow_type_instance_flags): Likewise.
3146 (type_stack::follow_types): Likewise. Merge type-following code.
3147 * c-exp.y (RESTRICT, ATOMIC): New tokens.
3148 (space_identifier, cv_with_space_id)
3149 (const_or_volatile_or_space_identifier_noopt)
3150 (const_or_volatile_or_space_identifier): Remove.
3151 (single_qualifier, qualifier_seq_noopt, qualifier_seq): New
3152 rules.
3153 (ptr_operator, typebase): Update.
3154 (enum token_flag) <FLAG_C>: New constant.
3155 (ident_tokens): Add "restrict", "__restrict__", "__restrict", and
3156 "_Atomic".
3157 (lex_one_token): Handle FLAG_C.
3158
154151a6
KR
31592020-03-14 Kamil Rytarowski <n54@gmx.com>
3160
3161 * m68k-bsd-nat.c (fetch_registers): New variable lwp and pass
3162 it to the ptrace call.
3163 * m68k-bsd-nat.c (store_registers): Likewise.
3164
bc107784
KR
31652020-03-14 Kamil Rytarowski <n54@gmx.com>
3166
3167 * m68k-bsd-nat.c (m68kbsd_supply_gregset): Change type of regs to
3168 gdb_byte *.
3169 * m68k-bsd-nat.c (m68kbsd_supply_fpregset): Likewise.
3170 * m68k-bsd-nat.c (m68kbsd_collect_gregset): Likewise.
3171 * m68k-bsd-nat.c (m68kbsd_supply_pcb): Cast &tmp to gdb_byte *.
3172
01a80117
KR
31732020-03-14 Kamil Rytarowski <n54@gmx.com>
3174
3175 * m68k-bsd-nat.c (m68k_bsd_nat_target): Inherit from
3176 nbsd_nat_target instead of inf_ptrace_target.
3177 * m68k-bsd-nat.c: Include "nbsd-nat.h", as we are now using
3178 nbsd_nat_target.
3179
f90280ca
KR
31802020-03-14 Kamil Rytarowski <n54@gmx.com>
3181
3182 * m68k-bsd-nat.c: Define _KERNTYPES to get the declaration of
3183 register_t.
3184
6def66f1
KR
31852020-03-14 Kamil Rytarowski <n54@gmx.com>
3186
3187 * alpha-bsd-nat.c (fetch_registers): New variable lwp and pass
3188 it to the ptrace call.
3189 * alpha-bsd-nat.c (store_registers): Likewise.
3190
66eaca97
KR
31912020-03-14 Kamil Rytarowski <n54@gmx.com>
3192
3193 * alpha-bsd-nat.c: Remove <sys/procfs.h> and "gregset.h" from
3194 includes.
3195 * alpha-bsd-nat.c (gregset_t, fpregset_t): Remove.
3196 * alpha-bsd-nat.c (supply_gregset, fill_gregset, supply_fpregset,
3197 fill_fpregset): Likewise.
3198
4fed520b
KR
31992020-03-14 Kamil Rytarowski <n54@gmx.com>
3200
3201 * alpha-bsd-nat.c (alpha_netbsd_nat_target): Inherit from
3202 nbsd_nat_target instead of inf_ptrace_target.
3203 * alpha-bsd-nat.c: Include "nbsd-nat.h", as we are now using
3204 nbsd_nat_target.
3205
2190cf06
KR
32062020-03-14 Kamil Rytarowski <n54@gmx.com>
3207
3208 * alpha-bsd-nat.c: Define _KERNTYPES to get the declaration of
3209 register_t.
3210
75c56d3d
KR
32112020-03-14 Kamil Rytarowski <n54@gmx.com>
3212
3213 * arm-nbsd-nat.c (fetch_register): New variable lwp and pass
3214 it to the ptrace call.
3215 * arm-nbsd-nat.c (fetch_fp_register): Likewise.
3216 * arm-nbsd-nat.c (fetch_fp_regs): Likewise.
3217 * arm-nbsd-nat.c (store_register): Likewise.
3218 * arm-nbsd-nat.c (store_regs): Likewise.
3219 * arm-nbsd-nat.c (store_fp_register): Likewise.
3220 * arm-nbsd-nat.c (store_fp_regs): Likewise.
3221
6018d381
KR
32222020-03-14 Kamil Rytarowski <n54@gmx.com>
3223
3224 * arm-nbsd-nat.c (arm_netbsd_nat_target): Inherit from
3225 nbsd_nat_target instead of inf_ptrace_target.
3226 * arm-nbsd-nat.c: Include "nbsd-nat.h", as we are now using
3227 nbsd_nat_target.
3228
013f99f0
KR
32292020-03-14 Kamil Rytarowski <n54@gmx.com>
3230
3231 * x86-bsd-nat.c (x86bsd_dr_get): New variable lwp and pass
3232 it to the ptrace call.
3233 * x86-bsd-nat.c (x86bsd_dr_set): Likewise.
3234
12753073
KR
32352020-03-14 Kamil Rytarowski <n54@gmx.com>
3236
6227b330
KR
3237 * vax-bsd-nat.c (vaxbsd_supply_gregset): New variable lwp and pass
3238 it to the ptrace call.
3239 * vax-bsd-nat.c (vaxbsd_collect_gregset): Likewise.
3240
32412020-03-14 Kamil Rytarowski <n54@gmx.com>
3242
3243 * vax-bsd-nat.c (vaxbsd_supply_gregset): Cast gregs to const
3244 gdb_byte *.
12753073
KR
3245 * vax-bsd-nat.c (vaxbsd_collect_gregset): Cast gregs to void *.
3246
d5be5fa4
KR
32472020-03-14 Kamil Rytarowski <n54@gmx.com>
3248
3249 * vax-bsd-nat.c (vax_bsd_nat_target): Inherit from nbsd_nat_target
3250 instead of inf_ptrace_target.
3251 * vax-bsd-nat.c: Include "nbsd-nat.h", as we are now using
3252 nbsd_nat_target.
3253
8110f842
KR
32542020-03-14 Kamil Rytarowski <n54@gmx.com>
3255
3256 * mips-nbsd-nat.c: Define _KERNTYPES to get the declaration of
3257 register_t.
3258
52feded7
KR
32592020-03-14 Kamil Rytarowski <n54@gmx.com>
3260
3261 * ppc-nbsd-nat.c: Define _KERNTYPES to get the declaration of
3262 register_t.
3263
25567eee
KR
32642020-03-14 Kamil Rytarowski <n54@gmx.com>
3265
3266 * vax-bsd-nat.c: Define _KERNTYPES to get the declaration of
3267 register_t.
3268
426a9c18
TT
32692020-03-13 Tom Tromey <tom@tromey.com>
3270
3271 * value.h (val_print): Don't declare.
3272 * valprint.h (val_print_array_elements)
3273 (val_print_scalar_formatted, generic_val_print): Don't declare.
3274 * valprint.c (generic_val_print_array): Take a struct value.
3275 (generic_val_print_ptr, generic_val_print_memberptr)
3276 (generic_val_print_bool, generic_val_print_int)
3277 (generic_val_print_char, generic_val_print_complex)
3278 (generic_val_print): Remove.
3279 (generic_value_print): Update.
3280 (do_val_print): Remove unused parameters. Don't call
3281 la_val_print.
3282 (val_print): Remove.
3283 (common_val_print): Update. Don't call value_check_printable.
3284 (val_print_scalar_formatted, val_print_array_elements): Remove.
3285 * rust-lang.c (rust_val_print): Remove.
3286 (rust_language_defn): Update.
3287 * p-valprint.c (pascal_val_print): Remove.
3288 (pascal_value_print_inner): Update.
3289 (pascal_object_print_val_fields, pascal_object_print_val):
3290 Remove.
3291 (pascal_object_print_static_field): Update.
3292 * p-lang.h (pascal_val_print): Don't declare.
3293 * p-lang.c (pascal_language_defn): Update.
3294 * opencl-lang.c (opencl_language_defn): Update.
3295 * objc-lang.c (objc_language_defn): Update.
3296 * m2-valprint.c (m2_print_unbounded_array, m2_val_print): Remove.
3297 * m2-lang.h (m2_val_print): Don't declare.
3298 * m2-lang.c (m2_language_defn): Update.
3299 * language.h (struct language_defn) <la_val_print>: Remove.
3300 * language.c (unk_lang_value_print_inner): Rename. Change
3301 argument types.
3302 (unknown_language_defn, auto_language_defn): Update.
3303 * go-valprint.c (go_val_print): Remove.
3304 * go-lang.h (go_val_print): Don't declare.
3305 * go-lang.c (go_language_defn): Update.
3306 * f-valprint.c (f_val_print): Remove.
3307 * f-lang.h (f_value_print): Don't declare.
3308 * f-lang.c (f_language_defn): Update.
3309 * d-valprint.c (d_val_print): Remove.
3310 * d-lang.h (d_value_print): Don't declare.
3311 * d-lang.c (d_language_defn): Update.
3312 * cp-valprint.c (cp_print_value_fields)
3313 (cp_print_value_fields_rtti, cp_print_value): Remove.
3314 (cp_print_static_field): Update.
3315 * c-valprint.c (c_val_print_array, c_val_print_ptr)
3316 (c_val_print_struct, c_val_print_union, c_val_print_int)
3317 (c_val_print_memberptr, c_val_print): Remove.
3318 * c-lang.h (c_val_print_array, cp_print_value_fields)
3319 (cp_print_value_fields_rtti): Don't declare.
3320 * c-lang.c (c_language_defn, cplus_language_defn)
3321 (asm_language_defn, minimal_language_defn): Update.
3322 * ada-valprint.c (ada_val_print_ptr, ada_val_print_num): Remove.
3323 (ada_val_print_enum): Take a struct value.
3324 (ada_val_print_flt, ada_val_print_array, ada_val_print_1)
3325 (ada_val_print): Remove.
3326 (ada_value_print_1): Update.
3327 (printable_val_type): Remove.
3328 * ada-lang.h (ada_val_print): Don't declare.
3329 * ada-lang.c (ada_language_defn): Update.
3330
42331a1e
TT
33312020-03-13 Tom Tromey <tom@tromey.com>
3332
3333 * valprint.c (do_val_print): Update.
3334 * python/python-internal.h (gdbpy_apply_val_pretty_printer): Take
3335 a struct value.
3336 (value_to_value_object_no_release): Declare.
3337 * python/py-value.c (value_to_value_object_no_release): New
3338 function.
3339 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Take a
3340 struct value.
3341 * guile/scm-value.c (vlscm_scm_from_value_no_release): New
3342 function.
3343 * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer): Take
3344 a struct value.
3345 * guile/guile-internal.h (vlscm_scm_from_value_no_release):
3346 Declare.
3347 (gdbscm_apply_val_pretty_printer): Take a struct value.
3348 * extension.h (apply_ext_lang_val_pretty_printer): Take a struct
3349 value.
3350 * extension.c (apply_ext_lang_val_pretty_printer): Take a struct
3351 value.
3352 * extension-priv.h (struct extension_language_ops)
3353 <apply_val_pretty_printer>: Take a struct value.
3354 * cp-valprint.c (cp_print_value): Create a struct value.
3355 (cp_print_value): Update.
3356
3a916a97
TT
33572020-03-13 Tom Tromey <tom@tromey.com>
3358
3359 * ada-valprint.c (print_field_values): Call common_val_print.
3360
b59eac37
TT
33612020-03-13 Tom Tromey <tom@tromey.com>
3362
3363 * ada-valprint.c (val_print_packed_array_elements): Remove
3364 bitoffset and val parameters. Call common_val_print.
3365 (ada_val_print_string): Remove offset, address, and original_value
3366 parameters.
3367 (ada_val_print_array): Update.
3368 (ada_value_print_array): New function.
3369 (ada_value_print_1): Call it.
3370
03371129
TT
33712020-03-13 Tom Tromey <tom@tromey.com>
3372
3373 * ada-valprint.c (ada_value_print): Use common_val_print.
3374
2e088f8b
TT
33752020-03-13 Tom Tromey <tom@tromey.com>
3376
3377 * ada-valprint.c (ada_val_print_ref): Use common_val_print.
3378
39ef85a8
TT
33792020-03-13 Tom Tromey <tom@tromey.com>
3380
3381 * ada-valprint.c (ada_value_print_num): New function.
3382 (ada_value_print_1): Use it.
3383
b9fa6e07
TT
33842020-03-13 Tom Tromey <tom@tromey.com>
3385
3386 * ada-valprint.c (ada_value_print_1) <TYPE_CODE_FLT>: Rewrite.
3387
416595d6
TT
33882020-03-13 Tom Tromey <tom@tromey.com>
3389
3390 * ada-valprint.c (ada_value_print_ptr): New function.
3391 (ada_value_print_1): Use it.
3392
5b5e15ec
TT
33932020-03-13 Tom Tromey <tom@tromey.com>
3394
3395 * ada-valprint.c (ada_val_print_gnat_array): Take a struct value;
3396 call common_val_print.
3397 (ada_val_print_1): Update.
3398 (ada_value_print_1): New function.
3399 (ada_value_print_inner): Rewrite.
3400
fbf54e75
TT
34012020-03-13 Tom Tromey <tom@tromey.com>
3402
3403 * cp-valprint.c (cp_print_value_fields): Update.
3404 (cp_print_value): New function.
3405
64b653ca
TT
34062020-03-13 Tom Tromey <tom@tromey.com>
3407
3408 * m2-valprint.c (m2_value_print_inner): Use
3409 cp_print_value_fields.
3410 * cp-valprint.c (cp_print_value_fields): New function.
3411 * c-valprint.c (c_value_print_struct): New function.
3412 (c_value_print_inner): Use c_value_print_struct.
3413 * c-lang.h (cp_print_value_fields): Declare.
3414
6999f067
TT
34152020-03-13 Tom Tromey <tom@tromey.com>
3416
3417 * c-valprint.c (c_value_print_array): New function.
3418 (c_value_print_inner): Use it.
3419
ce80b8bd
TT
34202020-03-13 Tom Tromey <tom@tromey.com>
3421
3422 * c-valprint.c (c_value_print_memberptr): New function.
3423 (c_value_print_inner): Use it.
3424
2faac269
TT
34252020-03-13 Tom Tromey <tom@tromey.com>
3426
3427 * c-valprint.c (c_value_print_int): New function.
3428 (c_value_print_inner): Use it.
3429
da3e2c29
TT
34302020-03-13 Tom Tromey <tom@tromey.com>
3431
3432 * c-valprint.c (c_value_print_ptr): New function.
3433 (c_value_print_inner): Use it.
3434
50836231
TT
34352020-03-13 Tom Tromey <tom@tromey.com>
3436
3437 * c-valprint.c (c_value_print_inner): Rewrite.
3438
4f412b6e
TT
34392020-03-13 Tom Tromey <tom@tromey.com>
3440
3441 * valprint.c (generic_value_print_complex): New function.
3442 (generic_value_print): Use it.
3443
f5354008
TT
34442020-03-13 Tom Tromey <tom@tromey.com>
3445
3446 * valprint.c (generic_val_print_float): Don't call
3447 val_print_scalar_formatted.
3448 (generic_val_print, generic_value_print): Update.
3449
3eec3b05
TT
34502020-03-13 Tom Tromey <tom@tromey.com>
3451
3452 * valprint.c (generic_value_print_char): New function
3453 (generic_value_print): Use it.
3454
fdddfccb
TT
34552020-03-13 Tom Tromey <tom@tromey.com>
3456
3457 * valprint.c (generic_value_print_int): New function.
3458 (generic_value_print): Use it.
3459
6dde7521
TT
34602020-03-13 Tom Tromey <tom@tromey.com>
3461
3462 * valprint.c (generic_value_print_bool): New function.
3463 (generic_value_print): Use it.
3464
4112d2e6
TT
34652020-03-13 Tom Tromey <tom@tromey.com>
3466
3467 * valprint.c (generic_val_print_func): Simplify.
3468 (generic_val_print, generic_value_print): Update.
3469
65786af6
TT
34702020-03-13 Tom Tromey <tom@tromey.com>
3471
3472 * valprint.c (generic_val_print_flags): Remove.
3473 (generic_val_print, generic_value_print): Update.
3474 (val_print_type_code_flags): Add original_value parameter.
3475
40f3ce18
TT
34762020-03-13 Tom Tromey <tom@tromey.com>
3477
3478 * valprint.c (generic_val_print): Update.
3479 (generic_value_print): Update.
3480 * valprint.c (generic_val_print_enum): Don't call
3481 val_print_scalar_formatted.
3482
2a5b130b
TT
34832020-03-13 Tom Tromey <tom@tromey.com>
3484
3485 * valprint.c (generic_value_print): Call generic_value_print_ptr.
3486 * valprint.c (generic_value_print_ptr): New function.
3487
abc66ce9
TT
34882020-03-13 Tom Tromey <tom@tromey.com>
3489
3490 * valprint.c (generic_value_print): Rewrite.
3491
07a32858
TT
34922020-03-13 Tom Tromey <tom@tromey.com>
3493
3494 * p-valprint.c (pascal_object_print_value_fields)
3495 (pascal_object_print_value): New functions.
3496
64d64d3a
TT
34972020-03-13 Tom Tromey <tom@tromey.com>
3498
3499 * p-valprint.c (pascal_value_print_inner): Rewrite.
3500
6a95a1f5
TT
35012020-03-13 Tom Tromey <tom@tromey.com>
3502
3503 * f-valprint.c (f_value_print_innner): Rewrite.
3504
59fcdac6
TT
35052020-03-13 Tom Tromey <tom@tromey.com>
3506
3507 * m2-valprint.c (m2_print_unbounded_array): New overload.
3508 (m2_print_unbounded_array): Update.
3509 (m2_print_array_contents): Take a struct value.
3510 (m2_value_print_inner): Rewrite.
3511
d133c3e1
TT
35122020-03-13 Tom Tromey <tom@tromey.com>
3513
3514 * d-valprint.c (dynamic_array_type): Call d_value_print_inner.
3515 (d_value_print_inner): New function.
3516 * d-lang.h (d_value_print_inner): Declare.
3517 * d-lang.c (d_language_defn): Use d_value_print_inner.
3518
23b0f06b
TT
35192020-03-13 Tom Tromey <tom@tromey.com>
3520
3521 * go-valprint.c (go_value_print_inner): New function.
3522 * go-lang.h (go_value_print_inner): Declare.
3523 * go-lang.c (go_language_defn): Use go_value_print_inner.
3524
5f56f7cb
TT
35252020-03-13 Tom Tromey <tom@tromey.com>
3526
3527 * rust-lang.c (val_print_struct, rust_print_enum): Use the value
3528 API.
3529 (rust_val_print): Rewrite.
3530 (rust_value_print_inner): New function, from rust_val_print.
3531 (rust_language_defn): Use rust_value_print_inner.
3532
26792ee0
TT
35332020-03-13 Tom Tromey <tom@tromey.com>
3534
3535 * ada-valprint.c (ada_value_print_inner): New function.
3536 * ada-lang.h (ada_value_print_inner): Declare.
3537 * ada-lang.c (ada_language_defn): Use ada_value_print_inner.
3538
24051bbe
TT
35392020-03-13 Tom Tromey <tom@tromey.com>
3540
3541 * f-valprint.c (f_value_print_innner): New function.
3542 * f-lang.h (f_value_print_innner): Declare.
3543 * f-lang.c (f_language_defn): Use f_value_print_innner.
3544
c0941be6
TT
35452020-03-13 Tom Tromey <tom@tromey.com>
3546
3547 * p-valprint.c (pascal_value_print_inner): New function.
3548 * p-lang.h (pascal_value_print_inner): Declare.
3549 * p-lang.c (pascal_language_defn): Use pascal_value_print_inner.
3550
62c4663d
TT
35512020-03-13 Tom Tromey <tom@tromey.com>
3552
3553 * m2-valprint.c (m2_value_print_inner): New function.
3554 * m2-lang.h (m2_value_print_inner): Declare.
3555 * m2-lang.c (m2_language_defn): Use m2_value_print_inner.
3556
62182190
TT
35572020-03-13 Tom Tromey <tom@tromey.com>
3558
3559 * opencl-lang.c (opencl_language_defn): Use c_value_print_inner.
3560 * objc-lang.c (objc_language_defn): Use c_value_print_inner.
3561 * c-valprint.c (c_value_print_inner): New function.
3562 * c-lang.h (c_value_print_inner): Declare.
3563 * c-lang.c (c_language_defn, cplus_language_defn)
3564 (asm_language_defn, minimal_language_defn): Use
3565 c_value_print_inner.
3566
1e592a8a
TT
35672020-03-13 Tom Tromey <tom@tromey.com>
3568
3569 * p-valprint.c (pascal_object_print_value_fields): Now static.
3570 * p-lang.h (pascal_object_print_value_fields): Don't declare.
3571
7fe471e9
TT
35722020-03-13 Tom Tromey <tom@tromey.com>
3573
3574 * c-valprint.c (c_val_print_array): Simplify.
3575
d121c6ce
TT
35762020-03-13 Tom Tromey <tom@tromey.com>
3577
3578 * valprint.c (value_print_array_elements): New function.
3579 * valprint.h (value_print_array_elements): Declare.
3580
4dba70ee
TT
35812020-03-13 Tom Tromey <tom@tromey.com>
3582
3583 * printcmd.c (print_formatted): Use value_print_scalar_formatted.
3584 * mips-tdep.c (mips_print_register): Use
3585 value_print_scalar_formatted.
3586
4f9ae810
TT
35872020-03-13 Tom Tromey <tom@tromey.com>
3588
3589 * valprint.h (value_print_scalar_formatted): Declare.
3590 * valprint.c (value_print_scalar_formatted): New function.
3591
156bfec9
TT
35922020-03-13 Tom Tromey <tom@tromey.com>
3593
3594 * valprint.h (generic_value_print): Declare.
3595 * valprint.c (generic_value_print): New function.
3596
2b4e573d
TT
35972020-03-13 Tom Tromey <tom@tromey.com>
3598
3599 * valprint.c (do_val_print): Call la_value_print_inner, if
3600 available.
3601 * rust-lang.c (rust_language_defn): Update.
3602 * p-lang.c (pascal_language_defn): Update.
3603 * opencl-lang.c (opencl_language_defn): Update.
3604 * objc-lang.c (objc_language_defn): Update.
3605 * m2-lang.c (m2_language_defn): Update.
3606 * language.h (struct language_defn) <la_value_print_inner>: New
3607 member.
3608 * language.c (unknown_language_defn, auto_language_defn): Update.
3609 * go-lang.c (go_language_defn): Update.
3610 * f-lang.c (f_language_defn): Update.
3611 * d-lang.c (d_language_defn): Update.
3612 * c-lang.c (c_language_defn, cplus_language_defn)
3613 (asm_language_defn, minimal_language_defn): Update.
3614 * ada-lang.c (ada_language_defn): Update.
3615
a1f6a07c
TT
36162020-03-13 Tom Tromey <tom@tromey.com>
3617
3618 * c-valprint.c (c_value_print): Use common_val_print.
3619
410cf315
TT
36202020-03-13 Tom Tromey <tom@tromey.com>
3621
3622 * cp-valprint.c (cp_print_static_field): Use common_val_print.
3623
72a45c93
TT
36242020-03-13 Tom Tromey <tom@tromey.com>
3625
3626 * f-valprint.c (f77_print_array_1, f_val_print): Use
3627 common_val_print.
3628
040f66bd
TT
36292020-03-13 Tom Tromey <tom@tromey.com>
3630
3631 * riscv-tdep.c (riscv_print_one_register_info): Use
3632 common_val_print.
3633
a6e05a6c
TT
36342020-03-13 Tom Tromey <tom@tromey.com>
3635
3636 * mi/mi-main.c (output_register): Use common_val_print.
3637
3444c526
TT
36382020-03-13 Tom Tromey <tom@tromey.com>
3639
3640 * infcmd.c (default_print_one_register_info): Use
3641 common_val_print.
3642
c2a44efe
TT
36432020-03-13 Tom Tromey <tom@tromey.com>
3644
3645 * valprint.h (common_val_print_checked): Declare.
3646 * valprint.c (common_val_print_checked): New function.
3647 * stack.c (print_frame_arg): Use common_val_print_checked.
3648
b0c26e99
TT
36492020-03-13 Tom Tromey <tom@tromey.com>
3650
3651 * valprint.c (do_val_print): New function, from val_print.
3652 (val_print): Use do_val_print.
3653 (common_val_print): Use do_val_print.
3654
ce3acbe9
TT
36552020-03-13 Tom Tromey <tom@tromey.com>
3656
3657 * valprint.c (value_print): Use scoped_value_mark.
3658
96c7f873
TV
36592020-03-13 Tom de Vries <tdevries@suse.de>
3660
3661 PR symtab/25646
3662 * psymtab.c (partial_symtab::partial_symtab): Don't set
3663 globals_offset and statics_offset. Push element onto
3664 current_global_psymbols and current_static_psymbols stacks.
3665 (concat): New function.
3666 (end_psymtab_common): Set globals_offset and statics_offset. Pop
3667 element from current_global_psymbols and current_static_psymbols
3668 stacks. Concat popped elements to global_psymbols and
3669 static_symbols.
3670 (add_psymbol_to_list): Use current_global_psymbols and
3671 current_static_psymbols stacks.
3672 * psymtab.h (class psymtab_storage): Add current_global_psymbols and
3673 current_static_psymbols fields.
3674
6ba0a321
CB
36752020-03-12 Christian Biesinger <cbiesinger@google.com>
3676
3677 * corelow.c (sniff_core_bfd): Remove.
3678 (class core_target) <m_core_vec>: Remove.
3679 (core_target::core_target): Update.
3680 (core_file_fns): Remove.
3681 (deprecated_add_core_fns): Remove.
3682 (default_core_sniffer): Remove.
3683 (sniff_core_bfd): Remove.
3684 (default_check_format): Remove.
3685 (gdb_check_format): Remove.
3686 (core_target_open): Update.
3687 (core_target::get_core_register_section): Update.
3688 (get_core_registers_cb): Update.
3689 (core_target::fetch_registers): Update.
3690 * gdbcore.h (struct core_fns): Remove.
3691 (deprecated_add_core_fns): Remove.
3692 (default_core_sniffer): Remove.
3693 (default_check_format): Remove.
3694
227031b2
TT
36952020-03-12 Tom Tromey <tom@tromey.com>
3696
3697 * arm-tdep.c (struct arm_mapping_symbol) <value>: Now a
3698 CORE_ADDR.
3699 (struct arm_exidx_entry) <addr>: Now a CORE_ADDR.
3700
53807e9f
TT
37012020-03-12 Tom Tromey <tom@tromey.com>
3702
3703 * remote.c (remote_target::download_tracepoint)
3704 (remote_target::enable_tracepoint)
3705 (remote_target::disable_tracepoint): Use phex, not sprintf_vma.
3706 * breakpoint.c (print_recreate_masked_watchpoint): Use phex, not
3707 sprintf_vma.
3708
64f25102
TT
37092020-03-12 Tom Tromey <tom@tromey.com>
3710
3711 * symfile-mem.c: Update CORE_ADDR size assert.
3712
272cd5a3
SM
37132020-03-12 Simon Marchi <simon.marchi@efficios.com>
3714
3715 * selftest.m4: Move to gdbsupport/.
3716 * acinclude.m4: Update path to selftest.m4.
3717
74cd3f9d
SM
37182020-03-12 Simon Marchi <simon.marchi@efficios.com>
3719
3720 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Rename to...
3721 (SELFTESTS_SRCS): ... this. Add disasm-selftests.c,
3722 gdbarch-selfselftests.c and selftest-arch.c.
3723 (SUBDIR_UNITTESTS_OBS): Rename to...
3724 (SELFTESTS_OBS): ... this.
3725 (COMMON_SFILES): Remove disasm-selftests.c and
3726 gdbarch-selftests.c.
3727 * configure.ac: Don't add selftest-arch.{c,o} to
3728 CONFIG_{SRCS,OBS}.
3729 * disasm-selftests.c, gdbarch-selftests.c: Remove GDB_SELF_TEST
3730 preprocessor conditions.
3731
db6878ac
SM
37322020-03-12 Simon Marchi <simon.marchi@efficios.com>
3733
3734 * configure.ac: Don't source bfd/development.sh.
3735 * selftest.m4: Modify comment.
3736 * configure: Re-generate.
3737
4d696a5c
SM
37382020-03-12 Simon Marchi <simon.marchi@efficios.com>
3739
3740 * selftest.m4 (GDB_AC_SELFTEST): Error out if $development is
3741 not "true" or "false".
3742 * configure: Re-generate.
3743
8dd8e1c7
CB
37442020-03-12 Christian Biesinger <cbiesinger@google.com>
3745
3746 * Makefile.in (HFILES_NO_SRCDIR): Add new arm-nbsd-tdep.h file.
3747 * arm-nbsd-nat.c (arm_supply_gregset): Moved to arm-nbsd-tdep and
3748 renamed to arm_nbsd_supply_gregset.
3749 (fetch_register): Update to call arm_nbsd_supply_gregset.
3750 (fetch_regs): Remove in favor of fetch_register with a -1 regno.
3751 (arm_netbsd_nat_target::fetch_registers): Update.
3752 (fetch_elfcore_registers): Removed.
3753 (_initialize_arm_netbsd_nat): Removed call to deprecated_add_core_fns.
3754 * arm-nbsd-tdep.c (struct arm_nbsd_reg): New struct.
3755 (arm_nbsd_supply_gregset): Moved from arm-nbsd-nat.c and updated to
3756 not require NetBSD system headers.
3757 (arm_nbsd_regset): New struct.
3758 (arm_nbsd_iterate_over_regset_sections): New function.
3759 (arm_netbsd_init_abi_common): Updated to call
3760 set_gdbarch_iterate_over_regset_sections.
3761 * arm-nbsd-tdep.h: New file.
3762
dd69bf7a
KB
37632020-03-11 Kevin Buettner <kevinb@redhat.com>
3764
3765 * symtab.c (find_pc_sect_line): Add check which prevents infinite
3766 recursion.
3767
a0761e34
SM
37682020-03-11 Simon Marchi <simon.marchi@efficios.com>
3769
3770 * configure: Re-generate.
3771
e7a82140
TT
37722020-03-11 Tom Tromey <tromey@adacore.com>
3773
3774 * ada-typeprint.c (print_choices): Fix comment.
3775
dcc050c8
AB
37762020-03-11 Andrew Burgess <andrew.burgess@embecosm.com>
3777
3778 * buildsyms.c (buildsym_compunit::record_line): Avoid accessing
3779 previous item in the list, when the list has no items.
3780
1c33af77
TV
37812020-03-11 Tom de Vries <tdevries@suse.de>
3782
3783 * dwarf2/loc.c (dwarf2_evaluate_property): Handle NULL frame in
3784 PROP_LOCLIST handling code.
3785
8c95582d
AB
37862020-03-10 Andrew Burgess <andrew.burgess@embecosm.com>
3787
3788 * buildsym-legacy.c (record_line): Pass extra parameter to
3789 record_line.
3790 * buildsym.c (buildsym_compunit::record_line): Take an extra
3791 parameter, reduce duplication in the line table, and record the
3792 is_stmt flag in the line table.
3793 * buildsym.h (buildsym_compunit::record_line): Add extra
3794 parameter.
3795 * disasm.c (do_mixed_source_and_assembly_deprecated): Ignore
3796 non-statement lines.
3797 * dwarf2/read.c (dwarf_record_line_1): Add extra parameter, pass
3798 this to the symtab builder.
3799 (dwarf_finish_line): Pass extra parameter to dwarf_record_line_1.
3800 (lnp_state_machine::record_line): Pass a suitable is_stmt flag
3801 through to dwarf_record_line_1.
3802 * infrun.c (process_event_stop_test): When stepping, don't stop at
3803 a non-statement instruction, and only refresh the step info when
3804 we land in the middle of a line's range. Also add an extra
3805 comment.
3806 * jit.c (jit_symtab_line_mapping_add_impl): Initialise is_stmt
3807 field.
3808 * record-btrace.c (btrace_find_line_range): Only record lines
3809 marked as is-statement.
3810 * stack.c (frame_show_address): Show the frame address if we are
3811 in a non-statement sal.
3812 * symmisc.c (dump_symtab_1): Print the is_stmt flag.
3813 (maintenance_print_one_line_table): Print a header for the is_stmt
3814 column, and include is_stmt information in the output.
3815 * symtab.c (find_pc_sect_line): Find lines marked as statements in
3816 preference to non-statements.
3817 (find_pcs_for_symtab_line): Prefer is-statement entries.
3818 (find_line_common): Likewise.
3819 * symtab.h (struct linetable_entry): Add is_stmt field.
3820 (struct symtab_and_line): Likewise.
3821 * xcoffread.c (arrange_linetable): Initialise is_stmt field when
3822 arranging the line table.
3823
e4003a34
TV
38242020-03-07 Tom de Vries <tdevries@suse.de>
3825
3826 * dwarf2/read.c (read_typedef): Treat anonymous typedef as forwarder
3827 DIE.
3828
e8932576
TT
38292020-03-07 Tom Tromey <tom@tromey.com>
3830
3831 * valops.c (value_literal_complex): Remove obsolete comment.
3832 * gdbtypes.h (enum type_code) <TYPE_CODE_FLT>: Remove obsolete
3833 comment.
3834
29734269
SM
38352020-03-06 Simon Marchi <simon.marchi@polymtl.ca>
3836
3837 * infrun.h: Forward-declare thread_info.
3838 (set_step_info): Add thread_info parameter, add doc.
3839 * infrun.c (set_step_info): Add thread_info parameter, move doc
3840 to header.
3841 * infrun.c (process_event_stop_test): Pass thread to
3842 set_step_info call.
3843 * infcmd.c (set_step_frame): Add thread_info pointer, pass it to
3844 set_step_info.
3845 (prepare_one_step): Add thread_info parameter, pass it to
3846 set_step_frame and prepare_one_step (recursive) call.
3847 (step_1): Pass thread to prepare_one_step call.
3848 (step_command_fsm::should_stop): Pass thread to
3849 prepare_one_step.
3850 (until_next_fsm): Pass thread to set_step_frame call.
3851 (finish_command): Pass thread to set_step_info call.
3852
b7d64b29
HD
38532020-03-06 Hannes Domani <ssbssa@yahoo.de>
3854
3855 * windows-tdep.c (windows_solib_create_inferior_hook):
3856 Check if inferior is running.
3857
09f2921c
TV
38582020-03-06 Tom de Vries <tdevries@suse.de>
3859
3860 * NEWS: Fix "the the".
3861 * ctfread.c: Same.
3862
fd760e79
TV
38632020-03-06 Tom de Vries <tdevries@suse.de>
3864
3865 * psymtab.c (psymtab_to_symtab): Don't print "done.".
3866
20ea4a60
AB
38672020-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
3868
3869 * .dir-locals.el: Add a comment referencing the other copies of
3870 this file.
3871
0afbabf0
JB
38722020-03-05 John Baldwin <jhb@FreeBSD.org>
3873
3874 * fbsd-tdep.c (fbsd_make_corefile_notes): Use std::string for
3875 psargs.
3876
842806cb
TBA
38772020-03-05 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
3878
3879 * .gitattributes: New file.
3880
be1e3d3e
TT
38812020-03-04 Tom Tromey <tom@tromey.com>
3882
3883 * symmisc.c (print_symbol_bcache_statistics)
3884 (print_objfile_statistics): Update.
3885 * symfile.c (allocate_symtab): Use intern.
3886 * psymtab.c (partial_symtab::partial_symtab): Use intern.
3887 * objfiles.h (struct objfile_per_bfd_storage) <filename_cache,
3888 macro_cache>: Remove.
3889 <string_cache>: New member.
3890 (struct objfile) <intern>: New methods.
3891 * elfread.c (elf_symtab_read): Use intern.
3892 * dwarf2/read.c (fixup_go_packaging): Intern package name.
3893 (dwarf2_compute_name, dwarf2_physname)
3894 (create_dwo_unit_in_dwp_v1, create_dwo_unit_in_dwp_v2): Intern
3895 names.
3896 (guess_partial_die_structure_name): Update.
3897 (partial_die_info::fixup): Intern name.
3898 (dwarf2_canonicalize_name): Change parameter to objfile. Intern
3899 name.
3900 (dwarf2_name): Intern name. Update.
3901 * buildsym.c (buildsym_compunit::get_macro_table): Use
3902 string_cache.
3903
4e7625fd
TT
39042020-03-04 Tom Tromey <tom@tromey.com>
3905
3906 * jit.c (bfd_open_from_target_memory): Make "target" const.
3907 * corefile.c (gnutarget): Now const.
3908 * gdbcore.h (gnutarget): Now const.
3909
46f9f931
HD
39102020-03-04 Hannes Domani <ssbssa@yahoo.de>
3911
3912 * NEWS: Mention support for WOW64 processes.
3913 * amd64-windows-nat.c (amd64_mappings): Rename and remove static.
3914 (amd64_windows_segment_register_p): Remove static.
3915 (_initialize_amd64_windows_nat): Update.
3916 * configure.nat <windows> (NATDEPFILES): Add i386-windows-nat.o.
3917 * i386-windows-nat.c (context_offset): Update.
3918 (i386_mappings): Rename and remove static.
3919 (i386_windows_segment_register_p): Remove static.
3920 (_initialize_i386_windows_nat): Update.
3921 * windows-nat.c (STATUS_WX86_BREAKPOINT): New macro.
3922 (STATUS_WX86_SINGLE_STEP): New macro.
3923 (EnumProcessModulesEx): New macro.
3924 (Wow64SuspendThread): New macro.
3925 (Wow64GetThreadContext): New macro.
3926 (Wow64SetThreadContext): New macro.
3927 (Wow64GetThreadSelectorEntry): New macro.
3928 (windows_set_context_register_offsets): Add static.
3929 (windows_set_segment_register_p): Likewise.
3930 (windows_add_thread): Adapt for WOW64 processes.
3931 (windows_fetch_one_register): Likewise.
3932 (windows_nat_target::fetch_registers): Likewise.
3933 (windows_store_one_register): Likewise.
3934 (display_selector): Likewise.
3935 (display_selectors): Likewise.
3936 (handle_exception): Likewise.
3937 (windows_continue): Likewise.
3938 (windows_nat_target::resume): Likewise.
3939 (windows_add_all_dlls): Likewise.
3940 (do_initial_windows_stuff): Likewise.
3941 (windows_nat_target::attach): Likewise.
3942 (windows_get_exec_module_filename): Likewise.
3943 (windows_nat_target::create_inferior): Likewise.
3944 (windows_xfer_siginfo): Likewise.
3945 (_initialize_loadable): Initialize Wow64SuspendThread,
3946 Wow64GetThreadContext, Wow64SetThreadContext,
3947 Wow64GetThreadSelectorEntry and EnumProcessModulesEx.
3948 * windows-nat.h (windows_set_context_register_offsets):
3949 Remove declaration.
3950 (windows_set_segment_register_p): Likewise.
3951 (i386_windows_segment_register_p): Add declaration.
3952 (amd64_windows_segment_register_p): Likewise.
3953
440cf44e
LM
39542020-03-04 Luis Machado <luis.machado@linaro.org>
3955
3956 Revert aa66aac47b4dd38f9524ddb5546c08cc09930d37 due to regressions
3957 in "info registers" for AArch64/ARM.
3958
3959 The change caused "info registers" to not print GPR's.
3960
3961 gdb/ChangeLog:
3962
3963 2020-02-01 Shahab Vahedi <shahab@synopsys.com>
3964
3965 * target-descriptions.c (tdesc_register_in_reggroup_p): Return 0
3966 when reg->group is empty and reggroup is not.
3967
1009d92f
TT
39682020-03-03 Tom Tromey <tromey@adacore.com>
3969
3970 * dwarf2/frame.c (struct dwarf2_frame_cache)
3971 <checked_tailcall_bottom, entry_cfa_sp_offset,
3972 entry_cfa_sp_offset_p>: Remove members.
3973 (dwarf2_frame_cache): Call dwarf2_tailcall_sniffer_first.
3974 (dwarf2_frame_prev_register): Don't call
3975 dwarf2_tailcall_sniffer_first.
3976 (dwarf2_append_unwinders): Don't append tailcall unwinder.
3977 * frame-unwind.c (add_unwinder): New fuction.
3978 (frame_unwind_init): Use it. Add tailcall unwinder.
3979
5e5d66b6
AB
39802020-03-03 Andrew Burgess <andrew.burgess@embecosm.com>
3981 Alok Kumar Sharma <AlokKumar.Sharma@amd.com>
3982
3983 * f-valprint.c (f_val_print): Handle TYPE_CODE_BOOL, any non-zero
3984 value should be printed as true.
3985
584cf46d
HD
39862020-03-03 Hannes Domani <ssbssa@yahoo.de>
3987
3988 * windows-tdep.c (windows_solib_create_inferior_hook): New function.
3989 (windows_init_abi): Set and use windows_so_ops.
3990
7b973adc
SDJ
39912020-03-03 Sergio Durigan Junior <sergiodj@redhat.com>
3992
3993 * printcmd.c (print_c_string): Check also for TYPE_CODE_PTR
3994 when verifying if dealing with a convenience variable.
3995
bb7b70ab
LM
39962020-03-03 Luis Machado <luis.machado@linaro.org>
3997
3998 * auxv.c (default_print_auxv_entry): Add new AUXV entries.
3999
9822cb57
SM
40002020-03-02 Simon Marchi <simon.marchi@polymtl.ca>
4001
4002 * infrun.c (gdbarch_supports_displaced_stepping): New.
4003 (use_displaced_stepping): Break up conditions in smaller pieces.
4004 Use gdbarch_supports_displaced_stepping.
4005 (displaced_step_prepare_throw): Use
4006 gdbarch_supports_displaced_stepping.
4007
63e163f2
AB
40082020-03-02 Andrew Burgess <andrew.burgess@embecosm.com>
4009
4010 * NEWS: Mention new behaviour of the history filename.
4011 * top.c (write_history_p): Add comment.
4012 (show_write_history_p): Add header comment, give a different
4013 message when history writing is on, but the history filename is
4014 empty.
4015 (history_filename): Add comment.
4016 (history_filename_empty): New function.
4017 (show_history_filename): Add header comment, give a different
4018 message when the filename is empty.
4019 (init_history): Compare history_filename against nullptr, and only
4020 read history if the filename is not empty.
4021 (set_history_filename): Add header comment, and only make
4022 non-empty filenames absolute.
4023 (init_main): Make the filename argument to 'set history filename'
4024 optional.
4025
81b86b97
CB
40262020-03-02 Christian Biesinger <cbiesinger@google.com>
4027
4028 * arm-nbsd-nat.c (arm_supply_fparegset): Rename to...
4029 (arm_supply_vfpregset): ...this, and update to use VFP registers.
4030 (fetch_fp_register): Update.
4031 (fetch_fp_regs): Update.
4032 (store_fp_register): Update.
4033 (store_fp_regs): Update.
4034 (arm_netbsd_nat_target::read_description): New function.
4035 (fetch_elfcore_registers): Update.
4036
24ed6739
AB
40372020-03-02 Andrew Burgess <andrew.burgess@embecosm.com>
4038
4039 * remote.c (remote_target::remote_parse_stop_reply): Don't use the
4040 general_thread if the stop reply is missing a thread-id.
4041 (remote_target::process_stop_reply): Use the first non-exited
4042 thread if the target didn't pass a thread-id.
4043 * infrun.c (do_target_wait): Move call to
4044 switch_to_inferior_no_thread to ....
4045 (do_target_wait_1): ... here.
4046
a84bb2a0
JT
40472020-02-29 Jon Turney <jon.turney@dronecode.org.uk>
4048
4049 * debuginfod-support.c: Include defs.h first.
4050
658dadf0
TV
40512020-02-28 Tom de Vries <tdevries@suse.de>
4052
4053 * symfile.c (set_initial_language): Use default language for lookup.
4054
4ebe4877
SM
40552020-02-28 Simon Marchi <simon.marchi@efficios.com>
4056
4057 * dwarf2/read.c (cutu_reader::init_tu_and_read_dwo_dies): Remove
4058 reader variable, pass `this` to read_cutu_die_from_dwo.
4059
e5da1139
AM
40602020-02-27 Aaron Merey <amerey@redhat.com>
4061
4062 * source.c (open_source_file): Check for nullptr when computing
4063 srcpath.
4064
317f7127
TT
40652020-02-27 Tom Tromey <tromey@adacore.com>
4066
4067 * dwarf2/read.c (struct field_info) <nfields>: Now a method, not a
4068 member.
4069 (dwarf2_add_field): Don't update nfields.
4070 (dwarf2_attach_fields_to_type, process_structure_scope): Update.
4071
3104d9ee
AB
40722020-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
4073
4074 * gdbtypes.c (create_array_type_with_stride): Use std::abs not
4075 abs.
4076
b83470bf
TT
40772020-02-26 Tom Tromey <tom@tromey.com>
4078
4079 * dwarf2/read.c (struct dwarf2_include_psymtab): New.
4080 (dwarf2_create_include_psymtab): Use dwarf2_include_psymtab.
4081 (dwarf2_psymtab::expand_psymtab, dwarf2_psymtab::readin_p)
4082 (dwarf2_psymtab::get_compunit_symtab): Remove null checks for
4083 per_cu_data.
4084
edfe0a0c
TT
40852020-02-26 Tom Tromey <tom@tromey.com>
4086
4087 * dwarf2/index-write.c (psym_index_map): Change type.
4088 (add_address_entry_worker, write_one_signatured_type)
4089 (recursively_count_psymbols, recursively_write_psymbols)
4090 (class debug_names, psyms_seen_size, write_gdbindex)
4091 (write_debug_names): Use partial_symtab, not dwarf2_psymtab.
4092
0d79cdc4
AM
40932020-02-26 Aaron Merey <amerey@redhat.com>
4094
4095 * Makefile.in: Handle optional debuginfod support.
4096 * NEWS: Update.
4097 * README: Add --with-debuginfod summary.
4098 * config.in: Regenerate.
4099 * configure: Regenerate.
4100 * configure.ac: Handle optional debuginfod support.
4101 * debuginfod-support.c: debuginfod helper functions.
4102 * debuginfod-support.h: Ditto.
4103 * doc/gdb.texinfo: Add --with-debuginfod to configure options
4104 summary.
4105 * dwarf2/read.c (dwarf2_get_dwz_file): Query debuginfod servers
4106 when a dwz file cannot be found.
4107 * elfread.c (elf_symfile_read): Query debuginfod servers when a
4108 debuginfo file cannot be found.
4109 * source.c (open_source_file): Query debuginfod servers when a
4110 source file cannot be found.
4111 * top.c (print_gdb_configuration): Include
4112 --{with,without}-debuginfod in the output.
4113
b65ce565
JG
41142020-02-26 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4115
4116 * thread.c (thr_try_catch_cmd): Print thread name.
4117
d4c9a4f8
SM
41182020-02-26 Simon Marchi <simon.marchi@efficios.com>
4119
4120 * dwarf2/loc.h (dwarf2_fetch_die_loc_sect_off,
4121 dwarf2_fetch_die_loc_cu_off, dwarf2_fetch_constant_bytes,
4122 dwarf2_fetch_die_type_sect_off): Move to...
4123 * dwarf2/read.h (dwarf2_fetch_die_loc_sect_off,
4124 dwarf2_fetch_die_loc_cu_off, dwarf2_fetch_constant_bytes,
4125 dwarf2_fetch_die_type_sect_off): ... here.
4126 * dwarf2/read.c (dwarf2_fetch_die_loc_sect_off,
4127 dwarf2_fetch_die_loc_cu_off, dwarf2_fetch_constant_bytes,
4128 dwarf2_fetch_die_type_sect_off): Move doc to header file.
4129
0dce4280
TV
41302020-02-26 Tom de Vries <tdevries@suse.de>
4131
4132 PR gdb/25603
4133 * symfile.c (set_initial_language): Exit-early if
4134 language_mode == language_mode_manual.
4135
450a1bfc
SM
41362020-02-25 Simon Marchi <simon.marchi@polymtl.ca>
4137
4138 * dwarf2/loc.h (dwarf2_read_addr_index): Move...
4139 * dwarf2/read.h (dwarf2_read_addr_index): ... here.
4140 * dwarf2/read.c (dwarf2_read_addr_index): Move doc to header.
4141
9e80cfa1
AB
41422020-02-25 Andrew Burgess <andrew.burgess@embecosm.com>
4143
4144 * gdbtypes.c (create_array_type_with_stride): Handle negative
4145 array strides.
4146 * valarith.c (value_subscripted_rvalue): Likewise.
4147
09624f1f
LM
41482020-02-25 Luis Machado <luis.machado@linaro.org>
4149
4150 * aarch64-tdep.c (aarch64_vnv_type): Fix comment typo.
4151
8cb5117c
SM
41522020-02-25 Simon Marchi <simon.marchi@polymtl.ca>
4153
4154 * loc.h (dwarf2_get_die_type): Move to...
4155 * read.h (dwarf2_get_die_type): ... here.
4156 * read.c (dwarf2_get_die_type): Move doc to header.
4157
c325c44e
JB
41582020-02-25 Joel Brobecker <brobecker@adacore.com>
4159
4160 * copypright.py (EXCLUDE_LIST): Add 'gnulib/config.in' and
4161 'gnulib/Makefile.in' to the list.
4162
4ac93832
TT
41632020-02-24 Tom Tromey <tom@tromey.com>
4164
4165 * dwarf2/read.h (struct type_unit_unshareable) <num_symtabs>:
4166 Remove.
4167 * dwarf2/read.c (dwarf2_cu::setup_type_unit_groups): Use
4168 XOBNEWVEC.
4169
197400e8
TT
41702020-02-24 Tom Tromey <tom@tromey.com>
4171
4172 * dwarf2/read.h (struct dwarf2_per_cu_data) <type_unit_group_p>:
4173 New method.
4174 * dwarf2/read.c (IS_TYPE_UNIT_GROUP): Remove.
4175 (dw2_do_instantiate_symtab, dw2_get_file_names)
4176 (build_type_psymtab_dependencies, load_full_type_unit): Update.
4177
76935768
TT
41782020-02-24 Tom Tromey <tom@tromey.com>
4179
4180 * dwarf2read.c (dwarf2_build_psymtabs_hard): Use
4181 make_scoped_restore.
4182 (dwarf2_psymtab::read_symtab): Don't clear
4183 reading_partial_symbols.
4184
a88ef40d
TV
41852020-02-24 Tom de Vries <tdevries@suse.de>
4186
4187 PR gdb/25592
4188 * stack.c (iterate_over_block_locals): Handle LOC_CONST.
4189
c9af6521
TV
41902020-02-24 Tom de Vries <tdevries@suse.de>
4191
4192 * tui/tui-layout.c (_initialize_tui_layout): Fix help messages for
4193 commands layout next/prev/regs.
4194
5707a07a
TT
41952020-02-22 Tom Tromey <tom@tromey.com>
4196
4197 * dwarf2/loc.h (dwarf2_compile_expr_to_ax): Don't declare.
4198 * dwarf2/loc.c (dwarf2_compile_expr_to_ax): Now static.
4199
3b0fb49e
TT
42002020-02-22 Tom Tromey <tom@tromey.com>
4201
4202 * tui/tui-data.h (TUI_DISASM_WIN): Cast to tui_disasm_window.
4203
283be8bf
TT
42042020-02-22 Tom Tromey <tom@tromey.com>
4205
4206 * tui/tui-win.c (_initialize_tui_win): Add usage text.
4207 * tui/tui-stack.c (_initialize_tui_stack): Add usage text.
4208 * tui/tui-regs.c (_initialize_tui_regs): Add usage text.
4209 * tui/tui.c (_initialize_tui): Add usage text.
4210
ca793b96
TT
42112020-02-22 Tom Tromey <tom@tromey.com>
4212
4213 * tui/tui-win.c (tui_set_focus_command)
4214 (tui_set_win_height_command): Use error_no_arg.
4215 (_initialize_tui_win): Update help text.
4216 (FOCUS_USAGE, WIN_HEIGHT_USAGE): Don't define.
4217
432b5c40
TT
42182020-02-22 Tom Tromey <tom@tromey.com>
4219
4220 * tui/tui-layout.c (extract_display_start_addr): Rewrite.
4221 * tui/tui-disasm.h (struct tui_disasm_window)
4222 <display_start_addr>: Declare.
4223 * tui/tui-source.h (struct tui_source_window)
4224 <display_start_addr>: Declare.
4225 * tui/tui-winsource.h (struct tui_source_window_base)
4226 <show_source_line, display_start_addr>: New methods.
4227 <m_horizontal_offset, m_start_line_or_addr, m_gdbarch, m_content>:
4228 Rename and move to protected section.
4229 * tui/tui-winsource.c (tui_source_window_base::update_source_window)
4230 (tui_source_window_base::do_erase_source_content): Update.
4231 (tui_source_window_base::show_source_line): Now a method.
4232 (tui_source_window_base::show_source_content)
4233 (tui_source_window_base::tui_source_window_base)
4234 (tui_source_window_base::rerender)
4235 (tui_source_window_base::refill)
4236 (tui_source_window_base::do_scroll_horizontal)
4237 (tui_source_window_base::set_is_exec_point_at)
4238 (tui_source_window_base::update_breakpoint_info)
4239 (tui_source_window_base::update_exec_info): Update.
4240 * tui/tui-source.c (tui_source_window::set_contents)
4241 (tui_source_window::showing_source_p)
4242 (tui_source_window::do_scroll_vertical)
4243 (tui_source_window::location_matches_p)
4244 (tui_source_window::line_is_displayed): Update.
4245 (tui_source_window::display_start_addr): New method.
4246 * tui/tui-disasm.c (tui_disasm_window::set_contents)
4247 (tui_disasm_window::do_scroll_vertical)
4248 (tui_disasm_window::location_matches_p): Update.
4249 (tui_disasm_window::display_start_addr): New method.
4250
01b1af32
TT
42512020-02-22 Tom Tromey <tom@tromey.com>
4252
4253 * NEWS: Add entry for gdb.register_window_type.
4254 * tui/tui-layout.h (window_factory): New typedef.
4255 (tui_register_window): Declare.
4256 * tui/tui-layout.c (saved_tui_windows): New global.
4257 (tui_apply_current_layout): Use it.
4258 (tui_register_window): New function.
4259 * python/python.c (do_start_initialization): Call
4260 gdbpy_initialize_tui.
4261 (python_GdbMethods): Add "register_window_type" function.
4262 * python/python-internal.h (gdbpy_register_tui_window)
4263 (gdbpy_initialize_tui): Declare.
4264 * python/py-tui.c: New file.
4265 * Makefile.in (SUBDIR_PYTHON_SRCS): Add py-tui.c.
4266
fc96d20b
TT
42672020-02-22 Tom Tromey <tom@tromey.com>
4268
4269 * tui/tui-io.c (do_tui_putc): Don't omit annotations.
4270
935c78c0
TT
42712020-02-22 Tom Tromey <tom@tromey.com>
4272
4273 * tui/tui-win.c (tui_set_win_focus_to): Move to tui-data.c.
4274 * tui/tui-data.h (tui_set_win_with_focus): Don't declare.
4275 * tui/tui-data.c (tui_set_win_with_focus): Remove.
4276 (tui_set_win_focus_to): Move from tui-win.c.
4277
0240c8f1
TT
42782020-02-22 Tom Tromey <tom@tromey.com>
4279
4280 * tui/tui-layout.c (make_standard_window, get_locator_window): New
4281 functions.
4282 (known_window_types): New global.
4283 (tui_get_window_by_name): Reimplement.
4284 (initialize_known_windows): New function.
4285 (validate_window_name): Rewrite.
4286 (_initialize_tui_layout): Call initialize_known_windows.
4287
fdb01f0c
TT
42882020-02-22 Tom Tromey <tom@tromey.com>
4289
4290 * tui/tui.h (enum tui_win_type) <LOCATOR_WIN, DATA_ITEM_WIN>:
4291 Remove constants.
4292 * tui/tui-winsource.h (struct tui_source_window_base)
4293 <tui_source_window_base>: Remove parameter.
4294 * tui/tui-winsource.c
4295 (tui_source_window_base::tui_source_window_base): Remove
4296 parameter.
4297 (tui_source_window_base::refill): Update.
4298 * tui/tui-stack.h (struct tui_locator_window)
4299 <tui_locator_window>: Update.
4300 * tui/tui-source.h (struct tui_source_window) <tui_source_window>:
4301 Default the constructor.
4302 * tui/tui-regs.h (struct tui_data_item_window)
4303 <tui_data_item_window>: Default the constructor.
4304 (struct tui_data_window) <tui_data_window>: Likewise.
4305 * tui/tui-disasm.h (struct tui_disasm_window) <tui_disasm_window>:
4306 Default the constructor.
4307 * tui/tui-data.h (struct tui_gen_win_info) <tui_gen_win_info>:
4308 Default the constructor.
4309 <type>: Remove.
4310 (struct tui_win_info) <tui_win_info>: Default the constructor.
4311 * tui/tui-data.c (tui_win_info::tui_win_info): Remove.
4312 * tui/tui-command.h (struct tui_cmd_window) <tui_cmd_window>:
4313 Default the constructor.
4314
865a5aec
TT
43152020-02-22 Tom Tromey <tom@tromey.com>
4316
4317 * tui/tui-wingeneral.h (tui_make_all_invisible): Don't declare.
4318 * tui/tui-wingeneral.c (tui_make_all_invisible): Remove.
4319 * tui/tui-win.c (tui_resize_all): Don't call
4320 tui_delete_invisible_windows.
4321 * tui/tui-layout.c (tui_apply_current_layout): Delete windows when
4322 done.
4323 (tui_set_layout): Update.
4324 (tui_add_win_to_layout): Don't call tui_delete_invisible_windows.
4325 * tui/tui-data.h (tui_delete_invisible_windows): Don't declare.
4326 * tui/tui-data.c (tui_delete_invisible_windows): Remove.
4327
e098d18c
TT
43282020-02-22 Tom Tromey <tom@tromey.com>
4329
4330 * tui/tui-win.c (tui_partial_win_by_name): Handle ambiguity
4331 correctly.
4332
eb9c8874
TT
43332020-02-22 Tom Tromey <tom@tromey.com>
4334
4335 * tui/tui-data.c (tui_next_win, tui_prev_win): Reimplement.
4336
7eed1a8e
TT
43372020-02-22 Tom Tromey <tom@tromey.com>
4338
4339 * tui/tui-winsource.h (struct tui_source_window_iterator)
4340 <inner_iterator>: New etytypedef.
4341 <tui_source_window_iterator>: Take "end" parameter.
4342 <tui_source_window_iterator>: Take iterator.
4343 <operator*, advance>: Update.
4344 <m_iter>: Change type.
4345 <m_end>: New field.
4346 (struct tui_source_windows) <begin, end>: Update.
4347 * tui/tui-layout.c (tui_windows): New global.
4348 (tui_apply_current_layout): Clear tui_windows.
4349 (tui_layout_window::apply): Update tui_windows.
4350 * tui/tui-data.h (tui_windows): Declare.
4351 (all_tui_windows): Now inline function.
4352 (class tui_window_iterator, struct all_tui_windows): Remove.
4353
7c043ba6
TT
43542020-02-22 Tom Tromey <tom@tromey.com>
4355
4356 PR tui/17850:
4357 * tui/tui-win.c (tui_gen_win_info::max_width): New method.
4358 * tui/tui-layout.h (class tui_layout_base) <get_sizes>: Add
4359 "height" argument.
4360 (class tui_layout_window) <get_sizes>: Likewise.
4361 (class tui_layout_split) <tui_layout_split>: Add "vertical"
4362 argument.
4363 <get_sizes>: Add "height" argument.
4364 <m_vertical>: New field.
4365 * tui/tui-layout.c (tui_layout_split::clone): Update.
4366 (tui_layout_split::get_sizes): Add "height" argument.
4367 (tui_layout_split::adjust_size, tui_layout_split::apply): Update.
4368 (tui_new_layout_command): Parse "-horizontal".
4369 (_initialize_tui_layout): Update help string.
4370 (tui_layout_split::specification): Add "-horizontal" when needed.
4371 * tui/tui-layout.c (tui_layout_window::get_sizes): Add "height"
4372 argument.
4373 * tui/tui-data.h (struct tui_gen_win_info) <max_width, min_width>:
4374 New methods.
4375
6bc56648
TT
43762020-02-22 Tom Tromey <tom@tromey.com>
4377
4378 * tui/tui-layout.h (enum tui_adjust_result): New.
4379 (class tui_layout_base) <adjust_size>: Return tui_adjust_result.
4380 (class tui_layout_window) <adjust_size>: Return
4381 tui_adjust_result. Rewrite.
4382 (class tui_layout_split) <adjust_size>: Return tui_adjust_result.
4383 * tui/tui-layout.c (tui_layout_split::adjust_size): Update.
4384
c22fef7e
TT
43852020-02-22 Tom Tromey <tom@tromey.com>
4386
4387 * tui/tui-layout.h (class tui_layout_split) <add_split>: Change
4388 parameter and return types.
4389 (class tui_layout_base) <specification>: Add "depth".
4390 (class tui_layout_window) <specification>: Add "depth".
4391 (class tui_layout_split) <specification>: Add "depth".
4392 * tui/tui-layout.c (tui_layout_split::add_split): Change parameter
4393 and return types.
4394 (tui_new_layout_command): Parse sub-layouts.
4395 (_initialize_tui_layout): Update help string.
4396 (tui_layout_window::specification): Add "depth".
4397 (add_layout_command): Update.
4398
ee325b61
TT
43992020-02-22 Tom Tromey <tom@tromey.com>
4400
4401 * NEWS: Add "tui new-layout" item.
4402 * tui/tui-layout.c (add_layout_command): Return cmd_list_element.
4403 Add new-layout command to help text.
4404 (validate_window_name): New function.
4405 (tui_new_layout_command): New function.
4406 (_initialize_tui_layout): Register "new-layout".
4407 (tui_layout_window::specification): New method.
4408 (tui_layout_window::specification): New method.
4409 * tui/tui-layout.h (class tui_layout_base) <specification>: New
4410 method.
4411 (class tui_layout_window) <specification>: New method.
4412 (class tui_layout_split) <specification>: New method.
4413
416eb92d
TT
44142020-02-22 Tom Tromey <tom@tromey.com>
4415
4416 * tui/tui.c (tui_enable): Call tui_set_initial_layout.
4417 * tui/tui-win.c (window_name_completer): Update comment.
4418 * tui/tui-layout.h (class tui_layout_base) <replace_window>:
4419 Declare method.
4420 (class tui_layout_window) <replace_window>: Likewise.
4421 (class tui_layout_split) <replace_window>: Likewise.
4422 (tui_set_layout): Don't declare.
4423 (tui_set_initial_layout): Declare function.
4424 * tui/tui-layout.c (layouts, applied_skeleton, src_regs_layout)
4425 (asm_regs_layout): New globals.
4426 (tui_current_layout, show_layout): Remove.
4427 (tui_set_layout, tui_add_win_to_layout): Rewrite.
4428 (find_layout, tui_apply_layout): New function.
4429 (layout_completer): Remove.
4430 (tui_next_layout): Reimplement.
4431 (tui_next_layout_command): New function.
4432 (tui_set_initial_layout, tui_prev_layout_command): New functions.
4433 (tui_regs_layout): Reimplement.
4434 (tui_regs_layout_command): New function.
4435 (extract_display_start_addr): Rewrite.
4436 (next_layout, prev_layout): Remove.
4437 (tui_layout_window::replace_window): New method.
4438 (tui_layout_split::replace_window): New method.
4439 (destroy_layout): New function.
4440 (layout_list): New global.
4441 (add_layout_command): New function.
4442 (initialize_layouts): Update.
4443 (tui_layout_command): New function.
4444 (_initialize_tui_layout): Install "layout" commands.
4445 * tui/tui-data.h (enum tui_layout_type): Remove.
4446 (tui_current_layout): Don't declare.
4447
0dbc2fc7
TT
44482020-02-22 Tom Tromey <tom@tromey.com>
4449
4450 * tui/tui-regs.c (tui_reg_layout): Remove.
4451 (tui_reg_command): Use tui_regs_layout.
4452 * tui/tui-layout.h (tui_reg_command): Declare.
4453 * tui/tui-layout.c (tui_reg_command): New function.
4454
5afe342e
TT
44552020-02-22 Tom Tromey <tom@tromey.com>
4456
4457 * tui/tui.c (tui_rl_delete_other_windows): Call
4458 tui_remove_some_windows.
4459 * tui/tui-layout.h (class tui_layout_base) <remove_windows>:
4460 Declare method.
4461 (class tui_layout_window) <remove_windows>: New method.
4462 (class tui_layout_split) <remove_windows>: Declare.
4463 (tui_remove_some_windows): Declare.
4464 * tui/tui-layout.c (tui_remove_some_windows): New function.
4465 (tui_layout_split::remove_windows): New method.
4466
427326a8
TT
44672020-02-22 Tom Tromey <tom@tromey.com>
4468
4469 * tui/tui.c (tui_rl_change_windows): Call tui_next_layout.
4470 * tui/tui-layout.h (tui_next_layout): Declare.
4471 * tui/tui-layout.c (tui_next_layout): New function.
4472
3fe12b6d
TT
44732020-02-22 Tom Tromey <tom@tromey.com>
4474
4475 * tui/tui-regs.c (tui_data_window::display_registers_from): Use
4476 correct coordinates.
4477
59b8b5d2
TT
44782020-02-22 Tom Tromey <tom@tromey.com>
4479
4480 * tui/tui-layout.h (tui_add_win_to_layout): Add comment.
4481 * tui/tui-layout.c (tui_add_win_to_layout): Add assert. Remove
4482 DATA_WIN case.
4483
2a3d458b
TT
44842020-02-22 Tom Tromey <tom@tromey.com>
4485
4486 * tui/tui-disasm.c (tui_get_low_disassembly_address): Use
4487 TUI_DISASM_WIN, not tui_win_list.
4488
3f0cbb04
TT
44892020-02-22 Tom Tromey <tom@tromey.com>
4490
4491 * valprint.c (generic_val_print_enum_1)
4492 (val_print_type_code_flags): Style member names.
4493 * rust-lang.c (val_print_struct, rust_print_enum)
4494 (rust_print_struct_def, rust_internal_print_type): Style member
4495 names.
4496 * p-valprint.c (pascal_object_print_value_fields): Style member
4497 names. Only call fprintf_symbol_filtered for static members.
4498 * m2-typeprint.c (m2_record_fields, m2_enum): Style member names.
4499 * f-valprint.c (f_val_print): Style member names.
4500 * f-typeprint.c (f_type_print_base): Style member names.
4501 * cp-valprint.c (cp_print_value_fields): Style member names. Only
4502 call fprintf_symbol_filtered for static members.
4503 (cp_print_class_member): Style member names.
4504 * c-typeprint.c (c_print_type_1, c_type_print_base_1): Style
4505 member names.
4506 * ada-valprint.c (ada_print_scalar): Style enum names.
4507 (ada_val_print_enum): Likewise.
4508 * ada-typeprint.c (print_enum_type): Style enum names.
4509
d4d947ae
TT
45102020-02-21 Tom Tromey <tom@tromey.com>
4511
4512 * psympriv.h (struct partial_symtab): Update comment.
4513
e94e944b
TT
45142020-02-21 Tom Tromey <tromey@adacore.com>
4515
4516 * mips-tdep.h (mips_pc_is_mips16, mips_pc_is_micromips): Parameter
4517 type is CORE_ADDR.
4518
1eb73179
TV
45192020-02-21 Tom de Vries <tdevries@suse.de>
4520
4521 PR gdb/25534
4522 * psymtab.c (partial_symtab::read_dependencies): Don't read dependency
4523 if dependencies[i]->user != NULL.
4524
4f180d53
AT
45252020-02-21 Ali Tamur <tamur@google.com>
4526
4527 * dwarf2/read.c (dwarf2_name): Add null check.
4528
22b6cd70
TT
45292020-02-20 Tom Tromey <tom@tromey.com>
4530
4531 * dwarf2/read.c (dwarf2_find_containing_comp_unit): Use ">", not
4532 ">=", in binary search.
4533 (dwarf2_find_containing_comp_unit): New overload.
4534 (run_test): New self-test.
4535 (_initialize_dwarf2_read): Register new test.
4536
bd0cf5a6
NC
45372020-02-20 Nelson Chu <nelson.chu@sifive.com>
4538
4539 * riscv-tdep.c: Updated since the DECLARE_CSR is changed.
4540 * riscv-tdep.h: Likewise.
4541 * features/riscv/rebuild-csr-xml.sh: Generate the 64bit-csr.xml without
4542 rv32-only CSR.
4543 * features/riscv/64bit-csr.xml: Regenerated.
4544
3f702acd
SDJ
45452020-02-20 Sergio Durigan Junior <sergiodj@redhat.com>
4546 Tom Tromey <tom@tromey.com>
4547
4548 * utils.c (fputs_maybe_filtered): Call 'stream->puts' instead
4549 of 'fputc_unfiltered'.
4550 (putchar_unfiltered): Call 'fputc_unfiltered'.
4551 (fputc_unfiltered): Call 'fputs_unfiltered'.
4552
d13c7322
AB
45532020-02-20 Andrew Burgess <andrew.burgess@embecosm.com>
4554
4555 * config.in: Regenerate.
4556 * configure: Regenerate.
4557 * configure.ac: Add --with-python-libdir option.
4558 * main.c: Use WITH_PYTHON_LIBDIR.
4559
869d8950
TT
45602020-02-19 Tom Tromey <tom@tromey.com>
4561
4562 * symtab.c (general_symbol_info::compute_and_set_names): Use
4563 obstack_strndup. Simplify call to symbol_set_demangled_name.
4564
298e9637
SM
45652020-02-19 Simon Marchi <simon.marchi@efficios.com>
4566
4567 * dwarf2/read.c (allocate_signatured_type_table,
4568 allocate_dwo_unit_table, allocate_type_unit_groups_table,
4569 allocate_dwo_file_hash_table, allocate_dwp_loaded_cutus_table):
4570 Remove objfile parameter, update all callers.
4571
08410482
DE
45722020-02-19 Doug Evans <dje@google.com>
4573
4574 PR rust/25535
4575 * rust-lang.c (rust_print_enum): Apply embedded_offset to
4576 rust_enum_variant calculation.
4577
dfdeeca1
TT
45782020-02-19 Tom Tromey <tromey@adacore.com>
4579
4580 * mips-tdep.h (mips_pc_is_mips): Parameter type is CORE_ADDR.
4581
2ef5453b
TT
45822020-02-19 Tom Tromey <tromey@adacore.com>
4583
4584 * ada-lang.c (cache_symbol): Use obstack_strdup.
4585
9f1528a1
AB
45862020-02-19 Andrew Burgess <andrew.burgess@embecosm.com>
4587
4588 * configure: Regenerate.
4589
d3c22fa8
TT
45902020-02-19 Tom Tromey <tromey@adacore.com>
4591
4592 * python/python.c (do_start_initialization): Use XNEWVEC. Remove
4593 NULL check.
4594
bf84f706
MR
45952020-02-19 Maciej W. Rozycki <macro@wdc.com>
4596
4597 * NEWS: Mention RISC-V GNU/Linux GDBserver support.
4598
d1c9b20f
AB
45992020-02-19 Andrew Burgess <andrew.burgess@embecosm.com>
4600
4601 * arch/riscv.c (struct riscv_gdbarch_features_hasher): Only define
4602 if GDBSERVER is not defined.
4603 (riscv_tdesc_cache): Likewise, also store const target_desc.
4604 (STATIC_IN_GDB): Define.
4605 (riscv_create_target_description): Update declaration with
4606 STATIC_IN_GDB.
4607 (riscv_lookup_target_description): New function, only define if
4608 GDBSERVER is not defined.
4609 * arch/riscv.h (riscv_create_target_description): Declare only
4610 when GDBSERVER is defined.
4611 (riscv_lookup_target_description): New declaration when GDBSERVER
4612 is not defined.
4613 * nat/riscv-linux-tdesc.c (riscv_linux_read_description): Rename to...
4614 (riscv_linux_read_features): ...this, and return
4615 riscv_gdbarch_features instead of target_desc.
4616 * nat/riscv-linux-tdesc.h: Include 'arch/riscv.h'.
4617 (riscv_linux_read_description): Rename to...
4618 (riscv_linux_read_features): ...this.
4619 * riscv-linux-nat.c (riscv_linux_nat_target::read_description):
4620 Update to use riscv_gdbarch_features and
4621 riscv_lookup_target_description.
4622 * riscv-tdep.c (riscv_find_default_target_description): Use
4623 riscv_lookup_target_description instead of
4624 riscv_create_target_description.
4625
373d7ac0
SM
46262020-02-18 Simon Marchi <simon.marchi@efficios.com>
4627
4628 * valprint.c (generic_val_print_enum_1): When printing a flag
4629 enum with value 0 and there is no enumerator with value 0, print
4630 just "0" instead of "(unknown: 0x0)".
4631
b29a2df0
SM
46322020-02-18 Simon Marchi <simon.marchi@efficios.com>
4633
4634 * valprint.c (generic_val_print_enum_1): Print unknown part of
4635 flag enum in hex.
4636
6740f0cc
SM
46372020-02-18 Simon Marchi <simon.marchi@efficios.com>
4638
4639 * dwarf2/read.c (update_enumeration_type_from_children): Allow
4640 flag enums to contain duplicate enumerators.
4641 * valprint.c (generic_val_print_enum_1): Update comment.
4642
edd45eb0
SM
46432020-02-18 Simon Marchi <simon.marchi@efficios.com>
4644
4645 * dwarf2/read.c: Include "count-one-bits.h".
4646 (update_enumeration_type_from_children): If an enumerator has
4647 multiple bits set, don't treat the enumeration as a "flag enum".
4648 * valprint.c (generic_val_print_enum_1): Assert that enumerators
4649 of flag enums have 0 or 1 bit set.
4650
6d0cf446
BE
46512020-02-18 Bernd Edlinger <bernd.edlinger@hotmail.de>
4652
4653 * aarch64-tdep.c (aarch64_displaced_step_copy_insn): Use an explicit
4654 conversion.
4655 * amd64-tdep.c (amd64_displaced_step_copy_insn): Likewise.
4656 * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Likewise.
4657 * i386-tdep.c (i386_displaced_step_copy_insn): Likewise.
4658 * rs6000-tdep.c (ppc_displaced_step_copy_insn): Likewise.
4659 * s390-tdep.c (s390_displaced_step_copy_insn): Likewise.
4660
7001c1b7
SM
46612020-02-18 Simon Marchi <simon.marchi@efficios.com>
4662
4663 * MAINTAINERS: Change palmer@sifive.com to palmer@dabbelt.com.
4664
fdb61c6c
SM
46652020-02-14 Simon Marchi <simon.marchi@efficios.com>
4666
4667 * aarch64-tdep.c (aarch64_displaced_step_copy_insn): Use
4668 displaced_step_closure_up.
4669 * aarch64-tdep.h (aarch64_displaced_step_copy_insn): Likewise.
4670 (struct displaced_step_closure_up):
4671 * amd64-tdep.c (amd64_displaced_step_copy_insn): Likewise.
4672 * amd64-tdep.h (amd64_displaced_step_copy_insn): Likewise.
4673 * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn):
4674 Likewise.
4675 * gdbarch.sh (displaced_step_copy_insn): Likewise.
4676 * gdbarch.c, gdbarch.h: Re-generate.
4677 * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Use
4678 displaced_step_closure_up.
4679 * i386-tdep.c (i386_displaced_step_copy_insn): Likewise.
4680 * i386-tdep.h (i386_displaced_step_copy_insn): Likewise.
4681 * infrun.h (displaced_step_closure_up): New type alias.
4682 (struct displaced_step_inferior_state) <step_closure>: Change
4683 type to displaced_step_closure_up.
4684 * rs6000-tdep.c (ppc_displaced_step_copy_insn): Use
4685 displaced_step_closure_up.
4686 * s390-tdep.c (s390_displaced_step_copy_insn): Likewise.
4687
a4a38eb4
TT
46882020-02-14 Tom Tromey <tom@tromey.com>
4689
4690 * minidebug.c (gnu_debug_key): New global.
4691 (find_separate_debug_file_in_section): Use it.
4692
e8217e61
SM
46932020-02-14 Simon Marchi <simon.marchi@efficios.com>
4694
4695 * gdbarch.sh (displaced_step_copy_insn): Change return type to an
4696 std::unique_ptr.
4697 * gdbarch.c: Re-generate.
4698 * gdbarch.h: Re-generate.
4699 * infrun.c (displaced_step_prepare_throw): Adjust to std::unique_ptr
4700 change.
4701 * aarch64-tdep.c (aarch64_displaced_step_copy_insn): Change return
4702 type to std::unique_ptr.
4703 * aarch64-tdep.h (aarch64_displaced_step_copy_insn): Likewise.
4704 * amd64-tdep.c (amd64_displaced_step_copy_insn): Likewise.
4705 * amd64-tdep.h (amd64_displaced_step_copy_insn): Likewise.
4706 * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Likewise.
4707 * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Likewise.
4708 * i386-tdep.c (i386_displaced_step_copy_insn): Likewise.
4709 * i386-tdep.h (i386_displaced_step_copy_insn): Likewise.
4710 * rs6000-tdep.c (ppc_displaced_step_copy_insn): Likewise.
4711 * s390-tdep.c (s390_displaced_step_copy_insn): Likewise.
4712
d8d83535
SM
47132020-02-14 Simon Marchi <simon.marchi@efficios.com>
4714
4715 * infrun.c (get_displaced_step_closure_by_addr): Adjust to
4716 std::unique_ptr.
4717 (displaced_step_clear): Rename to...
4718 (displaced_step_reset): ... this. Just call displaced->reset ().
4719 (displaced_step_clear_cleanup): Rename to...
4720 (displaced_step_reset_cleanup): ... this.
4721 (displaced_step_prepare_throw): Adjust to std::unique_ptr.
4722 (displaced_step_fixup): Likewise.
4723 (resume_1): Likewise.
4724 (handle_inferior_event): Restore child's memory before calling
4725 displaced_step_fixup on the parent.
4726 * infrun.h (displaced_step_inferior_state) <reset>: Adjust
4727 to std::unique_ptr.
4728 <step_closure>: Change type to std::unique_ptr.
4729
5f661e03
SM
47302020-02-14 Simon Marchi <simon.marchi@efficios.com>
4731
4732 * arm-tdep.c: Include count-one-bits.h.
4733 (cleanup_block_store_pc): Use count_one_bits.
4734 (cleanup_block_load_pc): Use count_one_bits.
4735 (arm_copy_block_xfer): Use count_one_bits.
4736 (thumb2_copy_block_xfer): Use count_one_bits.
4737 (thumb_copy_pop_pc_16bit): Use count_one_bits.
4738 * arch/arm-get-next-pcs.c: Include count-one-bits.h.
4739 (thumb_get_next_pcs_raw): Use count_one_bits.
4740 (arm_get_next_pcs_raw): Use count_one_bits_l.
4741 * arch/arm.c (bitcount): Remove.
4742 * arch/arm.h (bitcount): Remove.
4743
8084e579
TT
47442020-02-14 Tom Tromey <tromey@adacore.com>
4745
4746 * dwarf2/frame-tailcall.c (dwarf2_tailcall_sniffer_first):
4747 Update.
4748 * dwarf2/loc.h (call_site_find_chain): Return unique_xmalloc_ptr.
4749 * dwarf2/loc.c (call_site_find_chain_1): Return
4750 unique_xmalloc_ptr.
4751 (call_site_find_chain): Likewise.
4752
258bf0ee
RB
47532020-02-14 Richard Biener <rguenther@suse.de>
4754
4755 * dwarf2/read.c (lnp_state_machine::handle_special_opcode): Apply CSE
4756 on expression with division operators.
4757
f98a8458
AKS
47582020-02-13 Alok Kumar Sharma <AlokKumar.Sharma@amd.com>
4759
4760 * MAINTAINERS (Write After Approval): Adding myself.
4761
d1437c0e
TT
47622020-02-12 Tom Tromey <tom@tromey.com>
4763
4764 * event-loop.c (event_data, gdb_event, event_handler_func):
4765 Remove.
4766
3d4560f7
TT
47672020-02-12 Tom Tromey <tom@tromey.com>
4768
4769 * dwarf2/frame.c (dwarf2_frame_bfd_data): New global.
4770 (dwarf2_frame_objfile_data): Add comment.
4771 (find_comp_unit, set_comp_unit): New functions.
4772 (dwarf2_frame_find_fde): Use find_comp_unit.
4773 (dwarf2_build_frame_info): Use set_comp_unit.
4774
21982304
TT
47752020-02-12 Tom Tromey <tom@tromey.com>
4776
4777 * dwarf2/frame.c (struct comp_unit) <objfile>: Remove.
4778 (comp_unit): Don't initialize objfile.
4779 (execute_cfa_program): Add text_offset parameter.
4780 (execute_cfa_program_test, dwarf2_fetch_cfa_info)
4781 (dwarf2_frame_cache): Update.
4782 (dwarf2_build_frame_info): Don't set "objfile" member.
4783
4debb237
TT
47842020-02-12 Tom Tromey <tom@tromey.com>
4785
4786 * dwarf2/frame.c (decode_frame_entry_1): Add gdbarch parameter.
4787 (decode_frame_entry): Likewise.
4788 (dwarf2_build_frame_info): Update.
4789
0d404d44
TT
47902020-02-12 Tom Tromey <tom@tromey.com>
4791
4792 * dwarf2/frame.c (struct comp_unit) <obstack>: New member.
4793 (decode_frame_entry_1): Use the comp_unit obstack.
4794
a7a3ae5c
TT
47952020-02-12 Tom Tromey <tom@tromey.com>
4796
4797 * dwarf2/frame.c (struct comp_unit): Add initializers and
4798 constructor.
4799 (dwarf2_frame_objfile_data): Store a comp_unit.
4800 (dwarf2_frame_find_fde): Update.
4801 (dwarf2_build_frame_info): Use "new".
4802
a9d65418
TT
48032020-02-12 Tom Tromey <tom@tromey.com>
4804
4805 * dwarf2/frame.c (struct dwarf2_fde_table): Remove.
4806 (dwarf2_fde_table): Typedef for std::vector.
4807 (dwarf2_frame_objfile_data): Remove the deleter. Now static.
4808 (dwarf2_frame_find_fde, add_fde, decode_frame_entry_1)
4809 (decode_frame_entry): Update.
4810 (dwarf2_build_frame_info): Use "new".
4811
7559c217
CB
48122020-02-12 Christian Biesinger <cbiesinger@google.com>
4813
4814 * arm-tdep.c (arm_gdbarch_init): Update.
4815 * arm-tdep.h (struct gdbarch_tdep) <have_fpa_registers,
4816 have_wmmx_registers, have_vfp_pseudos, have_neon_pseudos,
4817 have_neon, is_m>: Change to bool.
4818
aeefc73c
CB
48192020-02-12 Christian Biesinger <cbiesinger@google.com>
4820
4821 * arm-tdep.c (arm_dump_tdep): Print more fields of tdep.
4822
d27b8e5f
TT
48232020-02-12 Tom Tromey <tom@tromey.com>
4824
4825 * dwarf2/loc.c (struct dwarf_expr_baton): Remove.
4826
cd5900f3
HD
48272020-02-12 Hannes Domani <ssbssa@yahoo.de>
4828
4829 * windows-tdep.c (struct windows_gdbarch_data): Add tib_ptr_type.
4830 (windows_get_tlb_type): Use windows_gdbarch_data->tib_ptr_type.
4831
f056b22b
TT
48322020-02-11 Tom Tromey <tom@tromey.com>
4833
4834 * psymtab.h: Update comment.
4835
f92ff6b5
TT
48362020-02-11 Tom Tromey <tom@tromey.com>
4837
4838 * gdb_obstack.h (struct auto_obstack): Use
4839 DISABLE_COPY_AND_ASSIGN.
4840
3fd6912b
TT
48412020-02-11 Tom Tromey <tom@tromey.com>
4842
4843 * dwarf2/frame.h (struct objfile): Don't forward declare.
4844
69ed9b74
CB
48452020-02-11 Christian Biesinger <cbiesinger@google.com>
4846
4847 * cris-tdep.c (cris_supply_gregset): Change signature to match
4848 what struct regset expects.
4849 (cris_regset): New struct.
4850 (fetch_core_registers): Remove.
4851 (cris_iterate_over_regset_sections): New function.
4852 (_initialize_cris_tdep): Don't call deprecated_add_core_fns.
4853 (cris_gdbarch_init): Call set_gdbarch_iterate_over_regset_sections.
4854
bda874f6
CB
48552020-02-11 Christian Biesinger <cbiesinger@google.com>
4856
4857 * arch/arm.h (enum gdb_regnum): Add comment for the FP0..7
4858 registers.
4859
754e1564
CB
48602020-02-11 Christian Biesinger <cbiesinger@google.com>
4861
4862 * arm-tdep.c (arm_dump_tdep): Add \n in fprintf.
4863
8ddd8e0e
SM
48642020-02-11 Simon Marchi <simon.marchi@efficios.com>
4865
4866 * configure: Re-generate.
4867
898e7f60
SM
48682020-02-11 Simon Marchi <simon.marchi@efficios.com>
4869
4870 * configure: Re-generate.
4871
58df732b
SM
48722020-02-11 Simon Marchi <simon.marchi@efficios.com>
4873
4874 * acinclude: Update warning.m4 path.
4875 * warning.m4: Move to gdbsupport.
4876
da5bd37e
TT
48772020-02-11 Tom Tromey <tromey@adacore.com>
4878
4879 * remote.c (remote_console_output): Update.
4880 * printcmd.c (printf_command): Update.
4881 * event-loop.c (gdb_wait_for_event): Update.
4882 * linux-nat.c (sigchld_handler): Update.
4883 * remote-sim.c (gdb_os_write_stdout): Update.
4884 (gdb_os_flush_stdout): Update.
4885 (gdb_os_flush_stderr): Update.
4886 (gdb_os_write_stderr): Update.
4887 * exceptions.c (print_exception): Update.
4888 * remote-fileio.c (remote_fileio_func_read): Update.
4889 (remote_fileio_func_write): Update.
4890 * tui/tui.c (tui_enable): Update.
4891 * tui/tui-interp.c (tui_interp::init): Update.
4892 * utils.c (init_page_info): Update.
4893 (putchar_unfiltered, fputc_unfiltered): Update.
4894 (gdb_flush): Update.
4895 (emit_style_escape): Update.
4896 (flush_wrap_buffer, fputs_maybe_filtered): Update.
4897 * ui-file.c (ui_file_isatty, ui_file_read, ui_file_write)
4898 (ui_file_write_async_safe, ui_file_flush, ui_file_puts): Remove.
4899 (stderr_file::write): Update.
4900 (stderr_file::puts): Update.
4901 * ui-file.h (ui_file_isatty, ui_file_write)
4902 (ui_file_write_async_safe, ui_file_read, ui_file_flush)
4903 (ui_file_puts): Don't declare.
4904
85f0dd3c
TV
49052020-02-10 Tom de Vries <tdevries@suse.de>
4906
4907 * dwarf2/read.c (process_psymtab_comp_unit_reader): Cast concat NULL
4908 sentinel to char *.
4909
2e927613
TV
49102020-02-09 Tom de Vries <tdevries@suse.de>
4911
4912 * dwarf2read.c (process_psymtab_comp_unit_reader): Append CU offset to
4913 filename if it matches "<artificial>".
4914
6bafc845
HD
49152020-02-09 Hannes Domani <ssbssa@yahoo.de>
4916
4917 * windows-tdep.c (struct enum_value_name): New struct.
4918 (create_enum): New function.
4919 (windows_get_siginfo_type): Create and use enum types.
4920
7928d571
HD
49212020-02-09 Hannes Domani <ssbssa@yahoo.de>
4922
4923 * NEWS: Mention $_siginfo support for Windows.
4924 * windows-nat.c (handle_exception): Set siginfo_er.
4925 (windows_nat_target::mourn_inferior): Reset siginfo_er.
4926 (windows_xfer_siginfo): New function.
4927 (windows_nat_target::xfer_partial): Call windows_xfer_siginfo.
4928 * windows-tdep.c (struct windows_gdbarch_data): New struct.
4929 (init_windows_gdbarch_data): New function.
4930 (get_windows_gdbarch_data): New function.
4931 (windows_get_siginfo_type): New function.
4932 (windows_init_abi): Register windows_get_siginfo_type.
4933 (_initialize_windows_tdep): Register init_windows_gdbarch_data.
4934
6751ebae
TT
49352020-02-08 Tom Tromey <tom@tromey.com>
4936
4937 * dwarf2/read.c (class cutu_reader) <cutu_reader,
4938 init_tu_and_read_dwo_dies>: Remove "keep" parameter.
4939 <keep>: Declare method.
4940 <m_keep>: Remove member.
4941 <~cutu_reader>: Remove.
4942 (cutu_reader::init_tu_and_read_dwo_dies): Update.
4943 (cutu_reader::cutu_reader): Update.
4944 (cutu_reader::keep): Rename from ~cutu_reader.
4945 (process_psymtab_comp_unit, build_type_psymtabs_1)
4946 (process_skeletonless_type_unit, load_partial_comp_unit)
4947 (load_full_comp_unit, dwarf2_read_addr_index)
4948 (read_signatured_type): Update.
4949
135f5437
TT
49502020-02-08 Tom Tromey <tom@tromey.com>
4951
4952 * dwarf2/read.c (process_psymtab_comp_unit_reader): Remove
4953 "want_partial_unit" parameter.
4954 (process_psymtab_comp_unit): Change want_partial_unit to bool.
4955 Inline check for DW_TAG_partial_unit.
4956 (dwarf2_build_psymtabs_hard, scan_partial_symbols): Update.
4957
9f66ff1c
TT
49582020-02-08 Tom Tromey <tom@tromey.com>
4959
4960 * dwarf2/read.c (read_n_bytes, read_direct_string): Move to
4961 read.c.
4962 * dwarf2/leb.h (read_n_bytes, read_direct_string): Move from
4963 read.c.
4964
c8a7a66f
TT
49652020-02-08 Tom Tromey <tom@tromey.com>
4966
4967 * dwarf2/read.c (read_address): Move to comp-unit.c.
4968 (dwarf2_rnglists_process, dwarf2_ranges_process)
4969 (read_attribute_value, dwarf_decode_lines_1)
4970 (var_decode_location, decode_locdesc): Update.
4971 * dwarf2/comp-unit.c (comp_unit_head::read_address): Move from
4972 read.c. Remove "cu" parameter.
4973 * dwarf2/comp-unit.h (struct comp_unit_head) <read_address>: New
4974 method.
4975
8266302d
TT
49762020-02-08 Tom Tromey <tom@tromey.com>
4977
4978 * dwarf2/read.c (read_attribute_value, read_indirect_string)
4979 (read_indirect_line_string): Update.
4980 * dwarf2/comp-unit.c (read_offset): Remove.
4981 (read_comp_unit_head): Update.
4982 * dwarf2/comp-unit.h (struct comp_unit_head) <read_offset>: New
4983 method.
4984 (read_offset): Don't declare.
4985
4057dfde
TT
49862020-02-08 Tom Tromey <tom@tromey.com>
4987
4988 * Makefile.in (COMMON_SFILES): Add dwarf2/comp-unit.c.
4989 * dwarf2/read.c (struct comp_unit_head): Move to
4990 dwarf2/comp-unit.h.
4991 (enum class rcuh_kind): Move to comp-unit.h.
4992 (get_cu_length, offset_in_cu_p): Now methods on comp_unit_head.
4993 (read_comp_unit_head, error_check_comp_unit_head)
4994 (read_and_check_comp_unit_head): Move to comp-unit.c.
4995 (read_offset, dwarf_unit_type_name): Likewise.
4996 (create_debug_type_hash_table, read_cutu_die_from_dwo)
4997 (cutu_reader::cutu_reader, read_call_site_scope)
4998 (find_partial_die, follow_die_offset): Update.
4999 * dwarf2/comp-unit.h: New file, from dwarf2read.c.
5000
24aa364d
TT
50012020-02-08 Tom Tromey <tom@tromey.com>
5002
5003 * dwarf2/read.c (read_offset_1): Move to leb.c.
5004 (read_abbrev_offset, read_offset, dwarf_decode_line_header)
5005 (dwarf_decode_macro_bytes): Update.
5006 * dwarf2/leb.c (read_offset): Rename; move from read.c.
5007 * dwarf2/leb.h (read_offset): Declare.
5008
2c7d5afc
TT
50092020-02-08 Tom Tromey <tom@tromey.com>
5010
5011 * dwarf2/read.c (dwarf2_section_size): Remove.
5012 (error_check_comp_unit_head, dwarf2_symbol_mark_computed):
5013 Update.
5014 * dwarf2/section.h (struct dwarf2_section_info) <get_size>: New method.
5015
4075cb26
TT
50162020-02-08 Tom Tromey <tom@tromey.com>
5017
5018 * dwarf2/read.c (read_initial_length): Move to leb.c.
5019 * dwarf2/leb.h (read_initial_length): Declare.
5020 * dwarf2/leb.c (read_initial_length): Move from read.c. Add
5021 handle_nonstd parameter.
5022 * dwarf2/frame.c (read_initial_length): Remove.
5023 (decode_frame_entry_1): Update.
5024
09ba997f
TT
50252020-02-08 Tom Tromey <tom@tromey.com>
5026
5027 * dwarf2/loc.c (dwarf2_find_location_expression)
5028 (dwarf_evaluate_loc_desc::get_tls_address)
5029 (dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value)
5030 (rw_pieced_value, dwarf2_evaluate_loc_desc_full)
5031 (dwarf2_locexpr_baton_eval, dwarf2_evaluate_property)
5032 (dwarf2_compile_property_to_c)
5033 (dwarf2_loc_desc_get_symbol_read_needs)
5034 (dwarf2_compile_expr_to_ax, locexpr_describe_location)
5035 (locexpr_tracepoint_var_ref, locexpr_generate_c_location)
5036 (loclist_describe_location, loclist_tracepoint_var_ref)
5037 (loclist_generate_c_location): Update.
5038 * compile/compile-loc2c.c (do_compile_dwarf_expr_to_c): Update.
5039 * dwarf2/loc.h (dwarf2_per_cu_objfile, dwarf2_per_cu_addr_size)
5040 (dwarf2_per_cu_ref_addr_size, dwarf2_per_cu_offset_size)
5041 (dwarf2_per_cu_text_offset, dwarf2_version): Don't declare.
5042 * dwarf2/read.c (dwarf2_per_cu_data::objfile)
5043 (dwarf2_per_cu_data::addr_size)
5044 (dwarf2_per_cu_data::ref_addr_size)
5045 (dwarf2_per_cu_data::text_offset)
5046 (dwarf2_per_cu_data::addr_type): Now methods.
5047 (per_cu_header_read_in): Make per_cu "const".
5048 (dwarf2_version): Remove.
5049 (dwarf2_per_cu_data::int_type): Now a method.
5050 (dwarf2_per_cu_data::_addr_sized_int_type): Likewise.
5051 (set_die_type, read_array_type, read_subrange_index_type)
5052 (read_tag_string_type, read_subrange_type): Update.
5053 * dwarf2/read.h (struct dwarf2_per_cu_data) <addr_size,
5054 offset_size, ref_addr_size, text_offset, addr_type, version,
5055 objfile, int_type, addr_sized_int_type>: Declare methods.
5056
96c738c0
TT
50572020-02-08 Tom Tromey <tom@tromey.com>
5058
5059 * dwarf2/read.h (struct dwarf2_per_cu_data) <imported_symtabs>:
5060 Move earlier.
5061
8fdd972c
TT
50622020-02-08 Tom Tromey <tom@tromey.com>
5063
5064 * dwarf2/read.h (dwarf_line_debug): Declare.
5065 * Makefile.in (COMMON_SFILES): Add dwarf2/line-header.c.
5066 * dwarf2/read.c: Move line_header code to new files.
5067 (dwarf_line_debug): No longer static.
5068 * dwarf2/line-header.c: New file.
5069 * dwarf2/line-header.h: New file.
5070
03075812
TT
50712020-02-08 Tom Tromey <tom@tromey.com>
5072
5073 * dwarf2/read.c (struct line_header) <file_full_name,
5074 file_file_name>: Return unique_xmalloc_ptr.
5075 (line_header::file_file_name): Update.
5076 (line_header::file_full_name): Update.
5077 (dw2_get_file_names_reader): Update.
5078 (macro_start_file): Update.
5079
bb822404
TT
50802020-02-08 Tom Tromey <tom@tromey.com>
5081
5082 * dwarf2/read.c (struct line_header) <file_full_name,
5083 file_file_name>: Declare methods.
5084 (dw2_get_file_names_reader): Update.
5085 (file_file_name): Now a method.
5086 (file_full_name): Likewise.
5087 (macro_start_file): Update.
5088
009b64fc
TT
50892020-02-08 Tom Tromey <tom@tromey.com>
5090
5091 * dwarf2/read.c (dwarf_always_disassemble)
5092 (show_dwarf_always_disassemble): Move to loc.c.
5093 (_initialize_dwarf2_read): Move "always-disassemble" registration
5094 to loc.c.
5095 * dwarf2/read.h (dwarf_always_disassemble): Don't declare.
5096 * dwarf2/loc.c (dwarf_always_disassemble): Move from read.c. Now
5097 static.
5098 (show_dwarf_always_disassemble): Move from read.c.
5099 (_initialize_dwarf2loc): Move always-disassemble from read.c.
5100
5895093f
TT
51012020-02-08 Tom Tromey <tom@tromey.com>
5102
5103 * dwarf2/read.c (~dwarf2_per_objfile): Update.
5104 (create_quick_file_names_table): Return htab_up.
5105 (dw2_get_file_names_reader, dw2_forget_cached_source_info):
5106 Update.
5107 * dwarf2/read.h (struct dwarf2_per_objfile)
5108 <quick_file_names_table>: Now htab_up.
5109
b3b32279
TT
51102020-02-08 Tom Tromey <tom@tromey.com>
5111
5112 * dwarf2/abbrev.c (abbrev_table::read): Simplify.
5113
1d33d811
TT
51142020-02-08 Tom Tromey <tom@tromey.com>
5115
5116 * dwarf2/abbrev.c (abbrev_table): Move constructor from header.
5117 Rewrite.
5118 (abbrev_table::add_abbrev, abbrev_table::lookup_abbrev): Rewrite.
5119 * dwarf2/abbrev.h (struct abbrev_info) <next>: Remove.
5120 (abbrev_table::abbrev_table): No longer inline.
5121 (ABBREV_HASH_SIZE): Remove.
5122 (abbrev_table::m_abbrevs): Now an htab_up.
5123
86de1d91
TT
51242020-02-08 Tom Tromey <tom@tromey.com>
5125
5126 * dwarf2/read.c (read_cutu_die_from_dwo): Update.
5127 (cutu_reader): Update.
5128 (build_type_psymtabs_1): Update.
5129 * dwarf2/abbrev.c (abbrev_table::read): Rename.
5130 (abbrev_table::alloc_abbrev): Update.
5131 * dwarf2/abbrev.h (abbrev_table_up): Move earlier.
5132 (abbrev_table::read): New static method, renamed from
5133 abbrev_table_read_table.
5134 (abbrev_table::alloc_abbrev)
5135 (abbrev_table::add_abbrev): Now private.
5136 (abbrev_table::abbrev_table): Now private.
5137 (abbrev_table::m_abbrev_obstack): Now private. Rename.
5138
0335378b
TT
51392020-02-08 Tom Tromey <tom@tromey.com>
5140
5141 * dwarf2/read.c (set_die_type, get_die_type_at_offset): Update.
5142 * dwarf2/read.h (struct dwarf2_per_objfile) <die_type_hash>: Now
5143 htab_up.
5144
48b490f2
TT
51452020-02-08 Tom Tromey <tom@tromey.com>
5146
5147 * dwarf2/read.c (struct dwp_file) <loaded_cus, loaded_tus>: Now
5148 htab_up.
5149 (lookup_dwo_unit_in_dwp): Update.
5150 (allocate_dwp_loaded_cutus_table): Return htab_up. Don't allocate
5151 on obstack.
5152
bc68fb19
TT
51532020-02-08 Tom Tromey <tom@tromey.com>
5154
5155 * dwarf2/read.c (allocate_dwo_file_hash_table): Don't allocate on
5156 obstack.
5157
d15acc42
TT
51582020-02-08 Tom Tromey <tom@tromey.com>
5159
5160 * dwarf2/read.c (~dwarf2_per_objfile): Don't delete
5161 line_header_hash.
5162 (handle_DW_AT_stmt_list): Update. Don't allocate on obstack.
5163 * dwarf2/read.h (struct dwarf2_per_objfile) <line_header_hash>:
5164 Change type to htab_up.
5165
eaa5fa8b
TT
51662020-02-08 Tom Tromey <tom@tromey.com>
5167
5168 * dwarf2/read.c (allocate_type_unit_groups_table): Return
5169 htab_up. Don't allocate on obstack.
5170 (get_type_unit_group, dwarf2_build_psymtabs_hard): Update.
5171 * dwarf2/read.h (struct dwarf2_per_objfile) <type_unit_groups>:
5172 Change type to htab_up.
5173
b0b6a987
TT
51742020-02-08 Tom Tromey <tom@tromey.com>
5175
5176 * dwarf2/read.h (struct dwarf2_per_objfile) <signatured_types>:
5177 Change type to htab_up.
5178 * dwarf2/read.c (create_signatured_type_table_from_index)
5179 (create_signatured_type_table_from_debug_names)
5180 (create_all_type_units, add_type_unit)
5181 (lookup_dwo_signatured_type, lookup_signatured_type)
5182 (process_skeletonless_type_unit): Update.
5183 (create_debug_type_hash_table, create_debug_types_hash_table):
5184 Change type of types_htab.
5185 (allocate_signatured_type_table, allocate_dwo_unit_table): Return
5186 htab_up. Don't allocate on obstack.
5187 (create_cus_hash_table): Change type of cus_htab parameter.
5188 (struct dwo_file) <cus, tus>: Now htab_up.
5189 (lookup_dwo_signatured_type, lookup_dwo_cutu)
5190 (process_dwo_file_for_skeletonless_type_units, lookup_dwo_cutu)
5191 (queue_and_load_all_dwo_tus): Update.
5192 * dwarf2/index-write.c (write_gdbindex): Update.
5193 (write_debug_names): Update.
5194
39856def
TT
51952020-02-08 Tom Tromey <tom@tromey.com>
5196
5197 * dwarf2/read.h (struct dwarf2_queue_item): Move from
5198 dwarf2/read.c. Remove "next" member. Add constructor ntad
5199 destructor.
5200 (struct dwarf2_per_objfile) <queue>: New member.
5201 * dwarf2/read.c (struct dwarf2_queue_item): Move to
5202 dwarf2/read.h.
5203 (dwarf2_queue, dwarf2_queue_tail): Remove.
5204 (class dwarf2_queue_guard): Add parameter to constructor. Use
5205 DISABLE_COPY_AND_ASSIGN.
5206 <m_per_objfile>: New member.
5207 <~dwarf2_queue_guard>: Rewrite.
5208 (dw2_do_instantiate_symtab, queue_comp_unit, process_queue):
5209 Update.
5210 (~dwarf2_queue_item): New.
5211
3e225074
TT
52122020-02-08 Tom Tromey <tom@tromey.com>
5213
5214 * dwarf2/read.c (struct die_info) <has_children>: New member.
5215 (dw2_get_file_names_reader): Remove has_children.
5216 (dw2_get_file_names): Update.
5217 (read_cutu_die_from_dwo): Remove has_children.
5218 (cutu_reader::init_tu_and_read_dwo_dies)
5219 (cutu_reader::cutu_reader): Update.
5220 (process_psymtab_comp_unit_reader, build_type_psymtabs_reader):
5221 Remove has_children.
5222 (build_type_psymtabs_1, process_skeletonless_type_unit)
5223 (load_partial_comp_unit, load_full_comp_unit): Update.
5224 (create_dwo_cu_reader): Remove has_children.
5225 (create_cus_hash_table, read_die_and_children): Update.
5226 (read_full_die_1,read_full_die): Remove has_children.
5227 (read_signatured_type): Update.
5228 (class cutu_reader) <has_children>: Remove.
5229
82ca8957
TT
52302020-02-08 Tom Tromey <tom@tromey.com>
5231
5232 * dwarf2/expr.c: Rename from dwarf2expr.c.
5233 * dwarf2/expr.h: Rename from dwarf2expr.h.
5234 * dwarf2/frame-tailcall.c: Rename from dwarf2-frame-tailcall.c.
5235 * dwarf2/frame-tailcall.h: Rename from dwarf2-frame-tailcall.h.
5236 * dwarf2/frame.c: Rename from dwarf2-frame.c.
5237 * dwarf2/frame.h: Rename from dwarf2-frame.h.
5238 * dwarf2/index-cache.c: Rename from dwarf-index-cache.c.
5239 * dwarf2/index-cache.h: Rename from dwarf-index-cache.h.
5240 * dwarf2/index-common.c: Rename from dwarf-index-common.c.
5241 * dwarf2/index-common.h: Rename from dwarf-index-common.h.
5242 * dwarf2/index-write.c: Rename from dwarf-index-write.c.
5243 * dwarf2/index-write.h: Rename from dwarf-index-write.h.
5244 * dwarf2/loc.c: Rename from dwarf2loc.c.
5245 * dwarf2/loc.h: Rename from dwarf2loc.h.
5246 * dwarf2/read.c: Rename from dwarf2read.c.
5247 * dwarf2/read.h: Rename from dwarf2read.h.
5248 * dwarf2/abbrev.c, aarch64-tdep.c, alpha-tdep.c,
5249 amd64-darwin-tdep.c, arc-tdep.c, arm-tdep.c, bfin-tdep.c,
5250 compile/compile-c-symbols.c, compile/compile-cplus-symbols.c,
5251 compile/compile-loc2c.c, cris-tdep.c, csky-tdep.c, findvar.c,
5252 gdbtypes.c, guile/scm-type.c, h8300-tdep.c, hppa-bsd-tdep.c,
5253 hppa-linux-tdep.c, i386-darwin-tdep.c, i386-linux-tdep.c,
5254 i386-tdep.c, iq2000-tdep.c, m32c-tdep.c, m68hc11-tdep.c,
5255 m68k-tdep.c, microblaze-tdep.c, mips-tdep.c, mn10300-tdep.c,
5256 msp430-tdep.c, nds32-tdep.c, nios2-tdep.c, or1k-tdep.c,
5257 riscv-tdep.c, rl78-tdep.c, rs6000-tdep.c, rx-tdep.c, s12z-tdep.c,
5258 s390-tdep.c, score-tdep.c, sh-tdep.c, sparc-linux-tdep.c,
5259 sparc-tdep.c, sparc64-linux-tdep.c, sparc64-tdep.c, tic6x-tdep.c,
5260 tilegx-tdep.c, v850-tdep.c, xstormy16-tdep.c, xtensa-tdep.c:
5261 Update.
5262 * Makefile.in (COMMON_SFILES): Update.
5263 (HFILES_NO_SRCDIR): Update.
5264
9e35d499
TT
52652020-02-08 Tom Tromey <tom@tromey.com>
5266
5267 * dwarf2read.c (struct die_reader_specs) <comp_dir>: Remove.
5268 (init_cu_die_reader, read_cutu_die_from_dwo): Update.
5269
1eba2311
TT
52702020-02-08 Tom Tromey <tom@tromey.com>
5271
5272 * dwarf2read.h (struct die_info): Don't declare.
5273
e41c2da2
TT
52742020-02-08 Tom Tromey <tom@tromey.com>
5275
5276 * dwarf2read.h (die_info_ptr): Remove typedef.
5277
4fc6c0d5
TT
52782020-02-08 Tom Tromey <tom@tromey.com>
5279
5280 * dwarf2read.c (read_call_site_scope)
5281 (handle_data_member_location, dwarf2_add_member_fn)
5282 (mark_common_block_symbol_computed, read_common_block)
5283 (attr_to_dynamic_prop, partial_die_info::read)
5284 (var_decode_location, dwarf2_fetch_die_loc_sect_off)
5285 (dwarf2_symbol_mark_computed, set_die_type): Update.
5286 * dwarf2/attribute.h (struct attribute) <form_is_block>: Declare
5287 method.
5288 (attr_form_is_block): Don't declare.
5289 * dwarf2/attribute.c (attribute::form_is_block): Now a method.
5290
cd6c91b4
TT
52912020-02-08 Tom Tromey <tom@tromey.com>
5292
5293 * dwarf2read.c (dwarf2_find_base_address, )
5294 (read_call_site_scope, rust_containing_type)
5295 (dwarf2_get_pc_bounds, dwarf2_record_block_ranges)
5296 (handle_data_member_location, dwarf2_add_member_fn)
5297 (get_alignment, read_structure_type, process_structure_scope)
5298 (mark_common_block_symbol_computed, read_common_block)
5299 (read_tag_string_type, attr_to_dynamic_prop, read_subrange_type)
5300 (partial_die_info::read, read_attribute_value, new_symbol)
5301 (lookup_die_type, dwarf2_get_ref_die_offset)
5302 (dwarf2_get_attr_constant_value, follow_die_ref_or_sig)
5303 (dwarf2_fetch_die_loc_sect_off, get_DW_AT_signature_type)
5304 (dwarf2_symbol_mark_computed): Update.
5305 * dwarf2/attribute.h (struct attribute) <value_as_address,
5306 form_is_section_offset, form_is_constant, form_is_ref>: Declare
5307 methods.
5308 (value_as_address, attr_form_is_section_offset)
5309 (attr_form_is_constant, attr_form_is_ref): Don't declare.
5310 * dwarf2/attribute.c (attribute::value_as_address)
5311 (attribute::form_is_section_offset, attribute::form_is_constant)
5312 (attribute::form_is_ref): Now methods.
5313
162dce55
TT
53142020-02-08 Tom Tromey <tom@tromey.com>
5315
5316 * dwarf2read.c (struct attribute, DW_STRING)
5317 (DW_STRING_IS_CANONICAL, DW_UNSND, DW_BLOCK, DW_SND, DW_ADDR)
5318 (DW_SIGNATURE, struct dwarf_block, attr_value_as_address)
5319 (attr_form_is_block, attr_form_is_section_offset)
5320 (attr_form_is_constant, attr_form_is_ref): Move.
5321 * dwarf2/attribute.h: New file.
5322 * dwarf2/attribute.c: New file, from dwarf2read.c.
5323 * Makefile.in (COMMON_SFILES): Add dwarf2/attribute.c.
5324
3054dd54
TT
53252020-02-08 Tom Tromey <tom@tromey.com>
5326
5327 * dwarf2read.c (abbrev_table_up, struct abbrev_info)
5328 (struct attr_abbrev, ABBREV_HASH_SIZE, struct abbrev_table):
5329 Move.
5330 (read_cutu_die_from_dwo, build_type_psymtabs_1): Update.
5331 (abbrev_table::alloc_abbrev, abbrev_table::add_abbrev)
5332 (abbrev_table::lookup_abbrev, abbrev_table_read_table): Move to
5333 abbrev.c.
5334 * dwarf2/abbrev.h: New file.
5335 * dwarf2/abbrev.c: New file, from dwarf2read.c.
5336 * Makefile.in (COMMON_SFILES): Add dwarf2/abbrev.c.
5337
96b79293
TT
53382020-02-08 Tom Tromey <tom@tromey.com>
5339
5340 * dwarf2read.c (dwarf2_section_buffer_overflow_complaint)
5341 (dwarf2_section_size, dwarf2_get_section_info)
5342 (create_signatured_type_table_from_debug_names)
5343 (create_addrmap_from_aranges, read_debug_names_from_section)
5344 (get_gdb_index_contents_from_section, read_comp_unit_head)
5345 (error_check_comp_unit_head, read_abbrev_offset)
5346 (create_debug_type_hash_table, init_cu_die_reader)
5347 (read_cutu_die_from_dwo, dwarf2_build_psymtabs_hard)
5348 (read_comp_units_from_section, create_cus_hash_table)
5349 (create_dwp_hash_table, create_dwo_unit_in_dwp_v1)
5350 (create_dwp_v2_section, dwarf2_rnglists_process)
5351 (dwarf2_ranges_process, read_die_and_siblings, read_full_die)
5352 (abbrev_table_read_table, read_indirect_string_at_offset_from)
5353 (read_indirect_string_from_dwz, read_addr_index_1)
5354 (read_str_index, dwarf_decode_line_header, skip_form_bytes)
5355 (dwarf_decode_macro_bytes, dwarf_decode_macros)
5356 (fill_in_loclist_baton): Update.
5357 * dwarf2/section.h (struct dwarf2_section_info) <get_name,
5358 get_containing_section, get_bfd_owner, get_bfd_section,
5359 get_file_name, get_id, get_flags, empty, read>: Declare methods.
5360 (dwarf2_read_section, get_section_name, get_section_file_name)
5361 (get_containing_section, get_section_bfd_owner)
5362 (get_section_bfd_section, get_section_name, get_section_file_name)
5363 (get_section_id, get_section_flags, dwarf2_section_empty_p): Don't
5364 declare.
5365 * dwarf2/section.c (dwarf2_section_info::get_containing_section)
5366 (dwarf2_section_info::get_bfd_owner)
5367 (dwarf2_section_info::get_bfd_section)
5368 (dwarf2_section_info::get_name)
5369 (dwarf2_section_info::get_file_name, dwarf2_section_info::get_id)
5370 (dwarf2_section_info::get_flags, dwarf2_section_info::empty)
5371 (dwarf2_section_info::read): Now methods.
5372 * dwarf-index-write.c (class debug_names): Update.
5373
2c86cff9
TT
53742020-02-08 Tom Tromey <tom@tromey.com>
5375
5376 * dwarf2read.h (struct dwarf2_section_info, dwarf2_read_section):
5377 Move to dwarf2/section.h.
5378 * dwarf2read.c (get_containing_section, get_section_bfd_owner)
5379 (get_section_bfd_section, get_section_name)
5380 (get_section_file_name, get_section_id, get_section_flags)
5381 (dwarf2_section_empty_p, dwarf2_read_section): Moe to
5382 dwarf2/section.c.
5383 * dwarf2/section.h: New file.
5384 * dwarf2/section.c: New file, from dwarf2read.c.
5385 * Makefile.in (COMMON_SFILES): Add dwarf2/section.c.
5386
f4382c45
TT
53872020-02-08 Tom Tromey <tom@tromey.com>
5388
5389 * dwarf2read.h (read_unsigned_leb128): Don't declare.
5390 * dwarf2read.c (read_1_byte, read_1_signed_byte, read_2_bytes)
5391 (read_2_signed_bytes, read_3_bytes, read_4_bytes)
5392 (read_4_signed_bytes, read_8_bytes): Move to dwarf2/leb.h.
5393 (read_unsigned_leb128, read_signed_leb128): Move to dwarf2/leb.c.
5394 * dwarf2/leb.h: New file, from dwarf2read.c.
5395 * dwarf2/leb.c: New file, from dwarf2read.c.
5396 * dwarf2-frame.c (read_1_byte, read_4_bytes, read_8_bytes):
5397 Remove.
5398 * Makefile.in (CONFIG_SRC_SUBDIR): Add dwarf2.
5399 (COMMON_SFILES): Add dwarf2/leb.c.
5400
01840b7a
JB
54012020-02-08 Joel Brobecker <brobecker@adacore.com>
5402
5403 GDB 9.1 released.
5404
dfcb27e4
IB
54052020-02-05 Iain Buclaw <ibuclaw@gdcproject.org>
5406
5407 PR gdb/25190:
aac66a4c
SM
5408 * gdb/remote-sim.c (gdb_os_write_stderr): Update.
5409 * gdb/remote.c (remote_console_output): Update.
5410 * gdb/ui-file.c (fputs_unfiltered): Rename to...
5411 (ui_file_puts): ...this.
5412 * gdb/ui-file.h (ui_file_puts): Add declaration.
5413 * gdb/utils.c (emit_style_escape): Update.
5414 (flush_wrap_buffer): Update.
5415 (fputs_maybe_filtered): Update.
5416 (fputs_unfiltered): Add function.
dfcb27e4 5417
faa17681
IB
54182020-02-05 Iain Buclaw <ibuclaw@gdcproject.org>
5419
aac66a4c
SM
5420 * gdb/event-loop.c (gdb_wait_for_event): Update.
5421 * gdb/printcmd.c (printf_command): Update.
5422 * gdb/remote-fileio.c (remote_fileio_func_write): Update.
5423 * gdb/remote-sim.c (gdb_os_flush_stdout): Update.
5424 (gdb_os_flush_stderr): Update.
5425 * gdb/remote.c (remote_console_output): Update.
5426 * gdb/ui-file.c (gdb_flush): Rename to...
5427 (ui_file_flush): ...this.
5428 (stderr_file::write): Update.
5429 (stderr_file::puts): Update.
5430 * gdb/ui-file.h (gdb_flush): Rename to...
5431 (ui_file_flush): ...this.
5432 * gdb/utils.c (gdb_flush): Add function.
5433 * gdb/utils.h (gdb_flush): Add declaration.
faa17681 5434
5abbbe1d
TT
54352020-02-07 Tom Tromey <tromey@adacore.com>
5436
5437 PR breakpoints/24915:
5438 * source.c (find_and_open_source): Do not check basenames_may_differ.
5439
919adfe8
TT
54402020-02-07 Tom Tromey <tom@tromey.com>
5441
5442 * README: Update gdbserver documentation.
5443 * gdbserver: Move to top level.
5444 * configure.tgt (build_gdbserver): Remove.
5445 * configure.ac: Remove --enable-gdbserver.
5446 * configure: Rebuild.
5447 * Makefile.in (distclean): Don't mention gdbserver.
5448
1d5d29e7
SV
54492020-02-06 Shahab Vahedi <shahab@synopsys.com>
5450
5451 * source-cache.c (source_cache::ensure): Surround
5452 get_plain_source_lines with a try/catch.
5453 (source_cache::get_line_charpos): Get rid of try/catch
5454 and only check for the return value of "ensure".
5455 * tui/tui-source.c (tui_source_window::set_contents):
5456 Simplify "nlines" calculation.
5457
6eb1129c
SV
54582020-02-06 Shahab Vahedi <shahab@synopsys.com>
5459
5460 * MAINTAINERS (Write After Approval): Add myself.
5461
c6a42d11
CB
54622020-02-05 Christian Biesinger <cbiesinger@google.com>
5463
5464 * sparc-nat.h (struct sparc_target) <xfer_partial>: Fix base class
5465 function call.
5466
c8ecdda6
CB
54672020-02-05 Christian Biesinger <cbiesinger@google.com>
5468
5469 * ppc-nbsd-tdep.h: Fix macro name in #endif comment.
5470
f6480e70
MR
54712020-02-05 Maciej W. Rozycki <macro@wdc.com>
5472
5473 * nat/riscv-linux-tdesc.h: New file.
5474 * nat/riscv-linux-tdesc.c: New file, taking code from...
5475 * riscv-linux-nat.c (riscv_linux_nat_target::read_description):
5476 ... here.
5477 * configure.nat <linux> <riscv*>: Add nat/riscv-linux-tdesc.o to
5478 NATDEPFILES.
5479
dcc9fbc6
AB
54802020-02-04 Andrew Burgess <andrew.burgess@embecosm.com>
5481
5482 * remote-sim.c (sim_inferior_data::sim_inferior_data): Assert that
5483 we don't set the fake simulator ptid to the null_ptid.
5484
719546c4
SM
54852020-02-03 Simon Marchi <simon.marchi@efficios.com>
5486
5487 * fork-child.c (gdb_startup_inferior): Use bool instead of int.
5488 * gdbthread.h (class thread_info) <resumed>: Likewise.
5489 * infrun.c (resume_1): Likewise.
5490 (proceed): Likewise.
5491 (infrun_thread_stop_requested): Likewise.
5492 (stop_all_threads): Likewise.
5493 (handle_inferior_event): Likewise.
5494 (restart_threads): Likewise.
5495 (finish_step_over): Likewise.
5496 (keep_going_stepped_thread): Likewise.
5497 * linux-nat.c (attach_proc_task_lwp_callback): Likewise.
5498 (linux_handle_extended_wait): Likewise.
5499 * record-btrace.c (get_thread_current_frame_id): Likewise.
5500 * record-full.c (record_full_wait_1): Likewise.
5501 * remote.c (remote_target::process_initial_stop_replies): Likewise.
5502 * target.c (target_resume): Likewise.
5503 * thread.c (set_running_thread): Likewise.
5504
e409c542
AKS
55052020-02-03 Alok Kumar Sharma <AlokKumar.Sharma@amd.com>
5506
5507 * f-valprint.c (f77_print_array_1): Changed datatype of index
5508 variable to LONGEST from int to enable it to contain bound
5509 values correctly.
5510
ee98c0da
MR
55112020-02-03 Maciej W. Rozycki <macro@wdc.com>
5512
5513 * riscv-linux-nat.c [!NFPREG] (NFPREG): New macro.
5514 (supply_fpregset_regnum, fill_fpregset): Handle regset buffer
5515 offsets according to FLEN determined.
5516 (riscv_linux_nat_target::read_description): Determine FLEN
5517 dynamically.
5518 (riscv_linux_nat_target::fetch_registers): Size regset buffer
5519 according to FLEN determined.
5520 (riscv_linux_nat_target::store_registers): Likewise.
5521
aa66aac4
SV
55222020-02-01 Shahab Vahedi <shahab@synopsys.com>
5523
5524 * target-descriptions.c (tdesc_register_in_reggroup_p): Return 0
5525 when reg->group is empty and reggroup is not.
5526
fd9faca8
TT
55272020-01-31 Tom Tromey <tromey@adacore.com>
5528
5529 * ravenscar-thread.c (ravenscar_thread_target::mourn_inferior):
5530 Call beneath target's mourn_inferior after unpushing.
5531
42330a68
AB
55322020-01-31 Andrew Burgess <andrew.burgess@embecosm.com>
5533
5534 PR tui/9765
5535 * tui/tui-disasm.c (tui_find_disassembly_address): If we don't
5536 have enough lines to fill the screen, still return the lowest
5537 address we found.
5538
7a27a45b
AB
55392020-01-31 Andrew Burgess <andrew.burgess@embecosm.com>
5540
5541 * tui/tui-win.c (_initialize_tui_win): Update help text for '+',
5542 '-', '<', and '>' commands.
5543
c47f70e2
PA
55442020-01-29 Pedro Alves <palves@redhat.com>
5545 Sergio Durigan Junior <sergiodj@redhat.com>
5546
5547 * infcmd.c (construct_inferior_arguments): Assert that
5548 'argc' is greater than 0.
5549
5133a315
LM
55502020-01-29 Luis Machado <luis.machado@linaro.org>
5551
5552 * aarch64-tdep.c (BRK_INSN_MASK): Define to 0xffe0001f.
5553 (BRK_INSN_MASK): Define to 0xd4200000.
5554 (aarch64_program_breakpoint_here_p): New function.
5555 (aarch64_gdbarch_init): Set gdbarch_program_breakpoint_here_p hook.
5556 * arch-utils.c (default_program_breakpoint_here_p): Moved from
5557 breakpoint.c.
5558 * arch-utils.h (default_program_breakpoint_here_p): Moved from
5559 breakpoint.h
5560 * breakpoint.c (bp_loc_is_permanent): Changed return type to bool and
5561 call gdbarch_program_breakpoint_here_p.
5562 (program_breakpoint_here): Moved to arch-utils.c, renamed to
5563 default_program_breakpoint_here_p, changed return type to bool and
5564 simplified.
5565 * breakpoint.h (program_breakpoint_here): Moved prototype to
5566 arch-utils.h, renamed to default_program_breakpoint_here_p and changed
5567 return type to bool.
5568 * gdbarch.c: Regenerate.
5569 * gdbarch.h: Regenerate.
5570 * gdbarch.sh (program_breakpoint_here_p): New method.
5571 * infrun.c (handle_signal_stop): Call
5572 gdbarch_program_breakpoint_here_p.
5573
168f8c6b
TT
55742020-01-26 Tom Tromey <tom@tromey.com>
5575
5576 * ctfread.c (struct ctf_fp_info): Reindent.
5577 (_initialize_ctfread): Remove.
5578
128a391f
TT
55792020-01-26 Tom Tromey <tom@tromey.com>
5580
5581 * psymtab.c (partial_map_expand_apply)
5582 (psym_find_pc_sect_compunit_symtab, psym_lookup_symbol)
5583 (psymtab_to_symtab, psym_find_last_source_symtab, dump_psymtab)
5584 (psym_print_stats, psym_expand_symtabs_for_function)
5585 (psym_map_symbol_filenames, psym_map_matching_symbols)
5586 (psym_expand_symtabs_matching)
5587 (partial_symtab::read_dependencies, maintenance_info_psymtabs)
5588 (maintenance_check_psymtabs): Use new methods.
5589 * psympriv.h (struct partial_symtab) <readin_p,
5590 get_compunit_symtab>: New methods.
5591 <readin, compunit_symtab>: Remove members.
5592 (struct standard_psymtab): New.
5593 (struct legacy_psymtab): Derive from standard_psymtab.
5594 * dwarf2read.h (struct dwarf2_psymtab): Derive from
5595 standard_psymtab.
5596 * ctfread.c (struct ctf_psymtab): Derive from standard_psymtab.
5597
0494dbec
TT
55982020-01-26 Tom Tromey <tom@tromey.com>
5599
5600 * xcoffread.c (xcoff_psymtab_to_symtab_1): Call
5601 read_dependencies. Add assert.
5602 * psymtab.c (partial_symtab::read_dependencies): New method.
5603 * psympriv.h (struct partial_symtab) <read_dependencies>: New
5604 method.
5605 * mdebugread.c (psymtab_to_symtab_1): Call read_dependencies.
5606 * dwarf2read.c (dwarf2_psymtab::expand_psymtab): Call
5607 read_dependencies.
5608 * dbxread.c (dbx_psymtab_to_symtab_1): Call read_dependencies.
5609 Add assert.
5610
8566b89b
TT
56112020-01-26 Tom Tromey <tom@tromey.com>
5612
5613 * xcoffread.c (xcoff_psymtab_to_symtab_1): Change argument order.
5614 Call expand_psymtab.
5615 (xcoff_read_symtab): Call expand_psymtab.
5616 (xcoff_start_psymtab, xcoff_end_psymtab): Set
5617 legacy_expand_psymtab.
5618 * psympriv.h (struct partial_symtab) <expand_psymtab>: New
5619 method.
5620 (struct legacy_psymtab) <expand_psymtab>: Implement.
5621 <legacy_expand_psymtab>: New member.
5622 * mdebugread.c (mdebug_read_symtab): Call expand_psymtab.
5623 (parse_partial_symbols): Set legacy_expand_psymtab.
5624 (psymtab_to_symtab_1): Change argument order. Call
5625 expand_psymtab.
5626 (new_psymtab): Set legacy_expand_psymtab.
5627 * dwarf2read.h (struct dwarf2_psymtab) <expand_psymtab>: Declare.
5628 * dwarf2read.c (dwarf2_psymtab::read_symtab): Call
5629 expand_psymtab.
5630 (dwarf2_psymtab::expand_psymtab): Rename from
5631 psymtab_to_symtab_1. Call expand_psymtab.
5632 * dbxread.c (start_psymtab): Set legacy_expand_psymtab.
5633 (dbx_end_psymtab): Likewise.
5634 (dbx_psymtab_to_symtab_1): Change argument order. Call
5635 expand_psymtab.
5636 (dbx_read_symtab): Call expand_psymtab.
5637 * ctfread.c (struct ctf_psymtab) <expand_psymtab>: Declare.
5638 (ctf_psymtab::expand_psymtab): Rename from psymtab_to_symtab.
5639 (ctf_psymtab::read_symtab): Call expand_psymtab.
5640
077cbab2
TT
56412020-01-26 Tom Tromey <tom@tromey.com>
5642
5643 * xcoffread.c (xcoff_read_symtab): Remove prints. Add assert.
5644 * psymtab.c (psymtab_to_symtab): Print verbose "Reading"
5645 messages.
5646 * mdebugread.c (mdebug_read_symtab): Remove prints.
5647 * dwarf2read.c (dwarf2_psymtab::read_symtab): Remove prints. Add
5648 assert.
5649 * dbxread.c (dbx_read_symtab): Remove prints. Add assert.
5650
891813be
TT
56512020-01-26 Tom Tromey <tom@tromey.com>
5652
5653 * xcoffread.c (this_symtab_psymtab, read_xcoff_symtab)
5654 (xcoff_psymtab_to_symtab_1, xcoff_read_symtab)
5655 (xcoff_start_psymtab, xcoff_end_psymtab, scan_xcoff_symtab): Use
5656 legacy_symtab.
5657 * stabsread.h (dbx_end_psymtab): Use legacy_symtab.
5658 * psymtab.c (psymtab_to_symtab): Call method.
5659 (dump_psymtab): Update.
5660 * psympriv.h (struct partial_symtab): Add virtual destructor.
5661 <read_symtab>: New method.
5662 (struct legacy_symtab): New.
5663 * mdebugread.c (mdebug_read_symtab): Use legacy_psymtab.
5664 (struct pst_map) <pst>: Now a legacy_psymtab.
5665 (parse_procedure, parse_partial_symbols, psymtab_to_symtab_1)
5666 (new_psymtab): Use legacy_psymtab.
5667 * dwarf2read.h (struct dwarf2_psymtab): New.
5668 (struct dwarf2_per_cu_data) <psymtab>: Use it.
5669 * dwarf2read.c (dwarf2_create_include_psymtab)
5670 (dwarf2_build_include_psymtabs, create_type_unit_group)
5671 (create_partial_symtab, process_psymtab_comp_unit_reader)
5672 (build_type_psymtabs_reader, build_type_psymtab_dependencies)
5673 (set_partial_user): Use dwarf2_psymtab.
5674 (dwarf2_psymtab::read_symtab): Rename from dwarf2_read_symtab.
5675 (psymtab_to_symtab_1, process_full_comp_unit)
5676 (process_full_type_unit, dwarf2_ranges_read)
5677 (dwarf2_get_pc_bounds, psymtab_include_file_name)
5678 (dwarf_decode_lines): Use dwarf2_psymtab.
5679 * dwarf-index-write.c (psym_index_map): Use dwarf2_psymtab.
5680 (add_address_entry_worker, write_one_signatured_type)
5681 (recursively_count_psymbols, recursively_write_psymbols)
5682 (write_one_signatured_type, psyms_seen_size, write_gdbindex)
5683 (write_debug_names): Likewise.
5684 * dbxread.c (struct header_file_location): Take a legacy_psymtab.
5685 <pst>: Now a legacy_psymtab.
5686 (find_corresponding_bincl_psymtab): Return a legacy_psymtab.
5687 (read_dbx_symtab, start_psymtab, dbx_end_psymtab)
5688 (dbx_psymtab_to_symtab_1, read_ofile_symtab): Use legacy_psymtab.
5689 * ctfread.c (struct ctf_psymtab): New.
5690 (ctf_start_symtab, ctf_end_symtab, psymtab_to_symtab): Take a
5691 ctf_psymtab.
5692 (ctf_psymtab::read_symtab): Rename from ctf_read_symtab.
5693 (create_partial_symtab): Return a ctf_psymtab.
5694 (scan_partial_symbols): Update.
5695
c3693a1d
TT
56962020-01-26 Tom Tromey <tom@tromey.com>
5697
5698 * xcoffread.c (xcoff_start_psymtab): Use new.
5699 * psymtab.c (partial_symtab::partial_symtab): New constructor,
5700 renamed from start_psymtab_common.
5701 * psympriv.h (struct partial_symtab): Add new constructor.
5702 (start_psymtab_common): Don't declare.
5703 * mdebugread.c (parse_partial_symbols): Use new.
5704 * dwarf2read.c (create_partial_symtab): Use new.
5705 * dbxread.c (start_psymtab): Use new.
5706 * ctfread.c (create_partial_symtab): Use new.
5707
32caafd0
TT
57082020-01-26 Tom Tromey <tom@tromey.com>
5709
5710 * xcoffread.c (xcoff_end_psymtab): Use new.
5711 * psymtab.c (start_psymtab_common): Use new.
5712 (partial_symtab::partial_symtab): Rename from allocate_psymtab.
5713 Update.
5714 * psympriv.h (struct partial_symtab): Add parameters to
5715 constructor. Don't inline.
5716 (allocate_psymtab): Don't declare.
5717 * mdebugread.c (new_psymtab): Use new.
5718 * dwarf2read.c (dwarf2_create_include_psymtab): Use new.
5719 * dbxread.c (dbx_end_psymtab): Use new.
5720
abaa2f23
TT
57212020-01-26 Tom Tromey <tom@tromey.com>
5722
5723 * psymtab.h (class psymtab_storage) <install_psymtab>: Rename from
5724 allocate_psymtab. Update documentation.
5725 * psymtab.c (psymtab_storage::install_psymtab): Rename from
5726 allocate_psymtab. Do not use new.
5727 (allocate_psymtab): Use new. Update.
5728
6d94535f
TT
57292020-01-26 Tom Tromey <tom@tromey.com>
5730
5731 * xcoffread.c (xcoff_psymtab_to_symtab_1): Update.
5732 * psymtab.c (psym_print_stats): Update.
5733 * psympriv.h (struct partial_symtab) <readin,
5734 psymtabs_addrmap_supported, anonymous>: Now bool.
5735 * mdebugread.c (psymtab_to_symtab_1): Update.
5736 * dwarf2read.c (create_type_unit_group, create_partial_symtab)
5737 (build_type_psymtabs_reader, psymtab_to_symtab_1)
5738 (process_full_comp_unit, process_full_type_unit): Update.
5739 * dbxread.c (dbx_psymtab_to_symtab_1): Update.
5740 * ctfread.c (psymtab_to_symtab): Update.
5741
6f17252b
TT
57422020-01-26 Tom Tromey <tom@tromey.com>
5743
5744 * mdebugread.c (parse_partial_symbols): Use discard_psymtab.
5745 * psymtab.h (class psymtab_storage) <free_psymtabs>: Remove.
5746 * psymtab.c (psymtab_storage): Delete psymtabs.
5747 (psymtab_storage::allocate_psymtab): Use new.
5748 (psymtab_storage::discard_psymtab): Use delete.
5749 * psympriv.h (struct partial_symtab): Add constructor and
5750 initializers.
5751
f6f1cebc
TT
57522020-01-26 Tom Tromey <tom@tromey.com>
5753
5754 * machoread.c: Do not include psympriv.h.
5755
e47e48f6
PW
57562020-01-25 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5757
5758 * NEWS: Mention the new option and the set/show commands.
5759
a2fedca9
PW
57602020-01-25 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5761
5762 * exec.c (exec_file_mismatch_names, exec_file_mismatch_mode)
5763 (show_exec_file_mismatch_command, set_exec_file_mismatch_command)
5764 (validate_exec_file): New variables, enums, functions.
5765 (exec_file_locate_attach, print_section_info): Style the filenames.
5766 (_initialize_exec): Install show_exec_file_mismatch_command and
5767 set_exec_file_mismatch_command.
5768 * gdbcore.h (validate_exec_file): Declare.
5769 * infcmd.c (attach_command): Call validate_exec_file.
5770 * remote.c ( remote_target::remote_add_inferior): Likewise.
5771
7ffa82e1
AB
57722020-01-24 Andrew Burgess <andrew.burgess@embecosm.com>
5773
5774 * frame.c (find_frame_sal): Move call to get_next_frame into more
5775 inner scope.
5776 * inline-frame.c (inilne_state) <inline_state>: Update argument
5777 types.
5778 (inilne_state) <skipped_symbol>: Rename to...
5779 (inilne_state) <skipped_symbols>: ...this, and change to a vector.
5780 (skip_inline_frames): Build vector of skipped symbols and use this
5781 to reate the inline_state.
5782 (inline_skipped_symbol): Add a comment and some assertions, fetch
5783 skipped symbol from the list.
5784
3d92a3e3
AB
57852020-01-24 Andrew Burgess <andrew.burgess@embecosm.com>
5786
5787 * buildsym.c (lte_is_less_than): Delete.
5788 (buildsym_compunit::end_symtab_with_blockvector): Create local
5789 lambda function to sort line table entries, and use
5790 std::stable_sort instead of std::sort.
5791 * symtab.c (find_pc_sect_line): Skip backward over end of sequence
5792 markers when looking for a previous line.
5793
94a72be7
AB
57942020-01-24 Andrew Burgess <andrew.burgess@embecosm.com>
5795
5796 * dwarf2read.c (lnp_state_machine::record_line): Include
5797 end_sequence parameter in debug print out. Record the line if we
5798 are at an end_sequence marker even if it's not the start of a
5799 statement.
5800 * symmisc.c (maintenance_print_one_line_table): Print end of
5801 sequence markers with 'END' not '0'.
5802
53af73bf
PA
58032020-01-24 Pedro Alves <palves@redhat.com>
5804
5805 PR gdb/25410
5806 * thread.c (scoped_restore_current_thread::restore): Use
5807 switch_to_inferior_no_thread.
5808 * exec.c: Include "progspace-and-thread.h".
5809 (add_target_sections, remove_target_sections):
5810 scoped_restore_current_pspace_and_thread instead of
5811 scoped_restore_current_thread.
5812 * infrun.c (handle_vfork_child_exec_or_exit): Assign the pspace
5813 and aspace to the inferior before calling clone_program_space.
5814 Remove stale comment.
5815
3050c6f4
CB
58162020-01-24 Christian Biesinger <cbiesinger@google.com>
5817
5818 * arm-nbsd-nat.c (arm_nbsd_nat_target::fetch_registers): Rename to...
5819 (arm_netbsd_nat_target::fetch_registers): ...this.
5820 (arm_nbsd_nat_target::store_registers): Rename to...
5821 (arm_netbsd_nat_target::store_registers): ...this.
5822
73685c7e
CB
58232020-01-24 Christian Biesinger <cbiesinger@google.com>
5824
5825 * arm-nbsd-nat.c: Define _KERNTYPES to get the declaration of
5826 register_t.
5827
89203d40
CB
58282020-01-24 Christian Biesinger <cbiesinger@google.com>
5829
5830 * aarch64-fbsd-tdep.c (aarch64_fbsd_iterate_over_regset_sections):
5831 Update comment.
5832 * aarch64-linux-tdep.c (aarch64_linux_iterate_over_regset_sections):
5833 Likewise.
5834 * arm-fbsd-tdep.c (arm_fbsd_iterate_over_regset_sections): Likewise.
5835 * gdbcore.h (deprecated_add_core_fns): Update comment to point to
5836 the correct replacement (iterate_over_regset_sections).
5837 * riscv-fbsd-tdep.c (riscv_fbsd_iterate_over_regset_sections):
5838 Update comment.
5839
1ba1ac88
AB
58402020-01-24 Graham Markall <graham.markall@embecosm.com>
5841
5842 PR gdb/23718
5843 * gdb/python/python.c (execute_gdb_command): Call
5844 async_enable_stdin in catch block.
5845
f3364a6d
AB
58462020-01-24 Andrew Burgess <andrew.burgess@embecosm.com>
5847
5848 * event-loop.c (start_event_loop): Wrap async_enable_stdin with
5849 SWITCH_THRU_ALL_UIS.
5850
733d0a67
AB
58512020-01-24 Andrew Burgess <andrew.burgess@embecosm.com>
5852
5853 PR tui/9765
5854 * minsyms.c (lookup_minimal_symbol_by_pc_section): Update header
5855 comment, add extra parameter, and update to store previous symbol
5856 when appropriate.
5857 * minsyms.h (lookup_minimal_symbol_by_pc_section): Update comment,
5858 add extra parameter.
5859 * tui/tui-disasm.c (tui_disassemble): Update header comment,
5860 remove unneeded parameter, add try/catch around gdb_print_insn,
5861 rewrite to add items to asm_lines vector.
5862 (tui_find_backward_disassembly_start_address): New function.
5863 (tui_find_disassembly_address): Updated throughout.
5864 (tui_disasm_window::set_contents): Update for changes to
5865 tui_disassemble.
5866 (tui_disasm_window::do_scroll_vertical): No need to adjust the
5867 number of lines to scroll.
5868
b3b3bada
SM
58692020-01-23 Simon Marchi <simon.marchi@polymtl.ca>
5870
5871 * objfiles.h (ALL_OBJFILE_OSECTIONS): Move up.
5872 (SECT_OFF_DATA): Likewise.
5873 (SECT_OFF_RODATA): Likewise.
5874 (SECT_OFF_TEXT): Likewise.
5875 (SECT_OFF_BSS): Likewise.
5876 (struct objfile) <text_section_offset, data_section_offset>: New
5877 methods.
5878 * amd64-windows-tdep.c (amd64_windows_find_unwind_info): Use
5879 objfile::text_section_offset.
5880 * coff-pe-read.c (add_pe_forwarded_sym): Likewise.
5881 * coffread.c (coff_symtab_read): Likewise.
5882 (enter_linenos): Likewise.
5883 (process_coff_symbol): Likewise.
5884 * ctfread.c (get_objfile_text_range): Likewise.
5885 * dtrace-probe.c (dtrace_probe::get_relocated_address):
5886 Use objfile::data_section_offset.
5887 * dwarf2-frame.c (execute_cfa_program): Use
5888 objfile::text_section_offset.
5889 (dwarf2_frame_find_fde): Likewise.
5890 * dwarf2read.c (create_addrmap_from_index): Likewise.
5891 (create_addrmap_from_aranges): Likewise.
5892 (dw2_find_pc_sect_compunit_symtab): Likewise.
5893 (process_psymtab_comp_unit_reader): Likewise.
5894 (add_partial_symbol): Likewise.
5895 (add_partial_subprogram): Likewise.
5896 (process_full_comp_unit): Likewise.
5897 (read_file_scope): Likewise.
5898 (read_func_scope): Likewise.
5899 (read_lexical_block_scope): Likewise.
5900 (read_call_site_scope): Likewise.
5901 (dwarf2_rnglists_process): Likewise.
5902 (dwarf2_ranges_process): Likewise.
5903 (dwarf2_ranges_read): Likewise.
5904 (dwarf_decode_lines_1): Likewise.
5905 (new_symbol): Likewise.
5906 (dwarf2_fetch_die_loc_sect_off): Likewise.
5907 (dwarf2_per_cu_text_offset): Likewise.
5908 * hppa-bsd-tdep.c (hppabsd_find_global_pointer): Likewise.
5909 * hppa-tdep.c (read_unwind_info): Likewise.
5910 * ia64-tdep.c (ia64_find_unwind_table): Likewise.
5911 * psympriv.h (struct partial_symtab): Likewise.
5912 * psymtab.c (find_pc_sect_psymtab): Likewise.
5913 * solib-svr4.c (enable_break): Likewise.
5914 * stap-probe.c (relocate_address): Use
5915 objfile::data_section_offset.
5916 * xcoffread.c (enter_line_range): Use
5917 objfile::text_section_offset.
5918 (read_xcoff_symtab): Likewise.
5919
ab53f382
SM
59202020-01-23 Simon Marchi <simon.marchi@efficios.com>
5921
5922 * darwin-nat.c (darwin_nat_target::wait_1): Move `inf`
5923 declaration to narrower scopes.
5924
e7eee665
SM
59252020-01-23 Simon Marchi <simon.marchi@efficios.com>
5926
5927 * darwin-nat.h (struct darwin_exception_msg, enum
5928 darwin_msg_state, struct darwin_thread_info, darwin_thread_t):
5929 Move up.
5930 (class darwin_nat_target) <wait_1, check_new_threads,
5931 decode_exception_message, decode_message, stop_inferior,
5932 init_thread_list, ptrace_him, cancel_breakpoint>: Declare.
5933 * darwin-nat.c (darwin_check_new_threads): Rename to...
5934 (darwin_nat_target::check_new_threads): ... this.
5935 (darwin_suspend_inferior_it): Remove.
5936 (darwin_decode_exception_message): Rename to...
5937 (darwin_nat_target::decode_exception_message): ... this.
5938 (darwin_nat_target::resume): Pass target to find_inferior_ptid.
5939 (darwin_decode_message): Rename to...
5940 (darwin_nat_target::decode_message): ... this.
5941 (cancel_breakpoint): Rename to...
5942 (darwin_nat_target::cancel_breakpoint): ... this.
5943 (darwin_wait): Rename to...
5944 (darwin_nat_target::wait_1): ... this. Use range-based for loop
5945 instead of iterate_over_inferiors.
5946 (darwin_nat_target::wait): Call wait_1 instead of darwin_wait.
5947 (darwin_stop_inferior): Rename to...
5948 (darwin_nat_target::stop_inferior): ... this.
5949 (darwin_nat_target::kill): Call wait_1 instead of darwin_wait.
5950 (darwin_init_thread_list): Rename to...
5951 (darwin_nat_target::init_thread_list): ... this.
5952 (darwin_ptrace_him): Rename to...
5953 (darwin_nat_target::ptrace_him): ... this.
5954 (darwin_nat_target::create_inferior): Pass lambda function to
5955 fork_inferior.
5956 (darwin_nat_target::detach): Call stop_inferior instead of
5957 darwin_stop_inferior.
5958 * fork-inferior.h (fork_inferior): Change init_trace_fun
5959 parameter to gdb::function_view.
5960 * fork-inferior.c (fork_inferior): Likewise.
5961
c162ed3e
HD
59622020-01-23 Hannes Domani <ssbssa@yahoo.de>
5963
5964 * i386-cygwin-tdep.c (core_process_module_section): Update.
5965 * windows-nat.c (struct lm_info_windows): Add text_offset.
5966 (windows_xfer_shared_libraries): Update.
5967 * windows-tdep.c (windows_xfer_shared_library):
5968 Add text_offset_cached argument.
5969 * windows-tdep.h (windows_xfer_shared_library): Update.
5970
a1237872
SM
59712020-01-21 Simon Marchi <simon.marchi@efficios.com>
5972
5973 * gdbarch.sh: Add declaration for _initialize_gdbarch.
5974
b3ee6dd9
SM
59752020-01-21 Simon Marchi <simon.marchi@efficios.com>
5976
5977 * remote-sim.c (check_for_duplicate_sim_descriptor): Remove.
5978 (get_sim_inferior_data): Remove use of iterate_over_inferiors,
5979 replace with range-based for.
5980 (gdbsim_interrupt_inferior): Remove.
5981 (gdbsim_target::interrupt): Replace iterate_over_inferiors use
5982 with a range-based for. Inline code from
5983 gdbsim_interrupt_inferior.
5984
f9fac3c8
SM
59852020-01-21 Simon Marchi <simon.marchi@efficios.com>
5986
5987 * infrun.c (proceed): Fix indentation.
5988
f6474de9
TT
59892020-01-21 Tom Tromey <tromey@adacore.com>
5990
5991 * source-cache.c (source_cache::ensure): Call ext_lang_colorize.
5992 * python/python.c (python_extension_ops): Update.
5993 (gdbpy_colorize): New function.
5994 * python/lib/gdb/__init__.py (colorize): New function.
5995 * extension.h (ext_lang_colorize): Declare.
5996 * extension.c (ext_lang_colorize): New function.
5997 * extension-priv.h (struct extension_language_ops) <colorize>: New
5998 member.
5999 * cli/cli-style.c (_initialize_cli_style): Update help text.
6000
f0c702d4
LM
60012020-01-21 Luis Machado <luis.machado@linaro.org>
6002
6003 * aarch64-tdep.c (struct aarch64_displaced_step_closure)
6004 <cond>: Change type to bool.
6005 (aarch64_displaced_step_b_cond): Update cond to use bool type.
6006 (aarch64_displaced_step_cb): Likewise.
6007 (aarch64_displaced_step_tb): Likewise.
6008
1ab139e5
LM
60092020-01-21 Luis Machado <luis.machado@linaro.org>
6010
6011 * aarch64-tdep.c (aarch64_displaced_step_fixup): Add more debugging
6012 output.
6013
0c271889
LM
60142020-01-21 Luis Machado <luis.machado@linaro.org>
6015
6016 * aarch64-tdep.c (struct aarch64_displaced_step_closure )
6017 <pc_adjust>: Adjust the documentation.
6018 (aarch64_displaced_step_fixup): Check if PC really moved before
6019 adjusting it.
6020
4d89c1c7
TT
60212020-01-19 Tom Tromey <tom@tromey.com>
6022
6023 * disasm.c (~gdb_disassembler): New destructor.
6024 (gdb_buffered_insn_length): Call disassemble_free_target.
6025 * disasm.h (class gdb_disassembler): Declare destructor. Use
6026 DISABLE_COPY_AND_ASSIGN.
6027
c0ab21c2
TT
60282020-01-19 Tom Tromey <tom@tromey.com>
6029
6030 * dwarf2read.c (abbrev_table_up): Move typedef earlier.
6031 (die_reader_func_ftype): Remove.
6032 (cutu_reader): New class.
6033 (dw2_get_file_names_reader): Remove "data" parameter.
6034 (dw2_get_file_names): Use cutu_reader.
6035 (create_debug_type_hash_table): Update.
6036 (read_cutu_die_from_dwo): Update comment.
6037 (lookup_dwo_unit): Add dwo_name parameter.
6038 (cutu_reader::init_tu_and_read_dwo_dies): Now a method. Remove
6039 die_reader_func_ftype and data parameters.
6040 (cutu_reader::cutu_reader): Rename from init_cutu_and_read_dies.
6041 Remove die_reader_func_ftype and data parameters.
6042 (~cutu_reader): New; from init_cutu_and_read_dies.
6043 (cutu_reader::cutu_reader): Rename from
6044 init_cutu_and_read_dies_no_follow. Remove die_reader_func_ftype
6045 and data parameters.
6046 (init_cutu_and_read_dies_simple): Remove.
6047 (struct process_psymtab_comp_unit_data): Remove.
6048 (process_psymtab_comp_unit_reader): Remove data parameter; add
6049 want_partial_unit and pretend_language parameters.
6050 (process_psymtab_comp_unit): Use cutu_reader.
6051 (build_type_psymtabs_reader): Remove data parameter.
6052 (build_type_psymtabs_1): Use cutu_reader.
6053 (process_skeletonless_type_unit): Likewise.
6054 (load_partial_comp_unit_reader): Remove.
6055 (load_partial_comp_unit): Use cutu_reader.
6056 (load_full_comp_unit_reader): Remove.
6057 (load_full_comp_unit): Use cutu_reader.
6058 (struct create_dwo_cu_data): Remove.
6059 (create_dwo_cu_reader): Remove datap parameter; add dwo_file and
6060 dwo_unit parameters.
6061 (create_cus_hash_table): Use cutu_reader.
6062 (struct dwarf2_read_addr_index_data): Remove.
6063 (dwarf2_read_addr_index_reader): Remove.
6064 (dwarf2_read_addr_index): Use cutu_reader.
6065 (read_signatured_type_reader): Remove.
6066 (read_signatured_type): Use cutu_reader.
6067
45bbae5c
TT
60682020-01-19 Tom Tromey <tom@tromey.com>
6069
6070 * tui/tui.c (tui_show_assembly): Use tui_suppress_output.
6071 * tui/tui-wingeneral.h (class tui_suppress_output): New.
6072 (tui_wrefresh): Declare.
6073 * tui/tui-wingeneral.c (suppress_output): New global.
6074 (tui_suppress_output, ~tui_suppress_output): New constructor and
6075 destructor.
6076 (tui_wrefresh): New function.
6077 (tui_gen_win_info::refresh_window): Use tui_wrefresh.
6078 (tui_gen_win_info::make_window): Call wnoutrefresh when needed.
6079 * tui/tui-regs.h (struct tui_data_window) <no_refresh>: Declare
6080 method.
6081 * tui/tui-regs.c (tui_data_window::erase_data_content): Call
6082 tui_wrefresh.
6083 (tui_data_window::no_refresh): New method.
6084 (tui_data_item_window::refresh_window): Call tui_wrefresh.
6085 (tui_reg_command): Use tui_suppress_output
6086 * tui/tui-layout.c (tui_set_layout): Use tui_suppress_output.
6087 * tui/tui-data.h (struct tui_gen_win_info) <no_refresh>: New
6088 method.
6089 * tui/tui-command.c (tui_refresh_cmd_win): Call tui_wrefresh.
6090
4f13c1c0
TT
60912020-01-19 Tom Tromey <tom@tromey.com>
6092
6093 * tui/tui-winsource.c (tui_update_source_windows_with_line):
6094 Handle case where symtab is null.
6095
fa47e446
SM
60962020-01-19 Simon Marchi <simon.marchi@polymtl.ca>
6097
6098 * linux-fork.c (one_fork_p): Simplify.
6099
26f42329
SM
61002020-01-17 Simon Marchi <simon.marchi@efficios.com>
6101
6102 * top.c (struct qt_args): Remove.
6103 (kill_or_detach): Change return type to void, replace `void *`
6104 parameter with a proper one.
6105 (print_inferior_quit_action): Likewise.
6106 (quit_confirm): Use range-based for loop to iterate over inferiors.
6107 (quit_force): Likewise.
6108
a9ac81b1
SM
61092020-01-17 Simon Marchi <simon.marchi@efficios.com>
6110
6111 * mi/mi-main.c (run_one_inferior): Change return type to void, replace
6112 `void *` parameter with proper parameters.
6113 (mi_cmd_exec_run): Use range-based loop to iterate over inferiors.
6114 (print_one_inferior): Change return type to void, replace `void *`
6115 parameter with proper parameters.
6116 (mi_cmd_list_thread_groups): Use range-based loop to iterate over
6117 inferiors.
6118 (get_other_inferior): Remove.
6119 (mi_cmd_remove_inferior): Use range-based loop to iterate over
6120 inferiors.
6121
788eca49
SM
61222020-01-17 Simon Marchi <simon.marchi@efficios.com>
6123
6124 * mi/mi-interp.c (report_initial_inferior): Remove.
6125 (mi_interp::init): Use range-based for to iterate over inferiors.
6126
d9bc85b6
SM
61272020-01-17 Simon Marchi <simon.marchi@efficios.com>
6128
6129 * python/py-inferior.c (build_inferior_list): Remove.
6130 (gdbpy_ref): Use range-based for loop to iterate over inferiors.
6131
40c94099
CB
61322020-01-16 Christian Biesinger <cbiesinger@google.com>
6133
6134 * btrace.c (btrace_compute_ftrace_1): Fix spelling error (Unkown).
6135 (btrace_stitch_trace): Likewise.
6136 * charset.c (intermediate_encoding): Likewise (vaild).
6137 * nat/linux-btrace.c (linux_read_pt): Likewise (Unkown).
6138 * python/py-record-btrace.c (struct PyMethodDef): Likewise (occurences).
6139 * record-btrace.c (record_btrace_print_conf): Likewise (unkown).
6140
e0cdfe3c
HD
61412020-01-16 Hannes Domani <ssbssa@yahoo.de>
6142
6143 * windows-tdep.c (windows_get_tlb_type):
6144 Add rtl_user_process_parameters type.
6145
790f1718 61462020-01-16 Pedro Alves <palves@redhat.com>
aac66a4c 6147 Norbert Lange <nolange79@gmail.com>
790f1718
PA
6148
6149 PR build/24805
6150 * gdbsupport/gdb_proc_service.h (PS_EXPORT): New.
6151 (ps_get_thread_area, ps_getpid, ps_lcontinue, ps_lgetfpregs)
6152 (ps_lgetregs, ps_lsetfpregs, ps_lsetregs, ps_lstop, ps_pcontinue)
6153 (ps_pdread, ps_pdwrite, ps_pglobal_lookup, ps_pstop, ps_ptread)
6154 (ps_ptwrite, ps_lgetxregs, ps_lgetxregsize, ps_lsetxregs)
6155 (ps_plog): Redeclare exported functions with default visibility.
6156
3112ed97
NA
61572020-01-16 Nitika Achra <Nitika.Achra@amd.com>
6158
6159 * dwarf2loc.c (decode_debug_loclists_addresses): Handle
6160 DW_LLE_base_addressx, DW_LLE_startx_length, DW_LLE_start_length.
6161
8dc3273e
SM
61622020-01-15 Simon Marchi <simon.marchi@efficios.com>
6163
6164 * infcmd.c (post_create_inferior): Use get_thread_regcache
6165 instead of get_current_regcache.
6166
ff47f4f0
TT
61672020-01-14 Tom Tromey <tom@tromey.com>
6168
6169 PR symtab/12535:
6170 * python/python.c (gdbpy_decode_line): Treat empty string the same
6171 as no argument.
6172
975f45b7
TT
61732020-01-14 Tom Tromey <tom@tromey.com>
6174
6175 * Makefile.in (CLIBS): Remove second use of $(LIBIBERTY).
6176
25e57356
TT
61772020-01-14 Tom Tromey <tom@tromey.com>
6178
6179 * nat/linux-btrace.c: Don't include <config.h>.
6180 * nat/linux-ptrace.c: Don't include <config.h>.
6181 * nat/x86-linux-dregs.c: Don't include <config.h>.
6182
05ea2a05
TT
61832020-01-14 Tom Tromey <tom@tromey.com>
6184
6185 * configure: Rebuild.
6186 * configure.ac: Move many checks to ../gdbsupport/common.m4.
6187
01027315
TT
61882020-01-14 Tom Tromey <tom@tromey.com>
6189
6190 * nat/x86-linux-dregs.c: Include configh.h.
6191 * nat/linux-ptrace.c: Include configh.h.
6192 * nat/linux-btrace.c: Include configh.h.
6193 * defs.h: Include config.h, bfd.h.
6194 * configure.ac: Don't source common.host.
6195 (CONFIG_OBS, CONFIG_SRCS): Remove gdbsupport files.
6196 * configure: Rebuild.
6197 * acinclude.m4: Update path.
6198 * Makefile.in (SUPPORT, LIBSUPPORT, INCSUPPORT): New variables.
6199 (CONFIG_SRC_SUBDIR): Remove gdbsupport.
6200 (INTERNAL_CFLAGS_BASE): Add INCSUPPORT.
6201 (CLIBS): Add LIBSUPPORT.
6202 (CDEPS): Likewise.
6203 (COMMON_SFILES): Remove gdbsupport files.
6204 (HFILES_NO_SRCDIR): Likewise.
6205 (stamp-version): Update path to create-version.sh.
6206 (ALLDEPFILES): Remove gdbsupport files.
6207
b2ceabe8
TT
62082020-01-14 Tom Tromey <tom@tromey.com>
6209
6210 * gdbsupport/common.m4 (GDB_AC_COMMON): Define WIN32APILIBS and
6211 USE_WIN32API when needed.
6212 * configure.ac (USE_WIN32API): Don't define.
6213 (WIN32LIBS): Use WIN32APILIBS.
6214 * configure: Rebuild.
6215
25c51f71
TT
62162020-01-14 Tom Tromey <tom@tromey.com>
6217
6218 * configure: Rebuild.
6219 * gdbsupport/common.m4 (GDB_AC_COMMON): Fix indentation.
6220
717c684d
BE
62212020-01-14 Bernd Edlinger <bernd.edlinger@hotmail.de>
6222
6223 * skip.c (skip_function_command): Make skip w/o arguments use the
6224 name of the inlined function if pc is inside any inlined function.
6225
7da6a5b9
LM
62262020-01-14 Luis Machado <luis.machado@linaro.org>
6227
6228 * inf-ptrace.c (inf_ptrace_target::resume): Update comments.
6229 * infrun.c (resume_1): Likewise.
6230 (handle_inferior_event): Remove stale comment.
6231 * linux-nat.c (linux_nat_target::resume): Update comments.
6232 (save_stop_reason): Likewise.
6233 (linux_nat_filter_event): Likewise.
6234 * linux-nat.h (struct lwp_info) <stop_pc>, <stop_reason>: Likewise.
6235
44e4c775
AB
62362020-01-13 Andrew Burgess <andrew.burgess@embecosm.com>
6237
6238 * elfread.c (record_minimal_symbol): Set section index to 0 for
6239 non-allocatable sections.
6240
18a8505e
AT
6241
62422020-01-13 Ali Tamur <tamur@google.com>
6243
6244 * dwarf2read.c (dwarf2_debug_sections): Add debug_str_offsets sections.
6245 (dwarf2_cu): Add str_offsets_base field. Change the type of addr_base
6246 to gdb::optional. Update comments.
6247 (dwo_file): Update comments.
6248 (read_attribute): Update API to take an additional out parameter,
6249 need_reprocess. This is used to mark attributes that need other
6250 attributes (e.g. str_offsets_base) for correct computation which may not
6251 have been read yet.
6252 (read_attribute_reprocess): New function declaration.
6253 (read_addr_index): Likewise.
6254 (read_dwo_str_index): Likewise.
6255 (read_stub_str_index): Likewise.
6256 (dwarf2_per_objfile::locate_sections): Handle debug_str_offsets section.
6257 (lookup_addr_base): New function definition.
6258 (lookup_ranges_base): Likewise.
6259 (read_cutu_die_from_dwo): Use the new functions: lookup_addr_base,
6260 lookup_ranges_base.
6261 (init_cutu_and_read_dies): Update comments.
6262 (init_cutu_and_read_dies_no_follow): Change API to take parent compile
6263 unit. This is used to inherit parent's str_offsets_base and addr_base.
6264 Update comments.
6265 (init_cutu_and_read_dies_simple): Reflect API changes.
6266 (skip_one_die): Reflect API changes. Handle DW_FORM_rnglistx.
6267 (create_cus_hash_table): Change API to take parent compile unit.
6268 Reflect API changes.
6269 (open_and_init_dwo_file): Reflect API changes.
6270 (dwarf2_get_pc_bounds): Update comments.
6271 (dwarf2_record_block_ranges): Likewise.
6272 (read_full_die_1): Change implementation to reprocess attributes that
6273 need str_offsets_base and addr_base.
6274 (partial_die_info::read): Likewise.
6275 (read_attribute_reprocess): New function definition.
6276 (read_attribute_value): Change API to take an additional out parameter,
6277 need_reprocess. Handle DW_FORM_rnglistx. No longer trigger an error
6278 when a non-dwo compile unit has index based attributes.
6279 (read_attribute): Reflect API changes.
6280 (read_addr_index_1): Reflect API changes. Update comments.
6281 (dwarf2_read_addr_index_data): Reflect API changes.
6282 (dwarf2_read_addr_index): Likewise.
6283 (read_str_index): Change API and implementation. This becomes a helper
6284 to be used by the new string index related methods. Update error
6285 message and comments.
6286 (read_dwo_str_index): New function definition.
6287 (read_stub_str_index): Likewise.
6288 * dwarf2read.h (dwarf2_per_objfile): Add str_offsets field.
6289 * symfile.h (dwarf2_debug_sections): Likewise.
6290 * xcoffread.c (dwarf2_debug_sections): Likewise.
6291
0cac9354
SM
62922020-01-13 Simon Marchi <simon.marchi@efficios.com>
6293
6294 * gdbcore.h (struct core_fns) <core_read_registers>: Change
6295 core_reg_sect type to gdb_byte *.
6296 * arm-nbsd-nat.c (fetch_elfcore_registers): Likewise.
6297 * cris-tdep.c (fetch_core_registers): Likewise.
6298 * corelow.c (core_target::get_core_register_section): Change
6299 type of `contents` to gdb::byte_vector.
6300
9a6d629c
AB
63012020-01-13 Andrew Burgess <andrew.burgess@embecosm.com>
6302
6303 * tui/tui-wingeneral.c (box_win): Position the title in the center
6304 of the border.
6305
d8b2f9e3
SM
63062020-01-13 Simon Marchi <simon.marchi@polymtl.ca>
6307
6308 * corelow.c (core_target::get_core_register_section): Use
6309 std::vector instead of alloca.
6310
bb564c58
SM
63112020-01-13 Simon Marchi <simon.marchi@efficios.com>
6312
6313 * warning.m4: Add -Wmissing-declarations to build_warnings.
6314 * configure: Re-generate.
6315
6b366111
SM
63162020-01-13 Simon Marchi <simon.marchi@efficios.com>
6317
6318 * python/python.c (init__gdb_module): Add declaration.
6319
6c265988
SM
63202020-01-13 Simon Marchi <simon.marchi@efficios.com>
6321
6322 * aarch64-fbsd-nat.c (_initialize_aarch64_fbsd_nat): Add declaration.
6323 * aarch64-fbsd-tdep.c (_initialize_aarch64_fbsd_tdep): Add declaration.
6324 * aarch64-linux-nat.c (_initialize_aarch64_linux_nat): Add declaration.
6325 * aarch64-linux-tdep.c (_initialize_aarch64_linux_tdep): Add declaration.
6326 * aarch64-newlib-tdep.c (_initialize_aarch64_newlib_tdep): Add declaration.
6327 * aarch64-tdep.c (_initialize_aarch64_tdep): Add declaration.
6328 * ada-exp.y (_initialize_ada_exp): Add declaration.
6329 * ada-lang.c (_initialize_ada_language): Add declaration.
6330 * ada-tasks.c (_initialize_tasks): Add declaration.
6331 * agent.c (_initialize_agent): Add declaration.
6332 * aix-thread.c (_initialize_aix_thread): Add declaration.
6333 * alpha-bsd-nat.c (_initialize_alphabsd_nat): Add declaration.
6334 * alpha-linux-nat.c (_initialize_alpha_linux_nat): Add declaration.
6335 * alpha-linux-tdep.c (_initialize_alpha_linux_tdep): Add declaration.
6336 * alpha-nbsd-tdep.c (_initialize_alphanbsd_tdep): Add declaration.
6337 * alpha-obsd-tdep.c (_initialize_alphaobsd_tdep): Add declaration.
6338 * alpha-tdep.c (_initialize_alpha_tdep): Add declaration.
6339 * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): Add declaration.
6340 * amd64-dicos-tdep.c (_initialize_amd64_dicos_tdep): Add declaration.
6341 * amd64-fbsd-nat.c (_initialize_amd64fbsd_nat): Add declaration.
6342 * amd64-fbsd-tdep.c (_initialize_amd64fbsd_tdep): Add declaration.
6343 * amd64-linux-nat.c (_initialize_amd64_linux_nat): Add declaration.
6344 * amd64-linux-tdep.c (_initialize_amd64_linux_tdep): Add declaration.
6345 * amd64-nbsd-nat.c (_initialize_amd64nbsd_nat): Add declaration.
6346 * amd64-nbsd-tdep.c (_initialize_amd64nbsd_tdep): Add declaration.
6347 * amd64-obsd-nat.c (_initialize_amd64obsd_nat): Add declaration.
6348 * amd64-obsd-tdep.c (_initialize_amd64obsd_tdep): Add declaration.
6349 * amd64-sol2-tdep.c (_initialize_amd64_sol2_tdep): Add declaration.
6350 * amd64-tdep.c (_initialize_amd64_tdep): Add declaration.
6351 * amd64-windows-nat.c (_initialize_amd64_windows_nat): Add declaration.
6352 * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Add declaration.
6353 * annotate.c (_initialize_annotate): Add declaration.
6354 * arc-newlib-tdep.c (_initialize_arc_newlib_tdep): Add declaration.
6355 * arc-tdep.c (_initialize_arc_tdep): Add declaration.
6356 * arch-utils.c (_initialize_gdbarch_utils): Add declaration.
6357 * arm-fbsd-nat.c (_initialize_arm_fbsd_nat): Add declaration.
6358 * arm-fbsd-tdep.c (_initialize_arm_fbsd_tdep): Add declaration.
6359 * arm-linux-nat.c (_initialize_arm_linux_nat): Add declaration.
6360 * arm-linux-tdep.c (_initialize_arm_linux_tdep): Add declaration.
6361 * arm-nbsd-nat.c (_initialize_arm_netbsd_nat): Add declaration.
6362 * arm-nbsd-tdep.c (_initialize_arm_netbsd_tdep): Add declaration.
6363 * arm-obsd-tdep.c (_initialize_armobsd_tdep): Add declaration.
6364 * arm-pikeos-tdep.c (_initialize_arm_pikeos_tdep): Add declaration.
6365 * arm-symbian-tdep.c (_initialize_arm_symbian_tdep): Add declaration.
6366 * arm-tdep.c (_initialize_arm_tdep): Add declaration.
6367 * arm-wince-tdep.c (_initialize_arm_wince_tdep): Add declaration.
6368 * auto-load.c (_initialize_auto_load): Add declaration.
6369 * auxv.c (_initialize_auxv): Add declaration.
6370 * avr-tdep.c (_initialize_avr_tdep): Add declaration.
6371 * ax-gdb.c (_initialize_ax_gdb): Add declaration.
6372 * bfin-linux-tdep.c (_initialize_bfin_linux_tdep): Add declaration.
6373 * bfin-tdep.c (_initialize_bfin_tdep): Add declaration.
6374 * break-catch-sig.c (_initialize_break_catch_sig): Add declaration.
6375 * break-catch-syscall.c (_initialize_break_catch_syscall): Add declaration.
6376 * break-catch-throw.c (_initialize_break_catch_throw): Add declaration.
6377 * breakpoint.c (_initialize_breakpoint): Add declaration.
6378 * bsd-uthread.c (_initialize_bsd_uthread): Add declaration.
6379 * btrace.c (_initialize_btrace): Add declaration.
6380 * charset.c (_initialize_charset): Add declaration.
6381 * cli/cli-cmds.c (_initialize_cli_cmds): Add declaration.
6382 * cli/cli-dump.c (_initialize_cli_dump): Add declaration.
6383 * cli/cli-interp.c (_initialize_cli_interp): Add declaration.
6384 * cli/cli-logging.c (_initialize_cli_logging): Add declaration.
6385 * cli/cli-script.c (_initialize_cli_script): Add declaration.
6386 * cli/cli-style.c (_initialize_cli_style): Add declaration.
6387 * coff-pe-read.c (_initialize_coff_pe_read): Add declaration.
6388 * coffread.c (_initialize_coffread): Add declaration.
6389 * compile/compile-cplus-types.c (_initialize_compile_cplus_types): Add declaration.
6390 * compile/compile.c (_initialize_compile): Add declaration.
6391 * complaints.c (_initialize_complaints): Add declaration.
6392 * completer.c (_initialize_completer): Add declaration.
6393 * copying.c (_initialize_copying): Add declaration.
6394 * corefile.c (_initialize_core): Add declaration.
6395 * corelow.c (_initialize_corelow): Add declaration.
6396 * cp-abi.c (_initialize_cp_abi): Add declaration.
6397 * cp-namespace.c (_initialize_cp_namespace): Add declaration.
6398 * cp-support.c (_initialize_cp_support): Add declaration.
6399 * cp-valprint.c (_initialize_cp_valprint): Add declaration.
6400 * cris-linux-tdep.c (_initialize_cris_linux_tdep): Add declaration.
6401 * cris-tdep.c (_initialize_cris_tdep): Add declaration.
6402 * csky-linux-tdep.c (_initialize_csky_linux_tdep): Add declaration.
6403 * csky-tdep.c (_initialize_csky_tdep): Add declaration.
6404 * ctfread.c (_initialize_ctfread): Add declaration.
6405 * d-lang.c (_initialize_d_language): Add declaration.
6406 * darwin-nat-info.c (_initialize_darwin_info_commands): Add declaration.
6407 * darwin-nat.c (_initialize_darwin_nat): Add declaration.
6408 * dbxread.c (_initialize_dbxread): Add declaration.
6409 * dcache.c (_initialize_dcache): Add declaration.
6410 * disasm-selftests.c (_initialize_disasm_selftests): Add declaration.
6411 * disasm.c (_initialize_disasm): Add declaration.
6412 * dtrace-probe.c (_initialize_dtrace_probe): Add declaration.
6413 * dummy-frame.c (_initialize_dummy_frame): Add declaration.
6414 * dwarf-index-cache.c (_initialize_index_cache): Add declaration.
6415 * dwarf-index-write.c (_initialize_dwarf_index_write): Add declaration.
6416 * dwarf2-frame-tailcall.c (_initialize_tailcall_frame): Add declaration.
6417 * dwarf2-frame.c (_initialize_dwarf2_frame): Add declaration.
6418 * dwarf2expr.c (_initialize_dwarf2expr): Add declaration.
6419 * dwarf2loc.c (_initialize_dwarf2loc): Add declaration.
6420 * dwarf2read.c (_initialize_dwarf2_read): Add declaration.
6421 * elfread.c (_initialize_elfread): Add declaration.
6422 * exec.c (_initialize_exec): Add declaration.
6423 * extension.c (_initialize_extension): Add declaration.
6424 * f-lang.c (_initialize_f_language): Add declaration.
6425 * f-valprint.c (_initialize_f_valprint): Add declaration.
6426 * fbsd-nat.c (_initialize_fbsd_nat): Add declaration.
6427 * fbsd-tdep.c (_initialize_fbsd_tdep): Add declaration.
6428 * filesystem.c (_initialize_filesystem): Add declaration.
6429 * findcmd.c (_initialize_mem_search): Add declaration.
6430 * findvar.c (_initialize_findvar): Add declaration.
6431 * fork-child.c (_initialize_fork_child): Add declaration.
6432 * frame-base.c (_initialize_frame_base): Add declaration.
6433 * frame-unwind.c (_initialize_frame_unwind): Add declaration.
6434 * frame.c (_initialize_frame): Add declaration.
6435 * frv-linux-tdep.c (_initialize_frv_linux_tdep): Add declaration.
6436 * frv-tdep.c (_initialize_frv_tdep): Add declaration.
6437 * ft32-tdep.c (_initialize_ft32_tdep): Add declaration.
6438 * gcore.c (_initialize_gcore): Add declaration.
6439 * gdb-demangle.c (_initialize_gdb_demangle): Add declaration.
6440 * gdb_bfd.c (_initialize_gdb_bfd): Add declaration.
6441 * gdbarch-selftests.c (_initialize_gdbarch_selftests): Add declaration.
6442 * gdbarch.c (_initialize_gdbarch): Add declaration.
6443 * gdbtypes.c (_initialize_gdbtypes): Add declaration.
6444 * gnu-nat.c (_initialize_gnu_nat): Add declaration.
6445 * gnu-v2-abi.c (_initialize_gnu_v2_abi): Add declaration.
6446 * gnu-v3-abi.c (_initialize_gnu_v3_abi): Add declaration.
6447 * go-lang.c (_initialize_go_language): Add declaration.
6448 * go32-nat.c (_initialize_go32_nat): Add declaration.
6449 * guile/guile.c (_initialize_guile): Add declaration.
6450 * h8300-tdep.c (_initialize_h8300_tdep): Add declaration.
6451 * hppa-linux-nat.c (_initialize_hppa_linux_nat): Add declaration.
6452 * hppa-linux-tdep.c (_initialize_hppa_linux_tdep): Add declaration.
6453 * hppa-nbsd-nat.c (_initialize_hppanbsd_nat): Add declaration.
6454 * hppa-nbsd-tdep.c (_initialize_hppanbsd_tdep): Add declaration.
6455 * hppa-obsd-nat.c (_initialize_hppaobsd_nat): Add declaration.
6456 * hppa-obsd-tdep.c (_initialize_hppabsd_tdep): Add declaration.
6457 * hppa-tdep.c (_initialize_hppa_tdep): Add declaration.
6458 * i386-bsd-nat.c (_initialize_i386bsd_nat): Add declaration.
6459 * i386-cygwin-tdep.c (_initialize_i386_cygwin_tdep): Add declaration.
6460 * i386-darwin-nat.c (_initialize_i386_darwin_nat): Add declaration.
6461 * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): Add declaration.
6462 * i386-dicos-tdep.c (_initialize_i386_dicos_tdep): Add declaration.
6463 * i386-fbsd-nat.c (_initialize_i386fbsd_nat): Add declaration.
6464 * i386-fbsd-tdep.c (_initialize_i386fbsd_tdep): Add declaration.
6465 * i386-gnu-nat.c (_initialize_i386gnu_nat): Add declaration.
6466 * i386-gnu-tdep.c (_initialize_i386gnu_tdep): Add declaration.
6467 * i386-go32-tdep.c (_initialize_i386_go32_tdep): Add declaration.
6468 * i386-linux-nat.c (_initialize_i386_linux_nat): Add declaration.
6469 * i386-linux-tdep.c (_initialize_i386_linux_tdep): Add declaration.
6470 * i386-nbsd-nat.c (_initialize_i386nbsd_nat): Add declaration.
6471 * i386-nbsd-tdep.c (_initialize_i386nbsd_tdep): Add declaration.
6472 * i386-nto-tdep.c (_initialize_i386nto_tdep): Add declaration.
6473 * i386-obsd-nat.c (_initialize_i386obsd_nat): Add declaration.
6474 * i386-obsd-tdep.c (_initialize_i386obsd_tdep): Add declaration.
6475 * i386-sol2-nat.c (_initialize_amd64_sol2_nat): Add declaration.
6476 * i386-sol2-tdep.c (_initialize_i386_sol2_tdep): Add declaration.
6477 * i386-tdep.c (_initialize_i386_tdep): Add declaration.
6478 * i386-windows-nat.c (_initialize_i386_windows_nat): Add declaration.
6479 * ia64-libunwind-tdep.c (_initialize_libunwind_frame): Add declaration.
6480 * ia64-linux-nat.c (_initialize_ia64_linux_nat): Add declaration.
6481 * ia64-linux-tdep.c (_initialize_ia64_linux_tdep): Add declaration.
6482 * ia64-tdep.c (_initialize_ia64_tdep): Add declaration.
6483 * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Add declaration.
6484 * infcall.c (_initialize_infcall): Add declaration.
6485 * infcmd.c (_initialize_infcmd): Add declaration.
6486 * inflow.c (_initialize_inflow): Add declaration.
6487 * infrun.c (_initialize_infrun): Add declaration.
6488 * interps.c (_initialize_interpreter): Add declaration.
6489 * iq2000-tdep.c (_initialize_iq2000_tdep): Add declaration.
6490 * jit.c (_initialize_jit): Add declaration.
6491 * language.c (_initialize_language): Add declaration.
6492 * linux-fork.c (_initialize_linux_fork): Add declaration.
6493 * linux-nat.c (_initialize_linux_nat): Add declaration.
6494 * linux-tdep.c (_initialize_linux_tdep): Add declaration.
6495 * linux-thread-db.c (_initialize_thread_db): Add declaration.
6496 * lm32-tdep.c (_initialize_lm32_tdep): Add declaration.
6497 * m2-lang.c (_initialize_m2_language): Add declaration.
6498 * m32c-tdep.c (_initialize_m32c_tdep): Add declaration.
6499 * m32r-linux-nat.c (_initialize_m32r_linux_nat): Add declaration.
6500 * m32r-linux-tdep.c (_initialize_m32r_linux_tdep): Add declaration.
6501 * m32r-tdep.c (_initialize_m32r_tdep): Add declaration.
6502 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Add declaration.
6503 * m68k-bsd-nat.c (_initialize_m68kbsd_nat): Add declaration.
6504 * m68k-bsd-tdep.c (_initialize_m68kbsd_tdep): Add declaration.
6505 * m68k-linux-nat.c (_initialize_m68k_linux_nat): Add declaration.
6506 * m68k-linux-tdep.c (_initialize_m68k_linux_tdep): Add declaration.
6507 * m68k-tdep.c (_initialize_m68k_tdep): Add declaration.
6508 * machoread.c (_initialize_machoread): Add declaration.
6509 * macrocmd.c (_initialize_macrocmd): Add declaration.
6510 * macroscope.c (_initialize_macroscope): Add declaration.
6511 * maint-test-options.c (_initialize_maint_test_options): Add declaration.
6512 * maint-test-settings.c (_initialize_maint_test_settings): Add declaration.
6513 * maint.c (_initialize_maint_cmds): Add declaration.
6514 * mdebugread.c (_initialize_mdebugread): Add declaration.
6515 * memattr.c (_initialize_mem): Add declaration.
6516 * mep-tdep.c (_initialize_mep_tdep): Add declaration.
6517 * mi/mi-cmd-env.c (_initialize_mi_cmd_env): Add declaration.
6518 * mi/mi-cmds.c (_initialize_mi_cmds): Add declaration.
6519 * mi/mi-interp.c (_initialize_mi_interp): Add declaration.
6520 * mi/mi-main.c (_initialize_mi_main): Add declaration.
6521 * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): Add declaration.
6522 * microblaze-tdep.c (_initialize_microblaze_tdep): Add declaration.
6523 * mips-fbsd-nat.c (_initialize_mips_fbsd_nat): Add declaration.
6524 * mips-fbsd-tdep.c (_initialize_mips_fbsd_tdep): Add declaration.
6525 * mips-linux-nat.c (_initialize_mips_linux_nat): Add declaration.
6526 * mips-linux-tdep.c (_initialize_mips_linux_tdep): Add declaration.
6527 * mips-nbsd-nat.c (_initialize_mipsnbsd_nat): Add declaration.
6528 * mips-nbsd-tdep.c (_initialize_mipsnbsd_tdep): Add declaration.
6529 * mips-sde-tdep.c (_initialize_mips_sde_tdep): Add declaration.
6530 * mips-tdep.c (_initialize_mips_tdep): Add declaration.
6531 * mips64-obsd-nat.c (_initialize_mips64obsd_nat): Add declaration.
6532 * mips64-obsd-tdep.c (_initialize_mips64obsd_tdep): Add declaration.
6533 * mipsread.c (_initialize_mipsread): Add declaration.
6534 * mn10300-linux-tdep.c (_initialize_mn10300_linux_tdep): Add declaration.
6535 * mn10300-tdep.c (_initialize_mn10300_tdep): Add declaration.
6536 * moxie-tdep.c (_initialize_moxie_tdep): Add declaration.
6537 * msp430-tdep.c (_initialize_msp430_tdep): Add declaration.
6538 * nds32-tdep.c (_initialize_nds32_tdep): Add declaration.
6539 * nios2-linux-tdep.c (_initialize_nios2_linux_tdep): Add declaration.
6540 * nios2-tdep.c (_initialize_nios2_tdep): Add declaration.
6541 * nto-procfs.c (_initialize_procfs): Add declaration.
6542 * objc-lang.c (_initialize_objc_language): Add declaration.
6543 * observable.c (_initialize_observer): Add declaration.
6544 * opencl-lang.c (_initialize_opencl_language): Add declaration.
6545 * or1k-linux-tdep.c (_initialize_or1k_linux_tdep): Add declaration.
6546 * or1k-tdep.c (_initialize_or1k_tdep): Add declaration.
6547 * osabi.c (_initialize_gdb_osabi): Add declaration.
6548 * osdata.c (_initialize_osdata): Add declaration.
6549 * p-valprint.c (_initialize_pascal_valprint): Add declaration.
6550 * parse.c (_initialize_parse): Add declaration.
6551 * ppc-fbsd-nat.c (_initialize_ppcfbsd_nat): Add declaration.
6552 * ppc-fbsd-tdep.c (_initialize_ppcfbsd_tdep): Add declaration.
6553 * ppc-linux-nat.c (_initialize_ppc_linux_nat): Add declaration.
6554 * ppc-linux-tdep.c (_initialize_ppc_linux_tdep): Add declaration.
6555 * ppc-nbsd-nat.c (_initialize_ppcnbsd_nat): Add declaration.
6556 * ppc-nbsd-tdep.c (_initialize_ppcnbsd_tdep): Add declaration.
6557 * ppc-obsd-nat.c (_initialize_ppcobsd_nat): Add declaration.
6558 * ppc-obsd-tdep.c (_initialize_ppcobsd_tdep): Add declaration.
6559 * printcmd.c (_initialize_printcmd): Add declaration.
6560 * probe.c (_initialize_probe): Add declaration.
6561 * proc-api.c (_initialize_proc_api): Add declaration.
6562 * proc-events.c (_initialize_proc_events): Add declaration.
6563 * proc-service.c (_initialize_proc_service): Add declaration.
6564 * procfs.c (_initialize_procfs): Add declaration.
6565 * producer.c (_initialize_producer): Add declaration.
6566 * psymtab.c (_initialize_psymtab): Add declaration.
6567 * python/python.c (_initialize_python): Add declaration.
6568 * ravenscar-thread.c (_initialize_ravenscar): Add declaration.
6569 * record-btrace.c (_initialize_record_btrace): Add declaration.
6570 * record-full.c (_initialize_record_full): Add declaration.
6571 * record.c (_initialize_record): Add declaration.
6572 * regcache-dump.c (_initialize_regcache_dump): Add declaration.
6573 * regcache.c (_initialize_regcache): Add declaration.
6574 * reggroups.c (_initialize_reggroup): Add declaration.
6575 * remote-notif.c (_initialize_notif): Add declaration.
6576 * remote-sim.c (_initialize_remote_sim): Add declaration.
6577 * remote.c (_initialize_remote): Add declaration.
6578 * reverse.c (_initialize_reverse): Add declaration.
6579 * riscv-fbsd-nat.c (_initialize_riscv_fbsd_nat): Add declaration.
6580 * riscv-fbsd-tdep.c (_initialize_riscv_fbsd_tdep): Add declaration.
6581 * riscv-linux-nat.c (_initialize_riscv_linux_nat): Add declaration.
6582 * riscv-linux-tdep.c (_initialize_riscv_linux_tdep): Add declaration.
6583 * riscv-tdep.c (_initialize_riscv_tdep): Add declaration.
6584 * rl78-tdep.c (_initialize_rl78_tdep): Add declaration.
6585 * rs6000-aix-tdep.c (_initialize_rs6000_aix_tdep): Add declaration.
6586 * rs6000-lynx178-tdep.c (_initialize_rs6000_lynx178_tdep):
6587 Add declaration.
6588 * rs6000-nat.c (_initialize_rs6000_nat): Add declaration.
6589 * rs6000-tdep.c (_initialize_rs6000_tdep): Add declaration.
6590 * run-on-main-thread.c (_initialize_run_on_main_thread): Add declaration.
6591 * rust-exp.y (_initialize_rust_exp): Add declaration.
6592 * rx-tdep.c (_initialize_rx_tdep): Add declaration.
6593 * s12z-tdep.c (_initialize_s12z_tdep): Add declaration.
6594 * s390-linux-nat.c (_initialize_s390_nat): Add declaration.
6595 * s390-linux-tdep.c (_initialize_s390_linux_tdep): Add declaration.
6596 * s390-tdep.c (_initialize_s390_tdep): Add declaration.
6597 * score-tdep.c (_initialize_score_tdep): Add declaration.
6598 * ser-go32.c (_initialize_ser_dos): Add declaration.
6599 * ser-mingw.c (_initialize_ser_windows): Add declaration.
6600 * ser-pipe.c (_initialize_ser_pipe): Add declaration.
6601 * ser-tcp.c (_initialize_ser_tcp): Add declaration.
6602 * ser-uds.c (_initialize_ser_socket): Add declaration.
6603 * ser-unix.c (_initialize_ser_hardwire): Add declaration.
6604 * serial.c (_initialize_serial): Add declaration.
6605 * sh-linux-tdep.c (_initialize_sh_linux_tdep): Add declaration.
6606 * sh-nbsd-nat.c (_initialize_shnbsd_nat): Add declaration.
6607 * sh-nbsd-tdep.c (_initialize_shnbsd_tdep): Add declaration.
6608 * sh-tdep.c (_initialize_sh_tdep): Add declaration.
6609 * skip.c (_initialize_step_skip): Add declaration.
6610 * sol-thread.c (_initialize_sol_thread): Add declaration.
6611 * solib-aix.c (_initialize_solib_aix): Add declaration.
6612 * solib-darwin.c (_initialize_darwin_solib): Add declaration.
6613 * solib-dsbt.c (_initialize_dsbt_solib): Add declaration.
6614 * solib-frv.c (_initialize_frv_solib): Add declaration.
6615 * solib-svr4.c (_initialize_svr4_solib): Add declaration.
6616 * solib-target.c (_initialize_solib_target): Add declaration.
6617 * solib.c (_initialize_solib): Add declaration.
6618 * source-cache.c (_initialize_source_cache): Add declaration.
6619 * source.c (_initialize_source): Add declaration.
6620 * sparc-linux-nat.c (_initialize_sparc_linux_nat): Add declaration.
6621 * sparc-linux-tdep.c (_initialize_sparc_linux_tdep): Add declaration.
6622 * sparc-nat.c (_initialize_sparc_nat): Add declaration.
6623 * sparc-nbsd-nat.c (_initialize_sparcnbsd_nat): Add declaration.
6624 * sparc-nbsd-tdep.c (_initialize_sparcnbsd_tdep): Add declaration.
6625 * sparc-obsd-tdep.c (_initialize_sparc32obsd_tdep): Add declaration.
6626 * sparc-sol2-tdep.c (_initialize_sparc_sol2_tdep): Add declaration.
6627 * sparc-tdep.c (_initialize_sparc_tdep): Add declaration.
6628 * sparc64-fbsd-nat.c (_initialize_sparc64fbsd_nat): Add declaration.
6629 * sparc64-fbsd-tdep.c (_initialize_sparc64fbsd_tdep): Add declaration.
6630 * sparc64-linux-nat.c (_initialize_sparc64_linux_nat): Add declaration.
6631 * sparc64-linux-tdep.c (_initialize_sparc64_linux_tdep): Add declaration.
6632 * sparc64-nat.c (_initialize_sparc64_nat): Add declaration.
6633 * sparc64-nbsd-nat.c (_initialize_sparc64nbsd_nat): Add declaration.
6634 * sparc64-nbsd-tdep.c (_initialize_sparc64nbsd_tdep): Add declaration.
6635 * sparc64-obsd-nat.c (_initialize_sparc64obsd_nat): Add declaration.
6636 * sparc64-obsd-tdep.c (_initialize_sparc64obsd_tdep): Add declaration.
6637 * sparc64-sol2-tdep.c (_initialize_sparc64_sol2_tdep): Add declaration.
6638 * sparc64-tdep.c (_initialize_sparc64_adi_tdep): Add declaration.
6639 * stabsread.c (_initialize_stabsread): Add declaration.
6640 * stack.c (_initialize_stack): Add declaration.
6641 * stap-probe.c (_initialize_stap_probe): Add declaration.
6642 * std-regs.c (_initialize_frame_reg): Add declaration.
6643 * symfile-debug.c (_initialize_symfile_debug): Add declaration.
6644 * symfile-mem.c (_initialize_symfile_mem): Add declaration.
6645 * symfile.c (_initialize_symfile): Add declaration.
6646 * symmisc.c (_initialize_symmisc): Add declaration.
6647 * symtab.c (_initialize_symtab): Add declaration.
6648 * target.c (_initialize_target): Add declaration.
6649 * target-connection.c (_initialize_target_connection): Add
6650 declaration.
6651 * target-dcache.c (_initialize_target_dcache): Add declaration.
6652 * target-descriptions.c (_initialize_target_descriptions): Add declaration.
6653 * thread.c (_initialize_thread): Add declaration.
6654 * tic6x-linux-tdep.c (_initialize_tic6x_linux_tdep): Add declaration.
6655 * tic6x-tdep.c (_initialize_tic6x_tdep): Add declaration.
6656 * tilegx-linux-nat.c (_initialize_tile_linux_nat): Add declaration.
6657 * tilegx-linux-tdep.c (_initialize_tilegx_linux_tdep): Add declaration.
6658 * tilegx-tdep.c (_initialize_tilegx_tdep): Add declaration.
6659 * tracectf.c (_initialize_ctf): Add declaration.
6660 * tracefile-tfile.c (_initialize_tracefile_tfile): Add declaration.
6661 * tracefile.c (_initialize_tracefile): Add declaration.
6662 * tracepoint.c (_initialize_tracepoint): Add declaration.
6663 * tui/tui-hooks.c (_initialize_tui_hooks): Add declaration.
6664 * tui/tui-interp.c (_initialize_tui_interp): Add declaration.
6665 * tui/tui-layout.c (_initialize_tui_layout): Add declaration.
6666 * tui/tui-regs.c (_initialize_tui_regs): Add declaration.
6667 * tui/tui-stack.c (_initialize_tui_stack): Add declaration.
6668 * tui/tui-win.c (_initialize_tui_win): Add declaration.
6669 * tui/tui.c (_initialize_tui): Add declaration.
6670 * typeprint.c (_initialize_typeprint): Add declaration.
6671 * ui-style.c (_initialize_ui_style): Add declaration.
6672 * unittests/array-view-selftests.c (_initialize_array_view_selftests): Add declaration.
6673 * unittests/child-path-selftests.c (_initialize_child_path_selftests): Add declaration.
6674 * unittests/cli-utils-selftests.c (_initialize_cli_utils_selftests): Add declaration.
6675 * unittests/common-utils-selftests.c (_initialize_common_utils_selftests): Add declaration.
6676 * unittests/copy_bitwise-selftests.c (_initialize_copy_bitwise_utils_selftests): Add declaration.
6677 * unittests/environ-selftests.c (_initialize_environ_selftests): Add declaration.
6678 * unittests/filtered_iterator-selftests.c
6679 (_initialize_filtered_iterator_selftests): Add declaration.
6680 * unittests/format_pieces-selftests.c (_initialize_format_pieces_selftests): Add declaration.
6681 * unittests/function-view-selftests.c (_initialize_function_view_selftests): Add declaration.
6682 * unittests/help-doc-selftests.c (_initialize_help_doc_selftests): Add declaration.
6683 * unittests/lookup_name_info-selftests.c (_initialize_lookup_name_info_selftests): Add declaration.
6684 * unittests/main-thread-selftests.c
6685 (_initialize_main_thread_selftests): Add declaration.
6686 * unittests/memory-map-selftests.c (_initialize_memory_map_selftests): Add declaration.
6687 * unittests/memrange-selftests.c (_initialize_memrange_selftests): Add declaration.
6688 * unittests/mkdir-recursive-selftests.c (_initialize_mkdir_recursive_selftests): Add declaration.
6689 * unittests/observable-selftests.c (_initialize_observer_selftest): Add declaration.
6690 * unittests/offset-type-selftests.c (_initialize_offset_type_selftests): Add declaration.
6691 * unittests/optional-selftests.c (_initialize_optional_selftests): Add declaration.
6692 * unittests/parse-connection-spec-selftests.c (_initialize_parse_connection_spec_selftests): Add declaration.
6693 * unittests/rsp-low-selftests.c (_initialize_rsp_low_selftests): Add declaration.
6694 * unittests/scoped_fd-selftests.c (_initialize_scoped_fd_selftests): Add declaration.
6695 * unittests/scoped_mmap-selftests.c (_initialize_scoped_mmap_selftests): Add declaration.
6696 * unittests/scoped_restore-selftests.c (_initialize_scoped_restore_selftests): Add declaration.
6697 * unittests/string_view-selftests.c (_initialize_string_view_selftests): Add declaration.
6698 * unittests/style-selftests.c (_initialize_style_selftest): Add declaration.
6699 * unittests/tracepoint-selftests.c (_initialize_tracepoint_selftests): Add declaration.
6700 * unittests/tui-selftests.c (_initialize_tui_selftest): Add
6701 declaration.
6702 * unittests/unpack-selftests.c (_initialize_unpack_selftests): Add declaration.
6703 * unittests/utils-selftests.c (_initialize_utils_selftests): Add declaration.
6704 * unittests/vec-utils-selftests.c (_initialize_vec_utils_selftests): Add declaration.
6705 * unittests/xml-utils-selftests.c (_initialize_xml_utils): Add declaration.
6706 * user-regs.c (_initialize_user_regs): Add declaration.
6707 * utils.c (_initialize_utils): Add declaration.
6708 * v850-tdep.c (_initialize_v850_tdep): Add declaration.
6709 * valops.c (_initialize_valops): Add declaration.
6710 * valprint.c (_initialize_valprint): Add declaration.
6711 * value.c (_initialize_values): Add declaration.
6712 * varobj.c (_initialize_varobj): Add declaration.
6713 * vax-bsd-nat.c (_initialize_vaxbsd_nat): Add declaration.
6714 * vax-nbsd-tdep.c (_initialize_vaxnbsd_tdep): Add declaration.
6715 * vax-tdep.c (_initialize_vax_tdep): Add declaration.
6716 * windows-nat.c (_initialize_windows_nat): Add declaration.
6717 (_initialize_check_for_gdb_ini): Add declaration.
6718 (_initialize_loadable): Add declaration.
6719 * windows-tdep.c (_initialize_windows_tdep): Add declaration.
6720 * x86-bsd-nat.c (_initialize_x86_bsd_nat): Add declaration.
6721 * x86-linux-nat.c (_initialize_x86_linux_nat): Add declaration.
6722 * xcoffread.c (_initialize_xcoffread): Add declaration.
6723 * xml-support.c (_initialize_xml_support): Add declaration.
6724 * xstormy16-tdep.c (_initialize_xstormy16_tdep): Add declaration.
6725 * xtensa-linux-nat.c (_initialize_xtensa_linux_nat): Add declaration.
6726 * xtensa-linux-tdep.c (_initialize_xtensa_linux_tdep): Add declaration.
6727 * xtensa-tdep.c (_initialize_xtensa_tdep): Add declaration.
6728
e2de1eec
SM
67292020-01-13 Simon Marchi <simon.marchi@polymtl.ca>
6730
6731 * regformats/regdat.sh: Generate declaration for init function.
6732
e0037b4c
SM
67332020-01-13 Simon Marchi <simon.marchi@polymtl.ca>
6734
6735 * remote-sim.c (next_pid, INITIAL_PID, sim_inferior_data): Move
6736 up.
6737 (gdbsim_target) <get_inferior_data_by_ptid, resume_one_inferior,
6738 close_one_inferior>: New methods.
6739 (get_sim_inferior_data_by_ptid): Move to gdbsim_target,
6740 pass down target to find_inferior_pid.
6741 (gdbsim_target::fetch_registers, gdbsim_target::store_registers):
6742 Pass down target to find_inferior_ptid.
6743 (gdbsim_target::create_inferior): Pass down target to
6744 add_thread_silent.
6745 (gdbsim_close_inferior): Move to gdbsim_close_inferior, pass
6746 target down to find_inferior_ptid and switch_to_thread.
6747 (gdbsim_target::close): Update to call close_one_inferior.
6748 (struct resume_data): Remove.
6749 (gdbsim_resume_inferior): Move to gdbsim_target. Take arguments
6750 directly, rather than through a void pointer.
6751 (gdbsim_target::resume): Update to call resume_one_inferior.
6752
58920b5b
SM
67532020-01-12 Simon Marchi <simon.marchi@polymtl.ca>
6754
6755 * gdbsupport/gdb_wait.c: Include gdb_wait.h.
6756
4ec89149
PA
67572020-01-12 Pedro Alves <palves@redhat.com>
6758
6759 * bsd-kvm.c (bsd_kvm_target::close): Call exit_inferior_silent
6760 directly for the current inferior instead of
6761 discard_all_inferiors.
6762 (discard_all_inferiors): Delete.
6763
7c392d1d
TT
67642020-01-11 Tom Tromey <tom@tromey.com>
6765
6766 * tui/tui-wingeneral.c (box_win): Check cli_styling.
6767 * tui/tui-winsource.c (tui_source_window_base::refill): Use
6768 deprecated_safe_get_selected_frame.
6769
d9ebdab7
TBA
67702020-01-10 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
6771
6772 * inferior.c (print_inferior): Switch inferior before printing it.
6773
f3c469b9
PA
67742020-01-10 Aleksandar Paunovic <aleksandar.paunovic@intel.com>
6775 Pedro Alves <palves@redhat.com>
6776
6777 * progspace-and-thread.c (switch_to_program_space_and_thread):
6778 Assert there's an inferior for PSPACE. Use
6779 switch_to_inferior_no_thread to switch the inferior too.
6780 * progspace.c (program_space::~program_space): Call
6781 clear_symtab_users here, with SYMFILE_DEFER_BP_RESET.
6782 (program_space::free_all_objfiles): Don't call clear_symtab_users
6783 here.
6784 * symfile.c (symbol_file_clear): Call clear_symtab_users here.
6785
65c574f6
PA
67862020-01-10 Pedro Alves <palves@redhat.com>
6787
6788 * NEWS: Mention multi-target debugging, "info connections", and
6789 "add-inferior -no-connection".
6790
2f4fcf00
PA
67912020-01-10 Pedro Alves <palves@redhat.com>
6792
6793 * infrun.c: Include "target-connection.h".
6794 (check_multi_target_resumption): New.
6795 (proceed): Call it.
6796 * target-connection.c (make_target_connection_string): Make
6797 extern.
6798 * target-connection.h (make_target_connection_string): Declare.
6799
121b3efd
PA
68002020-01-10 Pedro Alves <palves@redhat.com>
6801
6802 * Makefile.in (COMMON_SFILES): Add target-connection.c.
6803 * inferior.c (uiout_field_connection): New function.
6804 (print_inferior): Add new "connection-id" column.
6805 (add_inferior_command): Show connection number/string of added
6806 inferior.
6807 * process-stratum-target.h
6808 (process_stratum_target::connection_string): New virtual method.
6809 (process_stratum_target::connection_number): New field.
6810 * remote.c (remote_target::connection_string): New override.
6811 * target-connection.c: New file.
6812 * target-connection.h: New file.
6813 * target.c (decref_target): Remove process_stratum targets from
6814 the connection list.
6815 (target_stack::push): Add process_stratum targets to the
6816 connection list.
6817
4f837581
PA
68182020-01-10 Pedro Alves <palves@redhat.com>
6819
6820 Revert:
6821 2016-04-12 Pedro Alves <palves@redhat.com>
6822 * serial.c (serial_open, serial_fdopen_ops, do_serial_close):
6823 Remove references to name.
6824 * serial.h (struct serial) <name>: Delete.
6825
f4ec508e
PA
68262020-01-10 Pedro Alves <palves@redhat.com>
6827
6828 * gdbarch-selftests.c (register_to_value_test): Remove "target
6829 already pushed" check.
6830
5b6d1e4f
PA
68312020-01-10 Pedro Alves <palves@redhat.com>
6832 John Baldwin <jhb@FreeBSD.org>
6833
6834 * aarch64-linux-nat.c
6835 (aarch64_linux_nat_target::thread_architecture): Adjust.
6836 * ada-tasks.c (print_ada_task_info): Adjust find_thread_ptid call.
6837 (task_command_1): Likewise.
6838 * aix-thread.c (sync_threadlists, aix_thread_target::resume)
6839 (aix_thread_target::wait, aix_thread_target::fetch_registers)
6840 (aix_thread_target::store_registers)
6841 (aix_thread_target::thread_alive): Adjust.
6842 * amd64-fbsd-tdep.c: Include "inferior.h".
6843 (amd64fbsd_get_thread_local_address): Pass down target.
6844 * amd64-linux-nat.c (ps_get_thread_area): Use ps_prochandle
6845 thread's gdbarch instead of target_gdbarch.
6846 * break-catch-sig.c (signal_catchpoint_print_it): Adjust call to
6847 get_last_target_status.
6848 * break-catch-syscall.c (print_it_catch_syscall): Likewise.
6849 * breakpoint.c (breakpoints_should_be_inserted_now): Consider all
6850 inferiors.
6851 (update_inserted_breakpoint_locations): Skip if inferiors with no
6852 execution.
6853 (update_global_location_list): When handling moribund locations,
6854 find representative inferior for location's pspace, and use thread
6855 count of its process_stratum target.
6856 * bsd-kvm.c (bsd_kvm_target_open): Pass target down.
6857 * bsd-uthread.c (bsd_uthread_target::wait): Use
6858 as_process_stratum_target and adjust thread_change_ptid and
6859 add_thread calls.
6860 (bsd_uthread_target::update_thread_list): Use
6861 as_process_stratum_target and adjust find_thread_ptid,
6862 thread_change_ptid and add_thread calls.
6863 * btrace.c (maint_btrace_packet_history_cmd): Adjust
6864 find_thread_ptid call.
6865 * corelow.c (add_to_thread_list): Adjust add_thread call.
6866 (core_target_open): Adjust add_thread_silent and thread_count
6867 calls.
6868 (core_target::pid_to_str): Adjust find_inferior_ptid call.
6869 * ctf.c (ctf_target_open): Adjust add_thread_silent call.
6870 * event-top.c (async_disconnect): Pop targets from all inferiors.
6871 * exec.c (add_target_sections): Push exec target on all inferiors
6872 sharing the program space.
6873 (remove_target_sections): Remove the exec target from all
6874 inferiors sharing the program space.
6875 (exec_on_vfork): New.
6876 * exec.h (exec_on_vfork): Declare.
6877 * fbsd-nat.c (fbsd_add_threads): Add fbsd_nat_target parameter.
6878 Pass it down.
6879 (fbsd_nat_target::update_thread_list): Adjust.
6880 (fbsd_nat_target::resume): Adjust.
6881 (fbsd_handle_debug_trap): Add fbsd_nat_target parameter. Pass it
6882 down.
6883 (fbsd_nat_target::wait, fbsd_nat_target::post_attach): Adjust.
6884 * fbsd-tdep.c (fbsd_corefile_thread): Adjust
6885 get_thread_arch_regcache call.
6886 * fork-child.c (gdb_startup_inferior): Pass target down to
6887 startup_inferior and set_executing.
6888 * gdbthread.h (struct process_stratum_target): Forward declare.
6889 (add_thread, add_thread_silent, add_thread_with_info)
6890 (in_thread_list): Add process_stratum_target parameter.
6891 (find_thread_ptid(inferior*, ptid_t)): New overload.
6892 (find_thread_ptid, thread_change_ptid): Add process_stratum_target
6893 parameter.
6894 (all_threads()): Delete overload.
6895 (all_threads, all_non_exited_threads): Add process_stratum_target
6896 parameter.
6897 (all_threads_safe): Use brace initialization.
6898 (thread_count): Add process_stratum_target parameter.
6899 (set_resumed, set_running, set_stop_requested, set_executing)
6900 (threads_are_executing, finish_thread_state): Add
6901 process_stratum_target parameter.
6902 (switch_to_thread): Use is_current_thread.
6903 * i386-fbsd-tdep.c: Include "inferior.h".
6904 (i386fbsd_get_thread_local_address): Pass down target.
6905 * i386-linux-nat.c (i386_linux_nat_target::low_resume): Adjust.
6906 * inf-child.c (inf_child_target::maybe_unpush_target): Remove
6907 have_inferiors check.
6908 * inf-ptrace.c (inf_ptrace_target::create_inferior)
6909 (inf_ptrace_target::attach): Adjust.
6910 * infcall.c (run_inferior_call): Adjust.
6911 * infcmd.c (run_command_1): Pass target to
6912 scoped_finish_thread_state.
6913 (proceed_thread_callback): Skip inferiors with no execution.
6914 (continue_command): Rename 'all_threads' local to avoid hiding
6915 'all_threads' function. Adjust get_last_target_status call.
6916 (prepare_one_step): Adjust set_running call.
6917 (signal_command): Use user_visible_resume_target. Compare thread
6918 pointers instead of inferior_ptid.
6919 (info_program_command): Adjust to pass down target.
6920 (attach_command): Mark target's 'thread_executing' flag.
6921 (stop_current_target_threads_ns): New, factored out from ...
6922 (interrupt_target_1): ... this. Switch inferior before making
6923 target calls.
6924 * inferior-iter.h
6925 (struct all_inferiors_iterator, struct all_inferiors_range)
6926 (struct all_inferiors_safe_range)
6927 (struct all_non_exited_inferiors_range): Filter on
6928 process_stratum_target too. Remove explicit.
6929 * inferior.c (inferior::inferior): Push dummy target on target
6930 stack.
6931 (find_inferior_pid, find_inferior_ptid, number_of_live_inferiors):
6932 Add process_stratum_target parameter, and pass it down.
6933 (have_live_inferiors): Adjust.
6934 (switch_to_inferior_and_push_target): New.
6935 (add_inferior_command, clone_inferior_command): Handle
6936 "-no-connection" parameter. Use
6937 switch_to_inferior_and_push_target.
6938 (_initialize_inferior): Mention "-no-connection" option in
6939 the help of "add-inferior" and "clone-inferior" commands.
6940 * inferior.h: Include "process-stratum-target.h".
6941 (interrupt_target_1): Use bool.
6942 (struct inferior) <push_target, unpush_target, target_is_pushed,
6943 find_target_beneath, top_target, process_target, target_at,
6944 m_stack>: New.
6945 (discard_all_inferiors): Delete.
6946 (find_inferior_pid, find_inferior_ptid, number_of_live_inferiors)
6947 (all_inferiors, all_non_exited_inferiors): Add
6948 process_stratum_target parameter.
6949 * infrun.c: Include "gdb_select.h" and <unordered_map>.
6950 (target_last_proc_target): New global.
6951 (follow_fork_inferior): Push target on new inferior. Pass target
6952 to add_thread_silent. Call exec_on_vfork. Handle target's
6953 reference count.
6954 (follow_fork): Adjust get_last_target_status call. Also consider
6955 target.
6956 (follow_exec): Push target on new inferior.
6957 (struct execution_control_state) <target>: New field.
6958 (user_visible_resume_target): New.
6959 (do_target_resume): Call target_async.
6960 (resume_1): Set target's threads_executing flag. Consider resume
6961 target.
6962 (commit_resume_all_targets): New.
6963 (proceed): Also consider resume target. Skip threads of inferiors
6964 with no execution. Commit resumtion in all targets.
6965 (start_remote): Pass current inferior to wait_for_inferior.
6966 (infrun_thread_stop_requested): Consider target as well. Pass
6967 thread_info pointer to clear_inline_frame_state instead of ptid.
6968 (infrun_thread_thread_exit): Consider target as well.
6969 (random_pending_event_thread): New inferior parameter. Use it.
6970 (do_target_wait): Rename to ...
6971 (do_target_wait_1): ... this. Add inferior parameter, and pass it
6972 down.
6973 (threads_are_resumed_pending_p, do_target_wait): New.
6974 (prepare_for_detach): Adjust calls.
6975 (wait_for_inferior): New inferior parameter. Handle it. Use
6976 do_target_wait_1 instead of do_target_wait.
6977 (fetch_inferior_event): Adjust. Switch to representative
6978 inferior. Pass target down.
6979 (set_last_target_status): Add process_stratum_target parameter.
6980 Save target in global.
6981 (get_last_target_status): Add process_stratum_target parameter and
6982 handle it.
6983 (nullify_last_target_wait_ptid): Clear 'target_last_proc_target'.
6984 (context_switch): Check inferior_ptid == null_ptid before calling
6985 inferior_thread().
6986 (get_inferior_stop_soon): Pass down target.
6987 (wait_one): Rename to ...
6988 (poll_one_curr_target): ... this.
6989 (struct wait_one_event): New.
6990 (wait_one): New.
6991 (stop_all_threads): Adjust.
6992 (handle_no_resumed, handle_inferior_event): Adjust to consider the
6993 event's target.
6994 (switch_back_to_stepped_thread): Also consider target.
6995 (print_stop_event): Update.
6996 (normal_stop): Update. Also consider the resume target.
6997 * infrun.h (wait_for_inferior): Remove declaration.
6998 (user_visible_resume_target): New declaration.
6999 (get_last_target_status, set_last_target_status): New
7000 process_stratum_target parameter.
7001 * inline-frame.c (clear_inline_frame_state(ptid_t)): Add
7002 process_stratum_target parameter, and use it.
7003 (clear_inline_frame_state (thread_info*)): New.
7004 * inline-frame.c (clear_inline_frame_state(ptid_t)): Add
7005 process_stratum_target parameter.
7006 (clear_inline_frame_state (thread_info*)): Declare.
7007 * linux-fork.c (delete_checkpoint_command): Pass target down to
7008 find_thread_ptid.
7009 (checkpoint_command): Adjust.
7010 * linux-nat.c (linux_nat_target::follow_fork): Switch to thread
7011 instead of just tweaking inferior_ptid.
7012 (linux_nat_switch_fork): Pass target down to thread_change_ptid.
7013 (exit_lwp): Pass target down to find_thread_ptid.
7014 (attach_proc_task_lwp_callback): Pass target down to
7015 add_thread/set_running/set_executing.
7016 (linux_nat_target::attach): Pass target down to
7017 thread_change_ptid.
7018 (get_detach_signal): Pass target down to find_thread_ptid.
7019 Consider last target status's target.
7020 (linux_resume_one_lwp_throw, resume_lwp)
7021 (linux_handle_syscall_trap, linux_handle_extended_wait, wait_lwp)
7022 (stop_wait_callback, save_stop_reason, linux_nat_filter_event)
7023 (linux_nat_wait_1, resume_stopped_resumed_lwps): Pass target down.
7024 (linux_nat_target::async_wait_fd): New.
7025 (linux_nat_stop_lwp, linux_nat_target::thread_address_space): Pass
7026 target down.
7027 * linux-nat.h (linux_nat_target::async_wait_fd): Declare.
7028 * linux-tdep.c (get_thread_arch_regcache): Pass target down.
7029 * linux-thread-db.c (struct thread_db_info::process_target): New
7030 field.
7031 (add_thread_db_info): Save target.
7032 (get_thread_db_info): New process_stratum_target parameter. Also
7033 match target.
7034 (delete_thread_db_info): New process_stratum_target parameter.
7035 Also match target.
7036 (thread_from_lwp): Adjust to pass down target.
7037 (thread_db_notice_clone): Pass down target.
7038 (check_thread_db_callback): Pass down target.
7039 (try_thread_db_load_1): Always push the thread_db target.
7040 (try_thread_db_load, record_thread): Pass target down.
7041 (thread_db_target::detach): Pass target down. Always unpush the
7042 thread_db target.
7043 (thread_db_target::wait, thread_db_target::mourn_inferior): Pass
7044 target down. Always unpush the thread_db target.
7045 (find_new_threads_callback, thread_db_find_new_threads_2)
7046 (thread_db_target::update_thread_list): Pass target down.
7047 (thread_db_target::pid_to_str): Pass current inferior down.
7048 (thread_db_target::get_thread_local_address): Pass target down.
7049 (thread_db_target::resume, maintenance_check_libthread_db): Pass
7050 target down.
7051 * nto-procfs.c (nto_procfs_target::update_thread_list): Adjust.
7052 * procfs.c (procfs_target::procfs_init_inferior): Declare.
7053 (proc_set_current_signal, do_attach, procfs_target::wait): Adjust.
7054 (procfs_init_inferior): Rename to ...
7055 (procfs_target::procfs_init_inferior): ... this and adjust.
7056 (procfs_target::create_inferior, procfs_notice_thread)
7057 (procfs_do_thread_registers): Adjust.
7058 * ppc-fbsd-tdep.c: Include "inferior.h".
7059 (ppcfbsd_get_thread_local_address): Pass down target.
7060 * proc-service.c (ps_xfer_memory): Switch current inferior and
7061 program space as well.
7062 (get_ps_regcache): Pass target down.
7063 * process-stratum-target.c
7064 (process_stratum_target::thread_address_space)
7065 (process_stratum_target::thread_architecture): Pass target down.
7066 * process-stratum-target.h
7067 (process_stratum_target::threads_executing): New field.
7068 (as_process_stratum_target): New.
7069 * ravenscar-thread.c
7070 (ravenscar_thread_target::update_inferior_ptid): Pass target down.
7071 (ravenscar_thread_target::wait, ravenscar_add_thread): Pass target
7072 down.
7073 * record-btrace.c (record_btrace_target::info_record): Adjust.
7074 (record_btrace_target::record_method)
7075 (record_btrace_target::record_is_replaying)
7076 (record_btrace_target::fetch_registers)
7077 (get_thread_current_frame_id, record_btrace_target::resume)
7078 (record_btrace_target::wait, record_btrace_target::stop): Pass
7079 target down.
7080 * record-full.c (record_full_wait_1): Switch to event thread.
7081 Pass target down.
7082 * regcache.c (regcache::regcache)
7083 (get_thread_arch_aspace_regcache, get_thread_arch_regcache): Add
7084 process_stratum_target parameter and handle it.
7085 (current_thread_target): New global.
7086 (get_thread_regcache): Add process_stratum_target parameter and
7087 handle it. Switch inferior before calling target method.
7088 (get_thread_regcache): Pass target down.
7089 (get_thread_regcache_for_ptid): Pass target down.
7090 (registers_changed_ptid): Add process_stratum_target parameter and
7091 handle it.
7092 (registers_changed_thread, registers_changed): Pass target down.
7093 (test_get_thread_arch_aspace_regcache): New.
7094 (current_regcache_test): Define a couple local test_target_ops
7095 instances and use them for testing.
7096 (readwrite_regcache): Pass process_stratum_target parameter.
7097 (cooked_read_test, cooked_write_test): Pass mock_target down.
7098 * regcache.h (get_thread_regcache, get_thread_arch_regcache)
7099 (get_thread_arch_aspace_regcache): Add process_stratum_target
7100 parameter.
7101 (regcache::target): New method.
7102 (regcache::regcache, regcache::get_thread_arch_aspace_regcache)
7103 (regcache::registers_changed_ptid): Add process_stratum_target
7104 parameter.
7105 (regcache::m_target): New field.
7106 (registers_changed_ptid): Add process_stratum_target parameter.
7107 * remote.c (remote_state::supports_vCont_probed): New field.
7108 (remote_target::async_wait_fd): New method.
7109 (remote_unpush_and_throw): Add remote_target parameter.
7110 (get_current_remote_target): Adjust.
7111 (remote_target::remote_add_inferior): Push target.
7112 (remote_target::remote_add_thread)
7113 (remote_target::remote_notice_new_inferior)
7114 (get_remote_thread_info): Pass target down.
7115 (remote_target::update_thread_list): Skip threads of inferiors
7116 bound to other targets. (remote_target::close): Don't discard
7117 inferiors. (remote_target::add_current_inferior_and_thread)
7118 (remote_target::process_initial_stop_replies)
7119 (remote_target::start_remote)
7120 (remote_target::remote_serial_quit_handler): Pass down target.
7121 (remote_target::remote_unpush_target): New remote_target
7122 parameter. Unpush the target from all inferiors.
7123 (remote_target::remote_unpush_and_throw): New remote_target
7124 parameter. Pass it down.
7125 (remote_target::open_1): Check whether the current inferior has
7126 execution instead of checking whether any inferior is live. Pass
7127 target down.
7128 (remote_target::remote_detach_1): Pass down target. Use
7129 remote_unpush_target.
7130 (extended_remote_target::attach): Pass down target.
7131 (remote_target::remote_vcont_probe): Set supports_vCont_probed.
7132 (remote_target::append_resumption): Pass down target.
7133 (remote_target::append_pending_thread_resumptions)
7134 (remote_target::remote_resume_with_hc, remote_target::resume)
7135 (remote_target::commit_resume): Pass down target.
7136 (remote_target::remote_stop_ns): Check supports_vCont_probed.
7137 (remote_target::interrupt_query)
7138 (remote_target::remove_new_fork_children)
7139 (remote_target::check_pending_events_prevent_wildcard_vcont)
7140 (remote_target::remote_parse_stop_reply)
7141 (remote_target::process_stop_reply): Pass down target.
7142 (first_remote_resumed_thread): New remote_target parameter. Pass
7143 it down.
7144 (remote_target::wait_as): Pass down target.
7145 (unpush_and_perror): New remote_target parameter. Pass it down.
7146 (remote_target::readchar, remote_target::remote_serial_write)
7147 (remote_target::getpkt_or_notif_sane_1)
7148 (remote_target::kill_new_fork_children, remote_target::kill): Pass
7149 down target.
7150 (remote_target::mourn_inferior): Pass down target. Use
7151 remote_unpush_target.
7152 (remote_target::core_of_thread)
7153 (remote_target::remote_btrace_maybe_reopen): Pass down target.
7154 (remote_target::pid_to_exec_file)
7155 (remote_target::thread_handle_to_thread_info): Pass down target.
7156 (remote_target::async_wait_fd): New.
7157 * riscv-fbsd-tdep.c: Include "inferior.h".
7158 (riscv_fbsd_get_thread_local_address): Pass down target.
7159 * sol2-tdep.c (sol2_core_pid_to_str): Pass down target.
7160 * sol-thread.c (sol_thread_target::wait, ps_lgetregs, ps_lsetregs)
7161 (ps_lgetfpregs, ps_lsetfpregs, sol_update_thread_list_callback):
7162 Adjust.
7163 * solib-spu.c (spu_skip_standalone_loader): Pass down target.
7164 * solib-svr4.c (enable_break): Pass down target.
7165 * spu-multiarch.c (parse_spufs_run): Pass down target.
7166 * spu-tdep.c (spu2ppu_sniffer): Pass down target.
7167 * target-delegates.c: Regenerate.
7168 * target.c (g_target_stack): Delete.
7169 (current_top_target): Return the current inferior's top target.
7170 (target_has_execution_1): Refer to the passed-in inferior's top
7171 target.
7172 (target_supports_terminal_ours): Check whether the initial
7173 inferior was already created.
7174 (decref_target): New.
7175 (target_stack::push): Incref/decref the target.
7176 (push_target, push_target, unpush_target): Adjust.
7177 (target_stack::unpush): Defref target.
7178 (target_is_pushed): Return bool. Adjust to refer to the current
7179 inferior's target stack.
7180 (dispose_inferior): Delete, and inline parts ...
7181 (target_preopen): ... here. Only dispose of the current inferior.
7182 (target_detach): Hold strong target reference while detaching.
7183 Pass target down.
7184 (target_thread_name): Add assertion.
7185 (target_resume): Pass down target.
7186 (target_ops::beneath, find_target_at): Adjust to refer to the
7187 current inferior's target stack.
7188 (get_dummy_target): New.
7189 (target_pass_ctrlc): Pass the Ctrl-C to the first inferior that
7190 has a thread running.
7191 (initialize_targets): Rename to ...
7192 (_initialize_target): ... this.
7193 * target.h: Include "gdbsupport/refcounted-object.h".
7194 (struct target_ops): Inherit refcounted_object.
7195 (target_ops::shortname, target_ops::longname): Make const.
7196 (target_ops::async_wait_fd): New method.
7197 (decref_target): Declare.
7198 (struct target_ops_ref_policy): New.
7199 (target_ops_ref): New typedef.
7200 (get_dummy_target): Declare function.
7201 (target_is_pushed): Return bool.
7202 * thread-iter.c (all_matching_threads_iterator::m_inf_matches)
7203 (all_matching_threads_iterator::all_matching_threads_iterator):
7204 Handle filter target.
7205 * thread-iter.h (struct all_matching_threads_iterator, struct
7206 all_matching_threads_range, class all_non_exited_threads_range):
7207 Filter by target too. Remove explicit.
7208 * thread.c (threads_executing): Delete.
7209 (inferior_thread): Pass down current inferior.
7210 (clear_thread_inferior_resources): Pass down thread pointer
7211 instead of ptid_t.
7212 (add_thread_silent, add_thread_with_info, add_thread): Add
7213 process_stratum_target parameter. Use it for thread and inferior
7214 searches.
7215 (is_current_thread): New.
7216 (thread_info::deletable): Use it.
7217 (find_thread_ptid, thread_count, in_thread_list)
7218 (thread_change_ptid, set_resumed, set_running): New
7219 process_stratum_target parameter. Pass it down.
7220 (set_executing): New process_stratum_target parameter. Pass it
7221 down. Adjust reference to 'threads_executing'.
7222 (threads_are_executing): New process_stratum_target parameter.
7223 Adjust reference to 'threads_executing'.
7224 (set_stop_requested, finish_thread_state): New
7225 process_stratum_target parameter. Pass it down.
7226 (switch_to_thread): Also match inferior.
7227 (switch_to_thread): New process_stratum_target parameter. Pass it
7228 down.
7229 (update_threads_executing): Reimplement.
7230 * top.c (quit_force): Pop targets from all inferior.
7231 (gdb_init): Don't call initialize_targets.
7232 * windows-nat.c (windows_nat_target) <get_windows_debug_event>:
7233 Declare.
7234 (windows_add_thread, windows_delete_thread): Adjust.
7235 (get_windows_debug_event): Rename to ...
7236 (windows_nat_target::get_windows_debug_event): ... this. Adjust.
7237 * tracefile-tfile.c (tfile_target_open): Pass down target.
7238 * gdbsupport/common-gdbthread.h (struct process_stratum_target):
7239 Forward declare.
7240 (switch_to_thread): Add process_stratum_target parameter.
7241 * mi/mi-interp.c (mi_on_resume_1): Add process_stratum_target
7242 parameter. Use it.
7243 (mi_on_resume): Pass target down.
7244 * nat/fork-inferior.c (startup_inferior): Add
7245 process_stratum_target parameter. Pass it down.
7246 * nat/fork-inferior.h (startup_inferior): Add
7247 process_stratum_target parameter.
7248 * python/py-threadevent.c (py_get_event_thread): Pass target down.
7249
75c6c844
PA
72502020-01-10 Pedro Alves <palves@redhat.com>
7251
7252 * remote.c (remote_target::start_remote): Don't set inferior_ptid
7253 directly. Instead find the first thread in the thread list and
7254 use switch_to_thread.
7255
78f2c40a
PA
72562020-01-10 Pedro Alves <palves@redhat.com>
7257
7258 * remote.c (remote_target::remote_add_inferior): Don't bind a
7259 process to the current inferior if the current inferior is already
7260 bound to a process.
7261
e7af6c70
TBA
72622020-01-10 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
7263 Pedro Alves <palves@redhat.com>
7264
7265 * remote.c (remote_target::remote_parse_stop_reply) <W/X packets>:
7266 If no process is specified, return null_ptid instead of
7267 inferior_ptid.
7268 (remote_target::wait_as): Handle TARGET_WAITKIND_EXITED /
7269 TARGET_WAITKIND_SIGNALLED with no pid.
7270
31ba933e
PA
72712020-01-10 Pedro Alves <palves@redhat.com>
7272
7273 * remote.c (first_remote_resumed_thread): New.
7274 (remote_target::wait_as): Use it as default event_ptid instead of
7275 inferior_ptid.
7276
735fc2ca
PA
72772020-01-10 Pedro Alves <palves@redhat.com>
7278
7279 * infrun.c (handle_no_resumed): Use all_non_exited_inferiors.
7280
c17e02e1
PA
72812020-01-10 Pedro Alves <palves@redhat.com>
7282
7283 * tracefile-tfile.c (tfile_target::close): Assert that trace_fd is
7284 not -1.
7285
ab1ddbcf
PA
72862020-01-10 Pedro Alves <palves@redhat.com>
7287
7288 * break-catch-sig.c (signal_catchpoint_print_it): Don't pass a
7289 ptid to get_last_target_status.
7290 * break-catch-syscall.c (print_it_catch_syscall): Don't pass a
7291 ptid to get_last_target_status.
7292 * infcmd.c (continue_command): Don't pass a target_waitstatus to
7293 get_last_target_status.
7294 (info_program_command): Don't pass a target_waitstatus to
7295 get_last_target_status.
7296 * infrun.c (init_wait_for_inferior): Use
7297 nullify_last_target_wait_ptid.
7298 (get_last_target_status): Handle nullptr arguments.
7299 (nullify_last_target_wait_ptid): Clear target_last_waitstatus.
7300 (print_stop_event): Don't pass a ptid to get_last_target_status.
7301 (normal_stop): Don't pass a ptid to get_last_target_status.
7302 * infrun.h (get_last_target_status, set_last_target_status): Move
7303 comments here and update.
7304 (nullify_last_target_wait_ptid): Declare.
7305 * linux-fork.c (fork_load_infrun_state): Remove local extern
7306 declaration of nullify_last_target_wait_ptid.
7307 * linux-nat.c (get_detach_signal): Don't pass a target_waitstatus
7308 to get_last_target_status.
7309
f3f8ece4
PA
73102020-01-10 Pedro Alves <palves@redhat.com>
7311
7312 * gdbthread.h (scoped_restore_current_thread)
7313 <dont_restore, restore, m_dont_restore>: Declare.
7314 * thread.c (thread_alive): Add assertion. Return bool.
7315 (switch_to_thread_if_alive): New.
7316 (prune_threads): Switch inferior/thread.
7317 (print_thread_info_1): Switch thread before calling target methods.
7318 (scoped_restore_current_thread::restore): New, factored out from
7319 ...
7320 (scoped_restore_current_thread::~scoped_restore_current_thread):
7321 ... this.
7322 (scoped_restore_current_thread::scoped_restore_current_thread):
7323 Add assertion.
7324 (thread_apply_all_command, thread_select): Use
7325 switch_to_thread_if_alive.
7326 * infrun.c (proceed, restart_threads, handle_signal_stop)
7327 (switch_back_to_stepped_thread): Switch current thread before
7328 calling target methods.
7329
db2d40f7
PA
73302020-01-10 Pedro Alves <palves@redhat.com>
7331
7332 * inferior.c (switch_to_inferior_no_thread): New function,
7333 factored out from ...
7334 (inferior_command): ... here.
7335 * inferior.h (switch_to_inferior_no_thread): Declare.
7336 * mi/mi-main.c (run_one_inferior): Use
7337 switch_to_inferior_no_thread.
7338
bd420a2d
PA
73392020-01-10 Pedro Alves <palves@redhat.com>
7340
7341 * infcmd.c (kill_command): Remove dead code.
7342
ddf5db90
PA
73432020-01-10 Pedro Alves <palves@redhat.com>
7344
7345 * remote.c (remote_target::mourn_inferior): No longer check
7346 whether the target is running.
7347
5018ce90
PA
73482020-01-10 Pedro Alves <palves@redhat.com>
7349
7350 * corelow.c (core_target::has_execution): Change parameter type to
7351 inferior pointer.
7352 * inferior.c (number_of_live_inferiors): Use
7353 inferior::has_execution instead of target_has_execution_1.
7354 * inferior.h (inferior::has_execution): New.
7355 * linux-thread-db.c (thread_db_target::update_thread_list): Use
7356 inferior::has_execution instead of target_has_execution_1.
7357 * process-stratum-target.c
7358 (process_stratum_target::has_execution): Change parameter type to
7359 inferior pointer. Check the inferior's PID instead of
7360 inferior_ptid.
7361 * process-stratum-target.h
7362 (process_stratum_target::has_execution): Change parameter type to
7363 inferior pointer.
7364 * record-full.c (record_full_core_target::has_execution): Change
7365 parameter type to inferior pointer.
7366 * target.c (target_has_execution_1): Change parameter type to
7367 inferior pointer.
7368 (target_has_execution_current): Adjust.
7369 * target.h (target_ops::has_execution): Change parameter type to
7370 inferior pointer.
7371 (target_has_execution_1): Change parameter type to inferior
7372 pointer. Change return type to bool.
7373 * tracefile.h (tracefile_target::has_execution): Change parameter
7374 type to inferior pointer.
7375
74375d18
PA
73762020-01-10 Pedro Alves <palves@redhat.com>
7377
7378 * exceptions.c (print_flush): Remove current_top_target() check.
7379
acdf84a6
PA
73802020-01-10 Pedro Alves <palves@redhat.com>
7381
7382 * remote.c (show_remote_exec_file): Show the current inferior's
7383 exec-file instead of the command variable's value.
7384
ec506636
PA
73852020-01-10 Pedro Alves <palves@redhat.com>
7386
7387 * record-full.c (record_full_resume_ptid): New global.
7388 (record_full_target::resume): Set it.
7389 (record_full_wait_1): Use record_full_resume_ptid instead of
7390 inferior_ptid.
7391
873657b9
PA
73922020-01-10 Pedro Alves <palves@redhat.com>
7393
7394 * gdbthread.h (scoped_restore_current_thread)
7395 <dont_restore, restore, m_dont_restore>: Declare.
7396 * thread.c (thread_alive): Add assertion. Return bool.
7397 (switch_to_thread_if_alive): New.
7398 (prune_threads): Switch inferior/thread.
7399 (print_thread_info_1): Switch thread before calling target methods.
7400 (scoped_restore_current_thread::restore): New, factored out from
7401 ...
7402 (scoped_restore_current_thread::~scoped_restore_current_thread):
7403 ... this.
7404 (scoped_restore_current_thread::scoped_restore_current_thread):
7405 Add assertion.
7406 (thread_apply_all_command, thread_select): Use
7407 switch_to_thread_if_alive.
7408
7f0ae84c
GB
74092020-01-10 George Barrett <bob@bob131.so>
7410
7411 * stap-probe.c (stap_modify_semaphore): Don't check for null
7412 semaphores.
7413 (stap_probe::set_semaphore, stap_probe::clear_semaphore): Check
7414 for null semaphores.
7415
f5a7c406
AB
74162020-01-09 Andrew Burgess <andrew.burgess@embecosm.com>
7417
7418 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Update
7419 all source windows, and maintain horizontal scroll status while
7420 doing so.
7421
9ae6bf64
TT
74222020-01-09 Tom Tromey <tom@tromey.com>
7423
7424 PR tui/18932:
7425 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Call
7426 update_source_window, not print_source_lines.
7427
b2efe70c
AB
74282020-01-09 Andrew Burgess <andrew.burgess@embecosm.com>
7429
7430 * tui/tui.c (tui_enable): Register tui hooks after calling
7431 tui_display_main.
7432
5f23a082
CB
74332020-01-09 Christian Biesinger <cbiesinger@google.com>
7434
7435 * gdbsupport/common-defs.h: Don't define _FORTIFY_SOURCE on MinGW.
7436
3061113b
SM
74372020-01-08 Simon Marchi <simon.marchi@efficios.com>
7438
7439 * thread.c (print_thread_info_1): Fix indentation.
7440
57d75002
CB
74412020-01-09 Christian Biesinger <cbiesinger@google.com>
7442
7443 * symtab.c (general_symbol_info::compute_and_set_names): Move the
7444 unique_xmalloc_ptr outside the if to always free the demangled name.
7445
6a053cb1
TT
74462020-01-08 Tom Tromey <tromey@adacore.com>
7447
7448 * xcoffread.c (enter_line_range, read_xcoff_symtab)
7449 (process_xcoff_symbol, xcoff_symfile_offsets): Update.
7450 * symtab.h (MSYMBOL_VALUE_ADDRESS): Update.
7451 (struct section_offsets, ANOFFSET, SIZEOF_N_SECTION_OFFSETS):
7452 Remove.
7453 (section_offsets): New typedef.
7454 * symtab.c (fixup_section, get_msymbol_address): Update.
7455 * symmisc.c (dump_msymbols): Update.
7456 * symfile.h (relative_addr_info_to_section_offsets)
7457 (symfile_map_offsets_to_segments): Update.
7458 * symfile.c (build_section_addr_info_from_objfile)
7459 (init_objfile_sect_indices): Update.
7460 (struct place_section_arg): Change type of "offsets".
7461 (place_section): Update.
7462 (relative_addr_info_to_section_offsets): Change type of
7463 "section_offsets". Remove "num_sections" parameter.
7464 (default_symfile_offsets, syms_from_objfile_1)
7465 (set_objfile_default_section_offset): Update.
7466 (reread_symbols): No need to preserve section offsets by hand.
7467 (symfile_map_offsets_to_segments): Change type of "offsets".
7468 * stap-probe.c (relocate_address): Update.
7469 * stabsread.h (process_one_symbol): Update.
7470 * solib-target.c (struct lm_info_target) <offsets>: Change type.
7471 (solib_target_relocate_section_addresses): Update.
7472 * solib-svr4.c (enable_break, svr4_relocate_main_executable):
7473 Update.
7474 * solib-frv.c (frv_relocate_main_executable): Update.
7475 * solib-dsbt.c (dsbt_relocate_main_executable): Update.
7476 * solib-aix.c (solib_aix_get_section_offsets): Change return
7477 type.
7478 (solib_aix_solib_create_inferior_hook): Update.
7479 * remote.c (remote_target::get_offsets): Update.
7480 * psymtab.c (find_pc_sect_psymtab): Update.
7481 * psympriv.h (struct partial_symbol) <address, text_low,
7482 text_high>: Update.
7483 * objfiles.h (obj_section_offset): Update.
7484 (struct objfile) <section_offsets>: Change type.
7485 <num_sections>: Remove.
7486 (objfile_relocate): Update.
7487 * objfiles.c (entry_point_address_query): Update
7488 (relocate_one_symbol): Change type of "section_offsets".
7489 (objfile_relocate1, objfile_relocate1): Change type of
7490 "new_offsets".
7491 (objfile_rebase1): Update.
7492 * mipsread.c (mipscoff_symfile_read): Update.
7493 (read_alphacoff_dynamic_symtab): Remove "section_offsets"
7494 parameter.
7495 * mdebugread.c (parse_symbol): Change type of "section_offsets".
7496 (parse_external, psymtab_to_symtab_1): Update.
7497 * machoread.c (macho_symfile_offsets): Update.
7498 * ia64-tdep.c (ia64_find_unwind_table): Update.
7499 * hppa-tdep.c (read_unwind_info): Update.
7500 * hppa-bsd-tdep.c (hppabsd_find_global_pointer): Update.
7501 * dwarf2read.c (create_addrmap_from_index)
7502 (create_addrmap_from_aranges, dw2_find_pc_sect_compunit_symtab)
7503 (process_psymtab_comp_unit_reader, add_partial_symbol)
7504 (add_partial_subprogram, process_full_comp_unit)
7505 (read_file_scope, read_func_scope, read_lexical_block_scope)
7506 (read_call_site_scope, dwarf2_rnglists_process)
7507 (dwarf2_ranges_process, dwarf2_ranges_read)
7508 (dwarf_decode_lines_1, var_decode_location, new_symbol)
7509 (dwarf2_fetch_die_loc_sect_off, dwarf2_per_cu_text_offset):
7510 Update.
7511 * dwarf2-frame.c (execute_cfa_program, dwarf2_frame_find_fde):
7512 Update.
7513 * dtrace-probe.c (dtrace_probe::get_relocated_address): Update.
7514 * dbxread.c (read_dbx_symtab, read_ofile_symtab): Update.
7515 (process_one_symbol): Change type of "section_offsets".
7516 * ctfread.c (get_objfile_text_range): Update.
7517 * coffread.c (coff_symtab_read, enter_linenos)
7518 (process_coff_symbol): Update.
7519 * coff-pe-read.c (add_pe_forwarded_sym): Update.
7520 * amd64-windows-tdep.c (amd64_windows_find_unwind_info): Update.
7521
456e800a
TT
75222020-01-08 Tom Tromey <tromey@adacore.com>
7523
7524 * dwarf2read.c (parse_macro_definition): Use std::string.
7525 (parse_macro_definition): Likewise.
7526
6dfa2fc2
TT
75272020-01-08 Tom Tromey <tromey@adacore.com>
7528
7529 * dwarf2read.c (abbrev_table_read_table): Use std::vector.
7530 (ATTR_ALLOC_CHUNK): Remove.
7531
421d1616
TT
75322020-01-08 Tom Tromey <tromey@adacore.com>
7533
7534 * dwarf2read.c (fixup_go_packaging): Use unique_xmalloc_ptr.
7535
43816ebc
TT
75362020-01-08 Tom Tromey <tromey@adacore.com>
7537
7538 * dwarf2read.c (add_partial_symbol): Use unique_xmalloc_ptr.
7539 (dwarf2_compute_name, open_dwo_file): Likewise.
7540 (process_enumeration_scope): Use std::vector.
7541 (guess_partial_die_structure_name): Use unique_xmalloc_ptr.
7542 (partial_die_info::fixup, dwarf2_start_subfile)
7543 (guess_full_die_structure_name, dwarf2_name): Likewise.
7544 (determine_prefix): Update.
7545 (guess_full_die_structure_name): Make return type const.
7546 (partial_die_full_name): Return unique_xmalloc_ptr.
7547 (DW_FIELD_ALLOC_CHUNK): Remove.
7548
4212d509
TT
75492020-01-07 Tom Tromey <tromey@adacore.com>
7550
7551 PR build/24937:
7552 * stap-probe.c (class stap_static_probe_ops): Add constructor.
7553
06a6207a
JT
75542020-01-02 Jon Turney <jon.turney@dronecode.org.uk>
7555
7556 * cli/cli-style.c: Set cli_styling to 'true' in the Cygwin build.
7557
153d79c4
AB
75582020-01-06 Andrew Burgess <andrew.burgess@embecosm.com>
7559
7560 * stack.c (print_frame_info): Move disassemble_next_line code
7561 inside source_print block.
7562
66182876
EZ
75632020-01-06 Eli Zaretskii <eliz@gnu.org>
7564
7565 * gdbsupport/gdb_wait.c: Include <signal.h> instead of
7566 gdb/signals.h, as we are now using native signal symbols.
7567
cbfa8581
SV
75682020-01-06 Shahab Vahedi <shahab@synopsys.com>
7569
7570 * tui/tui-disasm.c (tui_disasm_window::addr_is_displayed): Avoid
7571 overflow by an early check of content vs threshold.
aac66a4c 7572 * tui/tui-source.c (tui_source_window::line_is_displayed):
cbfa8581
SV
7573 Likewise.
7574
3f602821
EZ
75752020-01-06 Eli Zaretskii <eliz@gnu.org>
7576
7577 * NEWS: Mention the recent fix of $_exitsignal on MS-Windows.
7578
a08c904d
JT
75792020-01-02 Jon Turney <jon.turney@dronecode.org.uk>
7580
7581 * coff-pe-read.c (read_pe_exported_syms): Don't try to read the
7582 export table if no section contains it's RVA.
7583
89a65580
EZ
75842020-01-06 Eli Zaretskii <eliz@gnu.org>
7585
7586 * windows-tdep.c: Fix a typo in WINDOWS_SIGABRT.
7587
8b7fcda2
HD
75882020-01-06 Hannes Domani <ssbssa@yahoo.de>
7589
7590 * source.c (print_source_lines_base): Set last_line_listed.
7591
a61b4f69
SV
75922020-01-06 Shahab Vahedi <shahab@synopsys.com>
7593
7594 * tui/tui-disasm.c: Remove trailing spaces.
7595
559e7e50
EZ
75962020-01-06 Eli Zaretskii <eliz@gnu.org>
7597 Pedro Alves <palves@redhat.com>
7598
7599 * Makefile.in (COMMON_SFILES): Add gdbsupport/gdb_wait.c.
7600 * windows-tdep.c: New enumeration of WINDOWS_SIG* signals.
7601 (windows_gdb_signal_to_target): New function, uses the above
7602 enumeration to convert GDB internal signal codes to equivalent
7603 Windows codes.
7604 (windows_init_abi): Call set_gdbarch_gdb_signal_to_target.
7605 * windows-nat.c: Include "gdb_wait.h".
7606 (get_windows_debug_event): Extract the fatal exception from the
7607 exit status and convert to the equivalent Posix signal number.
7608 * cli/cli-cmds.c (exit_status_set_internal_vars): Account for the
7609 possibility that WTERMSIG returns GDB_SIGNAL_UNKNOWN.
7610 * gdbsupport/gdb_wait.c: New file, implements
7611 windows_status_to_termsig.
7612 * gdbsupport/gdb_wait.h (WIFEXITED, WIFSIGNALED, WEXITSTATUS)
7613 (WTERMSIG) [__MINGW32__]: Separate definitions for MinGW.
7614
f2302a34
AB
76152020-01-05 Andrew Burgess <andrew.burgess@embecosm.com>
7616
7617 * tui/tui-layout.c (tui_add_win_to_layout): Use tui_set_layout not
7618 show_layout.
7619
6a5206eb
LM
76202020-01-05 Luis Machado <luis.machado@linaro.org>
7621
7622 * aarch64-linux-nat.c
7623 (aarch64_linux_nat_target::thread_architecture): Use bfd_arch_aarch64
7624 and bfd_mach_aarch64.
7625
6ec1d75e
PW
76262020-01-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7627
7628 * ui-file.c (stdio_file::can_emit_style_escape)
7629 (tee_file::can_emit_style_escape): Ensure style is used also on
7630 gdb_stderr when gdb_stderr is a tty supporting styling, similarly
7631 to gdb_stdout.
7632 * main.c (set_gdb_data_directory): Use file style to output the
7633 warning that the given pathname is not a directory.
7634 * top.c (show_history_filename, gdb_safe_append_history)
7635 (show_gdb_datadir): Use file style.
7636
44f81a76
HD
76372020-01-03 Hannes Domani <ssbssa@yahoo.de>
7638
7639 * solib-target.c (struct lm_info_target):
7640 Change offsets to be a unique_xmalloc_ptr.
7641 (solib_target_relocate_section_addresses): Update.
7642
25057eb0
HD
76432020-01-03 Hannes Domani <ssbssa@yahoo.de>
7644
7645 * windows-nat.c (windows_clear_solib): Free so_list linked list.
7646
6e2118f5
BE
76472020-01-03 Bernd Edlinger <bernd.edlinger@hotmail.de>
7648
7649 * MAINTAINERS (Write After Approval): Add myself.
7650
8133c7dc
LM
76512020-01-02 Luis Machado <luis.machado@linaro.org>
7652
7653 * proc-service.c (get_ps_regcache): Remove reference to obsolete
7654 Cell BE architecture.
7655 * target.h (struct target_ops) <thread_architecture>: Likewise.
7656
48189bec
HD
76572020-01-01 Hannes Domani <ssbssa@yahoo.de>
7658
7659 * Makefile.in: Use INSTALL_PROGRAM_ENV.
7660
ead1063b
HD
76612020-01-01 Hannes Domani <ssbssa@yahoo.de>
7662
7663 * MAINTAINERS (Write After Approval): Add myself.
7664
e5d78223
JB
76652020-01-01 Joel Brobecker <brobecker@adacore.com>
7666
7667 * gdbarch.sh: Update copyright year range of generated files.
7668
b811d2c2
JB
76692020-01-01 Joel Brobecker <brobecker@adacore.com>
7670
7671 Update copyright year range in all GDB files.
7672
5f4def5c
JB
76732020-01-01 Joel Brobecker <brobecker@adacore.com>
7674
7675 * copyright.py: Convert to Python 3.
7676
51fd4002
JB
76772020-01-01 Joel Brobecker <brobecker@adacore.com>
7678
7679 * copyright.py: Adapt after move of gnulib directory from gdb
7680 directory to toplevel directory.
7681
5fb651f2
JB
76822020-01-01 Joel Brobecker <brobecker@adacore.com>
7683
7684 * copyright.py (main): Exit if run from the wrong directory.
7685
5dd8bf88
JB
76862020-01-01 Joel Brobecker <brobecker@adacore.com>
7687
7688 * top.c (print_gdb_version): Change copyright year to 2020.
7689
9f71dacb 76902020-01-01 Joel Brobecker <brobecker@adacore.com>
3d34df0a 7691
9f71dacb 7692 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2019.
3d34df0a 7693
9f71dacb 7694For older changes see ChangeLog-2019.
c906108c
SS
7695\f
7696Local Variables:
7697mode: change-log
7698left-margin: 8
7699fill-column: 74
7700version-control: never
57da7796 7701coding: utf-8
c906108c 7702End: