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