Add _Complex type support to C parser
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
3638a098
TT
12020-04-01 Tom Tromey <tom@tromey.com>
2
3 * c-exp.y (FLOAT_KEYWORD, COMPLEX): New tokens.
4 (scalar_type): New rule, from typebase.
5 (typebase): Use scalar_type. Recognize complex types.
6 (field_name): Handle FLOAT_KEYWORD.
7 (ident_tokens): Add _Complex and __complex__.
8
c34e8714
TT
92020-04-01 Tom Tromey <tom@tromey.com>
10
11 PR exp/25299:
12 * valarith.c (promotion_type, complex_binop): New functions.
13 (scalar_binop): Handle complex numbers. Use promotion_type.
14 (value_pos, value_neg, value_complement): Handle complex numbers.
15
fa649bb7
TT
162020-04-01 Tom Tromey <tom@tromey.com>
17
18 * c-exp.y (COMPLEX_INT, COMPLEX_FLOAT): New tokens.
19 (exp) <COMPLEX_INT, COMPLEX_FLOAT>: New rules.
20 (parse_number): Handle complex numbers.
21
981c08ce
TT
222020-04-01 Tom Tromey <tom@tromey.com>
23
24 * c-valprint.c (c_decorations): Change complex suffix to "i".
25
4c99290d
TT
262020-04-01 Tom Tromey <tom@tromey.com>
27
28 * valprint.c (generic_value_print_complex): Use accessors.
29 * value.h (value_real_part, value_imaginary_part): Declare.
30 * valops.c (value_real_part, value_imaginary_part): New
31 functions.
32 * value.c (creal_internal_fn, cimag_internal_fn): Use accessors.
33
5b930b45
TT
342020-04-01 Tom Tromey <tom@tromey.com>
35
36 * stabsread.c (rs6000_builtin_type, read_sun_floating_type)
37 (read_range_type): Update.
38 * mdebugread.c (basic_type): Update.
39 * go-lang.c (build_go_types): Use init_complex_type.
40 * gdbtypes.h (struct main_type) <complex_type>: New member.
41 (init_complex_type): Update.
42 (arch_complex_type): Don't declare.
43 * gdbtypes.c (init_complex_type): Remove "objfile" parameter.
44 Make name if none given. Use alloc_type_copy. Look for cached
45 complex type.
46 (arch_complex_type): Remove.
47 (gdbtypes_post_init): Use init_complex_type.
48 * f-lang.c (build_fortran_types): Use init_complex_type.
49 * dwarf2/read.c (read_base_type): Update.
50 * d-lang.c (build_d_types): Use init_complex_type.
51 * ctfread.c (read_base_type): Update.
52
53cccef1
TBA
532020-04-01 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
54
55 * infrun.c (stop_all_threads): Update assertion, plus when
56 stopping threads, take into account that we might be trying
57 to stop an all-stop target.
58 (stop_waiting): Call 'stop_all_threads' if there exists a
59 non-stop target.
60
a0714d30
TBA
612020-04-01 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
62
63 * target.h (exists_non_stop_target): New function declaration.
64 * target.c (exists_non_stop_target): New function.
65
60e22c1e
HD
662020-04-01 Hannes Domani <ssbssa@yahoo.de>
67
68 PR gdb/24789
69 * eval.c (is_integral_or_integral_reference): New function.
70 (evaluate_subexp_standard): Allow integer references in
71 pointer arithmetic.
72
e139a727
TBA
732020-04-01 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
74
75 * remote.c (remote_target::remote_parse_stop_reply): Remove the
76 check for no ptid in the stop reply when the target is non-stop.
77
e0802d59
TT
782020-04-01 Tom Tromey <tromey@adacore.com>
79
80 * symtab.h (class lookup_name_info) <lookup_name_info>: Change
81 "name" parameter to rvalue reference. Initialize m_name_holder.
82 <lookup_name_info>: New overloads.
83 <name>: Return gdb::string_view.
84 <c_str>: New method.
85 <make_ignore_params>: Update.
86 <search_name_hash>: Update.
87 <language_lookup_name>: Return const char *.
88 <m_name>: Change type.
89 * symtab.c (demangle_for_lookup_info::demangle_for_lookup_info)
90 (demangle_for_lookup_info::demangle_for_lookup_info): Update.
91 (lookup_name_info::match_any): Update.
92 * psymtab.c (match_partial_symbol, lookup_partial_symbol):
93 Update.
94 * minsyms.c (linkage_name_str): Update.
95 * language.c (default_symbol_name_matcher): Update.
96 * dwarf2/read.c (mapped_index_base::find_name_components_bounds):
97 Update.
98 * ada-lang.c (ada_fold_name): Change parameter to string_view.
99 (ada_lookup_name_info::ada_lookup_name_info): Update.
100 (literal_symbol_name_matcher): Update.
101
8c072cb6
TT
1022020-04-01 Tom Tromey <tromey@adacore.com>
103
104 * psymtab.c (psymtab_search_name): Remove function.
105 (psym_lookup_symbol): Create search name and lookup name here.
106 (lookup_partial_symbol): Remove "name" parameter; add
107 lookup_name.
108 (psym_expand_symtabs_for_function): Update.
109
6f29a534
TT
1102020-03-31 Joel Jones <joelkevinjones@gmail.com>
111
112 PR tui/25597:
113 * python/py-tui.c: Include gdb_curses.h inside of #ifdef TUI.
114
af62665e
TT
1152020-03-31 Tom Tromey <tromey@adacore.com>
116
117 * dwarf2/abbrev.c (abbrev_table::read): Conditionally call
118 memcpy.
119
d1a89da5
NC
1202020-03-30 Nelson Chu <nelson.chu@sifive.com>
121
122 * features/riscv/32bit-csr.xml: Regenerated.
123 * features/riscv/64bit-csr.xml: Regenerated.
124
d8af9068
TT
1252020-03-30 Tom Tromey <tromey@adacore.com>
126
127 * ada-valprint.c (print_variant_part): Update.
128 * ada-lang.h (ada_which_variant_applies): Update.
129 * ada-lang.c (ada_which_variant_applies): Remove outer_type and
130 outer_valaddr parameters; replace with "outer" value parameter.
131 (to_fixed_variant_branch_type): Update.
132
227c0bf4
PFC
1332020-03-30 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
134
135 * ppc-linux-nat.c: Include <algorithm>, <unordered_map>, and
136 <list>. Remove inclusion of observable.h.
137 (PPC_DEBUG_CURRENT_VERSION): Move up define.
138 (struct arch_lwp_info): New struct.
139 (class ppc_linux_dreg_interface): New class.
140 (struct ppc_linux_process_info): New struct.
141 (struct ppc_linux_nat_target) <low_delete_thread, low_new_fork>
142 <low_new_clone, low_forget_process, low_prepare_to_resume>
143 <copy_thread_dreg_state, mark_thread_stale>
144 <mark_debug_registers_changed, register_hw_breakpoint>
145 <clear_hw_breakpoint, register_wp, clear_wp>
146 <can_use_watchpoint_cond_accel, calculate_dvc, check_condition>
147 <num_memory_accesses, get_trigger_type>
148 <create_watchpoint_request, hwdebug_point_cmp>
149 <init_arch_lwp_info, get_arch_lwp_info>
150 <low_stopped_by_watchpoint, low_stopped_data_address>: Declare as
151 methods.
152 <struct ptid_hash>: New inner struct.
153 <m_dreg_interface, m_process_info, m_installed_hw_bps>: Declare
154 members.
155 (saved_dabr_value, hwdebug_info, max_slots_number)
156 (struct hw_break_tuple, struct thread_points, ppc_threads)
157 (have_ptrace_hwdebug_interface)
158 (hwdebug_find_thread_points_by_tid)
159 (hwdebug_insert_point, hwdebug_remove_point): Remove.
160 (ppc_linux_nat_target::can_use_hw_breakpoint): Use
161 m_dreg_interface, remove call to PTRACE_SET_DEBUGREG.
162 (ppc_linux_nat_target::region_ok_for_hw_watchpoint): Add comment,
163 use m_dreg_interface.
164 (hwdebug_point_cmp): Change to...
165 (ppc_linux_nat_target::hwdebug_point_cmp): ...this method. Use
166 reference arguments instead of pointers.
167 (ppc_linux_nat_target::ranged_break_num_registers): Use
168 m_dreg_interface.
169 (ppc_linux_nat_target::insert_hw_breakpoint): Add comment, use
170 m_dreg_interface. Call register_hw_breakpoint.
171 (ppc_linux_nat_target::remove_hw_breakpoint): Add comment, use
172 m_dreg_interface. Call clear_hw_breakpoint.
173 (get_trigger_type): Change to...
174 (ppc_linux_nat_target::get_trigger_type): ...this method. Add
175 comment.
176 (ppc_linux_nat_target::insert_mask_watchpoint): Update comment,
177 use m_dreg_interface. Call register_hw_breakpoint.
178 (ppc_linux_nat_target::remove_mask_watchpoint): Update comment,
179 use m_dreg_interface. Call clear_hw_breakpoint.
180 (can_use_watchpoint_cond_accel): Change to...
181 (ppc_linux_nat_target::can_use_watchpoint_cond_accel): ...this
182 method. Update comment, use m_dreg_interface and
183 m_process_info.
184 (calculate_dvc): Change to...
185 (ppc_linux_nat_target::calculate_dvc): ...this method. Use
186 m_dreg_interface.
187 (num_memory_accesses): Change to...
188 (ppc_linux_nat_target::num_memory_accesses): ...this method.
189 (check_condition): Change to...
190 (ppc_linux_nat_target::check_condition): ...this method.
191 (ppc_linux_nat_target::can_accel_watchpoint_condition): Update
192 comment, use m_dreg_interface.
193 (create_watchpoint_request): Change to...
194 (ppc_linux_nat_target::create_watchpoint_request): ...this
195 method. Use m_dreg_interface.
196 (ppc_linux_nat_target::insert_watchpoint): Add comment, use
197 m_dreg_interface. Call register_hw_breakpoint or register_wp.
198 (ppc_linux_nat_target::remove_watchpoint): Add comment, use
199 m_dreg_interface. Call clear_hw_breakpoint or clear_wp.
200 (ppc_linux_nat_target::low_forget_process)
201 (ppc_linux_nat_target::low_new_fork)
202 (ppc_linux_nat_target::low_new_clone)
203 (ppc_linux_nat_target::low_delete_thread)
204 (ppc_linux_nat_target::low_prepare_to_resume): New methods.
205 (ppc_linux_nat_target::low_new_thread): Remove previous logic,
206 only call mark_thread_stale.
207 (ppc_linux_thread_exit): Remove.
208 (ppc_linux_nat_target::stopped_data_address): Change to...
209 (ppc_linux_nat_target::low_stopped_data_address): This. Add
210 comment, use m_dreg_interface and m_thread_hw_breakpoints.
211 (ppc_linux_nat_target::stopped_by_watchpoint): Change to...
212 (ppc_linux_nat_target::stopped_by_watchpoint): This. Add
213 comment. Call low_stopped_data_address.
214 (ppc_linux_nat_target::watchpoint_addr_within_range): Use
215 m_dreg_interface.
216 (ppc_linux_nat_target::masked_watch_num_registers): Use
217 m_dreg_interface.
218 (ppc_linux_nat_target::copy_thread_dreg_state)
219 (ppc_linux_nat_target::mark_thread_stale)
220 (ppc_linux_nat_target::mark_debug_registers_changed)
221 (ppc_linux_nat_target::register_hw_breakpoint)
222 (ppc_linux_nat_target::clear_hw_breakpoint)
223 (ppc_linux_nat_target::register_wp)
224 (ppc_linux_nat_target::clear_wp)
225 (ppc_linux_nat_target::init_arch_lwp_info)
226 (ppc_linux_nat_target::get_arch_lwp_info): New methods.
227 (_initialize_ppc_linux_nat): Remove observer callback.
228
4db10d8f
PFC
2292020-03-30 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
230
231 * ppc-linux-nat.c (ppc_linux_nat_target::store_registers)
232 (ppc_linux_nat_target::auxv_parse)
233 (ppc_linux_nat_target::read_description)
234 (supply_gregset, fill_gregset, supply_fpregset, fill_fpregset):
235 Move up.
236
1310c1b0
PFC
2372020-03-30 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
238
239 * linux-nat.h (low_new_clone): New method.
240 * linux-nat.c (linux_handle_extended_wait): Call low_new_clone.
241
69b037c3
SM
2422020-03-29 Simon Marchi <simon.marchi@polymtl.ca>
243
244 * dbxread.c (dbx_psymtab_to_symtab_1): Rename to...
245 (dbx_expand_psymtab): ... this.
246 (start_psymtab): Update.
247 * mdebugread.c (psymtab_to_symtab_1): Rename to...
248 (mdebug_expand_psymtab): ... this.
249 (parse_partial_symbols): Update.
250 (new_psymtab): Update.
251 * xcoffread.c (xcoff_psymtab_to_symtab_1): Rename to...
252 (xcoff_expand_psymtab): ... this.
253 (xcoff_start_psymtab): Update.
254
48993951
SM
2552020-03-29 Simon Marchi <simon.marchi@polymtl.ca>
256
257 * psympriv.h (partial_symtab) <read_dependencies>: Rename to...
258 <expand_dependencies>: ... this.
259 * psymtab.c (partial_symtab::read_dependencies): Rename to...
260 (partial_symtab::expand_dependencies): ... this.
261 * dwarf2/read.c (dwarf2_include_psymtab) <expand_psymtab>:
262 Update.
263 (dwarf2_psymtab::expand_psymtab): Update.
264 * dbxread.c (dbx_psymtab_to_symtab_1): Update.
265 * mdebugread.c (psymtab_to_symtab_1): Update.
266 * xcoffread.c (xcoff_psymtab_to_symtab_1): Update.
267
3ad83046
SM
2682020-03-29 Simon Marchi <simon.marchi@polymtl.ca>
269
270 * psympriv.h (discard_psymtab): Remove.
271 * dbxread.c (dbx_end_psymtab): Update.
272 * xcoffread.c (xcoff_end_psymtab): Update.
273
4d1b9ab6
TT
2742020-03-28 Tom Tromey <tom@tromey.com>
275
276 * dwarf2/attribute.h (struct attribute) <form_is_constant>: Update
277 comment.
278
f1749218
TT
2792020-03-28 Tom Tromey <tom@tromey.com>
280
281 * dwarf2/read.c (read_attribute_reprocess): Fix formatting.
282
ebea7626
HD
2832020-03-27 Hannes Domani <ssbssa@yahoo.de>
284
285 * windows-nat.c (windows_add_all_dlls): Fix system dll paths.
286
a879b4d5
JB
2872020-03-26 John Baldwin <jhb@FreeBSD.org>
288
289 * fbsd-tdep.c (fbsd_print_auxv_entry): Handle AT_FREEBSD_BSDFLAGS.
290
0826b30a
TT
2912020-03-26 Tom Tromey <tom@tromey.com>
292
293 * dwarf2/read.c (handle_data_member_location, dwarf2_add_field)
294 (mark_common_block_symbol_computed, read_tag_string_type)
295 (attr_to_dynamic_prop, read_subrange_type): Update.
296 (dwarf2_get_ref_die_offset, dwarf2_get_attr_constant_value): Move
297 to be methods on struct attribute.
298 (skip_one_die, process_imported_unit_die, read_namespace_alias)
299 (read_call_site_scope, partial_die_info::read)
300 (partial_die_info::read, lookup_die_type, follow_die_ref):
301 Update.
302 * dwarf2/attribute.c (attribute::get_ref_die_offset): New method,
303 from dwarf2_get_ref_die_offset.
304 (attribute::constant_value): New method, from
305 dwarf2_get_attr_constant_value.
306 * dwarf2/attribute.h (struct attribute) <get_ref_die_offset>:
307 Declare method.
308 <constant_value>: New method.
309
2b2558bf
TT
3102020-03-26 Tom Tromey <tom@tromey.com>
311
312 * dwarf2/read.c (dwarf_unit_type_name, dwarf_tag_name)
313 (dwarf_attr_name, dwarf_form_name, dwarf_bool_name)
314 (dwarf_type_encoding_name): Move to stringify.c.
315 * Makefile.in (COMMON_SFILES): Add dwarf2/stringify.c.
316 * dwarf2/stringify.c: New file.
317 * dwarf2/stringify.h: New file.
318
eeb64781
TT
3192020-03-26 Tom Tromey <tom@tromey.com>
320
321 * dwarf2/die.h (struct die_info) <addr_base, ranges_base>:
322 Rewrite.
323
a39fdb41
TT
3242020-03-26 Tom Tromey <tom@tromey.com>
325
326 * dwarf2/die.h (struct die_info) <addr_base, ranges_base>: New
327 methods.
328 * dwarf2/read.c (lookup_addr_base): Move to die.h.
329 (lookup_ranges_base): Likewise.
330 (read_cutu_die_from_dwo, read_full_die_1): Update.
331
436c571c
TT
3322020-03-26 Tom Tromey <tom@tromey.com>
333
334 * dwarf2/read.c (read_import_statement, read_file_scope)
335 (read_type_unit_scope, inherit_abstract_dies, read_func_scope)
336 (read_lexical_block_scope, read_call_site_scope)
337 (dwarf2_get_subprogram_pc_bounds, get_scope_pc_bounds)
338 (handle_struct_member_die, process_structure_scope)
339 (update_enumeration_type_from_children)
340 (process_enumeration_scope, read_array_type, read_common_block)
341 (read_namespace, read_module, read_subroutine_type): Update.
342 (sibling_die): Remove.
343
052c8bb8
TT
3442020-03-26 Tom Tromey <tom@tromey.com>
345
346 * dwarf2/read.c (lookup_addr_base, lookup_ranges_base)
347 (build_type_psymtabs_reader, read_structure_type)
348 (read_enumeration_type, read_full_die_1): Update.
349 (dwarf2_attr_no_follow): Move to die.h.
350 * dwarf2/die.h (struct die_info) <attr>: New method.
351
2b24b6e4
TT
3522020-03-26 Tom Tromey <tom@tromey.com>
353
354 * dwarf2/read.c (struct dwarf2_cu) <base_known>: Remove.
355 <base_address>: Now an optional.
356 (dwarf2_find_base_address, dwarf2_rnglists_process)
357 (dwarf2_ranges_process, fill_in_loclist_baton)
358 (dwarf2_symbol_mark_computed): Update.
359
c2d50fd0
TT
3602020-03-26 Tom Tromey <tom@tromey.com>
361
362 * dwarf2/read.c (struct die_info): Move to die.h.
363 * dwarf2/die.h: New file.
364
0df7ad3a
TT
3652020-03-26 Tom Tromey <tom@tromey.com>
366
367 * dwarf2/line-header.h (dwarf_decode_line_header): Declare.
368 * dwarf2/read.c
369 (dwarf2_statement_list_fits_in_line_number_section_complaint):
370 Move to line-header.c.
371 (read_checked_initial_length_and_offset, read_formatted_entries):
372 Likewise.
373 (dwarf_decode_line_header): Split into two.
374 * dwarf2/line-header.c
375 (dwarf2_statement_list_fits_in_line_number_section_complaint):
376 Move from read.c.
377 (read_checked_initial_length_and_offset, read_formatted_entries):
378 Likewise.
379 (dwarf_decode_line_header): New function, split from read.c.
380
86c0bb4c
TT
3812020-03-26 Tom Tromey <tom@tromey.com>
382
383 * dwarf2/read.h (struct dwarf2_per_objfile) <read_line_string>:
384 Declare method.
385 * dwarf2/read.c (read_attribute_value): Update.
386 (dwarf2_per_objfile::read_line_string): Rename from
387 read_indirect_line_string.
388 (read_formatted_entries): Update.
389
2ef46c2f
TT
3902020-03-26 Tom Tromey <tom@tromey.com>
391
392 * dwarf2/macro.c (dwarf_decode_macro_bytes): Use objfile local
393 variable.
394
4f9c1eda
TT
3952020-03-26 Tom Tromey <tom@tromey.com>
396
397 * dwarf2/macro.h (dwarf_decode_macros): Make section parameter
398 const.
399 * dwarf2/macro.c (skip_form_bytes, skip_unknown_opcode)
400 (dwarf_decode_macro_bytes, dwarf_decode_macros): Make section
401 parameter const.
402
5a0e026f
TT
4032020-03-26 Tom Tromey <tom@tromey.com>
404
405 * dwarf2/read.c (dwarf_decode_macros): Make "lh" const.
406 * dwarf2/macro.h (dwarf_decode_macros): Constify "lh" parameter.
407 * dwarf2/macro.c (macro_start_file): Constify "lh" parameter.
408 (dwarf_decode_macro_bytes, dwarf_decode_macros): Likewise.
409
8844c11b
TT
4102020-03-26 Tom Tromey <tom@tromey.com>
411
412 * dwarf2/line-header.h (struct line_header) <is_valid_file_index,
413 file_names_size, file_full_name, file_file_name>: Use const.
414 <file_name_at, file_names>: Add const overload.
415 * dwarf2/line-header.c (line_header::file_file_name)
416 (line_header::file_full_name): Update.
417
c90ec28a
TT
4182020-03-26 Tom Tromey <tom@tromey.com>
419
420 * dwarf2/read.c (dwarf2_macro_malformed_definition_complaint)
421 (macro_start_file, consume_improper_spaces)
422 (parse_macro_definition, skip_form_bytes, skip_unknown_opcode)
423 (dwarf_parse_macro_header, dwarf_decode_macro_bytes)
424 (dwarf_decode_macros): Move to macro.c.
425 * dwarf2/macro.c: New file.
426 * dwarf2/macro.h: New file.
427 * Makefile.in (COMMON_SFILES): Add dwarf2/macro.c.
428
4f44ae6c
TT
4292020-03-26 Tom Tromey <tom@tromey.com>
430
431 * dwarf2/section.h (struct dwarf2_section_info) <read_string>: New
432 method.
433 * dwarf2/section.c: New method. From
434 read_indirect_string_at_offset_from.
435 * dwarf2/read.c (mapped_debug_names::namei_to_name): Update.
436 (read_indirect_string_at_offset_from): Move to section.c.
437 (read_indirect_string_at_offset): Rewrite.
438 (read_indirect_line_string_at_offset): Remove.
439 (read_indirect_string, read_indirect_line_string)
440 (dwarf_decode_macro_bytes): Update.
441
a0194fa8
TT
4422020-03-26 Tom Tromey <tom@tromey.com>
443
444 * dwarf2/section.h (struct dwarf2_section_info)
445 <overload_complaint>: Declare.
446 (dwarf2_section_buffer_overflow_complaint): Don't declare.
447 * dwarf2/section.c (dwarf2_section_info::overflow_complaint):
448 Rename from dwarf2_section_buffer_overflow_complaint.
449 * dwarf2/read.c (skip_one_die, partial_die_info::read)
450 (skip_form_bytes, dwarf_decode_macro_bytes): Update.
451
3d27bbdb
TT
4522020-03-26 Tom Tromey <tom@tromey.com>
453
454 * dwarf2/section.h (dwarf2_section_buffer_overflow_complaint):
455 Declare.
456 * dwarf2/section.c (dwarf2_section_buffer_overflow_complaint):
457 Move from read.c.
458 * dwarf2/read.c (dwarf2_section_buffer_overflow_complaint): Move
459 to section.c.
460
9eac9650
TT
4612020-03-26 Tom Tromey <tom@tromey.com>
462
463 * dwarf2/read.c (dwarf_decode_macros): Split into two overloads.
464
bf80d710
TT
4652020-03-26 Tom Tromey <tom@tromey.com>
466
467 * dwarf2/read.c (macro_start_file): Change "cu" parameter to
468 "builder".
469 (dwarf_decode_macro_bytes): Likewise. Add dwarf2_per_objfile
470 parameter.
471 (dwarf_decode_macros): Update.
472
0314b390
TT
4732020-03-26 Tom Tromey <tom@tromey.com>
474
475 * dwarf2/read.c (read_attribute_value): Update.
476 (read_indirect_string_from_dwz): Move to dwz.c; change into
477 method.
478 (dwarf_decode_macro_bytes): Update.
479 * dwarf2/dwz.h (struct dwz_file) <read_string>: Declare method.
480 * dwarf2/dwz.c: New file.
481 * Makefile.in (COMMON_SFILES): Add dwz.c.
482
9fda78b6
TT
4832020-03-26 Tom Tromey <tom@tromey.com>
484
485 * dwarf2/read.h (struct dwz_file): Move to dwz.h.
486 * dwarf2/read.c: Add include.
487 * dwarf2/index-write.c: Add include.
488 * dwarf2/index-cache.c: Add include.
489 * dwarf2/dwz.h: New file.
490
33aa3c10
TT
4912020-03-25 Tom Tromey <tom@tromey.com>
492
493 * compile/compile-object-load.c (get_out_value_type): Mention
494 correct symbol name in error message.
495
d503b685
HD
4962020-03-25 Hannes Domani <ssbssa@yahoo.de>
497
498 * windows-nat.c (windows_add_all_dlls): Fix system dll paths.
499
7b1eff95
TV
5002020-03-25 Tom de Vries <tdevries@suse.de>
501
502 * symtab.h (is_main_symtab_of_compunit_symtab): New function.
503 * symmisc.c (dump_symtab_1): Print user and includes fields.
504 (maintenance_info_symtabs): Same.
505
dd895392
AB
5062020-03-25 Andrew Burgess <andrew.burgess@embecosm.com>
507
508 PR gdb/25534
509 * riscv-tdep.c (riscv_arg_info::c_offset): Update comment.
510 (riscv_regcache_cooked_write): New function.
511 (riscv_push_dummy_call): Use new function.
512 (riscv_return_value): Likewise.
513
5ab2fbf1
SM
5142020-03-24 Simon Marchi <simon.marchi@polymtl.ca>
515
516 * fbsd-nat.c (fbsd_nat_target::follow_fork): Change bool to int.
517 * fbsd-nat.h (class fbsd_nat_target) <follow_fork>: Likewise.
518 * inf-ptrace.c (inf_ptrace_target::follow_fork): Likewise.
519 * inf-ptrace.h (struct inf_ptrace_target) <follow_fork>: Likewise.
520 * infrun.c (follow_fork): Likewise.
521 (follow_fork_inferior): Likewise.
522 * linux-nat.c (linux_nat_target::follow_fork): Likewise.
523 * linux-nat.h (class linux_nat_target): Likewise.
524 * remote.c (class remote_target) <follow_fork>: Likewise.
525 (remote_target::follow_fork): Likewise.
526 * target-delegates.c: Re-generate.
527 * target.c (default_follow_fork): Likewise.
528 (target_follow_fork): Likewise.
529 * target.h (struct target_ops) <follow_fork>: Likewise.
530 (target_follow_fork): Likewise.
531
a64fafb5
TV
5322020-03-24 Tom de Vries <tdevries@suse.de>
533
534 * psymtab.c (maintenance_info_psymtabs): Print user field.
535
fe26d3a3
TT
5362020-03-20 Tom Tromey <tromey@adacore.com>
537
538 * dwarf2/loc.h (dwarf2_evaluate_property): Make "addr_stack"
539 const.
540 * dwarf2/loc.c (dwarf2_evaluate_property): Make "addr_stack"
541 const.
542
c884cc46
SM
5432020-03-20 Simon Marchi <simon.marchi@efficios.com>
544
545 * ptrace.m4: Don't check for ptrace declaration.
546 * config.in: Re-generate.
547 * configure: Re-generate.
548 * nat/gdb_ptrace.h: Don't declare ptrace if HAVE_DECL_PTRACE is
549 not defined.
550
1ff700c2
KR
5512020-03-20 Kamil Rytarowski <n54@gmx.com>
552
553 * amd64-bsd-nat.c (gdb_ptrace): Change return type from `int' to
554 `PTRACE_TYPE_RET'.
555 * i386-bsd-nat.c (gdb_ptrace): Likewise.
556 * sparc-nat.c (gdb_ptrace): Likewise.
557 * x86-bsd-nat.c (gdb_ptrace): Likewise.
558
f7d4f0b1
TT
5592020-03-20 Tom Tromey <tromey@adacore.com>
560
561 * c-exp.y (lex_one_token): Fix assert.
562
f67210ff
TT
5632020-03-20 Tom Tromey <tromey@adacore.com>
564
565 * ada-tasks.c (read_atcb): Use smaller length in strncpy call.
566 * linux-tdep.c (linux_fill_prpsinfo): Use smaller length in
567 strncpy call.
568
1773be9e
TT
5692020-03-20 Tom Tromey <tromey@adacore.com>
570
571 * symmisc.c (maintenance_print_one_line_table): Use ui_out.
572
70304be9
TT
5732020-03-20 Tom Tromey <tromey@adacore.com>
574
575 * ada-valprint.c (print_variant_part): Remove parameters; switch
576 to value-based API.
577 (print_field_values): Likewise.
578 (ada_val_print_struct_union): Likewise.
579 (ada_value_print_1): Update.
580
9faa006d
KR
5812020-03-20 Kamil Rytarowski <n54@gmx.com>
582
583 * ppc-nbsd-nat.c (ppc_nbsd_nat_target): Inherit from
584 nbsd_nat_target instead of inf_ptrace_target.
585 * ppc-nbsd-nat.c: Include "nbsd-nat.h", as we are now using
586 nbsd_nat_target.
587
4a90f062
KR
5882020-03-20 Kamil Rytarowski <n54@gmx.com>
589
590 * hppa-nbsd-nat.c (fetch_registers): New variable lwp and pass
591 it to the ptrace call.
592 * (store_registers): Likewise.
593
5942020-03-20 Kamil Rytarowski <n54@gmx.com>
c7da12c7
KR
595
596 * ppc-nbsd-nat.c (fetch_registers): New variable lwp and pass
597 it to the ptrace call.
598 * (store_registers): Likewise.
599
2d07da27
LM
6002020-03-19 Luis Machado <luis.machado@linaro.org>
601
602 * nat/aarch64-sve-linux-ptrace.c (aarch64_sve_set_vq): If vg is not
603 valid, fetch vg value from ptrace.
604
f09db380
KR
6052020-03-19 Kamil Rytarowski <n54@gmx.com>
606 * inf-ptrace.h: Disable get_ptrace_pid on NetBSD.
607 * inf-ptrace.c: Likewise.
608 * (gdb_ptrace): Add.
609 * (inf_ptrace_target::resume): Update.
610 * (inf_ptrace_target::xfer_partial): Likewise.
611 * (inf_ptrace_peek_poke): Change argument `pid' to `ptid'.
612 * (inf_ptrace_peek_poke): Update.
613
fcc7376e
KR
6142020-03-19 Kamil Rytarowski <n54@gmx.com>
615
616 * x86-bsd-nat.c (gdb_ptrace): New.
617 * (x86bsd_dr_set): Add new argument `ptid'.
618 * (x86bsd_dr_get, x86bsd_dr_set, x86bsd_dr_set_control,
619 x86bsd_dr_set_addr): Update.
620
cada5fc9
AB
6212020-03-19 Andrew Burgess <andrew.burgess@embecosm.com>
622
623 * remote.c (remote_target::process_stop_reply): Handle events for
624 all threads differently.
625
19a2740f
AB
6262020-03-19 Andrew Burgess <andrew.burgess@embecosm.com>
627
628 * completer.c (completion_tracker::remove_completion): Define new
629 function.
630 * completer.h (completion_tracker::remove_completion): Declare new
631 function.
632 * symtab.c (completion_list_add_symbol): Remove aliasing msymbols
633 when adding a C++ function symbol.
634
724fd9ba
AB
6352020-03-19 Andrew Burgess <andrew.burgess@embecosm.com>
636
637 * completer.c (completion_tracker::completion_hash_entry): Define
638 new class.
639 (advance_to_filename_complete_word_point): Call
640 recompute_lowest_common_denominator.
641 (completion_tracker::completion_tracker): Call discard_completions
642 to setup the hash table.
643 (completion_tracker::discard_completions): Allow for being called
644 from the constructor, pass new equal function, and element deleter
645 when constructing the hash table. Initialise new class member
646 variables.
647 (completion_tracker::maybe_add_completion): Remove use of
648 m_entries_vec, and store more information into m_entries_hash.
649 (completion_tracker::recompute_lcd_visitor): New function, most
650 content taken from...
651 (completion_tracker::recompute_lowest_common_denominator):
652 ...here, this now just visits each item in the hash calling the
653 above visitor.
654 (completion_tracker::build_completion_result): Remove use of
655 m_entries_vec, call recompute_lowest_common_denominator.
656 * completer.h (completion_tracker::have_completions): Remove use
657 of m_entries_vec.
658 (completion_tracker::completion_hash_entry): Declare new class.
659 (completion_tracker::recompute_lowest_common_denominator): Change
660 function signature.
661 (completion_tracker::recompute_lcd_visitor): Declare new function.
662 (completion_tracker::m_entries_vec): Delete.
663 (completion_tracker::m_entries_hash): Initialize to NULL.
664 (completion_tracker::m_lowest_common_denominator_valid): New
665 member variable.
666 (completion_tracker::m_lowest_common_denominator_max_length): New
667 member variable.
668
5a82b8a1
KR
6692020-03-17 Kamil Rytarowski <n54@gmx.com>
670
671 * regformats/regdef.h: Put reg in gdb namespace.
672
fb516a69
KR
6732020-03-17 Kamil Rytarowski <n54@gmx.com>
674
675 * i386-bsd-nat.c (gdb_ptrace): New.
676 * (i386bsd_fetch_inferior_registers,
677 i386bsd_store_inferior_registers) Switch from pid_t to ptid_t.
678 * (i386bsd_fetch_inferior_registers,
679 i386bsd_store_inferior_registers) Use gdb_ptrace.
680
1c0aa1fb
KR
6812020-03-17 Kamil Rytarowski <n54@gmx.com>
682
683 * amd64-bsd-nat.c (gdb_ptrace): New.
684 * (amd64bsd_fetch_inferior_registers,
685 amd64bsd_store_inferior_registers) Switch from pid_t to ptid_t.
686 * (amd64bsd_fetch_inferior_registers,
687 amd64bsd_store_inferior_registers) Use gdb_ptrace.
688
5ccd2fb7
KR
6892020-03-17 Kamil Rytarowski <n54@gmx.com>
690
691 * user-regs.c (user_reg::read): Rename to...
692 (user_reg::xread): ...this.
693 * (append_user_reg): Rename argument `read' to `xread'.
694 * (user_reg_add_builtin): Likewise.
695 * (user_reg_add): Likewise.
696 * (value_of_user_reg): Likewise.
697
2108a63a
KR
6982020-03-17 Kamil Rytarowski <n54@gmx.com>
699
700 * sparc-nat.c (gdb_ptrace): New.
701 * sparc-nat.c (sparc_fetch_inferior_registers)
702 (sparc_store_inferior_registers) Remove obsolete comment.
703 * sparc-nat.c (sparc_fetch_inferior_registers)
704 (sparc_store_inferior_registers) Switch from pid_t to ptid_t.
705 * sparc-nat.c (sparc_fetch_inferior_registers)
706 (sparc_store_inferior_registers) Use gdb_ptrace.
707
a225c9a8
KR
7082020-03-17 Kamil Rytarowski <n54@gmx.com>
709
710 * sh-nbsd-nat.c (fetch_registers): New variable lwp and pass
711 it to the ptrace call.
712 * sh-nbsd-nat.c (store_registers): Likewise.
713
98097623
KR
7142020-03-17 Kamil Rytarowski <n54@gmx.com>
715
716 * sh-nbsd-nat.c (sh_nbsd_nat_target): Inherit from
717 nbsd_nat_target instead of inf_ptrace_target.
718 * sh-nbsd-nat.c: Include "nbsd-nat.h", as we are now using
719 nbsd_nat_target.
720
9e38d619
KR
7212020-03-17 Kamil Rytarowski <n54@gmx.com>
722
723 * amd64-bsd-nat.c: Include amd64-bsd-nat.h".
724
a2ecbe9f
KR
7252020-03-17 Kamil Rytarowski <n54@gmx.com>
726
727 * nbsd-nat.c: Include <sys/types.h>, <sys/ptrace.h> and
728 <sys/sysctl.h>.
729 * nbsd-nat.c (nbsd_nat_target::pid_to_exec_file): Rewrite.
730
58990295
TV
7312020-03-17 Tom de Vries <tdevries@suse.de>
732
733 PR gdb/23710
734 * dwarf2/read.h (struct dwarf2_per_cu_data): Add unit_type and lang
735 fields.
736 * dwarf2/read.c (process_psymtab_comp_unit): Initialize unit_type and lang
737 fields.
738 (process_imported_unit_die): Skip import of c++ CUs.
739
771dd3a8
TT
7402020-03-16 Tom Tromey <tom@tromey.com>
741
742 * p-valprint.c (pascal_object_print_value): Initialize
743 base_value.
744
817a7585
AK
7452020-03-16 Anton Kolesov <anton.kolesov@synopsys.com>
746 Shahab Vahedi <shahab@synopsys.com>
747
748 * Makefile.in: Add arch/arc.o
749 * configure.tgt: Likewise.
750 * arc-tdep.c (arc_tdesc_init): Use arc_read_description.
751 (_initialize_arc_tdep): Don't initialize old target descriptions.
752 (arc_read_description): New function to cache target descriptions.
753 * arc-tdep.h (arc_read_description): Add proto type.
754 * arch/arc.c: New file.
755 * arch/arc.h: Likewise.
756 * features/Makefile: Replace old target descriptions with new.
757 * features/arc-arcompact.c: Remove.
758 * features/arc-arcompact.xml: Likewise.
759 * features/arc-v2.c: Likewise
760 * features/arc-v2.xml: Likewise
761 * features/arc/aux-arcompact.xml: New file.
762 * features/arc/aux-v2.xml: Likewise.
763 * features/arc/core-arcompact.xml: Likewise.
764 * features/arc/core-v2.xml: Likewise.
765 * features/arc/aux-arcompact.c: Generate.
766 * features/arc/aux-v2.c: Likewise.
767 * features/arc/core-arcompact.c: Likewise.
768 * features/arc/core-v2.c: Likewise.
769 * target-descriptions (maint_print_c_tdesc_cmd): Support ARC features.
770
67430cd0
TT
7712020-03-16 Tom Tromey <tromey@adacore.com>
772
773 PR gdb/25663:
774 * dwarf2/read.c (dwarf2_name): Strip leading namespaces after
775 putting value into bcache.
776
30efb6c7
SM
7772020-03-16 Simon Marchi <simon.marchi@efficios.com>
778
779 PR gdb/21500
780 * amd64-windows-tdep.c (amd64_windows_init_abi): Rename
781 to...
782 (amd64_windows_init_abi_common): ... this. Don't set size of
783 long type.
784 (amd64_windows_init_abi): New function.
785 (amd64_cygwin_init_abi): New function.
786 (_initialize_amd64_windows_tdep): Use amd64_cygwin_init_abi for
787 the Cygwin OS ABI.
788 * i386-windows-tdep.c (_initialize_i386_windows_tdep): Clarify
789 comment.
790
8db52437
SM
7912020-03-16 Simon Marchi <simon.marchi@efficios.com>
792
793 * windows-tdep.h (is_linked_with_cygwin_dll): New declaration.
794 * windows-tdep.c (CYGWIN_DLL_NAME): New.
795 (pe_import_directory_entry): New struct type.
796 (is_linked_with_cygwin_dll): New function.
797 * amd64-windows-tdep.c (amd64_windows_osabi_sniffer): Select
798 GDB_OSABI_CYGWIN if the BFD is linked with the Cygwin DLL.
799 * i386-windows-tdep.c (i386_windows_osabi_sniffer): Likewise.
800
5982a56a
SM
8012020-03-16 Simon Marchi <simon.marchi@efficios.com>
802
803 * i386-windows-tdep.c: Mass-rename "cygwin" to "windows", except
804 i386_cygwin_core_osabi_sniffer.
805
7a1998df
SM
8062020-03-16 Simon Marchi <simon.marchi@efficios.com>
807
808 * i386-cygwin-tdep.c: Rename to...
809 * i386-windows-tdep.c: ... this.
810 * Makefile.in (ALL_TARGET_OBS): Rename i386-cygwin-tdep.c to
811 i386-windows-tdep.c.
812 * configure.tgt: Likewise.
813
053205cc
SM
8142020-03-16 Simon Marchi <simon.marchi@efficios.com>
815
816 * osabi.h (enum gdb_osabi): Add GDB_OSABI_WINDOWS.
817 * osabi.c (gdb_osabi_names): Add "Windows".
818 * i386-cygwin-tdep.c (i386_cygwin_osabi_sniffer): Return
819 GDB_OSABI_WINDOWS when the binary's target is "pei-i386".
820 (i386_cygwin_core_osabi_sniffer): New function, extracted from
821 i386_cygwin_osabi_sniffer.
822 (_initialize_i386_cygwin_tdep): Register OS ABI
823 GDB_OSABI_WINDOWS for i386.
824 * amd64-windows-tdep.c (amd64_windows_osabi_sniffer): Return
825 GDB_OSABI_WINDOWS when the binary's target is "pei-x86-64".
826 (_initialize_amd64_windows_tdep): Register OS ABI GDB_OSABI_WINDOWS
827 for x86-64.
828 * configure.tgt: Use GDB_OSABI_WINDOWS as the default OS ABI
829 when the target matches '*-*-mingw*'.
830
fe4b2ee6
SM
8312020-03-16 Simon Marchi <simon.marchi@efficios.com>
832
833 * defs.h (enum gdb_osabi): Move to...
834 * osabi.h (enum gdb_osabi): ... here.
835 * gdbarch.sh: Include osabi.h in gdbarch.h.
836 * gdbarch.h: Re-generate.
837
cb9b645d
SM
8382020-03-16 Simon Marchi <simon.marchi@efficios.com>
839
840 * amd64-windows-tdep.c (amd64_windows_osabi_sniffer): New
841 function.
842 (_initialize_amd64_windows_tdep): Register osabi sniffer.
843
3293bbaf
TT
8442020-03-14 Tom Tromey <tom@tromey.com>
845
846 * c-typeprint.c (cp_type_print_method_args): Print "__restrict__"
847 for C++.
848 (c_type_print_modifier): Likewise. Add "language" parameter.
849 (c_type_print_varspec_prefix, c_type_print_base_struct_union)
850 (c_type_print_base_1): Update.
851 * type-stack.h (enum type_pieces) <tp_atomic, tp_restrict>: New
852 constants.
853 * type-stack.c (type_stack::insert): Handle tp_atomic and
854 tp_restrict.
855 (type_stack::follow_type_instance_flags): Likewise.
856 (type_stack::follow_types): Likewise. Merge type-following code.
857 * c-exp.y (RESTRICT, ATOMIC): New tokens.
858 (space_identifier, cv_with_space_id)
859 (const_or_volatile_or_space_identifier_noopt)
860 (const_or_volatile_or_space_identifier): Remove.
861 (single_qualifier, qualifier_seq_noopt, qualifier_seq): New
862 rules.
863 (ptr_operator, typebase): Update.
864 (enum token_flag) <FLAG_C>: New constant.
865 (ident_tokens): Add "restrict", "__restrict__", "__restrict", and
866 "_Atomic".
867 (lex_one_token): Handle FLAG_C.
868
154151a6
KR
8692020-03-14 Kamil Rytarowski <n54@gmx.com>
870
871 * m68k-bsd-nat.c (fetch_registers): New variable lwp and pass
872 it to the ptrace call.
873 * m68k-bsd-nat.c (store_registers): Likewise.
874
bc107784
KR
8752020-03-14 Kamil Rytarowski <n54@gmx.com>
876
877 * m68k-bsd-nat.c (m68kbsd_supply_gregset): Change type of regs to
878 gdb_byte *.
879 * m68k-bsd-nat.c (m68kbsd_supply_fpregset): Likewise.
880 * m68k-bsd-nat.c (m68kbsd_collect_gregset): Likewise.
881 * m68k-bsd-nat.c (m68kbsd_supply_pcb): Cast &tmp to gdb_byte *.
882
01a80117
KR
8832020-03-14 Kamil Rytarowski <n54@gmx.com>
884
885 * m68k-bsd-nat.c (m68k_bsd_nat_target): Inherit from
886 nbsd_nat_target instead of inf_ptrace_target.
887 * m68k-bsd-nat.c: Include "nbsd-nat.h", as we are now using
888 nbsd_nat_target.
889
f90280ca
KR
8902020-03-14 Kamil Rytarowski <n54@gmx.com>
891
892 * m68k-bsd-nat.c: Define _KERNTYPES to get the declaration of
893 register_t.
894
6def66f1
KR
8952020-03-14 Kamil Rytarowski <n54@gmx.com>
896
897 * alpha-bsd-nat.c (fetch_registers): New variable lwp and pass
898 it to the ptrace call.
899 * alpha-bsd-nat.c (store_registers): Likewise.
900
66eaca97
KR
9012020-03-14 Kamil Rytarowski <n54@gmx.com>
902
903 * alpha-bsd-nat.c: Remove <sys/procfs.h> and "gregset.h" from
904 includes.
905 * alpha-bsd-nat.c (gregset_t, fpregset_t): Remove.
906 * alpha-bsd-nat.c (supply_gregset, fill_gregset, supply_fpregset,
907 fill_fpregset): Likewise.
908
4fed520b
KR
9092020-03-14 Kamil Rytarowski <n54@gmx.com>
910
911 * alpha-bsd-nat.c (alpha_netbsd_nat_target): Inherit from
912 nbsd_nat_target instead of inf_ptrace_target.
913 * alpha-bsd-nat.c: Include "nbsd-nat.h", as we are now using
914 nbsd_nat_target.
915
2190cf06
KR
9162020-03-14 Kamil Rytarowski <n54@gmx.com>
917
918 * alpha-bsd-nat.c: Define _KERNTYPES to get the declaration of
919 register_t.
920
75c56d3d
KR
9212020-03-14 Kamil Rytarowski <n54@gmx.com>
922
923 * arm-nbsd-nat.c (fetch_register): New variable lwp and pass
924 it to the ptrace call.
925 * arm-nbsd-nat.c (fetch_fp_register): Likewise.
926 * arm-nbsd-nat.c (fetch_fp_regs): Likewise.
927 * arm-nbsd-nat.c (store_register): Likewise.
928 * arm-nbsd-nat.c (store_regs): Likewise.
929 * arm-nbsd-nat.c (store_fp_register): Likewise.
930 * arm-nbsd-nat.c (store_fp_regs): Likewise.
931
6018d381
KR
9322020-03-14 Kamil Rytarowski <n54@gmx.com>
933
934 * arm-nbsd-nat.c (arm_netbsd_nat_target): Inherit from
935 nbsd_nat_target instead of inf_ptrace_target.
936 * arm-nbsd-nat.c: Include "nbsd-nat.h", as we are now using
937 nbsd_nat_target.
938
013f99f0
KR
9392020-03-14 Kamil Rytarowski <n54@gmx.com>
940
941 * x86-bsd-nat.c (x86bsd_dr_get): New variable lwp and pass
942 it to the ptrace call.
943 * x86-bsd-nat.c (x86bsd_dr_set): Likewise.
944
12753073
KR
9452020-03-14 Kamil Rytarowski <n54@gmx.com>
946
6227b330
KR
947 * vax-bsd-nat.c (vaxbsd_supply_gregset): New variable lwp and pass
948 it to the ptrace call.
949 * vax-bsd-nat.c (vaxbsd_collect_gregset): Likewise.
950
9512020-03-14 Kamil Rytarowski <n54@gmx.com>
952
953 * vax-bsd-nat.c (vaxbsd_supply_gregset): Cast gregs to const
954 gdb_byte *.
12753073
KR
955 * vax-bsd-nat.c (vaxbsd_collect_gregset): Cast gregs to void *.
956
d5be5fa4
KR
9572020-03-14 Kamil Rytarowski <n54@gmx.com>
958
959 * vax-bsd-nat.c (vax_bsd_nat_target): Inherit from nbsd_nat_target
960 instead of inf_ptrace_target.
961 * vax-bsd-nat.c: Include "nbsd-nat.h", as we are now using
962 nbsd_nat_target.
963
8110f842
KR
9642020-03-14 Kamil Rytarowski <n54@gmx.com>
965
966 * mips-nbsd-nat.c: Define _KERNTYPES to get the declaration of
967 register_t.
968
52feded7
KR
9692020-03-14 Kamil Rytarowski <n54@gmx.com>
970
971 * ppc-nbsd-nat.c: Define _KERNTYPES to get the declaration of
972 register_t.
973
25567eee
KR
9742020-03-14 Kamil Rytarowski <n54@gmx.com>
975
976 * vax-bsd-nat.c: Define _KERNTYPES to get the declaration of
977 register_t.
978
426a9c18
TT
9792020-03-13 Tom Tromey <tom@tromey.com>
980
981 * value.h (val_print): Don't declare.
982 * valprint.h (val_print_array_elements)
983 (val_print_scalar_formatted, generic_val_print): Don't declare.
984 * valprint.c (generic_val_print_array): Take a struct value.
985 (generic_val_print_ptr, generic_val_print_memberptr)
986 (generic_val_print_bool, generic_val_print_int)
987 (generic_val_print_char, generic_val_print_complex)
988 (generic_val_print): Remove.
989 (generic_value_print): Update.
990 (do_val_print): Remove unused parameters. Don't call
991 la_val_print.
992 (val_print): Remove.
993 (common_val_print): Update. Don't call value_check_printable.
994 (val_print_scalar_formatted, val_print_array_elements): Remove.
995 * rust-lang.c (rust_val_print): Remove.
996 (rust_language_defn): Update.
997 * p-valprint.c (pascal_val_print): Remove.
998 (pascal_value_print_inner): Update.
999 (pascal_object_print_val_fields, pascal_object_print_val):
1000 Remove.
1001 (pascal_object_print_static_field): Update.
1002 * p-lang.h (pascal_val_print): Don't declare.
1003 * p-lang.c (pascal_language_defn): Update.
1004 * opencl-lang.c (opencl_language_defn): Update.
1005 * objc-lang.c (objc_language_defn): Update.
1006 * m2-valprint.c (m2_print_unbounded_array, m2_val_print): Remove.
1007 * m2-lang.h (m2_val_print): Don't declare.
1008 * m2-lang.c (m2_language_defn): Update.
1009 * language.h (struct language_defn) <la_val_print>: Remove.
1010 * language.c (unk_lang_value_print_inner): Rename. Change
1011 argument types.
1012 (unknown_language_defn, auto_language_defn): Update.
1013 * go-valprint.c (go_val_print): Remove.
1014 * go-lang.h (go_val_print): Don't declare.
1015 * go-lang.c (go_language_defn): Update.
1016 * f-valprint.c (f_val_print): Remove.
1017 * f-lang.h (f_value_print): Don't declare.
1018 * f-lang.c (f_language_defn): Update.
1019 * d-valprint.c (d_val_print): Remove.
1020 * d-lang.h (d_value_print): Don't declare.
1021 * d-lang.c (d_language_defn): Update.
1022 * cp-valprint.c (cp_print_value_fields)
1023 (cp_print_value_fields_rtti, cp_print_value): Remove.
1024 (cp_print_static_field): Update.
1025 * c-valprint.c (c_val_print_array, c_val_print_ptr)
1026 (c_val_print_struct, c_val_print_union, c_val_print_int)
1027 (c_val_print_memberptr, c_val_print): Remove.
1028 * c-lang.h (c_val_print_array, cp_print_value_fields)
1029 (cp_print_value_fields_rtti): Don't declare.
1030 * c-lang.c (c_language_defn, cplus_language_defn)
1031 (asm_language_defn, minimal_language_defn): Update.
1032 * ada-valprint.c (ada_val_print_ptr, ada_val_print_num): Remove.
1033 (ada_val_print_enum): Take a struct value.
1034 (ada_val_print_flt, ada_val_print_array, ada_val_print_1)
1035 (ada_val_print): Remove.
1036 (ada_value_print_1): Update.
1037 (printable_val_type): Remove.
1038 * ada-lang.h (ada_val_print): Don't declare.
1039 * ada-lang.c (ada_language_defn): Update.
1040
42331a1e
TT
10412020-03-13 Tom Tromey <tom@tromey.com>
1042
1043 * valprint.c (do_val_print): Update.
1044 * python/python-internal.h (gdbpy_apply_val_pretty_printer): Take
1045 a struct value.
1046 (value_to_value_object_no_release): Declare.
1047 * python/py-value.c (value_to_value_object_no_release): New
1048 function.
1049 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Take a
1050 struct value.
1051 * guile/scm-value.c (vlscm_scm_from_value_no_release): New
1052 function.
1053 * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer): Take
1054 a struct value.
1055 * guile/guile-internal.h (vlscm_scm_from_value_no_release):
1056 Declare.
1057 (gdbscm_apply_val_pretty_printer): Take a struct value.
1058 * extension.h (apply_ext_lang_val_pretty_printer): Take a struct
1059 value.
1060 * extension.c (apply_ext_lang_val_pretty_printer): Take a struct
1061 value.
1062 * extension-priv.h (struct extension_language_ops)
1063 <apply_val_pretty_printer>: Take a struct value.
1064 * cp-valprint.c (cp_print_value): Create a struct value.
1065 (cp_print_value): Update.
1066
3a916a97
TT
10672020-03-13 Tom Tromey <tom@tromey.com>
1068
1069 * ada-valprint.c (print_field_values): Call common_val_print.
1070
b59eac37
TT
10712020-03-13 Tom Tromey <tom@tromey.com>
1072
1073 * ada-valprint.c (val_print_packed_array_elements): Remove
1074 bitoffset and val parameters. Call common_val_print.
1075 (ada_val_print_string): Remove offset, address, and original_value
1076 parameters.
1077 (ada_val_print_array): Update.
1078 (ada_value_print_array): New function.
1079 (ada_value_print_1): Call it.
1080
03371129
TT
10812020-03-13 Tom Tromey <tom@tromey.com>
1082
1083 * ada-valprint.c (ada_value_print): Use common_val_print.
1084
2e088f8b
TT
10852020-03-13 Tom Tromey <tom@tromey.com>
1086
1087 * ada-valprint.c (ada_val_print_ref): Use common_val_print.
1088
39ef85a8
TT
10892020-03-13 Tom Tromey <tom@tromey.com>
1090
1091 * ada-valprint.c (ada_value_print_num): New function.
1092 (ada_value_print_1): Use it.
1093
b9fa6e07
TT
10942020-03-13 Tom Tromey <tom@tromey.com>
1095
1096 * ada-valprint.c (ada_value_print_1) <TYPE_CODE_FLT>: Rewrite.
1097
416595d6
TT
10982020-03-13 Tom Tromey <tom@tromey.com>
1099
1100 * ada-valprint.c (ada_value_print_ptr): New function.
1101 (ada_value_print_1): Use it.
1102
5b5e15ec
TT
11032020-03-13 Tom Tromey <tom@tromey.com>
1104
1105 * ada-valprint.c (ada_val_print_gnat_array): Take a struct value;
1106 call common_val_print.
1107 (ada_val_print_1): Update.
1108 (ada_value_print_1): New function.
1109 (ada_value_print_inner): Rewrite.
1110
fbf54e75
TT
11112020-03-13 Tom Tromey <tom@tromey.com>
1112
1113 * cp-valprint.c (cp_print_value_fields): Update.
1114 (cp_print_value): New function.
1115
64b653ca
TT
11162020-03-13 Tom Tromey <tom@tromey.com>
1117
1118 * m2-valprint.c (m2_value_print_inner): Use
1119 cp_print_value_fields.
1120 * cp-valprint.c (cp_print_value_fields): New function.
1121 * c-valprint.c (c_value_print_struct): New function.
1122 (c_value_print_inner): Use c_value_print_struct.
1123 * c-lang.h (cp_print_value_fields): Declare.
1124
6999f067
TT
11252020-03-13 Tom Tromey <tom@tromey.com>
1126
1127 * c-valprint.c (c_value_print_array): New function.
1128 (c_value_print_inner): Use it.
1129
ce80b8bd
TT
11302020-03-13 Tom Tromey <tom@tromey.com>
1131
1132 * c-valprint.c (c_value_print_memberptr): New function.
1133 (c_value_print_inner): Use it.
1134
2faac269
TT
11352020-03-13 Tom Tromey <tom@tromey.com>
1136
1137 * c-valprint.c (c_value_print_int): New function.
1138 (c_value_print_inner): Use it.
1139
da3e2c29
TT
11402020-03-13 Tom Tromey <tom@tromey.com>
1141
1142 * c-valprint.c (c_value_print_ptr): New function.
1143 (c_value_print_inner): Use it.
1144
50836231
TT
11452020-03-13 Tom Tromey <tom@tromey.com>
1146
1147 * c-valprint.c (c_value_print_inner): Rewrite.
1148
4f412b6e
TT
11492020-03-13 Tom Tromey <tom@tromey.com>
1150
1151 * valprint.c (generic_value_print_complex): New function.
1152 (generic_value_print): Use it.
1153
f5354008
TT
11542020-03-13 Tom Tromey <tom@tromey.com>
1155
1156 * valprint.c (generic_val_print_float): Don't call
1157 val_print_scalar_formatted.
1158 (generic_val_print, generic_value_print): Update.
1159
3eec3b05
TT
11602020-03-13 Tom Tromey <tom@tromey.com>
1161
1162 * valprint.c (generic_value_print_char): New function
1163 (generic_value_print): Use it.
1164
fdddfccb
TT
11652020-03-13 Tom Tromey <tom@tromey.com>
1166
1167 * valprint.c (generic_value_print_int): New function.
1168 (generic_value_print): Use it.
1169
6dde7521
TT
11702020-03-13 Tom Tromey <tom@tromey.com>
1171
1172 * valprint.c (generic_value_print_bool): New function.
1173 (generic_value_print): Use it.
1174
4112d2e6
TT
11752020-03-13 Tom Tromey <tom@tromey.com>
1176
1177 * valprint.c (generic_val_print_func): Simplify.
1178 (generic_val_print, generic_value_print): Update.
1179
65786af6
TT
11802020-03-13 Tom Tromey <tom@tromey.com>
1181
1182 * valprint.c (generic_val_print_flags): Remove.
1183 (generic_val_print, generic_value_print): Update.
1184 (val_print_type_code_flags): Add original_value parameter.
1185
40f3ce18
TT
11862020-03-13 Tom Tromey <tom@tromey.com>
1187
1188 * valprint.c (generic_val_print): Update.
1189 (generic_value_print): Update.
1190 * valprint.c (generic_val_print_enum): Don't call
1191 val_print_scalar_formatted.
1192
2a5b130b
TT
11932020-03-13 Tom Tromey <tom@tromey.com>
1194
1195 * valprint.c (generic_value_print): Call generic_value_print_ptr.
1196 * valprint.c (generic_value_print_ptr): New function.
1197
abc66ce9
TT
11982020-03-13 Tom Tromey <tom@tromey.com>
1199
1200 * valprint.c (generic_value_print): Rewrite.
1201
07a32858
TT
12022020-03-13 Tom Tromey <tom@tromey.com>
1203
1204 * p-valprint.c (pascal_object_print_value_fields)
1205 (pascal_object_print_value): New functions.
1206
64d64d3a
TT
12072020-03-13 Tom Tromey <tom@tromey.com>
1208
1209 * p-valprint.c (pascal_value_print_inner): Rewrite.
1210
6a95a1f5
TT
12112020-03-13 Tom Tromey <tom@tromey.com>
1212
1213 * f-valprint.c (f_value_print_innner): Rewrite.
1214
59fcdac6
TT
12152020-03-13 Tom Tromey <tom@tromey.com>
1216
1217 * m2-valprint.c (m2_print_unbounded_array): New overload.
1218 (m2_print_unbounded_array): Update.
1219 (m2_print_array_contents): Take a struct value.
1220 (m2_value_print_inner): Rewrite.
1221
d133c3e1
TT
12222020-03-13 Tom Tromey <tom@tromey.com>
1223
1224 * d-valprint.c (dynamic_array_type): Call d_value_print_inner.
1225 (d_value_print_inner): New function.
1226 * d-lang.h (d_value_print_inner): Declare.
1227 * d-lang.c (d_language_defn): Use d_value_print_inner.
1228
23b0f06b
TT
12292020-03-13 Tom Tromey <tom@tromey.com>
1230
1231 * go-valprint.c (go_value_print_inner): New function.
1232 * go-lang.h (go_value_print_inner): Declare.
1233 * go-lang.c (go_language_defn): Use go_value_print_inner.
1234
5f56f7cb
TT
12352020-03-13 Tom Tromey <tom@tromey.com>
1236
1237 * rust-lang.c (val_print_struct, rust_print_enum): Use the value
1238 API.
1239 (rust_val_print): Rewrite.
1240 (rust_value_print_inner): New function, from rust_val_print.
1241 (rust_language_defn): Use rust_value_print_inner.
1242
26792ee0
TT
12432020-03-13 Tom Tromey <tom@tromey.com>
1244
1245 * ada-valprint.c (ada_value_print_inner): New function.
1246 * ada-lang.h (ada_value_print_inner): Declare.
1247 * ada-lang.c (ada_language_defn): Use ada_value_print_inner.
1248
24051bbe
TT
12492020-03-13 Tom Tromey <tom@tromey.com>
1250
1251 * f-valprint.c (f_value_print_innner): New function.
1252 * f-lang.h (f_value_print_innner): Declare.
1253 * f-lang.c (f_language_defn): Use f_value_print_innner.
1254
c0941be6
TT
12552020-03-13 Tom Tromey <tom@tromey.com>
1256
1257 * p-valprint.c (pascal_value_print_inner): New function.
1258 * p-lang.h (pascal_value_print_inner): Declare.
1259 * p-lang.c (pascal_language_defn): Use pascal_value_print_inner.
1260
62c4663d
TT
12612020-03-13 Tom Tromey <tom@tromey.com>
1262
1263 * m2-valprint.c (m2_value_print_inner): New function.
1264 * m2-lang.h (m2_value_print_inner): Declare.
1265 * m2-lang.c (m2_language_defn): Use m2_value_print_inner.
1266
62182190
TT
12672020-03-13 Tom Tromey <tom@tromey.com>
1268
1269 * opencl-lang.c (opencl_language_defn): Use c_value_print_inner.
1270 * objc-lang.c (objc_language_defn): Use c_value_print_inner.
1271 * c-valprint.c (c_value_print_inner): New function.
1272 * c-lang.h (c_value_print_inner): Declare.
1273 * c-lang.c (c_language_defn, cplus_language_defn)
1274 (asm_language_defn, minimal_language_defn): Use
1275 c_value_print_inner.
1276
1e592a8a
TT
12772020-03-13 Tom Tromey <tom@tromey.com>
1278
1279 * p-valprint.c (pascal_object_print_value_fields): Now static.
1280 * p-lang.h (pascal_object_print_value_fields): Don't declare.
1281
7fe471e9
TT
12822020-03-13 Tom Tromey <tom@tromey.com>
1283
1284 * c-valprint.c (c_val_print_array): Simplify.
1285
d121c6ce
TT
12862020-03-13 Tom Tromey <tom@tromey.com>
1287
1288 * valprint.c (value_print_array_elements): New function.
1289 * valprint.h (value_print_array_elements): Declare.
1290
4dba70ee
TT
12912020-03-13 Tom Tromey <tom@tromey.com>
1292
1293 * printcmd.c (print_formatted): Use value_print_scalar_formatted.
1294 * mips-tdep.c (mips_print_register): Use
1295 value_print_scalar_formatted.
1296
4f9ae810
TT
12972020-03-13 Tom Tromey <tom@tromey.com>
1298
1299 * valprint.h (value_print_scalar_formatted): Declare.
1300 * valprint.c (value_print_scalar_formatted): New function.
1301
156bfec9
TT
13022020-03-13 Tom Tromey <tom@tromey.com>
1303
1304 * valprint.h (generic_value_print): Declare.
1305 * valprint.c (generic_value_print): New function.
1306
2b4e573d
TT
13072020-03-13 Tom Tromey <tom@tromey.com>
1308
1309 * valprint.c (do_val_print): Call la_value_print_inner, if
1310 available.
1311 * rust-lang.c (rust_language_defn): Update.
1312 * p-lang.c (pascal_language_defn): Update.
1313 * opencl-lang.c (opencl_language_defn): Update.
1314 * objc-lang.c (objc_language_defn): Update.
1315 * m2-lang.c (m2_language_defn): Update.
1316 * language.h (struct language_defn) <la_value_print_inner>: New
1317 member.
1318 * language.c (unknown_language_defn, auto_language_defn): Update.
1319 * go-lang.c (go_language_defn): Update.
1320 * f-lang.c (f_language_defn): Update.
1321 * d-lang.c (d_language_defn): Update.
1322 * c-lang.c (c_language_defn, cplus_language_defn)
1323 (asm_language_defn, minimal_language_defn): Update.
1324 * ada-lang.c (ada_language_defn): Update.
1325
a1f6a07c
TT
13262020-03-13 Tom Tromey <tom@tromey.com>
1327
1328 * c-valprint.c (c_value_print): Use common_val_print.
1329
410cf315
TT
13302020-03-13 Tom Tromey <tom@tromey.com>
1331
1332 * cp-valprint.c (cp_print_static_field): Use common_val_print.
1333
72a45c93
TT
13342020-03-13 Tom Tromey <tom@tromey.com>
1335
1336 * f-valprint.c (f77_print_array_1, f_val_print): Use
1337 common_val_print.
1338
040f66bd
TT
13392020-03-13 Tom Tromey <tom@tromey.com>
1340
1341 * riscv-tdep.c (riscv_print_one_register_info): Use
1342 common_val_print.
1343
a6e05a6c
TT
13442020-03-13 Tom Tromey <tom@tromey.com>
1345
1346 * mi/mi-main.c (output_register): Use common_val_print.
1347
3444c526
TT
13482020-03-13 Tom Tromey <tom@tromey.com>
1349
1350 * infcmd.c (default_print_one_register_info): Use
1351 common_val_print.
1352
c2a44efe
TT
13532020-03-13 Tom Tromey <tom@tromey.com>
1354
1355 * valprint.h (common_val_print_checked): Declare.
1356 * valprint.c (common_val_print_checked): New function.
1357 * stack.c (print_frame_arg): Use common_val_print_checked.
1358
b0c26e99
TT
13592020-03-13 Tom Tromey <tom@tromey.com>
1360
1361 * valprint.c (do_val_print): New function, from val_print.
1362 (val_print): Use do_val_print.
1363 (common_val_print): Use do_val_print.
1364
ce3acbe9
TT
13652020-03-13 Tom Tromey <tom@tromey.com>
1366
1367 * valprint.c (value_print): Use scoped_value_mark.
1368
96c7f873
TV
13692020-03-13 Tom de Vries <tdevries@suse.de>
1370
1371 PR symtab/25646
1372 * psymtab.c (partial_symtab::partial_symtab): Don't set
1373 globals_offset and statics_offset. Push element onto
1374 current_global_psymbols and current_static_psymbols stacks.
1375 (concat): New function.
1376 (end_psymtab_common): Set globals_offset and statics_offset. Pop
1377 element from current_global_psymbols and current_static_psymbols
1378 stacks. Concat popped elements to global_psymbols and
1379 static_symbols.
1380 (add_psymbol_to_list): Use current_global_psymbols and
1381 current_static_psymbols stacks.
1382 * psymtab.h (class psymtab_storage): Add current_global_psymbols and
1383 current_static_psymbols fields.
1384
6ba0a321
CB
13852020-03-12 Christian Biesinger <cbiesinger@google.com>
1386
1387 * corelow.c (sniff_core_bfd): Remove.
1388 (class core_target) <m_core_vec>: Remove.
1389 (core_target::core_target): Update.
1390 (core_file_fns): Remove.
1391 (deprecated_add_core_fns): Remove.
1392 (default_core_sniffer): Remove.
1393 (sniff_core_bfd): Remove.
1394 (default_check_format): Remove.
1395 (gdb_check_format): Remove.
1396 (core_target_open): Update.
1397 (core_target::get_core_register_section): Update.
1398 (get_core_registers_cb): Update.
1399 (core_target::fetch_registers): Update.
1400 * gdbcore.h (struct core_fns): Remove.
1401 (deprecated_add_core_fns): Remove.
1402 (default_core_sniffer): Remove.
1403 (default_check_format): Remove.
1404
227031b2
TT
14052020-03-12 Tom Tromey <tom@tromey.com>
1406
1407 * arm-tdep.c (struct arm_mapping_symbol) <value>: Now a
1408 CORE_ADDR.
1409 (struct arm_exidx_entry) <addr>: Now a CORE_ADDR.
1410
53807e9f
TT
14112020-03-12 Tom Tromey <tom@tromey.com>
1412
1413 * remote.c (remote_target::download_tracepoint)
1414 (remote_target::enable_tracepoint)
1415 (remote_target::disable_tracepoint): Use phex, not sprintf_vma.
1416 * breakpoint.c (print_recreate_masked_watchpoint): Use phex, not
1417 sprintf_vma.
1418
64f25102
TT
14192020-03-12 Tom Tromey <tom@tromey.com>
1420
1421 * symfile-mem.c: Update CORE_ADDR size assert.
1422
272cd5a3
SM
14232020-03-12 Simon Marchi <simon.marchi@efficios.com>
1424
1425 * selftest.m4: Move to gdbsupport/.
1426 * acinclude.m4: Update path to selftest.m4.
1427
74cd3f9d
SM
14282020-03-12 Simon Marchi <simon.marchi@efficios.com>
1429
1430 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Rename to...
1431 (SELFTESTS_SRCS): ... this. Add disasm-selftests.c,
1432 gdbarch-selfselftests.c and selftest-arch.c.
1433 (SUBDIR_UNITTESTS_OBS): Rename to...
1434 (SELFTESTS_OBS): ... this.
1435 (COMMON_SFILES): Remove disasm-selftests.c and
1436 gdbarch-selftests.c.
1437 * configure.ac: Don't add selftest-arch.{c,o} to
1438 CONFIG_{SRCS,OBS}.
1439 * disasm-selftests.c, gdbarch-selftests.c: Remove GDB_SELF_TEST
1440 preprocessor conditions.
1441
db6878ac
SM
14422020-03-12 Simon Marchi <simon.marchi@efficios.com>
1443
1444 * configure.ac: Don't source bfd/development.sh.
1445 * selftest.m4: Modify comment.
1446 * configure: Re-generate.
1447
4d696a5c
SM
14482020-03-12 Simon Marchi <simon.marchi@efficios.com>
1449
1450 * selftest.m4 (GDB_AC_SELFTEST): Error out if $development is
1451 not "true" or "false".
1452 * configure: Re-generate.
1453
8dd8e1c7
CB
14542020-03-12 Christian Biesinger <cbiesinger@google.com>
1455
1456 * Makefile.in (HFILES_NO_SRCDIR): Add new arm-nbsd-tdep.h file.
1457 * arm-nbsd-nat.c (arm_supply_gregset): Moved to arm-nbsd-tdep and
1458 renamed to arm_nbsd_supply_gregset.
1459 (fetch_register): Update to call arm_nbsd_supply_gregset.
1460 (fetch_regs): Remove in favor of fetch_register with a -1 regno.
1461 (arm_netbsd_nat_target::fetch_registers): Update.
1462 (fetch_elfcore_registers): Removed.
1463 (_initialize_arm_netbsd_nat): Removed call to deprecated_add_core_fns.
1464 * arm-nbsd-tdep.c (struct arm_nbsd_reg): New struct.
1465 (arm_nbsd_supply_gregset): Moved from arm-nbsd-nat.c and updated to
1466 not require NetBSD system headers.
1467 (arm_nbsd_regset): New struct.
1468 (arm_nbsd_iterate_over_regset_sections): New function.
1469 (arm_netbsd_init_abi_common): Updated to call
1470 set_gdbarch_iterate_over_regset_sections.
1471 * arm-nbsd-tdep.h: New file.
1472
dd69bf7a
KB
14732020-03-11 Kevin Buettner <kevinb@redhat.com>
1474
1475 * symtab.c (find_pc_sect_line): Add check which prevents infinite
1476 recursion.
1477
a0761e34
SM
14782020-03-11 Simon Marchi <simon.marchi@efficios.com>
1479
1480 * configure: Re-generate.
1481
e7a82140
TT
14822020-03-11 Tom Tromey <tromey@adacore.com>
1483
1484 * ada-typeprint.c (print_choices): Fix comment.
1485
dcc050c8
AB
14862020-03-11 Andrew Burgess <andrew.burgess@embecosm.com>
1487
1488 * buildsyms.c (buildsym_compunit::record_line): Avoid accessing
1489 previous item in the list, when the list has no items.
1490
1c33af77
TV
14912020-03-11 Tom de Vries <tdevries@suse.de>
1492
1493 * dwarf2/loc.c (dwarf2_evaluate_property): Handle NULL frame in
1494 PROP_LOCLIST handling code.
1495
8c95582d
AB
14962020-03-10 Andrew Burgess <andrew.burgess@embecosm.com>
1497
1498 * buildsym-legacy.c (record_line): Pass extra parameter to
1499 record_line.
1500 * buildsym.c (buildsym_compunit::record_line): Take an extra
1501 parameter, reduce duplication in the line table, and record the
1502 is_stmt flag in the line table.
1503 * buildsym.h (buildsym_compunit::record_line): Add extra
1504 parameter.
1505 * disasm.c (do_mixed_source_and_assembly_deprecated): Ignore
1506 non-statement lines.
1507 * dwarf2/read.c (dwarf_record_line_1): Add extra parameter, pass
1508 this to the symtab builder.
1509 (dwarf_finish_line): Pass extra parameter to dwarf_record_line_1.
1510 (lnp_state_machine::record_line): Pass a suitable is_stmt flag
1511 through to dwarf_record_line_1.
1512 * infrun.c (process_event_stop_test): When stepping, don't stop at
1513 a non-statement instruction, and only refresh the step info when
1514 we land in the middle of a line's range. Also add an extra
1515 comment.
1516 * jit.c (jit_symtab_line_mapping_add_impl): Initialise is_stmt
1517 field.
1518 * record-btrace.c (btrace_find_line_range): Only record lines
1519 marked as is-statement.
1520 * stack.c (frame_show_address): Show the frame address if we are
1521 in a non-statement sal.
1522 * symmisc.c (dump_symtab_1): Print the is_stmt flag.
1523 (maintenance_print_one_line_table): Print a header for the is_stmt
1524 column, and include is_stmt information in the output.
1525 * symtab.c (find_pc_sect_line): Find lines marked as statements in
1526 preference to non-statements.
1527 (find_pcs_for_symtab_line): Prefer is-statement entries.
1528 (find_line_common): Likewise.
1529 * symtab.h (struct linetable_entry): Add is_stmt field.
1530 (struct symtab_and_line): Likewise.
1531 * xcoffread.c (arrange_linetable): Initialise is_stmt field when
1532 arranging the line table.
1533
e4003a34
TV
15342020-03-07 Tom de Vries <tdevries@suse.de>
1535
1536 * dwarf2/read.c (read_typedef): Treat anonymous typedef as forwarder
1537 DIE.
1538
e8932576
TT
15392020-03-07 Tom Tromey <tom@tromey.com>
1540
1541 * valops.c (value_literal_complex): Remove obsolete comment.
1542 * gdbtypes.h (enum type_code) <TYPE_CODE_FLT>: Remove obsolete
1543 comment.
1544
29734269
SM
15452020-03-06 Simon Marchi <simon.marchi@polymtl.ca>
1546
1547 * infrun.h: Forward-declare thread_info.
1548 (set_step_info): Add thread_info parameter, add doc.
1549 * infrun.c (set_step_info): Add thread_info parameter, move doc
1550 to header.
1551 * infrun.c (process_event_stop_test): Pass thread to
1552 set_step_info call.
1553 * infcmd.c (set_step_frame): Add thread_info pointer, pass it to
1554 set_step_info.
1555 (prepare_one_step): Add thread_info parameter, pass it to
1556 set_step_frame and prepare_one_step (recursive) call.
1557 (step_1): Pass thread to prepare_one_step call.
1558 (step_command_fsm::should_stop): Pass thread to
1559 prepare_one_step.
1560 (until_next_fsm): Pass thread to set_step_frame call.
1561 (finish_command): Pass thread to set_step_info call.
1562
b7d64b29
HD
15632020-03-06 Hannes Domani <ssbssa@yahoo.de>
1564
1565 * windows-tdep.c (windows_solib_create_inferior_hook):
1566 Check if inferior is running.
1567
09f2921c
TV
15682020-03-06 Tom de Vries <tdevries@suse.de>
1569
1570 * NEWS: Fix "the the".
1571 * ctfread.c: Same.
1572
fd760e79
TV
15732020-03-06 Tom de Vries <tdevries@suse.de>
1574
1575 * psymtab.c (psymtab_to_symtab): Don't print "done.".
1576
20ea4a60
AB
15772020-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
1578
1579 * .dir-locals.el: Add a comment referencing the other copies of
1580 this file.
1581
0afbabf0
JB
15822020-03-05 John Baldwin <jhb@FreeBSD.org>
1583
1584 * fbsd-tdep.c (fbsd_make_corefile_notes): Use std::string for
1585 psargs.
1586
842806cb
TBA
15872020-03-05 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
1588
1589 * .gitattributes: New file.
1590
be1e3d3e
TT
15912020-03-04 Tom Tromey <tom@tromey.com>
1592
1593 * symmisc.c (print_symbol_bcache_statistics)
1594 (print_objfile_statistics): Update.
1595 * symfile.c (allocate_symtab): Use intern.
1596 * psymtab.c (partial_symtab::partial_symtab): Use intern.
1597 * objfiles.h (struct objfile_per_bfd_storage) <filename_cache,
1598 macro_cache>: Remove.
1599 <string_cache>: New member.
1600 (struct objfile) <intern>: New methods.
1601 * elfread.c (elf_symtab_read): Use intern.
1602 * dwarf2/read.c (fixup_go_packaging): Intern package name.
1603 (dwarf2_compute_name, dwarf2_physname)
1604 (create_dwo_unit_in_dwp_v1, create_dwo_unit_in_dwp_v2): Intern
1605 names.
1606 (guess_partial_die_structure_name): Update.
1607 (partial_die_info::fixup): Intern name.
1608 (dwarf2_canonicalize_name): Change parameter to objfile. Intern
1609 name.
1610 (dwarf2_name): Intern name. Update.
1611 * buildsym.c (buildsym_compunit::get_macro_table): Use
1612 string_cache.
1613
4e7625fd
TT
16142020-03-04 Tom Tromey <tom@tromey.com>
1615
1616 * jit.c (bfd_open_from_target_memory): Make "target" const.
1617 * corefile.c (gnutarget): Now const.
1618 * gdbcore.h (gnutarget): Now const.
1619
46f9f931
HD
16202020-03-04 Hannes Domani <ssbssa@yahoo.de>
1621
1622 * NEWS: Mention support for WOW64 processes.
1623 * amd64-windows-nat.c (amd64_mappings): Rename and remove static.
1624 (amd64_windows_segment_register_p): Remove static.
1625 (_initialize_amd64_windows_nat): Update.
1626 * configure.nat <windows> (NATDEPFILES): Add i386-windows-nat.o.
1627 * i386-windows-nat.c (context_offset): Update.
1628 (i386_mappings): Rename and remove static.
1629 (i386_windows_segment_register_p): Remove static.
1630 (_initialize_i386_windows_nat): Update.
1631 * windows-nat.c (STATUS_WX86_BREAKPOINT): New macro.
1632 (STATUS_WX86_SINGLE_STEP): New macro.
1633 (EnumProcessModulesEx): New macro.
1634 (Wow64SuspendThread): New macro.
1635 (Wow64GetThreadContext): New macro.
1636 (Wow64SetThreadContext): New macro.
1637 (Wow64GetThreadSelectorEntry): New macro.
1638 (windows_set_context_register_offsets): Add static.
1639 (windows_set_segment_register_p): Likewise.
1640 (windows_add_thread): Adapt for WOW64 processes.
1641 (windows_fetch_one_register): Likewise.
1642 (windows_nat_target::fetch_registers): Likewise.
1643 (windows_store_one_register): Likewise.
1644 (display_selector): Likewise.
1645 (display_selectors): Likewise.
1646 (handle_exception): Likewise.
1647 (windows_continue): Likewise.
1648 (windows_nat_target::resume): Likewise.
1649 (windows_add_all_dlls): Likewise.
1650 (do_initial_windows_stuff): Likewise.
1651 (windows_nat_target::attach): Likewise.
1652 (windows_get_exec_module_filename): Likewise.
1653 (windows_nat_target::create_inferior): Likewise.
1654 (windows_xfer_siginfo): Likewise.
1655 (_initialize_loadable): Initialize Wow64SuspendThread,
1656 Wow64GetThreadContext, Wow64SetThreadContext,
1657 Wow64GetThreadSelectorEntry and EnumProcessModulesEx.
1658 * windows-nat.h (windows_set_context_register_offsets):
1659 Remove declaration.
1660 (windows_set_segment_register_p): Likewise.
1661 (i386_windows_segment_register_p): Add declaration.
1662 (amd64_windows_segment_register_p): Likewise.
1663
440cf44e
LM
16642020-03-04 Luis Machado <luis.machado@linaro.org>
1665
1666 Revert aa66aac47b4dd38f9524ddb5546c08cc09930d37 due to regressions
1667 in "info registers" for AArch64/ARM.
1668
1669 The change caused "info registers" to not print GPR's.
1670
1671 gdb/ChangeLog:
1672
1673 2020-02-01 Shahab Vahedi <shahab@synopsys.com>
1674
1675 * target-descriptions.c (tdesc_register_in_reggroup_p): Return 0
1676 when reg->group is empty and reggroup is not.
1677
1009d92f
TT
16782020-03-03 Tom Tromey <tromey@adacore.com>
1679
1680 * dwarf2/frame.c (struct dwarf2_frame_cache)
1681 <checked_tailcall_bottom, entry_cfa_sp_offset,
1682 entry_cfa_sp_offset_p>: Remove members.
1683 (dwarf2_frame_cache): Call dwarf2_tailcall_sniffer_first.
1684 (dwarf2_frame_prev_register): Don't call
1685 dwarf2_tailcall_sniffer_first.
1686 (dwarf2_append_unwinders): Don't append tailcall unwinder.
1687 * frame-unwind.c (add_unwinder): New fuction.
1688 (frame_unwind_init): Use it. Add tailcall unwinder.
1689
5e5d66b6
AB
16902020-03-03 Andrew Burgess <andrew.burgess@embecosm.com>
1691 Alok Kumar Sharma <AlokKumar.Sharma@amd.com>
1692
1693 * f-valprint.c (f_val_print): Handle TYPE_CODE_BOOL, any non-zero
1694 value should be printed as true.
1695
584cf46d
HD
16962020-03-03 Hannes Domani <ssbssa@yahoo.de>
1697
1698 * windows-tdep.c (windows_solib_create_inferior_hook): New function.
1699 (windows_init_abi): Set and use windows_so_ops.
1700
7b973adc
SDJ
17012020-03-03 Sergio Durigan Junior <sergiodj@redhat.com>
1702
1703 * printcmd.c (print_c_string): Check also for TYPE_CODE_PTR
1704 when verifying if dealing with a convenience variable.
1705
bb7b70ab
LM
17062020-03-03 Luis Machado <luis.machado@linaro.org>
1707
1708 * auxv.c (default_print_auxv_entry): Add new AUXV entries.
1709
9822cb57
SM
17102020-03-02 Simon Marchi <simon.marchi@polymtl.ca>
1711
1712 * infrun.c (gdbarch_supports_displaced_stepping): New.
1713 (use_displaced_stepping): Break up conditions in smaller pieces.
1714 Use gdbarch_supports_displaced_stepping.
1715 (displaced_step_prepare_throw): Use
1716 gdbarch_supports_displaced_stepping.
1717
63e163f2
AB
17182020-03-02 Andrew Burgess <andrew.burgess@embecosm.com>
1719
1720 * NEWS: Mention new behaviour of the history filename.
1721 * top.c (write_history_p): Add comment.
1722 (show_write_history_p): Add header comment, give a different
1723 message when history writing is on, but the history filename is
1724 empty.
1725 (history_filename): Add comment.
1726 (history_filename_empty): New function.
1727 (show_history_filename): Add header comment, give a different
1728 message when the filename is empty.
1729 (init_history): Compare history_filename against nullptr, and only
1730 read history if the filename is not empty.
1731 (set_history_filename): Add header comment, and only make
1732 non-empty filenames absolute.
1733 (init_main): Make the filename argument to 'set history filename'
1734 optional.
1735
81b86b97
CB
17362020-03-02 Christian Biesinger <cbiesinger@google.com>
1737
1738 * arm-nbsd-nat.c (arm_supply_fparegset): Rename to...
1739 (arm_supply_vfpregset): ...this, and update to use VFP registers.
1740 (fetch_fp_register): Update.
1741 (fetch_fp_regs): Update.
1742 (store_fp_register): Update.
1743 (store_fp_regs): Update.
1744 (arm_netbsd_nat_target::read_description): New function.
1745 (fetch_elfcore_registers): Update.
1746
24ed6739
AB
17472020-03-02 Andrew Burgess <andrew.burgess@embecosm.com>
1748
1749 * remote.c (remote_target::remote_parse_stop_reply): Don't use the
1750 general_thread if the stop reply is missing a thread-id.
1751 (remote_target::process_stop_reply): Use the first non-exited
1752 thread if the target didn't pass a thread-id.
1753 * infrun.c (do_target_wait): Move call to
1754 switch_to_inferior_no_thread to ....
1755 (do_target_wait_1): ... here.
1756
a84bb2a0
JT
17572020-02-29 Jon Turney <jon.turney@dronecode.org.uk>
1758
1759 * debuginfod-support.c: Include defs.h first.
1760
658dadf0
TV
17612020-02-28 Tom de Vries <tdevries@suse.de>
1762
1763 * symfile.c (set_initial_language): Use default language for lookup.
1764
4ebe4877
SM
17652020-02-28 Simon Marchi <simon.marchi@efficios.com>
1766
1767 * dwarf2/read.c (cutu_reader::init_tu_and_read_dwo_dies): Remove
1768 reader variable, pass `this` to read_cutu_die_from_dwo.
1769
e5da1139
AM
17702020-02-27 Aaron Merey <amerey@redhat.com>
1771
1772 * source.c (open_source_file): Check for nullptr when computing
1773 srcpath.
1774
317f7127
TT
17752020-02-27 Tom Tromey <tromey@adacore.com>
1776
1777 * dwarf2/read.c (struct field_info) <nfields>: Now a method, not a
1778 member.
1779 (dwarf2_add_field): Don't update nfields.
1780 (dwarf2_attach_fields_to_type, process_structure_scope): Update.
1781
3104d9ee
AB
17822020-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
1783
1784 * gdbtypes.c (create_array_type_with_stride): Use std::abs not
1785 abs.
1786
b83470bf
TT
17872020-02-26 Tom Tromey <tom@tromey.com>
1788
1789 * dwarf2/read.c (struct dwarf2_include_psymtab): New.
1790 (dwarf2_create_include_psymtab): Use dwarf2_include_psymtab.
1791 (dwarf2_psymtab::expand_psymtab, dwarf2_psymtab::readin_p)
1792 (dwarf2_psymtab::get_compunit_symtab): Remove null checks for
1793 per_cu_data.
1794
edfe0a0c
TT
17952020-02-26 Tom Tromey <tom@tromey.com>
1796
1797 * dwarf2/index-write.c (psym_index_map): Change type.
1798 (add_address_entry_worker, write_one_signatured_type)
1799 (recursively_count_psymbols, recursively_write_psymbols)
1800 (class debug_names, psyms_seen_size, write_gdbindex)
1801 (write_debug_names): Use partial_symtab, not dwarf2_psymtab.
1802
0d79cdc4
AM
18032020-02-26 Aaron Merey <amerey@redhat.com>
1804
1805 * Makefile.in: Handle optional debuginfod support.
1806 * NEWS: Update.
1807 * README: Add --with-debuginfod summary.
1808 * config.in: Regenerate.
1809 * configure: Regenerate.
1810 * configure.ac: Handle optional debuginfod support.
1811 * debuginfod-support.c: debuginfod helper functions.
1812 * debuginfod-support.h: Ditto.
1813 * doc/gdb.texinfo: Add --with-debuginfod to configure options
1814 summary.
1815 * dwarf2/read.c (dwarf2_get_dwz_file): Query debuginfod servers
1816 when a dwz file cannot be found.
1817 * elfread.c (elf_symfile_read): Query debuginfod servers when a
1818 debuginfo file cannot be found.
1819 * source.c (open_source_file): Query debuginfod servers when a
1820 source file cannot be found.
1821 * top.c (print_gdb_configuration): Include
1822 --{with,without}-debuginfod in the output.
1823
b65ce565
JG
18242020-02-26 Jérémie Galarneau <jeremie.galarneau@efficios.com>
1825
1826 * thread.c (thr_try_catch_cmd): Print thread name.
1827
d4c9a4f8
SM
18282020-02-26 Simon Marchi <simon.marchi@efficios.com>
1829
1830 * dwarf2/loc.h (dwarf2_fetch_die_loc_sect_off,
1831 dwarf2_fetch_die_loc_cu_off, dwarf2_fetch_constant_bytes,
1832 dwarf2_fetch_die_type_sect_off): Move to...
1833 * dwarf2/read.h (dwarf2_fetch_die_loc_sect_off,
1834 dwarf2_fetch_die_loc_cu_off, dwarf2_fetch_constant_bytes,
1835 dwarf2_fetch_die_type_sect_off): ... here.
1836 * dwarf2/read.c (dwarf2_fetch_die_loc_sect_off,
1837 dwarf2_fetch_die_loc_cu_off, dwarf2_fetch_constant_bytes,
1838 dwarf2_fetch_die_type_sect_off): Move doc to header file.
1839
0dce4280
TV
18402020-02-26 Tom de Vries <tdevries@suse.de>
1841
1842 PR gdb/25603
1843 * symfile.c (set_initial_language): Exit-early if
1844 language_mode == language_mode_manual.
1845
450a1bfc
SM
18462020-02-25 Simon Marchi <simon.marchi@polymtl.ca>
1847
1848 * dwarf2/loc.h (dwarf2_read_addr_index): Move...
1849 * dwarf2/read.h (dwarf2_read_addr_index): ... here.
1850 * dwarf2/read.c (dwarf2_read_addr_index): Move doc to header.
1851
9e80cfa1
AB
18522020-02-25 Andrew Burgess <andrew.burgess@embecosm.com>
1853
1854 * gdbtypes.c (create_array_type_with_stride): Handle negative
1855 array strides.
1856 * valarith.c (value_subscripted_rvalue): Likewise.
1857
09624f1f
LM
18582020-02-25 Luis Machado <luis.machado@linaro.org>
1859
1860 * aarch64-tdep.c (aarch64_vnv_type): Fix comment typo.
1861
8cb5117c
SM
18622020-02-25 Simon Marchi <simon.marchi@polymtl.ca>
1863
1864 * loc.h (dwarf2_get_die_type): Move to...
1865 * read.h (dwarf2_get_die_type): ... here.
1866 * read.c (dwarf2_get_die_type): Move doc to header.
1867
c325c44e
JB
18682020-02-25 Joel Brobecker <brobecker@adacore.com>
1869
1870 * copypright.py (EXCLUDE_LIST): Add 'gnulib/config.in' and
1871 'gnulib/Makefile.in' to the list.
1872
4ac93832
TT
18732020-02-24 Tom Tromey <tom@tromey.com>
1874
1875 * dwarf2/read.h (struct type_unit_unshareable) <num_symtabs>:
1876 Remove.
1877 * dwarf2/read.c (dwarf2_cu::setup_type_unit_groups): Use
1878 XOBNEWVEC.
1879
197400e8
TT
18802020-02-24 Tom Tromey <tom@tromey.com>
1881
1882 * dwarf2/read.h (struct dwarf2_per_cu_data) <type_unit_group_p>:
1883 New method.
1884 * dwarf2/read.c (IS_TYPE_UNIT_GROUP): Remove.
1885 (dw2_do_instantiate_symtab, dw2_get_file_names)
1886 (build_type_psymtab_dependencies, load_full_type_unit): Update.
1887
76935768
TT
18882020-02-24 Tom Tromey <tom@tromey.com>
1889
1890 * dwarf2read.c (dwarf2_build_psymtabs_hard): Use
1891 make_scoped_restore.
1892 (dwarf2_psymtab::read_symtab): Don't clear
1893 reading_partial_symbols.
1894
a88ef40d
TV
18952020-02-24 Tom de Vries <tdevries@suse.de>
1896
1897 PR gdb/25592
1898 * stack.c (iterate_over_block_locals): Handle LOC_CONST.
1899
c9af6521
TV
19002020-02-24 Tom de Vries <tdevries@suse.de>
1901
1902 * tui/tui-layout.c (_initialize_tui_layout): Fix help messages for
1903 commands layout next/prev/regs.
1904
5707a07a
TT
19052020-02-22 Tom Tromey <tom@tromey.com>
1906
1907 * dwarf2/loc.h (dwarf2_compile_expr_to_ax): Don't declare.
1908 * dwarf2/loc.c (dwarf2_compile_expr_to_ax): Now static.
1909
3b0fb49e
TT
19102020-02-22 Tom Tromey <tom@tromey.com>
1911
1912 * tui/tui-data.h (TUI_DISASM_WIN): Cast to tui_disasm_window.
1913
283be8bf
TT
19142020-02-22 Tom Tromey <tom@tromey.com>
1915
1916 * tui/tui-win.c (_initialize_tui_win): Add usage text.
1917 * tui/tui-stack.c (_initialize_tui_stack): Add usage text.
1918 * tui/tui-regs.c (_initialize_tui_regs): Add usage text.
1919 * tui/tui.c (_initialize_tui): Add usage text.
1920
ca793b96
TT
19212020-02-22 Tom Tromey <tom@tromey.com>
1922
1923 * tui/tui-win.c (tui_set_focus_command)
1924 (tui_set_win_height_command): Use error_no_arg.
1925 (_initialize_tui_win): Update help text.
1926 (FOCUS_USAGE, WIN_HEIGHT_USAGE): Don't define.
1927
432b5c40
TT
19282020-02-22 Tom Tromey <tom@tromey.com>
1929
1930 * tui/tui-layout.c (extract_display_start_addr): Rewrite.
1931 * tui/tui-disasm.h (struct tui_disasm_window)
1932 <display_start_addr>: Declare.
1933 * tui/tui-source.h (struct tui_source_window)
1934 <display_start_addr>: Declare.
1935 * tui/tui-winsource.h (struct tui_source_window_base)
1936 <show_source_line, display_start_addr>: New methods.
1937 <m_horizontal_offset, m_start_line_or_addr, m_gdbarch, m_content>:
1938 Rename and move to protected section.
1939 * tui/tui-winsource.c (tui_source_window_base::update_source_window)
1940 (tui_source_window_base::do_erase_source_content): Update.
1941 (tui_source_window_base::show_source_line): Now a method.
1942 (tui_source_window_base::show_source_content)
1943 (tui_source_window_base::tui_source_window_base)
1944 (tui_source_window_base::rerender)
1945 (tui_source_window_base::refill)
1946 (tui_source_window_base::do_scroll_horizontal)
1947 (tui_source_window_base::set_is_exec_point_at)
1948 (tui_source_window_base::update_breakpoint_info)
1949 (tui_source_window_base::update_exec_info): Update.
1950 * tui/tui-source.c (tui_source_window::set_contents)
1951 (tui_source_window::showing_source_p)
1952 (tui_source_window::do_scroll_vertical)
1953 (tui_source_window::location_matches_p)
1954 (tui_source_window::line_is_displayed): Update.
1955 (tui_source_window::display_start_addr): New method.
1956 * tui/tui-disasm.c (tui_disasm_window::set_contents)
1957 (tui_disasm_window::do_scroll_vertical)
1958 (tui_disasm_window::location_matches_p): Update.
1959 (tui_disasm_window::display_start_addr): New method.
1960
01b1af32
TT
19612020-02-22 Tom Tromey <tom@tromey.com>
1962
1963 * NEWS: Add entry for gdb.register_window_type.
1964 * tui/tui-layout.h (window_factory): New typedef.
1965 (tui_register_window): Declare.
1966 * tui/tui-layout.c (saved_tui_windows): New global.
1967 (tui_apply_current_layout): Use it.
1968 (tui_register_window): New function.
1969 * python/python.c (do_start_initialization): Call
1970 gdbpy_initialize_tui.
1971 (python_GdbMethods): Add "register_window_type" function.
1972 * python/python-internal.h (gdbpy_register_tui_window)
1973 (gdbpy_initialize_tui): Declare.
1974 * python/py-tui.c: New file.
1975 * Makefile.in (SUBDIR_PYTHON_SRCS): Add py-tui.c.
1976
fc96d20b
TT
19772020-02-22 Tom Tromey <tom@tromey.com>
1978
1979 * tui/tui-io.c (do_tui_putc): Don't omit annotations.
1980
935c78c0
TT
19812020-02-22 Tom Tromey <tom@tromey.com>
1982
1983 * tui/tui-win.c (tui_set_win_focus_to): Move to tui-data.c.
1984 * tui/tui-data.h (tui_set_win_with_focus): Don't declare.
1985 * tui/tui-data.c (tui_set_win_with_focus): Remove.
1986 (tui_set_win_focus_to): Move from tui-win.c.
1987
0240c8f1
TT
19882020-02-22 Tom Tromey <tom@tromey.com>
1989
1990 * tui/tui-layout.c (make_standard_window, get_locator_window): New
1991 functions.
1992 (known_window_types): New global.
1993 (tui_get_window_by_name): Reimplement.
1994 (initialize_known_windows): New function.
1995 (validate_window_name): Rewrite.
1996 (_initialize_tui_layout): Call initialize_known_windows.
1997
fdb01f0c
TT
19982020-02-22 Tom Tromey <tom@tromey.com>
1999
2000 * tui/tui.h (enum tui_win_type) <LOCATOR_WIN, DATA_ITEM_WIN>:
2001 Remove constants.
2002 * tui/tui-winsource.h (struct tui_source_window_base)
2003 <tui_source_window_base>: Remove parameter.
2004 * tui/tui-winsource.c
2005 (tui_source_window_base::tui_source_window_base): Remove
2006 parameter.
2007 (tui_source_window_base::refill): Update.
2008 * tui/tui-stack.h (struct tui_locator_window)
2009 <tui_locator_window>: Update.
2010 * tui/tui-source.h (struct tui_source_window) <tui_source_window>:
2011 Default the constructor.
2012 * tui/tui-regs.h (struct tui_data_item_window)
2013 <tui_data_item_window>: Default the constructor.
2014 (struct tui_data_window) <tui_data_window>: Likewise.
2015 * tui/tui-disasm.h (struct tui_disasm_window) <tui_disasm_window>:
2016 Default the constructor.
2017 * tui/tui-data.h (struct tui_gen_win_info) <tui_gen_win_info>:
2018 Default the constructor.
2019 <type>: Remove.
2020 (struct tui_win_info) <tui_win_info>: Default the constructor.
2021 * tui/tui-data.c (tui_win_info::tui_win_info): Remove.
2022 * tui/tui-command.h (struct tui_cmd_window) <tui_cmd_window>:
2023 Default the constructor.
2024
865a5aec
TT
20252020-02-22 Tom Tromey <tom@tromey.com>
2026
2027 * tui/tui-wingeneral.h (tui_make_all_invisible): Don't declare.
2028 * tui/tui-wingeneral.c (tui_make_all_invisible): Remove.
2029 * tui/tui-win.c (tui_resize_all): Don't call
2030 tui_delete_invisible_windows.
2031 * tui/tui-layout.c (tui_apply_current_layout): Delete windows when
2032 done.
2033 (tui_set_layout): Update.
2034 (tui_add_win_to_layout): Don't call tui_delete_invisible_windows.
2035 * tui/tui-data.h (tui_delete_invisible_windows): Don't declare.
2036 * tui/tui-data.c (tui_delete_invisible_windows): Remove.
2037
e098d18c
TT
20382020-02-22 Tom Tromey <tom@tromey.com>
2039
2040 * tui/tui-win.c (tui_partial_win_by_name): Handle ambiguity
2041 correctly.
2042
eb9c8874
TT
20432020-02-22 Tom Tromey <tom@tromey.com>
2044
2045 * tui/tui-data.c (tui_next_win, tui_prev_win): Reimplement.
2046
7eed1a8e
TT
20472020-02-22 Tom Tromey <tom@tromey.com>
2048
2049 * tui/tui-winsource.h (struct tui_source_window_iterator)
2050 <inner_iterator>: New etytypedef.
2051 <tui_source_window_iterator>: Take "end" parameter.
2052 <tui_source_window_iterator>: Take iterator.
2053 <operator*, advance>: Update.
2054 <m_iter>: Change type.
2055 <m_end>: New field.
2056 (struct tui_source_windows) <begin, end>: Update.
2057 * tui/tui-layout.c (tui_windows): New global.
2058 (tui_apply_current_layout): Clear tui_windows.
2059 (tui_layout_window::apply): Update tui_windows.
2060 * tui/tui-data.h (tui_windows): Declare.
2061 (all_tui_windows): Now inline function.
2062 (class tui_window_iterator, struct all_tui_windows): Remove.
2063
7c043ba6
TT
20642020-02-22 Tom Tromey <tom@tromey.com>
2065
2066 PR tui/17850:
2067 * tui/tui-win.c (tui_gen_win_info::max_width): New method.
2068 * tui/tui-layout.h (class tui_layout_base) <get_sizes>: Add
2069 "height" argument.
2070 (class tui_layout_window) <get_sizes>: Likewise.
2071 (class tui_layout_split) <tui_layout_split>: Add "vertical"
2072 argument.
2073 <get_sizes>: Add "height" argument.
2074 <m_vertical>: New field.
2075 * tui/tui-layout.c (tui_layout_split::clone): Update.
2076 (tui_layout_split::get_sizes): Add "height" argument.
2077 (tui_layout_split::adjust_size, tui_layout_split::apply): Update.
2078 (tui_new_layout_command): Parse "-horizontal".
2079 (_initialize_tui_layout): Update help string.
2080 (tui_layout_split::specification): Add "-horizontal" when needed.
2081 * tui/tui-layout.c (tui_layout_window::get_sizes): Add "height"
2082 argument.
2083 * tui/tui-data.h (struct tui_gen_win_info) <max_width, min_width>:
2084 New methods.
2085
6bc56648
TT
20862020-02-22 Tom Tromey <tom@tromey.com>
2087
2088 * tui/tui-layout.h (enum tui_adjust_result): New.
2089 (class tui_layout_base) <adjust_size>: Return tui_adjust_result.
2090 (class tui_layout_window) <adjust_size>: Return
2091 tui_adjust_result. Rewrite.
2092 (class tui_layout_split) <adjust_size>: Return tui_adjust_result.
2093 * tui/tui-layout.c (tui_layout_split::adjust_size): Update.
2094
c22fef7e
TT
20952020-02-22 Tom Tromey <tom@tromey.com>
2096
2097 * tui/tui-layout.h (class tui_layout_split) <add_split>: Change
2098 parameter and return types.
2099 (class tui_layout_base) <specification>: Add "depth".
2100 (class tui_layout_window) <specification>: Add "depth".
2101 (class tui_layout_split) <specification>: Add "depth".
2102 * tui/tui-layout.c (tui_layout_split::add_split): Change parameter
2103 and return types.
2104 (tui_new_layout_command): Parse sub-layouts.
2105 (_initialize_tui_layout): Update help string.
2106 (tui_layout_window::specification): Add "depth".
2107 (add_layout_command): Update.
2108
ee325b61
TT
21092020-02-22 Tom Tromey <tom@tromey.com>
2110
2111 * NEWS: Add "tui new-layout" item.
2112 * tui/tui-layout.c (add_layout_command): Return cmd_list_element.
2113 Add new-layout command to help text.
2114 (validate_window_name): New function.
2115 (tui_new_layout_command): New function.
2116 (_initialize_tui_layout): Register "new-layout".
2117 (tui_layout_window::specification): New method.
2118 (tui_layout_window::specification): New method.
2119 * tui/tui-layout.h (class tui_layout_base) <specification>: New
2120 method.
2121 (class tui_layout_window) <specification>: New method.
2122 (class tui_layout_split) <specification>: New method.
2123
416eb92d
TT
21242020-02-22 Tom Tromey <tom@tromey.com>
2125
2126 * tui/tui.c (tui_enable): Call tui_set_initial_layout.
2127 * tui/tui-win.c (window_name_completer): Update comment.
2128 * tui/tui-layout.h (class tui_layout_base) <replace_window>:
2129 Declare method.
2130 (class tui_layout_window) <replace_window>: Likewise.
2131 (class tui_layout_split) <replace_window>: Likewise.
2132 (tui_set_layout): Don't declare.
2133 (tui_set_initial_layout): Declare function.
2134 * tui/tui-layout.c (layouts, applied_skeleton, src_regs_layout)
2135 (asm_regs_layout): New globals.
2136 (tui_current_layout, show_layout): Remove.
2137 (tui_set_layout, tui_add_win_to_layout): Rewrite.
2138 (find_layout, tui_apply_layout): New function.
2139 (layout_completer): Remove.
2140 (tui_next_layout): Reimplement.
2141 (tui_next_layout_command): New function.
2142 (tui_set_initial_layout, tui_prev_layout_command): New functions.
2143 (tui_regs_layout): Reimplement.
2144 (tui_regs_layout_command): New function.
2145 (extract_display_start_addr): Rewrite.
2146 (next_layout, prev_layout): Remove.
2147 (tui_layout_window::replace_window): New method.
2148 (tui_layout_split::replace_window): New method.
2149 (destroy_layout): New function.
2150 (layout_list): New global.
2151 (add_layout_command): New function.
2152 (initialize_layouts): Update.
2153 (tui_layout_command): New function.
2154 (_initialize_tui_layout): Install "layout" commands.
2155 * tui/tui-data.h (enum tui_layout_type): Remove.
2156 (tui_current_layout): Don't declare.
2157
0dbc2fc7
TT
21582020-02-22 Tom Tromey <tom@tromey.com>
2159
2160 * tui/tui-regs.c (tui_reg_layout): Remove.
2161 (tui_reg_command): Use tui_regs_layout.
2162 * tui/tui-layout.h (tui_reg_command): Declare.
2163 * tui/tui-layout.c (tui_reg_command): New function.
2164
5afe342e
TT
21652020-02-22 Tom Tromey <tom@tromey.com>
2166
2167 * tui/tui.c (tui_rl_delete_other_windows): Call
2168 tui_remove_some_windows.
2169 * tui/tui-layout.h (class tui_layout_base) <remove_windows>:
2170 Declare method.
2171 (class tui_layout_window) <remove_windows>: New method.
2172 (class tui_layout_split) <remove_windows>: Declare.
2173 (tui_remove_some_windows): Declare.
2174 * tui/tui-layout.c (tui_remove_some_windows): New function.
2175 (tui_layout_split::remove_windows): New method.
2176
427326a8
TT
21772020-02-22 Tom Tromey <tom@tromey.com>
2178
2179 * tui/tui.c (tui_rl_change_windows): Call tui_next_layout.
2180 * tui/tui-layout.h (tui_next_layout): Declare.
2181 * tui/tui-layout.c (tui_next_layout): New function.
2182
3fe12b6d
TT
21832020-02-22 Tom Tromey <tom@tromey.com>
2184
2185 * tui/tui-regs.c (tui_data_window::display_registers_from): Use
2186 correct coordinates.
2187
59b8b5d2
TT
21882020-02-22 Tom Tromey <tom@tromey.com>
2189
2190 * tui/tui-layout.h (tui_add_win_to_layout): Add comment.
2191 * tui/tui-layout.c (tui_add_win_to_layout): Add assert. Remove
2192 DATA_WIN case.
2193
2a3d458b
TT
21942020-02-22 Tom Tromey <tom@tromey.com>
2195
2196 * tui/tui-disasm.c (tui_get_low_disassembly_address): Use
2197 TUI_DISASM_WIN, not tui_win_list.
2198
3f0cbb04
TT
21992020-02-22 Tom Tromey <tom@tromey.com>
2200
2201 * valprint.c (generic_val_print_enum_1)
2202 (val_print_type_code_flags): Style member names.
2203 * rust-lang.c (val_print_struct, rust_print_enum)
2204 (rust_print_struct_def, rust_internal_print_type): Style member
2205 names.
2206 * p-valprint.c (pascal_object_print_value_fields): Style member
2207 names. Only call fprintf_symbol_filtered for static members.
2208 * m2-typeprint.c (m2_record_fields, m2_enum): Style member names.
2209 * f-valprint.c (f_val_print): Style member names.
2210 * f-typeprint.c (f_type_print_base): Style member names.
2211 * cp-valprint.c (cp_print_value_fields): Style member names. Only
2212 call fprintf_symbol_filtered for static members.
2213 (cp_print_class_member): Style member names.
2214 * c-typeprint.c (c_print_type_1, c_type_print_base_1): Style
2215 member names.
2216 * ada-valprint.c (ada_print_scalar): Style enum names.
2217 (ada_val_print_enum): Likewise.
2218 * ada-typeprint.c (print_enum_type): Style enum names.
2219
d4d947ae
TT
22202020-02-21 Tom Tromey <tom@tromey.com>
2221
2222 * psympriv.h (struct partial_symtab): Update comment.
2223
e94e944b
TT
22242020-02-21 Tom Tromey <tromey@adacore.com>
2225
2226 * mips-tdep.h (mips_pc_is_mips16, mips_pc_is_micromips): Parameter
2227 type is CORE_ADDR.
2228
1eb73179
TV
22292020-02-21 Tom de Vries <tdevries@suse.de>
2230
2231 PR gdb/25534
2232 * psymtab.c (partial_symtab::read_dependencies): Don't read dependency
2233 if dependencies[i]->user != NULL.
2234
4f180d53
AT
22352020-02-21 Ali Tamur <tamur@google.com>
2236
2237 * dwarf2/read.c (dwarf2_name): Add null check.
2238
22b6cd70
TT
22392020-02-20 Tom Tromey <tom@tromey.com>
2240
2241 * dwarf2/read.c (dwarf2_find_containing_comp_unit): Use ">", not
2242 ">=", in binary search.
2243 (dwarf2_find_containing_comp_unit): New overload.
2244 (run_test): New self-test.
2245 (_initialize_dwarf2_read): Register new test.
2246
bd0cf5a6
NC
22472020-02-20 Nelson Chu <nelson.chu@sifive.com>
2248
2249 * riscv-tdep.c: Updated since the DECLARE_CSR is changed.
2250 * riscv-tdep.h: Likewise.
2251 * features/riscv/rebuild-csr-xml.sh: Generate the 64bit-csr.xml without
2252 rv32-only CSR.
2253 * features/riscv/64bit-csr.xml: Regenerated.
2254
3f702acd
SDJ
22552020-02-20 Sergio Durigan Junior <sergiodj@redhat.com>
2256 Tom Tromey <tom@tromey.com>
2257
2258 * utils.c (fputs_maybe_filtered): Call 'stream->puts' instead
2259 of 'fputc_unfiltered'.
2260 (putchar_unfiltered): Call 'fputc_unfiltered'.
2261 (fputc_unfiltered): Call 'fputs_unfiltered'.
2262
d13c7322
AB
22632020-02-20 Andrew Burgess <andrew.burgess@embecosm.com>
2264
2265 * config.in: Regenerate.
2266 * configure: Regenerate.
2267 * configure.ac: Add --with-python-libdir option.
2268 * main.c: Use WITH_PYTHON_LIBDIR.
2269
869d8950
TT
22702020-02-19 Tom Tromey <tom@tromey.com>
2271
2272 * symtab.c (general_symbol_info::compute_and_set_names): Use
2273 obstack_strndup. Simplify call to symbol_set_demangled_name.
2274
298e9637
SM
22752020-02-19 Simon Marchi <simon.marchi@efficios.com>
2276
2277 * dwarf2/read.c (allocate_signatured_type_table,
2278 allocate_dwo_unit_table, allocate_type_unit_groups_table,
2279 allocate_dwo_file_hash_table, allocate_dwp_loaded_cutus_table):
2280 Remove objfile parameter, update all callers.
2281
08410482
DE
22822020-02-19 Doug Evans <dje@google.com>
2283
2284 PR rust/25535
2285 * rust-lang.c (rust_print_enum): Apply embedded_offset to
2286 rust_enum_variant calculation.
2287
dfdeeca1
TT
22882020-02-19 Tom Tromey <tromey@adacore.com>
2289
2290 * mips-tdep.h (mips_pc_is_mips): Parameter type is CORE_ADDR.
2291
2ef5453b
TT
22922020-02-19 Tom Tromey <tromey@adacore.com>
2293
2294 * ada-lang.c (cache_symbol): Use obstack_strdup.
2295
9f1528a1
AB
22962020-02-19 Andrew Burgess <andrew.burgess@embecosm.com>
2297
2298 * configure: Regenerate.
2299
d3c22fa8
TT
23002020-02-19 Tom Tromey <tromey@adacore.com>
2301
2302 * python/python.c (do_start_initialization): Use XNEWVEC. Remove
2303 NULL check.
2304
bf84f706
MR
23052020-02-19 Maciej W. Rozycki <macro@wdc.com>
2306
2307 * NEWS: Mention RISC-V GNU/Linux GDBserver support.
2308
d1c9b20f
AB
23092020-02-19 Andrew Burgess <andrew.burgess@embecosm.com>
2310
2311 * arch/riscv.c (struct riscv_gdbarch_features_hasher): Only define
2312 if GDBSERVER is not defined.
2313 (riscv_tdesc_cache): Likewise, also store const target_desc.
2314 (STATIC_IN_GDB): Define.
2315 (riscv_create_target_description): Update declaration with
2316 STATIC_IN_GDB.
2317 (riscv_lookup_target_description): New function, only define if
2318 GDBSERVER is not defined.
2319 * arch/riscv.h (riscv_create_target_description): Declare only
2320 when GDBSERVER is defined.
2321 (riscv_lookup_target_description): New declaration when GDBSERVER
2322 is not defined.
2323 * nat/riscv-linux-tdesc.c (riscv_linux_read_description): Rename to...
2324 (riscv_linux_read_features): ...this, and return
2325 riscv_gdbarch_features instead of target_desc.
2326 * nat/riscv-linux-tdesc.h: Include 'arch/riscv.h'.
2327 (riscv_linux_read_description): Rename to...
2328 (riscv_linux_read_features): ...this.
2329 * riscv-linux-nat.c (riscv_linux_nat_target::read_description):
2330 Update to use riscv_gdbarch_features and
2331 riscv_lookup_target_description.
2332 * riscv-tdep.c (riscv_find_default_target_description): Use
2333 riscv_lookup_target_description instead of
2334 riscv_create_target_description.
2335
373d7ac0
SM
23362020-02-18 Simon Marchi <simon.marchi@efficios.com>
2337
2338 * valprint.c (generic_val_print_enum_1): When printing a flag
2339 enum with value 0 and there is no enumerator with value 0, print
2340 just "0" instead of "(unknown: 0x0)".
2341
b29a2df0
SM
23422020-02-18 Simon Marchi <simon.marchi@efficios.com>
2343
2344 * valprint.c (generic_val_print_enum_1): Print unknown part of
2345 flag enum in hex.
2346
6740f0cc
SM
23472020-02-18 Simon Marchi <simon.marchi@efficios.com>
2348
2349 * dwarf2/read.c (update_enumeration_type_from_children): Allow
2350 flag enums to contain duplicate enumerators.
2351 * valprint.c (generic_val_print_enum_1): Update comment.
2352
edd45eb0
SM
23532020-02-18 Simon Marchi <simon.marchi@efficios.com>
2354
2355 * dwarf2/read.c: Include "count-one-bits.h".
2356 (update_enumeration_type_from_children): If an enumerator has
2357 multiple bits set, don't treat the enumeration as a "flag enum".
2358 * valprint.c (generic_val_print_enum_1): Assert that enumerators
2359 of flag enums have 0 or 1 bit set.
2360
6d0cf446
BE
23612020-02-18 Bernd Edlinger <bernd.edlinger@hotmail.de>
2362
2363 * aarch64-tdep.c (aarch64_displaced_step_copy_insn): Use an explicit
2364 conversion.
2365 * amd64-tdep.c (amd64_displaced_step_copy_insn): Likewise.
2366 * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Likewise.
2367 * i386-tdep.c (i386_displaced_step_copy_insn): Likewise.
2368 * rs6000-tdep.c (ppc_displaced_step_copy_insn): Likewise.
2369 * s390-tdep.c (s390_displaced_step_copy_insn): Likewise.
2370
7001c1b7
SM
23712020-02-18 Simon Marchi <simon.marchi@efficios.com>
2372
2373 * MAINTAINERS: Change palmer@sifive.com to palmer@dabbelt.com.
2374
fdb61c6c
SM
23752020-02-14 Simon Marchi <simon.marchi@efficios.com>
2376
2377 * aarch64-tdep.c (aarch64_displaced_step_copy_insn): Use
2378 displaced_step_closure_up.
2379 * aarch64-tdep.h (aarch64_displaced_step_copy_insn): Likewise.
2380 (struct displaced_step_closure_up):
2381 * amd64-tdep.c (amd64_displaced_step_copy_insn): Likewise.
2382 * amd64-tdep.h (amd64_displaced_step_copy_insn): Likewise.
2383 * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn):
2384 Likewise.
2385 * gdbarch.sh (displaced_step_copy_insn): Likewise.
2386 * gdbarch.c, gdbarch.h: Re-generate.
2387 * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Use
2388 displaced_step_closure_up.
2389 * i386-tdep.c (i386_displaced_step_copy_insn): Likewise.
2390 * i386-tdep.h (i386_displaced_step_copy_insn): Likewise.
2391 * infrun.h (displaced_step_closure_up): New type alias.
2392 (struct displaced_step_inferior_state) <step_closure>: Change
2393 type to displaced_step_closure_up.
2394 * rs6000-tdep.c (ppc_displaced_step_copy_insn): Use
2395 displaced_step_closure_up.
2396 * s390-tdep.c (s390_displaced_step_copy_insn): Likewise.
2397
a4a38eb4
TT
23982020-02-14 Tom Tromey <tom@tromey.com>
2399
2400 * minidebug.c (gnu_debug_key): New global.
2401 (find_separate_debug_file_in_section): Use it.
2402
e8217e61
SM
24032020-02-14 Simon Marchi <simon.marchi@efficios.com>
2404
2405 * gdbarch.sh (displaced_step_copy_insn): Change return type to an
2406 std::unique_ptr.
2407 * gdbarch.c: Re-generate.
2408 * gdbarch.h: Re-generate.
2409 * infrun.c (displaced_step_prepare_throw): Adjust to std::unique_ptr
2410 change.
2411 * aarch64-tdep.c (aarch64_displaced_step_copy_insn): Change return
2412 type to std::unique_ptr.
2413 * aarch64-tdep.h (aarch64_displaced_step_copy_insn): Likewise.
2414 * amd64-tdep.c (amd64_displaced_step_copy_insn): Likewise.
2415 * amd64-tdep.h (amd64_displaced_step_copy_insn): Likewise.
2416 * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Likewise.
2417 * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Likewise.
2418 * i386-tdep.c (i386_displaced_step_copy_insn): Likewise.
2419 * i386-tdep.h (i386_displaced_step_copy_insn): Likewise.
2420 * rs6000-tdep.c (ppc_displaced_step_copy_insn): Likewise.
2421 * s390-tdep.c (s390_displaced_step_copy_insn): Likewise.
2422
d8d83535
SM
24232020-02-14 Simon Marchi <simon.marchi@efficios.com>
2424
2425 * infrun.c (get_displaced_step_closure_by_addr): Adjust to
2426 std::unique_ptr.
2427 (displaced_step_clear): Rename to...
2428 (displaced_step_reset): ... this. Just call displaced->reset ().
2429 (displaced_step_clear_cleanup): Rename to...
2430 (displaced_step_reset_cleanup): ... this.
2431 (displaced_step_prepare_throw): Adjust to std::unique_ptr.
2432 (displaced_step_fixup): Likewise.
2433 (resume_1): Likewise.
2434 (handle_inferior_event): Restore child's memory before calling
2435 displaced_step_fixup on the parent.
2436 * infrun.h (displaced_step_inferior_state) <reset>: Adjust
2437 to std::unique_ptr.
2438 <step_closure>: Change type to std::unique_ptr.
2439
5f661e03
SM
24402020-02-14 Simon Marchi <simon.marchi@efficios.com>
2441
2442 * arm-tdep.c: Include count-one-bits.h.
2443 (cleanup_block_store_pc): Use count_one_bits.
2444 (cleanup_block_load_pc): Use count_one_bits.
2445 (arm_copy_block_xfer): Use count_one_bits.
2446 (thumb2_copy_block_xfer): Use count_one_bits.
2447 (thumb_copy_pop_pc_16bit): Use count_one_bits.
2448 * arch/arm-get-next-pcs.c: Include count-one-bits.h.
2449 (thumb_get_next_pcs_raw): Use count_one_bits.
2450 (arm_get_next_pcs_raw): Use count_one_bits_l.
2451 * arch/arm.c (bitcount): Remove.
2452 * arch/arm.h (bitcount): Remove.
2453
8084e579
TT
24542020-02-14 Tom Tromey <tromey@adacore.com>
2455
2456 * dwarf2/frame-tailcall.c (dwarf2_tailcall_sniffer_first):
2457 Update.
2458 * dwarf2/loc.h (call_site_find_chain): Return unique_xmalloc_ptr.
2459 * dwarf2/loc.c (call_site_find_chain_1): Return
2460 unique_xmalloc_ptr.
2461 (call_site_find_chain): Likewise.
2462
258bf0ee
RB
24632020-02-14 Richard Biener <rguenther@suse.de>
2464
2465 * dwarf2/read.c (lnp_state_machine::handle_special_opcode): Apply CSE
2466 on expression with division operators.
2467
f98a8458
AKS
24682020-02-13 Alok Kumar Sharma <AlokKumar.Sharma@amd.com>
2469
2470 * MAINTAINERS (Write After Approval): Adding myself.
2471
d1437c0e
TT
24722020-02-12 Tom Tromey <tom@tromey.com>
2473
2474 * event-loop.c (event_data, gdb_event, event_handler_func):
2475 Remove.
2476
3d4560f7
TT
24772020-02-12 Tom Tromey <tom@tromey.com>
2478
2479 * dwarf2/frame.c (dwarf2_frame_bfd_data): New global.
2480 (dwarf2_frame_objfile_data): Add comment.
2481 (find_comp_unit, set_comp_unit): New functions.
2482 (dwarf2_frame_find_fde): Use find_comp_unit.
2483 (dwarf2_build_frame_info): Use set_comp_unit.
2484
21982304
TT
24852020-02-12 Tom Tromey <tom@tromey.com>
2486
2487 * dwarf2/frame.c (struct comp_unit) <objfile>: Remove.
2488 (comp_unit): Don't initialize objfile.
2489 (execute_cfa_program): Add text_offset parameter.
2490 (execute_cfa_program_test, dwarf2_fetch_cfa_info)
2491 (dwarf2_frame_cache): Update.
2492 (dwarf2_build_frame_info): Don't set "objfile" member.
2493
4debb237
TT
24942020-02-12 Tom Tromey <tom@tromey.com>
2495
2496 * dwarf2/frame.c (decode_frame_entry_1): Add gdbarch parameter.
2497 (decode_frame_entry): Likewise.
2498 (dwarf2_build_frame_info): Update.
2499
0d404d44
TT
25002020-02-12 Tom Tromey <tom@tromey.com>
2501
2502 * dwarf2/frame.c (struct comp_unit) <obstack>: New member.
2503 (decode_frame_entry_1): Use the comp_unit obstack.
2504
a7a3ae5c
TT
25052020-02-12 Tom Tromey <tom@tromey.com>
2506
2507 * dwarf2/frame.c (struct comp_unit): Add initializers and
2508 constructor.
2509 (dwarf2_frame_objfile_data): Store a comp_unit.
2510 (dwarf2_frame_find_fde): Update.
2511 (dwarf2_build_frame_info): Use "new".
2512
a9d65418
TT
25132020-02-12 Tom Tromey <tom@tromey.com>
2514
2515 * dwarf2/frame.c (struct dwarf2_fde_table): Remove.
2516 (dwarf2_fde_table): Typedef for std::vector.
2517 (dwarf2_frame_objfile_data): Remove the deleter. Now static.
2518 (dwarf2_frame_find_fde, add_fde, decode_frame_entry_1)
2519 (decode_frame_entry): Update.
2520 (dwarf2_build_frame_info): Use "new".
2521
7559c217
CB
25222020-02-12 Christian Biesinger <cbiesinger@google.com>
2523
2524 * arm-tdep.c (arm_gdbarch_init): Update.
2525 * arm-tdep.h (struct gdbarch_tdep) <have_fpa_registers,
2526 have_wmmx_registers, have_vfp_pseudos, have_neon_pseudos,
2527 have_neon, is_m>: Change to bool.
2528
aeefc73c
CB
25292020-02-12 Christian Biesinger <cbiesinger@google.com>
2530
2531 * arm-tdep.c (arm_dump_tdep): Print more fields of tdep.
2532
d27b8e5f
TT
25332020-02-12 Tom Tromey <tom@tromey.com>
2534
2535 * dwarf2/loc.c (struct dwarf_expr_baton): Remove.
2536
cd5900f3
HD
25372020-02-12 Hannes Domani <ssbssa@yahoo.de>
2538
2539 * windows-tdep.c (struct windows_gdbarch_data): Add tib_ptr_type.
2540 (windows_get_tlb_type): Use windows_gdbarch_data->tib_ptr_type.
2541
f056b22b
TT
25422020-02-11 Tom Tromey <tom@tromey.com>
2543
2544 * psymtab.h: Update comment.
2545
f92ff6b5
TT
25462020-02-11 Tom Tromey <tom@tromey.com>
2547
2548 * gdb_obstack.h (struct auto_obstack): Use
2549 DISABLE_COPY_AND_ASSIGN.
2550
3fd6912b
TT
25512020-02-11 Tom Tromey <tom@tromey.com>
2552
2553 * dwarf2/frame.h (struct objfile): Don't forward declare.
2554
69ed9b74
CB
25552020-02-11 Christian Biesinger <cbiesinger@google.com>
2556
2557 * cris-tdep.c (cris_supply_gregset): Change signature to match
2558 what struct regset expects.
2559 (cris_regset): New struct.
2560 (fetch_core_registers): Remove.
2561 (cris_iterate_over_regset_sections): New function.
2562 (_initialize_cris_tdep): Don't call deprecated_add_core_fns.
2563 (cris_gdbarch_init): Call set_gdbarch_iterate_over_regset_sections.
2564
bda874f6
CB
25652020-02-11 Christian Biesinger <cbiesinger@google.com>
2566
2567 * arch/arm.h (enum gdb_regnum): Add comment for the FP0..7
2568 registers.
2569
754e1564
CB
25702020-02-11 Christian Biesinger <cbiesinger@google.com>
2571
2572 * arm-tdep.c (arm_dump_tdep): Add \n in fprintf.
2573
8ddd8e0e
SM
25742020-02-11 Simon Marchi <simon.marchi@efficios.com>
2575
2576 * configure: Re-generate.
2577
898e7f60
SM
25782020-02-11 Simon Marchi <simon.marchi@efficios.com>
2579
2580 * configure: Re-generate.
2581
58df732b
SM
25822020-02-11 Simon Marchi <simon.marchi@efficios.com>
2583
2584 * acinclude: Update warning.m4 path.
2585 * warning.m4: Move to gdbsupport.
2586
da5bd37e
TT
25872020-02-11 Tom Tromey <tromey@adacore.com>
2588
2589 * remote.c (remote_console_output): Update.
2590 * printcmd.c (printf_command): Update.
2591 * event-loop.c (gdb_wait_for_event): Update.
2592 * linux-nat.c (sigchld_handler): Update.
2593 * remote-sim.c (gdb_os_write_stdout): Update.
2594 (gdb_os_flush_stdout): Update.
2595 (gdb_os_flush_stderr): Update.
2596 (gdb_os_write_stderr): Update.
2597 * exceptions.c (print_exception): Update.
2598 * remote-fileio.c (remote_fileio_func_read): Update.
2599 (remote_fileio_func_write): Update.
2600 * tui/tui.c (tui_enable): Update.
2601 * tui/tui-interp.c (tui_interp::init): Update.
2602 * utils.c (init_page_info): Update.
2603 (putchar_unfiltered, fputc_unfiltered): Update.
2604 (gdb_flush): Update.
2605 (emit_style_escape): Update.
2606 (flush_wrap_buffer, fputs_maybe_filtered): Update.
2607 * ui-file.c (ui_file_isatty, ui_file_read, ui_file_write)
2608 (ui_file_write_async_safe, ui_file_flush, ui_file_puts): Remove.
2609 (stderr_file::write): Update.
2610 (stderr_file::puts): Update.
2611 * ui-file.h (ui_file_isatty, ui_file_write)
2612 (ui_file_write_async_safe, ui_file_read, ui_file_flush)
2613 (ui_file_puts): Don't declare.
2614
85f0dd3c
TV
26152020-02-10 Tom de Vries <tdevries@suse.de>
2616
2617 * dwarf2/read.c (process_psymtab_comp_unit_reader): Cast concat NULL
2618 sentinel to char *.
2619
2e927613
TV
26202020-02-09 Tom de Vries <tdevries@suse.de>
2621
2622 * dwarf2read.c (process_psymtab_comp_unit_reader): Append CU offset to
2623 filename if it matches "<artificial>".
2624
6bafc845
HD
26252020-02-09 Hannes Domani <ssbssa@yahoo.de>
2626
2627 * windows-tdep.c (struct enum_value_name): New struct.
2628 (create_enum): New function.
2629 (windows_get_siginfo_type): Create and use enum types.
2630
7928d571
HD
26312020-02-09 Hannes Domani <ssbssa@yahoo.de>
2632
2633 * NEWS: Mention $_siginfo support for Windows.
2634 * windows-nat.c (handle_exception): Set siginfo_er.
2635 (windows_nat_target::mourn_inferior): Reset siginfo_er.
2636 (windows_xfer_siginfo): New function.
2637 (windows_nat_target::xfer_partial): Call windows_xfer_siginfo.
2638 * windows-tdep.c (struct windows_gdbarch_data): New struct.
2639 (init_windows_gdbarch_data): New function.
2640 (get_windows_gdbarch_data): New function.
2641 (windows_get_siginfo_type): New function.
2642 (windows_init_abi): Register windows_get_siginfo_type.
2643 (_initialize_windows_tdep): Register init_windows_gdbarch_data.
2644
6751ebae
TT
26452020-02-08 Tom Tromey <tom@tromey.com>
2646
2647 * dwarf2/read.c (class cutu_reader) <cutu_reader,
2648 init_tu_and_read_dwo_dies>: Remove "keep" parameter.
2649 <keep>: Declare method.
2650 <m_keep>: Remove member.
2651 <~cutu_reader>: Remove.
2652 (cutu_reader::init_tu_and_read_dwo_dies): Update.
2653 (cutu_reader::cutu_reader): Update.
2654 (cutu_reader::keep): Rename from ~cutu_reader.
2655 (process_psymtab_comp_unit, build_type_psymtabs_1)
2656 (process_skeletonless_type_unit, load_partial_comp_unit)
2657 (load_full_comp_unit, dwarf2_read_addr_index)
2658 (read_signatured_type): Update.
2659
135f5437
TT
26602020-02-08 Tom Tromey <tom@tromey.com>
2661
2662 * dwarf2/read.c (process_psymtab_comp_unit_reader): Remove
2663 "want_partial_unit" parameter.
2664 (process_psymtab_comp_unit): Change want_partial_unit to bool.
2665 Inline check for DW_TAG_partial_unit.
2666 (dwarf2_build_psymtabs_hard, scan_partial_symbols): Update.
2667
9f66ff1c
TT
26682020-02-08 Tom Tromey <tom@tromey.com>
2669
2670 * dwarf2/read.c (read_n_bytes, read_direct_string): Move to
2671 read.c.
2672 * dwarf2/leb.h (read_n_bytes, read_direct_string): Move from
2673 read.c.
2674
c8a7a66f
TT
26752020-02-08 Tom Tromey <tom@tromey.com>
2676
2677 * dwarf2/read.c (read_address): Move to comp-unit.c.
2678 (dwarf2_rnglists_process, dwarf2_ranges_process)
2679 (read_attribute_value, dwarf_decode_lines_1)
2680 (var_decode_location, decode_locdesc): Update.
2681 * dwarf2/comp-unit.c (comp_unit_head::read_address): Move from
2682 read.c. Remove "cu" parameter.
2683 * dwarf2/comp-unit.h (struct comp_unit_head) <read_address>: New
2684 method.
2685
8266302d
TT
26862020-02-08 Tom Tromey <tom@tromey.com>
2687
2688 * dwarf2/read.c (read_attribute_value, read_indirect_string)
2689 (read_indirect_line_string): Update.
2690 * dwarf2/comp-unit.c (read_offset): Remove.
2691 (read_comp_unit_head): Update.
2692 * dwarf2/comp-unit.h (struct comp_unit_head) <read_offset>: New
2693 method.
2694 (read_offset): Don't declare.
2695
4057dfde
TT
26962020-02-08 Tom Tromey <tom@tromey.com>
2697
2698 * Makefile.in (COMMON_SFILES): Add dwarf2/comp-unit.c.
2699 * dwarf2/read.c (struct comp_unit_head): Move to
2700 dwarf2/comp-unit.h.
2701 (enum class rcuh_kind): Move to comp-unit.h.
2702 (get_cu_length, offset_in_cu_p): Now methods on comp_unit_head.
2703 (read_comp_unit_head, error_check_comp_unit_head)
2704 (read_and_check_comp_unit_head): Move to comp-unit.c.
2705 (read_offset, dwarf_unit_type_name): Likewise.
2706 (create_debug_type_hash_table, read_cutu_die_from_dwo)
2707 (cutu_reader::cutu_reader, read_call_site_scope)
2708 (find_partial_die, follow_die_offset): Update.
2709 * dwarf2/comp-unit.h: New file, from dwarf2read.c.
2710
24aa364d
TT
27112020-02-08 Tom Tromey <tom@tromey.com>
2712
2713 * dwarf2/read.c (read_offset_1): Move to leb.c.
2714 (read_abbrev_offset, read_offset, dwarf_decode_line_header)
2715 (dwarf_decode_macro_bytes): Update.
2716 * dwarf2/leb.c (read_offset): Rename; move from read.c.
2717 * dwarf2/leb.h (read_offset): Declare.
2718
2c7d5afc
TT
27192020-02-08 Tom Tromey <tom@tromey.com>
2720
2721 * dwarf2/read.c (dwarf2_section_size): Remove.
2722 (error_check_comp_unit_head, dwarf2_symbol_mark_computed):
2723 Update.
2724 * dwarf2/section.h (struct dwarf2_section_info) <get_size>: New method.
2725
4075cb26
TT
27262020-02-08 Tom Tromey <tom@tromey.com>
2727
2728 * dwarf2/read.c (read_initial_length): Move to leb.c.
2729 * dwarf2/leb.h (read_initial_length): Declare.
2730 * dwarf2/leb.c (read_initial_length): Move from read.c. Add
2731 handle_nonstd parameter.
2732 * dwarf2/frame.c (read_initial_length): Remove.
2733 (decode_frame_entry_1): Update.
2734
09ba997f
TT
27352020-02-08 Tom Tromey <tom@tromey.com>
2736
2737 * dwarf2/loc.c (dwarf2_find_location_expression)
2738 (dwarf_evaluate_loc_desc::get_tls_address)
2739 (dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value)
2740 (rw_pieced_value, dwarf2_evaluate_loc_desc_full)
2741 (dwarf2_locexpr_baton_eval, dwarf2_evaluate_property)
2742 (dwarf2_compile_property_to_c)
2743 (dwarf2_loc_desc_get_symbol_read_needs)
2744 (dwarf2_compile_expr_to_ax, locexpr_describe_location)
2745 (locexpr_tracepoint_var_ref, locexpr_generate_c_location)
2746 (loclist_describe_location, loclist_tracepoint_var_ref)
2747 (loclist_generate_c_location): Update.
2748 * compile/compile-loc2c.c (do_compile_dwarf_expr_to_c): Update.
2749 * dwarf2/loc.h (dwarf2_per_cu_objfile, dwarf2_per_cu_addr_size)
2750 (dwarf2_per_cu_ref_addr_size, dwarf2_per_cu_offset_size)
2751 (dwarf2_per_cu_text_offset, dwarf2_version): Don't declare.
2752 * dwarf2/read.c (dwarf2_per_cu_data::objfile)
2753 (dwarf2_per_cu_data::addr_size)
2754 (dwarf2_per_cu_data::ref_addr_size)
2755 (dwarf2_per_cu_data::text_offset)
2756 (dwarf2_per_cu_data::addr_type): Now methods.
2757 (per_cu_header_read_in): Make per_cu "const".
2758 (dwarf2_version): Remove.
2759 (dwarf2_per_cu_data::int_type): Now a method.
2760 (dwarf2_per_cu_data::_addr_sized_int_type): Likewise.
2761 (set_die_type, read_array_type, read_subrange_index_type)
2762 (read_tag_string_type, read_subrange_type): Update.
2763 * dwarf2/read.h (struct dwarf2_per_cu_data) <addr_size,
2764 offset_size, ref_addr_size, text_offset, addr_type, version,
2765 objfile, int_type, addr_sized_int_type>: Declare methods.
2766
96c738c0
TT
27672020-02-08 Tom Tromey <tom@tromey.com>
2768
2769 * dwarf2/read.h (struct dwarf2_per_cu_data) <imported_symtabs>:
2770 Move earlier.
2771
8fdd972c
TT
27722020-02-08 Tom Tromey <tom@tromey.com>
2773
2774 * dwarf2/read.h (dwarf_line_debug): Declare.
2775 * Makefile.in (COMMON_SFILES): Add dwarf2/line-header.c.
2776 * dwarf2/read.c: Move line_header code to new files.
2777 (dwarf_line_debug): No longer static.
2778 * dwarf2/line-header.c: New file.
2779 * dwarf2/line-header.h: New file.
2780
03075812
TT
27812020-02-08 Tom Tromey <tom@tromey.com>
2782
2783 * dwarf2/read.c (struct line_header) <file_full_name,
2784 file_file_name>: Return unique_xmalloc_ptr.
2785 (line_header::file_file_name): Update.
2786 (line_header::file_full_name): Update.
2787 (dw2_get_file_names_reader): Update.
2788 (macro_start_file): Update.
2789
bb822404
TT
27902020-02-08 Tom Tromey <tom@tromey.com>
2791
2792 * dwarf2/read.c (struct line_header) <file_full_name,
2793 file_file_name>: Declare methods.
2794 (dw2_get_file_names_reader): Update.
2795 (file_file_name): Now a method.
2796 (file_full_name): Likewise.
2797 (macro_start_file): Update.
2798
009b64fc
TT
27992020-02-08 Tom Tromey <tom@tromey.com>
2800
2801 * dwarf2/read.c (dwarf_always_disassemble)
2802 (show_dwarf_always_disassemble): Move to loc.c.
2803 (_initialize_dwarf2_read): Move "always-disassemble" registration
2804 to loc.c.
2805 * dwarf2/read.h (dwarf_always_disassemble): Don't declare.
2806 * dwarf2/loc.c (dwarf_always_disassemble): Move from read.c. Now
2807 static.
2808 (show_dwarf_always_disassemble): Move from read.c.
2809 (_initialize_dwarf2loc): Move always-disassemble from read.c.
2810
5895093f
TT
28112020-02-08 Tom Tromey <tom@tromey.com>
2812
2813 * dwarf2/read.c (~dwarf2_per_objfile): Update.
2814 (create_quick_file_names_table): Return htab_up.
2815 (dw2_get_file_names_reader, dw2_forget_cached_source_info):
2816 Update.
2817 * dwarf2/read.h (struct dwarf2_per_objfile)
2818 <quick_file_names_table>: Now htab_up.
2819
b3b32279
TT
28202020-02-08 Tom Tromey <tom@tromey.com>
2821
2822 * dwarf2/abbrev.c (abbrev_table::read): Simplify.
2823
1d33d811
TT
28242020-02-08 Tom Tromey <tom@tromey.com>
2825
2826 * dwarf2/abbrev.c (abbrev_table): Move constructor from header.
2827 Rewrite.
2828 (abbrev_table::add_abbrev, abbrev_table::lookup_abbrev): Rewrite.
2829 * dwarf2/abbrev.h (struct abbrev_info) <next>: Remove.
2830 (abbrev_table::abbrev_table): No longer inline.
2831 (ABBREV_HASH_SIZE): Remove.
2832 (abbrev_table::m_abbrevs): Now an htab_up.
2833
86de1d91
TT
28342020-02-08 Tom Tromey <tom@tromey.com>
2835
2836 * dwarf2/read.c (read_cutu_die_from_dwo): Update.
2837 (cutu_reader): Update.
2838 (build_type_psymtabs_1): Update.
2839 * dwarf2/abbrev.c (abbrev_table::read): Rename.
2840 (abbrev_table::alloc_abbrev): Update.
2841 * dwarf2/abbrev.h (abbrev_table_up): Move earlier.
2842 (abbrev_table::read): New static method, renamed from
2843 abbrev_table_read_table.
2844 (abbrev_table::alloc_abbrev)
2845 (abbrev_table::add_abbrev): Now private.
2846 (abbrev_table::abbrev_table): Now private.
2847 (abbrev_table::m_abbrev_obstack): Now private. Rename.
2848
0335378b
TT
28492020-02-08 Tom Tromey <tom@tromey.com>
2850
2851 * dwarf2/read.c (set_die_type, get_die_type_at_offset): Update.
2852 * dwarf2/read.h (struct dwarf2_per_objfile) <die_type_hash>: Now
2853 htab_up.
2854
48b490f2
TT
28552020-02-08 Tom Tromey <tom@tromey.com>
2856
2857 * dwarf2/read.c (struct dwp_file) <loaded_cus, loaded_tus>: Now
2858 htab_up.
2859 (lookup_dwo_unit_in_dwp): Update.
2860 (allocate_dwp_loaded_cutus_table): Return htab_up. Don't allocate
2861 on obstack.
2862
bc68fb19
TT
28632020-02-08 Tom Tromey <tom@tromey.com>
2864
2865 * dwarf2/read.c (allocate_dwo_file_hash_table): Don't allocate on
2866 obstack.
2867
d15acc42
TT
28682020-02-08 Tom Tromey <tom@tromey.com>
2869
2870 * dwarf2/read.c (~dwarf2_per_objfile): Don't delete
2871 line_header_hash.
2872 (handle_DW_AT_stmt_list): Update. Don't allocate on obstack.
2873 * dwarf2/read.h (struct dwarf2_per_objfile) <line_header_hash>:
2874 Change type to htab_up.
2875
eaa5fa8b
TT
28762020-02-08 Tom Tromey <tom@tromey.com>
2877
2878 * dwarf2/read.c (allocate_type_unit_groups_table): Return
2879 htab_up. Don't allocate on obstack.
2880 (get_type_unit_group, dwarf2_build_psymtabs_hard): Update.
2881 * dwarf2/read.h (struct dwarf2_per_objfile) <type_unit_groups>:
2882 Change type to htab_up.
2883
b0b6a987
TT
28842020-02-08 Tom Tromey <tom@tromey.com>
2885
2886 * dwarf2/read.h (struct dwarf2_per_objfile) <signatured_types>:
2887 Change type to htab_up.
2888 * dwarf2/read.c (create_signatured_type_table_from_index)
2889 (create_signatured_type_table_from_debug_names)
2890 (create_all_type_units, add_type_unit)
2891 (lookup_dwo_signatured_type, lookup_signatured_type)
2892 (process_skeletonless_type_unit): Update.
2893 (create_debug_type_hash_table, create_debug_types_hash_table):
2894 Change type of types_htab.
2895 (allocate_signatured_type_table, allocate_dwo_unit_table): Return
2896 htab_up. Don't allocate on obstack.
2897 (create_cus_hash_table): Change type of cus_htab parameter.
2898 (struct dwo_file) <cus, tus>: Now htab_up.
2899 (lookup_dwo_signatured_type, lookup_dwo_cutu)
2900 (process_dwo_file_for_skeletonless_type_units, lookup_dwo_cutu)
2901 (queue_and_load_all_dwo_tus): Update.
2902 * dwarf2/index-write.c (write_gdbindex): Update.
2903 (write_debug_names): Update.
2904
39856def
TT
29052020-02-08 Tom Tromey <tom@tromey.com>
2906
2907 * dwarf2/read.h (struct dwarf2_queue_item): Move from
2908 dwarf2/read.c. Remove "next" member. Add constructor ntad
2909 destructor.
2910 (struct dwarf2_per_objfile) <queue>: New member.
2911 * dwarf2/read.c (struct dwarf2_queue_item): Move to
2912 dwarf2/read.h.
2913 (dwarf2_queue, dwarf2_queue_tail): Remove.
2914 (class dwarf2_queue_guard): Add parameter to constructor. Use
2915 DISABLE_COPY_AND_ASSIGN.
2916 <m_per_objfile>: New member.
2917 <~dwarf2_queue_guard>: Rewrite.
2918 (dw2_do_instantiate_symtab, queue_comp_unit, process_queue):
2919 Update.
2920 (~dwarf2_queue_item): New.
2921
3e225074
TT
29222020-02-08 Tom Tromey <tom@tromey.com>
2923
2924 * dwarf2/read.c (struct die_info) <has_children>: New member.
2925 (dw2_get_file_names_reader): Remove has_children.
2926 (dw2_get_file_names): Update.
2927 (read_cutu_die_from_dwo): Remove has_children.
2928 (cutu_reader::init_tu_and_read_dwo_dies)
2929 (cutu_reader::cutu_reader): Update.
2930 (process_psymtab_comp_unit_reader, build_type_psymtabs_reader):
2931 Remove has_children.
2932 (build_type_psymtabs_1, process_skeletonless_type_unit)
2933 (load_partial_comp_unit, load_full_comp_unit): Update.
2934 (create_dwo_cu_reader): Remove has_children.
2935 (create_cus_hash_table, read_die_and_children): Update.
2936 (read_full_die_1,read_full_die): Remove has_children.
2937 (read_signatured_type): Update.
2938 (class cutu_reader) <has_children>: Remove.
2939
82ca8957
TT
29402020-02-08 Tom Tromey <tom@tromey.com>
2941
2942 * dwarf2/expr.c: Rename from dwarf2expr.c.
2943 * dwarf2/expr.h: Rename from dwarf2expr.h.
2944 * dwarf2/frame-tailcall.c: Rename from dwarf2-frame-tailcall.c.
2945 * dwarf2/frame-tailcall.h: Rename from dwarf2-frame-tailcall.h.
2946 * dwarf2/frame.c: Rename from dwarf2-frame.c.
2947 * dwarf2/frame.h: Rename from dwarf2-frame.h.
2948 * dwarf2/index-cache.c: Rename from dwarf-index-cache.c.
2949 * dwarf2/index-cache.h: Rename from dwarf-index-cache.h.
2950 * dwarf2/index-common.c: Rename from dwarf-index-common.c.
2951 * dwarf2/index-common.h: Rename from dwarf-index-common.h.
2952 * dwarf2/index-write.c: Rename from dwarf-index-write.c.
2953 * dwarf2/index-write.h: Rename from dwarf-index-write.h.
2954 * dwarf2/loc.c: Rename from dwarf2loc.c.
2955 * dwarf2/loc.h: Rename from dwarf2loc.h.
2956 * dwarf2/read.c: Rename from dwarf2read.c.
2957 * dwarf2/read.h: Rename from dwarf2read.h.
2958 * dwarf2/abbrev.c, aarch64-tdep.c, alpha-tdep.c,
2959 amd64-darwin-tdep.c, arc-tdep.c, arm-tdep.c, bfin-tdep.c,
2960 compile/compile-c-symbols.c, compile/compile-cplus-symbols.c,
2961 compile/compile-loc2c.c, cris-tdep.c, csky-tdep.c, findvar.c,
2962 gdbtypes.c, guile/scm-type.c, h8300-tdep.c, hppa-bsd-tdep.c,
2963 hppa-linux-tdep.c, i386-darwin-tdep.c, i386-linux-tdep.c,
2964 i386-tdep.c, iq2000-tdep.c, m32c-tdep.c, m68hc11-tdep.c,
2965 m68k-tdep.c, microblaze-tdep.c, mips-tdep.c, mn10300-tdep.c,
2966 msp430-tdep.c, nds32-tdep.c, nios2-tdep.c, or1k-tdep.c,
2967 riscv-tdep.c, rl78-tdep.c, rs6000-tdep.c, rx-tdep.c, s12z-tdep.c,
2968 s390-tdep.c, score-tdep.c, sh-tdep.c, sparc-linux-tdep.c,
2969 sparc-tdep.c, sparc64-linux-tdep.c, sparc64-tdep.c, tic6x-tdep.c,
2970 tilegx-tdep.c, v850-tdep.c, xstormy16-tdep.c, xtensa-tdep.c:
2971 Update.
2972 * Makefile.in (COMMON_SFILES): Update.
2973 (HFILES_NO_SRCDIR): Update.
2974
9e35d499
TT
29752020-02-08 Tom Tromey <tom@tromey.com>
2976
2977 * dwarf2read.c (struct die_reader_specs) <comp_dir>: Remove.
2978 (init_cu_die_reader, read_cutu_die_from_dwo): Update.
2979
1eba2311
TT
29802020-02-08 Tom Tromey <tom@tromey.com>
2981
2982 * dwarf2read.h (struct die_info): Don't declare.
2983
e41c2da2
TT
29842020-02-08 Tom Tromey <tom@tromey.com>
2985
2986 * dwarf2read.h (die_info_ptr): Remove typedef.
2987
4fc6c0d5
TT
29882020-02-08 Tom Tromey <tom@tromey.com>
2989
2990 * dwarf2read.c (read_call_site_scope)
2991 (handle_data_member_location, dwarf2_add_member_fn)
2992 (mark_common_block_symbol_computed, read_common_block)
2993 (attr_to_dynamic_prop, partial_die_info::read)
2994 (var_decode_location, dwarf2_fetch_die_loc_sect_off)
2995 (dwarf2_symbol_mark_computed, set_die_type): Update.
2996 * dwarf2/attribute.h (struct attribute) <form_is_block>: Declare
2997 method.
2998 (attr_form_is_block): Don't declare.
2999 * dwarf2/attribute.c (attribute::form_is_block): Now a method.
3000
cd6c91b4
TT
30012020-02-08 Tom Tromey <tom@tromey.com>
3002
3003 * dwarf2read.c (dwarf2_find_base_address, )
3004 (read_call_site_scope, rust_containing_type)
3005 (dwarf2_get_pc_bounds, dwarf2_record_block_ranges)
3006 (handle_data_member_location, dwarf2_add_member_fn)
3007 (get_alignment, read_structure_type, process_structure_scope)
3008 (mark_common_block_symbol_computed, read_common_block)
3009 (read_tag_string_type, attr_to_dynamic_prop, read_subrange_type)
3010 (partial_die_info::read, read_attribute_value, new_symbol)
3011 (lookup_die_type, dwarf2_get_ref_die_offset)
3012 (dwarf2_get_attr_constant_value, follow_die_ref_or_sig)
3013 (dwarf2_fetch_die_loc_sect_off, get_DW_AT_signature_type)
3014 (dwarf2_symbol_mark_computed): Update.
3015 * dwarf2/attribute.h (struct attribute) <value_as_address,
3016 form_is_section_offset, form_is_constant, form_is_ref>: Declare
3017 methods.
3018 (value_as_address, attr_form_is_section_offset)
3019 (attr_form_is_constant, attr_form_is_ref): Don't declare.
3020 * dwarf2/attribute.c (attribute::value_as_address)
3021 (attribute::form_is_section_offset, attribute::form_is_constant)
3022 (attribute::form_is_ref): Now methods.
3023
162dce55
TT
30242020-02-08 Tom Tromey <tom@tromey.com>
3025
3026 * dwarf2read.c (struct attribute, DW_STRING)
3027 (DW_STRING_IS_CANONICAL, DW_UNSND, DW_BLOCK, DW_SND, DW_ADDR)
3028 (DW_SIGNATURE, struct dwarf_block, attr_value_as_address)
3029 (attr_form_is_block, attr_form_is_section_offset)
3030 (attr_form_is_constant, attr_form_is_ref): Move.
3031 * dwarf2/attribute.h: New file.
3032 * dwarf2/attribute.c: New file, from dwarf2read.c.
3033 * Makefile.in (COMMON_SFILES): Add dwarf2/attribute.c.
3034
3054dd54
TT
30352020-02-08 Tom Tromey <tom@tromey.com>
3036
3037 * dwarf2read.c (abbrev_table_up, struct abbrev_info)
3038 (struct attr_abbrev, ABBREV_HASH_SIZE, struct abbrev_table):
3039 Move.
3040 (read_cutu_die_from_dwo, build_type_psymtabs_1): Update.
3041 (abbrev_table::alloc_abbrev, abbrev_table::add_abbrev)
3042 (abbrev_table::lookup_abbrev, abbrev_table_read_table): Move to
3043 abbrev.c.
3044 * dwarf2/abbrev.h: New file.
3045 * dwarf2/abbrev.c: New file, from dwarf2read.c.
3046 * Makefile.in (COMMON_SFILES): Add dwarf2/abbrev.c.
3047
96b79293
TT
30482020-02-08 Tom Tromey <tom@tromey.com>
3049
3050 * dwarf2read.c (dwarf2_section_buffer_overflow_complaint)
3051 (dwarf2_section_size, dwarf2_get_section_info)
3052 (create_signatured_type_table_from_debug_names)
3053 (create_addrmap_from_aranges, read_debug_names_from_section)
3054 (get_gdb_index_contents_from_section, read_comp_unit_head)
3055 (error_check_comp_unit_head, read_abbrev_offset)
3056 (create_debug_type_hash_table, init_cu_die_reader)
3057 (read_cutu_die_from_dwo, dwarf2_build_psymtabs_hard)
3058 (read_comp_units_from_section, create_cus_hash_table)
3059 (create_dwp_hash_table, create_dwo_unit_in_dwp_v1)
3060 (create_dwp_v2_section, dwarf2_rnglists_process)
3061 (dwarf2_ranges_process, read_die_and_siblings, read_full_die)
3062 (abbrev_table_read_table, read_indirect_string_at_offset_from)
3063 (read_indirect_string_from_dwz, read_addr_index_1)
3064 (read_str_index, dwarf_decode_line_header, skip_form_bytes)
3065 (dwarf_decode_macro_bytes, dwarf_decode_macros)
3066 (fill_in_loclist_baton): Update.
3067 * dwarf2/section.h (struct dwarf2_section_info) <get_name,
3068 get_containing_section, get_bfd_owner, get_bfd_section,
3069 get_file_name, get_id, get_flags, empty, read>: Declare methods.
3070 (dwarf2_read_section, get_section_name, get_section_file_name)
3071 (get_containing_section, get_section_bfd_owner)
3072 (get_section_bfd_section, get_section_name, get_section_file_name)
3073 (get_section_id, get_section_flags, dwarf2_section_empty_p): Don't
3074 declare.
3075 * dwarf2/section.c (dwarf2_section_info::get_containing_section)
3076 (dwarf2_section_info::get_bfd_owner)
3077 (dwarf2_section_info::get_bfd_section)
3078 (dwarf2_section_info::get_name)
3079 (dwarf2_section_info::get_file_name, dwarf2_section_info::get_id)
3080 (dwarf2_section_info::get_flags, dwarf2_section_info::empty)
3081 (dwarf2_section_info::read): Now methods.
3082 * dwarf-index-write.c (class debug_names): Update.
3083
2c86cff9
TT
30842020-02-08 Tom Tromey <tom@tromey.com>
3085
3086 * dwarf2read.h (struct dwarf2_section_info, dwarf2_read_section):
3087 Move to dwarf2/section.h.
3088 * dwarf2read.c (get_containing_section, get_section_bfd_owner)
3089 (get_section_bfd_section, get_section_name)
3090 (get_section_file_name, get_section_id, get_section_flags)
3091 (dwarf2_section_empty_p, dwarf2_read_section): Moe to
3092 dwarf2/section.c.
3093 * dwarf2/section.h: New file.
3094 * dwarf2/section.c: New file, from dwarf2read.c.
3095 * Makefile.in (COMMON_SFILES): Add dwarf2/section.c.
3096
f4382c45
TT
30972020-02-08 Tom Tromey <tom@tromey.com>
3098
3099 * dwarf2read.h (read_unsigned_leb128): Don't declare.
3100 * dwarf2read.c (read_1_byte, read_1_signed_byte, read_2_bytes)
3101 (read_2_signed_bytes, read_3_bytes, read_4_bytes)
3102 (read_4_signed_bytes, read_8_bytes): Move to dwarf2/leb.h.
3103 (read_unsigned_leb128, read_signed_leb128): Move to dwarf2/leb.c.
3104 * dwarf2/leb.h: New file, from dwarf2read.c.
3105 * dwarf2/leb.c: New file, from dwarf2read.c.
3106 * dwarf2-frame.c (read_1_byte, read_4_bytes, read_8_bytes):
3107 Remove.
3108 * Makefile.in (CONFIG_SRC_SUBDIR): Add dwarf2.
3109 (COMMON_SFILES): Add dwarf2/leb.c.
3110
01840b7a
JB
31112020-02-08 Joel Brobecker <brobecker@adacore.com>
3112
3113 GDB 9.1 released.
3114
dfcb27e4
IB
31152020-02-05 Iain Buclaw <ibuclaw@gdcproject.org>
3116
3117 PR gdb/25190:
3118 * gdb/remote-sim.c (gdb_os_write_stderr): Update.
3119 * gdb/remote.c (remote_console_output): Update.
3120 * gdb/ui-file.c (fputs_unfiltered): Rename to...
3121 (ui_file_puts): ...this.
3122 * gdb/ui-file.h (ui_file_puts): Add declaration.
3123 * gdb/utils.c (emit_style_escape): Update.
3124 (flush_wrap_buffer): Update.
3125 (fputs_maybe_filtered): Update.
3126 (fputs_unfiltered): Add function.
3127
faa17681
IB
31282020-02-05 Iain Buclaw <ibuclaw@gdcproject.org>
3129
3130 * gdb/event-loop.c (gdb_wait_for_event): Update.
3131 * gdb/printcmd.c (printf_command): Update.
3132 * gdb/remote-fileio.c (remote_fileio_func_write): Update.
3133 * gdb/remote-sim.c (gdb_os_flush_stdout): Update.
3134 (gdb_os_flush_stderr): Update.
3135 * gdb/remote.c (remote_console_output): Update.
3136 * gdb/ui-file.c (gdb_flush): Rename to...
3137 (ui_file_flush): ...this.
3138 (stderr_file::write): Update.
3139 (stderr_file::puts): Update.
3140 * gdb/ui-file.h (gdb_flush): Rename to...
3141 (ui_file_flush): ...this.
3142 * gdb/utils.c (gdb_flush): Add function.
3143 * gdb/utils.h (gdb_flush): Add declaration.
3144
5abbbe1d
TT
31452020-02-07 Tom Tromey <tromey@adacore.com>
3146
3147 PR breakpoints/24915:
3148 * source.c (find_and_open_source): Do not check basenames_may_differ.
3149
919adfe8
TT
31502020-02-07 Tom Tromey <tom@tromey.com>
3151
3152 * README: Update gdbserver documentation.
3153 * gdbserver: Move to top level.
3154 * configure.tgt (build_gdbserver): Remove.
3155 * configure.ac: Remove --enable-gdbserver.
3156 * configure: Rebuild.
3157 * Makefile.in (distclean): Don't mention gdbserver.
3158
1d5d29e7
SV
31592020-02-06 Shahab Vahedi <shahab@synopsys.com>
3160
3161 * source-cache.c (source_cache::ensure): Surround
3162 get_plain_source_lines with a try/catch.
3163 (source_cache::get_line_charpos): Get rid of try/catch
3164 and only check for the return value of "ensure".
3165 * tui/tui-source.c (tui_source_window::set_contents):
3166 Simplify "nlines" calculation.
3167
6eb1129c
SV
31682020-02-06 Shahab Vahedi <shahab@synopsys.com>
3169
3170 * MAINTAINERS (Write After Approval): Add myself.
3171
c6a42d11
CB
31722020-02-05 Christian Biesinger <cbiesinger@google.com>
3173
3174 * sparc-nat.h (struct sparc_target) <xfer_partial>: Fix base class
3175 function call.
3176
c8ecdda6
CB
31772020-02-05 Christian Biesinger <cbiesinger@google.com>
3178
3179 * ppc-nbsd-tdep.h: Fix macro name in #endif comment.
3180
f6480e70
MR
31812020-02-05 Maciej W. Rozycki <macro@wdc.com>
3182
3183 * nat/riscv-linux-tdesc.h: New file.
3184 * nat/riscv-linux-tdesc.c: New file, taking code from...
3185 * riscv-linux-nat.c (riscv_linux_nat_target::read_description):
3186 ... here.
3187 * configure.nat <linux> <riscv*>: Add nat/riscv-linux-tdesc.o to
3188 NATDEPFILES.
3189
dcc9fbc6
AB
31902020-02-04 Andrew Burgess <andrew.burgess@embecosm.com>
3191
3192 * remote-sim.c (sim_inferior_data::sim_inferior_data): Assert that
3193 we don't set the fake simulator ptid to the null_ptid.
3194
719546c4
SM
31952020-02-03 Simon Marchi <simon.marchi@efficios.com>
3196
3197 * fork-child.c (gdb_startup_inferior): Use bool instead of int.
3198 * gdbthread.h (class thread_info) <resumed>: Likewise.
3199 * infrun.c (resume_1): Likewise.
3200 (proceed): Likewise.
3201 (infrun_thread_stop_requested): Likewise.
3202 (stop_all_threads): Likewise.
3203 (handle_inferior_event): Likewise.
3204 (restart_threads): Likewise.
3205 (finish_step_over): Likewise.
3206 (keep_going_stepped_thread): Likewise.
3207 * linux-nat.c (attach_proc_task_lwp_callback): Likewise.
3208 (linux_handle_extended_wait): Likewise.
3209 * record-btrace.c (get_thread_current_frame_id): Likewise.
3210 * record-full.c (record_full_wait_1): Likewise.
3211 * remote.c (remote_target::process_initial_stop_replies): Likewise.
3212 * target.c (target_resume): Likewise.
3213 * thread.c (set_running_thread): Likewise.
3214
e409c542
AKS
32152020-02-03 Alok Kumar Sharma <AlokKumar.Sharma@amd.com>
3216
3217 * f-valprint.c (f77_print_array_1): Changed datatype of index
3218 variable to LONGEST from int to enable it to contain bound
3219 values correctly.
3220
ee98c0da
MR
32212020-02-03 Maciej W. Rozycki <macro@wdc.com>
3222
3223 * riscv-linux-nat.c [!NFPREG] (NFPREG): New macro.
3224 (supply_fpregset_regnum, fill_fpregset): Handle regset buffer
3225 offsets according to FLEN determined.
3226 (riscv_linux_nat_target::read_description): Determine FLEN
3227 dynamically.
3228 (riscv_linux_nat_target::fetch_registers): Size regset buffer
3229 according to FLEN determined.
3230 (riscv_linux_nat_target::store_registers): Likewise.
3231
aa66aac4
SV
32322020-02-01 Shahab Vahedi <shahab@synopsys.com>
3233
3234 * target-descriptions.c (tdesc_register_in_reggroup_p): Return 0
3235 when reg->group is empty and reggroup is not.
3236
fd9faca8
TT
32372020-01-31 Tom Tromey <tromey@adacore.com>
3238
3239 * ravenscar-thread.c (ravenscar_thread_target::mourn_inferior):
3240 Call beneath target's mourn_inferior after unpushing.
3241
42330a68
AB
32422020-01-31 Andrew Burgess <andrew.burgess@embecosm.com>
3243
3244 PR tui/9765
3245 * tui/tui-disasm.c (tui_find_disassembly_address): If we don't
3246 have enough lines to fill the screen, still return the lowest
3247 address we found.
3248
7a27a45b
AB
32492020-01-31 Andrew Burgess <andrew.burgess@embecosm.com>
3250
3251 * tui/tui-win.c (_initialize_tui_win): Update help text for '+',
3252 '-', '<', and '>' commands.
3253
c47f70e2
PA
32542020-01-29 Pedro Alves <palves@redhat.com>
3255 Sergio Durigan Junior <sergiodj@redhat.com>
3256
3257 * infcmd.c (construct_inferior_arguments): Assert that
3258 'argc' is greater than 0.
3259
5133a315
LM
32602020-01-29 Luis Machado <luis.machado@linaro.org>
3261
3262 * aarch64-tdep.c (BRK_INSN_MASK): Define to 0xffe0001f.
3263 (BRK_INSN_MASK): Define to 0xd4200000.
3264 (aarch64_program_breakpoint_here_p): New function.
3265 (aarch64_gdbarch_init): Set gdbarch_program_breakpoint_here_p hook.
3266 * arch-utils.c (default_program_breakpoint_here_p): Moved from
3267 breakpoint.c.
3268 * arch-utils.h (default_program_breakpoint_here_p): Moved from
3269 breakpoint.h
3270 * breakpoint.c (bp_loc_is_permanent): Changed return type to bool and
3271 call gdbarch_program_breakpoint_here_p.
3272 (program_breakpoint_here): Moved to arch-utils.c, renamed to
3273 default_program_breakpoint_here_p, changed return type to bool and
3274 simplified.
3275 * breakpoint.h (program_breakpoint_here): Moved prototype to
3276 arch-utils.h, renamed to default_program_breakpoint_here_p and changed
3277 return type to bool.
3278 * gdbarch.c: Regenerate.
3279 * gdbarch.h: Regenerate.
3280 * gdbarch.sh (program_breakpoint_here_p): New method.
3281 * infrun.c (handle_signal_stop): Call
3282 gdbarch_program_breakpoint_here_p.
3283
168f8c6b
TT
32842020-01-26 Tom Tromey <tom@tromey.com>
3285
3286 * ctfread.c (struct ctf_fp_info): Reindent.
3287 (_initialize_ctfread): Remove.
3288
128a391f
TT
32892020-01-26 Tom Tromey <tom@tromey.com>
3290
3291 * psymtab.c (partial_map_expand_apply)
3292 (psym_find_pc_sect_compunit_symtab, psym_lookup_symbol)
3293 (psymtab_to_symtab, psym_find_last_source_symtab, dump_psymtab)
3294 (psym_print_stats, psym_expand_symtabs_for_function)
3295 (psym_map_symbol_filenames, psym_map_matching_symbols)
3296 (psym_expand_symtabs_matching)
3297 (partial_symtab::read_dependencies, maintenance_info_psymtabs)
3298 (maintenance_check_psymtabs): Use new methods.
3299 * psympriv.h (struct partial_symtab) <readin_p,
3300 get_compunit_symtab>: New methods.
3301 <readin, compunit_symtab>: Remove members.
3302 (struct standard_psymtab): New.
3303 (struct legacy_psymtab): Derive from standard_psymtab.
3304 * dwarf2read.h (struct dwarf2_psymtab): Derive from
3305 standard_psymtab.
3306 * ctfread.c (struct ctf_psymtab): Derive from standard_psymtab.
3307
0494dbec
TT
33082020-01-26 Tom Tromey <tom@tromey.com>
3309
3310 * xcoffread.c (xcoff_psymtab_to_symtab_1): Call
3311 read_dependencies. Add assert.
3312 * psymtab.c (partial_symtab::read_dependencies): New method.
3313 * psympriv.h (struct partial_symtab) <read_dependencies>: New
3314 method.
3315 * mdebugread.c (psymtab_to_symtab_1): Call read_dependencies.
3316 * dwarf2read.c (dwarf2_psymtab::expand_psymtab): Call
3317 read_dependencies.
3318 * dbxread.c (dbx_psymtab_to_symtab_1): Call read_dependencies.
3319 Add assert.
3320
8566b89b
TT
33212020-01-26 Tom Tromey <tom@tromey.com>
3322
3323 * xcoffread.c (xcoff_psymtab_to_symtab_1): Change argument order.
3324 Call expand_psymtab.
3325 (xcoff_read_symtab): Call expand_psymtab.
3326 (xcoff_start_psymtab, xcoff_end_psymtab): Set
3327 legacy_expand_psymtab.
3328 * psympriv.h (struct partial_symtab) <expand_psymtab>: New
3329 method.
3330 (struct legacy_psymtab) <expand_psymtab>: Implement.
3331 <legacy_expand_psymtab>: New member.
3332 * mdebugread.c (mdebug_read_symtab): Call expand_psymtab.
3333 (parse_partial_symbols): Set legacy_expand_psymtab.
3334 (psymtab_to_symtab_1): Change argument order. Call
3335 expand_psymtab.
3336 (new_psymtab): Set legacy_expand_psymtab.
3337 * dwarf2read.h (struct dwarf2_psymtab) <expand_psymtab>: Declare.
3338 * dwarf2read.c (dwarf2_psymtab::read_symtab): Call
3339 expand_psymtab.
3340 (dwarf2_psymtab::expand_psymtab): Rename from
3341 psymtab_to_symtab_1. Call expand_psymtab.
3342 * dbxread.c (start_psymtab): Set legacy_expand_psymtab.
3343 (dbx_end_psymtab): Likewise.
3344 (dbx_psymtab_to_symtab_1): Change argument order. Call
3345 expand_psymtab.
3346 (dbx_read_symtab): Call expand_psymtab.
3347 * ctfread.c (struct ctf_psymtab) <expand_psymtab>: Declare.
3348 (ctf_psymtab::expand_psymtab): Rename from psymtab_to_symtab.
3349 (ctf_psymtab::read_symtab): Call expand_psymtab.
3350
077cbab2
TT
33512020-01-26 Tom Tromey <tom@tromey.com>
3352
3353 * xcoffread.c (xcoff_read_symtab): Remove prints. Add assert.
3354 * psymtab.c (psymtab_to_symtab): Print verbose "Reading"
3355 messages.
3356 * mdebugread.c (mdebug_read_symtab): Remove prints.
3357 * dwarf2read.c (dwarf2_psymtab::read_symtab): Remove prints. Add
3358 assert.
3359 * dbxread.c (dbx_read_symtab): Remove prints. Add assert.
3360
891813be
TT
33612020-01-26 Tom Tromey <tom@tromey.com>
3362
3363 * xcoffread.c (this_symtab_psymtab, read_xcoff_symtab)
3364 (xcoff_psymtab_to_symtab_1, xcoff_read_symtab)
3365 (xcoff_start_psymtab, xcoff_end_psymtab, scan_xcoff_symtab): Use
3366 legacy_symtab.
3367 * stabsread.h (dbx_end_psymtab): Use legacy_symtab.
3368 * psymtab.c (psymtab_to_symtab): Call method.
3369 (dump_psymtab): Update.
3370 * psympriv.h (struct partial_symtab): Add virtual destructor.
3371 <read_symtab>: New method.
3372 (struct legacy_symtab): New.
3373 * mdebugread.c (mdebug_read_symtab): Use legacy_psymtab.
3374 (struct pst_map) <pst>: Now a legacy_psymtab.
3375 (parse_procedure, parse_partial_symbols, psymtab_to_symtab_1)
3376 (new_psymtab): Use legacy_psymtab.
3377 * dwarf2read.h (struct dwarf2_psymtab): New.
3378 (struct dwarf2_per_cu_data) <psymtab>: Use it.
3379 * dwarf2read.c (dwarf2_create_include_psymtab)
3380 (dwarf2_build_include_psymtabs, create_type_unit_group)
3381 (create_partial_symtab, process_psymtab_comp_unit_reader)
3382 (build_type_psymtabs_reader, build_type_psymtab_dependencies)
3383 (set_partial_user): Use dwarf2_psymtab.
3384 (dwarf2_psymtab::read_symtab): Rename from dwarf2_read_symtab.
3385 (psymtab_to_symtab_1, process_full_comp_unit)
3386 (process_full_type_unit, dwarf2_ranges_read)
3387 (dwarf2_get_pc_bounds, psymtab_include_file_name)
3388 (dwarf_decode_lines): Use dwarf2_psymtab.
3389 * dwarf-index-write.c (psym_index_map): Use dwarf2_psymtab.
3390 (add_address_entry_worker, write_one_signatured_type)
3391 (recursively_count_psymbols, recursively_write_psymbols)
3392 (write_one_signatured_type, psyms_seen_size, write_gdbindex)
3393 (write_debug_names): Likewise.
3394 * dbxread.c (struct header_file_location): Take a legacy_psymtab.
3395 <pst>: Now a legacy_psymtab.
3396 (find_corresponding_bincl_psymtab): Return a legacy_psymtab.
3397 (read_dbx_symtab, start_psymtab, dbx_end_psymtab)
3398 (dbx_psymtab_to_symtab_1, read_ofile_symtab): Use legacy_psymtab.
3399 * ctfread.c (struct ctf_psymtab): New.
3400 (ctf_start_symtab, ctf_end_symtab, psymtab_to_symtab): Take a
3401 ctf_psymtab.
3402 (ctf_psymtab::read_symtab): Rename from ctf_read_symtab.
3403 (create_partial_symtab): Return a ctf_psymtab.
3404 (scan_partial_symbols): Update.
3405
c3693a1d
TT
34062020-01-26 Tom Tromey <tom@tromey.com>
3407
3408 * xcoffread.c (xcoff_start_psymtab): Use new.
3409 * psymtab.c (partial_symtab::partial_symtab): New constructor,
3410 renamed from start_psymtab_common.
3411 * psympriv.h (struct partial_symtab): Add new constructor.
3412 (start_psymtab_common): Don't declare.
3413 * mdebugread.c (parse_partial_symbols): Use new.
3414 * dwarf2read.c (create_partial_symtab): Use new.
3415 * dbxread.c (start_psymtab): Use new.
3416 * ctfread.c (create_partial_symtab): Use new.
3417
32caafd0
TT
34182020-01-26 Tom Tromey <tom@tromey.com>
3419
3420 * xcoffread.c (xcoff_end_psymtab): Use new.
3421 * psymtab.c (start_psymtab_common): Use new.
3422 (partial_symtab::partial_symtab): Rename from allocate_psymtab.
3423 Update.
3424 * psympriv.h (struct partial_symtab): Add parameters to
3425 constructor. Don't inline.
3426 (allocate_psymtab): Don't declare.
3427 * mdebugread.c (new_psymtab): Use new.
3428 * dwarf2read.c (dwarf2_create_include_psymtab): Use new.
3429 * dbxread.c (dbx_end_psymtab): Use new.
3430
abaa2f23
TT
34312020-01-26 Tom Tromey <tom@tromey.com>
3432
3433 * psymtab.h (class psymtab_storage) <install_psymtab>: Rename from
3434 allocate_psymtab. Update documentation.
3435 * psymtab.c (psymtab_storage::install_psymtab): Rename from
3436 allocate_psymtab. Do not use new.
3437 (allocate_psymtab): Use new. Update.
3438
6d94535f
TT
34392020-01-26 Tom Tromey <tom@tromey.com>
3440
3441 * xcoffread.c (xcoff_psymtab_to_symtab_1): Update.
3442 * psymtab.c (psym_print_stats): Update.
3443 * psympriv.h (struct partial_symtab) <readin,
3444 psymtabs_addrmap_supported, anonymous>: Now bool.
3445 * mdebugread.c (psymtab_to_symtab_1): Update.
3446 * dwarf2read.c (create_type_unit_group, create_partial_symtab)
3447 (build_type_psymtabs_reader, psymtab_to_symtab_1)
3448 (process_full_comp_unit, process_full_type_unit): Update.
3449 * dbxread.c (dbx_psymtab_to_symtab_1): Update.
3450 * ctfread.c (psymtab_to_symtab): Update.
3451
6f17252b
TT
34522020-01-26 Tom Tromey <tom@tromey.com>
3453
3454 * mdebugread.c (parse_partial_symbols): Use discard_psymtab.
3455 * psymtab.h (class psymtab_storage) <free_psymtabs>: Remove.
3456 * psymtab.c (psymtab_storage): Delete psymtabs.
3457 (psymtab_storage::allocate_psymtab): Use new.
3458 (psymtab_storage::discard_psymtab): Use delete.
3459 * psympriv.h (struct partial_symtab): Add constructor and
3460 initializers.
3461
f6f1cebc
TT
34622020-01-26 Tom Tromey <tom@tromey.com>
3463
3464 * machoread.c: Do not include psympriv.h.
3465
e47e48f6
PW
34662020-01-25 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3467
3468 * NEWS: Mention the new option and the set/show commands.
3469
a2fedca9
PW
34702020-01-25 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3471
3472 * exec.c (exec_file_mismatch_names, exec_file_mismatch_mode)
3473 (show_exec_file_mismatch_command, set_exec_file_mismatch_command)
3474 (validate_exec_file): New variables, enums, functions.
3475 (exec_file_locate_attach, print_section_info): Style the filenames.
3476 (_initialize_exec): Install show_exec_file_mismatch_command and
3477 set_exec_file_mismatch_command.
3478 * gdbcore.h (validate_exec_file): Declare.
3479 * infcmd.c (attach_command): Call validate_exec_file.
3480 * remote.c ( remote_target::remote_add_inferior): Likewise.
3481
7ffa82e1
AB
34822020-01-24 Andrew Burgess <andrew.burgess@embecosm.com>
3483
3484 * frame.c (find_frame_sal): Move call to get_next_frame into more
3485 inner scope.
3486 * inline-frame.c (inilne_state) <inline_state>: Update argument
3487 types.
3488 (inilne_state) <skipped_symbol>: Rename to...
3489 (inilne_state) <skipped_symbols>: ...this, and change to a vector.
3490 (skip_inline_frames): Build vector of skipped symbols and use this
3491 to reate the inline_state.
3492 (inline_skipped_symbol): Add a comment and some assertions, fetch
3493 skipped symbol from the list.
3494
3d92a3e3
AB
34952020-01-24 Andrew Burgess <andrew.burgess@embecosm.com>
3496
3497 * buildsym.c (lte_is_less_than): Delete.
3498 (buildsym_compunit::end_symtab_with_blockvector): Create local
3499 lambda function to sort line table entries, and use
3500 std::stable_sort instead of std::sort.
3501 * symtab.c (find_pc_sect_line): Skip backward over end of sequence
3502 markers when looking for a previous line.
3503
94a72be7
AB
35042020-01-24 Andrew Burgess <andrew.burgess@embecosm.com>
3505
3506 * dwarf2read.c (lnp_state_machine::record_line): Include
3507 end_sequence parameter in debug print out. Record the line if we
3508 are at an end_sequence marker even if it's not the start of a
3509 statement.
3510 * symmisc.c (maintenance_print_one_line_table): Print end of
3511 sequence markers with 'END' not '0'.
3512
53af73bf
PA
35132020-01-24 Pedro Alves <palves@redhat.com>
3514
3515 PR gdb/25410
3516 * thread.c (scoped_restore_current_thread::restore): Use
3517 switch_to_inferior_no_thread.
3518 * exec.c: Include "progspace-and-thread.h".
3519 (add_target_sections, remove_target_sections):
3520 scoped_restore_current_pspace_and_thread instead of
3521 scoped_restore_current_thread.
3522 * infrun.c (handle_vfork_child_exec_or_exit): Assign the pspace
3523 and aspace to the inferior before calling clone_program_space.
3524 Remove stale comment.
3525
3050c6f4
CB
35262020-01-24 Christian Biesinger <cbiesinger@google.com>
3527
3528 * arm-nbsd-nat.c (arm_nbsd_nat_target::fetch_registers): Rename to...
3529 (arm_netbsd_nat_target::fetch_registers): ...this.
3530 (arm_nbsd_nat_target::store_registers): Rename to...
3531 (arm_netbsd_nat_target::store_registers): ...this.
3532
73685c7e
CB
35332020-01-24 Christian Biesinger <cbiesinger@google.com>
3534
3535 * arm-nbsd-nat.c: Define _KERNTYPES to get the declaration of
3536 register_t.
3537
89203d40
CB
35382020-01-24 Christian Biesinger <cbiesinger@google.com>
3539
3540 * aarch64-fbsd-tdep.c (aarch64_fbsd_iterate_over_regset_sections):
3541 Update comment.
3542 * aarch64-linux-tdep.c (aarch64_linux_iterate_over_regset_sections):
3543 Likewise.
3544 * arm-fbsd-tdep.c (arm_fbsd_iterate_over_regset_sections): Likewise.
3545 * gdbcore.h (deprecated_add_core_fns): Update comment to point to
3546 the correct replacement (iterate_over_regset_sections).
3547 * riscv-fbsd-tdep.c (riscv_fbsd_iterate_over_regset_sections):
3548 Update comment.
3549
1ba1ac88
AB
35502020-01-24 Graham Markall <graham.markall@embecosm.com>
3551
3552 PR gdb/23718
3553 * gdb/python/python.c (execute_gdb_command): Call
3554 async_enable_stdin in catch block.
3555
f3364a6d
AB
35562020-01-24 Andrew Burgess <andrew.burgess@embecosm.com>
3557
3558 * event-loop.c (start_event_loop): Wrap async_enable_stdin with
3559 SWITCH_THRU_ALL_UIS.
3560
733d0a67
AB
35612020-01-24 Andrew Burgess <andrew.burgess@embecosm.com>
3562
3563 PR tui/9765
3564 * minsyms.c (lookup_minimal_symbol_by_pc_section): Update header
3565 comment, add extra parameter, and update to store previous symbol
3566 when appropriate.
3567 * minsyms.h (lookup_minimal_symbol_by_pc_section): Update comment,
3568 add extra parameter.
3569 * tui/tui-disasm.c (tui_disassemble): Update header comment,
3570 remove unneeded parameter, add try/catch around gdb_print_insn,
3571 rewrite to add items to asm_lines vector.
3572 (tui_find_backward_disassembly_start_address): New function.
3573 (tui_find_disassembly_address): Updated throughout.
3574 (tui_disasm_window::set_contents): Update for changes to
3575 tui_disassemble.
3576 (tui_disasm_window::do_scroll_vertical): No need to adjust the
3577 number of lines to scroll.
3578
b3b3bada
SM
35792020-01-23 Simon Marchi <simon.marchi@polymtl.ca>
3580
3581 * objfiles.h (ALL_OBJFILE_OSECTIONS): Move up.
3582 (SECT_OFF_DATA): Likewise.
3583 (SECT_OFF_RODATA): Likewise.
3584 (SECT_OFF_TEXT): Likewise.
3585 (SECT_OFF_BSS): Likewise.
3586 (struct objfile) <text_section_offset, data_section_offset>: New
3587 methods.
3588 * amd64-windows-tdep.c (amd64_windows_find_unwind_info): Use
3589 objfile::text_section_offset.
3590 * coff-pe-read.c (add_pe_forwarded_sym): Likewise.
3591 * coffread.c (coff_symtab_read): Likewise.
3592 (enter_linenos): Likewise.
3593 (process_coff_symbol): Likewise.
3594 * ctfread.c (get_objfile_text_range): Likewise.
3595 * dtrace-probe.c (dtrace_probe::get_relocated_address):
3596 Use objfile::data_section_offset.
3597 * dwarf2-frame.c (execute_cfa_program): Use
3598 objfile::text_section_offset.
3599 (dwarf2_frame_find_fde): Likewise.
3600 * dwarf2read.c (create_addrmap_from_index): Likewise.
3601 (create_addrmap_from_aranges): Likewise.
3602 (dw2_find_pc_sect_compunit_symtab): Likewise.
3603 (process_psymtab_comp_unit_reader): Likewise.
3604 (add_partial_symbol): Likewise.
3605 (add_partial_subprogram): Likewise.
3606 (process_full_comp_unit): Likewise.
3607 (read_file_scope): Likewise.
3608 (read_func_scope): Likewise.
3609 (read_lexical_block_scope): Likewise.
3610 (read_call_site_scope): Likewise.
3611 (dwarf2_rnglists_process): Likewise.
3612 (dwarf2_ranges_process): Likewise.
3613 (dwarf2_ranges_read): Likewise.
3614 (dwarf_decode_lines_1): Likewise.
3615 (new_symbol): Likewise.
3616 (dwarf2_fetch_die_loc_sect_off): Likewise.
3617 (dwarf2_per_cu_text_offset): Likewise.
3618 * hppa-bsd-tdep.c (hppabsd_find_global_pointer): Likewise.
3619 * hppa-tdep.c (read_unwind_info): Likewise.
3620 * ia64-tdep.c (ia64_find_unwind_table): Likewise.
3621 * psympriv.h (struct partial_symtab): Likewise.
3622 * psymtab.c (find_pc_sect_psymtab): Likewise.
3623 * solib-svr4.c (enable_break): Likewise.
3624 * stap-probe.c (relocate_address): Use
3625 objfile::data_section_offset.
3626 * xcoffread.c (enter_line_range): Use
3627 objfile::text_section_offset.
3628 (read_xcoff_symtab): Likewise.
3629
ab53f382
SM
36302020-01-23 Simon Marchi <simon.marchi@efficios.com>
3631
3632 * darwin-nat.c (darwin_nat_target::wait_1): Move `inf`
3633 declaration to narrower scopes.
3634
e7eee665
SM
36352020-01-23 Simon Marchi <simon.marchi@efficios.com>
3636
3637 * darwin-nat.h (struct darwin_exception_msg, enum
3638 darwin_msg_state, struct darwin_thread_info, darwin_thread_t):
3639 Move up.
3640 (class darwin_nat_target) <wait_1, check_new_threads,
3641 decode_exception_message, decode_message, stop_inferior,
3642 init_thread_list, ptrace_him, cancel_breakpoint>: Declare.
3643 * darwin-nat.c (darwin_check_new_threads): Rename to...
3644 (darwin_nat_target::check_new_threads): ... this.
3645 (darwin_suspend_inferior_it): Remove.
3646 (darwin_decode_exception_message): Rename to...
3647 (darwin_nat_target::decode_exception_message): ... this.
3648 (darwin_nat_target::resume): Pass target to find_inferior_ptid.
3649 (darwin_decode_message): Rename to...
3650 (darwin_nat_target::decode_message): ... this.
3651 (cancel_breakpoint): Rename to...
3652 (darwin_nat_target::cancel_breakpoint): ... this.
3653 (darwin_wait): Rename to...
3654 (darwin_nat_target::wait_1): ... this. Use range-based for loop
3655 instead of iterate_over_inferiors.
3656 (darwin_nat_target::wait): Call wait_1 instead of darwin_wait.
3657 (darwin_stop_inferior): Rename to...
3658 (darwin_nat_target::stop_inferior): ... this.
3659 (darwin_nat_target::kill): Call wait_1 instead of darwin_wait.
3660 (darwin_init_thread_list): Rename to...
3661 (darwin_nat_target::init_thread_list): ... this.
3662 (darwin_ptrace_him): Rename to...
3663 (darwin_nat_target::ptrace_him): ... this.
3664 (darwin_nat_target::create_inferior): Pass lambda function to
3665 fork_inferior.
3666 (darwin_nat_target::detach): Call stop_inferior instead of
3667 darwin_stop_inferior.
3668 * fork-inferior.h (fork_inferior): Change init_trace_fun
3669 parameter to gdb::function_view.
3670 * fork-inferior.c (fork_inferior): Likewise.
3671
c162ed3e
HD
36722020-01-23 Hannes Domani <ssbssa@yahoo.de>
3673
3674 * i386-cygwin-tdep.c (core_process_module_section): Update.
3675 * windows-nat.c (struct lm_info_windows): Add text_offset.
3676 (windows_xfer_shared_libraries): Update.
3677 * windows-tdep.c (windows_xfer_shared_library):
3678 Add text_offset_cached argument.
3679 * windows-tdep.h (windows_xfer_shared_library): Update.
3680
a1237872
SM
36812020-01-21 Simon Marchi <simon.marchi@efficios.com>
3682
3683 * gdbarch.sh: Add declaration for _initialize_gdbarch.
3684
b3ee6dd9
SM
36852020-01-21 Simon Marchi <simon.marchi@efficios.com>
3686
3687 * remote-sim.c (check_for_duplicate_sim_descriptor): Remove.
3688 (get_sim_inferior_data): Remove use of iterate_over_inferiors,
3689 replace with range-based for.
3690 (gdbsim_interrupt_inferior): Remove.
3691 (gdbsim_target::interrupt): Replace iterate_over_inferiors use
3692 with a range-based for. Inline code from
3693 gdbsim_interrupt_inferior.
3694
f9fac3c8
SM
36952020-01-21 Simon Marchi <simon.marchi@efficios.com>
3696
3697 * infrun.c (proceed): Fix indentation.
3698
f6474de9
TT
36992020-01-21 Tom Tromey <tromey@adacore.com>
3700
3701 * source-cache.c (source_cache::ensure): Call ext_lang_colorize.
3702 * python/python.c (python_extension_ops): Update.
3703 (gdbpy_colorize): New function.
3704 * python/lib/gdb/__init__.py (colorize): New function.
3705 * extension.h (ext_lang_colorize): Declare.
3706 * extension.c (ext_lang_colorize): New function.
3707 * extension-priv.h (struct extension_language_ops) <colorize>: New
3708 member.
3709 * cli/cli-style.c (_initialize_cli_style): Update help text.
3710
f0c702d4
LM
37112020-01-21 Luis Machado <luis.machado@linaro.org>
3712
3713 * aarch64-tdep.c (struct aarch64_displaced_step_closure)
3714 <cond>: Change type to bool.
3715 (aarch64_displaced_step_b_cond): Update cond to use bool type.
3716 (aarch64_displaced_step_cb): Likewise.
3717 (aarch64_displaced_step_tb): Likewise.
3718
1ab139e5
LM
37192020-01-21 Luis Machado <luis.machado@linaro.org>
3720
3721 * aarch64-tdep.c (aarch64_displaced_step_fixup): Add more debugging
3722 output.
3723
0c271889
LM
37242020-01-21 Luis Machado <luis.machado@linaro.org>
3725
3726 * aarch64-tdep.c (struct aarch64_displaced_step_closure )
3727 <pc_adjust>: Adjust the documentation.
3728 (aarch64_displaced_step_fixup): Check if PC really moved before
3729 adjusting it.
3730
4d89c1c7
TT
37312020-01-19 Tom Tromey <tom@tromey.com>
3732
3733 * disasm.c (~gdb_disassembler): New destructor.
3734 (gdb_buffered_insn_length): Call disassemble_free_target.
3735 * disasm.h (class gdb_disassembler): Declare destructor. Use
3736 DISABLE_COPY_AND_ASSIGN.
3737
c0ab21c2
TT
37382020-01-19 Tom Tromey <tom@tromey.com>
3739
3740 * dwarf2read.c (abbrev_table_up): Move typedef earlier.
3741 (die_reader_func_ftype): Remove.
3742 (cutu_reader): New class.
3743 (dw2_get_file_names_reader): Remove "data" parameter.
3744 (dw2_get_file_names): Use cutu_reader.
3745 (create_debug_type_hash_table): Update.
3746 (read_cutu_die_from_dwo): Update comment.
3747 (lookup_dwo_unit): Add dwo_name parameter.
3748 (cutu_reader::init_tu_and_read_dwo_dies): Now a method. Remove
3749 die_reader_func_ftype and data parameters.
3750 (cutu_reader::cutu_reader): Rename from init_cutu_and_read_dies.
3751 Remove die_reader_func_ftype and data parameters.
3752 (~cutu_reader): New; from init_cutu_and_read_dies.
3753 (cutu_reader::cutu_reader): Rename from
3754 init_cutu_and_read_dies_no_follow. Remove die_reader_func_ftype
3755 and data parameters.
3756 (init_cutu_and_read_dies_simple): Remove.
3757 (struct process_psymtab_comp_unit_data): Remove.
3758 (process_psymtab_comp_unit_reader): Remove data parameter; add
3759 want_partial_unit and pretend_language parameters.
3760 (process_psymtab_comp_unit): Use cutu_reader.
3761 (build_type_psymtabs_reader): Remove data parameter.
3762 (build_type_psymtabs_1): Use cutu_reader.
3763 (process_skeletonless_type_unit): Likewise.
3764 (load_partial_comp_unit_reader): Remove.
3765 (load_partial_comp_unit): Use cutu_reader.
3766 (load_full_comp_unit_reader): Remove.
3767 (load_full_comp_unit): Use cutu_reader.
3768 (struct create_dwo_cu_data): Remove.
3769 (create_dwo_cu_reader): Remove datap parameter; add dwo_file and
3770 dwo_unit parameters.
3771 (create_cus_hash_table): Use cutu_reader.
3772 (struct dwarf2_read_addr_index_data): Remove.
3773 (dwarf2_read_addr_index_reader): Remove.
3774 (dwarf2_read_addr_index): Use cutu_reader.
3775 (read_signatured_type_reader): Remove.
3776 (read_signatured_type): Use cutu_reader.
3777
45bbae5c
TT
37782020-01-19 Tom Tromey <tom@tromey.com>
3779
3780 * tui/tui.c (tui_show_assembly): Use tui_suppress_output.
3781 * tui/tui-wingeneral.h (class tui_suppress_output): New.
3782 (tui_wrefresh): Declare.
3783 * tui/tui-wingeneral.c (suppress_output): New global.
3784 (tui_suppress_output, ~tui_suppress_output): New constructor and
3785 destructor.
3786 (tui_wrefresh): New function.
3787 (tui_gen_win_info::refresh_window): Use tui_wrefresh.
3788 (tui_gen_win_info::make_window): Call wnoutrefresh when needed.
3789 * tui/tui-regs.h (struct tui_data_window) <no_refresh>: Declare
3790 method.
3791 * tui/tui-regs.c (tui_data_window::erase_data_content): Call
3792 tui_wrefresh.
3793 (tui_data_window::no_refresh): New method.
3794 (tui_data_item_window::refresh_window): Call tui_wrefresh.
3795 (tui_reg_command): Use tui_suppress_output
3796 * tui/tui-layout.c (tui_set_layout): Use tui_suppress_output.
3797 * tui/tui-data.h (struct tui_gen_win_info) <no_refresh>: New
3798 method.
3799 * tui/tui-command.c (tui_refresh_cmd_win): Call tui_wrefresh.
3800
4f13c1c0
TT
38012020-01-19 Tom Tromey <tom@tromey.com>
3802
3803 * tui/tui-winsource.c (tui_update_source_windows_with_line):
3804 Handle case where symtab is null.
3805
fa47e446
SM
38062020-01-19 Simon Marchi <simon.marchi@polymtl.ca>
3807
3808 * linux-fork.c (one_fork_p): Simplify.
3809
26f42329
SM
38102020-01-17 Simon Marchi <simon.marchi@efficios.com>
3811
3812 * top.c (struct qt_args): Remove.
3813 (kill_or_detach): Change return type to void, replace `void *`
3814 parameter with a proper one.
3815 (print_inferior_quit_action): Likewise.
3816 (quit_confirm): Use range-based for loop to iterate over inferiors.
3817 (quit_force): Likewise.
3818
a9ac81b1
SM
38192020-01-17 Simon Marchi <simon.marchi@efficios.com>
3820
3821 * mi/mi-main.c (run_one_inferior): Change return type to void, replace
3822 `void *` parameter with proper parameters.
3823 (mi_cmd_exec_run): Use range-based loop to iterate over inferiors.
3824 (print_one_inferior): Change return type to void, replace `void *`
3825 parameter with proper parameters.
3826 (mi_cmd_list_thread_groups): Use range-based loop to iterate over
3827 inferiors.
3828 (get_other_inferior): Remove.
3829 (mi_cmd_remove_inferior): Use range-based loop to iterate over
3830 inferiors.
3831
788eca49
SM
38322020-01-17 Simon Marchi <simon.marchi@efficios.com>
3833
3834 * mi/mi-interp.c (report_initial_inferior): Remove.
3835 (mi_interp::init): Use range-based for to iterate over inferiors.
3836
d9bc85b6
SM
38372020-01-17 Simon Marchi <simon.marchi@efficios.com>
3838
3839 * python/py-inferior.c (build_inferior_list): Remove.
3840 (gdbpy_ref): Use range-based for loop to iterate over inferiors.
3841
40c94099
CB
38422020-01-16 Christian Biesinger <cbiesinger@google.com>
3843
3844 * btrace.c (btrace_compute_ftrace_1): Fix spelling error (Unkown).
3845 (btrace_stitch_trace): Likewise.
3846 * charset.c (intermediate_encoding): Likewise (vaild).
3847 * nat/linux-btrace.c (linux_read_pt): Likewise (Unkown).
3848 * python/py-record-btrace.c (struct PyMethodDef): Likewise (occurences).
3849 * record-btrace.c (record_btrace_print_conf): Likewise (unkown).
3850
e0cdfe3c
HD
38512020-01-16 Hannes Domani <ssbssa@yahoo.de>
3852
3853 * windows-tdep.c (windows_get_tlb_type):
3854 Add rtl_user_process_parameters type.
3855
790f1718
PA
38562020-01-16 Pedro Alves <palves@redhat.com>
3857 Norbert Lange <nolange79@gmail.com>
3858
3859 PR build/24805
3860 * gdbsupport/gdb_proc_service.h (PS_EXPORT): New.
3861 (ps_get_thread_area, ps_getpid, ps_lcontinue, ps_lgetfpregs)
3862 (ps_lgetregs, ps_lsetfpregs, ps_lsetregs, ps_lstop, ps_pcontinue)
3863 (ps_pdread, ps_pdwrite, ps_pglobal_lookup, ps_pstop, ps_ptread)
3864 (ps_ptwrite, ps_lgetxregs, ps_lgetxregsize, ps_lsetxregs)
3865 (ps_plog): Redeclare exported functions with default visibility.
3866
3112ed97
NA
38672020-01-16 Nitika Achra <Nitika.Achra@amd.com>
3868
3869 * dwarf2loc.c (decode_debug_loclists_addresses): Handle
3870 DW_LLE_base_addressx, DW_LLE_startx_length, DW_LLE_start_length.
3871
8dc3273e
SM
38722020-01-15 Simon Marchi <simon.marchi@efficios.com>
3873
3874 * infcmd.c (post_create_inferior): Use get_thread_regcache
3875 instead of get_current_regcache.
3876
ff47f4f0
TT
38772020-01-14 Tom Tromey <tom@tromey.com>
3878
3879 PR symtab/12535:
3880 * python/python.c (gdbpy_decode_line): Treat empty string the same
3881 as no argument.
3882
975f45b7
TT
38832020-01-14 Tom Tromey <tom@tromey.com>
3884
3885 * Makefile.in (CLIBS): Remove second use of $(LIBIBERTY).
3886
25e57356
TT
38872020-01-14 Tom Tromey <tom@tromey.com>
3888
3889 * nat/linux-btrace.c: Don't include <config.h>.
3890 * nat/linux-ptrace.c: Don't include <config.h>.
3891 * nat/x86-linux-dregs.c: Don't include <config.h>.
3892
05ea2a05
TT
38932020-01-14 Tom Tromey <tom@tromey.com>
3894
3895 * configure: Rebuild.
3896 * configure.ac: Move many checks to ../gdbsupport/common.m4.
3897
01027315
TT
38982020-01-14 Tom Tromey <tom@tromey.com>
3899
3900 * nat/x86-linux-dregs.c: Include configh.h.
3901 * nat/linux-ptrace.c: Include configh.h.
3902 * nat/linux-btrace.c: Include configh.h.
3903 * defs.h: Include config.h, bfd.h.
3904 * configure.ac: Don't source common.host.
3905 (CONFIG_OBS, CONFIG_SRCS): Remove gdbsupport files.
3906 * configure: Rebuild.
3907 * acinclude.m4: Update path.
3908 * Makefile.in (SUPPORT, LIBSUPPORT, INCSUPPORT): New variables.
3909 (CONFIG_SRC_SUBDIR): Remove gdbsupport.
3910 (INTERNAL_CFLAGS_BASE): Add INCSUPPORT.
3911 (CLIBS): Add LIBSUPPORT.
3912 (CDEPS): Likewise.
3913 (COMMON_SFILES): Remove gdbsupport files.
3914 (HFILES_NO_SRCDIR): Likewise.
3915 (stamp-version): Update path to create-version.sh.
3916 (ALLDEPFILES): Remove gdbsupport files.
3917
b2ceabe8
TT
39182020-01-14 Tom Tromey <tom@tromey.com>
3919
3920 * gdbsupport/common.m4 (GDB_AC_COMMON): Define WIN32APILIBS and
3921 USE_WIN32API when needed.
3922 * configure.ac (USE_WIN32API): Don't define.
3923 (WIN32LIBS): Use WIN32APILIBS.
3924 * configure: Rebuild.
3925
25c51f71
TT
39262020-01-14 Tom Tromey <tom@tromey.com>
3927
3928 * configure: Rebuild.
3929 * gdbsupport/common.m4 (GDB_AC_COMMON): Fix indentation.
3930
717c684d
BE
39312020-01-14 Bernd Edlinger <bernd.edlinger@hotmail.de>
3932
3933 * skip.c (skip_function_command): Make skip w/o arguments use the
3934 name of the inlined function if pc is inside any inlined function.
3935
7da6a5b9
LM
39362020-01-14 Luis Machado <luis.machado@linaro.org>
3937
3938 * inf-ptrace.c (inf_ptrace_target::resume): Update comments.
3939 * infrun.c (resume_1): Likewise.
3940 (handle_inferior_event): Remove stale comment.
3941 * linux-nat.c (linux_nat_target::resume): Update comments.
3942 (save_stop_reason): Likewise.
3943 (linux_nat_filter_event): Likewise.
3944 * linux-nat.h (struct lwp_info) <stop_pc>, <stop_reason>: Likewise.
3945
44e4c775
AB
39462020-01-13 Andrew Burgess <andrew.burgess@embecosm.com>
3947
3948 * elfread.c (record_minimal_symbol): Set section index to 0 for
3949 non-allocatable sections.
3950
18a8505e
AT
3951
39522020-01-13 Ali Tamur <tamur@google.com>
3953
3954 * dwarf2read.c (dwarf2_debug_sections): Add debug_str_offsets sections.
3955 (dwarf2_cu): Add str_offsets_base field. Change the type of addr_base
3956 to gdb::optional. Update comments.
3957 (dwo_file): Update comments.
3958 (read_attribute): Update API to take an additional out parameter,
3959 need_reprocess. This is used to mark attributes that need other
3960 attributes (e.g. str_offsets_base) for correct computation which may not
3961 have been read yet.
3962 (read_attribute_reprocess): New function declaration.
3963 (read_addr_index): Likewise.
3964 (read_dwo_str_index): Likewise.
3965 (read_stub_str_index): Likewise.
3966 (dwarf2_per_objfile::locate_sections): Handle debug_str_offsets section.
3967 (lookup_addr_base): New function definition.
3968 (lookup_ranges_base): Likewise.
3969 (read_cutu_die_from_dwo): Use the new functions: lookup_addr_base,
3970 lookup_ranges_base.
3971 (init_cutu_and_read_dies): Update comments.
3972 (init_cutu_and_read_dies_no_follow): Change API to take parent compile
3973 unit. This is used to inherit parent's str_offsets_base and addr_base.
3974 Update comments.
3975 (init_cutu_and_read_dies_simple): Reflect API changes.
3976 (skip_one_die): Reflect API changes. Handle DW_FORM_rnglistx.
3977 (create_cus_hash_table): Change API to take parent compile unit.
3978 Reflect API changes.
3979 (open_and_init_dwo_file): Reflect API changes.
3980 (dwarf2_get_pc_bounds): Update comments.
3981 (dwarf2_record_block_ranges): Likewise.
3982 (read_full_die_1): Change implementation to reprocess attributes that
3983 need str_offsets_base and addr_base.
3984 (partial_die_info::read): Likewise.
3985 (read_attribute_reprocess): New function definition.
3986 (read_attribute_value): Change API to take an additional out parameter,
3987 need_reprocess. Handle DW_FORM_rnglistx. No longer trigger an error
3988 when a non-dwo compile unit has index based attributes.
3989 (read_attribute): Reflect API changes.
3990 (read_addr_index_1): Reflect API changes. Update comments.
3991 (dwarf2_read_addr_index_data): Reflect API changes.
3992 (dwarf2_read_addr_index): Likewise.
3993 (read_str_index): Change API and implementation. This becomes a helper
3994 to be used by the new string index related methods. Update error
3995 message and comments.
3996 (read_dwo_str_index): New function definition.
3997 (read_stub_str_index): Likewise.
3998 * dwarf2read.h (dwarf2_per_objfile): Add str_offsets field.
3999 * symfile.h (dwarf2_debug_sections): Likewise.
4000 * xcoffread.c (dwarf2_debug_sections): Likewise.
4001
0cac9354
SM
40022020-01-13 Simon Marchi <simon.marchi@efficios.com>
4003
4004 * gdbcore.h (struct core_fns) <core_read_registers>: Change
4005 core_reg_sect type to gdb_byte *.
4006 * arm-nbsd-nat.c (fetch_elfcore_registers): Likewise.
4007 * cris-tdep.c (fetch_core_registers): Likewise.
4008 * corelow.c (core_target::get_core_register_section): Change
4009 type of `contents` to gdb::byte_vector.
4010
9a6d629c
AB
40112020-01-13 Andrew Burgess <andrew.burgess@embecosm.com>
4012
4013 * tui/tui-wingeneral.c (box_win): Position the title in the center
4014 of the border.
4015
d8b2f9e3
SM
40162020-01-13 Simon Marchi <simon.marchi@polymtl.ca>
4017
4018 * corelow.c (core_target::get_core_register_section): Use
4019 std::vector instead of alloca.
4020
bb564c58
SM
40212020-01-13 Simon Marchi <simon.marchi@efficios.com>
4022
4023 * warning.m4: Add -Wmissing-declarations to build_warnings.
4024 * configure: Re-generate.
4025
6b366111
SM
40262020-01-13 Simon Marchi <simon.marchi@efficios.com>
4027
4028 * python/python.c (init__gdb_module): Add declaration.
4029
6c265988
SM
40302020-01-13 Simon Marchi <simon.marchi@efficios.com>
4031
4032 * aarch64-fbsd-nat.c (_initialize_aarch64_fbsd_nat): Add declaration.
4033 * aarch64-fbsd-tdep.c (_initialize_aarch64_fbsd_tdep): Add declaration.
4034 * aarch64-linux-nat.c (_initialize_aarch64_linux_nat): Add declaration.
4035 * aarch64-linux-tdep.c (_initialize_aarch64_linux_tdep): Add declaration.
4036 * aarch64-newlib-tdep.c (_initialize_aarch64_newlib_tdep): Add declaration.
4037 * aarch64-tdep.c (_initialize_aarch64_tdep): Add declaration.
4038 * ada-exp.y (_initialize_ada_exp): Add declaration.
4039 * ada-lang.c (_initialize_ada_language): Add declaration.
4040 * ada-tasks.c (_initialize_tasks): Add declaration.
4041 * agent.c (_initialize_agent): Add declaration.
4042 * aix-thread.c (_initialize_aix_thread): Add declaration.
4043 * alpha-bsd-nat.c (_initialize_alphabsd_nat): Add declaration.
4044 * alpha-linux-nat.c (_initialize_alpha_linux_nat): Add declaration.
4045 * alpha-linux-tdep.c (_initialize_alpha_linux_tdep): Add declaration.
4046 * alpha-nbsd-tdep.c (_initialize_alphanbsd_tdep): Add declaration.
4047 * alpha-obsd-tdep.c (_initialize_alphaobsd_tdep): Add declaration.
4048 * alpha-tdep.c (_initialize_alpha_tdep): Add declaration.
4049 * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): Add declaration.
4050 * amd64-dicos-tdep.c (_initialize_amd64_dicos_tdep): Add declaration.
4051 * amd64-fbsd-nat.c (_initialize_amd64fbsd_nat): Add declaration.
4052 * amd64-fbsd-tdep.c (_initialize_amd64fbsd_tdep): Add declaration.
4053 * amd64-linux-nat.c (_initialize_amd64_linux_nat): Add declaration.
4054 * amd64-linux-tdep.c (_initialize_amd64_linux_tdep): Add declaration.
4055 * amd64-nbsd-nat.c (_initialize_amd64nbsd_nat): Add declaration.
4056 * amd64-nbsd-tdep.c (_initialize_amd64nbsd_tdep): Add declaration.
4057 * amd64-obsd-nat.c (_initialize_amd64obsd_nat): Add declaration.
4058 * amd64-obsd-tdep.c (_initialize_amd64obsd_tdep): Add declaration.
4059 * amd64-sol2-tdep.c (_initialize_amd64_sol2_tdep): Add declaration.
4060 * amd64-tdep.c (_initialize_amd64_tdep): Add declaration.
4061 * amd64-windows-nat.c (_initialize_amd64_windows_nat): Add declaration.
4062 * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Add declaration.
4063 * annotate.c (_initialize_annotate): Add declaration.
4064 * arc-newlib-tdep.c (_initialize_arc_newlib_tdep): Add declaration.
4065 * arc-tdep.c (_initialize_arc_tdep): Add declaration.
4066 * arch-utils.c (_initialize_gdbarch_utils): Add declaration.
4067 * arm-fbsd-nat.c (_initialize_arm_fbsd_nat): Add declaration.
4068 * arm-fbsd-tdep.c (_initialize_arm_fbsd_tdep): Add declaration.
4069 * arm-linux-nat.c (_initialize_arm_linux_nat): Add declaration.
4070 * arm-linux-tdep.c (_initialize_arm_linux_tdep): Add declaration.
4071 * arm-nbsd-nat.c (_initialize_arm_netbsd_nat): Add declaration.
4072 * arm-nbsd-tdep.c (_initialize_arm_netbsd_tdep): Add declaration.
4073 * arm-obsd-tdep.c (_initialize_armobsd_tdep): Add declaration.
4074 * arm-pikeos-tdep.c (_initialize_arm_pikeos_tdep): Add declaration.
4075 * arm-symbian-tdep.c (_initialize_arm_symbian_tdep): Add declaration.
4076 * arm-tdep.c (_initialize_arm_tdep): Add declaration.
4077 * arm-wince-tdep.c (_initialize_arm_wince_tdep): Add declaration.
4078 * auto-load.c (_initialize_auto_load): Add declaration.
4079 * auxv.c (_initialize_auxv): Add declaration.
4080 * avr-tdep.c (_initialize_avr_tdep): Add declaration.
4081 * ax-gdb.c (_initialize_ax_gdb): Add declaration.
4082 * bfin-linux-tdep.c (_initialize_bfin_linux_tdep): Add declaration.
4083 * bfin-tdep.c (_initialize_bfin_tdep): Add declaration.
4084 * break-catch-sig.c (_initialize_break_catch_sig): Add declaration.
4085 * break-catch-syscall.c (_initialize_break_catch_syscall): Add declaration.
4086 * break-catch-throw.c (_initialize_break_catch_throw): Add declaration.
4087 * breakpoint.c (_initialize_breakpoint): Add declaration.
4088 * bsd-uthread.c (_initialize_bsd_uthread): Add declaration.
4089 * btrace.c (_initialize_btrace): Add declaration.
4090 * charset.c (_initialize_charset): Add declaration.
4091 * cli/cli-cmds.c (_initialize_cli_cmds): Add declaration.
4092 * cli/cli-dump.c (_initialize_cli_dump): Add declaration.
4093 * cli/cli-interp.c (_initialize_cli_interp): Add declaration.
4094 * cli/cli-logging.c (_initialize_cli_logging): Add declaration.
4095 * cli/cli-script.c (_initialize_cli_script): Add declaration.
4096 * cli/cli-style.c (_initialize_cli_style): Add declaration.
4097 * coff-pe-read.c (_initialize_coff_pe_read): Add declaration.
4098 * coffread.c (_initialize_coffread): Add declaration.
4099 * compile/compile-cplus-types.c (_initialize_compile_cplus_types): Add declaration.
4100 * compile/compile.c (_initialize_compile): Add declaration.
4101 * complaints.c (_initialize_complaints): Add declaration.
4102 * completer.c (_initialize_completer): Add declaration.
4103 * copying.c (_initialize_copying): Add declaration.
4104 * corefile.c (_initialize_core): Add declaration.
4105 * corelow.c (_initialize_corelow): Add declaration.
4106 * cp-abi.c (_initialize_cp_abi): Add declaration.
4107 * cp-namespace.c (_initialize_cp_namespace): Add declaration.
4108 * cp-support.c (_initialize_cp_support): Add declaration.
4109 * cp-valprint.c (_initialize_cp_valprint): Add declaration.
4110 * cris-linux-tdep.c (_initialize_cris_linux_tdep): Add declaration.
4111 * cris-tdep.c (_initialize_cris_tdep): Add declaration.
4112 * csky-linux-tdep.c (_initialize_csky_linux_tdep): Add declaration.
4113 * csky-tdep.c (_initialize_csky_tdep): Add declaration.
4114 * ctfread.c (_initialize_ctfread): Add declaration.
4115 * d-lang.c (_initialize_d_language): Add declaration.
4116 * darwin-nat-info.c (_initialize_darwin_info_commands): Add declaration.
4117 * darwin-nat.c (_initialize_darwin_nat): Add declaration.
4118 * dbxread.c (_initialize_dbxread): Add declaration.
4119 * dcache.c (_initialize_dcache): Add declaration.
4120 * disasm-selftests.c (_initialize_disasm_selftests): Add declaration.
4121 * disasm.c (_initialize_disasm): Add declaration.
4122 * dtrace-probe.c (_initialize_dtrace_probe): Add declaration.
4123 * dummy-frame.c (_initialize_dummy_frame): Add declaration.
4124 * dwarf-index-cache.c (_initialize_index_cache): Add declaration.
4125 * dwarf-index-write.c (_initialize_dwarf_index_write): Add declaration.
4126 * dwarf2-frame-tailcall.c (_initialize_tailcall_frame): Add declaration.
4127 * dwarf2-frame.c (_initialize_dwarf2_frame): Add declaration.
4128 * dwarf2expr.c (_initialize_dwarf2expr): Add declaration.
4129 * dwarf2loc.c (_initialize_dwarf2loc): Add declaration.
4130 * dwarf2read.c (_initialize_dwarf2_read): Add declaration.
4131 * elfread.c (_initialize_elfread): Add declaration.
4132 * exec.c (_initialize_exec): Add declaration.
4133 * extension.c (_initialize_extension): Add declaration.
4134 * f-lang.c (_initialize_f_language): Add declaration.
4135 * f-valprint.c (_initialize_f_valprint): Add declaration.
4136 * fbsd-nat.c (_initialize_fbsd_nat): Add declaration.
4137 * fbsd-tdep.c (_initialize_fbsd_tdep): Add declaration.
4138 * filesystem.c (_initialize_filesystem): Add declaration.
4139 * findcmd.c (_initialize_mem_search): Add declaration.
4140 * findvar.c (_initialize_findvar): Add declaration.
4141 * fork-child.c (_initialize_fork_child): Add declaration.
4142 * frame-base.c (_initialize_frame_base): Add declaration.
4143 * frame-unwind.c (_initialize_frame_unwind): Add declaration.
4144 * frame.c (_initialize_frame): Add declaration.
4145 * frv-linux-tdep.c (_initialize_frv_linux_tdep): Add declaration.
4146 * frv-tdep.c (_initialize_frv_tdep): Add declaration.
4147 * ft32-tdep.c (_initialize_ft32_tdep): Add declaration.
4148 * gcore.c (_initialize_gcore): Add declaration.
4149 * gdb-demangle.c (_initialize_gdb_demangle): Add declaration.
4150 * gdb_bfd.c (_initialize_gdb_bfd): Add declaration.
4151 * gdbarch-selftests.c (_initialize_gdbarch_selftests): Add declaration.
4152 * gdbarch.c (_initialize_gdbarch): Add declaration.
4153 * gdbtypes.c (_initialize_gdbtypes): Add declaration.
4154 * gnu-nat.c (_initialize_gnu_nat): Add declaration.
4155 * gnu-v2-abi.c (_initialize_gnu_v2_abi): Add declaration.
4156 * gnu-v3-abi.c (_initialize_gnu_v3_abi): Add declaration.
4157 * go-lang.c (_initialize_go_language): Add declaration.
4158 * go32-nat.c (_initialize_go32_nat): Add declaration.
4159 * guile/guile.c (_initialize_guile): Add declaration.
4160 * h8300-tdep.c (_initialize_h8300_tdep): Add declaration.
4161 * hppa-linux-nat.c (_initialize_hppa_linux_nat): Add declaration.
4162 * hppa-linux-tdep.c (_initialize_hppa_linux_tdep): Add declaration.
4163 * hppa-nbsd-nat.c (_initialize_hppanbsd_nat): Add declaration.
4164 * hppa-nbsd-tdep.c (_initialize_hppanbsd_tdep): Add declaration.
4165 * hppa-obsd-nat.c (_initialize_hppaobsd_nat): Add declaration.
4166 * hppa-obsd-tdep.c (_initialize_hppabsd_tdep): Add declaration.
4167 * hppa-tdep.c (_initialize_hppa_tdep): Add declaration.
4168 * i386-bsd-nat.c (_initialize_i386bsd_nat): Add declaration.
4169 * i386-cygwin-tdep.c (_initialize_i386_cygwin_tdep): Add declaration.
4170 * i386-darwin-nat.c (_initialize_i386_darwin_nat): Add declaration.
4171 * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): Add declaration.
4172 * i386-dicos-tdep.c (_initialize_i386_dicos_tdep): Add declaration.
4173 * i386-fbsd-nat.c (_initialize_i386fbsd_nat): Add declaration.
4174 * i386-fbsd-tdep.c (_initialize_i386fbsd_tdep): Add declaration.
4175 * i386-gnu-nat.c (_initialize_i386gnu_nat): Add declaration.
4176 * i386-gnu-tdep.c (_initialize_i386gnu_tdep): Add declaration.
4177 * i386-go32-tdep.c (_initialize_i386_go32_tdep): Add declaration.
4178 * i386-linux-nat.c (_initialize_i386_linux_nat): Add declaration.
4179 * i386-linux-tdep.c (_initialize_i386_linux_tdep): Add declaration.
4180 * i386-nbsd-nat.c (_initialize_i386nbsd_nat): Add declaration.
4181 * i386-nbsd-tdep.c (_initialize_i386nbsd_tdep): Add declaration.
4182 * i386-nto-tdep.c (_initialize_i386nto_tdep): Add declaration.
4183 * i386-obsd-nat.c (_initialize_i386obsd_nat): Add declaration.
4184 * i386-obsd-tdep.c (_initialize_i386obsd_tdep): Add declaration.
4185 * i386-sol2-nat.c (_initialize_amd64_sol2_nat): Add declaration.
4186 * i386-sol2-tdep.c (_initialize_i386_sol2_tdep): Add declaration.
4187 * i386-tdep.c (_initialize_i386_tdep): Add declaration.
4188 * i386-windows-nat.c (_initialize_i386_windows_nat): Add declaration.
4189 * ia64-libunwind-tdep.c (_initialize_libunwind_frame): Add declaration.
4190 * ia64-linux-nat.c (_initialize_ia64_linux_nat): Add declaration.
4191 * ia64-linux-tdep.c (_initialize_ia64_linux_tdep): Add declaration.
4192 * ia64-tdep.c (_initialize_ia64_tdep): Add declaration.
4193 * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Add declaration.
4194 * infcall.c (_initialize_infcall): Add declaration.
4195 * infcmd.c (_initialize_infcmd): Add declaration.
4196 * inflow.c (_initialize_inflow): Add declaration.
4197 * infrun.c (_initialize_infrun): Add declaration.
4198 * interps.c (_initialize_interpreter): Add declaration.
4199 * iq2000-tdep.c (_initialize_iq2000_tdep): Add declaration.
4200 * jit.c (_initialize_jit): Add declaration.
4201 * language.c (_initialize_language): Add declaration.
4202 * linux-fork.c (_initialize_linux_fork): Add declaration.
4203 * linux-nat.c (_initialize_linux_nat): Add declaration.
4204 * linux-tdep.c (_initialize_linux_tdep): Add declaration.
4205 * linux-thread-db.c (_initialize_thread_db): Add declaration.
4206 * lm32-tdep.c (_initialize_lm32_tdep): Add declaration.
4207 * m2-lang.c (_initialize_m2_language): Add declaration.
4208 * m32c-tdep.c (_initialize_m32c_tdep): Add declaration.
4209 * m32r-linux-nat.c (_initialize_m32r_linux_nat): Add declaration.
4210 * m32r-linux-tdep.c (_initialize_m32r_linux_tdep): Add declaration.
4211 * m32r-tdep.c (_initialize_m32r_tdep): Add declaration.
4212 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Add declaration.
4213 * m68k-bsd-nat.c (_initialize_m68kbsd_nat): Add declaration.
4214 * m68k-bsd-tdep.c (_initialize_m68kbsd_tdep): Add declaration.
4215 * m68k-linux-nat.c (_initialize_m68k_linux_nat): Add declaration.
4216 * m68k-linux-tdep.c (_initialize_m68k_linux_tdep): Add declaration.
4217 * m68k-tdep.c (_initialize_m68k_tdep): Add declaration.
4218 * machoread.c (_initialize_machoread): Add declaration.
4219 * macrocmd.c (_initialize_macrocmd): Add declaration.
4220 * macroscope.c (_initialize_macroscope): Add declaration.
4221 * maint-test-options.c (_initialize_maint_test_options): Add declaration.
4222 * maint-test-settings.c (_initialize_maint_test_settings): Add declaration.
4223 * maint.c (_initialize_maint_cmds): Add declaration.
4224 * mdebugread.c (_initialize_mdebugread): Add declaration.
4225 * memattr.c (_initialize_mem): Add declaration.
4226 * mep-tdep.c (_initialize_mep_tdep): Add declaration.
4227 * mi/mi-cmd-env.c (_initialize_mi_cmd_env): Add declaration.
4228 * mi/mi-cmds.c (_initialize_mi_cmds): Add declaration.
4229 * mi/mi-interp.c (_initialize_mi_interp): Add declaration.
4230 * mi/mi-main.c (_initialize_mi_main): Add declaration.
4231 * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): Add declaration.
4232 * microblaze-tdep.c (_initialize_microblaze_tdep): Add declaration.
4233 * mips-fbsd-nat.c (_initialize_mips_fbsd_nat): Add declaration.
4234 * mips-fbsd-tdep.c (_initialize_mips_fbsd_tdep): Add declaration.
4235 * mips-linux-nat.c (_initialize_mips_linux_nat): Add declaration.
4236 * mips-linux-tdep.c (_initialize_mips_linux_tdep): Add declaration.
4237 * mips-nbsd-nat.c (_initialize_mipsnbsd_nat): Add declaration.
4238 * mips-nbsd-tdep.c (_initialize_mipsnbsd_tdep): Add declaration.
4239 * mips-sde-tdep.c (_initialize_mips_sde_tdep): Add declaration.
4240 * mips-tdep.c (_initialize_mips_tdep): Add declaration.
4241 * mips64-obsd-nat.c (_initialize_mips64obsd_nat): Add declaration.
4242 * mips64-obsd-tdep.c (_initialize_mips64obsd_tdep): Add declaration.
4243 * mipsread.c (_initialize_mipsread): Add declaration.
4244 * mn10300-linux-tdep.c (_initialize_mn10300_linux_tdep): Add declaration.
4245 * mn10300-tdep.c (_initialize_mn10300_tdep): Add declaration.
4246 * moxie-tdep.c (_initialize_moxie_tdep): Add declaration.
4247 * msp430-tdep.c (_initialize_msp430_tdep): Add declaration.
4248 * nds32-tdep.c (_initialize_nds32_tdep): Add declaration.
4249 * nios2-linux-tdep.c (_initialize_nios2_linux_tdep): Add declaration.
4250 * nios2-tdep.c (_initialize_nios2_tdep): Add declaration.
4251 * nto-procfs.c (_initialize_procfs): Add declaration.
4252 * objc-lang.c (_initialize_objc_language): Add declaration.
4253 * observable.c (_initialize_observer): Add declaration.
4254 * opencl-lang.c (_initialize_opencl_language): Add declaration.
4255 * or1k-linux-tdep.c (_initialize_or1k_linux_tdep): Add declaration.
4256 * or1k-tdep.c (_initialize_or1k_tdep): Add declaration.
4257 * osabi.c (_initialize_gdb_osabi): Add declaration.
4258 * osdata.c (_initialize_osdata): Add declaration.
4259 * p-valprint.c (_initialize_pascal_valprint): Add declaration.
4260 * parse.c (_initialize_parse): Add declaration.
4261 * ppc-fbsd-nat.c (_initialize_ppcfbsd_nat): Add declaration.
4262 * ppc-fbsd-tdep.c (_initialize_ppcfbsd_tdep): Add declaration.
4263 * ppc-linux-nat.c (_initialize_ppc_linux_nat): Add declaration.
4264 * ppc-linux-tdep.c (_initialize_ppc_linux_tdep): Add declaration.
4265 * ppc-nbsd-nat.c (_initialize_ppcnbsd_nat): Add declaration.
4266 * ppc-nbsd-tdep.c (_initialize_ppcnbsd_tdep): Add declaration.
4267 * ppc-obsd-nat.c (_initialize_ppcobsd_nat): Add declaration.
4268 * ppc-obsd-tdep.c (_initialize_ppcobsd_tdep): Add declaration.
4269 * printcmd.c (_initialize_printcmd): Add declaration.
4270 * probe.c (_initialize_probe): Add declaration.
4271 * proc-api.c (_initialize_proc_api): Add declaration.
4272 * proc-events.c (_initialize_proc_events): Add declaration.
4273 * proc-service.c (_initialize_proc_service): Add declaration.
4274 * procfs.c (_initialize_procfs): Add declaration.
4275 * producer.c (_initialize_producer): Add declaration.
4276 * psymtab.c (_initialize_psymtab): Add declaration.
4277 * python/python.c (_initialize_python): Add declaration.
4278 * ravenscar-thread.c (_initialize_ravenscar): Add declaration.
4279 * record-btrace.c (_initialize_record_btrace): Add declaration.
4280 * record-full.c (_initialize_record_full): Add declaration.
4281 * record.c (_initialize_record): Add declaration.
4282 * regcache-dump.c (_initialize_regcache_dump): Add declaration.
4283 * regcache.c (_initialize_regcache): Add declaration.
4284 * reggroups.c (_initialize_reggroup): Add declaration.
4285 * remote-notif.c (_initialize_notif): Add declaration.
4286 * remote-sim.c (_initialize_remote_sim): Add declaration.
4287 * remote.c (_initialize_remote): Add declaration.
4288 * reverse.c (_initialize_reverse): Add declaration.
4289 * riscv-fbsd-nat.c (_initialize_riscv_fbsd_nat): Add declaration.
4290 * riscv-fbsd-tdep.c (_initialize_riscv_fbsd_tdep): Add declaration.
4291 * riscv-linux-nat.c (_initialize_riscv_linux_nat): Add declaration.
4292 * riscv-linux-tdep.c (_initialize_riscv_linux_tdep): Add declaration.
4293 * riscv-tdep.c (_initialize_riscv_tdep): Add declaration.
4294 * rl78-tdep.c (_initialize_rl78_tdep): Add declaration.
4295 * rs6000-aix-tdep.c (_initialize_rs6000_aix_tdep): Add declaration.
4296 * rs6000-lynx178-tdep.c (_initialize_rs6000_lynx178_tdep):
4297 Add declaration.
4298 * rs6000-nat.c (_initialize_rs6000_nat): Add declaration.
4299 * rs6000-tdep.c (_initialize_rs6000_tdep): Add declaration.
4300 * run-on-main-thread.c (_initialize_run_on_main_thread): Add declaration.
4301 * rust-exp.y (_initialize_rust_exp): Add declaration.
4302 * rx-tdep.c (_initialize_rx_tdep): Add declaration.
4303 * s12z-tdep.c (_initialize_s12z_tdep): Add declaration.
4304 * s390-linux-nat.c (_initialize_s390_nat): Add declaration.
4305 * s390-linux-tdep.c (_initialize_s390_linux_tdep): Add declaration.
4306 * s390-tdep.c (_initialize_s390_tdep): Add declaration.
4307 * score-tdep.c (_initialize_score_tdep): Add declaration.
4308 * ser-go32.c (_initialize_ser_dos): Add declaration.
4309 * ser-mingw.c (_initialize_ser_windows): Add declaration.
4310 * ser-pipe.c (_initialize_ser_pipe): Add declaration.
4311 * ser-tcp.c (_initialize_ser_tcp): Add declaration.
4312 * ser-uds.c (_initialize_ser_socket): Add declaration.
4313 * ser-unix.c (_initialize_ser_hardwire): Add declaration.
4314 * serial.c (_initialize_serial): Add declaration.
4315 * sh-linux-tdep.c (_initialize_sh_linux_tdep): Add declaration.
4316 * sh-nbsd-nat.c (_initialize_shnbsd_nat): Add declaration.
4317 * sh-nbsd-tdep.c (_initialize_shnbsd_tdep): Add declaration.
4318 * sh-tdep.c (_initialize_sh_tdep): Add declaration.
4319 * skip.c (_initialize_step_skip): Add declaration.
4320 * sol-thread.c (_initialize_sol_thread): Add declaration.
4321 * solib-aix.c (_initialize_solib_aix): Add declaration.
4322 * solib-darwin.c (_initialize_darwin_solib): Add declaration.
4323 * solib-dsbt.c (_initialize_dsbt_solib): Add declaration.
4324 * solib-frv.c (_initialize_frv_solib): Add declaration.
4325 * solib-svr4.c (_initialize_svr4_solib): Add declaration.
4326 * solib-target.c (_initialize_solib_target): Add declaration.
4327 * solib.c (_initialize_solib): Add declaration.
4328 * source-cache.c (_initialize_source_cache): Add declaration.
4329 * source.c (_initialize_source): Add declaration.
4330 * sparc-linux-nat.c (_initialize_sparc_linux_nat): Add declaration.
4331 * sparc-linux-tdep.c (_initialize_sparc_linux_tdep): Add declaration.
4332 * sparc-nat.c (_initialize_sparc_nat): Add declaration.
4333 * sparc-nbsd-nat.c (_initialize_sparcnbsd_nat): Add declaration.
4334 * sparc-nbsd-tdep.c (_initialize_sparcnbsd_tdep): Add declaration.
4335 * sparc-obsd-tdep.c (_initialize_sparc32obsd_tdep): Add declaration.
4336 * sparc-sol2-tdep.c (_initialize_sparc_sol2_tdep): Add declaration.
4337 * sparc-tdep.c (_initialize_sparc_tdep): Add declaration.
4338 * sparc64-fbsd-nat.c (_initialize_sparc64fbsd_nat): Add declaration.
4339 * sparc64-fbsd-tdep.c (_initialize_sparc64fbsd_tdep): Add declaration.
4340 * sparc64-linux-nat.c (_initialize_sparc64_linux_nat): Add declaration.
4341 * sparc64-linux-tdep.c (_initialize_sparc64_linux_tdep): Add declaration.
4342 * sparc64-nat.c (_initialize_sparc64_nat): Add declaration.
4343 * sparc64-nbsd-nat.c (_initialize_sparc64nbsd_nat): Add declaration.
4344 * sparc64-nbsd-tdep.c (_initialize_sparc64nbsd_tdep): Add declaration.
4345 * sparc64-obsd-nat.c (_initialize_sparc64obsd_nat): Add declaration.
4346 * sparc64-obsd-tdep.c (_initialize_sparc64obsd_tdep): Add declaration.
4347 * sparc64-sol2-tdep.c (_initialize_sparc64_sol2_tdep): Add declaration.
4348 * sparc64-tdep.c (_initialize_sparc64_adi_tdep): Add declaration.
4349 * stabsread.c (_initialize_stabsread): Add declaration.
4350 * stack.c (_initialize_stack): Add declaration.
4351 * stap-probe.c (_initialize_stap_probe): Add declaration.
4352 * std-regs.c (_initialize_frame_reg): Add declaration.
4353 * symfile-debug.c (_initialize_symfile_debug): Add declaration.
4354 * symfile-mem.c (_initialize_symfile_mem): Add declaration.
4355 * symfile.c (_initialize_symfile): Add declaration.
4356 * symmisc.c (_initialize_symmisc): Add declaration.
4357 * symtab.c (_initialize_symtab): Add declaration.
4358 * target.c (_initialize_target): Add declaration.
4359 * target-connection.c (_initialize_target_connection): Add
4360 declaration.
4361 * target-dcache.c (_initialize_target_dcache): Add declaration.
4362 * target-descriptions.c (_initialize_target_descriptions): Add declaration.
4363 * thread.c (_initialize_thread): Add declaration.
4364 * tic6x-linux-tdep.c (_initialize_tic6x_linux_tdep): Add declaration.
4365 * tic6x-tdep.c (_initialize_tic6x_tdep): Add declaration.
4366 * tilegx-linux-nat.c (_initialize_tile_linux_nat): Add declaration.
4367 * tilegx-linux-tdep.c (_initialize_tilegx_linux_tdep): Add declaration.
4368 * tilegx-tdep.c (_initialize_tilegx_tdep): Add declaration.
4369 * tracectf.c (_initialize_ctf): Add declaration.
4370 * tracefile-tfile.c (_initialize_tracefile_tfile): Add declaration.
4371 * tracefile.c (_initialize_tracefile): Add declaration.
4372 * tracepoint.c (_initialize_tracepoint): Add declaration.
4373 * tui/tui-hooks.c (_initialize_tui_hooks): Add declaration.
4374 * tui/tui-interp.c (_initialize_tui_interp): Add declaration.
4375 * tui/tui-layout.c (_initialize_tui_layout): Add declaration.
4376 * tui/tui-regs.c (_initialize_tui_regs): Add declaration.
4377 * tui/tui-stack.c (_initialize_tui_stack): Add declaration.
4378 * tui/tui-win.c (_initialize_tui_win): Add declaration.
4379 * tui/tui.c (_initialize_tui): Add declaration.
4380 * typeprint.c (_initialize_typeprint): Add declaration.
4381 * ui-style.c (_initialize_ui_style): Add declaration.
4382 * unittests/array-view-selftests.c (_initialize_array_view_selftests): Add declaration.
4383 * unittests/child-path-selftests.c (_initialize_child_path_selftests): Add declaration.
4384 * unittests/cli-utils-selftests.c (_initialize_cli_utils_selftests): Add declaration.
4385 * unittests/common-utils-selftests.c (_initialize_common_utils_selftests): Add declaration.
4386 * unittests/copy_bitwise-selftests.c (_initialize_copy_bitwise_utils_selftests): Add declaration.
4387 * unittests/environ-selftests.c (_initialize_environ_selftests): Add declaration.
4388 * unittests/filtered_iterator-selftests.c
4389 (_initialize_filtered_iterator_selftests): Add declaration.
4390 * unittests/format_pieces-selftests.c (_initialize_format_pieces_selftests): Add declaration.
4391 * unittests/function-view-selftests.c (_initialize_function_view_selftests): Add declaration.
4392 * unittests/help-doc-selftests.c (_initialize_help_doc_selftests): Add declaration.
4393 * unittests/lookup_name_info-selftests.c (_initialize_lookup_name_info_selftests): Add declaration.
4394 * unittests/main-thread-selftests.c
4395 (_initialize_main_thread_selftests): Add declaration.
4396 * unittests/memory-map-selftests.c (_initialize_memory_map_selftests): Add declaration.
4397 * unittests/memrange-selftests.c (_initialize_memrange_selftests): Add declaration.
4398 * unittests/mkdir-recursive-selftests.c (_initialize_mkdir_recursive_selftests): Add declaration.
4399 * unittests/observable-selftests.c (_initialize_observer_selftest): Add declaration.
4400 * unittests/offset-type-selftests.c (_initialize_offset_type_selftests): Add declaration.
4401 * unittests/optional-selftests.c (_initialize_optional_selftests): Add declaration.
4402 * unittests/parse-connection-spec-selftests.c (_initialize_parse_connection_spec_selftests): Add declaration.
4403 * unittests/rsp-low-selftests.c (_initialize_rsp_low_selftests): Add declaration.
4404 * unittests/scoped_fd-selftests.c (_initialize_scoped_fd_selftests): Add declaration.
4405 * unittests/scoped_mmap-selftests.c (_initialize_scoped_mmap_selftests): Add declaration.
4406 * unittests/scoped_restore-selftests.c (_initialize_scoped_restore_selftests): Add declaration.
4407 * unittests/string_view-selftests.c (_initialize_string_view_selftests): Add declaration.
4408 * unittests/style-selftests.c (_initialize_style_selftest): Add declaration.
4409 * unittests/tracepoint-selftests.c (_initialize_tracepoint_selftests): Add declaration.
4410 * unittests/tui-selftests.c (_initialize_tui_selftest): Add
4411 declaration.
4412 * unittests/unpack-selftests.c (_initialize_unpack_selftests): Add declaration.
4413 * unittests/utils-selftests.c (_initialize_utils_selftests): Add declaration.
4414 * unittests/vec-utils-selftests.c (_initialize_vec_utils_selftests): Add declaration.
4415 * unittests/xml-utils-selftests.c (_initialize_xml_utils): Add declaration.
4416 * user-regs.c (_initialize_user_regs): Add declaration.
4417 * utils.c (_initialize_utils): Add declaration.
4418 * v850-tdep.c (_initialize_v850_tdep): Add declaration.
4419 * valops.c (_initialize_valops): Add declaration.
4420 * valprint.c (_initialize_valprint): Add declaration.
4421 * value.c (_initialize_values): Add declaration.
4422 * varobj.c (_initialize_varobj): Add declaration.
4423 * vax-bsd-nat.c (_initialize_vaxbsd_nat): Add declaration.
4424 * vax-nbsd-tdep.c (_initialize_vaxnbsd_tdep): Add declaration.
4425 * vax-tdep.c (_initialize_vax_tdep): Add declaration.
4426 * windows-nat.c (_initialize_windows_nat): Add declaration.
4427 (_initialize_check_for_gdb_ini): Add declaration.
4428 (_initialize_loadable): Add declaration.
4429 * windows-tdep.c (_initialize_windows_tdep): Add declaration.
4430 * x86-bsd-nat.c (_initialize_x86_bsd_nat): Add declaration.
4431 * x86-linux-nat.c (_initialize_x86_linux_nat): Add declaration.
4432 * xcoffread.c (_initialize_xcoffread): Add declaration.
4433 * xml-support.c (_initialize_xml_support): Add declaration.
4434 * xstormy16-tdep.c (_initialize_xstormy16_tdep): Add declaration.
4435 * xtensa-linux-nat.c (_initialize_xtensa_linux_nat): Add declaration.
4436 * xtensa-linux-tdep.c (_initialize_xtensa_linux_tdep): Add declaration.
4437 * xtensa-tdep.c (_initialize_xtensa_tdep): Add declaration.
4438
e2de1eec
SM
44392020-01-13 Simon Marchi <simon.marchi@polymtl.ca>
4440
4441 * regformats/regdat.sh: Generate declaration for init function.
4442
e0037b4c
SM
44432020-01-13 Simon Marchi <simon.marchi@polymtl.ca>
4444
4445 * remote-sim.c (next_pid, INITIAL_PID, sim_inferior_data): Move
4446 up.
4447 (gdbsim_target) <get_inferior_data_by_ptid, resume_one_inferior,
4448 close_one_inferior>: New methods.
4449 (get_sim_inferior_data_by_ptid): Move to gdbsim_target,
4450 pass down target to find_inferior_pid.
4451 (gdbsim_target::fetch_registers, gdbsim_target::store_registers):
4452 Pass down target to find_inferior_ptid.
4453 (gdbsim_target::create_inferior): Pass down target to
4454 add_thread_silent.
4455 (gdbsim_close_inferior): Move to gdbsim_close_inferior, pass
4456 target down to find_inferior_ptid and switch_to_thread.
4457 (gdbsim_target::close): Update to call close_one_inferior.
4458 (struct resume_data): Remove.
4459 (gdbsim_resume_inferior): Move to gdbsim_target. Take arguments
4460 directly, rather than through a void pointer.
4461 (gdbsim_target::resume): Update to call resume_one_inferior.
4462
58920b5b
SM
44632020-01-12 Simon Marchi <simon.marchi@polymtl.ca>
4464
4465 * gdbsupport/gdb_wait.c: Include gdb_wait.h.
4466
4ec89149
PA
44672020-01-12 Pedro Alves <palves@redhat.com>
4468
4469 * bsd-kvm.c (bsd_kvm_target::close): Call exit_inferior_silent
4470 directly for the current inferior instead of
4471 discard_all_inferiors.
4472 (discard_all_inferiors): Delete.
4473
7c392d1d
TT
44742020-01-11 Tom Tromey <tom@tromey.com>
4475
4476 * tui/tui-wingeneral.c (box_win): Check cli_styling.
4477 * tui/tui-winsource.c (tui_source_window_base::refill): Use
4478 deprecated_safe_get_selected_frame.
4479
d9ebdab7
TBA
44802020-01-10 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
4481
4482 * inferior.c (print_inferior): Switch inferior before printing it.
4483
f3c469b9
PA
44842020-01-10 Aleksandar Paunovic <aleksandar.paunovic@intel.com>
4485 Pedro Alves <palves@redhat.com>
4486
4487 * progspace-and-thread.c (switch_to_program_space_and_thread):
4488 Assert there's an inferior for PSPACE. Use
4489 switch_to_inferior_no_thread to switch the inferior too.
4490 * progspace.c (program_space::~program_space): Call
4491 clear_symtab_users here, with SYMFILE_DEFER_BP_RESET.
4492 (program_space::free_all_objfiles): Don't call clear_symtab_users
4493 here.
4494 * symfile.c (symbol_file_clear): Call clear_symtab_users here.
4495
65c574f6
PA
44962020-01-10 Pedro Alves <palves@redhat.com>
4497
4498 * NEWS: Mention multi-target debugging, "info connections", and
4499 "add-inferior -no-connection".
4500
2f4fcf00
PA
45012020-01-10 Pedro Alves <palves@redhat.com>
4502
4503 * infrun.c: Include "target-connection.h".
4504 (check_multi_target_resumption): New.
4505 (proceed): Call it.
4506 * target-connection.c (make_target_connection_string): Make
4507 extern.
4508 * target-connection.h (make_target_connection_string): Declare.
4509
121b3efd
PA
45102020-01-10 Pedro Alves <palves@redhat.com>
4511
4512 * Makefile.in (COMMON_SFILES): Add target-connection.c.
4513 * inferior.c (uiout_field_connection): New function.
4514 (print_inferior): Add new "connection-id" column.
4515 (add_inferior_command): Show connection number/string of added
4516 inferior.
4517 * process-stratum-target.h
4518 (process_stratum_target::connection_string): New virtual method.
4519 (process_stratum_target::connection_number): New field.
4520 * remote.c (remote_target::connection_string): New override.
4521 * target-connection.c: New file.
4522 * target-connection.h: New file.
4523 * target.c (decref_target): Remove process_stratum targets from
4524 the connection list.
4525 (target_stack::push): Add process_stratum targets to the
4526 connection list.
4527
4f837581
PA
45282020-01-10 Pedro Alves <palves@redhat.com>
4529
4530 Revert:
4531 2016-04-12 Pedro Alves <palves@redhat.com>
4532 * serial.c (serial_open, serial_fdopen_ops, do_serial_close):
4533 Remove references to name.
4534 * serial.h (struct serial) <name>: Delete.
4535
f4ec508e
PA
45362020-01-10 Pedro Alves <palves@redhat.com>
4537
4538 * gdbarch-selftests.c (register_to_value_test): Remove "target
4539 already pushed" check.
4540
5b6d1e4f
PA
45412020-01-10 Pedro Alves <palves@redhat.com>
4542 John Baldwin <jhb@FreeBSD.org>
4543
4544 * aarch64-linux-nat.c
4545 (aarch64_linux_nat_target::thread_architecture): Adjust.
4546 * ada-tasks.c (print_ada_task_info): Adjust find_thread_ptid call.
4547 (task_command_1): Likewise.
4548 * aix-thread.c (sync_threadlists, aix_thread_target::resume)
4549 (aix_thread_target::wait, aix_thread_target::fetch_registers)
4550 (aix_thread_target::store_registers)
4551 (aix_thread_target::thread_alive): Adjust.
4552 * amd64-fbsd-tdep.c: Include "inferior.h".
4553 (amd64fbsd_get_thread_local_address): Pass down target.
4554 * amd64-linux-nat.c (ps_get_thread_area): Use ps_prochandle
4555 thread's gdbarch instead of target_gdbarch.
4556 * break-catch-sig.c (signal_catchpoint_print_it): Adjust call to
4557 get_last_target_status.
4558 * break-catch-syscall.c (print_it_catch_syscall): Likewise.
4559 * breakpoint.c (breakpoints_should_be_inserted_now): Consider all
4560 inferiors.
4561 (update_inserted_breakpoint_locations): Skip if inferiors with no
4562 execution.
4563 (update_global_location_list): When handling moribund locations,
4564 find representative inferior for location's pspace, and use thread
4565 count of its process_stratum target.
4566 * bsd-kvm.c (bsd_kvm_target_open): Pass target down.
4567 * bsd-uthread.c (bsd_uthread_target::wait): Use
4568 as_process_stratum_target and adjust thread_change_ptid and
4569 add_thread calls.
4570 (bsd_uthread_target::update_thread_list): Use
4571 as_process_stratum_target and adjust find_thread_ptid,
4572 thread_change_ptid and add_thread calls.
4573 * btrace.c (maint_btrace_packet_history_cmd): Adjust
4574 find_thread_ptid call.
4575 * corelow.c (add_to_thread_list): Adjust add_thread call.
4576 (core_target_open): Adjust add_thread_silent and thread_count
4577 calls.
4578 (core_target::pid_to_str): Adjust find_inferior_ptid call.
4579 * ctf.c (ctf_target_open): Adjust add_thread_silent call.
4580 * event-top.c (async_disconnect): Pop targets from all inferiors.
4581 * exec.c (add_target_sections): Push exec target on all inferiors
4582 sharing the program space.
4583 (remove_target_sections): Remove the exec target from all
4584 inferiors sharing the program space.
4585 (exec_on_vfork): New.
4586 * exec.h (exec_on_vfork): Declare.
4587 * fbsd-nat.c (fbsd_add_threads): Add fbsd_nat_target parameter.
4588 Pass it down.
4589 (fbsd_nat_target::update_thread_list): Adjust.
4590 (fbsd_nat_target::resume): Adjust.
4591 (fbsd_handle_debug_trap): Add fbsd_nat_target parameter. Pass it
4592 down.
4593 (fbsd_nat_target::wait, fbsd_nat_target::post_attach): Adjust.
4594 * fbsd-tdep.c (fbsd_corefile_thread): Adjust
4595 get_thread_arch_regcache call.
4596 * fork-child.c (gdb_startup_inferior): Pass target down to
4597 startup_inferior and set_executing.
4598 * gdbthread.h (struct process_stratum_target): Forward declare.
4599 (add_thread, add_thread_silent, add_thread_with_info)
4600 (in_thread_list): Add process_stratum_target parameter.
4601 (find_thread_ptid(inferior*, ptid_t)): New overload.
4602 (find_thread_ptid, thread_change_ptid): Add process_stratum_target
4603 parameter.
4604 (all_threads()): Delete overload.
4605 (all_threads, all_non_exited_threads): Add process_stratum_target
4606 parameter.
4607 (all_threads_safe): Use brace initialization.
4608 (thread_count): Add process_stratum_target parameter.
4609 (set_resumed, set_running, set_stop_requested, set_executing)
4610 (threads_are_executing, finish_thread_state): Add
4611 process_stratum_target parameter.
4612 (switch_to_thread): Use is_current_thread.
4613 * i386-fbsd-tdep.c: Include "inferior.h".
4614 (i386fbsd_get_thread_local_address): Pass down target.
4615 * i386-linux-nat.c (i386_linux_nat_target::low_resume): Adjust.
4616 * inf-child.c (inf_child_target::maybe_unpush_target): Remove
4617 have_inferiors check.
4618 * inf-ptrace.c (inf_ptrace_target::create_inferior)
4619 (inf_ptrace_target::attach): Adjust.
4620 * infcall.c (run_inferior_call): Adjust.
4621 * infcmd.c (run_command_1): Pass target to
4622 scoped_finish_thread_state.
4623 (proceed_thread_callback): Skip inferiors with no execution.
4624 (continue_command): Rename 'all_threads' local to avoid hiding
4625 'all_threads' function. Adjust get_last_target_status call.
4626 (prepare_one_step): Adjust set_running call.
4627 (signal_command): Use user_visible_resume_target. Compare thread
4628 pointers instead of inferior_ptid.
4629 (info_program_command): Adjust to pass down target.
4630 (attach_command): Mark target's 'thread_executing' flag.
4631 (stop_current_target_threads_ns): New, factored out from ...
4632 (interrupt_target_1): ... this. Switch inferior before making
4633 target calls.
4634 * inferior-iter.h
4635 (struct all_inferiors_iterator, struct all_inferiors_range)
4636 (struct all_inferiors_safe_range)
4637 (struct all_non_exited_inferiors_range): Filter on
4638 process_stratum_target too. Remove explicit.
4639 * inferior.c (inferior::inferior): Push dummy target on target
4640 stack.
4641 (find_inferior_pid, find_inferior_ptid, number_of_live_inferiors):
4642 Add process_stratum_target parameter, and pass it down.
4643 (have_live_inferiors): Adjust.
4644 (switch_to_inferior_and_push_target): New.
4645 (add_inferior_command, clone_inferior_command): Handle
4646 "-no-connection" parameter. Use
4647 switch_to_inferior_and_push_target.
4648 (_initialize_inferior): Mention "-no-connection" option in
4649 the help of "add-inferior" and "clone-inferior" commands.
4650 * inferior.h: Include "process-stratum-target.h".
4651 (interrupt_target_1): Use bool.
4652 (struct inferior) <push_target, unpush_target, target_is_pushed,
4653 find_target_beneath, top_target, process_target, target_at,
4654 m_stack>: New.
4655 (discard_all_inferiors): Delete.
4656 (find_inferior_pid, find_inferior_ptid, number_of_live_inferiors)
4657 (all_inferiors, all_non_exited_inferiors): Add
4658 process_stratum_target parameter.
4659 * infrun.c: Include "gdb_select.h" and <unordered_map>.
4660 (target_last_proc_target): New global.
4661 (follow_fork_inferior): Push target on new inferior. Pass target
4662 to add_thread_silent. Call exec_on_vfork. Handle target's
4663 reference count.
4664 (follow_fork): Adjust get_last_target_status call. Also consider
4665 target.
4666 (follow_exec): Push target on new inferior.
4667 (struct execution_control_state) <target>: New field.
4668 (user_visible_resume_target): New.
4669 (do_target_resume): Call target_async.
4670 (resume_1): Set target's threads_executing flag. Consider resume
4671 target.
4672 (commit_resume_all_targets): New.
4673 (proceed): Also consider resume target. Skip threads of inferiors
4674 with no execution. Commit resumtion in all targets.
4675 (start_remote): Pass current inferior to wait_for_inferior.
4676 (infrun_thread_stop_requested): Consider target as well. Pass
4677 thread_info pointer to clear_inline_frame_state instead of ptid.
4678 (infrun_thread_thread_exit): Consider target as well.
4679 (random_pending_event_thread): New inferior parameter. Use it.
4680 (do_target_wait): Rename to ...
4681 (do_target_wait_1): ... this. Add inferior parameter, and pass it
4682 down.
4683 (threads_are_resumed_pending_p, do_target_wait): New.
4684 (prepare_for_detach): Adjust calls.
4685 (wait_for_inferior): New inferior parameter. Handle it. Use
4686 do_target_wait_1 instead of do_target_wait.
4687 (fetch_inferior_event): Adjust. Switch to representative
4688 inferior. Pass target down.
4689 (set_last_target_status): Add process_stratum_target parameter.
4690 Save target in global.
4691 (get_last_target_status): Add process_stratum_target parameter and
4692 handle it.
4693 (nullify_last_target_wait_ptid): Clear 'target_last_proc_target'.
4694 (context_switch): Check inferior_ptid == null_ptid before calling
4695 inferior_thread().
4696 (get_inferior_stop_soon): Pass down target.
4697 (wait_one): Rename to ...
4698 (poll_one_curr_target): ... this.
4699 (struct wait_one_event): New.
4700 (wait_one): New.
4701 (stop_all_threads): Adjust.
4702 (handle_no_resumed, handle_inferior_event): Adjust to consider the
4703 event's target.
4704 (switch_back_to_stepped_thread): Also consider target.
4705 (print_stop_event): Update.
4706 (normal_stop): Update. Also consider the resume target.
4707 * infrun.h (wait_for_inferior): Remove declaration.
4708 (user_visible_resume_target): New declaration.
4709 (get_last_target_status, set_last_target_status): New
4710 process_stratum_target parameter.
4711 * inline-frame.c (clear_inline_frame_state(ptid_t)): Add
4712 process_stratum_target parameter, and use it.
4713 (clear_inline_frame_state (thread_info*)): New.
4714 * inline-frame.c (clear_inline_frame_state(ptid_t)): Add
4715 process_stratum_target parameter.
4716 (clear_inline_frame_state (thread_info*)): Declare.
4717 * linux-fork.c (delete_checkpoint_command): Pass target down to
4718 find_thread_ptid.
4719 (checkpoint_command): Adjust.
4720 * linux-nat.c (linux_nat_target::follow_fork): Switch to thread
4721 instead of just tweaking inferior_ptid.
4722 (linux_nat_switch_fork): Pass target down to thread_change_ptid.
4723 (exit_lwp): Pass target down to find_thread_ptid.
4724 (attach_proc_task_lwp_callback): Pass target down to
4725 add_thread/set_running/set_executing.
4726 (linux_nat_target::attach): Pass target down to
4727 thread_change_ptid.
4728 (get_detach_signal): Pass target down to find_thread_ptid.
4729 Consider last target status's target.
4730 (linux_resume_one_lwp_throw, resume_lwp)
4731 (linux_handle_syscall_trap, linux_handle_extended_wait, wait_lwp)
4732 (stop_wait_callback, save_stop_reason, linux_nat_filter_event)
4733 (linux_nat_wait_1, resume_stopped_resumed_lwps): Pass target down.
4734 (linux_nat_target::async_wait_fd): New.
4735 (linux_nat_stop_lwp, linux_nat_target::thread_address_space): Pass
4736 target down.
4737 * linux-nat.h (linux_nat_target::async_wait_fd): Declare.
4738 * linux-tdep.c (get_thread_arch_regcache): Pass target down.
4739 * linux-thread-db.c (struct thread_db_info::process_target): New
4740 field.
4741 (add_thread_db_info): Save target.
4742 (get_thread_db_info): New process_stratum_target parameter. Also
4743 match target.
4744 (delete_thread_db_info): New process_stratum_target parameter.
4745 Also match target.
4746 (thread_from_lwp): Adjust to pass down target.
4747 (thread_db_notice_clone): Pass down target.
4748 (check_thread_db_callback): Pass down target.
4749 (try_thread_db_load_1): Always push the thread_db target.
4750 (try_thread_db_load, record_thread): Pass target down.
4751 (thread_db_target::detach): Pass target down. Always unpush the
4752 thread_db target.
4753 (thread_db_target::wait, thread_db_target::mourn_inferior): Pass
4754 target down. Always unpush the thread_db target.
4755 (find_new_threads_callback, thread_db_find_new_threads_2)
4756 (thread_db_target::update_thread_list): Pass target down.
4757 (thread_db_target::pid_to_str): Pass current inferior down.
4758 (thread_db_target::get_thread_local_address): Pass target down.
4759 (thread_db_target::resume, maintenance_check_libthread_db): Pass
4760 target down.
4761 * nto-procfs.c (nto_procfs_target::update_thread_list): Adjust.
4762 * procfs.c (procfs_target::procfs_init_inferior): Declare.
4763 (proc_set_current_signal, do_attach, procfs_target::wait): Adjust.
4764 (procfs_init_inferior): Rename to ...
4765 (procfs_target::procfs_init_inferior): ... this and adjust.
4766 (procfs_target::create_inferior, procfs_notice_thread)
4767 (procfs_do_thread_registers): Adjust.
4768 * ppc-fbsd-tdep.c: Include "inferior.h".
4769 (ppcfbsd_get_thread_local_address): Pass down target.
4770 * proc-service.c (ps_xfer_memory): Switch current inferior and
4771 program space as well.
4772 (get_ps_regcache): Pass target down.
4773 * process-stratum-target.c
4774 (process_stratum_target::thread_address_space)
4775 (process_stratum_target::thread_architecture): Pass target down.
4776 * process-stratum-target.h
4777 (process_stratum_target::threads_executing): New field.
4778 (as_process_stratum_target): New.
4779 * ravenscar-thread.c
4780 (ravenscar_thread_target::update_inferior_ptid): Pass target down.
4781 (ravenscar_thread_target::wait, ravenscar_add_thread): Pass target
4782 down.
4783 * record-btrace.c (record_btrace_target::info_record): Adjust.
4784 (record_btrace_target::record_method)
4785 (record_btrace_target::record_is_replaying)
4786 (record_btrace_target::fetch_registers)
4787 (get_thread_current_frame_id, record_btrace_target::resume)
4788 (record_btrace_target::wait, record_btrace_target::stop): Pass
4789 target down.
4790 * record-full.c (record_full_wait_1): Switch to event thread.
4791 Pass target down.
4792 * regcache.c (regcache::regcache)
4793 (get_thread_arch_aspace_regcache, get_thread_arch_regcache): Add
4794 process_stratum_target parameter and handle it.
4795 (current_thread_target): New global.
4796 (get_thread_regcache): Add process_stratum_target parameter and
4797 handle it. Switch inferior before calling target method.
4798 (get_thread_regcache): Pass target down.
4799 (get_thread_regcache_for_ptid): Pass target down.
4800 (registers_changed_ptid): Add process_stratum_target parameter and
4801 handle it.
4802 (registers_changed_thread, registers_changed): Pass target down.
4803 (test_get_thread_arch_aspace_regcache): New.
4804 (current_regcache_test): Define a couple local test_target_ops
4805 instances and use them for testing.
4806 (readwrite_regcache): Pass process_stratum_target parameter.
4807 (cooked_read_test, cooked_write_test): Pass mock_target down.
4808 * regcache.h (get_thread_regcache, get_thread_arch_regcache)
4809 (get_thread_arch_aspace_regcache): Add process_stratum_target
4810 parameter.
4811 (regcache::target): New method.
4812 (regcache::regcache, regcache::get_thread_arch_aspace_regcache)
4813 (regcache::registers_changed_ptid): Add process_stratum_target
4814 parameter.
4815 (regcache::m_target): New field.
4816 (registers_changed_ptid): Add process_stratum_target parameter.
4817 * remote.c (remote_state::supports_vCont_probed): New field.
4818 (remote_target::async_wait_fd): New method.
4819 (remote_unpush_and_throw): Add remote_target parameter.
4820 (get_current_remote_target): Adjust.
4821 (remote_target::remote_add_inferior): Push target.
4822 (remote_target::remote_add_thread)
4823 (remote_target::remote_notice_new_inferior)
4824 (get_remote_thread_info): Pass target down.
4825 (remote_target::update_thread_list): Skip threads of inferiors
4826 bound to other targets. (remote_target::close): Don't discard
4827 inferiors. (remote_target::add_current_inferior_and_thread)
4828 (remote_target::process_initial_stop_replies)
4829 (remote_target::start_remote)
4830 (remote_target::remote_serial_quit_handler): Pass down target.
4831 (remote_target::remote_unpush_target): New remote_target
4832 parameter. Unpush the target from all inferiors.
4833 (remote_target::remote_unpush_and_throw): New remote_target
4834 parameter. Pass it down.
4835 (remote_target::open_1): Check whether the current inferior has
4836 execution instead of checking whether any inferior is live. Pass
4837 target down.
4838 (remote_target::remote_detach_1): Pass down target. Use
4839 remote_unpush_target.
4840 (extended_remote_target::attach): Pass down target.
4841 (remote_target::remote_vcont_probe): Set supports_vCont_probed.
4842 (remote_target::append_resumption): Pass down target.
4843 (remote_target::append_pending_thread_resumptions)
4844 (remote_target::remote_resume_with_hc, remote_target::resume)
4845 (remote_target::commit_resume): Pass down target.
4846 (remote_target::remote_stop_ns): Check supports_vCont_probed.
4847 (remote_target::interrupt_query)
4848 (remote_target::remove_new_fork_children)
4849 (remote_target::check_pending_events_prevent_wildcard_vcont)
4850 (remote_target::remote_parse_stop_reply)
4851 (remote_target::process_stop_reply): Pass down target.
4852 (first_remote_resumed_thread): New remote_target parameter. Pass
4853 it down.
4854 (remote_target::wait_as): Pass down target.
4855 (unpush_and_perror): New remote_target parameter. Pass it down.
4856 (remote_target::readchar, remote_target::remote_serial_write)
4857 (remote_target::getpkt_or_notif_sane_1)
4858 (remote_target::kill_new_fork_children, remote_target::kill): Pass
4859 down target.
4860 (remote_target::mourn_inferior): Pass down target. Use
4861 remote_unpush_target.
4862 (remote_target::core_of_thread)
4863 (remote_target::remote_btrace_maybe_reopen): Pass down target.
4864 (remote_target::pid_to_exec_file)
4865 (remote_target::thread_handle_to_thread_info): Pass down target.
4866 (remote_target::async_wait_fd): New.
4867 * riscv-fbsd-tdep.c: Include "inferior.h".
4868 (riscv_fbsd_get_thread_local_address): Pass down target.
4869 * sol2-tdep.c (sol2_core_pid_to_str): Pass down target.
4870 * sol-thread.c (sol_thread_target::wait, ps_lgetregs, ps_lsetregs)
4871 (ps_lgetfpregs, ps_lsetfpregs, sol_update_thread_list_callback):
4872 Adjust.
4873 * solib-spu.c (spu_skip_standalone_loader): Pass down target.
4874 * solib-svr4.c (enable_break): Pass down target.
4875 * spu-multiarch.c (parse_spufs_run): Pass down target.
4876 * spu-tdep.c (spu2ppu_sniffer): Pass down target.
4877 * target-delegates.c: Regenerate.
4878 * target.c (g_target_stack): Delete.
4879 (current_top_target): Return the current inferior's top target.
4880 (target_has_execution_1): Refer to the passed-in inferior's top
4881 target.
4882 (target_supports_terminal_ours): Check whether the initial
4883 inferior was already created.
4884 (decref_target): New.
4885 (target_stack::push): Incref/decref the target.
4886 (push_target, push_target, unpush_target): Adjust.
4887 (target_stack::unpush): Defref target.
4888 (target_is_pushed): Return bool. Adjust to refer to the current
4889 inferior's target stack.
4890 (dispose_inferior): Delete, and inline parts ...
4891 (target_preopen): ... here. Only dispose of the current inferior.
4892 (target_detach): Hold strong target reference while detaching.
4893 Pass target down.
4894 (target_thread_name): Add assertion.
4895 (target_resume): Pass down target.
4896 (target_ops::beneath, find_target_at): Adjust to refer to the
4897 current inferior's target stack.
4898 (get_dummy_target): New.
4899 (target_pass_ctrlc): Pass the Ctrl-C to the first inferior that
4900 has a thread running.
4901 (initialize_targets): Rename to ...
4902 (_initialize_target): ... this.
4903 * target.h: Include "gdbsupport/refcounted-object.h".
4904 (struct target_ops): Inherit refcounted_object.
4905 (target_ops::shortname, target_ops::longname): Make const.
4906 (target_ops::async_wait_fd): New method.
4907 (decref_target): Declare.
4908 (struct target_ops_ref_policy): New.
4909 (target_ops_ref): New typedef.
4910 (get_dummy_target): Declare function.
4911 (target_is_pushed): Return bool.
4912 * thread-iter.c (all_matching_threads_iterator::m_inf_matches)
4913 (all_matching_threads_iterator::all_matching_threads_iterator):
4914 Handle filter target.
4915 * thread-iter.h (struct all_matching_threads_iterator, struct
4916 all_matching_threads_range, class all_non_exited_threads_range):
4917 Filter by target too. Remove explicit.
4918 * thread.c (threads_executing): Delete.
4919 (inferior_thread): Pass down current inferior.
4920 (clear_thread_inferior_resources): Pass down thread pointer
4921 instead of ptid_t.
4922 (add_thread_silent, add_thread_with_info, add_thread): Add
4923 process_stratum_target parameter. Use it for thread and inferior
4924 searches.
4925 (is_current_thread): New.
4926 (thread_info::deletable): Use it.
4927 (find_thread_ptid, thread_count, in_thread_list)
4928 (thread_change_ptid, set_resumed, set_running): New
4929 process_stratum_target parameter. Pass it down.
4930 (set_executing): New process_stratum_target parameter. Pass it
4931 down. Adjust reference to 'threads_executing'.
4932 (threads_are_executing): New process_stratum_target parameter.
4933 Adjust reference to 'threads_executing'.
4934 (set_stop_requested, finish_thread_state): New
4935 process_stratum_target parameter. Pass it down.
4936 (switch_to_thread): Also match inferior.
4937 (switch_to_thread): New process_stratum_target parameter. Pass it
4938 down.
4939 (update_threads_executing): Reimplement.
4940 * top.c (quit_force): Pop targets from all inferior.
4941 (gdb_init): Don't call initialize_targets.
4942 * windows-nat.c (windows_nat_target) <get_windows_debug_event>:
4943 Declare.
4944 (windows_add_thread, windows_delete_thread): Adjust.
4945 (get_windows_debug_event): Rename to ...
4946 (windows_nat_target::get_windows_debug_event): ... this. Adjust.
4947 * tracefile-tfile.c (tfile_target_open): Pass down target.
4948 * gdbsupport/common-gdbthread.h (struct process_stratum_target):
4949 Forward declare.
4950 (switch_to_thread): Add process_stratum_target parameter.
4951 * mi/mi-interp.c (mi_on_resume_1): Add process_stratum_target
4952 parameter. Use it.
4953 (mi_on_resume): Pass target down.
4954 * nat/fork-inferior.c (startup_inferior): Add
4955 process_stratum_target parameter. Pass it down.
4956 * nat/fork-inferior.h (startup_inferior): Add
4957 process_stratum_target parameter.
4958 * python/py-threadevent.c (py_get_event_thread): Pass target down.
4959
75c6c844
PA
49602020-01-10 Pedro Alves <palves@redhat.com>
4961
4962 * remote.c (remote_target::start_remote): Don't set inferior_ptid
4963 directly. Instead find the first thread in the thread list and
4964 use switch_to_thread.
4965
78f2c40a
PA
49662020-01-10 Pedro Alves <palves@redhat.com>
4967
4968 * remote.c (remote_target::remote_add_inferior): Don't bind a
4969 process to the current inferior if the current inferior is already
4970 bound to a process.
4971
e7af6c70
TBA
49722020-01-10 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
4973 Pedro Alves <palves@redhat.com>
4974
4975 * remote.c (remote_target::remote_parse_stop_reply) <W/X packets>:
4976 If no process is specified, return null_ptid instead of
4977 inferior_ptid.
4978 (remote_target::wait_as): Handle TARGET_WAITKIND_EXITED /
4979 TARGET_WAITKIND_SIGNALLED with no pid.
4980
31ba933e
PA
49812020-01-10 Pedro Alves <palves@redhat.com>
4982
4983 * remote.c (first_remote_resumed_thread): New.
4984 (remote_target::wait_as): Use it as default event_ptid instead of
4985 inferior_ptid.
4986
735fc2ca
PA
49872020-01-10 Pedro Alves <palves@redhat.com>
4988
4989 * infrun.c (handle_no_resumed): Use all_non_exited_inferiors.
4990
c17e02e1
PA
49912020-01-10 Pedro Alves <palves@redhat.com>
4992
4993 * tracefile-tfile.c (tfile_target::close): Assert that trace_fd is
4994 not -1.
4995
ab1ddbcf
PA
49962020-01-10 Pedro Alves <palves@redhat.com>
4997
4998 * break-catch-sig.c (signal_catchpoint_print_it): Don't pass a
4999 ptid to get_last_target_status.
5000 * break-catch-syscall.c (print_it_catch_syscall): Don't pass a
5001 ptid to get_last_target_status.
5002 * infcmd.c (continue_command): Don't pass a target_waitstatus to
5003 get_last_target_status.
5004 (info_program_command): Don't pass a target_waitstatus to
5005 get_last_target_status.
5006 * infrun.c (init_wait_for_inferior): Use
5007 nullify_last_target_wait_ptid.
5008 (get_last_target_status): Handle nullptr arguments.
5009 (nullify_last_target_wait_ptid): Clear target_last_waitstatus.
5010 (print_stop_event): Don't pass a ptid to get_last_target_status.
5011 (normal_stop): Don't pass a ptid to get_last_target_status.
5012 * infrun.h (get_last_target_status, set_last_target_status): Move
5013 comments here and update.
5014 (nullify_last_target_wait_ptid): Declare.
5015 * linux-fork.c (fork_load_infrun_state): Remove local extern
5016 declaration of nullify_last_target_wait_ptid.
5017 * linux-nat.c (get_detach_signal): Don't pass a target_waitstatus
5018 to get_last_target_status.
5019
f3f8ece4
PA
50202020-01-10 Pedro Alves <palves@redhat.com>
5021
5022 * gdbthread.h (scoped_restore_current_thread)
5023 <dont_restore, restore, m_dont_restore>: Declare.
5024 * thread.c (thread_alive): Add assertion. Return bool.
5025 (switch_to_thread_if_alive): New.
5026 (prune_threads): Switch inferior/thread.
5027 (print_thread_info_1): Switch thread before calling target methods.
5028 (scoped_restore_current_thread::restore): New, factored out from
5029 ...
5030 (scoped_restore_current_thread::~scoped_restore_current_thread):
5031 ... this.
5032 (scoped_restore_current_thread::scoped_restore_current_thread):
5033 Add assertion.
5034 (thread_apply_all_command, thread_select): Use
5035 switch_to_thread_if_alive.
5036 * infrun.c (proceed, restart_threads, handle_signal_stop)
5037 (switch_back_to_stepped_thread): Switch current thread before
5038 calling target methods.
5039
db2d40f7
PA
50402020-01-10 Pedro Alves <palves@redhat.com>
5041
5042 * inferior.c (switch_to_inferior_no_thread): New function,
5043 factored out from ...
5044 (inferior_command): ... here.
5045 * inferior.h (switch_to_inferior_no_thread): Declare.
5046 * mi/mi-main.c (run_one_inferior): Use
5047 switch_to_inferior_no_thread.
5048
bd420a2d
PA
50492020-01-10 Pedro Alves <palves@redhat.com>
5050
5051 * infcmd.c (kill_command): Remove dead code.
5052
ddf5db90
PA
50532020-01-10 Pedro Alves <palves@redhat.com>
5054
5055 * remote.c (remote_target::mourn_inferior): No longer check
5056 whether the target is running.
5057
5018ce90
PA
50582020-01-10 Pedro Alves <palves@redhat.com>
5059
5060 * corelow.c (core_target::has_execution): Change parameter type to
5061 inferior pointer.
5062 * inferior.c (number_of_live_inferiors): Use
5063 inferior::has_execution instead of target_has_execution_1.
5064 * inferior.h (inferior::has_execution): New.
5065 * linux-thread-db.c (thread_db_target::update_thread_list): Use
5066 inferior::has_execution instead of target_has_execution_1.
5067 * process-stratum-target.c
5068 (process_stratum_target::has_execution): Change parameter type to
5069 inferior pointer. Check the inferior's PID instead of
5070 inferior_ptid.
5071 * process-stratum-target.h
5072 (process_stratum_target::has_execution): Change parameter type to
5073 inferior pointer.
5074 * record-full.c (record_full_core_target::has_execution): Change
5075 parameter type to inferior pointer.
5076 * target.c (target_has_execution_1): Change parameter type to
5077 inferior pointer.
5078 (target_has_execution_current): Adjust.
5079 * target.h (target_ops::has_execution): Change parameter type to
5080 inferior pointer.
5081 (target_has_execution_1): Change parameter type to inferior
5082 pointer. Change return type to bool.
5083 * tracefile.h (tracefile_target::has_execution): Change parameter
5084 type to inferior pointer.
5085
74375d18
PA
50862020-01-10 Pedro Alves <palves@redhat.com>
5087
5088 * exceptions.c (print_flush): Remove current_top_target() check.
5089
acdf84a6
PA
50902020-01-10 Pedro Alves <palves@redhat.com>
5091
5092 * remote.c (show_remote_exec_file): Show the current inferior's
5093 exec-file instead of the command variable's value.
5094
ec506636
PA
50952020-01-10 Pedro Alves <palves@redhat.com>
5096
5097 * record-full.c (record_full_resume_ptid): New global.
5098 (record_full_target::resume): Set it.
5099 (record_full_wait_1): Use record_full_resume_ptid instead of
5100 inferior_ptid.
5101
873657b9
PA
51022020-01-10 Pedro Alves <palves@redhat.com>
5103
5104 * gdbthread.h (scoped_restore_current_thread)
5105 <dont_restore, restore, m_dont_restore>: Declare.
5106 * thread.c (thread_alive): Add assertion. Return bool.
5107 (switch_to_thread_if_alive): New.
5108 (prune_threads): Switch inferior/thread.
5109 (print_thread_info_1): Switch thread before calling target methods.
5110 (scoped_restore_current_thread::restore): New, factored out from
5111 ...
5112 (scoped_restore_current_thread::~scoped_restore_current_thread):
5113 ... this.
5114 (scoped_restore_current_thread::scoped_restore_current_thread):
5115 Add assertion.
5116 (thread_apply_all_command, thread_select): Use
5117 switch_to_thread_if_alive.
5118
7f0ae84c
GB
51192020-01-10 George Barrett <bob@bob131.so>
5120
5121 * stap-probe.c (stap_modify_semaphore): Don't check for null
5122 semaphores.
5123 (stap_probe::set_semaphore, stap_probe::clear_semaphore): Check
5124 for null semaphores.
5125
f5a7c406
AB
51262020-01-09 Andrew Burgess <andrew.burgess@embecosm.com>
5127
5128 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Update
5129 all source windows, and maintain horizontal scroll status while
5130 doing so.
5131
9ae6bf64
TT
51322020-01-09 Tom Tromey <tom@tromey.com>
5133
5134 PR tui/18932:
5135 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Call
5136 update_source_window, not print_source_lines.
5137
b2efe70c
AB
51382020-01-09 Andrew Burgess <andrew.burgess@embecosm.com>
5139
5140 * tui/tui.c (tui_enable): Register tui hooks after calling
5141 tui_display_main.
5142
5f23a082
CB
51432020-01-09 Christian Biesinger <cbiesinger@google.com>
5144
5145 * gdbsupport/common-defs.h: Don't define _FORTIFY_SOURCE on MinGW.
5146
3061113b
SM
51472020-01-08 Simon Marchi <simon.marchi@efficios.com>
5148
5149 * thread.c (print_thread_info_1): Fix indentation.
5150
57d75002
CB
51512020-01-09 Christian Biesinger <cbiesinger@google.com>
5152
5153 * symtab.c (general_symbol_info::compute_and_set_names): Move the
5154 unique_xmalloc_ptr outside the if to always free the demangled name.
5155
6a053cb1
TT
51562020-01-08 Tom Tromey <tromey@adacore.com>
5157
5158 * xcoffread.c (enter_line_range, read_xcoff_symtab)
5159 (process_xcoff_symbol, xcoff_symfile_offsets): Update.
5160 * symtab.h (MSYMBOL_VALUE_ADDRESS): Update.
5161 (struct section_offsets, ANOFFSET, SIZEOF_N_SECTION_OFFSETS):
5162 Remove.
5163 (section_offsets): New typedef.
5164 * symtab.c (fixup_section, get_msymbol_address): Update.
5165 * symmisc.c (dump_msymbols): Update.
5166 * symfile.h (relative_addr_info_to_section_offsets)
5167 (symfile_map_offsets_to_segments): Update.
5168 * symfile.c (build_section_addr_info_from_objfile)
5169 (init_objfile_sect_indices): Update.
5170 (struct place_section_arg): Change type of "offsets".
5171 (place_section): Update.
5172 (relative_addr_info_to_section_offsets): Change type of
5173 "section_offsets". Remove "num_sections" parameter.
5174 (default_symfile_offsets, syms_from_objfile_1)
5175 (set_objfile_default_section_offset): Update.
5176 (reread_symbols): No need to preserve section offsets by hand.
5177 (symfile_map_offsets_to_segments): Change type of "offsets".
5178 * stap-probe.c (relocate_address): Update.
5179 * stabsread.h (process_one_symbol): Update.
5180 * solib-target.c (struct lm_info_target) <offsets>: Change type.
5181 (solib_target_relocate_section_addresses): Update.
5182 * solib-svr4.c (enable_break, svr4_relocate_main_executable):
5183 Update.
5184 * solib-frv.c (frv_relocate_main_executable): Update.
5185 * solib-dsbt.c (dsbt_relocate_main_executable): Update.
5186 * solib-aix.c (solib_aix_get_section_offsets): Change return
5187 type.
5188 (solib_aix_solib_create_inferior_hook): Update.
5189 * remote.c (remote_target::get_offsets): Update.
5190 * psymtab.c (find_pc_sect_psymtab): Update.
5191 * psympriv.h (struct partial_symbol) <address, text_low,
5192 text_high>: Update.
5193 * objfiles.h (obj_section_offset): Update.
5194 (struct objfile) <section_offsets>: Change type.
5195 <num_sections>: Remove.
5196 (objfile_relocate): Update.
5197 * objfiles.c (entry_point_address_query): Update
5198 (relocate_one_symbol): Change type of "section_offsets".
5199 (objfile_relocate1, objfile_relocate1): Change type of
5200 "new_offsets".
5201 (objfile_rebase1): Update.
5202 * mipsread.c (mipscoff_symfile_read): Update.
5203 (read_alphacoff_dynamic_symtab): Remove "section_offsets"
5204 parameter.
5205 * mdebugread.c (parse_symbol): Change type of "section_offsets".
5206 (parse_external, psymtab_to_symtab_1): Update.
5207 * machoread.c (macho_symfile_offsets): Update.
5208 * ia64-tdep.c (ia64_find_unwind_table): Update.
5209 * hppa-tdep.c (read_unwind_info): Update.
5210 * hppa-bsd-tdep.c (hppabsd_find_global_pointer): Update.
5211 * dwarf2read.c (create_addrmap_from_index)
5212 (create_addrmap_from_aranges, dw2_find_pc_sect_compunit_symtab)
5213 (process_psymtab_comp_unit_reader, add_partial_symbol)
5214 (add_partial_subprogram, process_full_comp_unit)
5215 (read_file_scope, read_func_scope, read_lexical_block_scope)
5216 (read_call_site_scope, dwarf2_rnglists_process)
5217 (dwarf2_ranges_process, dwarf2_ranges_read)
5218 (dwarf_decode_lines_1, var_decode_location, new_symbol)
5219 (dwarf2_fetch_die_loc_sect_off, dwarf2_per_cu_text_offset):
5220 Update.
5221 * dwarf2-frame.c (execute_cfa_program, dwarf2_frame_find_fde):
5222 Update.
5223 * dtrace-probe.c (dtrace_probe::get_relocated_address): Update.
5224 * dbxread.c (read_dbx_symtab, read_ofile_symtab): Update.
5225 (process_one_symbol): Change type of "section_offsets".
5226 * ctfread.c (get_objfile_text_range): Update.
5227 * coffread.c (coff_symtab_read, enter_linenos)
5228 (process_coff_symbol): Update.
5229 * coff-pe-read.c (add_pe_forwarded_sym): Update.
5230 * amd64-windows-tdep.c (amd64_windows_find_unwind_info): Update.
5231
456e800a
TT
52322020-01-08 Tom Tromey <tromey@adacore.com>
5233
5234 * dwarf2read.c (parse_macro_definition): Use std::string.
5235 (parse_macro_definition): Likewise.
5236
6dfa2fc2
TT
52372020-01-08 Tom Tromey <tromey@adacore.com>
5238
5239 * dwarf2read.c (abbrev_table_read_table): Use std::vector.
5240 (ATTR_ALLOC_CHUNK): Remove.
5241
421d1616
TT
52422020-01-08 Tom Tromey <tromey@adacore.com>
5243
5244 * dwarf2read.c (fixup_go_packaging): Use unique_xmalloc_ptr.
5245
43816ebc
TT
52462020-01-08 Tom Tromey <tromey@adacore.com>
5247
5248 * dwarf2read.c (add_partial_symbol): Use unique_xmalloc_ptr.
5249 (dwarf2_compute_name, open_dwo_file): Likewise.
5250 (process_enumeration_scope): Use std::vector.
5251 (guess_partial_die_structure_name): Use unique_xmalloc_ptr.
5252 (partial_die_info::fixup, dwarf2_start_subfile)
5253 (guess_full_die_structure_name, dwarf2_name): Likewise.
5254 (determine_prefix): Update.
5255 (guess_full_die_structure_name): Make return type const.
5256 (partial_die_full_name): Return unique_xmalloc_ptr.
5257 (DW_FIELD_ALLOC_CHUNK): Remove.
5258
4212d509
TT
52592020-01-07 Tom Tromey <tromey@adacore.com>
5260
5261 PR build/24937:
5262 * stap-probe.c (class stap_static_probe_ops): Add constructor.
5263
06a6207a
JT
52642020-01-02 Jon Turney <jon.turney@dronecode.org.uk>
5265
5266 * cli/cli-style.c: Set cli_styling to 'true' in the Cygwin build.
5267
153d79c4
AB
52682020-01-06 Andrew Burgess <andrew.burgess@embecosm.com>
5269
5270 * stack.c (print_frame_info): Move disassemble_next_line code
5271 inside source_print block.
5272
66182876
EZ
52732020-01-06 Eli Zaretskii <eliz@gnu.org>
5274
5275 * gdbsupport/gdb_wait.c: Include <signal.h> instead of
5276 gdb/signals.h, as we are now using native signal symbols.
5277
cbfa8581
SV
52782020-01-06 Shahab Vahedi <shahab@synopsys.com>
5279
5280 * tui/tui-disasm.c (tui_disasm_window::addr_is_displayed): Avoid
5281 overflow by an early check of content vs threshold.
5282 * tui/tui-source.c (tui_source_window::line_is_displayed):
5283 Likewise.
5284
3f602821
EZ
52852020-01-06 Eli Zaretskii <eliz@gnu.org>
5286
5287 * NEWS: Mention the recent fix of $_exitsignal on MS-Windows.
5288
a08c904d
JT
52892020-01-02 Jon Turney <jon.turney@dronecode.org.uk>
5290
5291 * coff-pe-read.c (read_pe_exported_syms): Don't try to read the
5292 export table if no section contains it's RVA.
5293
89a65580
EZ
52942020-01-06 Eli Zaretskii <eliz@gnu.org>
5295
5296 * windows-tdep.c: Fix a typo in WINDOWS_SIGABRT.
5297
8b7fcda2
HD
52982020-01-06 Hannes Domani <ssbssa@yahoo.de>
5299
5300 * source.c (print_source_lines_base): Set last_line_listed.
5301
a61b4f69
SV
53022020-01-06 Shahab Vahedi <shahab@synopsys.com>
5303
5304 * tui/tui-disasm.c: Remove trailing spaces.
5305
559e7e50
EZ
53062020-01-06 Eli Zaretskii <eliz@gnu.org>
5307 Pedro Alves <palves@redhat.com>
5308
5309 * Makefile.in (COMMON_SFILES): Add gdbsupport/gdb_wait.c.
5310 * windows-tdep.c: New enumeration of WINDOWS_SIG* signals.
5311 (windows_gdb_signal_to_target): New function, uses the above
5312 enumeration to convert GDB internal signal codes to equivalent
5313 Windows codes.
5314 (windows_init_abi): Call set_gdbarch_gdb_signal_to_target.
5315 * windows-nat.c: Include "gdb_wait.h".
5316 (get_windows_debug_event): Extract the fatal exception from the
5317 exit status and convert to the equivalent Posix signal number.
5318 * cli/cli-cmds.c (exit_status_set_internal_vars): Account for the
5319 possibility that WTERMSIG returns GDB_SIGNAL_UNKNOWN.
5320 * gdbsupport/gdb_wait.c: New file, implements
5321 windows_status_to_termsig.
5322 * gdbsupport/gdb_wait.h (WIFEXITED, WIFSIGNALED, WEXITSTATUS)
5323 (WTERMSIG) [__MINGW32__]: Separate definitions for MinGW.
5324
f2302a34
AB
53252020-01-05 Andrew Burgess <andrew.burgess@embecosm.com>
5326
5327 * tui/tui-layout.c (tui_add_win_to_layout): Use tui_set_layout not
5328 show_layout.
5329
6a5206eb
LM
53302020-01-05 Luis Machado <luis.machado@linaro.org>
5331
5332 * aarch64-linux-nat.c
5333 (aarch64_linux_nat_target::thread_architecture): Use bfd_arch_aarch64
5334 and bfd_mach_aarch64.
5335
6ec1d75e
PW
53362020-01-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5337
5338 * ui-file.c (stdio_file::can_emit_style_escape)
5339 (tee_file::can_emit_style_escape): Ensure style is used also on
5340 gdb_stderr when gdb_stderr is a tty supporting styling, similarly
5341 to gdb_stdout.
5342 * main.c (set_gdb_data_directory): Use file style to output the
5343 warning that the given pathname is not a directory.
5344 * top.c (show_history_filename, gdb_safe_append_history)
5345 (show_gdb_datadir): Use file style.
5346
44f81a76
HD
53472020-01-03 Hannes Domani <ssbssa@yahoo.de>
5348
5349 * solib-target.c (struct lm_info_target):
5350 Change offsets to be a unique_xmalloc_ptr.
5351 (solib_target_relocate_section_addresses): Update.
5352
25057eb0
HD
53532020-01-03 Hannes Domani <ssbssa@yahoo.de>
5354
5355 * windows-nat.c (windows_clear_solib): Free so_list linked list.
5356
6e2118f5
BE
53572020-01-03 Bernd Edlinger <bernd.edlinger@hotmail.de>
5358
5359 * MAINTAINERS (Write After Approval): Add myself.
5360
8133c7dc
LM
53612020-01-02 Luis Machado <luis.machado@linaro.org>
5362
5363 * proc-service.c (get_ps_regcache): Remove reference to obsolete
5364 Cell BE architecture.
5365 * target.h (struct target_ops) <thread_architecture>: Likewise.
5366
48189bec
HD
53672020-01-01 Hannes Domani <ssbssa@yahoo.de>
5368
5369 * Makefile.in: Use INSTALL_PROGRAM_ENV.
5370
ead1063b
HD
53712020-01-01 Hannes Domani <ssbssa@yahoo.de>
5372
5373 * MAINTAINERS (Write After Approval): Add myself.
5374
e5d78223
JB
53752020-01-01 Joel Brobecker <brobecker@adacore.com>
5376
5377 * gdbarch.sh: Update copyright year range of generated files.
5378
b811d2c2
JB
53792020-01-01 Joel Brobecker <brobecker@adacore.com>
5380
5381 Update copyright year range in all GDB files.
5382
5f4def5c
JB
53832020-01-01 Joel Brobecker <brobecker@adacore.com>
5384
5385 * copyright.py: Convert to Python 3.
5386
51fd4002
JB
53872020-01-01 Joel Brobecker <brobecker@adacore.com>
5388
5389 * copyright.py: Adapt after move of gnulib directory from gdb
5390 directory to toplevel directory.
5391
5fb651f2
JB
53922020-01-01 Joel Brobecker <brobecker@adacore.com>
5393
5394 * copyright.py (main): Exit if run from the wrong directory.
5395
5dd8bf88
JB
53962020-01-01 Joel Brobecker <brobecker@adacore.com>
5397
5398 * top.c (print_gdb_version): Change copyright year to 2020.
5399
9f71dacb 54002020-01-01 Joel Brobecker <brobecker@adacore.com>
3d34df0a 5401
9f71dacb 5402 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2019.
3d34df0a 5403
9f71dacb 5404For older changes see ChangeLog-2019.
c906108c
SS
5405\f
5406Local Variables:
5407mode: change-log
5408left-margin: 8
5409fill-column: 74
5410version-control: never
57da7796 5411coding: utf-8
c906108c 5412End:
This page took 2.672887 seconds and 4 git commands to generate.