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