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