gdb: print unknown part of flag enum in hex
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2020-02-18 Simon Marchi <simon.marchi@efficios.com>
2
3 * valprint.c (generic_val_print_enum_1): Print unknown part of
4 flag enum in hex.
5
6 2020-02-18 Simon Marchi <simon.marchi@efficios.com>
7
8 * dwarf2/read.c (update_enumeration_type_from_children): Allow
9 flag enums to contain duplicate enumerators.
10 * valprint.c (generic_val_print_enum_1): Update comment.
11
12 2020-02-18 Simon Marchi <simon.marchi@efficios.com>
13
14 * dwarf2/read.c: Include "count-one-bits.h".
15 (update_enumeration_type_from_children): If an enumerator has
16 multiple bits set, don't treat the enumeration as a "flag enum".
17 * valprint.c (generic_val_print_enum_1): Assert that enumerators
18 of flag enums have 0 or 1 bit set.
19
20 2020-02-18 Bernd Edlinger <bernd.edlinger@hotmail.de>
21
22 * aarch64-tdep.c (aarch64_displaced_step_copy_insn): Use an explicit
23 conversion.
24 * amd64-tdep.c (amd64_displaced_step_copy_insn): Likewise.
25 * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Likewise.
26 * i386-tdep.c (i386_displaced_step_copy_insn): Likewise.
27 * rs6000-tdep.c (ppc_displaced_step_copy_insn): Likewise.
28 * s390-tdep.c (s390_displaced_step_copy_insn): Likewise.
29
30 2020-02-18 Simon Marchi <simon.marchi@efficios.com>
31
32 * MAINTAINERS: Change palmer@sifive.com to palmer@dabbelt.com.
33
34 2020-02-14 Simon Marchi <simon.marchi@efficios.com>
35
36 * aarch64-tdep.c (aarch64_displaced_step_copy_insn): Use
37 displaced_step_closure_up.
38 * aarch64-tdep.h (aarch64_displaced_step_copy_insn): Likewise.
39 (struct displaced_step_closure_up):
40 * amd64-tdep.c (amd64_displaced_step_copy_insn): Likewise.
41 * amd64-tdep.h (amd64_displaced_step_copy_insn): Likewise.
42 * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn):
43 Likewise.
44 * gdbarch.sh (displaced_step_copy_insn): Likewise.
45 * gdbarch.c, gdbarch.h: Re-generate.
46 * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Use
47 displaced_step_closure_up.
48 * i386-tdep.c (i386_displaced_step_copy_insn): Likewise.
49 * i386-tdep.h (i386_displaced_step_copy_insn): Likewise.
50 * infrun.h (displaced_step_closure_up): New type alias.
51 (struct displaced_step_inferior_state) <step_closure>: Change
52 type to displaced_step_closure_up.
53 * rs6000-tdep.c (ppc_displaced_step_copy_insn): Use
54 displaced_step_closure_up.
55 * s390-tdep.c (s390_displaced_step_copy_insn): Likewise.
56
57 2020-02-14 Tom Tromey <tom@tromey.com>
58
59 * minidebug.c (gnu_debug_key): New global.
60 (find_separate_debug_file_in_section): Use it.
61
62 2020-02-14 Simon Marchi <simon.marchi@efficios.com>
63
64 * gdbarch.sh (displaced_step_copy_insn): Change return type to an
65 std::unique_ptr.
66 * gdbarch.c: Re-generate.
67 * gdbarch.h: Re-generate.
68 * infrun.c (displaced_step_prepare_throw): Adjust to std::unique_ptr
69 change.
70 * aarch64-tdep.c (aarch64_displaced_step_copy_insn): Change return
71 type to std::unique_ptr.
72 * aarch64-tdep.h (aarch64_displaced_step_copy_insn): Likewise.
73 * amd64-tdep.c (amd64_displaced_step_copy_insn): Likewise.
74 * amd64-tdep.h (amd64_displaced_step_copy_insn): Likewise.
75 * arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Likewise.
76 * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Likewise.
77 * i386-tdep.c (i386_displaced_step_copy_insn): Likewise.
78 * i386-tdep.h (i386_displaced_step_copy_insn): Likewise.
79 * rs6000-tdep.c (ppc_displaced_step_copy_insn): Likewise.
80 * s390-tdep.c (s390_displaced_step_copy_insn): Likewise.
81
82 2020-02-14 Simon Marchi <simon.marchi@efficios.com>
83
84 * infrun.c (get_displaced_step_closure_by_addr): Adjust to
85 std::unique_ptr.
86 (displaced_step_clear): Rename to...
87 (displaced_step_reset): ... this. Just call displaced->reset ().
88 (displaced_step_clear_cleanup): Rename to...
89 (displaced_step_reset_cleanup): ... this.
90 (displaced_step_prepare_throw): Adjust to std::unique_ptr.
91 (displaced_step_fixup): Likewise.
92 (resume_1): Likewise.
93 (handle_inferior_event): Restore child's memory before calling
94 displaced_step_fixup on the parent.
95 * infrun.h (displaced_step_inferior_state) <reset>: Adjust
96 to std::unique_ptr.
97 <step_closure>: Change type to std::unique_ptr.
98
99 2020-02-14 Simon Marchi <simon.marchi@efficios.com>
100
101 * arm-tdep.c: Include count-one-bits.h.
102 (cleanup_block_store_pc): Use count_one_bits.
103 (cleanup_block_load_pc): Use count_one_bits.
104 (arm_copy_block_xfer): Use count_one_bits.
105 (thumb2_copy_block_xfer): Use count_one_bits.
106 (thumb_copy_pop_pc_16bit): Use count_one_bits.
107 * arch/arm-get-next-pcs.c: Include count-one-bits.h.
108 (thumb_get_next_pcs_raw): Use count_one_bits.
109 (arm_get_next_pcs_raw): Use count_one_bits_l.
110 * arch/arm.c (bitcount): Remove.
111 * arch/arm.h (bitcount): Remove.
112
113 2020-02-14 Tom Tromey <tromey@adacore.com>
114
115 * dwarf2/frame-tailcall.c (dwarf2_tailcall_sniffer_first):
116 Update.
117 * dwarf2/loc.h (call_site_find_chain): Return unique_xmalloc_ptr.
118 * dwarf2/loc.c (call_site_find_chain_1): Return
119 unique_xmalloc_ptr.
120 (call_site_find_chain): Likewise.
121
122 2020-02-14 Richard Biener <rguenther@suse.de>
123
124 * dwarf2/read.c (lnp_state_machine::handle_special_opcode): Apply CSE
125 on expression with division operators.
126
127 2020-02-13 Alok Kumar Sharma <AlokKumar.Sharma@amd.com>
128
129 * MAINTAINERS (Write After Approval): Adding myself.
130
131 2020-02-12 Tom Tromey <tom@tromey.com>
132
133 * event-loop.c (event_data, gdb_event, event_handler_func):
134 Remove.
135
136 2020-02-12 Tom Tromey <tom@tromey.com>
137
138 * dwarf2/frame.c (dwarf2_frame_bfd_data): New global.
139 (dwarf2_frame_objfile_data): Add comment.
140 (find_comp_unit, set_comp_unit): New functions.
141 (dwarf2_frame_find_fde): Use find_comp_unit.
142 (dwarf2_build_frame_info): Use set_comp_unit.
143
144 2020-02-12 Tom Tromey <tom@tromey.com>
145
146 * dwarf2/frame.c (struct comp_unit) <objfile>: Remove.
147 (comp_unit): Don't initialize objfile.
148 (execute_cfa_program): Add text_offset parameter.
149 (execute_cfa_program_test, dwarf2_fetch_cfa_info)
150 (dwarf2_frame_cache): Update.
151 (dwarf2_build_frame_info): Don't set "objfile" member.
152
153 2020-02-12 Tom Tromey <tom@tromey.com>
154
155 * dwarf2/frame.c (decode_frame_entry_1): Add gdbarch parameter.
156 (decode_frame_entry): Likewise.
157 (dwarf2_build_frame_info): Update.
158
159 2020-02-12 Tom Tromey <tom@tromey.com>
160
161 * dwarf2/frame.c (struct comp_unit) <obstack>: New member.
162 (decode_frame_entry_1): Use the comp_unit obstack.
163
164 2020-02-12 Tom Tromey <tom@tromey.com>
165
166 * dwarf2/frame.c (struct comp_unit): Add initializers and
167 constructor.
168 (dwarf2_frame_objfile_data): Store a comp_unit.
169 (dwarf2_frame_find_fde): Update.
170 (dwarf2_build_frame_info): Use "new".
171
172 2020-02-12 Tom Tromey <tom@tromey.com>
173
174 * dwarf2/frame.c (struct dwarf2_fde_table): Remove.
175 (dwarf2_fde_table): Typedef for std::vector.
176 (dwarf2_frame_objfile_data): Remove the deleter. Now static.
177 (dwarf2_frame_find_fde, add_fde, decode_frame_entry_1)
178 (decode_frame_entry): Update.
179 (dwarf2_build_frame_info): Use "new".
180
181 2020-02-12 Christian Biesinger <cbiesinger@google.com>
182
183 * arm-tdep.c (arm_gdbarch_init): Update.
184 * arm-tdep.h (struct gdbarch_tdep) <have_fpa_registers,
185 have_wmmx_registers, have_vfp_pseudos, have_neon_pseudos,
186 have_neon, is_m>: Change to bool.
187
188 2020-02-12 Christian Biesinger <cbiesinger@google.com>
189
190 * arm-tdep.c (arm_dump_tdep): Print more fields of tdep.
191
192 2020-02-12 Tom Tromey <tom@tromey.com>
193
194 * dwarf2/loc.c (struct dwarf_expr_baton): Remove.
195
196 2020-02-12 Hannes Domani <ssbssa@yahoo.de>
197
198 * windows-tdep.c (struct windows_gdbarch_data): Add tib_ptr_type.
199 (windows_get_tlb_type): Use windows_gdbarch_data->tib_ptr_type.
200
201 2020-02-11 Tom Tromey <tom@tromey.com>
202
203 * psymtab.h: Update comment.
204
205 2020-02-11 Tom Tromey <tom@tromey.com>
206
207 * gdb_obstack.h (struct auto_obstack): Use
208 DISABLE_COPY_AND_ASSIGN.
209
210 2020-02-11 Tom Tromey <tom@tromey.com>
211
212 * dwarf2/frame.h (struct objfile): Don't forward declare.
213
214 2020-02-11 Christian Biesinger <cbiesinger@google.com>
215
216 * cris-tdep.c (cris_supply_gregset): Change signature to match
217 what struct regset expects.
218 (cris_regset): New struct.
219 (fetch_core_registers): Remove.
220 (cris_iterate_over_regset_sections): New function.
221 (_initialize_cris_tdep): Don't call deprecated_add_core_fns.
222 (cris_gdbarch_init): Call set_gdbarch_iterate_over_regset_sections.
223
224 2020-02-11 Christian Biesinger <cbiesinger@google.com>
225
226 * arch/arm.h (enum gdb_regnum): Add comment for the FP0..7
227 registers.
228
229 2020-02-11 Christian Biesinger <cbiesinger@google.com>
230
231 * arm-tdep.c (arm_dump_tdep): Add \n in fprintf.
232
233 2020-02-11 Simon Marchi <simon.marchi@efficios.com>
234
235 * configure: Re-generate.
236
237 2020-02-11 Simon Marchi <simon.marchi@efficios.com>
238
239 * configure: Re-generate.
240
241 2020-02-11 Simon Marchi <simon.marchi@efficios.com>
242
243 * acinclude: Update warning.m4 path.
244 * warning.m4: Move to gdbsupport.
245
246 2020-02-11 Tom Tromey <tromey@adacore.com>
247
248 * remote.c (remote_console_output): Update.
249 * printcmd.c (printf_command): Update.
250 * event-loop.c (gdb_wait_for_event): Update.
251 * linux-nat.c (sigchld_handler): Update.
252 * remote-sim.c (gdb_os_write_stdout): Update.
253 (gdb_os_flush_stdout): Update.
254 (gdb_os_flush_stderr): Update.
255 (gdb_os_write_stderr): Update.
256 * exceptions.c (print_exception): Update.
257 * remote-fileio.c (remote_fileio_func_read): Update.
258 (remote_fileio_func_write): Update.
259 * tui/tui.c (tui_enable): Update.
260 * tui/tui-interp.c (tui_interp::init): Update.
261 * utils.c (init_page_info): Update.
262 (putchar_unfiltered, fputc_unfiltered): Update.
263 (gdb_flush): Update.
264 (emit_style_escape): Update.
265 (flush_wrap_buffer, fputs_maybe_filtered): Update.
266 * ui-file.c (ui_file_isatty, ui_file_read, ui_file_write)
267 (ui_file_write_async_safe, ui_file_flush, ui_file_puts): Remove.
268 (stderr_file::write): Update.
269 (stderr_file::puts): Update.
270 * ui-file.h (ui_file_isatty, ui_file_write)
271 (ui_file_write_async_safe, ui_file_read, ui_file_flush)
272 (ui_file_puts): Don't declare.
273
274 2020-02-10 Tom de Vries <tdevries@suse.de>
275
276 * dwarf2/read.c (process_psymtab_comp_unit_reader): Cast concat NULL
277 sentinel to char *.
278
279 2020-02-09 Tom de Vries <tdevries@suse.de>
280
281 * dwarf2read.c (process_psymtab_comp_unit_reader): Append CU offset to
282 filename if it matches "<artificial>".
283
284 2020-02-09 Hannes Domani <ssbssa@yahoo.de>
285
286 * windows-tdep.c (struct enum_value_name): New struct.
287 (create_enum): New function.
288 (windows_get_siginfo_type): Create and use enum types.
289
290 2020-02-09 Hannes Domani <ssbssa@yahoo.de>
291
292 * NEWS: Mention $_siginfo support for Windows.
293 * windows-nat.c (handle_exception): Set siginfo_er.
294 (windows_nat_target::mourn_inferior): Reset siginfo_er.
295 (windows_xfer_siginfo): New function.
296 (windows_nat_target::xfer_partial): Call windows_xfer_siginfo.
297 * windows-tdep.c (struct windows_gdbarch_data): New struct.
298 (init_windows_gdbarch_data): New function.
299 (get_windows_gdbarch_data): New function.
300 (windows_get_siginfo_type): New function.
301 (windows_init_abi): Register windows_get_siginfo_type.
302 (_initialize_windows_tdep): Register init_windows_gdbarch_data.
303
304 2020-02-08 Tom Tromey <tom@tromey.com>
305
306 * dwarf2/read.c (class cutu_reader) <cutu_reader,
307 init_tu_and_read_dwo_dies>: Remove "keep" parameter.
308 <keep>: Declare method.
309 <m_keep>: Remove member.
310 <~cutu_reader>: Remove.
311 (cutu_reader::init_tu_and_read_dwo_dies): Update.
312 (cutu_reader::cutu_reader): Update.
313 (cutu_reader::keep): Rename from ~cutu_reader.
314 (process_psymtab_comp_unit, build_type_psymtabs_1)
315 (process_skeletonless_type_unit, load_partial_comp_unit)
316 (load_full_comp_unit, dwarf2_read_addr_index)
317 (read_signatured_type): Update.
318
319 2020-02-08 Tom Tromey <tom@tromey.com>
320
321 * dwarf2/read.c (process_psymtab_comp_unit_reader): Remove
322 "want_partial_unit" parameter.
323 (process_psymtab_comp_unit): Change want_partial_unit to bool.
324 Inline check for DW_TAG_partial_unit.
325 (dwarf2_build_psymtabs_hard, scan_partial_symbols): Update.
326
327 2020-02-08 Tom Tromey <tom@tromey.com>
328
329 * dwarf2/read.c (read_n_bytes, read_direct_string): Move to
330 read.c.
331 * dwarf2/leb.h (read_n_bytes, read_direct_string): Move from
332 read.c.
333
334 2020-02-08 Tom Tromey <tom@tromey.com>
335
336 * dwarf2/read.c (read_address): Move to comp-unit.c.
337 (dwarf2_rnglists_process, dwarf2_ranges_process)
338 (read_attribute_value, dwarf_decode_lines_1)
339 (var_decode_location, decode_locdesc): Update.
340 * dwarf2/comp-unit.c (comp_unit_head::read_address): Move from
341 read.c. Remove "cu" parameter.
342 * dwarf2/comp-unit.h (struct comp_unit_head) <read_address>: New
343 method.
344
345 2020-02-08 Tom Tromey <tom@tromey.com>
346
347 * dwarf2/read.c (read_attribute_value, read_indirect_string)
348 (read_indirect_line_string): Update.
349 * dwarf2/comp-unit.c (read_offset): Remove.
350 (read_comp_unit_head): Update.
351 * dwarf2/comp-unit.h (struct comp_unit_head) <read_offset>: New
352 method.
353 (read_offset): Don't declare.
354
355 2020-02-08 Tom Tromey <tom@tromey.com>
356
357 * Makefile.in (COMMON_SFILES): Add dwarf2/comp-unit.c.
358 * dwarf2/read.c (struct comp_unit_head): Move to
359 dwarf2/comp-unit.h.
360 (enum class rcuh_kind): Move to comp-unit.h.
361 (get_cu_length, offset_in_cu_p): Now methods on comp_unit_head.
362 (read_comp_unit_head, error_check_comp_unit_head)
363 (read_and_check_comp_unit_head): Move to comp-unit.c.
364 (read_offset, dwarf_unit_type_name): Likewise.
365 (create_debug_type_hash_table, read_cutu_die_from_dwo)
366 (cutu_reader::cutu_reader, read_call_site_scope)
367 (find_partial_die, follow_die_offset): Update.
368 * dwarf2/comp-unit.h: New file, from dwarf2read.c.
369
370 2020-02-08 Tom Tromey <tom@tromey.com>
371
372 * dwarf2/read.c (read_offset_1): Move to leb.c.
373 (read_abbrev_offset, read_offset, dwarf_decode_line_header)
374 (dwarf_decode_macro_bytes): Update.
375 * dwarf2/leb.c (read_offset): Rename; move from read.c.
376 * dwarf2/leb.h (read_offset): Declare.
377
378 2020-02-08 Tom Tromey <tom@tromey.com>
379
380 * dwarf2/read.c (dwarf2_section_size): Remove.
381 (error_check_comp_unit_head, dwarf2_symbol_mark_computed):
382 Update.
383 * dwarf2/section.h (struct dwarf2_section_info) <get_size>: New method.
384
385 2020-02-08 Tom Tromey <tom@tromey.com>
386
387 * dwarf2/read.c (read_initial_length): Move to leb.c.
388 * dwarf2/leb.h (read_initial_length): Declare.
389 * dwarf2/leb.c (read_initial_length): Move from read.c. Add
390 handle_nonstd parameter.
391 * dwarf2/frame.c (read_initial_length): Remove.
392 (decode_frame_entry_1): Update.
393
394 2020-02-08 Tom Tromey <tom@tromey.com>
395
396 * dwarf2/loc.c (dwarf2_find_location_expression)
397 (dwarf_evaluate_loc_desc::get_tls_address)
398 (dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value)
399 (rw_pieced_value, dwarf2_evaluate_loc_desc_full)
400 (dwarf2_locexpr_baton_eval, dwarf2_evaluate_property)
401 (dwarf2_compile_property_to_c)
402 (dwarf2_loc_desc_get_symbol_read_needs)
403 (dwarf2_compile_expr_to_ax, locexpr_describe_location)
404 (locexpr_tracepoint_var_ref, locexpr_generate_c_location)
405 (loclist_describe_location, loclist_tracepoint_var_ref)
406 (loclist_generate_c_location): Update.
407 * compile/compile-loc2c.c (do_compile_dwarf_expr_to_c): Update.
408 * dwarf2/loc.h (dwarf2_per_cu_objfile, dwarf2_per_cu_addr_size)
409 (dwarf2_per_cu_ref_addr_size, dwarf2_per_cu_offset_size)
410 (dwarf2_per_cu_text_offset, dwarf2_version): Don't declare.
411 * dwarf2/read.c (dwarf2_per_cu_data::objfile)
412 (dwarf2_per_cu_data::addr_size)
413 (dwarf2_per_cu_data::ref_addr_size)
414 (dwarf2_per_cu_data::text_offset)
415 (dwarf2_per_cu_data::addr_type): Now methods.
416 (per_cu_header_read_in): Make per_cu "const".
417 (dwarf2_version): Remove.
418 (dwarf2_per_cu_data::int_type): Now a method.
419 (dwarf2_per_cu_data::_addr_sized_int_type): Likewise.
420 (set_die_type, read_array_type, read_subrange_index_type)
421 (read_tag_string_type, read_subrange_type): Update.
422 * dwarf2/read.h (struct dwarf2_per_cu_data) <addr_size,
423 offset_size, ref_addr_size, text_offset, addr_type, version,
424 objfile, int_type, addr_sized_int_type>: Declare methods.
425
426 2020-02-08 Tom Tromey <tom@tromey.com>
427
428 * dwarf2/read.h (struct dwarf2_per_cu_data) <imported_symtabs>:
429 Move earlier.
430
431 2020-02-08 Tom Tromey <tom@tromey.com>
432
433 * dwarf2/read.h (dwarf_line_debug): Declare.
434 * Makefile.in (COMMON_SFILES): Add dwarf2/line-header.c.
435 * dwarf2/read.c: Move line_header code to new files.
436 (dwarf_line_debug): No longer static.
437 * dwarf2/line-header.c: New file.
438 * dwarf2/line-header.h: New file.
439
440 2020-02-08 Tom Tromey <tom@tromey.com>
441
442 * dwarf2/read.c (struct line_header) <file_full_name,
443 file_file_name>: Return unique_xmalloc_ptr.
444 (line_header::file_file_name): Update.
445 (line_header::file_full_name): Update.
446 (dw2_get_file_names_reader): Update.
447 (macro_start_file): Update.
448
449 2020-02-08 Tom Tromey <tom@tromey.com>
450
451 * dwarf2/read.c (struct line_header) <file_full_name,
452 file_file_name>: Declare methods.
453 (dw2_get_file_names_reader): Update.
454 (file_file_name): Now a method.
455 (file_full_name): Likewise.
456 (macro_start_file): Update.
457
458 2020-02-08 Tom Tromey <tom@tromey.com>
459
460 * dwarf2/read.c (dwarf_always_disassemble)
461 (show_dwarf_always_disassemble): Move to loc.c.
462 (_initialize_dwarf2_read): Move "always-disassemble" registration
463 to loc.c.
464 * dwarf2/read.h (dwarf_always_disassemble): Don't declare.
465 * dwarf2/loc.c (dwarf_always_disassemble): Move from read.c. Now
466 static.
467 (show_dwarf_always_disassemble): Move from read.c.
468 (_initialize_dwarf2loc): Move always-disassemble from read.c.
469
470 2020-02-08 Tom Tromey <tom@tromey.com>
471
472 * dwarf2/read.c (~dwarf2_per_objfile): Update.
473 (create_quick_file_names_table): Return htab_up.
474 (dw2_get_file_names_reader, dw2_forget_cached_source_info):
475 Update.
476 * dwarf2/read.h (struct dwarf2_per_objfile)
477 <quick_file_names_table>: Now htab_up.
478
479 2020-02-08 Tom Tromey <tom@tromey.com>
480
481 * dwarf2/abbrev.c (abbrev_table::read): Simplify.
482
483 2020-02-08 Tom Tromey <tom@tromey.com>
484
485 * dwarf2/abbrev.c (abbrev_table): Move constructor from header.
486 Rewrite.
487 (abbrev_table::add_abbrev, abbrev_table::lookup_abbrev): Rewrite.
488 * dwarf2/abbrev.h (struct abbrev_info) <next>: Remove.
489 (abbrev_table::abbrev_table): No longer inline.
490 (ABBREV_HASH_SIZE): Remove.
491 (abbrev_table::m_abbrevs): Now an htab_up.
492
493 2020-02-08 Tom Tromey <tom@tromey.com>
494
495 * dwarf2/read.c (read_cutu_die_from_dwo): Update.
496 (cutu_reader): Update.
497 (build_type_psymtabs_1): Update.
498 * dwarf2/abbrev.c (abbrev_table::read): Rename.
499 (abbrev_table::alloc_abbrev): Update.
500 * dwarf2/abbrev.h (abbrev_table_up): Move earlier.
501 (abbrev_table::read): New static method, renamed from
502 abbrev_table_read_table.
503 (abbrev_table::alloc_abbrev)
504 (abbrev_table::add_abbrev): Now private.
505 (abbrev_table::abbrev_table): Now private.
506 (abbrev_table::m_abbrev_obstack): Now private. Rename.
507
508 2020-02-08 Tom Tromey <tom@tromey.com>
509
510 * dwarf2/read.c (set_die_type, get_die_type_at_offset): Update.
511 * dwarf2/read.h (struct dwarf2_per_objfile) <die_type_hash>: Now
512 htab_up.
513
514 2020-02-08 Tom Tromey <tom@tromey.com>
515
516 * dwarf2/read.c (struct dwp_file) <loaded_cus, loaded_tus>: Now
517 htab_up.
518 (lookup_dwo_unit_in_dwp): Update.
519 (allocate_dwp_loaded_cutus_table): Return htab_up. Don't allocate
520 on obstack.
521
522 2020-02-08 Tom Tromey <tom@tromey.com>
523
524 * dwarf2/read.c (allocate_dwo_file_hash_table): Don't allocate on
525 obstack.
526
527 2020-02-08 Tom Tromey <tom@tromey.com>
528
529 * dwarf2/read.c (~dwarf2_per_objfile): Don't delete
530 line_header_hash.
531 (handle_DW_AT_stmt_list): Update. Don't allocate on obstack.
532 * dwarf2/read.h (struct dwarf2_per_objfile) <line_header_hash>:
533 Change type to htab_up.
534
535 2020-02-08 Tom Tromey <tom@tromey.com>
536
537 * dwarf2/read.c (allocate_type_unit_groups_table): Return
538 htab_up. Don't allocate on obstack.
539 (get_type_unit_group, dwarf2_build_psymtabs_hard): Update.
540 * dwarf2/read.h (struct dwarf2_per_objfile) <type_unit_groups>:
541 Change type to htab_up.
542
543 2020-02-08 Tom Tromey <tom@tromey.com>
544
545 * dwarf2/read.h (struct dwarf2_per_objfile) <signatured_types>:
546 Change type to htab_up.
547 * dwarf2/read.c (create_signatured_type_table_from_index)
548 (create_signatured_type_table_from_debug_names)
549 (create_all_type_units, add_type_unit)
550 (lookup_dwo_signatured_type, lookup_signatured_type)
551 (process_skeletonless_type_unit): Update.
552 (create_debug_type_hash_table, create_debug_types_hash_table):
553 Change type of types_htab.
554 (allocate_signatured_type_table, allocate_dwo_unit_table): Return
555 htab_up. Don't allocate on obstack.
556 (create_cus_hash_table): Change type of cus_htab parameter.
557 (struct dwo_file) <cus, tus>: Now htab_up.
558 (lookup_dwo_signatured_type, lookup_dwo_cutu)
559 (process_dwo_file_for_skeletonless_type_units, lookup_dwo_cutu)
560 (queue_and_load_all_dwo_tus): Update.
561 * dwarf2/index-write.c (write_gdbindex): Update.
562 (write_debug_names): Update.
563
564 2020-02-08 Tom Tromey <tom@tromey.com>
565
566 * dwarf2/read.h (struct dwarf2_queue_item): Move from
567 dwarf2/read.c. Remove "next" member. Add constructor ntad
568 destructor.
569 (struct dwarf2_per_objfile) <queue>: New member.
570 * dwarf2/read.c (struct dwarf2_queue_item): Move to
571 dwarf2/read.h.
572 (dwarf2_queue, dwarf2_queue_tail): Remove.
573 (class dwarf2_queue_guard): Add parameter to constructor. Use
574 DISABLE_COPY_AND_ASSIGN.
575 <m_per_objfile>: New member.
576 <~dwarf2_queue_guard>: Rewrite.
577 (dw2_do_instantiate_symtab, queue_comp_unit, process_queue):
578 Update.
579 (~dwarf2_queue_item): New.
580
581 2020-02-08 Tom Tromey <tom@tromey.com>
582
583 * dwarf2/read.c (struct die_info) <has_children>: New member.
584 (dw2_get_file_names_reader): Remove has_children.
585 (dw2_get_file_names): Update.
586 (read_cutu_die_from_dwo): Remove has_children.
587 (cutu_reader::init_tu_and_read_dwo_dies)
588 (cutu_reader::cutu_reader): Update.
589 (process_psymtab_comp_unit_reader, build_type_psymtabs_reader):
590 Remove has_children.
591 (build_type_psymtabs_1, process_skeletonless_type_unit)
592 (load_partial_comp_unit, load_full_comp_unit): Update.
593 (create_dwo_cu_reader): Remove has_children.
594 (create_cus_hash_table, read_die_and_children): Update.
595 (read_full_die_1,read_full_die): Remove has_children.
596 (read_signatured_type): Update.
597 (class cutu_reader) <has_children>: Remove.
598
599 2020-02-08 Tom Tromey <tom@tromey.com>
600
601 * dwarf2/expr.c: Rename from dwarf2expr.c.
602 * dwarf2/expr.h: Rename from dwarf2expr.h.
603 * dwarf2/frame-tailcall.c: Rename from dwarf2-frame-tailcall.c.
604 * dwarf2/frame-tailcall.h: Rename from dwarf2-frame-tailcall.h.
605 * dwarf2/frame.c: Rename from dwarf2-frame.c.
606 * dwarf2/frame.h: Rename from dwarf2-frame.h.
607 * dwarf2/index-cache.c: Rename from dwarf-index-cache.c.
608 * dwarf2/index-cache.h: Rename from dwarf-index-cache.h.
609 * dwarf2/index-common.c: Rename from dwarf-index-common.c.
610 * dwarf2/index-common.h: Rename from dwarf-index-common.h.
611 * dwarf2/index-write.c: Rename from dwarf-index-write.c.
612 * dwarf2/index-write.h: Rename from dwarf-index-write.h.
613 * dwarf2/loc.c: Rename from dwarf2loc.c.
614 * dwarf2/loc.h: Rename from dwarf2loc.h.
615 * dwarf2/read.c: Rename from dwarf2read.c.
616 * dwarf2/read.h: Rename from dwarf2read.h.
617 * dwarf2/abbrev.c, aarch64-tdep.c, alpha-tdep.c,
618 amd64-darwin-tdep.c, arc-tdep.c, arm-tdep.c, bfin-tdep.c,
619 compile/compile-c-symbols.c, compile/compile-cplus-symbols.c,
620 compile/compile-loc2c.c, cris-tdep.c, csky-tdep.c, findvar.c,
621 gdbtypes.c, guile/scm-type.c, h8300-tdep.c, hppa-bsd-tdep.c,
622 hppa-linux-tdep.c, i386-darwin-tdep.c, i386-linux-tdep.c,
623 i386-tdep.c, iq2000-tdep.c, m32c-tdep.c, m68hc11-tdep.c,
624 m68k-tdep.c, microblaze-tdep.c, mips-tdep.c, mn10300-tdep.c,
625 msp430-tdep.c, nds32-tdep.c, nios2-tdep.c, or1k-tdep.c,
626 riscv-tdep.c, rl78-tdep.c, rs6000-tdep.c, rx-tdep.c, s12z-tdep.c,
627 s390-tdep.c, score-tdep.c, sh-tdep.c, sparc-linux-tdep.c,
628 sparc-tdep.c, sparc64-linux-tdep.c, sparc64-tdep.c, tic6x-tdep.c,
629 tilegx-tdep.c, v850-tdep.c, xstormy16-tdep.c, xtensa-tdep.c:
630 Update.
631 * Makefile.in (COMMON_SFILES): Update.
632 (HFILES_NO_SRCDIR): Update.
633
634 2020-02-08 Tom Tromey <tom@tromey.com>
635
636 * dwarf2read.c (struct die_reader_specs) <comp_dir>: Remove.
637 (init_cu_die_reader, read_cutu_die_from_dwo): Update.
638
639 2020-02-08 Tom Tromey <tom@tromey.com>
640
641 * dwarf2read.h (struct die_info): Don't declare.
642
643 2020-02-08 Tom Tromey <tom@tromey.com>
644
645 * dwarf2read.h (die_info_ptr): Remove typedef.
646
647 2020-02-08 Tom Tromey <tom@tromey.com>
648
649 * dwarf2read.c (read_call_site_scope)
650 (handle_data_member_location, dwarf2_add_member_fn)
651 (mark_common_block_symbol_computed, read_common_block)
652 (attr_to_dynamic_prop, partial_die_info::read)
653 (var_decode_location, dwarf2_fetch_die_loc_sect_off)
654 (dwarf2_symbol_mark_computed, set_die_type): Update.
655 * dwarf2/attribute.h (struct attribute) <form_is_block>: Declare
656 method.
657 (attr_form_is_block): Don't declare.
658 * dwarf2/attribute.c (attribute::form_is_block): Now a method.
659
660 2020-02-08 Tom Tromey <tom@tromey.com>
661
662 * dwarf2read.c (dwarf2_find_base_address, )
663 (read_call_site_scope, rust_containing_type)
664 (dwarf2_get_pc_bounds, dwarf2_record_block_ranges)
665 (handle_data_member_location, dwarf2_add_member_fn)
666 (get_alignment, read_structure_type, process_structure_scope)
667 (mark_common_block_symbol_computed, read_common_block)
668 (read_tag_string_type, attr_to_dynamic_prop, read_subrange_type)
669 (partial_die_info::read, read_attribute_value, new_symbol)
670 (lookup_die_type, dwarf2_get_ref_die_offset)
671 (dwarf2_get_attr_constant_value, follow_die_ref_or_sig)
672 (dwarf2_fetch_die_loc_sect_off, get_DW_AT_signature_type)
673 (dwarf2_symbol_mark_computed): Update.
674 * dwarf2/attribute.h (struct attribute) <value_as_address,
675 form_is_section_offset, form_is_constant, form_is_ref>: Declare
676 methods.
677 (value_as_address, attr_form_is_section_offset)
678 (attr_form_is_constant, attr_form_is_ref): Don't declare.
679 * dwarf2/attribute.c (attribute::value_as_address)
680 (attribute::form_is_section_offset, attribute::form_is_constant)
681 (attribute::form_is_ref): Now methods.
682
683 2020-02-08 Tom Tromey <tom@tromey.com>
684
685 * dwarf2read.c (struct attribute, DW_STRING)
686 (DW_STRING_IS_CANONICAL, DW_UNSND, DW_BLOCK, DW_SND, DW_ADDR)
687 (DW_SIGNATURE, struct dwarf_block, attr_value_as_address)
688 (attr_form_is_block, attr_form_is_section_offset)
689 (attr_form_is_constant, attr_form_is_ref): Move.
690 * dwarf2/attribute.h: New file.
691 * dwarf2/attribute.c: New file, from dwarf2read.c.
692 * Makefile.in (COMMON_SFILES): Add dwarf2/attribute.c.
693
694 2020-02-08 Tom Tromey <tom@tromey.com>
695
696 * dwarf2read.c (abbrev_table_up, struct abbrev_info)
697 (struct attr_abbrev, ABBREV_HASH_SIZE, struct abbrev_table):
698 Move.
699 (read_cutu_die_from_dwo, build_type_psymtabs_1): Update.
700 (abbrev_table::alloc_abbrev, abbrev_table::add_abbrev)
701 (abbrev_table::lookup_abbrev, abbrev_table_read_table): Move to
702 abbrev.c.
703 * dwarf2/abbrev.h: New file.
704 * dwarf2/abbrev.c: New file, from dwarf2read.c.
705 * Makefile.in (COMMON_SFILES): Add dwarf2/abbrev.c.
706
707 2020-02-08 Tom Tromey <tom@tromey.com>
708
709 * dwarf2read.c (dwarf2_section_buffer_overflow_complaint)
710 (dwarf2_section_size, dwarf2_get_section_info)
711 (create_signatured_type_table_from_debug_names)
712 (create_addrmap_from_aranges, read_debug_names_from_section)
713 (get_gdb_index_contents_from_section, read_comp_unit_head)
714 (error_check_comp_unit_head, read_abbrev_offset)
715 (create_debug_type_hash_table, init_cu_die_reader)
716 (read_cutu_die_from_dwo, dwarf2_build_psymtabs_hard)
717 (read_comp_units_from_section, create_cus_hash_table)
718 (create_dwp_hash_table, create_dwo_unit_in_dwp_v1)
719 (create_dwp_v2_section, dwarf2_rnglists_process)
720 (dwarf2_ranges_process, read_die_and_siblings, read_full_die)
721 (abbrev_table_read_table, read_indirect_string_at_offset_from)
722 (read_indirect_string_from_dwz, read_addr_index_1)
723 (read_str_index, dwarf_decode_line_header, skip_form_bytes)
724 (dwarf_decode_macro_bytes, dwarf_decode_macros)
725 (fill_in_loclist_baton): Update.
726 * dwarf2/section.h (struct dwarf2_section_info) <get_name,
727 get_containing_section, get_bfd_owner, get_bfd_section,
728 get_file_name, get_id, get_flags, empty, read>: Declare methods.
729 (dwarf2_read_section, get_section_name, get_section_file_name)
730 (get_containing_section, get_section_bfd_owner)
731 (get_section_bfd_section, get_section_name, get_section_file_name)
732 (get_section_id, get_section_flags, dwarf2_section_empty_p): Don't
733 declare.
734 * dwarf2/section.c (dwarf2_section_info::get_containing_section)
735 (dwarf2_section_info::get_bfd_owner)
736 (dwarf2_section_info::get_bfd_section)
737 (dwarf2_section_info::get_name)
738 (dwarf2_section_info::get_file_name, dwarf2_section_info::get_id)
739 (dwarf2_section_info::get_flags, dwarf2_section_info::empty)
740 (dwarf2_section_info::read): Now methods.
741 * dwarf-index-write.c (class debug_names): Update.
742
743 2020-02-08 Tom Tromey <tom@tromey.com>
744
745 * dwarf2read.h (struct dwarf2_section_info, dwarf2_read_section):
746 Move to dwarf2/section.h.
747 * dwarf2read.c (get_containing_section, get_section_bfd_owner)
748 (get_section_bfd_section, get_section_name)
749 (get_section_file_name, get_section_id, get_section_flags)
750 (dwarf2_section_empty_p, dwarf2_read_section): Moe to
751 dwarf2/section.c.
752 * dwarf2/section.h: New file.
753 * dwarf2/section.c: New file, from dwarf2read.c.
754 * Makefile.in (COMMON_SFILES): Add dwarf2/section.c.
755
756 2020-02-08 Tom Tromey <tom@tromey.com>
757
758 * dwarf2read.h (read_unsigned_leb128): Don't declare.
759 * dwarf2read.c (read_1_byte, read_1_signed_byte, read_2_bytes)
760 (read_2_signed_bytes, read_3_bytes, read_4_bytes)
761 (read_4_signed_bytes, read_8_bytes): Move to dwarf2/leb.h.
762 (read_unsigned_leb128, read_signed_leb128): Move to dwarf2/leb.c.
763 * dwarf2/leb.h: New file, from dwarf2read.c.
764 * dwarf2/leb.c: New file, from dwarf2read.c.
765 * dwarf2-frame.c (read_1_byte, read_4_bytes, read_8_bytes):
766 Remove.
767 * Makefile.in (CONFIG_SRC_SUBDIR): Add dwarf2.
768 (COMMON_SFILES): Add dwarf2/leb.c.
769
770 2020-02-08 Joel Brobecker <brobecker@adacore.com>
771
772 GDB 9.1 released.
773
774 2020-02-05 Iain Buclaw <ibuclaw@gdcproject.org>
775
776 PR gdb/25190:
777 * gdb/remote-sim.c (gdb_os_write_stderr): Update.
778 * gdb/remote.c (remote_console_output): Update.
779 * gdb/ui-file.c (fputs_unfiltered): Rename to...
780 (ui_file_puts): ...this.
781 * gdb/ui-file.h (ui_file_puts): Add declaration.
782 * gdb/utils.c (emit_style_escape): Update.
783 (flush_wrap_buffer): Update.
784 (fputs_maybe_filtered): Update.
785 (fputs_unfiltered): Add function.
786
787 2020-02-05 Iain Buclaw <ibuclaw@gdcproject.org>
788
789 * gdb/event-loop.c (gdb_wait_for_event): Update.
790 * gdb/printcmd.c (printf_command): Update.
791 * gdb/remote-fileio.c (remote_fileio_func_write): Update.
792 * gdb/remote-sim.c (gdb_os_flush_stdout): Update.
793 (gdb_os_flush_stderr): Update.
794 * gdb/remote.c (remote_console_output): Update.
795 * gdb/ui-file.c (gdb_flush): Rename to...
796 (ui_file_flush): ...this.
797 (stderr_file::write): Update.
798 (stderr_file::puts): Update.
799 * gdb/ui-file.h (gdb_flush): Rename to...
800 (ui_file_flush): ...this.
801 * gdb/utils.c (gdb_flush): Add function.
802 * gdb/utils.h (gdb_flush): Add declaration.
803
804 2020-02-07 Tom Tromey <tromey@adacore.com>
805
806 PR breakpoints/24915:
807 * source.c (find_and_open_source): Do not check basenames_may_differ.
808
809 2020-02-07 Tom Tromey <tom@tromey.com>
810
811 * README: Update gdbserver documentation.
812 * gdbserver: Move to top level.
813 * configure.tgt (build_gdbserver): Remove.
814 * configure.ac: Remove --enable-gdbserver.
815 * configure: Rebuild.
816 * Makefile.in (distclean): Don't mention gdbserver.
817
818 2020-02-06 Shahab Vahedi <shahab@synopsys.com>
819
820 * source-cache.c (source_cache::ensure): Surround
821 get_plain_source_lines with a try/catch.
822 (source_cache::get_line_charpos): Get rid of try/catch
823 and only check for the return value of "ensure".
824 * tui/tui-source.c (tui_source_window::set_contents):
825 Simplify "nlines" calculation.
826
827 2020-02-06 Shahab Vahedi <shahab@synopsys.com>
828
829 * MAINTAINERS (Write After Approval): Add myself.
830
831 2020-02-05 Christian Biesinger <cbiesinger@google.com>
832
833 * sparc-nat.h (struct sparc_target) <xfer_partial>: Fix base class
834 function call.
835
836 2020-02-05 Christian Biesinger <cbiesinger@google.com>
837
838 * ppc-nbsd-tdep.h: Fix macro name in #endif comment.
839
840 2020-02-05 Maciej W. Rozycki <macro@wdc.com>
841
842 * nat/riscv-linux-tdesc.h: New file.
843 * nat/riscv-linux-tdesc.c: New file, taking code from...
844 * riscv-linux-nat.c (riscv_linux_nat_target::read_description):
845 ... here.
846 * configure.nat <linux> <riscv*>: Add nat/riscv-linux-tdesc.o to
847 NATDEPFILES.
848
849 2020-02-04 Andrew Burgess <andrew.burgess@embecosm.com>
850
851 * remote-sim.c (sim_inferior_data::sim_inferior_data): Assert that
852 we don't set the fake simulator ptid to the null_ptid.
853
854 2020-02-03 Simon Marchi <simon.marchi@efficios.com>
855
856 * fork-child.c (gdb_startup_inferior): Use bool instead of int.
857 * gdbthread.h (class thread_info) <resumed>: Likewise.
858 * infrun.c (resume_1): Likewise.
859 (proceed): Likewise.
860 (infrun_thread_stop_requested): Likewise.
861 (stop_all_threads): Likewise.
862 (handle_inferior_event): Likewise.
863 (restart_threads): Likewise.
864 (finish_step_over): Likewise.
865 (keep_going_stepped_thread): Likewise.
866 * linux-nat.c (attach_proc_task_lwp_callback): Likewise.
867 (linux_handle_extended_wait): Likewise.
868 * record-btrace.c (get_thread_current_frame_id): Likewise.
869 * record-full.c (record_full_wait_1): Likewise.
870 * remote.c (remote_target::process_initial_stop_replies): Likewise.
871 * target.c (target_resume): Likewise.
872 * thread.c (set_running_thread): Likewise.
873
874 2020-02-03 Alok Kumar Sharma <AlokKumar.Sharma@amd.com>
875
876 * f-valprint.c (f77_print_array_1): Changed datatype of index
877 variable to LONGEST from int to enable it to contain bound
878 values correctly.
879
880 2020-02-03 Maciej W. Rozycki <macro@wdc.com>
881
882 * riscv-linux-nat.c [!NFPREG] (NFPREG): New macro.
883 (supply_fpregset_regnum, fill_fpregset): Handle regset buffer
884 offsets according to FLEN determined.
885 (riscv_linux_nat_target::read_description): Determine FLEN
886 dynamically.
887 (riscv_linux_nat_target::fetch_registers): Size regset buffer
888 according to FLEN determined.
889 (riscv_linux_nat_target::store_registers): Likewise.
890
891 2020-02-01 Shahab Vahedi <shahab@synopsys.com>
892
893 * target-descriptions.c (tdesc_register_in_reggroup_p): Return 0
894 when reg->group is empty and reggroup is not.
895
896 2020-01-31 Tom Tromey <tromey@adacore.com>
897
898 * ravenscar-thread.c (ravenscar_thread_target::mourn_inferior):
899 Call beneath target's mourn_inferior after unpushing.
900
901 2020-01-31 Andrew Burgess <andrew.burgess@embecosm.com>
902
903 PR tui/9765
904 * tui/tui-disasm.c (tui_find_disassembly_address): If we don't
905 have enough lines to fill the screen, still return the lowest
906 address we found.
907
908 2020-01-31 Andrew Burgess <andrew.burgess@embecosm.com>
909
910 * tui/tui-win.c (_initialize_tui_win): Update help text for '+',
911 '-', '<', and '>' commands.
912
913 2020-01-29 Pedro Alves <palves@redhat.com>
914 Sergio Durigan Junior <sergiodj@redhat.com>
915
916 * infcmd.c (construct_inferior_arguments): Assert that
917 'argc' is greater than 0.
918
919 2020-01-29 Luis Machado <luis.machado@linaro.org>
920
921 * aarch64-tdep.c (BRK_INSN_MASK): Define to 0xffe0001f.
922 (BRK_INSN_MASK): Define to 0xd4200000.
923 (aarch64_program_breakpoint_here_p): New function.
924 (aarch64_gdbarch_init): Set gdbarch_program_breakpoint_here_p hook.
925 * arch-utils.c (default_program_breakpoint_here_p): Moved from
926 breakpoint.c.
927 * arch-utils.h (default_program_breakpoint_here_p): Moved from
928 breakpoint.h
929 * breakpoint.c (bp_loc_is_permanent): Changed return type to bool and
930 call gdbarch_program_breakpoint_here_p.
931 (program_breakpoint_here): Moved to arch-utils.c, renamed to
932 default_program_breakpoint_here_p, changed return type to bool and
933 simplified.
934 * breakpoint.h (program_breakpoint_here): Moved prototype to
935 arch-utils.h, renamed to default_program_breakpoint_here_p and changed
936 return type to bool.
937 * gdbarch.c: Regenerate.
938 * gdbarch.h: Regenerate.
939 * gdbarch.sh (program_breakpoint_here_p): New method.
940 * infrun.c (handle_signal_stop): Call
941 gdbarch_program_breakpoint_here_p.
942
943 2020-01-26 Tom Tromey <tom@tromey.com>
944
945 * ctfread.c (struct ctf_fp_info): Reindent.
946 (_initialize_ctfread): Remove.
947
948 2020-01-26 Tom Tromey <tom@tromey.com>
949
950 * psymtab.c (partial_map_expand_apply)
951 (psym_find_pc_sect_compunit_symtab, psym_lookup_symbol)
952 (psymtab_to_symtab, psym_find_last_source_symtab, dump_psymtab)
953 (psym_print_stats, psym_expand_symtabs_for_function)
954 (psym_map_symbol_filenames, psym_map_matching_symbols)
955 (psym_expand_symtabs_matching)
956 (partial_symtab::read_dependencies, maintenance_info_psymtabs)
957 (maintenance_check_psymtabs): Use new methods.
958 * psympriv.h (struct partial_symtab) <readin_p,
959 get_compunit_symtab>: New methods.
960 <readin, compunit_symtab>: Remove members.
961 (struct standard_psymtab): New.
962 (struct legacy_psymtab): Derive from standard_psymtab.
963 * dwarf2read.h (struct dwarf2_psymtab): Derive from
964 standard_psymtab.
965 * ctfread.c (struct ctf_psymtab): Derive from standard_psymtab.
966
967 2020-01-26 Tom Tromey <tom@tromey.com>
968
969 * xcoffread.c (xcoff_psymtab_to_symtab_1): Call
970 read_dependencies. Add assert.
971 * psymtab.c (partial_symtab::read_dependencies): New method.
972 * psympriv.h (struct partial_symtab) <read_dependencies>: New
973 method.
974 * mdebugread.c (psymtab_to_symtab_1): Call read_dependencies.
975 * dwarf2read.c (dwarf2_psymtab::expand_psymtab): Call
976 read_dependencies.
977 * dbxread.c (dbx_psymtab_to_symtab_1): Call read_dependencies.
978 Add assert.
979
980 2020-01-26 Tom Tromey <tom@tromey.com>
981
982 * xcoffread.c (xcoff_psymtab_to_symtab_1): Change argument order.
983 Call expand_psymtab.
984 (xcoff_read_symtab): Call expand_psymtab.
985 (xcoff_start_psymtab, xcoff_end_psymtab): Set
986 legacy_expand_psymtab.
987 * psympriv.h (struct partial_symtab) <expand_psymtab>: New
988 method.
989 (struct legacy_psymtab) <expand_psymtab>: Implement.
990 <legacy_expand_psymtab>: New member.
991 * mdebugread.c (mdebug_read_symtab): Call expand_psymtab.
992 (parse_partial_symbols): Set legacy_expand_psymtab.
993 (psymtab_to_symtab_1): Change argument order. Call
994 expand_psymtab.
995 (new_psymtab): Set legacy_expand_psymtab.
996 * dwarf2read.h (struct dwarf2_psymtab) <expand_psymtab>: Declare.
997 * dwarf2read.c (dwarf2_psymtab::read_symtab): Call
998 expand_psymtab.
999 (dwarf2_psymtab::expand_psymtab): Rename from
1000 psymtab_to_symtab_1. Call expand_psymtab.
1001 * dbxread.c (start_psymtab): Set legacy_expand_psymtab.
1002 (dbx_end_psymtab): Likewise.
1003 (dbx_psymtab_to_symtab_1): Change argument order. Call
1004 expand_psymtab.
1005 (dbx_read_symtab): Call expand_psymtab.
1006 * ctfread.c (struct ctf_psymtab) <expand_psymtab>: Declare.
1007 (ctf_psymtab::expand_psymtab): Rename from psymtab_to_symtab.
1008 (ctf_psymtab::read_symtab): Call expand_psymtab.
1009
1010 2020-01-26 Tom Tromey <tom@tromey.com>
1011
1012 * xcoffread.c (xcoff_read_symtab): Remove prints. Add assert.
1013 * psymtab.c (psymtab_to_symtab): Print verbose "Reading"
1014 messages.
1015 * mdebugread.c (mdebug_read_symtab): Remove prints.
1016 * dwarf2read.c (dwarf2_psymtab::read_symtab): Remove prints. Add
1017 assert.
1018 * dbxread.c (dbx_read_symtab): Remove prints. Add assert.
1019
1020 2020-01-26 Tom Tromey <tom@tromey.com>
1021
1022 * xcoffread.c (this_symtab_psymtab, read_xcoff_symtab)
1023 (xcoff_psymtab_to_symtab_1, xcoff_read_symtab)
1024 (xcoff_start_psymtab, xcoff_end_psymtab, scan_xcoff_symtab): Use
1025 legacy_symtab.
1026 * stabsread.h (dbx_end_psymtab): Use legacy_symtab.
1027 * psymtab.c (psymtab_to_symtab): Call method.
1028 (dump_psymtab): Update.
1029 * psympriv.h (struct partial_symtab): Add virtual destructor.
1030 <read_symtab>: New method.
1031 (struct legacy_symtab): New.
1032 * mdebugread.c (mdebug_read_symtab): Use legacy_psymtab.
1033 (struct pst_map) <pst>: Now a legacy_psymtab.
1034 (parse_procedure, parse_partial_symbols, psymtab_to_symtab_1)
1035 (new_psymtab): Use legacy_psymtab.
1036 * dwarf2read.h (struct dwarf2_psymtab): New.
1037 (struct dwarf2_per_cu_data) <psymtab>: Use it.
1038 * dwarf2read.c (dwarf2_create_include_psymtab)
1039 (dwarf2_build_include_psymtabs, create_type_unit_group)
1040 (create_partial_symtab, process_psymtab_comp_unit_reader)
1041 (build_type_psymtabs_reader, build_type_psymtab_dependencies)
1042 (set_partial_user): Use dwarf2_psymtab.
1043 (dwarf2_psymtab::read_symtab): Rename from dwarf2_read_symtab.
1044 (psymtab_to_symtab_1, process_full_comp_unit)
1045 (process_full_type_unit, dwarf2_ranges_read)
1046 (dwarf2_get_pc_bounds, psymtab_include_file_name)
1047 (dwarf_decode_lines): Use dwarf2_psymtab.
1048 * dwarf-index-write.c (psym_index_map): Use dwarf2_psymtab.
1049 (add_address_entry_worker, write_one_signatured_type)
1050 (recursively_count_psymbols, recursively_write_psymbols)
1051 (write_one_signatured_type, psyms_seen_size, write_gdbindex)
1052 (write_debug_names): Likewise.
1053 * dbxread.c (struct header_file_location): Take a legacy_psymtab.
1054 <pst>: Now a legacy_psymtab.
1055 (find_corresponding_bincl_psymtab): Return a legacy_psymtab.
1056 (read_dbx_symtab, start_psymtab, dbx_end_psymtab)
1057 (dbx_psymtab_to_symtab_1, read_ofile_symtab): Use legacy_psymtab.
1058 * ctfread.c (struct ctf_psymtab): New.
1059 (ctf_start_symtab, ctf_end_symtab, psymtab_to_symtab): Take a
1060 ctf_psymtab.
1061 (ctf_psymtab::read_symtab): Rename from ctf_read_symtab.
1062 (create_partial_symtab): Return a ctf_psymtab.
1063 (scan_partial_symbols): Update.
1064
1065 2020-01-26 Tom Tromey <tom@tromey.com>
1066
1067 * xcoffread.c (xcoff_start_psymtab): Use new.
1068 * psymtab.c (partial_symtab::partial_symtab): New constructor,
1069 renamed from start_psymtab_common.
1070 * psympriv.h (struct partial_symtab): Add new constructor.
1071 (start_psymtab_common): Don't declare.
1072 * mdebugread.c (parse_partial_symbols): Use new.
1073 * dwarf2read.c (create_partial_symtab): Use new.
1074 * dbxread.c (start_psymtab): Use new.
1075 * ctfread.c (create_partial_symtab): Use new.
1076
1077 2020-01-26 Tom Tromey <tom@tromey.com>
1078
1079 * xcoffread.c (xcoff_end_psymtab): Use new.
1080 * psymtab.c (start_psymtab_common): Use new.
1081 (partial_symtab::partial_symtab): Rename from allocate_psymtab.
1082 Update.
1083 * psympriv.h (struct partial_symtab): Add parameters to
1084 constructor. Don't inline.
1085 (allocate_psymtab): Don't declare.
1086 * mdebugread.c (new_psymtab): Use new.
1087 * dwarf2read.c (dwarf2_create_include_psymtab): Use new.
1088 * dbxread.c (dbx_end_psymtab): Use new.
1089
1090 2020-01-26 Tom Tromey <tom@tromey.com>
1091
1092 * psymtab.h (class psymtab_storage) <install_psymtab>: Rename from
1093 allocate_psymtab. Update documentation.
1094 * psymtab.c (psymtab_storage::install_psymtab): Rename from
1095 allocate_psymtab. Do not use new.
1096 (allocate_psymtab): Use new. Update.
1097
1098 2020-01-26 Tom Tromey <tom@tromey.com>
1099
1100 * xcoffread.c (xcoff_psymtab_to_symtab_1): Update.
1101 * psymtab.c (psym_print_stats): Update.
1102 * psympriv.h (struct partial_symtab) <readin,
1103 psymtabs_addrmap_supported, anonymous>: Now bool.
1104 * mdebugread.c (psymtab_to_symtab_1): Update.
1105 * dwarf2read.c (create_type_unit_group, create_partial_symtab)
1106 (build_type_psymtabs_reader, psymtab_to_symtab_1)
1107 (process_full_comp_unit, process_full_type_unit): Update.
1108 * dbxread.c (dbx_psymtab_to_symtab_1): Update.
1109 * ctfread.c (psymtab_to_symtab): Update.
1110
1111 2020-01-26 Tom Tromey <tom@tromey.com>
1112
1113 * mdebugread.c (parse_partial_symbols): Use discard_psymtab.
1114 * psymtab.h (class psymtab_storage) <free_psymtabs>: Remove.
1115 * psymtab.c (psymtab_storage): Delete psymtabs.
1116 (psymtab_storage::allocate_psymtab): Use new.
1117 (psymtab_storage::discard_psymtab): Use delete.
1118 * psympriv.h (struct partial_symtab): Add constructor and
1119 initializers.
1120
1121 2020-01-26 Tom Tromey <tom@tromey.com>
1122
1123 * machoread.c: Do not include psympriv.h.
1124
1125 2020-01-25 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1126
1127 * NEWS: Mention the new option and the set/show commands.
1128
1129 2020-01-25 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1130
1131 * exec.c (exec_file_mismatch_names, exec_file_mismatch_mode)
1132 (show_exec_file_mismatch_command, set_exec_file_mismatch_command)
1133 (validate_exec_file): New variables, enums, functions.
1134 (exec_file_locate_attach, print_section_info): Style the filenames.
1135 (_initialize_exec): Install show_exec_file_mismatch_command and
1136 set_exec_file_mismatch_command.
1137 * gdbcore.h (validate_exec_file): Declare.
1138 * infcmd.c (attach_command): Call validate_exec_file.
1139 * remote.c ( remote_target::remote_add_inferior): Likewise.
1140
1141 2020-01-24 Andrew Burgess <andrew.burgess@embecosm.com>
1142
1143 * frame.c (find_frame_sal): Move call to get_next_frame into more
1144 inner scope.
1145 * inline-frame.c (inilne_state) <inline_state>: Update argument
1146 types.
1147 (inilne_state) <skipped_symbol>: Rename to...
1148 (inilne_state) <skipped_symbols>: ...this, and change to a vector.
1149 (skip_inline_frames): Build vector of skipped symbols and use this
1150 to reate the inline_state.
1151 (inline_skipped_symbol): Add a comment and some assertions, fetch
1152 skipped symbol from the list.
1153
1154 2020-01-24 Andrew Burgess <andrew.burgess@embecosm.com>
1155
1156 * buildsym.c (lte_is_less_than): Delete.
1157 (buildsym_compunit::end_symtab_with_blockvector): Create local
1158 lambda function to sort line table entries, and use
1159 std::stable_sort instead of std::sort.
1160 * symtab.c (find_pc_sect_line): Skip backward over end of sequence
1161 markers when looking for a previous line.
1162
1163 2020-01-24 Andrew Burgess <andrew.burgess@embecosm.com>
1164
1165 * dwarf2read.c (lnp_state_machine::record_line): Include
1166 end_sequence parameter in debug print out. Record the line if we
1167 are at an end_sequence marker even if it's not the start of a
1168 statement.
1169 * symmisc.c (maintenance_print_one_line_table): Print end of
1170 sequence markers with 'END' not '0'.
1171
1172 2020-01-24 Pedro Alves <palves@redhat.com>
1173
1174 PR gdb/25410
1175 * thread.c (scoped_restore_current_thread::restore): Use
1176 switch_to_inferior_no_thread.
1177 * exec.c: Include "progspace-and-thread.h".
1178 (add_target_sections, remove_target_sections):
1179 scoped_restore_current_pspace_and_thread instead of
1180 scoped_restore_current_thread.
1181 * infrun.c (handle_vfork_child_exec_or_exit): Assign the pspace
1182 and aspace to the inferior before calling clone_program_space.
1183 Remove stale comment.
1184
1185 2020-01-24 Christian Biesinger <cbiesinger@google.com>
1186
1187 * arm-nbsd-nat.c (arm_nbsd_nat_target::fetch_registers): Rename to...
1188 (arm_netbsd_nat_target::fetch_registers): ...this.
1189 (arm_nbsd_nat_target::store_registers): Rename to...
1190 (arm_netbsd_nat_target::store_registers): ...this.
1191
1192 2020-01-24 Christian Biesinger <cbiesinger@google.com>
1193
1194 * arm-nbsd-nat.c: Define _KERNTYPES to get the declaration of
1195 register_t.
1196
1197 2020-01-24 Christian Biesinger <cbiesinger@google.com>
1198
1199 * aarch64-fbsd-tdep.c (aarch64_fbsd_iterate_over_regset_sections):
1200 Update comment.
1201 * aarch64-linux-tdep.c (aarch64_linux_iterate_over_regset_sections):
1202 Likewise.
1203 * arm-fbsd-tdep.c (arm_fbsd_iterate_over_regset_sections): Likewise.
1204 * gdbcore.h (deprecated_add_core_fns): Update comment to point to
1205 the correct replacement (iterate_over_regset_sections).
1206 * riscv-fbsd-tdep.c (riscv_fbsd_iterate_over_regset_sections):
1207 Update comment.
1208
1209 2020-01-24 Graham Markall <graham.markall@embecosm.com>
1210
1211 PR gdb/23718
1212 * gdb/python/python.c (execute_gdb_command): Call
1213 async_enable_stdin in catch block.
1214
1215 2020-01-24 Andrew Burgess <andrew.burgess@embecosm.com>
1216
1217 * event-loop.c (start_event_loop): Wrap async_enable_stdin with
1218 SWITCH_THRU_ALL_UIS.
1219
1220 2020-01-24 Andrew Burgess <andrew.burgess@embecosm.com>
1221
1222 PR tui/9765
1223 * minsyms.c (lookup_minimal_symbol_by_pc_section): Update header
1224 comment, add extra parameter, and update to store previous symbol
1225 when appropriate.
1226 * minsyms.h (lookup_minimal_symbol_by_pc_section): Update comment,
1227 add extra parameter.
1228 * tui/tui-disasm.c (tui_disassemble): Update header comment,
1229 remove unneeded parameter, add try/catch around gdb_print_insn,
1230 rewrite to add items to asm_lines vector.
1231 (tui_find_backward_disassembly_start_address): New function.
1232 (tui_find_disassembly_address): Updated throughout.
1233 (tui_disasm_window::set_contents): Update for changes to
1234 tui_disassemble.
1235 (tui_disasm_window::do_scroll_vertical): No need to adjust the
1236 number of lines to scroll.
1237
1238 2020-01-23 Simon Marchi <simon.marchi@polymtl.ca>
1239
1240 * objfiles.h (ALL_OBJFILE_OSECTIONS): Move up.
1241 (SECT_OFF_DATA): Likewise.
1242 (SECT_OFF_RODATA): Likewise.
1243 (SECT_OFF_TEXT): Likewise.
1244 (SECT_OFF_BSS): Likewise.
1245 (struct objfile) <text_section_offset, data_section_offset>: New
1246 methods.
1247 * amd64-windows-tdep.c (amd64_windows_find_unwind_info): Use
1248 objfile::text_section_offset.
1249 * coff-pe-read.c (add_pe_forwarded_sym): Likewise.
1250 * coffread.c (coff_symtab_read): Likewise.
1251 (enter_linenos): Likewise.
1252 (process_coff_symbol): Likewise.
1253 * ctfread.c (get_objfile_text_range): Likewise.
1254 * dtrace-probe.c (dtrace_probe::get_relocated_address):
1255 Use objfile::data_section_offset.
1256 * dwarf2-frame.c (execute_cfa_program): Use
1257 objfile::text_section_offset.
1258 (dwarf2_frame_find_fde): Likewise.
1259 * dwarf2read.c (create_addrmap_from_index): Likewise.
1260 (create_addrmap_from_aranges): Likewise.
1261 (dw2_find_pc_sect_compunit_symtab): Likewise.
1262 (process_psymtab_comp_unit_reader): Likewise.
1263 (add_partial_symbol): Likewise.
1264 (add_partial_subprogram): Likewise.
1265 (process_full_comp_unit): Likewise.
1266 (read_file_scope): Likewise.
1267 (read_func_scope): Likewise.
1268 (read_lexical_block_scope): Likewise.
1269 (read_call_site_scope): Likewise.
1270 (dwarf2_rnglists_process): Likewise.
1271 (dwarf2_ranges_process): Likewise.
1272 (dwarf2_ranges_read): Likewise.
1273 (dwarf_decode_lines_1): Likewise.
1274 (new_symbol): Likewise.
1275 (dwarf2_fetch_die_loc_sect_off): Likewise.
1276 (dwarf2_per_cu_text_offset): Likewise.
1277 * hppa-bsd-tdep.c (hppabsd_find_global_pointer): Likewise.
1278 * hppa-tdep.c (read_unwind_info): Likewise.
1279 * ia64-tdep.c (ia64_find_unwind_table): Likewise.
1280 * psympriv.h (struct partial_symtab): Likewise.
1281 * psymtab.c (find_pc_sect_psymtab): Likewise.
1282 * solib-svr4.c (enable_break): Likewise.
1283 * stap-probe.c (relocate_address): Use
1284 objfile::data_section_offset.
1285 * xcoffread.c (enter_line_range): Use
1286 objfile::text_section_offset.
1287 (read_xcoff_symtab): Likewise.
1288
1289 2020-01-23 Simon Marchi <simon.marchi@efficios.com>
1290
1291 * darwin-nat.c (darwin_nat_target::wait_1): Move `inf`
1292 declaration to narrower scopes.
1293
1294 2020-01-23 Simon Marchi <simon.marchi@efficios.com>
1295
1296 * darwin-nat.h (struct darwin_exception_msg, enum
1297 darwin_msg_state, struct darwin_thread_info, darwin_thread_t):
1298 Move up.
1299 (class darwin_nat_target) <wait_1, check_new_threads,
1300 decode_exception_message, decode_message, stop_inferior,
1301 init_thread_list, ptrace_him, cancel_breakpoint>: Declare.
1302 * darwin-nat.c (darwin_check_new_threads): Rename to...
1303 (darwin_nat_target::check_new_threads): ... this.
1304 (darwin_suspend_inferior_it): Remove.
1305 (darwin_decode_exception_message): Rename to...
1306 (darwin_nat_target::decode_exception_message): ... this.
1307 (darwin_nat_target::resume): Pass target to find_inferior_ptid.
1308 (darwin_decode_message): Rename to...
1309 (darwin_nat_target::decode_message): ... this.
1310 (cancel_breakpoint): Rename to...
1311 (darwin_nat_target::cancel_breakpoint): ... this.
1312 (darwin_wait): Rename to...
1313 (darwin_nat_target::wait_1): ... this. Use range-based for loop
1314 instead of iterate_over_inferiors.
1315 (darwin_nat_target::wait): Call wait_1 instead of darwin_wait.
1316 (darwin_stop_inferior): Rename to...
1317 (darwin_nat_target::stop_inferior): ... this.
1318 (darwin_nat_target::kill): Call wait_1 instead of darwin_wait.
1319 (darwin_init_thread_list): Rename to...
1320 (darwin_nat_target::init_thread_list): ... this.
1321 (darwin_ptrace_him): Rename to...
1322 (darwin_nat_target::ptrace_him): ... this.
1323 (darwin_nat_target::create_inferior): Pass lambda function to
1324 fork_inferior.
1325 (darwin_nat_target::detach): Call stop_inferior instead of
1326 darwin_stop_inferior.
1327 * fork-inferior.h (fork_inferior): Change init_trace_fun
1328 parameter to gdb::function_view.
1329 * fork-inferior.c (fork_inferior): Likewise.
1330
1331 2020-01-23 Hannes Domani <ssbssa@yahoo.de>
1332
1333 * i386-cygwin-tdep.c (core_process_module_section): Update.
1334 * windows-nat.c (struct lm_info_windows): Add text_offset.
1335 (windows_xfer_shared_libraries): Update.
1336 * windows-tdep.c (windows_xfer_shared_library):
1337 Add text_offset_cached argument.
1338 * windows-tdep.h (windows_xfer_shared_library): Update.
1339
1340 2020-01-21 Simon Marchi <simon.marchi@efficios.com>
1341
1342 * gdbarch.sh: Add declaration for _initialize_gdbarch.
1343
1344 2020-01-21 Simon Marchi <simon.marchi@efficios.com>
1345
1346 * remote-sim.c (check_for_duplicate_sim_descriptor): Remove.
1347 (get_sim_inferior_data): Remove use of iterate_over_inferiors,
1348 replace with range-based for.
1349 (gdbsim_interrupt_inferior): Remove.
1350 (gdbsim_target::interrupt): Replace iterate_over_inferiors use
1351 with a range-based for. Inline code from
1352 gdbsim_interrupt_inferior.
1353
1354 2020-01-21 Simon Marchi <simon.marchi@efficios.com>
1355
1356 * infrun.c (proceed): Fix indentation.
1357
1358 2020-01-21 Tom Tromey <tromey@adacore.com>
1359
1360 * source-cache.c (source_cache::ensure): Call ext_lang_colorize.
1361 * python/python.c (python_extension_ops): Update.
1362 (gdbpy_colorize): New function.
1363 * python/lib/gdb/__init__.py (colorize): New function.
1364 * extension.h (ext_lang_colorize): Declare.
1365 * extension.c (ext_lang_colorize): New function.
1366 * extension-priv.h (struct extension_language_ops) <colorize>: New
1367 member.
1368 * cli/cli-style.c (_initialize_cli_style): Update help text.
1369
1370 2020-01-21 Luis Machado <luis.machado@linaro.org>
1371
1372 * aarch64-tdep.c (struct aarch64_displaced_step_closure)
1373 <cond>: Change type to bool.
1374 (aarch64_displaced_step_b_cond): Update cond to use bool type.
1375 (aarch64_displaced_step_cb): Likewise.
1376 (aarch64_displaced_step_tb): Likewise.
1377
1378 2020-01-21 Luis Machado <luis.machado@linaro.org>
1379
1380 * aarch64-tdep.c (aarch64_displaced_step_fixup): Add more debugging
1381 output.
1382
1383 2020-01-21 Luis Machado <luis.machado@linaro.org>
1384
1385 * aarch64-tdep.c (struct aarch64_displaced_step_closure )
1386 <pc_adjust>: Adjust the documentation.
1387 (aarch64_displaced_step_fixup): Check if PC really moved before
1388 adjusting it.
1389
1390 2020-01-19 Tom Tromey <tom@tromey.com>
1391
1392 * disasm.c (~gdb_disassembler): New destructor.
1393 (gdb_buffered_insn_length): Call disassemble_free_target.
1394 * disasm.h (class gdb_disassembler): Declare destructor. Use
1395 DISABLE_COPY_AND_ASSIGN.
1396
1397 2020-01-19 Tom Tromey <tom@tromey.com>
1398
1399 * dwarf2read.c (abbrev_table_up): Move typedef earlier.
1400 (die_reader_func_ftype): Remove.
1401 (cutu_reader): New class.
1402 (dw2_get_file_names_reader): Remove "data" parameter.
1403 (dw2_get_file_names): Use cutu_reader.
1404 (create_debug_type_hash_table): Update.
1405 (read_cutu_die_from_dwo): Update comment.
1406 (lookup_dwo_unit): Add dwo_name parameter.
1407 (cutu_reader::init_tu_and_read_dwo_dies): Now a method. Remove
1408 die_reader_func_ftype and data parameters.
1409 (cutu_reader::cutu_reader): Rename from init_cutu_and_read_dies.
1410 Remove die_reader_func_ftype and data parameters.
1411 (~cutu_reader): New; from init_cutu_and_read_dies.
1412 (cutu_reader::cutu_reader): Rename from
1413 init_cutu_and_read_dies_no_follow. Remove die_reader_func_ftype
1414 and data parameters.
1415 (init_cutu_and_read_dies_simple): Remove.
1416 (struct process_psymtab_comp_unit_data): Remove.
1417 (process_psymtab_comp_unit_reader): Remove data parameter; add
1418 want_partial_unit and pretend_language parameters.
1419 (process_psymtab_comp_unit): Use cutu_reader.
1420 (build_type_psymtabs_reader): Remove data parameter.
1421 (build_type_psymtabs_1): Use cutu_reader.
1422 (process_skeletonless_type_unit): Likewise.
1423 (load_partial_comp_unit_reader): Remove.
1424 (load_partial_comp_unit): Use cutu_reader.
1425 (load_full_comp_unit_reader): Remove.
1426 (load_full_comp_unit): Use cutu_reader.
1427 (struct create_dwo_cu_data): Remove.
1428 (create_dwo_cu_reader): Remove datap parameter; add dwo_file and
1429 dwo_unit parameters.
1430 (create_cus_hash_table): Use cutu_reader.
1431 (struct dwarf2_read_addr_index_data): Remove.
1432 (dwarf2_read_addr_index_reader): Remove.
1433 (dwarf2_read_addr_index): Use cutu_reader.
1434 (read_signatured_type_reader): Remove.
1435 (read_signatured_type): Use cutu_reader.
1436
1437 2020-01-19 Tom Tromey <tom@tromey.com>
1438
1439 * tui/tui.c (tui_show_assembly): Use tui_suppress_output.
1440 * tui/tui-wingeneral.h (class tui_suppress_output): New.
1441 (tui_wrefresh): Declare.
1442 * tui/tui-wingeneral.c (suppress_output): New global.
1443 (tui_suppress_output, ~tui_suppress_output): New constructor and
1444 destructor.
1445 (tui_wrefresh): New function.
1446 (tui_gen_win_info::refresh_window): Use tui_wrefresh.
1447 (tui_gen_win_info::make_window): Call wnoutrefresh when needed.
1448 * tui/tui-regs.h (struct tui_data_window) <no_refresh>: Declare
1449 method.
1450 * tui/tui-regs.c (tui_data_window::erase_data_content): Call
1451 tui_wrefresh.
1452 (tui_data_window::no_refresh): New method.
1453 (tui_data_item_window::refresh_window): Call tui_wrefresh.
1454 (tui_reg_command): Use tui_suppress_output
1455 * tui/tui-layout.c (tui_set_layout): Use tui_suppress_output.
1456 * tui/tui-data.h (struct tui_gen_win_info) <no_refresh>: New
1457 method.
1458 * tui/tui-command.c (tui_refresh_cmd_win): Call tui_wrefresh.
1459
1460 2020-01-19 Tom Tromey <tom@tromey.com>
1461
1462 * tui/tui-winsource.c (tui_update_source_windows_with_line):
1463 Handle case where symtab is null.
1464
1465 2020-01-19 Simon Marchi <simon.marchi@polymtl.ca>
1466
1467 * linux-fork.c (one_fork_p): Simplify.
1468
1469 2020-01-17 Simon Marchi <simon.marchi@efficios.com>
1470
1471 * top.c (struct qt_args): Remove.
1472 (kill_or_detach): Change return type to void, replace `void *`
1473 parameter with a proper one.
1474 (print_inferior_quit_action): Likewise.
1475 (quit_confirm): Use range-based for loop to iterate over inferiors.
1476 (quit_force): Likewise.
1477
1478 2020-01-17 Simon Marchi <simon.marchi@efficios.com>
1479
1480 * mi/mi-main.c (run_one_inferior): Change return type to void, replace
1481 `void *` parameter with proper parameters.
1482 (mi_cmd_exec_run): Use range-based loop to iterate over inferiors.
1483 (print_one_inferior): Change return type to void, replace `void *`
1484 parameter with proper parameters.
1485 (mi_cmd_list_thread_groups): Use range-based loop to iterate over
1486 inferiors.
1487 (get_other_inferior): Remove.
1488 (mi_cmd_remove_inferior): Use range-based loop to iterate over
1489 inferiors.
1490
1491 2020-01-17 Simon Marchi <simon.marchi@efficios.com>
1492
1493 * mi/mi-interp.c (report_initial_inferior): Remove.
1494 (mi_interp::init): Use range-based for to iterate over inferiors.
1495
1496 2020-01-17 Simon Marchi <simon.marchi@efficios.com>
1497
1498 * python/py-inferior.c (build_inferior_list): Remove.
1499 (gdbpy_ref): Use range-based for loop to iterate over inferiors.
1500
1501 2020-01-16 Christian Biesinger <cbiesinger@google.com>
1502
1503 * btrace.c (btrace_compute_ftrace_1): Fix spelling error (Unkown).
1504 (btrace_stitch_trace): Likewise.
1505 * charset.c (intermediate_encoding): Likewise (vaild).
1506 * nat/linux-btrace.c (linux_read_pt): Likewise (Unkown).
1507 * python/py-record-btrace.c (struct PyMethodDef): Likewise (occurences).
1508 * record-btrace.c (record_btrace_print_conf): Likewise (unkown).
1509
1510 2020-01-16 Hannes Domani <ssbssa@yahoo.de>
1511
1512 * windows-tdep.c (windows_get_tlb_type):
1513 Add rtl_user_process_parameters type.
1514
1515 2020-01-16 Pedro Alves <palves@redhat.com>
1516 Norbert Lange <nolange79@gmail.com>
1517
1518 PR build/24805
1519 * gdbsupport/gdb_proc_service.h (PS_EXPORT): New.
1520 (ps_get_thread_area, ps_getpid, ps_lcontinue, ps_lgetfpregs)
1521 (ps_lgetregs, ps_lsetfpregs, ps_lsetregs, ps_lstop, ps_pcontinue)
1522 (ps_pdread, ps_pdwrite, ps_pglobal_lookup, ps_pstop, ps_ptread)
1523 (ps_ptwrite, ps_lgetxregs, ps_lgetxregsize, ps_lsetxregs)
1524 (ps_plog): Redeclare exported functions with default visibility.
1525
1526 2020-01-16 Nitika Achra <Nitika.Achra@amd.com>
1527
1528 * dwarf2loc.c (decode_debug_loclists_addresses): Handle
1529 DW_LLE_base_addressx, DW_LLE_startx_length, DW_LLE_start_length.
1530
1531 2020-01-15 Simon Marchi <simon.marchi@efficios.com>
1532
1533 * infcmd.c (post_create_inferior): Use get_thread_regcache
1534 instead of get_current_regcache.
1535
1536 2020-01-14 Tom Tromey <tom@tromey.com>
1537
1538 PR symtab/12535:
1539 * python/python.c (gdbpy_decode_line): Treat empty string the same
1540 as no argument.
1541
1542 2020-01-14 Tom Tromey <tom@tromey.com>
1543
1544 * Makefile.in (CLIBS): Remove second use of $(LIBIBERTY).
1545
1546 2020-01-14 Tom Tromey <tom@tromey.com>
1547
1548 * nat/linux-btrace.c: Don't include <config.h>.
1549 * nat/linux-ptrace.c: Don't include <config.h>.
1550 * nat/x86-linux-dregs.c: Don't include <config.h>.
1551
1552 2020-01-14 Tom Tromey <tom@tromey.com>
1553
1554 * configure: Rebuild.
1555 * configure.ac: Move many checks to ../gdbsupport/common.m4.
1556
1557 2020-01-14 Tom Tromey <tom@tromey.com>
1558
1559 * nat/x86-linux-dregs.c: Include configh.h.
1560 * nat/linux-ptrace.c: Include configh.h.
1561 * nat/linux-btrace.c: Include configh.h.
1562 * defs.h: Include config.h, bfd.h.
1563 * configure.ac: Don't source common.host.
1564 (CONFIG_OBS, CONFIG_SRCS): Remove gdbsupport files.
1565 * configure: Rebuild.
1566 * acinclude.m4: Update path.
1567 * Makefile.in (SUPPORT, LIBSUPPORT, INCSUPPORT): New variables.
1568 (CONFIG_SRC_SUBDIR): Remove gdbsupport.
1569 (INTERNAL_CFLAGS_BASE): Add INCSUPPORT.
1570 (CLIBS): Add LIBSUPPORT.
1571 (CDEPS): Likewise.
1572 (COMMON_SFILES): Remove gdbsupport files.
1573 (HFILES_NO_SRCDIR): Likewise.
1574 (stamp-version): Update path to create-version.sh.
1575 (ALLDEPFILES): Remove gdbsupport files.
1576
1577 2020-01-14 Tom Tromey <tom@tromey.com>
1578
1579 * gdbsupport/common.m4 (GDB_AC_COMMON): Define WIN32APILIBS and
1580 USE_WIN32API when needed.
1581 * configure.ac (USE_WIN32API): Don't define.
1582 (WIN32LIBS): Use WIN32APILIBS.
1583 * configure: Rebuild.
1584
1585 2020-01-14 Tom Tromey <tom@tromey.com>
1586
1587 * configure: Rebuild.
1588 * gdbsupport/common.m4 (GDB_AC_COMMON): Fix indentation.
1589
1590 2020-01-14 Bernd Edlinger <bernd.edlinger@hotmail.de>
1591
1592 * skip.c (skip_function_command): Make skip w/o arguments use the
1593 name of the inlined function if pc is inside any inlined function.
1594
1595 2020-01-14 Luis Machado <luis.machado@linaro.org>
1596
1597 * inf-ptrace.c (inf_ptrace_target::resume): Update comments.
1598 * infrun.c (resume_1): Likewise.
1599 (handle_inferior_event): Remove stale comment.
1600 * linux-nat.c (linux_nat_target::resume): Update comments.
1601 (save_stop_reason): Likewise.
1602 (linux_nat_filter_event): Likewise.
1603 * linux-nat.h (struct lwp_info) <stop_pc>, <stop_reason>: Likewise.
1604
1605 2020-01-13 Andrew Burgess <andrew.burgess@embecosm.com>
1606
1607 * elfread.c (record_minimal_symbol): Set section index to 0 for
1608 non-allocatable sections.
1609
1610
1611 2020-01-13 Ali Tamur <tamur@google.com>
1612
1613 * dwarf2read.c (dwarf2_debug_sections): Add debug_str_offsets sections.
1614 (dwarf2_cu): Add str_offsets_base field. Change the type of addr_base
1615 to gdb::optional. Update comments.
1616 (dwo_file): Update comments.
1617 (read_attribute): Update API to take an additional out parameter,
1618 need_reprocess. This is used to mark attributes that need other
1619 attributes (e.g. str_offsets_base) for correct computation which may not
1620 have been read yet.
1621 (read_attribute_reprocess): New function declaration.
1622 (read_addr_index): Likewise.
1623 (read_dwo_str_index): Likewise.
1624 (read_stub_str_index): Likewise.
1625 (dwarf2_per_objfile::locate_sections): Handle debug_str_offsets section.
1626 (lookup_addr_base): New function definition.
1627 (lookup_ranges_base): Likewise.
1628 (read_cutu_die_from_dwo): Use the new functions: lookup_addr_base,
1629 lookup_ranges_base.
1630 (init_cutu_and_read_dies): Update comments.
1631 (init_cutu_and_read_dies_no_follow): Change API to take parent compile
1632 unit. This is used to inherit parent's str_offsets_base and addr_base.
1633 Update comments.
1634 (init_cutu_and_read_dies_simple): Reflect API changes.
1635 (skip_one_die): Reflect API changes. Handle DW_FORM_rnglistx.
1636 (create_cus_hash_table): Change API to take parent compile unit.
1637 Reflect API changes.
1638 (open_and_init_dwo_file): Reflect API changes.
1639 (dwarf2_get_pc_bounds): Update comments.
1640 (dwarf2_record_block_ranges): Likewise.
1641 (read_full_die_1): Change implementation to reprocess attributes that
1642 need str_offsets_base and addr_base.
1643 (partial_die_info::read): Likewise.
1644 (read_attribute_reprocess): New function definition.
1645 (read_attribute_value): Change API to take an additional out parameter,
1646 need_reprocess. Handle DW_FORM_rnglistx. No longer trigger an error
1647 when a non-dwo compile unit has index based attributes.
1648 (read_attribute): Reflect API changes.
1649 (read_addr_index_1): Reflect API changes. Update comments.
1650 (dwarf2_read_addr_index_data): Reflect API changes.
1651 (dwarf2_read_addr_index): Likewise.
1652 (read_str_index): Change API and implementation. This becomes a helper
1653 to be used by the new string index related methods. Update error
1654 message and comments.
1655 (read_dwo_str_index): New function definition.
1656 (read_stub_str_index): Likewise.
1657 * dwarf2read.h (dwarf2_per_objfile): Add str_offsets field.
1658 * symfile.h (dwarf2_debug_sections): Likewise.
1659 * xcoffread.c (dwarf2_debug_sections): Likewise.
1660
1661 2020-01-13 Simon Marchi <simon.marchi@efficios.com>
1662
1663 * gdbcore.h (struct core_fns) <core_read_registers>: Change
1664 core_reg_sect type to gdb_byte *.
1665 * arm-nbsd-nat.c (fetch_elfcore_registers): Likewise.
1666 * cris-tdep.c (fetch_core_registers): Likewise.
1667 * corelow.c (core_target::get_core_register_section): Change
1668 type of `contents` to gdb::byte_vector.
1669
1670 2020-01-13 Andrew Burgess <andrew.burgess@embecosm.com>
1671
1672 * tui/tui-wingeneral.c (box_win): Position the title in the center
1673 of the border.
1674
1675 2020-01-13 Simon Marchi <simon.marchi@polymtl.ca>
1676
1677 * corelow.c (core_target::get_core_register_section): Use
1678 std::vector instead of alloca.
1679
1680 2020-01-13 Simon Marchi <simon.marchi@efficios.com>
1681
1682 * warning.m4: Add -Wmissing-declarations to build_warnings.
1683 * configure: Re-generate.
1684
1685 2020-01-13 Simon Marchi <simon.marchi@efficios.com>
1686
1687 * python/python.c (init__gdb_module): Add declaration.
1688
1689 2020-01-13 Simon Marchi <simon.marchi@efficios.com>
1690
1691 * aarch64-fbsd-nat.c (_initialize_aarch64_fbsd_nat): Add declaration.
1692 * aarch64-fbsd-tdep.c (_initialize_aarch64_fbsd_tdep): Add declaration.
1693 * aarch64-linux-nat.c (_initialize_aarch64_linux_nat): Add declaration.
1694 * aarch64-linux-tdep.c (_initialize_aarch64_linux_tdep): Add declaration.
1695 * aarch64-newlib-tdep.c (_initialize_aarch64_newlib_tdep): Add declaration.
1696 * aarch64-tdep.c (_initialize_aarch64_tdep): Add declaration.
1697 * ada-exp.y (_initialize_ada_exp): Add declaration.
1698 * ada-lang.c (_initialize_ada_language): Add declaration.
1699 * ada-tasks.c (_initialize_tasks): Add declaration.
1700 * agent.c (_initialize_agent): Add declaration.
1701 * aix-thread.c (_initialize_aix_thread): Add declaration.
1702 * alpha-bsd-nat.c (_initialize_alphabsd_nat): Add declaration.
1703 * alpha-linux-nat.c (_initialize_alpha_linux_nat): Add declaration.
1704 * alpha-linux-tdep.c (_initialize_alpha_linux_tdep): Add declaration.
1705 * alpha-nbsd-tdep.c (_initialize_alphanbsd_tdep): Add declaration.
1706 * alpha-obsd-tdep.c (_initialize_alphaobsd_tdep): Add declaration.
1707 * alpha-tdep.c (_initialize_alpha_tdep): Add declaration.
1708 * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): Add declaration.
1709 * amd64-dicos-tdep.c (_initialize_amd64_dicos_tdep): Add declaration.
1710 * amd64-fbsd-nat.c (_initialize_amd64fbsd_nat): Add declaration.
1711 * amd64-fbsd-tdep.c (_initialize_amd64fbsd_tdep): Add declaration.
1712 * amd64-linux-nat.c (_initialize_amd64_linux_nat): Add declaration.
1713 * amd64-linux-tdep.c (_initialize_amd64_linux_tdep): Add declaration.
1714 * amd64-nbsd-nat.c (_initialize_amd64nbsd_nat): Add declaration.
1715 * amd64-nbsd-tdep.c (_initialize_amd64nbsd_tdep): Add declaration.
1716 * amd64-obsd-nat.c (_initialize_amd64obsd_nat): Add declaration.
1717 * amd64-obsd-tdep.c (_initialize_amd64obsd_tdep): Add declaration.
1718 * amd64-sol2-tdep.c (_initialize_amd64_sol2_tdep): Add declaration.
1719 * amd64-tdep.c (_initialize_amd64_tdep): Add declaration.
1720 * amd64-windows-nat.c (_initialize_amd64_windows_nat): Add declaration.
1721 * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Add declaration.
1722 * annotate.c (_initialize_annotate): Add declaration.
1723 * arc-newlib-tdep.c (_initialize_arc_newlib_tdep): Add declaration.
1724 * arc-tdep.c (_initialize_arc_tdep): Add declaration.
1725 * arch-utils.c (_initialize_gdbarch_utils): Add declaration.
1726 * arm-fbsd-nat.c (_initialize_arm_fbsd_nat): Add declaration.
1727 * arm-fbsd-tdep.c (_initialize_arm_fbsd_tdep): Add declaration.
1728 * arm-linux-nat.c (_initialize_arm_linux_nat): Add declaration.
1729 * arm-linux-tdep.c (_initialize_arm_linux_tdep): Add declaration.
1730 * arm-nbsd-nat.c (_initialize_arm_netbsd_nat): Add declaration.
1731 * arm-nbsd-tdep.c (_initialize_arm_netbsd_tdep): Add declaration.
1732 * arm-obsd-tdep.c (_initialize_armobsd_tdep): Add declaration.
1733 * arm-pikeos-tdep.c (_initialize_arm_pikeos_tdep): Add declaration.
1734 * arm-symbian-tdep.c (_initialize_arm_symbian_tdep): Add declaration.
1735 * arm-tdep.c (_initialize_arm_tdep): Add declaration.
1736 * arm-wince-tdep.c (_initialize_arm_wince_tdep): Add declaration.
1737 * auto-load.c (_initialize_auto_load): Add declaration.
1738 * auxv.c (_initialize_auxv): Add declaration.
1739 * avr-tdep.c (_initialize_avr_tdep): Add declaration.
1740 * ax-gdb.c (_initialize_ax_gdb): Add declaration.
1741 * bfin-linux-tdep.c (_initialize_bfin_linux_tdep): Add declaration.
1742 * bfin-tdep.c (_initialize_bfin_tdep): Add declaration.
1743 * break-catch-sig.c (_initialize_break_catch_sig): Add declaration.
1744 * break-catch-syscall.c (_initialize_break_catch_syscall): Add declaration.
1745 * break-catch-throw.c (_initialize_break_catch_throw): Add declaration.
1746 * breakpoint.c (_initialize_breakpoint): Add declaration.
1747 * bsd-uthread.c (_initialize_bsd_uthread): Add declaration.
1748 * btrace.c (_initialize_btrace): Add declaration.
1749 * charset.c (_initialize_charset): Add declaration.
1750 * cli/cli-cmds.c (_initialize_cli_cmds): Add declaration.
1751 * cli/cli-dump.c (_initialize_cli_dump): Add declaration.
1752 * cli/cli-interp.c (_initialize_cli_interp): Add declaration.
1753 * cli/cli-logging.c (_initialize_cli_logging): Add declaration.
1754 * cli/cli-script.c (_initialize_cli_script): Add declaration.
1755 * cli/cli-style.c (_initialize_cli_style): Add declaration.
1756 * coff-pe-read.c (_initialize_coff_pe_read): Add declaration.
1757 * coffread.c (_initialize_coffread): Add declaration.
1758 * compile/compile-cplus-types.c (_initialize_compile_cplus_types): Add declaration.
1759 * compile/compile.c (_initialize_compile): Add declaration.
1760 * complaints.c (_initialize_complaints): Add declaration.
1761 * completer.c (_initialize_completer): Add declaration.
1762 * copying.c (_initialize_copying): Add declaration.
1763 * corefile.c (_initialize_core): Add declaration.
1764 * corelow.c (_initialize_corelow): Add declaration.
1765 * cp-abi.c (_initialize_cp_abi): Add declaration.
1766 * cp-namespace.c (_initialize_cp_namespace): Add declaration.
1767 * cp-support.c (_initialize_cp_support): Add declaration.
1768 * cp-valprint.c (_initialize_cp_valprint): Add declaration.
1769 * cris-linux-tdep.c (_initialize_cris_linux_tdep): Add declaration.
1770 * cris-tdep.c (_initialize_cris_tdep): Add declaration.
1771 * csky-linux-tdep.c (_initialize_csky_linux_tdep): Add declaration.
1772 * csky-tdep.c (_initialize_csky_tdep): Add declaration.
1773 * ctfread.c (_initialize_ctfread): Add declaration.
1774 * d-lang.c (_initialize_d_language): Add declaration.
1775 * darwin-nat-info.c (_initialize_darwin_info_commands): Add declaration.
1776 * darwin-nat.c (_initialize_darwin_nat): Add declaration.
1777 * dbxread.c (_initialize_dbxread): Add declaration.
1778 * dcache.c (_initialize_dcache): Add declaration.
1779 * disasm-selftests.c (_initialize_disasm_selftests): Add declaration.
1780 * disasm.c (_initialize_disasm): Add declaration.
1781 * dtrace-probe.c (_initialize_dtrace_probe): Add declaration.
1782 * dummy-frame.c (_initialize_dummy_frame): Add declaration.
1783 * dwarf-index-cache.c (_initialize_index_cache): Add declaration.
1784 * dwarf-index-write.c (_initialize_dwarf_index_write): Add declaration.
1785 * dwarf2-frame-tailcall.c (_initialize_tailcall_frame): Add declaration.
1786 * dwarf2-frame.c (_initialize_dwarf2_frame): Add declaration.
1787 * dwarf2expr.c (_initialize_dwarf2expr): Add declaration.
1788 * dwarf2loc.c (_initialize_dwarf2loc): Add declaration.
1789 * dwarf2read.c (_initialize_dwarf2_read): Add declaration.
1790 * elfread.c (_initialize_elfread): Add declaration.
1791 * exec.c (_initialize_exec): Add declaration.
1792 * extension.c (_initialize_extension): Add declaration.
1793 * f-lang.c (_initialize_f_language): Add declaration.
1794 * f-valprint.c (_initialize_f_valprint): Add declaration.
1795 * fbsd-nat.c (_initialize_fbsd_nat): Add declaration.
1796 * fbsd-tdep.c (_initialize_fbsd_tdep): Add declaration.
1797 * filesystem.c (_initialize_filesystem): Add declaration.
1798 * findcmd.c (_initialize_mem_search): Add declaration.
1799 * findvar.c (_initialize_findvar): Add declaration.
1800 * fork-child.c (_initialize_fork_child): Add declaration.
1801 * frame-base.c (_initialize_frame_base): Add declaration.
1802 * frame-unwind.c (_initialize_frame_unwind): Add declaration.
1803 * frame.c (_initialize_frame): Add declaration.
1804 * frv-linux-tdep.c (_initialize_frv_linux_tdep): Add declaration.
1805 * frv-tdep.c (_initialize_frv_tdep): Add declaration.
1806 * ft32-tdep.c (_initialize_ft32_tdep): Add declaration.
1807 * gcore.c (_initialize_gcore): Add declaration.
1808 * gdb-demangle.c (_initialize_gdb_demangle): Add declaration.
1809 * gdb_bfd.c (_initialize_gdb_bfd): Add declaration.
1810 * gdbarch-selftests.c (_initialize_gdbarch_selftests): Add declaration.
1811 * gdbarch.c (_initialize_gdbarch): Add declaration.
1812 * gdbtypes.c (_initialize_gdbtypes): Add declaration.
1813 * gnu-nat.c (_initialize_gnu_nat): Add declaration.
1814 * gnu-v2-abi.c (_initialize_gnu_v2_abi): Add declaration.
1815 * gnu-v3-abi.c (_initialize_gnu_v3_abi): Add declaration.
1816 * go-lang.c (_initialize_go_language): Add declaration.
1817 * go32-nat.c (_initialize_go32_nat): Add declaration.
1818 * guile/guile.c (_initialize_guile): Add declaration.
1819 * h8300-tdep.c (_initialize_h8300_tdep): Add declaration.
1820 * hppa-linux-nat.c (_initialize_hppa_linux_nat): Add declaration.
1821 * hppa-linux-tdep.c (_initialize_hppa_linux_tdep): Add declaration.
1822 * hppa-nbsd-nat.c (_initialize_hppanbsd_nat): Add declaration.
1823 * hppa-nbsd-tdep.c (_initialize_hppanbsd_tdep): Add declaration.
1824 * hppa-obsd-nat.c (_initialize_hppaobsd_nat): Add declaration.
1825 * hppa-obsd-tdep.c (_initialize_hppabsd_tdep): Add declaration.
1826 * hppa-tdep.c (_initialize_hppa_tdep): Add declaration.
1827 * i386-bsd-nat.c (_initialize_i386bsd_nat): Add declaration.
1828 * i386-cygwin-tdep.c (_initialize_i386_cygwin_tdep): Add declaration.
1829 * i386-darwin-nat.c (_initialize_i386_darwin_nat): Add declaration.
1830 * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): Add declaration.
1831 * i386-dicos-tdep.c (_initialize_i386_dicos_tdep): Add declaration.
1832 * i386-fbsd-nat.c (_initialize_i386fbsd_nat): Add declaration.
1833 * i386-fbsd-tdep.c (_initialize_i386fbsd_tdep): Add declaration.
1834 * i386-gnu-nat.c (_initialize_i386gnu_nat): Add declaration.
1835 * i386-gnu-tdep.c (_initialize_i386gnu_tdep): Add declaration.
1836 * i386-go32-tdep.c (_initialize_i386_go32_tdep): Add declaration.
1837 * i386-linux-nat.c (_initialize_i386_linux_nat): Add declaration.
1838 * i386-linux-tdep.c (_initialize_i386_linux_tdep): Add declaration.
1839 * i386-nbsd-nat.c (_initialize_i386nbsd_nat): Add declaration.
1840 * i386-nbsd-tdep.c (_initialize_i386nbsd_tdep): Add declaration.
1841 * i386-nto-tdep.c (_initialize_i386nto_tdep): Add declaration.
1842 * i386-obsd-nat.c (_initialize_i386obsd_nat): Add declaration.
1843 * i386-obsd-tdep.c (_initialize_i386obsd_tdep): Add declaration.
1844 * i386-sol2-nat.c (_initialize_amd64_sol2_nat): Add declaration.
1845 * i386-sol2-tdep.c (_initialize_i386_sol2_tdep): Add declaration.
1846 * i386-tdep.c (_initialize_i386_tdep): Add declaration.
1847 * i386-windows-nat.c (_initialize_i386_windows_nat): Add declaration.
1848 * ia64-libunwind-tdep.c (_initialize_libunwind_frame): Add declaration.
1849 * ia64-linux-nat.c (_initialize_ia64_linux_nat): Add declaration.
1850 * ia64-linux-tdep.c (_initialize_ia64_linux_tdep): Add declaration.
1851 * ia64-tdep.c (_initialize_ia64_tdep): Add declaration.
1852 * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Add declaration.
1853 * infcall.c (_initialize_infcall): Add declaration.
1854 * infcmd.c (_initialize_infcmd): Add declaration.
1855 * inflow.c (_initialize_inflow): Add declaration.
1856 * infrun.c (_initialize_infrun): Add declaration.
1857 * interps.c (_initialize_interpreter): Add declaration.
1858 * iq2000-tdep.c (_initialize_iq2000_tdep): Add declaration.
1859 * jit.c (_initialize_jit): Add declaration.
1860 * language.c (_initialize_language): Add declaration.
1861 * linux-fork.c (_initialize_linux_fork): Add declaration.
1862 * linux-nat.c (_initialize_linux_nat): Add declaration.
1863 * linux-tdep.c (_initialize_linux_tdep): Add declaration.
1864 * linux-thread-db.c (_initialize_thread_db): Add declaration.
1865 * lm32-tdep.c (_initialize_lm32_tdep): Add declaration.
1866 * m2-lang.c (_initialize_m2_language): Add declaration.
1867 * m32c-tdep.c (_initialize_m32c_tdep): Add declaration.
1868 * m32r-linux-nat.c (_initialize_m32r_linux_nat): Add declaration.
1869 * m32r-linux-tdep.c (_initialize_m32r_linux_tdep): Add declaration.
1870 * m32r-tdep.c (_initialize_m32r_tdep): Add declaration.
1871 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Add declaration.
1872 * m68k-bsd-nat.c (_initialize_m68kbsd_nat): Add declaration.
1873 * m68k-bsd-tdep.c (_initialize_m68kbsd_tdep): Add declaration.
1874 * m68k-linux-nat.c (_initialize_m68k_linux_nat): Add declaration.
1875 * m68k-linux-tdep.c (_initialize_m68k_linux_tdep): Add declaration.
1876 * m68k-tdep.c (_initialize_m68k_tdep): Add declaration.
1877 * machoread.c (_initialize_machoread): Add declaration.
1878 * macrocmd.c (_initialize_macrocmd): Add declaration.
1879 * macroscope.c (_initialize_macroscope): Add declaration.
1880 * maint-test-options.c (_initialize_maint_test_options): Add declaration.
1881 * maint-test-settings.c (_initialize_maint_test_settings): Add declaration.
1882 * maint.c (_initialize_maint_cmds): Add declaration.
1883 * mdebugread.c (_initialize_mdebugread): Add declaration.
1884 * memattr.c (_initialize_mem): Add declaration.
1885 * mep-tdep.c (_initialize_mep_tdep): Add declaration.
1886 * mi/mi-cmd-env.c (_initialize_mi_cmd_env): Add declaration.
1887 * mi/mi-cmds.c (_initialize_mi_cmds): Add declaration.
1888 * mi/mi-interp.c (_initialize_mi_interp): Add declaration.
1889 * mi/mi-main.c (_initialize_mi_main): Add declaration.
1890 * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): Add declaration.
1891 * microblaze-tdep.c (_initialize_microblaze_tdep): Add declaration.
1892 * mips-fbsd-nat.c (_initialize_mips_fbsd_nat): Add declaration.
1893 * mips-fbsd-tdep.c (_initialize_mips_fbsd_tdep): Add declaration.
1894 * mips-linux-nat.c (_initialize_mips_linux_nat): Add declaration.
1895 * mips-linux-tdep.c (_initialize_mips_linux_tdep): Add declaration.
1896 * mips-nbsd-nat.c (_initialize_mipsnbsd_nat): Add declaration.
1897 * mips-nbsd-tdep.c (_initialize_mipsnbsd_tdep): Add declaration.
1898 * mips-sde-tdep.c (_initialize_mips_sde_tdep): Add declaration.
1899 * mips-tdep.c (_initialize_mips_tdep): Add declaration.
1900 * mips64-obsd-nat.c (_initialize_mips64obsd_nat): Add declaration.
1901 * mips64-obsd-tdep.c (_initialize_mips64obsd_tdep): Add declaration.
1902 * mipsread.c (_initialize_mipsread): Add declaration.
1903 * mn10300-linux-tdep.c (_initialize_mn10300_linux_tdep): Add declaration.
1904 * mn10300-tdep.c (_initialize_mn10300_tdep): Add declaration.
1905 * moxie-tdep.c (_initialize_moxie_tdep): Add declaration.
1906 * msp430-tdep.c (_initialize_msp430_tdep): Add declaration.
1907 * nds32-tdep.c (_initialize_nds32_tdep): Add declaration.
1908 * nios2-linux-tdep.c (_initialize_nios2_linux_tdep): Add declaration.
1909 * nios2-tdep.c (_initialize_nios2_tdep): Add declaration.
1910 * nto-procfs.c (_initialize_procfs): Add declaration.
1911 * objc-lang.c (_initialize_objc_language): Add declaration.
1912 * observable.c (_initialize_observer): Add declaration.
1913 * opencl-lang.c (_initialize_opencl_language): Add declaration.
1914 * or1k-linux-tdep.c (_initialize_or1k_linux_tdep): Add declaration.
1915 * or1k-tdep.c (_initialize_or1k_tdep): Add declaration.
1916 * osabi.c (_initialize_gdb_osabi): Add declaration.
1917 * osdata.c (_initialize_osdata): Add declaration.
1918 * p-valprint.c (_initialize_pascal_valprint): Add declaration.
1919 * parse.c (_initialize_parse): Add declaration.
1920 * ppc-fbsd-nat.c (_initialize_ppcfbsd_nat): Add declaration.
1921 * ppc-fbsd-tdep.c (_initialize_ppcfbsd_tdep): Add declaration.
1922 * ppc-linux-nat.c (_initialize_ppc_linux_nat): Add declaration.
1923 * ppc-linux-tdep.c (_initialize_ppc_linux_tdep): Add declaration.
1924 * ppc-nbsd-nat.c (_initialize_ppcnbsd_nat): Add declaration.
1925 * ppc-nbsd-tdep.c (_initialize_ppcnbsd_tdep): Add declaration.
1926 * ppc-obsd-nat.c (_initialize_ppcobsd_nat): Add declaration.
1927 * ppc-obsd-tdep.c (_initialize_ppcobsd_tdep): Add declaration.
1928 * printcmd.c (_initialize_printcmd): Add declaration.
1929 * probe.c (_initialize_probe): Add declaration.
1930 * proc-api.c (_initialize_proc_api): Add declaration.
1931 * proc-events.c (_initialize_proc_events): Add declaration.
1932 * proc-service.c (_initialize_proc_service): Add declaration.
1933 * procfs.c (_initialize_procfs): Add declaration.
1934 * producer.c (_initialize_producer): Add declaration.
1935 * psymtab.c (_initialize_psymtab): Add declaration.
1936 * python/python.c (_initialize_python): Add declaration.
1937 * ravenscar-thread.c (_initialize_ravenscar): Add declaration.
1938 * record-btrace.c (_initialize_record_btrace): Add declaration.
1939 * record-full.c (_initialize_record_full): Add declaration.
1940 * record.c (_initialize_record): Add declaration.
1941 * regcache-dump.c (_initialize_regcache_dump): Add declaration.
1942 * regcache.c (_initialize_regcache): Add declaration.
1943 * reggroups.c (_initialize_reggroup): Add declaration.
1944 * remote-notif.c (_initialize_notif): Add declaration.
1945 * remote-sim.c (_initialize_remote_sim): Add declaration.
1946 * remote.c (_initialize_remote): Add declaration.
1947 * reverse.c (_initialize_reverse): Add declaration.
1948 * riscv-fbsd-nat.c (_initialize_riscv_fbsd_nat): Add declaration.
1949 * riscv-fbsd-tdep.c (_initialize_riscv_fbsd_tdep): Add declaration.
1950 * riscv-linux-nat.c (_initialize_riscv_linux_nat): Add declaration.
1951 * riscv-linux-tdep.c (_initialize_riscv_linux_tdep): Add declaration.
1952 * riscv-tdep.c (_initialize_riscv_tdep): Add declaration.
1953 * rl78-tdep.c (_initialize_rl78_tdep): Add declaration.
1954 * rs6000-aix-tdep.c (_initialize_rs6000_aix_tdep): Add declaration.
1955 * rs6000-lynx178-tdep.c (_initialize_rs6000_lynx178_tdep):
1956 Add declaration.
1957 * rs6000-nat.c (_initialize_rs6000_nat): Add declaration.
1958 * rs6000-tdep.c (_initialize_rs6000_tdep): Add declaration.
1959 * run-on-main-thread.c (_initialize_run_on_main_thread): Add declaration.
1960 * rust-exp.y (_initialize_rust_exp): Add declaration.
1961 * rx-tdep.c (_initialize_rx_tdep): Add declaration.
1962 * s12z-tdep.c (_initialize_s12z_tdep): Add declaration.
1963 * s390-linux-nat.c (_initialize_s390_nat): Add declaration.
1964 * s390-linux-tdep.c (_initialize_s390_linux_tdep): Add declaration.
1965 * s390-tdep.c (_initialize_s390_tdep): Add declaration.
1966 * score-tdep.c (_initialize_score_tdep): Add declaration.
1967 * ser-go32.c (_initialize_ser_dos): Add declaration.
1968 * ser-mingw.c (_initialize_ser_windows): Add declaration.
1969 * ser-pipe.c (_initialize_ser_pipe): Add declaration.
1970 * ser-tcp.c (_initialize_ser_tcp): Add declaration.
1971 * ser-uds.c (_initialize_ser_socket): Add declaration.
1972 * ser-unix.c (_initialize_ser_hardwire): Add declaration.
1973 * serial.c (_initialize_serial): Add declaration.
1974 * sh-linux-tdep.c (_initialize_sh_linux_tdep): Add declaration.
1975 * sh-nbsd-nat.c (_initialize_shnbsd_nat): Add declaration.
1976 * sh-nbsd-tdep.c (_initialize_shnbsd_tdep): Add declaration.
1977 * sh-tdep.c (_initialize_sh_tdep): Add declaration.
1978 * skip.c (_initialize_step_skip): Add declaration.
1979 * sol-thread.c (_initialize_sol_thread): Add declaration.
1980 * solib-aix.c (_initialize_solib_aix): Add declaration.
1981 * solib-darwin.c (_initialize_darwin_solib): Add declaration.
1982 * solib-dsbt.c (_initialize_dsbt_solib): Add declaration.
1983 * solib-frv.c (_initialize_frv_solib): Add declaration.
1984 * solib-svr4.c (_initialize_svr4_solib): Add declaration.
1985 * solib-target.c (_initialize_solib_target): Add declaration.
1986 * solib.c (_initialize_solib): Add declaration.
1987 * source-cache.c (_initialize_source_cache): Add declaration.
1988 * source.c (_initialize_source): Add declaration.
1989 * sparc-linux-nat.c (_initialize_sparc_linux_nat): Add declaration.
1990 * sparc-linux-tdep.c (_initialize_sparc_linux_tdep): Add declaration.
1991 * sparc-nat.c (_initialize_sparc_nat): Add declaration.
1992 * sparc-nbsd-nat.c (_initialize_sparcnbsd_nat): Add declaration.
1993 * sparc-nbsd-tdep.c (_initialize_sparcnbsd_tdep): Add declaration.
1994 * sparc-obsd-tdep.c (_initialize_sparc32obsd_tdep): Add declaration.
1995 * sparc-sol2-tdep.c (_initialize_sparc_sol2_tdep): Add declaration.
1996 * sparc-tdep.c (_initialize_sparc_tdep): Add declaration.
1997 * sparc64-fbsd-nat.c (_initialize_sparc64fbsd_nat): Add declaration.
1998 * sparc64-fbsd-tdep.c (_initialize_sparc64fbsd_tdep): Add declaration.
1999 * sparc64-linux-nat.c (_initialize_sparc64_linux_nat): Add declaration.
2000 * sparc64-linux-tdep.c (_initialize_sparc64_linux_tdep): Add declaration.
2001 * sparc64-nat.c (_initialize_sparc64_nat): Add declaration.
2002 * sparc64-nbsd-nat.c (_initialize_sparc64nbsd_nat): Add declaration.
2003 * sparc64-nbsd-tdep.c (_initialize_sparc64nbsd_tdep): Add declaration.
2004 * sparc64-obsd-nat.c (_initialize_sparc64obsd_nat): Add declaration.
2005 * sparc64-obsd-tdep.c (_initialize_sparc64obsd_tdep): Add declaration.
2006 * sparc64-sol2-tdep.c (_initialize_sparc64_sol2_tdep): Add declaration.
2007 * sparc64-tdep.c (_initialize_sparc64_adi_tdep): Add declaration.
2008 * stabsread.c (_initialize_stabsread): Add declaration.
2009 * stack.c (_initialize_stack): Add declaration.
2010 * stap-probe.c (_initialize_stap_probe): Add declaration.
2011 * std-regs.c (_initialize_frame_reg): Add declaration.
2012 * symfile-debug.c (_initialize_symfile_debug): Add declaration.
2013 * symfile-mem.c (_initialize_symfile_mem): Add declaration.
2014 * symfile.c (_initialize_symfile): Add declaration.
2015 * symmisc.c (_initialize_symmisc): Add declaration.
2016 * symtab.c (_initialize_symtab): Add declaration.
2017 * target.c (_initialize_target): Add declaration.
2018 * target-connection.c (_initialize_target_connection): Add
2019 declaration.
2020 * target-dcache.c (_initialize_target_dcache): Add declaration.
2021 * target-descriptions.c (_initialize_target_descriptions): Add declaration.
2022 * thread.c (_initialize_thread): Add declaration.
2023 * tic6x-linux-tdep.c (_initialize_tic6x_linux_tdep): Add declaration.
2024 * tic6x-tdep.c (_initialize_tic6x_tdep): Add declaration.
2025 * tilegx-linux-nat.c (_initialize_tile_linux_nat): Add declaration.
2026 * tilegx-linux-tdep.c (_initialize_tilegx_linux_tdep): Add declaration.
2027 * tilegx-tdep.c (_initialize_tilegx_tdep): Add declaration.
2028 * tracectf.c (_initialize_ctf): Add declaration.
2029 * tracefile-tfile.c (_initialize_tracefile_tfile): Add declaration.
2030 * tracefile.c (_initialize_tracefile): Add declaration.
2031 * tracepoint.c (_initialize_tracepoint): Add declaration.
2032 * tui/tui-hooks.c (_initialize_tui_hooks): Add declaration.
2033 * tui/tui-interp.c (_initialize_tui_interp): Add declaration.
2034 * tui/tui-layout.c (_initialize_tui_layout): Add declaration.
2035 * tui/tui-regs.c (_initialize_tui_regs): Add declaration.
2036 * tui/tui-stack.c (_initialize_tui_stack): Add declaration.
2037 * tui/tui-win.c (_initialize_tui_win): Add declaration.
2038 * tui/tui.c (_initialize_tui): Add declaration.
2039 * typeprint.c (_initialize_typeprint): Add declaration.
2040 * ui-style.c (_initialize_ui_style): Add declaration.
2041 * unittests/array-view-selftests.c (_initialize_array_view_selftests): Add declaration.
2042 * unittests/child-path-selftests.c (_initialize_child_path_selftests): Add declaration.
2043 * unittests/cli-utils-selftests.c (_initialize_cli_utils_selftests): Add declaration.
2044 * unittests/common-utils-selftests.c (_initialize_common_utils_selftests): Add declaration.
2045 * unittests/copy_bitwise-selftests.c (_initialize_copy_bitwise_utils_selftests): Add declaration.
2046 * unittests/environ-selftests.c (_initialize_environ_selftests): Add declaration.
2047 * unittests/filtered_iterator-selftests.c
2048 (_initialize_filtered_iterator_selftests): Add declaration.
2049 * unittests/format_pieces-selftests.c (_initialize_format_pieces_selftests): Add declaration.
2050 * unittests/function-view-selftests.c (_initialize_function_view_selftests): Add declaration.
2051 * unittests/help-doc-selftests.c (_initialize_help_doc_selftests): Add declaration.
2052 * unittests/lookup_name_info-selftests.c (_initialize_lookup_name_info_selftests): Add declaration.
2053 * unittests/main-thread-selftests.c
2054 (_initialize_main_thread_selftests): Add declaration.
2055 * unittests/memory-map-selftests.c (_initialize_memory_map_selftests): Add declaration.
2056 * unittests/memrange-selftests.c (_initialize_memrange_selftests): Add declaration.
2057 * unittests/mkdir-recursive-selftests.c (_initialize_mkdir_recursive_selftests): Add declaration.
2058 * unittests/observable-selftests.c (_initialize_observer_selftest): Add declaration.
2059 * unittests/offset-type-selftests.c (_initialize_offset_type_selftests): Add declaration.
2060 * unittests/optional-selftests.c (_initialize_optional_selftests): Add declaration.
2061 * unittests/parse-connection-spec-selftests.c (_initialize_parse_connection_spec_selftests): Add declaration.
2062 * unittests/rsp-low-selftests.c (_initialize_rsp_low_selftests): Add declaration.
2063 * unittests/scoped_fd-selftests.c (_initialize_scoped_fd_selftests): Add declaration.
2064 * unittests/scoped_mmap-selftests.c (_initialize_scoped_mmap_selftests): Add declaration.
2065 * unittests/scoped_restore-selftests.c (_initialize_scoped_restore_selftests): Add declaration.
2066 * unittests/string_view-selftests.c (_initialize_string_view_selftests): Add declaration.
2067 * unittests/style-selftests.c (_initialize_style_selftest): Add declaration.
2068 * unittests/tracepoint-selftests.c (_initialize_tracepoint_selftests): Add declaration.
2069 * unittests/tui-selftests.c (_initialize_tui_selftest): Add
2070 declaration.
2071 * unittests/unpack-selftests.c (_initialize_unpack_selftests): Add declaration.
2072 * unittests/utils-selftests.c (_initialize_utils_selftests): Add declaration.
2073 * unittests/vec-utils-selftests.c (_initialize_vec_utils_selftests): Add declaration.
2074 * unittests/xml-utils-selftests.c (_initialize_xml_utils): Add declaration.
2075 * user-regs.c (_initialize_user_regs): Add declaration.
2076 * utils.c (_initialize_utils): Add declaration.
2077 * v850-tdep.c (_initialize_v850_tdep): Add declaration.
2078 * valops.c (_initialize_valops): Add declaration.
2079 * valprint.c (_initialize_valprint): Add declaration.
2080 * value.c (_initialize_values): Add declaration.
2081 * varobj.c (_initialize_varobj): Add declaration.
2082 * vax-bsd-nat.c (_initialize_vaxbsd_nat): Add declaration.
2083 * vax-nbsd-tdep.c (_initialize_vaxnbsd_tdep): Add declaration.
2084 * vax-tdep.c (_initialize_vax_tdep): Add declaration.
2085 * windows-nat.c (_initialize_windows_nat): Add declaration.
2086 (_initialize_check_for_gdb_ini): Add declaration.
2087 (_initialize_loadable): Add declaration.
2088 * windows-tdep.c (_initialize_windows_tdep): Add declaration.
2089 * x86-bsd-nat.c (_initialize_x86_bsd_nat): Add declaration.
2090 * x86-linux-nat.c (_initialize_x86_linux_nat): Add declaration.
2091 * xcoffread.c (_initialize_xcoffread): Add declaration.
2092 * xml-support.c (_initialize_xml_support): Add declaration.
2093 * xstormy16-tdep.c (_initialize_xstormy16_tdep): Add declaration.
2094 * xtensa-linux-nat.c (_initialize_xtensa_linux_nat): Add declaration.
2095 * xtensa-linux-tdep.c (_initialize_xtensa_linux_tdep): Add declaration.
2096 * xtensa-tdep.c (_initialize_xtensa_tdep): Add declaration.
2097
2098 2020-01-13 Simon Marchi <simon.marchi@polymtl.ca>
2099
2100 * regformats/regdat.sh: Generate declaration for init function.
2101
2102 2020-01-13 Simon Marchi <simon.marchi@polymtl.ca>
2103
2104 * remote-sim.c (next_pid, INITIAL_PID, sim_inferior_data): Move
2105 up.
2106 (gdbsim_target) <get_inferior_data_by_ptid, resume_one_inferior,
2107 close_one_inferior>: New methods.
2108 (get_sim_inferior_data_by_ptid): Move to gdbsim_target,
2109 pass down target to find_inferior_pid.
2110 (gdbsim_target::fetch_registers, gdbsim_target::store_registers):
2111 Pass down target to find_inferior_ptid.
2112 (gdbsim_target::create_inferior): Pass down target to
2113 add_thread_silent.
2114 (gdbsim_close_inferior): Move to gdbsim_close_inferior, pass
2115 target down to find_inferior_ptid and switch_to_thread.
2116 (gdbsim_target::close): Update to call close_one_inferior.
2117 (struct resume_data): Remove.
2118 (gdbsim_resume_inferior): Move to gdbsim_target. Take arguments
2119 directly, rather than through a void pointer.
2120 (gdbsim_target::resume): Update to call resume_one_inferior.
2121
2122 2020-01-12 Simon Marchi <simon.marchi@polymtl.ca>
2123
2124 * gdbsupport/gdb_wait.c: Include gdb_wait.h.
2125
2126 2020-01-12 Pedro Alves <palves@redhat.com>
2127
2128 * bsd-kvm.c (bsd_kvm_target::close): Call exit_inferior_silent
2129 directly for the current inferior instead of
2130 discard_all_inferiors.
2131 (discard_all_inferiors): Delete.
2132
2133 2020-01-11 Tom Tromey <tom@tromey.com>
2134
2135 * tui/tui-wingeneral.c (box_win): Check cli_styling.
2136 * tui/tui-winsource.c (tui_source_window_base::refill): Use
2137 deprecated_safe_get_selected_frame.
2138
2139 2020-01-10 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
2140
2141 * inferior.c (print_inferior): Switch inferior before printing it.
2142
2143 2020-01-10 Aleksandar Paunovic <aleksandar.paunovic@intel.com>
2144 Pedro Alves <palves@redhat.com>
2145
2146 * progspace-and-thread.c (switch_to_program_space_and_thread):
2147 Assert there's an inferior for PSPACE. Use
2148 switch_to_inferior_no_thread to switch the inferior too.
2149 * progspace.c (program_space::~program_space): Call
2150 clear_symtab_users here, with SYMFILE_DEFER_BP_RESET.
2151 (program_space::free_all_objfiles): Don't call clear_symtab_users
2152 here.
2153 * symfile.c (symbol_file_clear): Call clear_symtab_users here.
2154
2155 2020-01-10 Pedro Alves <palves@redhat.com>
2156
2157 * NEWS: Mention multi-target debugging, "info connections", and
2158 "add-inferior -no-connection".
2159
2160 2020-01-10 Pedro Alves <palves@redhat.com>
2161
2162 * infrun.c: Include "target-connection.h".
2163 (check_multi_target_resumption): New.
2164 (proceed): Call it.
2165 * target-connection.c (make_target_connection_string): Make
2166 extern.
2167 * target-connection.h (make_target_connection_string): Declare.
2168
2169 2020-01-10 Pedro Alves <palves@redhat.com>
2170
2171 * Makefile.in (COMMON_SFILES): Add target-connection.c.
2172 * inferior.c (uiout_field_connection): New function.
2173 (print_inferior): Add new "connection-id" column.
2174 (add_inferior_command): Show connection number/string of added
2175 inferior.
2176 * process-stratum-target.h
2177 (process_stratum_target::connection_string): New virtual method.
2178 (process_stratum_target::connection_number): New field.
2179 * remote.c (remote_target::connection_string): New override.
2180 * target-connection.c: New file.
2181 * target-connection.h: New file.
2182 * target.c (decref_target): Remove process_stratum targets from
2183 the connection list.
2184 (target_stack::push): Add process_stratum targets to the
2185 connection list.
2186
2187 2020-01-10 Pedro Alves <palves@redhat.com>
2188
2189 Revert:
2190 2016-04-12 Pedro Alves <palves@redhat.com>
2191 * serial.c (serial_open, serial_fdopen_ops, do_serial_close):
2192 Remove references to name.
2193 * serial.h (struct serial) <name>: Delete.
2194
2195 2020-01-10 Pedro Alves <palves@redhat.com>
2196
2197 * gdbarch-selftests.c (register_to_value_test): Remove "target
2198 already pushed" check.
2199
2200 2020-01-10 Pedro Alves <palves@redhat.com>
2201 John Baldwin <jhb@FreeBSD.org>
2202
2203 * aarch64-linux-nat.c
2204 (aarch64_linux_nat_target::thread_architecture): Adjust.
2205 * ada-tasks.c (print_ada_task_info): Adjust find_thread_ptid call.
2206 (task_command_1): Likewise.
2207 * aix-thread.c (sync_threadlists, aix_thread_target::resume)
2208 (aix_thread_target::wait, aix_thread_target::fetch_registers)
2209 (aix_thread_target::store_registers)
2210 (aix_thread_target::thread_alive): Adjust.
2211 * amd64-fbsd-tdep.c: Include "inferior.h".
2212 (amd64fbsd_get_thread_local_address): Pass down target.
2213 * amd64-linux-nat.c (ps_get_thread_area): Use ps_prochandle
2214 thread's gdbarch instead of target_gdbarch.
2215 * break-catch-sig.c (signal_catchpoint_print_it): Adjust call to
2216 get_last_target_status.
2217 * break-catch-syscall.c (print_it_catch_syscall): Likewise.
2218 * breakpoint.c (breakpoints_should_be_inserted_now): Consider all
2219 inferiors.
2220 (update_inserted_breakpoint_locations): Skip if inferiors with no
2221 execution.
2222 (update_global_location_list): When handling moribund locations,
2223 find representative inferior for location's pspace, and use thread
2224 count of its process_stratum target.
2225 * bsd-kvm.c (bsd_kvm_target_open): Pass target down.
2226 * bsd-uthread.c (bsd_uthread_target::wait): Use
2227 as_process_stratum_target and adjust thread_change_ptid and
2228 add_thread calls.
2229 (bsd_uthread_target::update_thread_list): Use
2230 as_process_stratum_target and adjust find_thread_ptid,
2231 thread_change_ptid and add_thread calls.
2232 * btrace.c (maint_btrace_packet_history_cmd): Adjust
2233 find_thread_ptid call.
2234 * corelow.c (add_to_thread_list): Adjust add_thread call.
2235 (core_target_open): Adjust add_thread_silent and thread_count
2236 calls.
2237 (core_target::pid_to_str): Adjust find_inferior_ptid call.
2238 * ctf.c (ctf_target_open): Adjust add_thread_silent call.
2239 * event-top.c (async_disconnect): Pop targets from all inferiors.
2240 * exec.c (add_target_sections): Push exec target on all inferiors
2241 sharing the program space.
2242 (remove_target_sections): Remove the exec target from all
2243 inferiors sharing the program space.
2244 (exec_on_vfork): New.
2245 * exec.h (exec_on_vfork): Declare.
2246 * fbsd-nat.c (fbsd_add_threads): Add fbsd_nat_target parameter.
2247 Pass it down.
2248 (fbsd_nat_target::update_thread_list): Adjust.
2249 (fbsd_nat_target::resume): Adjust.
2250 (fbsd_handle_debug_trap): Add fbsd_nat_target parameter. Pass it
2251 down.
2252 (fbsd_nat_target::wait, fbsd_nat_target::post_attach): Adjust.
2253 * fbsd-tdep.c (fbsd_corefile_thread): Adjust
2254 get_thread_arch_regcache call.
2255 * fork-child.c (gdb_startup_inferior): Pass target down to
2256 startup_inferior and set_executing.
2257 * gdbthread.h (struct process_stratum_target): Forward declare.
2258 (add_thread, add_thread_silent, add_thread_with_info)
2259 (in_thread_list): Add process_stratum_target parameter.
2260 (find_thread_ptid(inferior*, ptid_t)): New overload.
2261 (find_thread_ptid, thread_change_ptid): Add process_stratum_target
2262 parameter.
2263 (all_threads()): Delete overload.
2264 (all_threads, all_non_exited_threads): Add process_stratum_target
2265 parameter.
2266 (all_threads_safe): Use brace initialization.
2267 (thread_count): Add process_stratum_target parameter.
2268 (set_resumed, set_running, set_stop_requested, set_executing)
2269 (threads_are_executing, finish_thread_state): Add
2270 process_stratum_target parameter.
2271 (switch_to_thread): Use is_current_thread.
2272 * i386-fbsd-tdep.c: Include "inferior.h".
2273 (i386fbsd_get_thread_local_address): Pass down target.
2274 * i386-linux-nat.c (i386_linux_nat_target::low_resume): Adjust.
2275 * inf-child.c (inf_child_target::maybe_unpush_target): Remove
2276 have_inferiors check.
2277 * inf-ptrace.c (inf_ptrace_target::create_inferior)
2278 (inf_ptrace_target::attach): Adjust.
2279 * infcall.c (run_inferior_call): Adjust.
2280 * infcmd.c (run_command_1): Pass target to
2281 scoped_finish_thread_state.
2282 (proceed_thread_callback): Skip inferiors with no execution.
2283 (continue_command): Rename 'all_threads' local to avoid hiding
2284 'all_threads' function. Adjust get_last_target_status call.
2285 (prepare_one_step): Adjust set_running call.
2286 (signal_command): Use user_visible_resume_target. Compare thread
2287 pointers instead of inferior_ptid.
2288 (info_program_command): Adjust to pass down target.
2289 (attach_command): Mark target's 'thread_executing' flag.
2290 (stop_current_target_threads_ns): New, factored out from ...
2291 (interrupt_target_1): ... this. Switch inferior before making
2292 target calls.
2293 * inferior-iter.h
2294 (struct all_inferiors_iterator, struct all_inferiors_range)
2295 (struct all_inferiors_safe_range)
2296 (struct all_non_exited_inferiors_range): Filter on
2297 process_stratum_target too. Remove explicit.
2298 * inferior.c (inferior::inferior): Push dummy target on target
2299 stack.
2300 (find_inferior_pid, find_inferior_ptid, number_of_live_inferiors):
2301 Add process_stratum_target parameter, and pass it down.
2302 (have_live_inferiors): Adjust.
2303 (switch_to_inferior_and_push_target): New.
2304 (add_inferior_command, clone_inferior_command): Handle
2305 "-no-connection" parameter. Use
2306 switch_to_inferior_and_push_target.
2307 (_initialize_inferior): Mention "-no-connection" option in
2308 the help of "add-inferior" and "clone-inferior" commands.
2309 * inferior.h: Include "process-stratum-target.h".
2310 (interrupt_target_1): Use bool.
2311 (struct inferior) <push_target, unpush_target, target_is_pushed,
2312 find_target_beneath, top_target, process_target, target_at,
2313 m_stack>: New.
2314 (discard_all_inferiors): Delete.
2315 (find_inferior_pid, find_inferior_ptid, number_of_live_inferiors)
2316 (all_inferiors, all_non_exited_inferiors): Add
2317 process_stratum_target parameter.
2318 * infrun.c: Include "gdb_select.h" and <unordered_map>.
2319 (target_last_proc_target): New global.
2320 (follow_fork_inferior): Push target on new inferior. Pass target
2321 to add_thread_silent. Call exec_on_vfork. Handle target's
2322 reference count.
2323 (follow_fork): Adjust get_last_target_status call. Also consider
2324 target.
2325 (follow_exec): Push target on new inferior.
2326 (struct execution_control_state) <target>: New field.
2327 (user_visible_resume_target): New.
2328 (do_target_resume): Call target_async.
2329 (resume_1): Set target's threads_executing flag. Consider resume
2330 target.
2331 (commit_resume_all_targets): New.
2332 (proceed): Also consider resume target. Skip threads of inferiors
2333 with no execution. Commit resumtion in all targets.
2334 (start_remote): Pass current inferior to wait_for_inferior.
2335 (infrun_thread_stop_requested): Consider target as well. Pass
2336 thread_info pointer to clear_inline_frame_state instead of ptid.
2337 (infrun_thread_thread_exit): Consider target as well.
2338 (random_pending_event_thread): New inferior parameter. Use it.
2339 (do_target_wait): Rename to ...
2340 (do_target_wait_1): ... this. Add inferior parameter, and pass it
2341 down.
2342 (threads_are_resumed_pending_p, do_target_wait): New.
2343 (prepare_for_detach): Adjust calls.
2344 (wait_for_inferior): New inferior parameter. Handle it. Use
2345 do_target_wait_1 instead of do_target_wait.
2346 (fetch_inferior_event): Adjust. Switch to representative
2347 inferior. Pass target down.
2348 (set_last_target_status): Add process_stratum_target parameter.
2349 Save target in global.
2350 (get_last_target_status): Add process_stratum_target parameter and
2351 handle it.
2352 (nullify_last_target_wait_ptid): Clear 'target_last_proc_target'.
2353 (context_switch): Check inferior_ptid == null_ptid before calling
2354 inferior_thread().
2355 (get_inferior_stop_soon): Pass down target.
2356 (wait_one): Rename to ...
2357 (poll_one_curr_target): ... this.
2358 (struct wait_one_event): New.
2359 (wait_one): New.
2360 (stop_all_threads): Adjust.
2361 (handle_no_resumed, handle_inferior_event): Adjust to consider the
2362 event's target.
2363 (switch_back_to_stepped_thread): Also consider target.
2364 (print_stop_event): Update.
2365 (normal_stop): Update. Also consider the resume target.
2366 * infrun.h (wait_for_inferior): Remove declaration.
2367 (user_visible_resume_target): New declaration.
2368 (get_last_target_status, set_last_target_status): New
2369 process_stratum_target parameter.
2370 * inline-frame.c (clear_inline_frame_state(ptid_t)): Add
2371 process_stratum_target parameter, and use it.
2372 (clear_inline_frame_state (thread_info*)): New.
2373 * inline-frame.c (clear_inline_frame_state(ptid_t)): Add
2374 process_stratum_target parameter.
2375 (clear_inline_frame_state (thread_info*)): Declare.
2376 * linux-fork.c (delete_checkpoint_command): Pass target down to
2377 find_thread_ptid.
2378 (checkpoint_command): Adjust.
2379 * linux-nat.c (linux_nat_target::follow_fork): Switch to thread
2380 instead of just tweaking inferior_ptid.
2381 (linux_nat_switch_fork): Pass target down to thread_change_ptid.
2382 (exit_lwp): Pass target down to find_thread_ptid.
2383 (attach_proc_task_lwp_callback): Pass target down to
2384 add_thread/set_running/set_executing.
2385 (linux_nat_target::attach): Pass target down to
2386 thread_change_ptid.
2387 (get_detach_signal): Pass target down to find_thread_ptid.
2388 Consider last target status's target.
2389 (linux_resume_one_lwp_throw, resume_lwp)
2390 (linux_handle_syscall_trap, linux_handle_extended_wait, wait_lwp)
2391 (stop_wait_callback, save_stop_reason, linux_nat_filter_event)
2392 (linux_nat_wait_1, resume_stopped_resumed_lwps): Pass target down.
2393 (linux_nat_target::async_wait_fd): New.
2394 (linux_nat_stop_lwp, linux_nat_target::thread_address_space): Pass
2395 target down.
2396 * linux-nat.h (linux_nat_target::async_wait_fd): Declare.
2397 * linux-tdep.c (get_thread_arch_regcache): Pass target down.
2398 * linux-thread-db.c (struct thread_db_info::process_target): New
2399 field.
2400 (add_thread_db_info): Save target.
2401 (get_thread_db_info): New process_stratum_target parameter. Also
2402 match target.
2403 (delete_thread_db_info): New process_stratum_target parameter.
2404 Also match target.
2405 (thread_from_lwp): Adjust to pass down target.
2406 (thread_db_notice_clone): Pass down target.
2407 (check_thread_db_callback): Pass down target.
2408 (try_thread_db_load_1): Always push the thread_db target.
2409 (try_thread_db_load, record_thread): Pass target down.
2410 (thread_db_target::detach): Pass target down. Always unpush the
2411 thread_db target.
2412 (thread_db_target::wait, thread_db_target::mourn_inferior): Pass
2413 target down. Always unpush the thread_db target.
2414 (find_new_threads_callback, thread_db_find_new_threads_2)
2415 (thread_db_target::update_thread_list): Pass target down.
2416 (thread_db_target::pid_to_str): Pass current inferior down.
2417 (thread_db_target::get_thread_local_address): Pass target down.
2418 (thread_db_target::resume, maintenance_check_libthread_db): Pass
2419 target down.
2420 * nto-procfs.c (nto_procfs_target::update_thread_list): Adjust.
2421 * procfs.c (procfs_target::procfs_init_inferior): Declare.
2422 (proc_set_current_signal, do_attach, procfs_target::wait): Adjust.
2423 (procfs_init_inferior): Rename to ...
2424 (procfs_target::procfs_init_inferior): ... this and adjust.
2425 (procfs_target::create_inferior, procfs_notice_thread)
2426 (procfs_do_thread_registers): Adjust.
2427 * ppc-fbsd-tdep.c: Include "inferior.h".
2428 (ppcfbsd_get_thread_local_address): Pass down target.
2429 * proc-service.c (ps_xfer_memory): Switch current inferior and
2430 program space as well.
2431 (get_ps_regcache): Pass target down.
2432 * process-stratum-target.c
2433 (process_stratum_target::thread_address_space)
2434 (process_stratum_target::thread_architecture): Pass target down.
2435 * process-stratum-target.h
2436 (process_stratum_target::threads_executing): New field.
2437 (as_process_stratum_target): New.
2438 * ravenscar-thread.c
2439 (ravenscar_thread_target::update_inferior_ptid): Pass target down.
2440 (ravenscar_thread_target::wait, ravenscar_add_thread): Pass target
2441 down.
2442 * record-btrace.c (record_btrace_target::info_record): Adjust.
2443 (record_btrace_target::record_method)
2444 (record_btrace_target::record_is_replaying)
2445 (record_btrace_target::fetch_registers)
2446 (get_thread_current_frame_id, record_btrace_target::resume)
2447 (record_btrace_target::wait, record_btrace_target::stop): Pass
2448 target down.
2449 * record-full.c (record_full_wait_1): Switch to event thread.
2450 Pass target down.
2451 * regcache.c (regcache::regcache)
2452 (get_thread_arch_aspace_regcache, get_thread_arch_regcache): Add
2453 process_stratum_target parameter and handle it.
2454 (current_thread_target): New global.
2455 (get_thread_regcache): Add process_stratum_target parameter and
2456 handle it. Switch inferior before calling target method.
2457 (get_thread_regcache): Pass target down.
2458 (get_thread_regcache_for_ptid): Pass target down.
2459 (registers_changed_ptid): Add process_stratum_target parameter and
2460 handle it.
2461 (registers_changed_thread, registers_changed): Pass target down.
2462 (test_get_thread_arch_aspace_regcache): New.
2463 (current_regcache_test): Define a couple local test_target_ops
2464 instances and use them for testing.
2465 (readwrite_regcache): Pass process_stratum_target parameter.
2466 (cooked_read_test, cooked_write_test): Pass mock_target down.
2467 * regcache.h (get_thread_regcache, get_thread_arch_regcache)
2468 (get_thread_arch_aspace_regcache): Add process_stratum_target
2469 parameter.
2470 (regcache::target): New method.
2471 (regcache::regcache, regcache::get_thread_arch_aspace_regcache)
2472 (regcache::registers_changed_ptid): Add process_stratum_target
2473 parameter.
2474 (regcache::m_target): New field.
2475 (registers_changed_ptid): Add process_stratum_target parameter.
2476 * remote.c (remote_state::supports_vCont_probed): New field.
2477 (remote_target::async_wait_fd): New method.
2478 (remote_unpush_and_throw): Add remote_target parameter.
2479 (get_current_remote_target): Adjust.
2480 (remote_target::remote_add_inferior): Push target.
2481 (remote_target::remote_add_thread)
2482 (remote_target::remote_notice_new_inferior)
2483 (get_remote_thread_info): Pass target down.
2484 (remote_target::update_thread_list): Skip threads of inferiors
2485 bound to other targets. (remote_target::close): Don't discard
2486 inferiors. (remote_target::add_current_inferior_and_thread)
2487 (remote_target::process_initial_stop_replies)
2488 (remote_target::start_remote)
2489 (remote_target::remote_serial_quit_handler): Pass down target.
2490 (remote_target::remote_unpush_target): New remote_target
2491 parameter. Unpush the target from all inferiors.
2492 (remote_target::remote_unpush_and_throw): New remote_target
2493 parameter. Pass it down.
2494 (remote_target::open_1): Check whether the current inferior has
2495 execution instead of checking whether any inferior is live. Pass
2496 target down.
2497 (remote_target::remote_detach_1): Pass down target. Use
2498 remote_unpush_target.
2499 (extended_remote_target::attach): Pass down target.
2500 (remote_target::remote_vcont_probe): Set supports_vCont_probed.
2501 (remote_target::append_resumption): Pass down target.
2502 (remote_target::append_pending_thread_resumptions)
2503 (remote_target::remote_resume_with_hc, remote_target::resume)
2504 (remote_target::commit_resume): Pass down target.
2505 (remote_target::remote_stop_ns): Check supports_vCont_probed.
2506 (remote_target::interrupt_query)
2507 (remote_target::remove_new_fork_children)
2508 (remote_target::check_pending_events_prevent_wildcard_vcont)
2509 (remote_target::remote_parse_stop_reply)
2510 (remote_target::process_stop_reply): Pass down target.
2511 (first_remote_resumed_thread): New remote_target parameter. Pass
2512 it down.
2513 (remote_target::wait_as): Pass down target.
2514 (unpush_and_perror): New remote_target parameter. Pass it down.
2515 (remote_target::readchar, remote_target::remote_serial_write)
2516 (remote_target::getpkt_or_notif_sane_1)
2517 (remote_target::kill_new_fork_children, remote_target::kill): Pass
2518 down target.
2519 (remote_target::mourn_inferior): Pass down target. Use
2520 remote_unpush_target.
2521 (remote_target::core_of_thread)
2522 (remote_target::remote_btrace_maybe_reopen): Pass down target.
2523 (remote_target::pid_to_exec_file)
2524 (remote_target::thread_handle_to_thread_info): Pass down target.
2525 (remote_target::async_wait_fd): New.
2526 * riscv-fbsd-tdep.c: Include "inferior.h".
2527 (riscv_fbsd_get_thread_local_address): Pass down target.
2528 * sol2-tdep.c (sol2_core_pid_to_str): Pass down target.
2529 * sol-thread.c (sol_thread_target::wait, ps_lgetregs, ps_lsetregs)
2530 (ps_lgetfpregs, ps_lsetfpregs, sol_update_thread_list_callback):
2531 Adjust.
2532 * solib-spu.c (spu_skip_standalone_loader): Pass down target.
2533 * solib-svr4.c (enable_break): Pass down target.
2534 * spu-multiarch.c (parse_spufs_run): Pass down target.
2535 * spu-tdep.c (spu2ppu_sniffer): Pass down target.
2536 * target-delegates.c: Regenerate.
2537 * target.c (g_target_stack): Delete.
2538 (current_top_target): Return the current inferior's top target.
2539 (target_has_execution_1): Refer to the passed-in inferior's top
2540 target.
2541 (target_supports_terminal_ours): Check whether the initial
2542 inferior was already created.
2543 (decref_target): New.
2544 (target_stack::push): Incref/decref the target.
2545 (push_target, push_target, unpush_target): Adjust.
2546 (target_stack::unpush): Defref target.
2547 (target_is_pushed): Return bool. Adjust to refer to the current
2548 inferior's target stack.
2549 (dispose_inferior): Delete, and inline parts ...
2550 (target_preopen): ... here. Only dispose of the current inferior.
2551 (target_detach): Hold strong target reference while detaching.
2552 Pass target down.
2553 (target_thread_name): Add assertion.
2554 (target_resume): Pass down target.
2555 (target_ops::beneath, find_target_at): Adjust to refer to the
2556 current inferior's target stack.
2557 (get_dummy_target): New.
2558 (target_pass_ctrlc): Pass the Ctrl-C to the first inferior that
2559 has a thread running.
2560 (initialize_targets): Rename to ...
2561 (_initialize_target): ... this.
2562 * target.h: Include "gdbsupport/refcounted-object.h".
2563 (struct target_ops): Inherit refcounted_object.
2564 (target_ops::shortname, target_ops::longname): Make const.
2565 (target_ops::async_wait_fd): New method.
2566 (decref_target): Declare.
2567 (struct target_ops_ref_policy): New.
2568 (target_ops_ref): New typedef.
2569 (get_dummy_target): Declare function.
2570 (target_is_pushed): Return bool.
2571 * thread-iter.c (all_matching_threads_iterator::m_inf_matches)
2572 (all_matching_threads_iterator::all_matching_threads_iterator):
2573 Handle filter target.
2574 * thread-iter.h (struct all_matching_threads_iterator, struct
2575 all_matching_threads_range, class all_non_exited_threads_range):
2576 Filter by target too. Remove explicit.
2577 * thread.c (threads_executing): Delete.
2578 (inferior_thread): Pass down current inferior.
2579 (clear_thread_inferior_resources): Pass down thread pointer
2580 instead of ptid_t.
2581 (add_thread_silent, add_thread_with_info, add_thread): Add
2582 process_stratum_target parameter. Use it for thread and inferior
2583 searches.
2584 (is_current_thread): New.
2585 (thread_info::deletable): Use it.
2586 (find_thread_ptid, thread_count, in_thread_list)
2587 (thread_change_ptid, set_resumed, set_running): New
2588 process_stratum_target parameter. Pass it down.
2589 (set_executing): New process_stratum_target parameter. Pass it
2590 down. Adjust reference to 'threads_executing'.
2591 (threads_are_executing): New process_stratum_target parameter.
2592 Adjust reference to 'threads_executing'.
2593 (set_stop_requested, finish_thread_state): New
2594 process_stratum_target parameter. Pass it down.
2595 (switch_to_thread): Also match inferior.
2596 (switch_to_thread): New process_stratum_target parameter. Pass it
2597 down.
2598 (update_threads_executing): Reimplement.
2599 * top.c (quit_force): Pop targets from all inferior.
2600 (gdb_init): Don't call initialize_targets.
2601 * windows-nat.c (windows_nat_target) <get_windows_debug_event>:
2602 Declare.
2603 (windows_add_thread, windows_delete_thread): Adjust.
2604 (get_windows_debug_event): Rename to ...
2605 (windows_nat_target::get_windows_debug_event): ... this. Adjust.
2606 * tracefile-tfile.c (tfile_target_open): Pass down target.
2607 * gdbsupport/common-gdbthread.h (struct process_stratum_target):
2608 Forward declare.
2609 (switch_to_thread): Add process_stratum_target parameter.
2610 * mi/mi-interp.c (mi_on_resume_1): Add process_stratum_target
2611 parameter. Use it.
2612 (mi_on_resume): Pass target down.
2613 * nat/fork-inferior.c (startup_inferior): Add
2614 process_stratum_target parameter. Pass it down.
2615 * nat/fork-inferior.h (startup_inferior): Add
2616 process_stratum_target parameter.
2617 * python/py-threadevent.c (py_get_event_thread): Pass target down.
2618
2619 2020-01-10 Pedro Alves <palves@redhat.com>
2620
2621 * remote.c (remote_target::start_remote): Don't set inferior_ptid
2622 directly. Instead find the first thread in the thread list and
2623 use switch_to_thread.
2624
2625 2020-01-10 Pedro Alves <palves@redhat.com>
2626
2627 * remote.c (remote_target::remote_add_inferior): Don't bind a
2628 process to the current inferior if the current inferior is already
2629 bound to a process.
2630
2631 2020-01-10 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
2632 Pedro Alves <palves@redhat.com>
2633
2634 * remote.c (remote_target::remote_parse_stop_reply) <W/X packets>:
2635 If no process is specified, return null_ptid instead of
2636 inferior_ptid.
2637 (remote_target::wait_as): Handle TARGET_WAITKIND_EXITED /
2638 TARGET_WAITKIND_SIGNALLED with no pid.
2639
2640 2020-01-10 Pedro Alves <palves@redhat.com>
2641
2642 * remote.c (first_remote_resumed_thread): New.
2643 (remote_target::wait_as): Use it as default event_ptid instead of
2644 inferior_ptid.
2645
2646 2020-01-10 Pedro Alves <palves@redhat.com>
2647
2648 * infrun.c (handle_no_resumed): Use all_non_exited_inferiors.
2649
2650 2020-01-10 Pedro Alves <palves@redhat.com>
2651
2652 * tracefile-tfile.c (tfile_target::close): Assert that trace_fd is
2653 not -1.
2654
2655 2020-01-10 Pedro Alves <palves@redhat.com>
2656
2657 * break-catch-sig.c (signal_catchpoint_print_it): Don't pass a
2658 ptid to get_last_target_status.
2659 * break-catch-syscall.c (print_it_catch_syscall): Don't pass a
2660 ptid to get_last_target_status.
2661 * infcmd.c (continue_command): Don't pass a target_waitstatus to
2662 get_last_target_status.
2663 (info_program_command): Don't pass a target_waitstatus to
2664 get_last_target_status.
2665 * infrun.c (init_wait_for_inferior): Use
2666 nullify_last_target_wait_ptid.
2667 (get_last_target_status): Handle nullptr arguments.
2668 (nullify_last_target_wait_ptid): Clear target_last_waitstatus.
2669 (print_stop_event): Don't pass a ptid to get_last_target_status.
2670 (normal_stop): Don't pass a ptid to get_last_target_status.
2671 * infrun.h (get_last_target_status, set_last_target_status): Move
2672 comments here and update.
2673 (nullify_last_target_wait_ptid): Declare.
2674 * linux-fork.c (fork_load_infrun_state): Remove local extern
2675 declaration of nullify_last_target_wait_ptid.
2676 * linux-nat.c (get_detach_signal): Don't pass a target_waitstatus
2677 to get_last_target_status.
2678
2679 2020-01-10 Pedro Alves <palves@redhat.com>
2680
2681 * gdbthread.h (scoped_restore_current_thread)
2682 <dont_restore, restore, m_dont_restore>: Declare.
2683 * thread.c (thread_alive): Add assertion. Return bool.
2684 (switch_to_thread_if_alive): New.
2685 (prune_threads): Switch inferior/thread.
2686 (print_thread_info_1): Switch thread before calling target methods.
2687 (scoped_restore_current_thread::restore): New, factored out from
2688 ...
2689 (scoped_restore_current_thread::~scoped_restore_current_thread):
2690 ... this.
2691 (scoped_restore_current_thread::scoped_restore_current_thread):
2692 Add assertion.
2693 (thread_apply_all_command, thread_select): Use
2694 switch_to_thread_if_alive.
2695 * infrun.c (proceed, restart_threads, handle_signal_stop)
2696 (switch_back_to_stepped_thread): Switch current thread before
2697 calling target methods.
2698
2699 2020-01-10 Pedro Alves <palves@redhat.com>
2700
2701 * inferior.c (switch_to_inferior_no_thread): New function,
2702 factored out from ...
2703 (inferior_command): ... here.
2704 * inferior.h (switch_to_inferior_no_thread): Declare.
2705 * mi/mi-main.c (run_one_inferior): Use
2706 switch_to_inferior_no_thread.
2707
2708 2020-01-10 Pedro Alves <palves@redhat.com>
2709
2710 * infcmd.c (kill_command): Remove dead code.
2711
2712 2020-01-10 Pedro Alves <palves@redhat.com>
2713
2714 * remote.c (remote_target::mourn_inferior): No longer check
2715 whether the target is running.
2716
2717 2020-01-10 Pedro Alves <palves@redhat.com>
2718
2719 * corelow.c (core_target::has_execution): Change parameter type to
2720 inferior pointer.
2721 * inferior.c (number_of_live_inferiors): Use
2722 inferior::has_execution instead of target_has_execution_1.
2723 * inferior.h (inferior::has_execution): New.
2724 * linux-thread-db.c (thread_db_target::update_thread_list): Use
2725 inferior::has_execution instead of target_has_execution_1.
2726 * process-stratum-target.c
2727 (process_stratum_target::has_execution): Change parameter type to
2728 inferior pointer. Check the inferior's PID instead of
2729 inferior_ptid.
2730 * process-stratum-target.h
2731 (process_stratum_target::has_execution): Change parameter type to
2732 inferior pointer.
2733 * record-full.c (record_full_core_target::has_execution): Change
2734 parameter type to inferior pointer.
2735 * target.c (target_has_execution_1): Change parameter type to
2736 inferior pointer.
2737 (target_has_execution_current): Adjust.
2738 * target.h (target_ops::has_execution): Change parameter type to
2739 inferior pointer.
2740 (target_has_execution_1): Change parameter type to inferior
2741 pointer. Change return type to bool.
2742 * tracefile.h (tracefile_target::has_execution): Change parameter
2743 type to inferior pointer.
2744
2745 2020-01-10 Pedro Alves <palves@redhat.com>
2746
2747 * exceptions.c (print_flush): Remove current_top_target() check.
2748
2749 2020-01-10 Pedro Alves <palves@redhat.com>
2750
2751 * remote.c (show_remote_exec_file): Show the current inferior's
2752 exec-file instead of the command variable's value.
2753
2754 2020-01-10 Pedro Alves <palves@redhat.com>
2755
2756 * record-full.c (record_full_resume_ptid): New global.
2757 (record_full_target::resume): Set it.
2758 (record_full_wait_1): Use record_full_resume_ptid instead of
2759 inferior_ptid.
2760
2761 2020-01-10 Pedro Alves <palves@redhat.com>
2762
2763 * gdbthread.h (scoped_restore_current_thread)
2764 <dont_restore, restore, m_dont_restore>: Declare.
2765 * thread.c (thread_alive): Add assertion. Return bool.
2766 (switch_to_thread_if_alive): New.
2767 (prune_threads): Switch inferior/thread.
2768 (print_thread_info_1): Switch thread before calling target methods.
2769 (scoped_restore_current_thread::restore): New, factored out from
2770 ...
2771 (scoped_restore_current_thread::~scoped_restore_current_thread):
2772 ... this.
2773 (scoped_restore_current_thread::scoped_restore_current_thread):
2774 Add assertion.
2775 (thread_apply_all_command, thread_select): Use
2776 switch_to_thread_if_alive.
2777
2778 2020-01-10 George Barrett <bob@bob131.so>
2779
2780 * stap-probe.c (stap_modify_semaphore): Don't check for null
2781 semaphores.
2782 (stap_probe::set_semaphore, stap_probe::clear_semaphore): Check
2783 for null semaphores.
2784
2785 2020-01-09 Andrew Burgess <andrew.burgess@embecosm.com>
2786
2787 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Update
2788 all source windows, and maintain horizontal scroll status while
2789 doing so.
2790
2791 2020-01-09 Tom Tromey <tom@tromey.com>
2792
2793 PR tui/18932:
2794 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Call
2795 update_source_window, not print_source_lines.
2796
2797 2020-01-09 Andrew Burgess <andrew.burgess@embecosm.com>
2798
2799 * tui/tui.c (tui_enable): Register tui hooks after calling
2800 tui_display_main.
2801
2802 2020-01-09 Christian Biesinger <cbiesinger@google.com>
2803
2804 * gdbsupport/common-defs.h: Don't define _FORTIFY_SOURCE on MinGW.
2805
2806 2020-01-08 Simon Marchi <simon.marchi@efficios.com>
2807
2808 * thread.c (print_thread_info_1): Fix indentation.
2809
2810 2020-01-09 Christian Biesinger <cbiesinger@google.com>
2811
2812 * symtab.c (general_symbol_info::compute_and_set_names): Move the
2813 unique_xmalloc_ptr outside the if to always free the demangled name.
2814
2815 2020-01-08 Tom Tromey <tromey@adacore.com>
2816
2817 * xcoffread.c (enter_line_range, read_xcoff_symtab)
2818 (process_xcoff_symbol, xcoff_symfile_offsets): Update.
2819 * symtab.h (MSYMBOL_VALUE_ADDRESS): Update.
2820 (struct section_offsets, ANOFFSET, SIZEOF_N_SECTION_OFFSETS):
2821 Remove.
2822 (section_offsets): New typedef.
2823 * symtab.c (fixup_section, get_msymbol_address): Update.
2824 * symmisc.c (dump_msymbols): Update.
2825 * symfile.h (relative_addr_info_to_section_offsets)
2826 (symfile_map_offsets_to_segments): Update.
2827 * symfile.c (build_section_addr_info_from_objfile)
2828 (init_objfile_sect_indices): Update.
2829 (struct place_section_arg): Change type of "offsets".
2830 (place_section): Update.
2831 (relative_addr_info_to_section_offsets): Change type of
2832 "section_offsets". Remove "num_sections" parameter.
2833 (default_symfile_offsets, syms_from_objfile_1)
2834 (set_objfile_default_section_offset): Update.
2835 (reread_symbols): No need to preserve section offsets by hand.
2836 (symfile_map_offsets_to_segments): Change type of "offsets".
2837 * stap-probe.c (relocate_address): Update.
2838 * stabsread.h (process_one_symbol): Update.
2839 * solib-target.c (struct lm_info_target) <offsets>: Change type.
2840 (solib_target_relocate_section_addresses): Update.
2841 * solib-svr4.c (enable_break, svr4_relocate_main_executable):
2842 Update.
2843 * solib-frv.c (frv_relocate_main_executable): Update.
2844 * solib-dsbt.c (dsbt_relocate_main_executable): Update.
2845 * solib-aix.c (solib_aix_get_section_offsets): Change return
2846 type.
2847 (solib_aix_solib_create_inferior_hook): Update.
2848 * remote.c (remote_target::get_offsets): Update.
2849 * psymtab.c (find_pc_sect_psymtab): Update.
2850 * psympriv.h (struct partial_symbol) <address, text_low,
2851 text_high>: Update.
2852 * objfiles.h (obj_section_offset): Update.
2853 (struct objfile) <section_offsets>: Change type.
2854 <num_sections>: Remove.
2855 (objfile_relocate): Update.
2856 * objfiles.c (entry_point_address_query): Update
2857 (relocate_one_symbol): Change type of "section_offsets".
2858 (objfile_relocate1, objfile_relocate1): Change type of
2859 "new_offsets".
2860 (objfile_rebase1): Update.
2861 * mipsread.c (mipscoff_symfile_read): Update.
2862 (read_alphacoff_dynamic_symtab): Remove "section_offsets"
2863 parameter.
2864 * mdebugread.c (parse_symbol): Change type of "section_offsets".
2865 (parse_external, psymtab_to_symtab_1): Update.
2866 * machoread.c (macho_symfile_offsets): Update.
2867 * ia64-tdep.c (ia64_find_unwind_table): Update.
2868 * hppa-tdep.c (read_unwind_info): Update.
2869 * hppa-bsd-tdep.c (hppabsd_find_global_pointer): Update.
2870 * dwarf2read.c (create_addrmap_from_index)
2871 (create_addrmap_from_aranges, dw2_find_pc_sect_compunit_symtab)
2872 (process_psymtab_comp_unit_reader, add_partial_symbol)
2873 (add_partial_subprogram, process_full_comp_unit)
2874 (read_file_scope, read_func_scope, read_lexical_block_scope)
2875 (read_call_site_scope, dwarf2_rnglists_process)
2876 (dwarf2_ranges_process, dwarf2_ranges_read)
2877 (dwarf_decode_lines_1, var_decode_location, new_symbol)
2878 (dwarf2_fetch_die_loc_sect_off, dwarf2_per_cu_text_offset):
2879 Update.
2880 * dwarf2-frame.c (execute_cfa_program, dwarf2_frame_find_fde):
2881 Update.
2882 * dtrace-probe.c (dtrace_probe::get_relocated_address): Update.
2883 * dbxread.c (read_dbx_symtab, read_ofile_symtab): Update.
2884 (process_one_symbol): Change type of "section_offsets".
2885 * ctfread.c (get_objfile_text_range): Update.
2886 * coffread.c (coff_symtab_read, enter_linenos)
2887 (process_coff_symbol): Update.
2888 * coff-pe-read.c (add_pe_forwarded_sym): Update.
2889 * amd64-windows-tdep.c (amd64_windows_find_unwind_info): Update.
2890
2891 2020-01-08 Tom Tromey <tromey@adacore.com>
2892
2893 * dwarf2read.c (parse_macro_definition): Use std::string.
2894 (parse_macro_definition): Likewise.
2895
2896 2020-01-08 Tom Tromey <tromey@adacore.com>
2897
2898 * dwarf2read.c (abbrev_table_read_table): Use std::vector.
2899 (ATTR_ALLOC_CHUNK): Remove.
2900
2901 2020-01-08 Tom Tromey <tromey@adacore.com>
2902
2903 * dwarf2read.c (fixup_go_packaging): Use unique_xmalloc_ptr.
2904
2905 2020-01-08 Tom Tromey <tromey@adacore.com>
2906
2907 * dwarf2read.c (add_partial_symbol): Use unique_xmalloc_ptr.
2908 (dwarf2_compute_name, open_dwo_file): Likewise.
2909 (process_enumeration_scope): Use std::vector.
2910 (guess_partial_die_structure_name): Use unique_xmalloc_ptr.
2911 (partial_die_info::fixup, dwarf2_start_subfile)
2912 (guess_full_die_structure_name, dwarf2_name): Likewise.
2913 (determine_prefix): Update.
2914 (guess_full_die_structure_name): Make return type const.
2915 (partial_die_full_name): Return unique_xmalloc_ptr.
2916 (DW_FIELD_ALLOC_CHUNK): Remove.
2917
2918 2020-01-07 Tom Tromey <tromey@adacore.com>
2919
2920 PR build/24937:
2921 * stap-probe.c (class stap_static_probe_ops): Add constructor.
2922
2923 2020-01-02 Jon Turney <jon.turney@dronecode.org.uk>
2924
2925 * cli/cli-style.c: Set cli_styling to 'true' in the Cygwin build.
2926
2927 2020-01-06 Andrew Burgess <andrew.burgess@embecosm.com>
2928
2929 * stack.c (print_frame_info): Move disassemble_next_line code
2930 inside source_print block.
2931
2932 2020-01-06 Eli Zaretskii <eliz@gnu.org>
2933
2934 * gdbsupport/gdb_wait.c: Include <signal.h> instead of
2935 gdb/signals.h, as we are now using native signal symbols.
2936
2937 2020-01-06 Shahab Vahedi <shahab@synopsys.com>
2938
2939 * tui/tui-disasm.c (tui_disasm_window::addr_is_displayed): Avoid
2940 overflow by an early check of content vs threshold.
2941 * tui/tui-source.c (tui_source_window::line_is_displayed):
2942 Likewise.
2943
2944 2020-01-06 Eli Zaretskii <eliz@gnu.org>
2945
2946 * NEWS: Mention the recent fix of $_exitsignal on MS-Windows.
2947
2948 2020-01-02 Jon Turney <jon.turney@dronecode.org.uk>
2949
2950 * coff-pe-read.c (read_pe_exported_syms): Don't try to read the
2951 export table if no section contains it's RVA.
2952
2953 2020-01-06 Eli Zaretskii <eliz@gnu.org>
2954
2955 * windows-tdep.c: Fix a typo in WINDOWS_SIGABRT.
2956
2957 2020-01-06 Hannes Domani <ssbssa@yahoo.de>
2958
2959 * source.c (print_source_lines_base): Set last_line_listed.
2960
2961 2020-01-06 Shahab Vahedi <shahab@synopsys.com>
2962
2963 * tui/tui-disasm.c: Remove trailing spaces.
2964
2965 2020-01-06 Eli Zaretskii <eliz@gnu.org>
2966 Pedro Alves <palves@redhat.com>
2967
2968 * Makefile.in (COMMON_SFILES): Add gdbsupport/gdb_wait.c.
2969 * windows-tdep.c: New enumeration of WINDOWS_SIG* signals.
2970 (windows_gdb_signal_to_target): New function, uses the above
2971 enumeration to convert GDB internal signal codes to equivalent
2972 Windows codes.
2973 (windows_init_abi): Call set_gdbarch_gdb_signal_to_target.
2974 * windows-nat.c: Include "gdb_wait.h".
2975 (get_windows_debug_event): Extract the fatal exception from the
2976 exit status and convert to the equivalent Posix signal number.
2977 * cli/cli-cmds.c (exit_status_set_internal_vars): Account for the
2978 possibility that WTERMSIG returns GDB_SIGNAL_UNKNOWN.
2979 * gdbsupport/gdb_wait.c: New file, implements
2980 windows_status_to_termsig.
2981 * gdbsupport/gdb_wait.h (WIFEXITED, WIFSIGNALED, WEXITSTATUS)
2982 (WTERMSIG) [__MINGW32__]: Separate definitions for MinGW.
2983
2984 2020-01-05 Andrew Burgess <andrew.burgess@embecosm.com>
2985
2986 * tui/tui-layout.c (tui_add_win_to_layout): Use tui_set_layout not
2987 show_layout.
2988
2989 2020-01-05 Luis Machado <luis.machado@linaro.org>
2990
2991 * aarch64-linux-nat.c
2992 (aarch64_linux_nat_target::thread_architecture): Use bfd_arch_aarch64
2993 and bfd_mach_aarch64.
2994
2995 2020-01-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2996
2997 * ui-file.c (stdio_file::can_emit_style_escape)
2998 (tee_file::can_emit_style_escape): Ensure style is used also on
2999 gdb_stderr when gdb_stderr is a tty supporting styling, similarly
3000 to gdb_stdout.
3001 * main.c (set_gdb_data_directory): Use file style to output the
3002 warning that the given pathname is not a directory.
3003 * top.c (show_history_filename, gdb_safe_append_history)
3004 (show_gdb_datadir): Use file style.
3005
3006 2020-01-03 Hannes Domani <ssbssa@yahoo.de>
3007
3008 * solib-target.c (struct lm_info_target):
3009 Change offsets to be a unique_xmalloc_ptr.
3010 (solib_target_relocate_section_addresses): Update.
3011
3012 2020-01-03 Hannes Domani <ssbssa@yahoo.de>
3013
3014 * windows-nat.c (windows_clear_solib): Free so_list linked list.
3015
3016 2020-01-03 Bernd Edlinger <bernd.edlinger@hotmail.de>
3017
3018 * MAINTAINERS (Write After Approval): Add myself.
3019
3020 2020-01-02 Luis Machado <luis.machado@linaro.org>
3021
3022 * proc-service.c (get_ps_regcache): Remove reference to obsolete
3023 Cell BE architecture.
3024 * target.h (struct target_ops) <thread_architecture>: Likewise.
3025
3026 2020-01-01 Hannes Domani <ssbssa@yahoo.de>
3027
3028 * Makefile.in: Use INSTALL_PROGRAM_ENV.
3029
3030 2020-01-01 Hannes Domani <ssbssa@yahoo.de>
3031
3032 * MAINTAINERS (Write After Approval): Add myself.
3033
3034 2020-01-01 Joel Brobecker <brobecker@adacore.com>
3035
3036 * gdbarch.sh: Update copyright year range of generated files.
3037
3038 2020-01-01 Joel Brobecker <brobecker@adacore.com>
3039
3040 Update copyright year range in all GDB files.
3041
3042 2020-01-01 Joel Brobecker <brobecker@adacore.com>
3043
3044 * copyright.py: Convert to Python 3.
3045
3046 2020-01-01 Joel Brobecker <brobecker@adacore.com>
3047
3048 * copyright.py: Adapt after move of gnulib directory from gdb
3049 directory to toplevel directory.
3050
3051 2020-01-01 Joel Brobecker <brobecker@adacore.com>
3052
3053 * copyright.py (main): Exit if run from the wrong directory.
3054
3055 2020-01-01 Joel Brobecker <brobecker@adacore.com>
3056
3057 * top.c (print_gdb_version): Change copyright year to 2020.
3058
3059 2020-01-01 Joel Brobecker <brobecker@adacore.com>
3060
3061 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2019.
3062
3063 For older changes see ChangeLog-2019.
3064 \f
3065 Local Variables:
3066 mode: change-log
3067 left-margin: 8
3068 fill-column: 74
3069 version-control: never
3070 coding: utf-8
3071 End:
This page took 0.106578 seconds and 4 git commands to generate.