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