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