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