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