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