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