gdb: fix tab after space indentation issues
[binutils-gdb.git] / gdb / ChangeLog
1 2021-05-27 Simon Marchi <simon.marchi@polymtl.ca>
2
3 * Fix tab after space indentation issues throughout.
4
5 2021-05-27 Simon Marchi <simon.marchi@polymtl.ca>
6
7 * Fix some indentation mistakes throughout.
8
9 2021-05-27 Simon Marchi <simon.marchi@polymtl.ca>
10
11 * breakpoint.h (iterate_over_bp_locations): Remove. Update
12 users to use all_bp_locations.
13 (all_bp_locations): New.
14 * breakpoint.c (all_bp_locations): Make non-static.
15 (iterate_over_bp_locations): Remove.
16
17 2021-05-27 Simon Marchi <simon.marchi@polymtl.ca>
18
19 * breakpoint.h (iterate_over_breakpoints): Remove. Update
20 callers to use all_breakpoints or all_breakpoints_safe.
21 (breakpoint_range, all_breakpoints, breakpoint_safe_range,
22 all_breakpoints_safe): Move here.
23 * breakpoint.c (all_breakpoints, all_breakpoints_safe): Make
24 non-static.
25 (iterate_over_breakpoints): Remove.
26 * python/py-finishbreakpoint.c (bpfinishpy_detect_out_scope_cb):
27 Return void.
28 * python/py-breakpoint.c (build_bp_list): Add comment, reverse
29 return value logic.
30 * guile/scm-breakpoint.c (bpscm_build_bp_list): Return void.
31
32 2021-05-27 Simon Marchi <simon.marchi@polymtl.ca>
33
34 * breakpoint.c (get_first_locp_gte_addr): Remove.
35 (ALL_BP_LOCATIONS_AT_ADDR): Remove. Replace all uses with
36 all_bp_locations_at_addr.
37 (struct bp_locations_at_addr_range): New.
38 (all_bp_locations_at_addr): New.
39 (bp_locations_compare_addrs): New.
40
41 2021-05-27 Simon Marchi <simon.marchi@polymtl.ca>
42
43 * breakpoint.c (ALL_BP_LOCATIONS): Remove, update users to use
44 all_bp_locations.
45 (all_bp_locations): New.
46
47 2021-05-27 Simon Marchi <simon.marchi@polymtl.ca>
48
49 * breakpoint.c (bp_locations): Change to std::vector, update all
50 users.
51 (bp_locations_count): Remove.
52 (update_global_location_list): Change to work with indices
53 rather than bp_location**.
54
55 2021-05-27 Simon Marchi <simon.marchi@polymtl.ca>
56
57 * breakpoint.h (bp_locations_range): New.
58 (struct breakpoint) <locations>: New. Use where possible.
59
60 2021-05-27 Simon Marchi <simon.marchi@polymtl.ca>
61
62 * breakpoint.h (all_tracepoints): Remove.
63 (breakpoint_iterator): Move here.
64 (struct tracepoint_filter): New.
65 (tracepoint_iterator): New.
66 (tracepoint_range): New.
67 (all_tracepoints): New.
68 * breakpoint.c (ALL_TRACEPOINTS): Remove, replace all users with
69 all_tracepoints.
70 (breakpoint_iterator): Move to header.
71 (all_tracepoints): New.
72 * tracepoint.c (start_tracing): Adjust.
73
74 2021-05-27 Simon Marchi <simon.marchi@polymtl.ca>
75
76 * breakpoint.c (breakpoint_safe_range): New.
77 (all_breakpoints_safe): New. Use instead of
78 ALL_BREAKPOINTS_SAFE where possible.
79
80 2021-05-27 Simon Marchi <simon.marchi@polymtl.ca>
81
82 * breakpoint.c (ALL_BREAKPOINTS): Remove, replace all uses with
83 all_breakpoints.
84 (breakpoint_iterator): New.
85 (breakpoint_range): New.
86 (all_breakpoints): New.
87
88 2021-05-27 Hannes Domani <ssbssa@yahoo.de>
89
90 * python/py-tui.c (tui_py_window::output): Add full_window
91 argument.
92 (gdbpy_tui_write): Parse "full_window" argument.
93
94 2021-05-27 Simon Marchi <simon.marchi@polymtl.ca>
95
96 * make-init-c: Add option to reverse function calls.
97
98 2021-05-27 Simon Marchi <simon.marchi@polymtl.ca>
99
100 * Makefile.in (INIT_FILES_FILTER_OUT): New.
101 (INIT_FILES): Use INIT_FILES_FILTER_OUT.
102 (stamp-init): Use make-init-c.
103 * bpf-tdep.c (_initialize_bpf_tdep): Remove "void".
104 * silent-rules.mk (ECHO_INIT_C): Change.
105 * make-init-c: New file.
106
107 2021-05-27 Simon Marchi <simon.marchi@polymtl.ca>
108
109 * command.h (add_alias_cmd): Accept target as
110 cmd_list_element. Update callers.
111
112 2021-05-27 Simon Marchi <simon.marchi@polymtl.ca>
113
114 * command.h (add_info_alias): Accept target as
115 cmd_list_element. Update callers.
116
117 2021-05-27 Simon Marchi <simon.marchi@polymtl.ca>
118
119 * command.h (add_com_alias): Accept target as
120 cmd_list_element. Update callers.
121
122 2021-05-27 Simon Marchi <simon.marchi@polymtl.ca>
123
124 * python/py-param.c (add_setshow_generic): Use return values of
125 add_setshow functions.
126
127 2021-05-27 Simon Marchi <simon.marchi@polymtl.ca>
128
129 * mi/mi-main.c (_initialize_mi_main):
130 * python/py-auto-load.c (gdbpy_initialize_auto_load):
131 * remote.c (_initialize_remote):
132
133 2021-05-27 Simon Marchi <simon.marchi@polymtl.ca>
134
135 * command.h (set_show_commands): New.
136 (add_setshow_enum_cmd, add_setshow_auto_boolean_cmd,
137 add_setshow_boolean_cmd, add_setshow_filename_cmd,
138 add_setshow_string_cmd, add_setshow_string_noescape_cmd,
139 add_setshow_optional_filename_cmd, add_setshow_integer_cmd,
140 add_setshow_uinteger_cmd, add_setshow_zinteger_cmd,
141 add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
142 Return set_show_commands. Adjust callers.
143 * cli/cli-decode.c (add_setshow_cmd_full): Return
144 set_show_commands, remove result parameters, adjust callers.
145
146 2021-05-27 Tom de Vries <tdevries@suse.de>
147
148 PR symtab/27919
149 * dwarf2/read.c (process_psymtab_comp_unit):
150
151 2021-05-27 Tom de Vries <tdevries@suse.de>
152
153 * dwarf2/read.c (find_partial_die): Fix "Cannot not" typo in dwarf
154 error.
155
156 2021-05-27 Tom de Vries <tdevries@suse.de>
157
158 PR symtab/27898
159 * dwarf2/cu.c (dwarf2_cu::dwarf2_cu): Add load_all_dies init.
160 * dwarf2/cu.h (dwarf2_cu): Add load_all_dies field.
161 * dwarf2/read.c (load_partial_dies, find_partial_die): Update.
162 * dwarf2/read.h (dwarf2_per_cu_data::dwarf2_per_cu_data): Remove
163 load_all_dies init.
164 (dwarf2_per_cu_data): Remove load_all_dies field.
165
166 2021-05-26 Simon Marchi <simon.marchi@efficios.com>
167
168 * regcache.c (reg_buffer::reg_buffer): Default-initialize
169 m_registers array.
170
171 2021-05-26 Tom Tromey <tom@tromey.com>
172
173 * dwarf2/read.c (allocate_type_unit_groups_table)
174 (handle_DW_AT_stmt_list, allocate_dwo_file_hash_table): Use
175 htab_delete_entry.
176 (free_line_header_voidp): Remove.
177 * completer.c
178 (completion_tracker::completion_hash_entry::deleter): Remove.
179 (completion_tracker::discard_completions): Use htab_delete_entry.
180 * utils.h (htab_delete_entry): New template function.
181
182 2021-05-24 Hannes Domani <ssbssa@yahoo.de>
183
184 * python/py-tui.c (tui_py_window::refresh_window):
185 Avoid flickering.
186
187 2021-05-23 Tom de Vries <tdevries@suse.de>
188
189 PR tdep/27822
190 * target.h (struct target_ops): Mention target_thread_architecture in
191 read_description comment.
192 * x86-linux-nat.c (x86_linux_nat_target::read_description): Use
193 pid to determine if process is 64-bit or 32-bit.
194 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
195 Same.
196 * ppc-linux-nat.c (ppc_linux_nat_target::read_description): Same.
197 * riscv-linux-nat.c (riscv_linux_nat_target::read_description): Same.
198 * s390-linux-nat.c (s390_linux_nat_target::read_description): Same.
199 * arm-linux-nat.c (arm_linux_nat_target::read_description): Same.
200 Likewise, use pid to determine if kernel supports reading VFP
201 registers.
202
203 2021-05-22 Philippe Waroquiers <philippe.waroquiers@skynet.be>
204
205 * main.c (enum cmdarg_kind): Fix option type comments for
206 CMDARG_EARLYINIT_FILE and CMDARG_EARLYINIT_COMMAND.
207
208 2021-05-21 Tom de Vries <tdevries@suse.de>
209
210 PR testsuite/25047
211 * contrib/cc-with-tweaks.sh: Handle -l.
212
213 2021-05-21 Tom de Vries <tdevries@suse.de>
214
215 PR breakpoint/27889
216 * jit.c (jit_breakpoint_re_set_internal): Skip separate debug
217 objects. Call get_jiter_objfile_data with the_objfile.
218
219 2021-05-20 Simon Marchi <simon.marchi@polymtl.ca>
220
221 * linespec.c (linespec_p): Remove. Replace all uses with
222 "linespec *".
223
224 2021-05-20 Alexandra Hájková <ahajkova@redhat.com>
225 Pedro Alves <pedro@palves.net>
226
227 * cli/cli-script.h (command_line_up): New unique_ptr typedef.
228 * cli/cli-script.c (multi_line_command_p): Use unique_ptr
229 command_line_up instead of struct command_line.
230 (build_command_line): Likewise.
231 (get_command_line): Update the cmd function call parameter.
232 (process_next_line): Use unique_ptr command_line_up instead
233 of struct command_line.
234 (recurse_read_control_structure): Change the the type of
235 next to command_line_up.
236 (read_command_lines_1): Change type of `next' to be
237 command_line_up and update all references of `next'
238 accordingly.
239
240 2021-05-20 Alexandra Hájková <ahajkova@redhat.com>
241
242 * MAINTAINERS (Write After Approval): Add myself.
243
244 2021-05-19 John Baldwin <jhb@FreeBSD.org>
245
246 * dwarf2/read.c (tu_abbrev_offset::operator<): Mark const.
247
248 2021-05-18 Alexandra Hájková <ahajkova@redhat.com>
249
250 * inflow.c (new_tty): Do not leak tty.
251
252 2021-05-17 Tom Tromey <tom@tromey.com>
253
254 * dwarf2/read.h: Update include.
255 * dwarf2/read.c: Update include.
256 * dwarf2/line-header.c: Update include.
257 * dwarf2/cu.h: Update include.
258 * dwarf2/comp-unit-head.h: Rename from comp-unit.h.
259 * dwarf2/comp-unit-head.c: Rename from comp-unit.c.
260 * Makefile.in (COMMON_SFILES): Update.
261
262 2021-05-17 Tom Tromey <tom@tromey.com>
263
264 * dwarf2/read.c (maybe_queue_comp_unit)
265 (dwarf2_per_objfile::age_comp_units): Update.
266 (dwarf2_add_dependence, dwarf2_mark_helper, dwarf2_mark): Move to
267 dwarf2_cu methods.
268 * dwarf2/cu.h (struct dwarf2_cu) <mark, clear_mark, is_marked,
269 add_dependence>: New methods.
270 <m_dependencies>: Add "m_" prefix. Now private.
271 <m_mark>: Add "m_" prefix.
272 * dwarf2/cu.c (dwarf2_cu::dwarf2_cu): Update.
273 (dwarf2_mark_helper): New function.
274 (dwarf2_cu::mark, dwarf2_cu::add_dependence): New methods.
275
276 2021-05-17 Tom Tromey <tom@tromey.com>
277
278 * dwarf2/read.c (dwarf2_cu::addr_sized_int_type)
279 (dwarf2_cu::start_symtab, dwarf2_cu::addr_type)
280 (dwarf2_cu::dwarf2_cu): Move to cu.c.
281 * dwarf2/cu.c: New file.
282 * Makefile.in (COMMON_SFILES): Add dwarf2/cu.c.
283
284 2021-05-17 Tom Tromey <tom@tromey.com>
285
286 * Makefile.in (HFILES_NO_SRCDIR): Add dwarf2/cu.h.
287 * dwarf2/read.c (struct delayed_method_info, struct dwarf2_cu):
288 Move to cu.h.
289 * dwarf2/cu.h: New file.
290
291 2021-05-17 Andrew Burgess <andrew.burgess@embecosm.com>
292
293 * .dir-locals.el: Set sentence-end-double-space for all modes, and
294 set brace-list-open to 0 for C and C++ modes.
295
296 2021-05-17 Tom Tromey <tromey@adacore.com>
297
298 * dwarf2/loc.c (dwarf2_evaluate_loc_desc::get_frame_base): Throw
299 if frame is null.
300
301 2021-05-17 Tom Tromey <tromey@adacore.com>
302
303 * nat/linux-osdata.c (user_from_uid, time_from_time_t)
304 (group_from_gid): Subtract one from strncpy length.
305
306 2021-05-17 Tom Tromey <tromey@adacore.com>
307
308 * source.c (add_path): Check 'p' before using 'p[-1]'.
309
310 2021-05-17 Tom Tromey <tromey@adacore.com>
311
312 * dwarf2/read.h (struct dwarf2_per_cu_data_deleter: New.
313 (dwarf2_per_cu_data_up): New typedef.
314 (struct dwarf2_per_bfd) <allocate_per_cu>: Change return type.
315 <all_comp_units>: Use dwarf2_per_cu_data_up.
316 * dwarf2/read.c (dwarf2_per_cu_data::operator()): New function.
317 (dwarf2_per_bfd::allocate_per_cu): Return dwarf2_per_cu_data_up.
318 (create_cu_from_index_list): Likewise.
319 (create_signatured_type_table_from_index)
320 (create_cus_from_debug_names_list, add_type_unit)
321 (read_comp_units_from_section): Update.
322 (dwarf2_find_containing_comp_unit): Change type of all_comp_units.
323 (run_test): Update.
324
325 2021-05-17 Tom Tromey <tom@tromey.com>
326
327 * dwarf2/read.c (tu_abbrev_offset::operator<): New method.
328 (sort_tu_by_abbrev_offset): Remove.
329 (build_type_psymtabs): Update.
330
331 2021-05-17 Simon Marchi <simon.marchi@polymtl.ca>
332
333 * py-project.toml: New.
334 * gdb-gdb.py.in: Re-format.
335
336 2021-05-17 Simon Marchi <simon.marchi@polymtl.ca>
337
338 * cli/cli-decode.h (cmd_list_element) <is_command_class_help>:
339 New, use it.
340 * command.h (cmd_func_p): Remove.
341 * cli/cli-decode.c (cmd_func_p): Remove.
342
343 2021-05-17 Simon Marchi <simon.marchi@polymtl.ca>
344
345 * cli/cli-decode.h (cmd_list_element) <is_alias>: New, use it.
346
347 2021-05-17 Simon Marchi <simon.marchi@polymtl.ca>
348
349 * cli/cli-decode.h (cmd_list_element) <cmd_pointer>: Rename
350 to...
351 <alias_target>: ... this.
352 (add_alias_cmd): Rename old to target.
353 (add_info_alias): Rename old_name to target_name.
354 (add_com_alias): Likewise.
355
356 2021-05-17 Simon Marchi <simon.marchi@polymtl.ca>
357
358 * Rename "prefixlist" parameters to "subcommands" throughout.
359 * cli/cli-decode.h (cmd_list_element) <prefixlist>: Rename to...
360 <subcommands>: ... this.
361 * cli/cli-decode.c (lookup_cmd_for_prefixlist): Rename to...
362 (lookup_cmd_with_subcommands): ... this.
363
364 2021-05-17 Simon Marchi <simon.marchi@polymtl.ca>
365
366 * cli/cli-decode.c (add_alias_cmd): Don't handle old == 0.
367
368 2021-05-17 Simon Marchi <simon.marchi@polymtl.ca>
369
370 * cli/cli-decode.h (prefixname): Make const, move implementation
371 to cli/cli-decode.c.
372 * cli/cli-decode.c (cmd_list_element::prefixname): New.
373
374 2021-05-16 Weimin Pan <weimin.pan@oracle.com>
375
376 * ctfread.c (new_symbol): Set function address.
377 (read_func_kind_type): Remove incorrect type name setting.
378 Don't copy name returned from ctf_type_ame_raw throughout file.
379
380 2021-05-14 Tom Tromey <tom@tromey.com>
381
382 * rust-lang.c (rust_language::val_print_struct)
383 (rust_language::print_enum): Use common_val_print, not
384 value_print_inner.
385
386 2021-05-14 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
387
388 * python/py-inferior.c (infpy_get_connection_num): New function.
389 (inferior_object_getset): Add a new element for 'connection_num'.
390 * NEWS: Mention the 'connection_num' attribute of Inferior objects.
391
392 2021-05-14 Andrew Burgess <andrew.burgess@embecosm.com>
393
394 * remote.c (check_pending_events_prevent_wildcard_vcont): Change
395 argument type, update and re-wrap, header comment.
396 (remote_target::commit_resumed): Convert any_process_wildcard and
397 may_global_wildcard_vcont from int to bool.
398
399 2021-05-14 Kent Cheung <kent.cheung@arm.com>
400
401 * cp-valprint.c (cp_print_value): Replaced duplicate code.
402 * guile/scm-pretty-print.c (ppscm_print_children): Check max_depth
403 just before printing child values.
404 (gdbscm_apply_val_pretty_printer): Don't check max_depth before
405 printing string representation.
406 * python/py-prettyprint.c (print_children): Check max_depth just
407 before printing child values.
408 (gdbpy_apply_val_pretty_printer): Don't check max_depth before
409 printing string representation.
410
411 2021-05-14 Mike Frysinger <vapier@gentoo.org>
412
413 * remote-sim.c: Change gdb/callback.h & gdb/remote-sim.h includes to
414 sim/callback.h & sim/sim.h.
415
416 2021-05-13 Mike Frysinger <vapier@gentoo.org>
417
418 * lm32-tdep.c: Delete gdb/callback.h, gdb/remote-sim.h, and
419 sim-regno.h include.
420
421 2021-05-13 Simon Marchi <simon.marchi@efficios.com>
422
423 * inf-child.h (inf_child_target) <follow_exec>: New.
424 * inf-child.c (inf_child_target::follow_exec): New.
425
426 2021-05-13 Simon Marchi <simon.marchi@efficios.com>
427
428 * target.h (struct target_ops) <follow_exec>: Add ptid_t
429 parameter.
430 (target_follow_exec): Likewise.
431 * target.c (target_follow_exec): Add ptid_t parameter.
432 * infrun.c (follow_exec): Adjust call to target_follow_exec,
433 don't push target nor create thread.
434 * linux-thread-db.c (class thread_db_target) <follow_exec>: New.
435 (thread_db_target::wait): Just return on TARGET_WAITKIND_EXECD.
436 (thread_db_target::follow_exec): New.
437 * remote.c (class remote_target) <follow_exec>: Add ptid_t parameter.
438 (remote_target::follow_exec): Call
439 process_stratum_target::follow_exec.
440 * target-delegates.c: Re-generate.
441
442 2021-05-13 Simon Marchi <simon.marchi@efficios.com>
443
444 * infrun.c (follow_exec): Call target_follow_fork when
445 follow-exec-mode is same.
446 * target.h (target_follow_fork): Improve doc.
447
448 2021-05-13 Simon Marchi <simon.marchi@polymtl.ca>
449
450 * cli/cli-decode.h (struct cmd_list_element) <pre_show_hook>:
451 Remove.
452 * cli/cli-setshow.c (do_show_command): Adjust.
453
454 2021-05-13 Luis Machado <luis.machado@linaro.org>
455
456 * arch/aarch64-mte-linux.c (aarch64_mte_get_tag_granules): Don't
457 include the last address in the range.
458
459 2021-05-12 Simon Marchi <simon.marchi@polymtl.ca>
460
461 * python/python-internal.h (gdbpy_parse_command_name): Return
462 gdb::unique_xmalloc_ptr.
463 * python/py-cmd.c (gdbpy_parse_command_name): Likewise.
464 (cmdpy_init): Adjust.
465 * python/py-param.c (parmpy_init): Adjust.
466 (add_setshow_generic): Take gdb::unique_xmalloc_ptr, release it
467 when done.
468
469 2021-05-12 George Barrett <bob@bob131.so>
470
471 * NEWS (Guile API): Note the addition of the new procedure.
472 * guile/scm-value.c (gdbscm_value_const_value): Add
473 implementation of value-const-value procedure.
474 (value_functions): Add value-const-value procedure.
475
476 2021-05-12 George Barrett <bob@bob131.so>
477
478 * NEWS (Guile API): Note the addition of new procedures.
479 * guile/scm-value.c (gdbscm_reference_value): Add helper function
480 for reference value creation.
481 (gdbscm_value_reference_value): Add implementation of
482 value-reference-value procedure.
483 (gdbscm_value_rvalue_reference_value): Add implementation of
484 value-rvalue-reference-value procedure.
485 (value_functions): Add value-reference-value procedure. Add
486 value-rvalue-reference-value procedure.
487
488 2021-05-12 George Barrett <bob@bob131.so>
489
490 * guile/scm-type.c (type_integer_constants): Add binding for
491 TYPE_CODE_RVALUE_REF.
492 * guile/scm-value.c (gdbscm_value_referenced_value): Handle
493 dereferencing of rvalue references.
494 * NEWS (Guile API): Note improvements in rvalue reference support.
495
496 2021-05-12 Markus Metzger <markus.t.metzger@intel.com>
497
498 * btrace.c (handle_pt_insn_events): Ignore status update enable
499 events.
500
501 2021-05-11 Simon Marchi <simon.marchi@polymtl.ca>
502
503 * arm-tdep.c (arm_record_data_proc_misc_ld_str): Fix
504 indentation.
505
506 2021-05-11 Simon Marchi <simon.marchi@polymtl.ca>
507
508 * cli/cli-decode.h (struct cmd_list_element): Fix indentation.
509
510 2021-05-10 Lancelot Six <lsix@lancelotsix.com>
511
512 PR gdb/27614
513 * contrib/gdb-add-index.sh: Fix when called with a symlink as an
514 argument.
515
516 2021-05-10 Simon Marchi <simon.marchi@polymtl.ca>
517
518 * nat/linux-waitpid.c (status_to_str): Show signal name.
519
520 2021-05-09 Andrew Burgess <andrew.burgess@embecosm.com>
521
522 * python/py-breakpoint.c (pybp_debug): New static global.
523 (show_pybp_debug): New function.
524 (pybp_debug_printf): Define.
525 (PYBP_SCOPED_DEBUG_ENTER_EXIT): Define.
526 (gdbpy_breakpoint_created): Add some debugging.
527 (gdbpy_breakpoint_deleted): Likewise.
528 (gdbpy_breakpoint_modified): Likewise.
529 (_initialize_py_breakpoint): New function.
530
531 2021-05-09 Andrew Burgess <andrew.burgess@embecosm.com>
532
533 * python/py-unwind.c (pyuw_debug): Convert to bool.
534 (show_pyuw_debug): New function.
535 (pyuw_debug_printf): Define.
536 (PYUW_SCOPED_DEBUG_ENTER_EXIT): Define.
537 (pyuw_this_id): Convert to new debug print macros.
538 (pyuw_prev_register): Likewise.
539 (pyuw_sniffer): Likewise.
540 (pyuw_dealloc_cache): Likewise.
541 (_initialize_py_unwind): Update now pyuw_debug is a bool, and add
542 show function when registering.
543
544 2021-05-09 Andrew Burgess <andrew.burgess@embecosm.com>
545
546 * dummy-frame.c (fprint_dummy_frames): Convert use of
547 fprint_frame_id to use frame_id::to_string.
548 * frame.c (fprint_field): Delete.
549 (fprint_frame_id): Moved to...
550 (frame_id::to_string): ...this, rewritten to return a string.
551 (fprint_frame): Convert use of fprint_frame_id to use
552 frame_id::to_string.
553 (compute_frame_id): Likewise.
554 (frame_id_p): Likewise.
555 (frame_id_eq): Likewise.
556 (frame_id_inner): Likewise.
557 * frame.h (struct frame_id) <to_string>: New member function.
558 (fprint_frame_id): Delete declaration.
559 * guile/scm-frame.c (frscm_print_frame_smob): Convert use of
560 fprint_frame_id to use frame_id::to_string.
561 * python/py-frame.c (frame_object_to_frame_info): Likewise.
562 * python/py-unwind.c (unwind_infopy_str): Likewise.
563 (pyuw_this_id): Likewise.
564
565 2021-05-08 Simon Marchi <simon.marchi@polymtl.ca>
566
567 * nat/linux-waitpid.c (status_to_str): Return std::string.
568 * nat/linux-waitpid.h (status_to_str): Likewise.
569 * linux-nat.c (linux_nat_post_attach_wait): Adjust.
570 (linux_nat_target::attach): Adjust.
571 (linux_handle_extended_wait): Adjust.
572 (wait_lwp): Adjust.
573 (stop_wait_callback): Adjust.
574 (linux_nat_filter_event): Adjust.
575 (linux_nat_wait_1): Adjust.
576 * nat/linux-waitpid.c (status_to_str): Adjust.
577 * nat/linux-waitpid.h (status_to_str): Adjust.
578
579 2021-05-08 Simon Marchi <simon.marchi@polymtl.ca>
580
581 * infrun.h (infrun_debug_printf): Add missing space.
582
583 2021-05-08 Pedro Alves <pedro@palves.net>
584
585 * linux-nat.c (linux_nat_target::supports_disable_randomization):
586 Remove references to HAVE_PERSONALITY.
587 * nat/linux-personality.c: Remove references to HAVE_PERSONALITY.
588 (maybe_disable_address_space_randomization)
589 (~maybe_disable_address_space_randomizatio): Remove references to
590 HAVE_PERSONALITY.
591 * config.in, configure: Regenerate.
592
593 2021-05-07 Andrew Burgess <andrew.burgess@embecosm.com>
594
595 * cli/cli-cmds.c: Add 'gdbsupport/gdb_tilde_expand.h'
596 include.
597 (source_script_with_search): Perform tilde expansion.
598
599 2021-05-07 Simon Marchi <simon.marchi@polymtl.ca>
600
601 * target-descriptions.c (struct target_desc_info) <filename>:
602 Make std::string.
603 (copy_inferior_target_desc_info): Adjust.
604 (target_desc_info_free): Adjust.
605 (target_find_description): Adjust.
606 (set_tdesc_filename_cmd): Adjust.
607 (show_tdesc_filename_cmd): Adjust.
608 (unset_tdesc_filename_cmd): Adjust.
609 (maint_print_c_tdesc_cmd): Adjust.
610
611 2021-05-07 Simon Marchi <simon.marchi@polymtl.ca>
612
613 * target-descriptions.c (struct target_desc_info): Initialize
614 fields.
615 (get_tdesc_info): Use new.
616 (target_desc_info_free): Use delete.
617
618 2021-05-07 Simon Marchi <simon.marchi@polymtl.ca>
619
620 * target-descriptions.c (struct target_desc_info) <fetched>:
621 bool.
622 (target_find_description): Adjust.
623 (target_clear_description): Adjust.
624
625 2021-05-07 Simon Marchi <simon.marchi@polymtl.ca>
626
627 * target-descriptions.c (struct target_desc_info) <tdesc>:
628 Adjust doc.
629 (target_desc_fetched): Remove.
630 (current_target_desc): Remove.
631 (target_description_filename): Remove.
632 (target_find_description): Adjust.
633 (target_clear_description): Adjust.
634 (target_current_description): Adjust.
635 (set_tdesc_filename_cmd): Adjust.
636 (show_tdesc_filename_cmd): Adjust.
637 (unset_tdesc_filename_cmd): Adjust.
638 (maint_print_c_tdesc_cmd): Adjust.
639 (maint_print_xml_tdesc_cmd): Adjust.
640
641 2021-05-07 Andrew Burgess <andrew.burgess@embecosm.com>
642
643 * infcmd.c (notice_new_inferior): Change parameter type.
644 * inferior.h (notice_new_inferior): Change parameter type.
645 * remote.c (remote_notice_new_inferior): Change parameter type to
646 bool. Also update type of local variable to bool.
647 (remote_target::update_thread_list): Change type of local variable
648 to bool.
649 (remote_target::process_stop_reply): Pass bool instead of int to
650 remote_notice_new_inferior.
651
652 2021-05-07 Simon Marchi <simon.marchi@efficios.com>
653
654 * target.c (target_stack::unpush): Call target_ops::find_beneath
655 to get the target beneath `t`.
656
657 2021-05-07 Simon Marchi <simon.marchi@efficios.com>
658
659 * target.c (target_close): Check in all inferiors that the
660 target is not pushed.
661
662 2021-05-07 Aaron Merey <amerey@redhat.com>
663
664 * debuginfod-support.c (debuginfod_init): Remove.
665 (get_debuginfod_client): New function.
666
667 2021-05-07 Tom Tromey <tom@tromey.com>
668
669 * breakpoint.c (ambiguous_names_p): Use htab_eq_string.
670 * utils.c (streq_hash): Remove.
671 * utils.h (streq_hash): Don't declare.
672 * completer.c (completion_tracker::discard_completions): Update
673 comment.
674 * ada-lang.c (_initialize_ada_language): Use htab_eq_string.
675
676 2021-05-07 Simon Marchi <simon.marchi@polymtl.ca>
677
678 * Re-format all Python files using black.
679
680 2021-05-07 Andrew Burgess <andrew.burgess@embecosm.com>
681
682 * guile/guile-internal.h (gdbscm_safe_source_script): Change
683 function return type.
684 * guile/guile.c (gdbscm_source_script): Update to handle change in
685 gdbscm_safe_source_script.
686 * guile/scm-objfile.c (gdbscm_source_objfile_script): Likewise.
687 * guile/scm-safe-call.c (gdbscm_safe_source_script): Change return
688 type.
689
690 2021-05-06 Simon Marchi <simon.marchi@polymtl.ca>
691
692 * inferior.h (class inferior) <args>: Change type to
693 unique_xmalloc_ptr.
694 * inferior.c (inferior::~inferior): Don't free args.
695 * infcmd.c (get_inferior_args): Adjust.
696 (set_inferior_args): Adjust.
697
698 2021-05-06 Andrew Burgess <andrew.burgess@embecosm.com>
699
700 * guile/scm-breakpoint.c (bpscm_print_breakpoint_smob): Only print
701 breakpoint locations when the breakpoint actually has a location.
702
703 2021-05-06 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
704
705 * mi/mi-cmd-break.c (mi_cmd_break_condition): New function.
706 * mi/mi-cmds.c: Change the binding of "-break-condition" to
707 mi_cmd_break_condition.
708 * mi/mi-cmds.h (mi_cmd_break_condition): Declare.
709 * breakpoint.h (set_breakpoint_condition): Declare a new
710 overload.
711 * breakpoint.c (set_breakpoint_condition): New overloaded function
712 extracted out from ...
713 (condition_command): ... this.
714 * NEWS: Mention the change.
715
716 2021-05-06 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
717
718 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Recognize the
719 '--force-condition' flag to force the condition in the
720 '-break-insert' and '-dprintf-insert' commands.
721 * NEWS: Mention the change.
722
723 2021-05-04 Tom de Vries <tdevries@suse.de>
724
725 PR guile/27806
726 * guile/guile.c (gdbscm_initialize): Don't let guile change libgmp
727 memory functions.
728
729 2021-04-30 Tom Tromey <tom@tromey.com>
730
731 * dwarf2/read.c (dwarf2_initialize_objfile): Update.
732 (add_signatured_type_cu_to_table): Remove.
733 (create_debug_type_hash_table): Assume dwo_file is non-null.
734 (create_debug_types_hash_table): Update comment.
735 (create_all_type_units): Remove.
736 (sort_tu_by_abbrev_offset): Update comment.
737 (build_type_psymtabs): Rename from build_type_psymtabs_1.
738 (build_type_psymtabs): Remove.
739 (process_skeletonless_type_unit, dwarf2_build_psymtabs_hard):
740 Update.
741 (read_comp_units_from_section): Add types_htab, section_kind
742 parameters.
743 (create_all_comp_units): Read type units.
744
745 2021-04-30 Tom Tromey <tom@tromey.com>
746
747 * dwarf2/read.h (struct tu_stats) <nr_tus>: New member.
748 (struct dwarf2_per_bfd) <get_cutu, get_tu>: Remove
749 <get_cu>: Now inline.
750 <all_type_units>: Remove.
751 * dwarf2/read.c (dwarf2_per_bfd::~dwarf2_per_bfd): Update.
752 (dwarf2_per_bfd::get_cutu, dwarf2_per_bfd::get_cu)
753 (dwarf2_per_bfd::get_tu): Remove.
754 (dwarf2_per_bfd::allocate_signatured_type): Update nr_tus.
755 (create_signatured_type_table_from_index)
756 (create_signatured_type_table_from_debug_names)
757 (dw2_symtab_iter_next, dwarf2_base_index_functions::print_stats)
758 (dwarf2_base_index_functions::expand_all_symtabs)
759 (dw2_expand_marked_cus, dw_expand_symtabs_matching_file_matcher)
760 (dwarf2_base_index_functions::map_symbol_filenames)
761 (dw2_debug_names_iterator::next, dwarf2_initialize_objfile)
762 (add_signatured_type_cu_to_table, create_all_type_units)
763 (add_type_unit, build_type_psymtabs_1, print_tu_stats)
764 (create_all_comp_units): Update.
765 * dwarf2/index-write.c (check_dwarf64_offsets, write_gdbindex)
766 (write_debug_names): Update.
767
768 2021-04-30 Tom Tromey <tom@tromey.com>
769
770 * dwarf2/read.h (struct dwarf2_per_bfd) <allocate_per_cu,
771 allocate_signatured_type>: Change return type.
772 <all_comp_units, all_type_units>: Hold unique pointers.
773 (struct dwarf2_per_cu_data): Add constructor and initializers.
774 (struct signatured_type): Derive from dwarf2_per_cu_data.
775 * dwarf2/read.c (type_unit_group): Derive from
776 dwarf2_per_cu_data.
777 (dwarf2_per_bfd::get_cutu, dwarf2_per_bfd::get_cu)
778 (dwarf2_per_bfd::get_tu)
779 (dwarf2_per_bfd::allocate_signatured_type)
780 (dwarf2_per_bfd::allocate_signatured_type)
781 (create_cu_from_index_list, create_cus_from_index_list)
782 (create_signatured_type_table_from_index)
783 (create_signatured_type_table_from_debug_names)
784 (create_addrmap_from_aranges)
785 (dwarf2_base_index_functions::find_last_source_symtab)
786 (dw_expand_symtabs_matching_file_matcher)
787 (dwarf2_gdb_index::expand_symtabs_matching)
788 (dwarf2_base_index_functions::map_symbol_filenames)
789 (create_cus_from_debug_names_list)
790 (dw2_debug_names_iterator::next)
791 (dwarf2_debug_names_index::expand_symtabs_matching)
792 (create_debug_type_hash_table, add_type_unit)
793 (fill_in_sig_entry_from_dwo_entry, lookup_dwo_signatured_type):
794 Update.
795 (allocate_type_unit_groups_table): Use delete.
796 (create_type_unit_group): Change return type. Use new.
797 (get_type_unit_group, build_type_psymtabs_1)
798 (build_type_psymtab_dependencies)
799 (process_skeletonless_type_unit, set_partial_user)
800 (dwarf2_build_psymtabs_hard, read_comp_units_from_section)
801 (create_cus_hash_table, queue_and_load_dwo_tu, follow_die_sig_1)
802 (read_signatured_type): Update.
803 (dwarf2_find_containing_comp_unit): Change type of
804 'all_comp_units'.
805 (run_test): Update.
806 (dwarf2_per_bfd::allocate_per_cu)
807 (dwarf2_per_bfd::allocate_signatured_type): Change return type.
808 Use new.
809 (add_signatured_type_cu_to_table): Update.
810 * dwarf2/index-write.c (write_one_signatured_type)
811 (check_dwarf64_offsets, psyms_seen_size, write_gdbindex)
812 (write_debug_names): Update.
813
814 2021-04-30 Tom Tromey <tromey@adacore.com>
815
816 * nat/windows-nat.h (get_image_name): Don't declare.
817 * nat/windows-nat.c (get_image_name): Now static.
818
819 2021-04-30 Tom Tromey <tromey@adacore.com>
820
821 * windows-nat.c (windows_nat::handle_load_dll): Update.
822 (windows_nat_target::get_windows_debug_event): Call
823 dll_loaded_event.
824 (windows_add_all_dlls, windows_add_dll): Move to
825 nat/windows-nat.c.
826 * nat/windows-nat.h (handle_load_dll): Change parameters.
827 (dll_loaded_event, windows_add_all_dlls): Declare.
828 * nat/windows-nat.c (windows_add_dll, windows_add_all_dlls): Move
829 from windows-nat.c.
830 (dll_loaded_event): New function.
831
832 2021-04-30 Tom Tromey <tromey@adacore.com>
833
834 * nat/windows-nat.h (GenerateConsoleCtrlEvent): New define.
835 (GenerateConsoleCtrlEvent_ftype, GenerateConsoleCtrlEvent):
836 Declare.
837 * nat/windows-nat.c (GenerateConsoleCtrlEvent): Define.
838 (initialize_loadable): Initialize GenerateConsoleCtrlEvent.
839
840 2021-04-30 Tom Tromey <tromey@adacore.com>
841
842 * windows-nat.c: Move code to nat/windows-nat.[ch].
843 (_initialize_windows_nat): Call initialize_loadable.
844 * nat/windows-nat.h (AdjustTokenPrivileges)
845 (DebugActiveProcessStop, DebugBreakProcess)
846 (DebugSetProcessKillOnExit, EnumProcessModules)
847 (EnumProcessModulesEx, GetModuleInformation)
848 (GetModuleFileNameExA, GetModuleFileNameExW)
849 (LookupPrivilegeValueA, OpenProcessToken, GetConsoleFontSize)
850 (GetCurrentConsoleFont, Wow64SuspendThread)
851 (Wow64GetThreadContext, Wow64SetThreadContext)
852 (Wow64GetThreadSelectorEntry): Move from windows-nat.c.
853 (AdjustTokenPrivileges_ftype)
854 (DebugActiveProcessStop_ftype, DebugBreakProcess_ftype)
855 (DebugSetProcessKillOnExit_ftype, EnumProcessModules_ftype)
856 (EnumProcessModulesEx_ftype, GetModuleInformation_ftype)
857 (GetModuleFileNameExA_ftype, GetModuleFileNameExW_ftype)
858 (LookupPrivilegeValueA_ftype, OpenProcessToken_ftype)
859 (GetConsoleFontSize_ftype)
860 (GetCurrentConsoleFont_ftype, Wow64SuspendThread_ftype)
861 (Wow64GetThreadContext_ftype, Wow64SetThreadContext_ftype)
862 (Wow64GetThreadSelectorEntry_ftype): Likewise.
863 (initialize_loadable): Declare.
864 * nat/windows-nat.c (AdjustTokenPrivileges)
865 (DebugActiveProcessStop, DebugBreakProcess)
866 (DebugSetProcessKillOnExit, EnumProcessModules)
867 (EnumProcessModulesEx, GetModuleInformation, GetModuleFileNameExA)
868 (GetModuleFileNameExW, LookupPrivilegeValueA, OpenProcessToken)
869 (GetCurrentConsoleFont, GetConsoleFontSize, Wow64SuspendThread)
870 (Wow64GetThreadContext, Wow64SetThreadContext)
871 (Wow64GetThreadSelectorEntry): Define.
872 (bad, bad_GetCurrentConsoleFont, bad_GetConsoleFontSize): Move
873 from windows-nat.c.
874 (initialize_loadable): Likewise, and rename.
875
876 2021-04-30 Tom Tromey <tromey@adacore.com>
877
878 * windows-nat.c (bad_GetModuleFileNameEx): Remove define.
879 (bad_DebugActiveProcessStop, bad_DebugBreakProcess)
880 (bad_DebugSetProcessKillOnExit, bad_EnumProcessModules)
881 (bad_GetModuleFileNameExW, bad_GetModuleFileNameExA)
882 (bad_GetModuleInformation, bad_OpenProcessToken): Remove.
883 (bad): New template functions.
884 (_initialize_loadable): Update.
885
886 2021-04-30 Tom Tromey <tromey@adacore.com>
887
888 * ada-lang.c (ada_index_type): Use ada_check_typedef.
889
890 2021-04-29 Simon Marchi <simon.marchi@efficios.com>
891
892 * auto-load.h: Split namespace declaration.
893
894 2021-04-29 Simon Marchi <simon.marchi@polymtl.ca>
895
896 * infrun.c (save_waitstatus): Move variables to inner scope.
897
898 2021-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
899
900 * NEWS: Fix typo and stray full stop.
901
902 2021-04-28 Tom Tromey <tromey@adacore.com>
903
904 * ada-exp.y (primary): Use new type for null pointer.
905 * ada-lang.c (ada_type_match): Remove "may_deref"
906 parameter. Handle null pointer.
907 (ada_args_match): Update.
908 * ada-valprint.c (ada_value_print_ptr, ada_value_print):
909 Handle null pointer.
910
911 2021-04-28 Andrew Burgess <andrew.burgess@embecosm.com>
912
913 * NEWS: Mention new commands.
914 * python/python.c (python_ignore_environment): New static global.
915 (show_python_ignore_environment): New function.
916 (set_python_ignore_environment): New function.
917 (python_dont_write_bytecode): New static global.
918 (show_python_dont_write_bytecode): New function.
919 (set_python_dont_write_bytecode): New function.
920 (_initialize_python): Register new commands.
921
922 2021-04-28 Andrew Burgess <andrew.burgess@embecosm.com>
923
924 * extension-priv.h (struct extension_language_ops): Rename
925 'finish_initialization' to 'initialize'.
926 * extension.c (finish_ext_lang_initialization): Renamed to...
927 (ext_lang_initialization): ...this, update comment, and updated
928 the calls to reflect the change in struct extension_language_ops.
929 * extension.h (finish_ext_lang_initialization): Renamed to...
930 (ext_lang_initialization): ...this.
931 * guile/guile.c (gdbscm_finish_initialization): Renamed to...
932 (gdbscm_initialize): ...this, update comment at definition.
933 (guile_extension_ops): Update.
934 * main.c (captured_main_1): Update call to
935 finish_ext_lang_initialization.
936 * python/python.c (gdbpy_finish_initialization): Rename to...
937 (gdbpy_initialize): ...this, update comment at definition, and
938 update call to do_finish_initialization.
939 (python_extension_ops): Update.
940 (do_finish_initialization): Rename to...
941 (do_initialize): ...this, and update comment.
942
943 2021-04-28 Andrew Burgess <andrew.burgess@embecosm.com>
944
945 * main.c (captured_main_1): Add a call to
946 finish_ext_lang_initialization.
947 * top.c (gdb_init): Remove call to finish_ext_lang_initialization.
948
949 2021-04-28 Andrew Burgess <andrew.burgess@embecosm.com>
950
951 * guile/guile.c (gdbscm_set_backtrace): Add declaration.
952 (gdbscm_finish_initialization): Add code moved from
953 _initialize_guile.
954 (_initialize_guile): Move code to gdbscm_finish_initialization.
955 * guile/scm-arch.c (gdbscm_initialize_arches): Move some code into
956 _initialize_scm_arch.
957 (_initialize_scm_arch): New function.
958 * guile/scm-block.c (gdbscm_initialize_blocks): Move some code
959 into _initialize_scm_block.
960 (_initialize_scm_block): New function.
961 * guile/scm-frame.c (gdbscm_initialize_frames): Move some code
962 into _initialize_scm_frame.
963 (_initialize_scm_frame): New function.
964 * guile/scm-objfile.c (gdbscm_initialize_objfiles): Move some code
965 into _initialize_scm_objfile.
966 (_initialize_scm_objfile): New function.
967 * guile/scm-progspace.c (gdbscm_initialize_pspaces): Move some
968 code into _initialize_scm_progspace.
969 (_initialize_scm_progspace): New function.
970 * guile/scm-symbol.c (gdbscm_initialize_symbols): Move some code
971 into _initialize_scm_symbol.
972 (_initialize_scm_symbol): New function.
973 * guile/scm-symtab.c (gdbscm_initialize_symtabs): Move some code
974 into _initialize_scm_symtab.
975 (_initialize_scm_symtab): New function.
976 * guile/scm-type.c (gdbscm_initialize_types): Move some code into
977 _initialize_scm_type.
978 (_initialize_scm_type): New function.
979
980 2021-04-28 Andrew Burgess <andrew.burgess@embecosm.com>
981
982 * python/py-arch.c (_initialize_py_arch): New function.
983 (gdbpy_initialize_arch): Move code to _initialize_py_arch.
984 * python/py-block.c (_initialize_py_block): New function.
985 (gdbpy_initialize_blocks): Move code to _initialize_py_block.
986 * python/py-inferior.c (_initialize_py_inferior): New function.
987 (gdbpy_initialize_inferior): Move code to _initialize_py_inferior.
988 * python/py-objfile.c (_initialize_py_objfile): New function.
989 (gdbpy_initialize_objfile): Move code to _initialize_py_objfile.
990 * python/py-progspace.c (_initialize_py_progspace): New function.
991 (gdbpy_initialize_pspace): Move code to _initialize_py_progspace.
992 * python/py-registers.c (_initialize_py_registers): New function.
993 (gdbpy_initialize_registers): Move code to
994 _initialize_py_registers.
995 * python/py-symbol.c (_initialize_py_symbol): New function.
996 (gdbpy_initialize_symbols): Move code to _initialize_py_symbol.
997 * python/py-symtab.c (_initialize_py_symtab): New function.
998 (gdbpy_initialize_symtabs): Move code to _initialize_py_symtab.
999 * python/py-type.c (_initialize_py_type): New function.
1000 (gdbpy_initialize_types): Move code to _initialize_py_type.
1001 * python/py-unwind.c (_initialize_py_unwind): New function.
1002 (gdbpy_initialize_unwind): Move code to _initialize_py_unwind.
1003 * python/python.c (_initialize_python): Move call to
1004 do_start_initialization to gdbpy_finish_initialization.
1005 (gdbpy_finish_initialization): Add call to
1006 do_start_initialization.
1007
1008 2021-04-28 Andrew Burgess <andrew.burgess@embecosm.com>
1009
1010 * extension.c (struct scoped_default_signal): New struct.
1011 (scoped_default_sigint): New typedef.
1012 (finish_ext_lang_initialization): Make use of
1013 scoped_default_sigint.
1014
1015 2021-04-28 Andrew Burgess <andrew.burgess@embecosm.com>
1016
1017 * main.c (captured_main_1): Don't pass argument to gdb_init.
1018 * top.c (gdb_init): Remove unused argument, and add header
1019 comment.
1020 * top.h (gdb_init): Remove argument.
1021
1022 2021-04-27 Luis Machado <luis.machado@linaro.org>
1023
1024 * psymtab.c (psymbol_functions::dump): Output newline.
1025 Remove wrap.
1026 * symmisc.c (dump_objfile): Likewise.
1027
1028 2021-04-27 Michael Weghorn <m.weghorn@posteo.de>
1029 Simon Marchi <simon.marchi@polymtl.ca>
1030
1031 * gdb/auto-load.c (_initialize_auto_load): 'Specify token
1032 when attaching the 'auto_load_new_objfile' observer, so
1033 other observers can specify it as a dependency.
1034 * gdb/auto-load.h (struct token): Declare
1035 'auto_load_new_objfile_observer_token' as token to be used
1036 for the 'auto_load_new_objfile' observer.
1037 * gdb/python/py-inferior.c (gdbpy_initialize_inferior): Make
1038 'python_new_objfile' observer depend on 'auto_load_new_objfile'
1039 observer, so it gets notified after the latter.
1040
1041 2021-04-27 Michael Weghorn <m.weghorn@posteo.de>
1042 Simon Marchi <simon.marchi@polymtl.ca>
1043
1044 * unittests/observable-selftests.c (dependency_test_counters):
1045 New.
1046 (observer_token0, observer_token1, observer_token2,
1047 observer_token3, observer_token4, observer_token5): New.
1048 (struct dependency_observer_data): New struct.
1049 (observer_dependency_test_callback): New function.
1050 (test_observers): New.
1051 (run_dependency_test): New function.
1052 (test_dependency): New.
1053 (_initialize_observer_selftest): Register dependency test.
1054
1055 2021-04-26 Simon Marchi <simon.marchi@polymtl.ca>
1056
1057 PR gdb/27773
1058 * cli/cli-dump.c (dump_binary_file): Check result of
1059 gdb_fopen_cloexec.
1060
1061 2021-04-25 Sergei Trofimovich <siarheit@google.com>
1062
1063 * sparc-linux-nat.c (sparc_linux_nat_target): fix sparc build
1064 by passing `process_stratum_target*` parameter.
1065
1066 2021-04-25 Lancelot Six <lsix@lancelotsix.com>
1067
1068 PR gdb/22640
1069 * typeprint.h (struct type_print_options): Add print_in_hex
1070 flag.
1071 (struct print_offset_data): Add print_in_hex flag, add a
1072 constructor accepting a type_print_options* argument.
1073 * typeprint.c (type_print_raw_options, default_ptype_flags): Set
1074 default value for print_in_hex.
1075 (print_offset_data::indentation): Allow more horizontal space.
1076 (print_offset_data::print_offset_data): Add ctor.
1077 (print_offset_data::maybe_print_hole, print_offset_data::update):
1078 Handle the print_in_hex flag.
1079 (whatis_exp): Handle 'x' and 'd' flags.
1080 (print_offsets_and_sizes_in_hex): Declare.
1081 (set_print_offsets_and_sizes_in_hex): Create.
1082 (show_print_offsets_and_sizes_in_hex): Create.
1083 (_initialize_typeprint): Update help message for the ptype
1084 command, register the 'set print type hex' and 'show print type
1085 hex' commands.
1086 * c-typeprint.c (c_print_type, c_type_print_base_struct_union)
1087 (c_type_print_base): Construct the print_offset_data
1088 object using the type_print_optons parameter.
1089 * rust-lang.c (rust_language::print_type): Construct the
1090 print_offset_data object using the type_print_optons parameter.
1091 * NEWS: Mention the new flags of the ptype command.
1092
1093 2021-04-25 Lancelot Six <lsix@lancelotsix.com>
1094
1095 * typeprint.h (struct type_print_options): Move before
1096 print_offset_data.
1097
1098 2021-04-25 Joel Brobecker <brobecker@adacore.com>
1099
1100 GDB 10.2 released.
1101
1102 2021-04-23 Simon Marchi <simon.marchi@polymtl.ca>
1103
1104 * observable.c (observer_debug): Change to bool.
1105
1106 2021-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
1107
1108 * dwarf2/read.c: Add 'unordered_set' include.
1109 (dwarf2_base_index_functions::map_symbol_filenames): Replace
1110 'visited' hash table with 'qfn_cache' unordered_set. Remove use
1111 of per_Bfd->filenames_cache cache, and use function local
1112 filenames_cache instead. Reindent.
1113 * dwarf2/read.h (struct dwarf2_per_bfd) <filenames_cache>: Delete.
1114
1115 2021-04-22 Simon Marchi <simon.marchi@polymtl.ca>
1116
1117 * breakpoint.c (iterate_over_bp_locations): Change callback to
1118 function view, remove data parameter.
1119 * breakpoint.h (iterate_over_bp_locations): Likewise.
1120 * record-full.c (record_full_sync_record_breakpoints): Remove
1121 data parameter.
1122
1123 2021-04-22 Tom Tromey <tom@tromey.com>
1124
1125 * c-typeprint.c (c_type_print_base_struct_union): Use
1126 print_spaces_filtered_with_print_options.
1127
1128 2021-04-22 Simon Marchi <simon.marchi@polymtl.ca>
1129
1130 PR gdb/27757
1131 * python/py-type.c (typy_range): Check that bounds are constant
1132 before accessing them as such.
1133 * guile/scm-type.c (gdbscm_type_range): Likewise.
1134
1135 2021-04-22 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
1136
1137 * Makefile.in (COMMON_SFILES): Remove continuations.c.
1138 * inferior.c (inferior::add_continuation): New method, adapted
1139 from 'add_inferior_continuation'.
1140 (inferior::do_all_continuations): New method, adapted from
1141 'do_all_inferior_continuations'.
1142 (inferior::~inferior): Clear the list of continuations directly.
1143 * inferior.h (class inferior) <continuations>: Rename into...
1144 <m_continuations>: ...this and make private.
1145 * continuations.c: Remove.
1146 * continuations.h: Remove.
1147 * event-top.c: Don't include "continuations.h".
1148
1149 Update the users below.
1150 * inf-loop.c (inferior_event_handler)
1151 * infcmd.c (attach_command)
1152 (notice_new_inferior): Update.
1153
1154 2021-04-22 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
1155
1156 * inferior.h (class inferior) <continuations>: Change the type
1157 to be an std::list of std::function's.
1158 Update the references and uses below.
1159 * continuations.c (struct continuation): Delete.
1160 (make_continuation): Delete.
1161 (do_my_continuations_1): Delete.
1162 (do_my_continuations): Delete.
1163 (discard_my_continuations_1): Delete.
1164 (discard_my_continuations): Delete.
1165 (add_inferior_continuation): Update.
1166 (do_all_inferior_continuations): Update.
1167 (discard_all_inferior_continuations): Update.
1168 * continuations.h (add_inferior_continuation): Update to take
1169 an std::function as the parameter.
1170 * infcmd.c (struct attach_command_continuation_args): Delete.
1171 (attach_command_continuation): Delete.
1172 (attach_command_continuation_free_args): Delete.
1173 (attach_command): Update.
1174 (notice_new_inferior): Update.
1175
1176 2021-04-22 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
1177
1178 * continuations.h: Update the general comment.
1179 * inferior.h (class inferior) <continuations>: Update the comment.
1180 * interps.c: Do not include "continuations.h".
1181
1182 2021-04-22 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
1183
1184 * continuations.h (do_all_inferior_continuations): Remove the 'err'
1185 parameter. Update the references below.
1186 * continuations.c (do_my_continuations_1)
1187 (do_my_continuations)
1188 (do_all_inferior_continuations): Update.
1189 * inf-loop.c (inferior_event_handler): Update.
1190 * infcmd.c (attach_command_continuation): Update.
1191
1192 2021-04-22 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
1193
1194 * infcmd.c (attach_post_wait): Update the function comment.
1195
1196 2021-04-22 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
1197
1198 * infcmd.c (attach_post_wait): Remove the unused parameter 'args'.
1199 Update the references below.
1200 (struct attach_command_continuation_args)
1201 (attach_command_continuation)
1202 (attach_command_continuation_free_args)
1203 (attach_command)
1204 (notice_new_inferior): Update to remove the reference to 'args'.
1205
1206 2021-04-22 Simon Marchi <simon.marchi@polymtl.ca>
1207 Tom de Vries <tdevries@suse.de>
1208
1209 PR remote/27710
1210 * remote.c (remote_target_is_non_stop_p): New function.
1211 * remote.h (remote_target_is_non_stop_p): Declare.
1212 * remote-notif.c (remote_async_get_pending_events_handler): Fix assert
1213 to check non-stopness using notif_state->remote rather current target.
1214
1215 2021-04-22 Tom Tromey <tom@tromey.com>
1216
1217 * rust-parse.c (rust_parser::parse_sizeof): Remove KW_MUT code.
1218 (struct typed_val_int) <val>: Now ULONGEST.
1219 (rust_parser::parse_array_type): Remove negative check.
1220 (rust_lex_int_test): Change 'value' to ULONGEST.
1221
1222 2021-04-22 Andrew Burgess <andrew.burgess@embecosm.com>
1223
1224 * arch-utils.c (default_addressable_memory_unit_size): Return a
1225 value based on bfd's bits per byte.
1226
1227 2021-04-21 Tom Tromey <tom@tromey.com>
1228
1229 * dwarf2/read.h (struct dwarf2_per_cu_data) <dwarf_version>: Now
1230 unsigned char.
1231 (struct dwarf2_per_cu_data): Rearrange.
1232 * dwarf2/comp-unit.h (struct comp_unit_head) <version>: Now
1233 unsigned char.
1234 (struct comp_unit_head): Rearrange.
1235 * dwarf2/comp-unit.c (read_comp_unit_head): Update.
1236
1237 2021-04-21 Tom de Vries <tdevries@suse.de>
1238
1239 PR build/27681
1240 * configure.ac: Remove --without-included-regex/--with-included-regex.
1241 * config.in: Regenerate.
1242 * configure: Regenerate.
1243 * gdb_regex.h: Assume USE_INCLUDED_REGEX is defined.
1244
1245 2021-04-21 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
1246
1247 * breakpoint.h (create_breakpoint): Add a new parameter,
1248 'force_condition'.
1249 * breakpoint.c (create_breakpoint): Use the 'force_condition'
1250 argument when 'parse_extra' is false to check if the condition
1251 is invalid at all of the breakpoint locations.
1252 Update the users below.
1253 (break_command_1)
1254 (dprintf_command)
1255 (trace_command)
1256 (ftrace_command)
1257 (strace_command)
1258 (create_tracepoint_from_upload): Update.
1259 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Update.
1260 * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Update.
1261 * python/py-breakpoint.c (bppy_init): Update.
1262 * python/py-finishbreakpoint.c (bpfinishpy_init): Update.
1263
1264 2021-04-21 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
1265
1266 * breakpoint.c (print_one_breakpoint_location): Display "N" for
1267 disabled-by-condition locations on MI-like output.
1268 (breakpoint_1): Do not display the disabled-by-condition footnote
1269 if the output is MI-like.
1270
1271 2021-04-21 Frederic Cambus <fred@statdns.com>
1272
1273 * syscalls/update-netbsd.sh: Fix script name display in usage, and
1274 update year range in generated copyright notices.
1275
1276 2021-04-20 Felix Willgerodt <felix.willgerodt@intel.com>
1277
1278 * c-exp.y (qualifier_seq_noopt): Replace qualifier_seq with
1279 qualifier_seq_noopt.
1280
1281 2021-04-20 Felix Willgerodt <felix.willgerodt@intel.com>
1282
1283 * c-exp.y (single_qualifier): Handle UNKNOWN_CPP_NAME.
1284
1285 2021-04-19 Andrew Burgess <andrew.burgess@embecosm.com>
1286
1287 * producer.c: Replace 'regex' include with 'gdb_regex.h'.
1288 (producer_is_icc): Replace use of std::regex with gdb's
1289 compiled_regex.
1290
1291 2021-04-17 Tom Tromey <tom@tromey.com>
1292
1293 PR gdb/23743:
1294 * dwarf2/read.c (class offset_view): New.
1295 (struct symbol_table_slot): Remove.
1296 (struct mapped_index) <symbol_table, constant_pool>: Change type.
1297 <symbol_name_index, symbol_vec_index>: New methods.
1298 <symbol_name_slot_invalid, symbol_name_at, symbol_name_count>:
1299 Rewrite.
1300 (read_gdb_index_from_buffer): Update.
1301 (struct dw2_symtab_iterator) <vec>: Change type.
1302 (dw2_symtab_iter_init_common, dw2_symtab_iter_init)
1303 (dw2_symtab_iter_next, dw2_expand_marked_cus): Update.
1304 * dwarf2/index-write.c (class data_buf) <append_data>: Remove.
1305 <append_array, append_offset>: New methods.
1306 (write_hash_table, add_address_entry, write_gdbindex_1)
1307 (write_debug_names): Update.
1308 * dwarf2/index-common.h (byte_swap, MAYBE_SWAP): Remove.
1309
1310 2021-04-17 Tom Tromey <tom@tromey.com>
1311
1312 * dwarf2/index-write.c (write_psymtabs_to_index): Check
1313 partial_symtabs.
1314
1315 2021-04-17 Tom Tromey <tom@tromey.com>
1316
1317 * psymtab.c (psymbol_functions::expand_matching_symbols): Rename
1318 from map_matching_symbols. Change parameters.
1319 * psympriv.h (struct psymbol_functions) <expand_matching_symbols>:
1320 Rename from map_matching_symbols. Change parameters.
1321 * dwarf2/read.c (struct dwarf2_gdb_index)
1322 <expand_matching_symbols>: Rename from map_matching_symbols.
1323 Change parameters.
1324 (struct dwarf2_debug_names_index) <expand_matching_symbols>:
1325 Rename from map_matching_symbols. Change parameters.
1326 (dwarf2_gdb_index::expand_matching_symbols): Rename from
1327 dw2_map_matching_symbols. Change parameters.
1328 (dwarf2_gdb_index::expand_matching_symbols): Remove old
1329 implementation.
1330 (dwarf2_debug_names_index::expand_matching_symbols): Rename from
1331 map_matching_symbols. Change parameters.
1332 * objfiles.h (struct objfile) <expand_matching_symbols>: Rename
1333 from map_matching_symbols. Change parameters.
1334 * symfile-debug.c (objfile::expand_matching_symbols): Rename from
1335 map_matching_symbols. Change parameters.
1336 * ada-lang.c (map_matching_symbols): New function.
1337 (add_nonlocal_symbols): Update.
1338
1339 2021-04-17 Tom Tromey <tom@tromey.com>
1340
1341 * quick-symbol.h (struct quick_symbol_functions)
1342 <expand_symtabs_with_fullname>: Remove.
1343 * psymtab.c (psymbol_functions::expand_symtabs_with_fullname):
1344 Remove.
1345 * psympriv.h (struct psymbol_functions)
1346 <expand_symtabs_with_fullname>: Remove.
1347 * dwarf2/read.c (struct dwarf2_base_index_functions)
1348 <expand_symtabs_with_fullname>: Remove.
1349 (dwarf2_base_index_functions::expand_symtabs_with_fullname):
1350 Remove.
1351 * objfiles.h (struct objfile) <expand_symtabs_with_fullname>:
1352 Update comment.
1353 * symfile-debug.c (objfile::expand_symtabs_with_fullname):
1354 Rewrite.
1355
1356 2021-04-17 Tom Tromey <tom@tromey.com>
1357
1358 * symfile-debug.c (objfile::expand_symtabs_for_function):
1359 Rewrite.
1360 * quick-symbol.h (struct quick_symbol_functions)
1361 <expand_symtabs_for_function>: Remove.
1362 * psymtab.c (psymbol_functions::expand_symtabs_for_function):
1363 Remove.
1364 * psympriv.h (struct psymbol_functions)
1365 <expand_symtabs_for_function>: Remove.
1366 * objfiles.h (struct objfile) <expand_symtabs_for_function>:
1367 Update comment.
1368 * dwarf2/read.c (struct dwarf2_gdb_index)
1369 <expand_symtabs_for_function>: Remove.
1370 (struct dwarf2_debug_names_index) <expand_symtabs_for_function>:
1371 Remove.
1372 (find_slot_in_mapped_hash): Remove.
1373 (dw2_symtab_iter_init_common): Merge with dw2_symtab_iter_init.
1374 (dw2_symtab_iter_init): Remove one overload.
1375 (dwarf2_gdb_index::expand_symtabs_for_function)
1376 (dwarf2_debug_names_index::expand_symtabs_for_function): Remove.
1377
1378 2021-04-17 Tom Tromey <tom@tromey.com>
1379
1380 * symfile-debug.c (objfile::map_symtabs_matching_filename):
1381 Rewrite.
1382 * quick-symbol.h (struct quick_symbol_functions)
1383 <map_symtabs_matching_filename>: Remove.
1384 * psymtab.c (partial_map_expand_apply)
1385 (psymbol_functions::map_symtabs_matching_filename): Remove.
1386 * psympriv.h (struct psymbol_functions)
1387 <map_symtabs_matching_filename>: Remove.
1388 * objfiles.h (struct objfile) <map_symtabs_matching_filename>:
1389 Update comment.
1390 * dwarf2/read.c (struct dwarf2_base_index_functions)
1391 <map_symtabs_matching_filename>: Remove.
1392 (dw2_map_expand_apply)
1393 (dwarf2_base_index_functions::map_symtabs_matching_filename):
1394 Remove.
1395
1396 2021-04-17 Tom Tromey <tom@tromey.com>
1397
1398 * symfile-debug.c (objfile::lookup_symbol): Rewrite.
1399 * quick-symbol.h (struct quick_symbol_functions) <lookup_symbol>:
1400 Remove.
1401 * psymtab.c (psymbol_functions::lookup_symbol): Remove.
1402 * psympriv.h (struct psymbol_functions) <lookup_symbol>: Remove.
1403 * objfiles.h (struct objfile) <lookup_symbol>: Add comment.
1404 * dwarf2/read.c (struct dwarf2_gdb_index) <lookup_symbol>:
1405 Remove.
1406 (struct dwarf2_debug_names_index) <lookup_symbol>: Remove.
1407 (dwarf2_gdb_index::lookup_symbol)
1408 (dwarf2_debug_names_index::lookup_symbol): Remove.
1409
1410 2021-04-17 Tom Tromey <tom@tromey.com>
1411
1412 * symtab.c (global_symbol_searcher::expand_symtabs): Update.
1413 * symmisc.c (maintenance_expand_symtabs): Update.
1414 * symfile.c (expand_symtabs_matching): Update.
1415 * symfile-debug.c (objfile::expand_symtabs_matching): Add 'domain'
1416 parameter.
1417 * quick-symbol.h (struct quick_symbol_functions)
1418 <expand_symtabs_matching>: Add 'domain' parameter.
1419 * psymtab.c (recursively_search_psymtabs)
1420 (psymbol_functions::expand_symtabs_matching): Add 'domain'
1421 parameter.
1422 * psympriv.h (struct psymbol_functions) <expand_symtabs_matching>:
1423 Add 'domain' parameter.
1424 * objfiles.h (struct objfile) <expand_symtabs_matching>: Add
1425 'domain' parameter.
1426 * linespec.c (iterate_over_all_matching_symtabs): Update.
1427 * dwarf2/read.c (struct dwarf2_gdb_index)
1428 <expand_symtabs_matching>: Add 'domain' parameter.
1429 (struct dwarf2_debug_names_index) <expand_symtabs_matching>: Add
1430 'domain' parameter.
1431 (dw2_expand_symtabs_matching)
1432 (dwarf2_gdb_index::expand_symtabs_matching)
1433 (dw2_debug_names_iterator)
1434 (dwarf2_debug_names_index::expand_symtabs_matching): Add 'domain'
1435 parameter.
1436
1437 2021-04-17 Tom Tromey <tom@tromey.com>
1438
1439 * symtab.c (global_symbol_searcher::expand_symtabs)
1440 (default_collect_symbol_completion_matches_break_on): Update.
1441 * symmisc.c (maintenance_expand_symtabs): Update.
1442 * symfile.h (expand_symtabs_matching): Add search_flags
1443 parameter.
1444 * symfile.c (expand_symtabs_matching): Add search_flags
1445 parameter.
1446 * symfile-debug.c (objfile::expand_symtabs_matching): Add
1447 search_flags parameter.
1448 * quick-symbol.h (struct quick_symbol_functions)
1449 <expand_symtabs_matching>: Add search_flags parameter.
1450 * python/py-symbol.c (gdbpy_lookup_static_symbols): Update.
1451 * psymtab.c (recursively_search_psymtabs)
1452 (psymbol_functions::expand_symtabs_matching): Add search_flags
1453 parameter.
1454 * psympriv.h (struct psymbol_functions) <expand_symtabs_matching>:
1455 Add search_flags parameter.
1456 * objfiles.h (struct objfile) <expand_symtabs_matching>: Add
1457 search_flags parameter.
1458 * linespec.c (iterate_over_all_matching_symtabs): Update.
1459 * dwarf2/read.c (struct dwarf2_gdb_index)
1460 <expand_symtabs_matching>: Add search_flags parameter.
1461 (struct dwarf2_debug_names_index) <expand_symtabs_matching>: Add
1462 search_flags parameter.
1463 (dw2_map_matching_symbols): Update.
1464 (dw2_expand_marked_cus, dw2_expand_symtabs_matching)
1465 (dwarf2_gdb_index::expand_symtabs_matching): Add search_flags
1466 parameter.
1467 (dw2_debug_names_iterator): Change block_index to search flags.
1468 <m_block_index>: Likewise.
1469 (dw2_debug_names_iterator::next)
1470 (dwarf2_debug_names_index::lookup_symbol)
1471 (dwarf2_debug_names_index::expand_symtabs_for_function)
1472 (dwarf2_debug_names_index::map_matching_symbols)
1473 (dwarf2_debug_names_index::map_matching_symbols): Update.
1474 (dwarf2_debug_names_index::expand_symtabs_matching): Add
1475 search_flags parameter.
1476 * ada-lang.c (ada_add_global_exceptions)
1477 (collect_symbol_completion_matches): Update.
1478
1479 2021-04-17 Tom Tromey <tom@tromey.com>
1480
1481 * symtab.c (default_collect_symbol_completion_matches_break_on):
1482 Update.
1483 * symfile.h (expand_symtabs_matching): Return bool.
1484 * symfile.c (expand_symtabs_matching): Return bool.
1485 * symfile-debug.c (objfile::expand_symtabs_matching): Return
1486 bool.
1487 * quick-symbol.h (expand_symtabs_exp_notify_ftype): Return bool.
1488 (struct quick_symbol_functions) <expand_symtabs_matching>: Return
1489 bool.
1490 * psymtab.c (psymbol_functions::expand_symtabs_matching): Return
1491 bool.
1492 * psympriv.h (struct psymbol_functions)
1493 <expand_symtabs_matching>: Return bool.
1494 * objfiles.h (struct objfile) <expand_symtabs_matching>: Return
1495 bool.
1496 * dwarf2/read.c (struct dwarf2_gdb_index)
1497 <expand_symtabs_matching>: Return bool.
1498 (struct dwarf2_debug_names_index) <expand_symtabs_matching>:
1499 Return bool.
1500 (dw2_expand_symtabs_matching_symbol): Return bool.
1501 (dw2_expand_symtabs_matching_one, dw2_expand_marked_cus)
1502 (dw2_expand_symtabs_matching)
1503 (dwarf2_gdb_index::expand_symtabs_matching)
1504 (dwarf2_debug_names_index::expand_symtabs_matching)
1505 (dwarf2_debug_names_index::expand_symtabs_matching): Return bool.
1506
1507 2021-04-17 Tom Tromey <tom@tromey.com>
1508
1509 * quick-symbol.h (enum block_search_flag_values): New.
1510 (block_search_flags): New enum flags type.
1511
1512 2021-04-16 Tom Tromey <tom@tromey.com>
1513
1514 * rust-parse.c: New file.
1515 * rust-exp.y: Remove.
1516 * Makefile.in (COMMON_SFILES): Add rust-parse.c.
1517 (SFILES): Remove rust-exp.y.
1518 (YYFILES, local-maintainer-clean): Remove rust-exp.c.
1519
1520 2021-04-16 Luis Machado <luis.machado@linaro.org>
1521
1522 * arch-utils.c (default_floatformat_for_type): Handle bfloat16.
1523
1524 2021-04-15 John Baldwin <jhb@FreeBSD.org>
1525
1526 * fbsd-nat.c (fbsd_lwp_debug_printf, fbsd_nat_debug_printf): New,
1527 use throughout file.
1528
1529 2021-04-15 Tom Tromey <tromey@adacore.com>
1530
1531 * ada-valprint.c (ada_value_print_array): Handle optimized-out
1532 arrays.
1533
1534 2021-04-15 Tom Tromey <tromey@adacore.com>
1535
1536 * printcmd.c (print_variable_and_value): Use
1537 common_val_print_checked.
1538
1539 2021-04-15 Tom Tromey <tromey@adacore.com>
1540
1541 * rust-exp.y (rust_parser::convert_ast_to_expression): Update.
1542 * parse.c (parser_state::push_symbol, parser_state::push_dollar):
1543 Update.
1544 * p-exp.y (variable): Update.
1545 * m2-exp.y (variable): Update.
1546 * go-exp.y (variable): Update.
1547 * expprint.c (dump_for_expression): New overload.
1548 * expop.h (check_objfile): New overload.
1549 (check_constant): New overload.
1550 (class var_value_operation): Use block_symbol.
1551 <get_symbol>: Rewrite.
1552 * eval.c (var_value_operation::evaluate)
1553 (var_value_operation::evaluate_funcall)
1554 (var_value_operation::evaluate_for_address)
1555 (var_value_operation::evaluate_for_address)
1556 (var_value_operation::evaluate_with_coercion)
1557 (var_value_operation::evaluate_for_sizeof)
1558 (var_value_operation::evaluate_for_cast): Update.
1559 * d-exp.y (PrimaryExpression): Update.
1560 * c-exp.y (variable): Update.
1561 * ax-gdb.c (var_value_operation::do_generate_ax): Update.
1562 * ada-lang.c (ada_var_value_operation::evaluate_for_cast)
1563 (ada_var_value_operation::evaluate)
1564 (ada_var_value_operation::resolve)
1565 (ada_funcall_operation::resolve): Update.
1566 * ada-exp.y (write_var_from_sym, write_object_renaming)
1567 (write_ambiguous_var, write_var_or_type, write_name_assoc)
1568 (maybe_overload): Update.
1569 * ada-exp.h (class ada_var_value_operation) <get_block>: Rewrite.
1570
1571 2021-04-15 Tom Tromey <tom@tromey.com>
1572 Andrew Burgess <andrew.burgess@embecosm.com>
1573
1574 * NEWS: Add entry.
1575 * main.c (captured_main_1): Call check_quiet_mode.
1576 * top.c (startup_quiet): New global.
1577 (check_quiet_mode): New function.
1578 (show_startup_quiet): New function.
1579 (init_main): Register new command.
1580 * top.h (check_quiet_mode): Declare.
1581
1582 2021-04-15 Andrew Burgess <andrew.burgess@embecosm.com>
1583
1584 PR cli/25956
1585 * NEWS: Mention new early init files and command line options.
1586 * config.in: Regenerate.
1587 * configure: Regenerate.
1588 * configure.ac: Define GDBEARLYINIT.
1589 * main.c (get_earlyinit_files): New function.
1590 (enum cmdarg_kind): Add CMDARG_EARLYINIT_FILE and
1591 CMDARG_EARLYINIT_COMMAND.
1592 (captured_main_1): Add support for new command line flags, and for
1593 processing startup files.
1594 (print_gdb_help): Include startup files in the output.
1595
1596 2021-04-15 Andrew Burgess <andrew.burgess@embecosm.com>
1597
1598 * main.c (relocate_gdbinit_path_maybe_in_datadir): Rename to...
1599 (relocate_file_path_maybe_in_datadir): ...this.
1600 (class gdb_initfile_finder): New class.
1601 (get_init_files): Now uses gdb_initfile_finder.
1602 (print_gdb_help): Print 'None found' when there are no init files.
1603
1604 2021-04-14 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
1605
1606 * dwarf2/read.c (inherit_abstract_dies): Keep a reference to the
1607 corresponding child of the abstract DIE when iterating the
1608 children of the concrete DIE.
1609
1610 2021-04-13 Tom de Vries <tdevries@suse.de>
1611
1612 * ui-style.c (read_semi_number, extended_color): Change idx parameter
1613 type to regoff_t *.
1614
1615 2021-04-13 Luis Machado <luis.machado@linaro.org>
1616
1617 * rs6000-tdep.c (ppc_displaced_step_fixup): Use %s to print
1618 hex values.
1619
1620 2021-04-12 Will Schmidt <will_schmidt@vnet.ibm.com>
1621
1622 * rs6000-tdep.c: Add support for single-stepping of
1623 prefixed instructions.
1624
1625 2021-04-12 Will Schmidt <will_schmidt@vnet.ibm.com>
1626
1627 PR gdb/27525
1628 * gdb/rs6000-tdep.c (ppc_displaced_step_fixup): Update to
1629 handle the addpcis/lnia instruction.
1630
1631 2021-04-05 Will Schmidt <will_schmidt@vnet.ibm.com>
1632
1633 * MAINTAINERS (Write After Approval): Add myself.
1634
1635 2021-4-12 Carl Love <cel@us.ibm.com>
1636
1637 * rs6000-tdep.c (rs6000_builtin_type_vec128): Add t_float128 variable.
1638 (rs6000_builtin_type_vec128): Add append_composite_type_field for
1639 float128.
1640
1641 2021-04-12 Simon Marchi <simon.marchi@polymtl.ca>
1642
1643 * nat/windows-nat.c: Remove all code guarded by _WIN32_WCE.
1644 * nat/windows-nat.h: Likewise.
1645
1646 2021-04-10 Eli Zaretskii <eliz@gnu.org>
1647
1648 * windows-nat.c (windows_nat::handle_load_dll): Call
1649 windows_add_dll if get_image_name failed to glean the name of the
1650 DLL by using the lpImageName pointer.
1651 (windows_add_all_dlls): Now a thin wrapper around windows_add_dll.
1652 (windows_add_dll): Now does what windows_add_all_dlls did before,
1653 but also accepts an argument LOAD_ADDR, which, if non-NULL,
1654 specifies the address where the DLL was loaded into the inferior,
1655 and looks for the single DLL loaded at that address.
1656
1657 2021-04-09 Luis Machado <luis.machado@linaro.org>
1658
1659 * nat/aarch64-mte-linux-ptrace.c: Update include file order.
1660
1661 2021-04-08 Dominique Quatravaux <dominique.quatravaux@epfl.ch>
1662
1663 * darwin-nat.c (darwin_nat_target::resume): Remove status
1664 variable.
1665
1666 2021-04-08 Felix Willgerodt <felix.willgerodt@intel.com>
1667
1668 * i386-tdep.c (i386_skip_prologue): Use symbol table to find the
1669 prologue end for Intel compilers.
1670 * amd64-tdep.c (amd64_skip_prologue): Likewise.
1671 * producer.c (producer_is_icc_ge_19): New function.
1672 * producer.h (producer_is_icc_ge_19): New declaration.
1673
1674 2021-04-08 Felix Willgerodt <felix.willgerodt@intel.com>
1675
1676 * producer.c: (producer_is_icc): Update for new version scheme.
1677 (producer_parsing_tests): Update names and expected results.
1678 * producer.h: (producer_is_icc): Update comment accordingly.
1679
1680 2021-04-07 Simon Marchi <simon.marchi@polymtl.ca>
1681
1682 * target.h (struct target_ops) <follow_fork>: Return void.
1683 (target_follow_fork): Likewise.
1684 * target.c (default_follow_fork): Likewise.
1685 (target_follow_fork): Likewise.
1686 * infrun.c (follow_fork_inferior): Adjust.
1687 * fbsd-nat.h (class fbsd_nat_target) <follow_fork>: Return void.
1688 * fbsd-nat.c (fbsd_nat_target:::follow_fork): Likewise.
1689 * linux-nat.h (class linux_nat_target) <follow_fork>: Likewise.
1690 * linux-nat.c (linux_nat_target::follow_fork): Return void.
1691 * obsd-nat.h (class obsd_nat_target) <follow_fork>: Return void.
1692 * obsd-nat.c (obsd_nat_target::follow_fork): Likewise.
1693 * remote.c (class remote_target) <follow_fork>: Likewise.
1694 (remote_target::follow_fork): Likewise.
1695 * target-delegates.c: Re-generate.
1696
1697 2021-04-07 Weimin Pan <weimin.pan@oracle.com>
1698
1699 * ctfread.c (fetch_tid_type): New function, use throughout file.
1700 (read_forward_type): New function.
1701 (read_type_record): Call read_forward_type.
1702
1703 2021-04-07 Andrew Burgess <andrew.burgess@embecosm.com>
1704
1705 * f-exp.h (class fortran_structop_operation): New class.
1706 * f-exp.y (exp): Create fortran_structop_operation instead of the
1707 generic structop_operation.
1708 * f-lang.c (fortran_undetermined::evaluate): Re-evaluate
1709 expression as EVAL_NORMAL if the result type was dynamic so we can
1710 extract the actual array bounds.
1711 (fortran_structop_operation::evaluate): New function.
1712
1713 2021-04-07 Andrew Burgess <andrew.burgess@embecosm.com>
1714
1715 * eval.c (evaluate_subexp_standard): Remove
1716 EVAL_AVOID_SIDE_EFFECTS handling from STRUCTOP_STRUCT and
1717 STRUCTOP_PTR.
1718
1719 2021-04-07 Andrew Burgess <andrew.burgess@embecosm.com>
1720
1721 * valops.c (value_cast): Call value_deeply_equal before performing
1722 any cast.
1723
1724 2021-04-07 Andrew Burgess <andrew.burgess@embecosm.com>
1725
1726 * gdbtypes.c (types_equal): Move pointer equality check earlier in
1727 the function.
1728
1729 2021-04-07 Caroline Tice <cmtice@google.com>
1730
1731 * dwarf2/read.c (try_open_dwop_file): Add path for the binary to
1732 the search paths used resolve relative location of .dwo file.
1733
1734 2021-04-07 Andrew Burgess <andrew.burgess@embecosm.com>
1735
1736 * dwarf2/section.c (dwarf2_section_info::get_bfd_owner): Add an
1737 assert.
1738 (dwarf2_section_info::get_file_name): Add an assert.
1739 (dwarf2_section_info::read_string): Display a minimal, sane error
1740 when the dwarf2_section_info is not associated with a bfd section.
1741
1742 2021-04-07 Andrew Burgess <andrew.burgess@embecosm.com>
1743
1744 * top.c (staged_gdb_datadir): Update comment.
1745 (set_gdb_datadir): Copy the value of gdb_datadir back into
1746 staged_datadir.
1747 (init_main): Initialise staged_gdb_datadir.
1748
1749 2021-04-06 Tom de Vries <tdevries@suse.de>
1750
1751 PR breakpoints/25884
1752 * infcmd.c (prepare_one_step): Using inline frame info to narrow
1753 stepping range.
1754
1755 2021-04-06 Tom de Vries <tdevries@suse.de>
1756
1757 PR tui/27680
1758 * tui/tui-disasm.c (len_without_escapes): Pass ptr pointing at escape
1759 to style.parse.
1760
1761 2021-04-04 Simon Marchi <simon.marchi@polymtl.ca>
1762
1763 * avr-tdep.c (avr_frame_unwind_cache): Use
1764 trad_frame_saved_reg::is_addr.
1765
1766 2021-04-02 Simon Marchi <simon.marchi@polymtl.ca>
1767
1768 * objfiles.c (get_objfile_bfd_data): Remove objfile parameter,
1769 adjust callers.
1770
1771 2021-04-02 Simon Marchi <simon.marchi@polymtl.ca>
1772
1773 * psympriv.h (struct partial_symtab) <partial_symtab>: Change
1774 objfile parameter for objfile_per_bfd_storage, adjust callers.
1775 (struct standard_psymtab) <standard_psymtab>: Likewise.
1776 (struct legacy_psymtab) <legacy_psymtab>: Likewise.
1777 * psymtab.c (partial_symtab::partial_symtab): Likewise.
1778 * ctfread.c (struct ctf_psymtab): Likewise.
1779 * dwarf2/read.h (struct dwarf2_psymtab): Likewise.
1780 * dwarf2/read.c (struct dwarf2_include_psymtab): Likewise.
1781 (dwarf2_create_include_psymtab): Likewise.
1782 * objfiles.h (struct objfile_per_bfd_storage)
1783 <objfile_per_bfd_storage>: Add bfd parameter, adjust callers.
1784 <get_bfd>: New method.
1785 <m_bfd>: New field.
1786 * objfiles.c (get_objfile_bfd_data): Adjust.
1787
1788 2021-04-02 Simon Marchi <simon.marchi@polymtl.ca>
1789
1790 * psymtab.c (partial_symtab::partial_symtab): Change
1791 last_objfile_name to be an std::string.
1792 * symfile.c (allocate_symtab): Likewise.
1793
1794 2021-04-02 Simon Marchi <simon.marchi@polymtl.ca>
1795
1796 * objfiles.h (struct objfile_per_bfd_storage) <intern>: New
1797 methods.
1798 (struct objfile) <intern>: Use
1799 objfile::objfile_per_bfd_storage::intern.
1800
1801 2021-04-01 Simon Marchi <simon.marchi@efficios.com>
1802
1803 * gdbtypes.h (TYPE_FLAG_ENUM): Remove, replace all uses
1804 with type::is_flag_enum.
1805
1806 2021-04-01 Simon Marchi <simon.marchi@efficios.com>
1807
1808 * gdbtypes.h (struct type) <is_flag_enum,
1809 set_is_flag_enum>: New methods.
1810 (TYPE_FLAG_ENUM): Use type::is_flag_enum, change all
1811 write call sites to use type::set_is_flag_enum.
1812
1813 2021-04-01 Simon Marchi <simon.marchi@efficios.com>
1814
1815 * gdbtypes.h (TYPE_DECLARED_CLASS): Remove, replace all uses
1816 with type::is_declared_class.
1817
1818 2021-04-01 Simon Marchi <simon.marchi@efficios.com>
1819
1820 * gdbtypes.h (struct type) <is_declared_class,
1821 set_is_declared_class>: New methods.
1822 (TYPE_DECLARED_CLASS): Use type::is_declared_class, change all
1823 write call sites to use type::set_is_declared_class.
1824
1825 2021-02-28 Boris Staletic <boris.staletic@gmail.com>
1826
1827 * gdb/python/lib/gdb/__init__.py: Use importlib on python 3.4+
1828 to avoid deprecation warnings.
1829
1830 2021-04-01 Martin Liska <mliska@suse.cz>
1831
1832 * cp-name-parser.y: Use startswith instead of strncmp.
1833 * m2-exp.y: Likewise.
1834 * macroexp.c (substitute_args): Likewise.
1835 * mi/mi-main.c (command_notifies_uscc_observer): Likewise.
1836 * rust-exp.y: Likewise.
1837
1838 2021-03-31 Tom Tromey <tom@tromey.com>
1839
1840 * dwarf2/read.c (dwarf2_gdb_index::map_matching_symbols): Merge
1841 with dw2_map_matching_symbols.
1842 (dwarf2_gdb_index::expand_symtabs_matching): Merge with
1843 dw2_expand_symtabs_matching.
1844
1845 2021-03-31 Tom Tromey <tromey@adacore.com>
1846
1847 * dwarf2/stringify.h: Fix typo.
1848
1849 2021-03-30 Simon Marchi <simon.marchi@polymtl.ca>
1850
1851 PR gdb/27541
1852 * dwarf2/read.c (dwarf2_has_info): Don't share dwarf2_per_bfd
1853 with objfiles using READNOW.
1854
1855 2021-03-29 Tom Tromey <tromey@adacore.com>
1856
1857 * top.c (check_frame_language_change): Update.
1858 * language.c (language_info): Remove parameter.
1859 * language.h (language_info): Remove parameter.
1860
1861 2021-03-29 Luis Machado <luis.machado@linaro.org>
1862
1863 * compile/compile.c (get_args): Don't add empty argv entries.
1864
1865 2021-03-29 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1866
1867 gdb:
1868 * procfs.c (procfs_target::attach): Define inf.
1869 Use it.
1870 (procfs_target::create_inferior): Likewise.
1871
1872 2021-03-28 Tom Tromey <tom@tromey.com>
1873
1874 * elfread.c (can_lazily_read_symbols): Move to dwarf2/read.c.
1875 (elf_symfile_read): Simplify.
1876 * dwarf2/read.c (struct lazy_dwarf_reader): Move from elfread.c.
1877 (make_lazy_dwarf_reader): New function.
1878 (make_dwarf_gdb_index, make_dwarf_debug_names): Now static.
1879 (dwarf2_initialize_objfile): Return void. Remove index_kind
1880 parameter. Push on 'qf' list.
1881 * dwarf2/public.h (dwarf2_initialize_objfile): Change return
1882 type. Remove 'index_kind' parameter.
1883 (make_dwarf_gdb_index, make_dwarf_debug_names): Don't declare.
1884
1885 2021-03-27 Tom Tromey <tom@tromey.com>
1886
1887 * elfread.c (elf_sym_fns_lazy_psyms): Don't declare.
1888
1889 2021-03-27 Tom Tromey <tom@tromey.com>
1890
1891 * elfread.c (elf_symfile_read): Don't clear 'qf'.
1892
1893 2021-03-26 Lancelot Six <lsix@lancelotsix.com>
1894
1895 * contrib/gdb-add-index.sh: Avoid variable shadowing and get
1896 rid of 'local'.
1897
1898 2021-03-26 Tom Tromey <tom@tromey.com>
1899
1900 * symtab.c (struct output_source_filename_data): Add 'output'
1901 method and operator().
1902 (output_source_filename_data::output): Rename from
1903 output_source_filename.
1904 (output_partial_symbol_filename): Remove.
1905 (info_sources_command): Update.
1906 (struct add_partial_filename_data): Add operator().
1907 (add_partial_filename_data::operator()): Rename from
1908 maybe_add_partial_symtab_filename.
1909 (make_source_files_completion_list): Update.
1910 * symfile.c (quick_symbol_functions): Update.
1911 * symfile-debug.c (objfile::map_symbol_filenames): Update.
1912 * quick-symbol.h (symbol_filename_ftype): Change type of 'fun' and
1913 'need_fullname'. Remove 'data' parameter.
1914 (struct quick_symbol_functions) <map_symbol_filenames>: Likewise.
1915 * psymtab.c (psymbol_functions::map_symbol_filenames): Update.
1916 * psympriv.h (struct psymbol_functions) <map_symbol_filenames>:
1917 Change type of 'fun' and 'need_fullname'. Remove 'data'
1918 parameter.
1919 * objfiles.h (struct objfile) <map_symbol_filenames>: Change type
1920 of 'fun' and 'need_fullname'. Remove 'data' parameter.
1921 * mi/mi-cmd-file.c (print_partial_file_name): Remove 'ignore'
1922 parameter.
1923 (mi_cmd_file_list_exec_source_files): Update.
1924 * dwarf2/read.c
1925 (dwarf2_base_index_functions::map_symbol_filenames): Update.
1926
1927 2021-03-26 Tom Tromey <tom@tromey.com>
1928
1929 * ada-lang.c (struct match_data): Add operator().
1930 (match_data::operator()): Rename from aux_add_nonlocal_symbols.
1931 (callback): Remove 'callback'.
1932
1933 2021-03-26 Tom Tromey <tom@tromey.com>
1934
1935 * psymtab.c (psymbol_functions::expand_symtabs_matching): Only
1936 call make_ignore_params once.
1937
1938 2021-03-26 Tom Tromey <tom@tromey.com>
1939
1940 * psymtab.c (psymbol_functions::expand_symtabs_matching): Remove
1941 "user" check.
1942
1943 2021-03-26 Simon Marchi <simon.marchi@efficios.com>
1944 Pedro Alves <pedro@palves.net>
1945
1946 * async-event.c: Include "infrun.h".
1947 (async_event_handler_marked): New.
1948 * async-event.h (async_event_handler_marked): Declare.
1949 * infrun.c (maybe_set_commit_resumed_all_targets): Switch to
1950 inferior before calling target method. Don't commit-resumed if
1951 target_has_pending_events is true.
1952 * remote.c (remote_target::has_pending_events): New.
1953 * target-delegates.c: Regenerate.
1954 * target.c (target_has_pending_events): New.
1955 * target.h (target_ops::has_pending_events): New target method.
1956 (target_has_pending_events): New.
1957
1958 2021-03-26 Simon Marchi <simon.marchi@efficios.com>
1959 Pedro Alves <pedro@palves.net>
1960
1961 * infcmd.c (run_command_1, attach_command, detach_command)
1962 (interrupt_target_1): Use scoped_disable_commit_resumed.
1963 * infrun.c (do_target_resume): Remove
1964 target_commit_resume call.
1965 (commit_resume_all_targets): Remove.
1966 (maybe_set_commit_resumed_all_targets): New.
1967 (maybe_call_commit_resumed_all_targets): New.
1968 (enable_commit_resumed): New.
1969 (scoped_disable_commit_resumed::scoped_disable_commit_resumed)
1970 (scoped_disable_commit_resumed::~scoped_disable_commit_resumed)
1971 (scoped_disable_commit_resumed::reset)
1972 (scoped_disable_commit_resumed::reset_and_commit)
1973 (scoped_enable_commit_resumed::scoped_enable_commit_resumed)
1974 (scoped_enable_commit_resumed::~scoped_enable_commit_resumed):
1975 New.
1976 (proceed): Use scoped_disable_commit_resumed and
1977 maybe_call_commit_resumed_all_targets.
1978 (fetch_inferior_event): Use scoped_disable_commit_resumed.
1979 * infrun.h (struct scoped_disable_commit_resumed): New.
1980 (maybe_call_commit_resumed_all_process_targets): New.
1981 (struct scoped_enable_commit_resumed): New.
1982 * mi/mi-main.c (exec_continue): Use scoped_disable_commit_resumed.
1983 * process-stratum-target.h (class process_stratum_target):
1984 <commit_resumed_state>: New.
1985 * record-full.c (record_full_wait_1): Change commit_resumed_state
1986 around calling commit_resumed.
1987 * remote.c (class remote_target) <commit_resume>: Rename to...
1988 <commit_resumed>: ... this.
1989 (struct stop_reply): Move up.
1990 (remote_target::commit_resume): Rename to...
1991 (remote_target::commit_resumed): ... this. Check if there is any
1992 thread pending vCont resume.
1993 (remote_target::remote_stop_ns): Generate stop replies for resumed
1994 but pending vCont threads.
1995 (remote_target::wait_ns): Add gdb_assert.
1996 * target-delegates.c: Regenerate.
1997 * target.c (target_wait, target_resume): Assert that the current
1998 process_stratum target isn't in commit-resumed state.
1999 (defer_target_commit_resume): Remove.
2000 (target_commit_resume): Remove.
2001 (target_commit_resumed): New.
2002 (make_scoped_defer_target_commit_resume): Remove.
2003 (target_stop): Assert that the current process_stratum target
2004 isn't in commit-resumed state.
2005 * target.h (struct target_ops) <commit_resume>: Rename to ...
2006 <commit_resumed>: ... this.
2007 (target_commit_resume): Remove.
2008 (target_commit_resumed): New.
2009 (make_scoped_defer_target_commit_resume): Remove.
2010 * top.c (wait_sync_command_done): Use
2011 scoped_enable_commit_resumed.
2012
2013 2021-03-26 Pedro Alves <pedro@palves.net>
2014
2015 * target.c (target_always_non_stop_p): Also check whether the
2016 target can async.
2017
2018 2021-03-26 Tom Tromey <tom@tromey.com>
2019
2020 * dwarf2/read.c (dwarf2_read_debug_names)
2021 (dwarf2_build_psymtabs_hard, create_addrmap_from_aranges)
2022 (dw2_debug_names_iterator::next, create_type_unit_group):
2023 Simplify.
2024
2025 2021-03-25 Pedro Alves <pedro@palves.net>
2026
2027 * gdb.server/bkpt-other-inferior.exp: Only enable remote output
2028 around setting the breakpoint.
2029
2030 2021-03-25 Pedro Alves <pedro@palves.net>
2031
2032 * remote.c
2033 (remote_target::check_pending_events_prevent_wildcard_vcont):
2034 Check whether the event's ptid is not null_ptid before looking up
2035 the corresponding inferior.
2036
2037 2021-03-24 Changbin Du <changbin.du@gmail.com>
2038
2039 * riscv-tdep.c (riscv_breakpoint_kind_from_pc): Remove call to
2040 read_code.
2041
2042 2021-03-24 Simon Marchi <simon.marchi@polymtl.ca>
2043
2044 * target.h (current_top_target): Remove, make callers use the
2045 current inferior instead.
2046 * target.c (current_top_target): Remove.
2047
2048 2021-03-24 Simon Marchi <simon.marchi@polymtl.ca>
2049
2050 * target.h (target_shortname): Change to function declaration.
2051 (target_longname): Likewise.
2052 (target_attach_no_wait): Likewise.
2053 (target_post_attach): Likewise.
2054 (target_prepare_to_store): Likewise.
2055 (target_supports_enable_disable_tracepoint): Likewise.
2056 (target_supports_string_tracing): Likewise.
2057 (target_supports_evaluation_of_breakpoint_conditions): Likewise.
2058 (target_supports_dumpcore): Likewise.
2059 (target_dumpcore): Likewise.
2060 (target_can_run_breakpoint_commands): Likewise.
2061 (target_files_info): Likewise.
2062 (target_post_startup_inferior): Likewise.
2063 (target_insert_fork_catchpoint): Likewise.
2064 (target_remove_fork_catchpoint): Likewise.
2065 (target_insert_vfork_catchpoint): Likewise.
2066 (target_remove_vfork_catchpoint): Likewise.
2067 (target_insert_exec_catchpoint): Likewise.
2068 (target_remove_exec_catchpoint): Likewise.
2069 (target_set_syscall_catchpoint): Likewise.
2070 (target_rcmd): Likewise.
2071 (target_can_lock_scheduler): Likewise.
2072 (target_can_async_p): Likewise.
2073 (target_is_async_p): Likewise.
2074 (target_execution_direction): Likewise.
2075 (target_extra_thread_info): Likewise.
2076 (target_pid_to_exec_file): Likewise.
2077 (target_thread_architecture): Likewise.
2078 (target_find_memory_regions): Likewise.
2079 (target_make_corefile_notes): Likewise.
2080 (target_get_bookmark): Likewise.
2081 (target_goto_bookmark): Likewise.
2082 (target_stopped_by_watchpoint): Likewise.
2083 (target_stopped_by_sw_breakpoint): Likewise.
2084 (target_supports_stopped_by_sw_breakpoint): Likewise.
2085 (target_stopped_by_hw_breakpoint): Likewise.
2086 (target_supports_stopped_by_hw_breakpoint): Likewise.
2087 (target_have_steppable_watchpoint): Likewise.
2088 (target_can_use_hardware_watchpoint): Likewise.
2089 (target_region_ok_for_hw_watchpoint): Likewise.
2090 (target_can_do_single_step): Likewise.
2091 (target_insert_watchpoint): Likewise.
2092 (target_remove_watchpoint): Likewise.
2093 (target_insert_hw_breakpoint): Likewise.
2094 (target_remove_hw_breakpoint): Likewise.
2095 (target_can_accel_watchpoint_condition): Likewise.
2096 (target_can_execute_reverse): Likewise.
2097 (target_get_ada_task_ptid): Likewise.
2098 (target_filesystem_is_local): Likewise.
2099 (target_trace_init): Likewise.
2100 (target_download_tracepoint): Likewise.
2101 (target_can_download_tracepoint): Likewise.
2102 (target_download_trace_state_variable): Likewise.
2103 (target_enable_tracepoint): Likewise.
2104 (target_disable_tracepoint): Likewise.
2105 (target_trace_start): Likewise.
2106 (target_trace_set_readonly_regions): Likewise.
2107 (target_get_trace_status): Likewise.
2108 (target_get_tracepoint_status): Likewise.
2109 (target_trace_stop): Likewise.
2110 (target_trace_find): Likewise.
2111 (target_get_trace_state_variable_value): Likewise.
2112 (target_save_trace_data): Likewise.
2113 (target_upload_tracepoints): Likewise.
2114 (target_upload_trace_state_variables): Likewise.
2115 (target_get_raw_trace_data): Likewise.
2116 (target_get_min_fast_tracepoint_insn_len): Likewise.
2117 (target_set_disconnected_tracing): Likewise.
2118 (target_set_circular_trace_buffer): Likewise.
2119 (target_set_trace_buffer_size): Likewise.
2120 (target_set_trace_notes): Likewise.
2121 (target_get_tib_address): Likewise.
2122 (target_set_permissions): Likewise.
2123 (target_static_tracepoint_marker_at): Likewise.
2124 (target_static_tracepoint_markers_by_strid): Likewise.
2125 (target_traceframe_info): Likewise.
2126 (target_use_agent): Likewise.
2127 (target_can_use_agent): Likewise.
2128 (target_augmented_libraries_svr4_read): Likewise.
2129 (target_log_command): Likewise.
2130 * target.c (target_shortname): New.
2131 (target_longname): New.
2132 (target_attach_no_wait): New.
2133 (target_post_attach): New.
2134 (target_prepare_to_store): New.
2135 (target_supports_enable_disable_tracepoint): New.
2136 (target_supports_string_tracing): New.
2137 (target_supports_evaluation_of_breakpoint_conditions): New.
2138 (target_supports_dumpcore): New.
2139 (target_dumpcore): New.
2140 (target_can_run_breakpoint_commands): New.
2141 (target_files_info): New.
2142 (target_post_startup_inferior): New.
2143 (target_insert_fork_catchpoint): New.
2144 (target_remove_fork_catchpoint): New.
2145 (target_insert_vfork_catchpoint): New.
2146 (target_remove_vfork_catchpoint): New.
2147 (target_insert_exec_catchpoint): New.
2148 (target_remove_exec_catchpoint): New.
2149 (target_set_syscall_catchpoint): New.
2150 (target_rcmd): New.
2151 (target_can_lock_scheduler): New.
2152 (target_can_async_p): New.
2153 (target_is_async_p): New.
2154 (target_execution_direction): New.
2155 (target_extra_thread_info): New.
2156 (target_pid_to_exec_file): New.
2157 (target_thread_architecture): New.
2158 (target_find_memory_regions): New.
2159 (target_make_corefile_notes): New.
2160 (target_get_bookmark): New.
2161 (target_goto_bookmark): New.
2162 (target_stopped_by_watchpoint): New.
2163 (target_stopped_by_sw_breakpoint): New.
2164 (target_supports_stopped_by_sw_breakpoint): New.
2165 (target_stopped_by_hw_breakpoint): New.
2166 (target_supports_stopped_by_hw_breakpoint): New.
2167 (target_have_steppable_watchpoint): New.
2168 (target_can_use_hardware_watchpoint): New.
2169 (target_region_ok_for_hw_watchpoint): New.
2170 (target_can_do_single_step): New.
2171 (target_insert_watchpoint): New.
2172 (target_remove_watchpoint): New.
2173 (target_insert_hw_breakpoint): New.
2174 (target_remove_hw_breakpoint): New.
2175 (target_can_accel_watchpoint_condition): New.
2176 (target_can_execute_reverse): New.
2177 (target_get_ada_task_ptid): New.
2178 (target_filesystem_is_local): New.
2179 (target_trace_init): New.
2180 (target_download_tracepoint): New.
2181 (target_can_download_tracepoint): New.
2182 (target_download_trace_state_variable): New.
2183 (target_enable_tracepoint): New.
2184 (target_disable_tracepoint): New.
2185 (target_trace_start): New.
2186 (target_trace_set_readonly_regions): New.
2187 (target_get_trace_status): New.
2188 (target_get_tracepoint_status): New.
2189 (target_trace_stop): New.
2190 (target_trace_find): New.
2191 (target_get_trace_state_variable_value): New.
2192 (target_save_trace_data): New.
2193 (target_upload_tracepoints): New.
2194 (target_upload_trace_state_variables): New.
2195 (target_get_raw_trace_data): New.
2196 (target_get_min_fast_tracepoint_insn_len): New.
2197 (target_set_disconnected_tracing): New.
2198 (target_set_circular_trace_buffer): New.
2199 (target_set_trace_buffer_size): New.
2200 (target_set_trace_notes): New.
2201 (target_get_tib_address): New.
2202 (target_set_permissions): New.
2203 (target_static_tracepoint_marker_at): New.
2204 (target_static_tracepoint_markers_by_strid): New.
2205 (target_traceframe_info): New.
2206 (target_use_agent): New.
2207 (target_can_use_agent): New.
2208 (target_augmented_libraries_svr4_read): New.
2209 (target_log_command): New.
2210 * bfin-tdep.c (bfin_sw_breakpoint_from_kind): Adjust.
2211 * infrun.c (set_schedlock_func): Adjust.
2212 * mi/mi-main.c (exec_reverse_continue): Adjust.
2213 * reverse.c (exec_reverse_once): Adjust.
2214 * sh-tdep.c (sh_sw_breakpoint_from_kind): Adjust.
2215 * tui/tui-stack.c (tui_locator_window::make_status_line): Adjust.
2216 * remote-sim.c (gdbsim_target::detach): Adjust.
2217 (gdbsim_target::files_info): Adjust.
2218
2219 2021-03-24 Tom Tromey <tom@tromey.com>
2220
2221 * dwarf2/read.c (dw2_map_matching_symbols): Update.
2222 (dw2_expand_symtabs_matching_symbol): Remove 'kind' parameter.
2223 (check_match, dw2_expand_symtabs_matching)
2224 (dwarf2_debug_names_index::map_matching_symbols)
2225 (dwarf2_debug_names_index::expand_symtabs_matching): Update.
2226
2227 2021-03-24 Keith Seitz <keiths@redhat.com>
2228
2229 * compile/compile-cplus-types.c
2230 (compile_cplus_convert_struct_or_union): Fix TYPE_DECLARED_CLASS
2231 thinko.
2232
2233 2021-03-24 Simon Marchi <simon.marchi@polymtl.ca>
2234
2235 * gdbarch.sh (gdbarch_data_registry): Make static.
2236 * gdbarch.c: Re-generate.
2237
2238 2021-03-24 Luis Machado <luis.machado@linaro.org>
2239
2240 * NEWS: Mention memory tagging changes.
2241
2242 2021-03-24 Luis Machado <luis.machado@linaro.org>
2243
2244 * printcmd.c (decode_format): Handle the 'm' modifier.
2245 (do_examine): Display allocation tags when required/supported.
2246 (should_validate_memtags): New function.
2247 (print_command_1): Display memory tag mismatches.
2248 * valprint.c (show_memory_tag_violations): New function.
2249 (value_print_option_defs): Add new option "memory-tag-violations".
2250 (user_print_options) <memory_tag_violations>: Initialize to 1.
2251 * valprint.h (struct format_data) <print_tags>: New field.
2252 (value_print_options) <memory_tag_violations>: New field.
2253
2254 2021-03-24 Luis Machado <luis.machado@linaro.org>
2255
2256 * printcmd.c: Include gdbsupport/rsp-low.h.
2257 (memory_tag_list): New static global.
2258 (process_print_command_args): Factored out of
2259 print_command_1.
2260 (print_command_1): Use process_print_command_args.
2261 (show_addr_not_tagged, show_memory_tagging_unsupported)
2262 (memory_tag_command, memory_tag_print_tag_command)
2263 (memory_tag_print_logical_tag_command)
2264 (memory_tag_print_allocation_tag_command, parse_with_logical_tag_input)
2265 (memory_tag_with_logical_tag_command, parse_set_allocation_tag_input)
2266 (memory_tag_set_allocation_tag_command, memory_tag_check_command): New
2267 functions.
2268 (_initialize_printcmd): Add "memory-tag" prefix and subcommands.
2269
2270 2021-03-24 Luis Machado <luis.machado@linaro.org>
2271
2272 * aarch64-linux-tdep.c
2273 (aarch64_linux_iterate_over_regset_sections): Handle MTE register set.
2274 * aarch64-linux-tdep.h (AARCH64_LINUX_SIZEOF_MTE_REGSET): Define.
2275
2276 2021-03-24 Luis Machado <luis.machado@linaro.org>
2277
2278 * aarch64-linux-tdep.c
2279 (aarch64_linux_report_signal_info): New function.
2280 (aarch64_linux_init_abi): Register
2281 aarch64_linux_report_signal_info as the report_signal_info hook.
2282 * arch/aarch64-linux.h (SEGV_MTEAERR): Define.
2283 (SEGV_MTESERR): Define.
2284
2285 2021-03-24 Luis Machado <luis.machado@linaro.org>
2286
2287 * aarch64-linux-tdep.c: Include gdbsupport/selftest.h.
2288 (aarch64_linux_ltag_tests): New function.
2289 (_initialize_aarch64_linux_tdep): Register aarch64_linux_ltag_tests.
2290
2291 2021-03-24 Luis Machado <luis.machado@linaro.org>
2292
2293 * aarch64-linux-tdep.c: Include target.h, arch-utils.h, value.h.
2294 (aarch64_mte_get_atag, aarch64_linux_tagged_address_p)
2295 (aarch64_linux_memtag_mismatch_p, aarch64_linux_set_memtags)
2296 (aarch64_linux_get_memtag, aarch64_linux_memtag_to_string): New
2297 functions.
2298 (aarch64_linux_init_abi): Initialize MTE-related gdbarch hooks.
2299 * arch/aarch64-mte-linux.c (aarch64_mte_make_ltag_bits)
2300 (aarch64_mte_make_ltag, aarch64_linux_set_ltag)
2301 (aarch64_linux_get_ltag): New functions.
2302 * arch/aarch64-mte-linux.h (AARCH64_MTE_LOGICAL_TAG_START_BIT)
2303 (AARCH64_MTE_LOGICAL_MAX_VALUE): Define.
2304 (aarch64_mte_make_ltag_bits, aarch64_mte_make_ltag)
2305 (aarch64_mte_set_ltag, aarch64_mte_get_ltag): New prototypes.
2306
2307 2021-03-24 Luis Machado <luis.machado@linaro.org>
2308
2309 * linux-tdep.c (struct smaps_vmflags) <memory_tagging>: New flag
2310 bit.
2311 (struct smaps_data): New struct.
2312 (decode_vmflags): Handle the 'mt' flag.
2313 (parse_smaps_data): New function, refactored from
2314 linux_find_memory_regions_full.
2315 (linux_address_in_memtag_page): New function.
2316 (linux_find_memory_regions_full): Refactor into parse_smaps_data.
2317 * linux-tdep.h (linux_address_in_memtag_page): New prototype.
2318
2319 2021-03-24 Luis Machado <luis.machado@linaro.org>
2320
2321 * linux-tdep.c (linux_find_memory_regions_full): Use std::string
2322 instead of char arrays.
2323
2324 2021-03-24 Luis Machado <luis.machado@linaro.org>
2325
2326 * Makefile.in (ALL_64_TARGET_OBS): Add arch/aarch64-mte-linux.o.
2327 (HFILES_NO_SRCDIR): Add arch/aarch64-mte-linux.h and
2328 nat/aarch64-mte-linux-ptrace.h.
2329 * aarch64-linux-nat.c: Include nat/aarch64-mte-linux-ptrace.h.
2330 (aarch64_linux_nat_target) <supports_memory_tagging>: New method
2331 override.
2332 <fetch_memtags>: New method override.
2333 <store_memtags>: New method override.
2334 (aarch64_linux_nat_target::supports_memory_tagging): New method.
2335 (aarch64_linux_nat_target::fetch_memtags): New method.
2336 (aarch64_linux_nat_target::store_memtags): New method.
2337 * arch/aarch64-mte-linux.c: New file.
2338 * arch/aarch64-mte-linux.h: Include gdbsupport/common-defs.h.
2339 (AARCH64_MTE_GRANULE_SIZE): Define.
2340 (aarch64_memtag_type): New enum.
2341 (aarch64_mte_get_tag_granules): New prototype.
2342 * configure.nat (NATDEPFILES): Add nat/aarch64-mte-linux-ptrace.o.
2343 * configure.tgt (aarch64*-*-linux*): Add arch/aarch64-mte-linux.o.
2344 * nat/aarch64-mte-linux-ptrace.c: New file.
2345 * nat/aarch64-mte-linux-ptrace.h: New file.
2346
2347 2021-03-24 Luis Machado <luis.machado@linaro.org>
2348
2349 * Makefile.in (HFILES_NO_SRCDIR): Add nat/aarch64-mte-linux-ptrace.h.
2350 * nat/aarch64-mte-linux-ptrace.h: New file.
2351
2352 2021-03-24 Luis Machado <luis.machado@linaro.org>
2353
2354 * aarch64-linux-nat.c (fetch_mteregs_from_thread): New function.
2355 (store_mteregs_to_thread): New function.
2356 (aarch64_linux_nat_target::fetch_registers): Update to call
2357 fetch_mteregs_from_thread.
2358 (aarch64_linux_nat_target::store_registers): Update to call
2359 store_mteregs_to_thread.
2360 * aarch64-tdep.c (aarch64_mte_register_names): New struct.
2361 (aarch64_cannot_store_register): Handle MTE registers.
2362 (aarch64_gdbarch_init): Initialize and setup MTE registers.
2363 * aarch64-tdep.h (gdbarch_tdep) <mte_reg_base>: New field.
2364 <has_mte>: New method.
2365 * arch/aarch64-linux.h (AARCH64_LINUX_SIZEOF_MTE): Define.
2366
2367 2021-03-24 Luis Machado <luis.machado@linaro.org>
2368
2369 * aarch64-linux-nat.c
2370 (aarch64_linux_nat_target::read_description): Take MTE flag into
2371 account.
2372 Slight refactor to hwcap flag checking.
2373 * aarch64-linux-tdep.c
2374 (aarch64_linux_core_read_description): Likewise.
2375 * aarch64-tdep.c (tdesc_aarch64_list): Add one more dimension for
2376 MTE.
2377 (aarch64_read_description): Add mte_p parameter and update to use it.
2378 Update the documentation.
2379 (aarch64_gdbarch_init): Update call to aarch64_read_description.
2380 * aarch64-tdep.h (aarch64_read_description): Add mte_p parameter.
2381 * arch/aarch64.c: Include ../features/aarch64-mte.c.
2382 (aarch64_create_target_description): Add mte_p parameter and update
2383 the code to use it.
2384 * arch/aarch64.h (aarch64_create_target_description): Add mte_p
2385 parameter.
2386 * features/Makefile (FEATURE_XMLFILES): Add aarch64-mte.xml.
2387 * features/aarch64-mte.c: New file, generated.
2388 * features/aarch64-mte.xml: New file.
2389
2390 2021-03-24 Luis Machado <luis.machado@linaro.org>
2391
2392 * Makefile.in (HFILES_NO_SRCDIR): Add arch/aarch64-mte-linux.h.
2393 * aarch64-linux-nat.c: Include arch/aarch64-mte-linux.h.
2394 * aarch64-linux-tdep.c: Likewise
2395 * arch/aarch64-mte-linux.h: New file.
2396
2397 2021-03-24 Luis Machado <luis.machado@linaro.org>
2398
2399 * remote: Include gdbsupport/selftest.h.
2400 (test_memory_tagging_functions): New function.
2401 (_initialize_remote): Register test_memory_tagging_functions.
2402
2403 2021-03-24 Luis Machado <luis.machado@linaro.org>
2404
2405 * remote.c (PACKET_memory_tagging_feature): New enum.
2406 (remote_memory_tagging_p): New function.
2407 (remote_protocol_features): New "memory-tagging" entry.
2408 (remote_target::remote_query_supported): Handle memory tagging
2409 support.
2410 (remote_target::supports_memory_tagging): Implement.
2411 (create_fetch_memtags_request, parse_fetch_memtags_reply)
2412 (create_store_memtags_request): New functions.
2413 (remote_target::fetch_memtags): Implement.
2414 (remote_target::store_memtags): Implement.
2415 (_initialize_remote): Add new "memory-tagging-feature"
2416 config command.
2417
2418 2021-03-24 Luis Machado <luis.machado@linaro.org>
2419
2420 * arch-utils.c (default_memtag_to_string, default_tagged_address_p)
2421 (default_memtag_matches_p, default_set_memtags)
2422 (default_get_memtag): New functions.
2423 * arch-utils.h (default_memtag_to_string, default_tagged_address_p)
2424 (default_memtag_matches_p, default_set_memtags)
2425 (default_get_memtag): New prototypes.
2426 * gdbarch.c: Regenerate.
2427 * gdbarch.h: Regenerate.
2428 * gdbarch.sh (memtag_to_string, tagged_address_p, memtag_matches_p)
2429 (set_memtags, get_memtag, memtag_granule_size): New gdbarch hooks.
2430 (enum memtag_type): New enum.
2431
2432 2021-03-24 Luis Machado <luis.machado@linaro.org>
2433
2434 * remote.c (remote_target) <supports_memory_tagging>: New method
2435 override.
2436 <fetch_memtags>: New method override.
2437 <store_memtags>: New method override.
2438 (remote_target::supports_memory_tagging): New method.
2439 (remote_target::fetch_memtags): New method.
2440 (remote_target::store_memtags): New method.
2441 * target-delegates.c: Regenerate.
2442 * target.h (struct target_ops) <supports_memory_tagging>: New virtual
2443 method.
2444 <fetch_memtags>: New virtual method.
2445 <store_memtags>: New virtual method.
2446 (target_supports_memory_tagging): Define.
2447 (target_fetch_memtags): Define.
2448 (target_store_memtags): Define.
2449 * target-debug.h (target_debug_print_size_t)
2450 (target_debug_print_const_gdb_byte_vector_r)
2451 (target_debug_print_gdb_byte_vector_r): New functions.
2452
2453 2021-03-23 Simon Marchi <simon.marchi@polymtl.ca>
2454
2455 * target.h (target_longname): Remove.
2456
2457 2021-03-23 Simon Marchi <simon.marchi@polymtl.ca>
2458
2459 * target.h (target_is_pushed): Remove, update callers to use
2460 inferior::target_is_pushed instead.
2461 * target.c (target_is_pushed): Remove.
2462
2463 2021-03-23 Simon Marchi <simon.marchi@polymtl.ca>
2464
2465 * target.h (push_target): Remove, update callers to use
2466 inferior::push_target.
2467 * target.c (push_target): Remove.
2468 * inferior.h (class inferior) <push_target>: New overload.
2469
2470 2021-03-23 Simon Marchi <simon.marchi@polymtl.ca>
2471
2472 * target.h (unpush_target): Remove, update all callers
2473 to use `inferior::unpush_target` instead.
2474 (struct target_unpusher) <operator()>: Just declare.
2475 * target.c (unpush_target): Remove.
2476 (target_unpusher::operator()): New.
2477
2478 2021-03-22 Andrew Burgess <andrew.burgess@embecosm.com>
2479
2480 * dwarf2/read.c (process_psymtab_comp_unit): Replace abort with an
2481 error.
2482 (process_full_comp_unit): Validate the top-level tag before
2483 processing the first DIE.
2484 (read_func_scope): Ensure we have a valid builder.
2485
2486 2021-03-22 Andrew Burgess <andrew.burgess@embecosm.com>
2487
2488 * objc-lang.c (objc_demangle): Renamed to
2489 objc_language::demangle_symbol, and moved later in the file.
2490 (objc_language::sniff_from_mangled_name): Call demangle_symbol
2491 member function.
2492 (objc_language::demangle_symbol): Defined outside of class
2493 declaration. The definition is the old objc_demangle with NULL
2494 changed to nullptr, and if conditions relating to nullptr pointers
2495 or null character checks made explicit.
2496 * objc-lang.h (objc_demangle): Delete declaration.
2497
2498 2021-03-22 Martin Liska <mliska@suse.cz>
2499
2500 * arm-tdep.c (show_disassembly_style_sfunc): Replace usage of CONST_STRNEQ with startswith.
2501 (_initialize_arm_tdep): Likewise.
2502
2503 2021-03-20 Tom Tromey <tom@tromey.com>
2504
2505 * xcoffread.c (xcoff_initial_scan): Create partial symtabs.
2506 * symfile.c (syms_from_objfile_1, reread_symbols): Update.
2507 * psymtab.h (make_psymbol_functions): Don't declare.
2508 * psymtab.c (make_psymbol_functions): Remove.
2509 (maintenance_print_psymbols): Update.
2510 * psympriv.h (struct psymbol_functions): Add no-argument
2511 constructor.
2512 * objfiles.h (struct objfile) <reset_psymtabs>: Remove.
2513 <partial_symtabs>: Remove.
2514 * mdebugread.c (mdebug_build_psymtabs): Create partial symtabs.
2515 * elfread.c (read_partial_symbols): Update.
2516 (elf_symfile_read): Remove check for existing partial symbols.
2517 Don't clear "qf".
2518 * dwarf2/read.c (dwarf2_has_info): Remove check for existing
2519 partial symbols.
2520 (dwarf2_build_psymtabs): Add psymbol_functions parameter. Create
2521 partial symtabs.
2522 * dwarf2/public.h (dwarf2_build_psymtabs): Add psymbol_functions
2523 parameter.
2524 * dbxread.c (dbx_symfile_read): Create partial symtabs.
2525 * ctfread.c (elfctf_build_psymtabs): Create partial symtabs.
2526
2527 2021-03-20 Tom Tromey <tom@tromey.com>
2528
2529 * dwarf2/read.c (dwarf2_build_psymtabs): Update.
2530 * symfile.c (syms_from_objfile_1, reread_symbols): Update.
2531 * symfile-debug.c (objfile::has_partial_symbols)
2532 (objfile::find_last_source_symtab)
2533 (objfile::forget_cached_source_info)
2534 (objfile::map_symtabs_matching_filename, objfile::lookup_symbol)
2535 (objfile::print_stats, objfile::dump)
2536 (objfile::expand_symtabs_for_function)
2537 (objfile::expand_all_symtabs)
2538 (objfile::expand_symtabs_with_fullname)
2539 (objfile::map_matching_symbols)
2540 (objfile::expand_symtabs_matching)
2541 (objfile::find_pc_sect_compunit_symtab)
2542 (objfile::map_symbol_filenames)
2543 (objfile::find_compunit_symtab_by_address)
2544 (objfile::lookup_global_symbol_language)
2545 (objfile::require_partial_symbols): Update.
2546 * psymtab.c (maintenance_print_psymbols)
2547 (maintenance_info_psymtabs, maintenance_check_psymtabs): Update.
2548 * objfiles.h (struct objfile) <qf>: Now a forward_list.
2549 * objfiles.c (objfile_relocate1): Update.
2550 * elfread.c (elf_symfile_read): Update.
2551
2552 2021-03-20 Tom Tromey <tom@tromey.com>
2553
2554 * objfiles.h (struct objfile) <psymtabs>: Remove method.
2555
2556 2021-03-20 Tom Tromey <tom@tromey.com>
2557
2558 * psymtab.c (psymbol_functions::count_psyms): Rename.
2559 (psymbol_functions::print_stats): Update.
2560 * psympriv.h (struct psymbol_functions) <count_psyms>: Declare
2561 method.
2562
2563 2021-03-20 Tom Tromey <tom@tromey.com>
2564
2565 * psymtab.c (psymbol_functions::require_partial_symbols): Rename.
2566 (psymbol_functions::find_pc_sect_psymtab): Rename.
2567 (psymbol_functions::find_pc_sect_compunit_symtab)
2568 (maintenance_print_psymbols, maintenance_check_psymtabs): Update.
2569 * psympriv.h (struct psymbol_functions) <require_partial_symbols>:
2570 Declare new method.
2571 <get_partial_symtabs, find_pc_sect_psymtab>: Likewise.
2572
2573 2021-03-20 Tom Tromey <tom@tromey.com>
2574
2575 * xcoffread.c (xcoff_start_psymtab): Add partial_symtabs parameter.
2576 (xcoff_end_psymtab, scan_xcoff_symtab): Update.
2577 * psymtab.c (partial_symtab::partial_symtab): Add partial_symtabs
2578 parameter.
2579 (add_psymbol_to_bcache): Remove.
2580 (partial_symtab::add_psymbol): Add partial_symtabs parameter.
2581 (partial_symtab::add_psymbol, partial_symtab::partial_symtab):
2582 Likewise.
2583 * psympriv.h (partial_symtab): Add partial_symtabs parameter.
2584 <add_psymbol>: Likewise.
2585 (standard_psymtab, legacy_psymtab): Likewise.
2586 * mdebugread.c (parse_partial_symbols): Update.
2587 (handle_psymbol_enumerators): Add partial_symtabs parameter.
2588 (handle_psymbol_enumerators): Update.
2589 (new_psymtab): Add partial_symtabs parameter.
2590 * dwarf2/read.h (dwarf2_psymtab): Add partial_symtabs parameter.
2591 * dwarf2/read.c (dwarf2_include_psymtab): Add partial_symtabs
2592 parameter.
2593 (dwarf2_create_include_psymtab): Add partial_symtabs parameter.
2594 (create_partial_symtab, add_partial_symbol, dwarf_decode_lines):
2595 Update.
2596 * dbxread.c (read_dbx_symtab): Update.
2597 (start_psymtab): Add partial_symtabs parameter.
2598 (dbx_end_psymtab): Update.
2599 * ctfread.c (struct ctf_context) <partial_symtabs>: New member.
2600 (ctf_psymtab): Add partial_symtabs parameter.
2601 (create_partial_symtab, ctf_psymtab_type_cb, ctf_psymtab_var_cb):
2602 Update.
2603 (scan_partial_symbols): Add partial_symtabs parameter.
2604 (scan_partial_symbols, elfctf_build_psymtabs)
2605 (ctf_psymtab_add_enums): Update.
2606
2607 2021-03-20 Tom Tromey <tom@tromey.com>
2608
2609 * symfile.c (read_symbols): Use objfile method.
2610 * symfile-debug.c (objfile::require_partial_symbols): New method.
2611 * psymtab.h (require_partial_symbols): Don't declare.
2612 * psymtab.c (require_partial_symbols): Use objfile method. Now
2613 static.
2614 (psymbol_functions::map_symtabs_matching_filename, OBJFILE)
2615 (psymbol_functions::lookup_symbol)
2616 (psymbol_functions::lookup_global_symbol_language)
2617 (psymbol_functions::find_last_source_symtab)
2618 (psymbol_functions::forget_cached_source_info)
2619 (psymbol_functions::print_stats)
2620 (psymbol_functions::expand_symtabs_for_function)
2621 (psymbol_functions::expand_all_symtabs)
2622 (psymbol_functions::expand_symtabs_with_fullname)
2623 (psymbol_functions::map_symbol_filenames)
2624 (psymbol_functions::map_matching_symbols)
2625 (psymbol_functions::expand_symtabs_matching)
2626 (psymbol_functions::find_compunit_symtab_by_address)
2627 (maintenance_print_psymbols, maintenance_info_psymtabs)
2628 (maintenance_check_psymtabs): Update.
2629 * objfiles.h (struct objfile) <require_partial_symbols>: Declare
2630 new method.
2631
2632 2021-03-20 Tom Tromey <tom@tromey.com>
2633
2634 * xcoffread.c (xcoff_sym_fns): Update.
2635 * symfile.h (struct sym_fns) <sym_read_psymbols>: Remove.
2636 * symfile-debug.c (objfile::has_partial_symbols): Use
2637 can_lazily_read_symbols.
2638 (debug_sym_read_psymbols): Remove.
2639 (debug_sym_fns, install_symfile_debug_logging): Update.
2640 * quick-symbol.h (struct quick_symbol_functions)
2641 <can_lazily_read_symbols, read_partial_symbols>: New methods.
2642 * psymtab.c (require_partial_symbols): Use new 'qf' methods.
2643 * mipsread.c (ecoff_sym_fns): Update.
2644 * machoread.c (macho_sym_fns): Update.
2645 * elfread.c (struct lazy_dwarf_reader): New.
2646 (elf_symfile_read): Update.
2647 (read_psyms): Now a method of lazy_dwarf_reader.
2648 (elf_sym_fns): Update.
2649 (elf_sym_fns_lazy_psyms): Remove.
2650 * dbxread.c (aout_sym_fns): Update.
2651 * coffread.c (coff_sym_fns): Update.
2652
2653 2021-03-20 Tom Tromey <tom@tromey.com>
2654
2655 * symfile.c (syms_from_objfile_1): Call reset_psymtabs.
2656 (reread_symbols): Move reset_psymtabs call later.
2657 * objfiles.c (objfile::objfile): Don't initialize
2658 partial_symtabs.
2659
2660 2021-03-20 Tom Tromey <tom@tromey.com>
2661
2662 * dwarf2/read.c (dwarf2_build_psymtabs): Call
2663 set_partial_symtabs.
2664 * symfile.c (syms_from_objfile_1, reread_symbols): Update.
2665 * psymtab.h (make_psymbol_functions): Add partial_symtabs
2666 parameter.
2667 * psymtab.c (find_pc_sect_psymtab): Add partial_symtabs
2668 parameter.
2669 (psymbol_functions::find_pc_sect_compunit_symtab)
2670 (psymbol_functions::print_stats, psymbol_functions::dump)
2671 (psymbol_functions::has_symbols): Update.
2672 (make_psymbol_functions, dump_psymtab_addrmap): Add
2673 partial_symtabs parameter.
2674 (maintenance_print_psymbols): Update.
2675 (psymbol_functions::expand_symtabs_matching): Update.
2676 * psympriv.h (struct psymbol_functions): Add constructor.
2677 <m_partial_symtabs>: New member.
2678 <set_partial_symtabs>: New method.
2679
2680 2021-03-20 Tom Tromey <tom@tromey.com>
2681
2682 * dwarf2/read.c (dwarf2_create_include_psymtab): Add per_bfd
2683 parameter.
2684 (process_psymtab_comp_unit_reader)
2685 (build_type_psymtab_dependencies, dwarf2_build_psymtabs_hard)
2686 (add_partial_subprogram, dwarf2_ranges_read, dwarf_decode_lines):
2687 Reference psymtabs via per_bfd.
2688
2689 2021-03-20 Tom Tromey <tom@tromey.com>
2690
2691 * dwarf2/index-write.c (struct addrmap_index_data) <objfile>:
2692 Remove.
2693 (add_address_entry): Remove objfile parameter.
2694 (add_address_entry_worker): Update.
2695 (write_address_map): Replace objfile parameter with per_bfd.
2696 (write_gdbindex, write_psymtabs_to_index): Update.
2697
2698 2021-03-20 Tom Tromey <tom@tromey.com>
2699
2700 * dwarf2/read.c (dwarf2_base_index_functions::print_stats): Add
2701 print_bcache parameter.
2702 * symfile-debug.c (objfile::print_stats): Add print_bcache
2703 parameter.
2704 * quick-symbol.h (struct quick_symbol_functions)
2705 <print_stats>: Add print_bcache parameter.
2706 * symmisc.c (print_symbol_bcache_statistics, count_psyms): Move
2707 code to psymtab.c.
2708 (print_objfile_statistics): Move psymtab code to psymtab.c.
2709 * psymtab.c (count_psyms): Move from symmisc.c.
2710 (psymbol_functions::print_stats): Print partial symbol and bcache
2711 statistics. Add print_bcache parameter.
2712 * objfiles.h (print_symbol_bcache_statistics): Don't declare.
2713 (struct objfile) <print_stats>: Add print_bcache parameter.
2714 * maint.c (maintenance_print_statistics): Update.
2715
2716 2021-03-20 Tom Tromey <tom@tromey.com>
2717
2718 * dwarf2/read.h (struct dwarf2_per_bfd) <psymtabs_addrmap>: New
2719 member.
2720 * dwarf2/read.c (create_addrmap_from_index)
2721 (create_addrmap_from_aranges): Set per_bfd addrmap.
2722 (dwarf2_read_gdb_index): Don't set partial_symtabs.
2723 (dwarf2_base_index_functions::find_pc_sect_compunit_symtab): Use
2724 per_bfd addrmap.
2725 (dwarf2_read_debug_names): Don't set partial_symtabs.
2726 (dwarf2_initialize_objfile): Likewise.
2727
2728 2021-03-20 Tom Tromey <tom@tromey.com>
2729
2730 * dwarf2/read.c (dwarf2_build_psymtabs): Set partial_symtabs
2731 earlier.
2732
2733 2021-03-20 Tom Tromey <tom@tromey.com>
2734
2735 * psympriv.h (psymtab_discarder): Take psymtab_storage parameter.
2736 (~psymtab_discarder, keep): Update.
2737 <m_objfile>: Remove.
2738 <m_partial_symtabs>: New member.
2739 * dwarf2/read.c (dwarf2_build_psymtabs): Update.
2740
2741 2021-03-20 Tom Tromey <tom@tromey.com>
2742
2743 * xcoffread.c (xcoff_end_psymtab): Add partial_symtabs parameter.
2744 (xcoff_end_psymtab): Update.
2745 (scan_xcoff_symtab): Add partial_symtabs parameter.
2746 (xcoff_initial_scan): Update.
2747 * stabsread.h (dbx_end_psymtab): Add partial_symtabs parameter.
2748 * mdebugread.c (mdebug_build_psymtabs): Update.
2749 (parse_partial_symbols): Add partial_symtabs parameter.
2750 * dbxread.c (dbx_symfile_read): Update.
2751 (read_dbx_symtab): Add partial_symtabs parameter.
2752 (read_dbx_symtab): Update.
2753 (dbx_end_psymtab): Add partial_symtabs parameter.
2754
2755 2021-03-20 Tom Tromey <tom@tromey.com>
2756
2757 * quick-symbol.h (struct quick_symbol_functions)
2758 <relocated>: New method.
2759 * psymtab.h (struct psymbol_functions) <relocated>: New
2760 method.
2761 <fill_psymbol_map>: Declare method.
2762 <m_psymbol_map>: New member.
2763 * psymtab.c (psymbol_functions::fill_psymbol_map): Rename.
2764 (psymbol_functions::find_compunit_symtab_by_address): Update.
2765 * objfiles.h (reset_psymtabs): Don't clear psymbol_map.
2766 (struct objfile) <psymbol_map>: Remove.
2767 * objfiles.c (objfile_relocate1): Update.
2768
2769 2021-03-20 Tom Tromey <tom@tromey.com>
2770
2771 * psympriv.h (struct psymbol_functions): New.
2772 * symfile.c (syms_from_objfile_1, reread_symbols): Update.
2773 * symfile-debug.c (objfile::find_compunit_symtab_by_address)
2774 (objfile::lookup_global_symbol_language): Update.
2775 * quick-symbol.h (struct quick_symbol_functions): Convert function
2776 pointers to methods. Add virtual destructor.
2777 (quick_symbol_functions_up): New typedef.
2778 * psymtab.h (psym_functions, dwarf2_gdb_index_functions)
2779 (dwarf2_debug_names_functions): Don't declare.
2780 (make_psymbol_functions): Declare.
2781 * psymtab.c (psymbol_functions::map_symtabs_matching_filename)
2782 (psymbol_functions::find_pc_sect_compunit_symtab)
2783 (psymbol_functions::lookup_symbol)
2784 (psymbol_functions::lookup_global_symbol_language)
2785 (psymbol_functions::find_last_source_symtab)
2786 (psymbol_functions::forget_cached_source_info)
2787 (psymbol_functions::print_stats, psymbol_functions::dump)
2788 (psymbol_functions::expand_symtabs_for_function)
2789 (psymbol_functions::expand_all_symtabs)
2790 (psymbol_functions::expand_symtabs_with_fullname)
2791 (psymbol_functions::map_symbol_filenames)
2792 (psymbol_functions::map_matching_symbols)
2793 (psymbol_functions::expand_symtabs_matching)
2794 (psymbol_functions::has_symbols)
2795 (psymbol_functions::find_compunit_symtab_by_address): Rename.
2796 (psym_functions): Remove.
2797 (make_psymbol_functions): New function.
2798 * objfiles.h (struct objfile) <qf>: Change type.
2799 * elfread.c (elf_symfile_read): Update.
2800 * dwarf2/read.c (struct dwarf2_base_index_functions)
2801 (struct dwarf2_gdb_index, struct dwarf2_debug_names_index): New.
2802 (make_dwarf_gdb_index, make_dwarf_debug_names): New functions.
2803 (dwarf2_base_index_functions::find_last_source_symtab)
2804 (dwarf2_base_index_functions::forget_cached_source_info)
2805 (dwarf2_base_index_functions::map_symtabs_matching_filename)
2806 (dwarf2_gdb_index::lookup_symbol)
2807 (dwarf2_base_index_functions::print_stats)
2808 (dwarf2_gdb_index::dump)
2809 (dwarf2_gdb_index::expand_symtabs_for_function)
2810 (dwarf2_base_index_functions::expand_all_symtabs)
2811 (dwarf2_base_index_functions::expand_symtabs_with_fullname):
2812 Rename.
2813 (dwarf2_gdb_index::map_matching_symbols): New method.
2814 (dwarf2_gdb_index::expand_symtabs_matching): New method.
2815 (dwarf2_base_index_functions::find_pc_sect_compunit_symtab)
2816 (dwarf2_base_index_functions::map_symbol_filenames)
2817 (dwarf2_base_index_functions::has_symbols): Rename.
2818 (dwarf2_gdb_index_functions): Remove.
2819 (dwarf2_debug_names_index::lookup_symbol)
2820 (dwarf2_debug_names_index::dump)
2821 (dwarf2_debug_names_index::expand_symtabs_for_function)
2822 (dwarf2_debug_names_index::map_matching_symbols)
2823 (dwarf2_debug_names_index::expand_symtabs_matching): Rename.
2824 (dwarf2_debug_names_functions): Remove.
2825 * dwarf2/public.h (make_dwarf_gdb_index, make_dwarf_debug_names):
2826 Declare.
2827
2828 2021-03-20 Tom Tromey <tom@tromey.com>
2829
2830 * psymtab.c (require_partial_symbols): Check that 'sf' is not
2831 null.
2832 * xcoffread.c (xcoff_sym_fns): Update.
2833 * symfile.h (struct sym_fns) <qf>: Remove.
2834 * symfile.c (syms_from_objfile_1, reread_symbols): Update.
2835 * symfile-debug.c (objfile::has_partial_symbols)
2836 (objfile::find_last_source_symtab)
2837 (objfile::forget_cached_source_info)
2838 (objfile::map_symtabs_matching_filename, objfile::lookup_symbol)
2839 (objfile::print_stats, objfile::dump)
2840 (objfile::expand_symtabs_for_function)
2841 (objfile::expand_all_symtabs)
2842 (objfile::expand_symtabs_with_fullname)
2843 (objfile::map_matching_symbols)
2844 (objfile::expand_symtabs_matching)
2845 (objfile::find_pc_sect_compunit_symtab)
2846 (objfile::map_symbol_filenames)
2847 (objfile::find_compunit_symtab_by_address)
2848 (objfile::lookup_global_symbol_language, debug_sym_fns)
2849 (install_symfile_debug_logging): Update.
2850 * objfiles.h (struct objfile) <qf>: New member.
2851 * mipsread.c (ecoff_sym_fns): Update.
2852 * machoread.c (macho_sym_fns): Update.
2853 * elfread.c (elf_sym_fns_gdb_index, elf_sym_fns_debug_names):
2854 Don't declare.
2855 (elf_symfile_read, elf_sym_fns, elf_sym_fns_lazy_psyms): Update.
2856 * dbxread.c (aout_sym_fns): Update.
2857 * coffread.c (coff_sym_fns): Update.
2858
2859 2021-03-20 Tom Tromey <tom@tromey.com>
2860
2861 * symfile.h (symbol_compare_ftype, symbol_filename_ftype)
2862 (expand_symtabs_file_matcher_ftype)
2863 (expand_symtabs_symbol_matcher_ftype)
2864 (expand_symtabs_exp_notify_ftype, struct quick_symbol_functions):
2865 Move to quick-symbol.h.
2866 * quick-symbol.h: New file.
2867
2868 2021-03-20 Tom Tromey <tom@tromey.com>
2869
2870 * symtab.c (iterate_over_symtabs, expand_symtab_containing_pc)
2871 (lookup_symbol_via_quick_fns, find_quick_global_symbol_language)
2872 (basic_lookup_transparent_type_quick)
2873 (find_pc_sect_compunit_symtab, find_symbol_at_address)
2874 (find_line_symtab, global_symbol_searcher::expand_symtabs):
2875 Update.
2876 * symmisc.c (print_objfile_statistics, dump_objfile)
2877 (maintenance_expand_symtabs): Update.
2878 * symfile.c (symbol_file_add_with_addrs)
2879 (expand_symtabs_matching, map_symbol_filenames): Update.
2880 * symfile-debug.c (objfile::has_partial_symbols)
2881 (objfile::find_last_source_symtab)
2882 (objfile::forget_cached_source_info)
2883 (objfile::map_symtabs_matching_filename, objfile::lookup_symbol)
2884 (objfile::print_stats, objfile::dump)
2885 (objfile::expand_symtabs_for_function)
2886 (objfile::expand_all_symtabs)
2887 (objfile::expand_symtabs_with_fullname)
2888 (objfile::map_matching_symbols)
2889 (objfile::expand_symtabs_matching)
2890 (objfile::find_pc_sect_compunit_symtab)
2891 (objfile::map_symbol_filenames)
2892 (objfile::find_compunit_symtab_by_address)
2893 (objfile::lookup_global_symbol_language): New methods.
2894 (debug_sym_quick_functions): Remove.
2895 (debug_sym_fns, install_symfile_debug_logging): Update.
2896 * source.c (forget_cached_source_info_for_objfile)
2897 (select_source_symtab): Update.
2898 * objfiles.h (struct objfile): Add methods corresponding to
2899 quick_symbol_functions.
2900 * objfiles.c (objfile::has_partial_symbols): Move to
2901 symfile-debug.c.
2902 * linespec.c (iterate_over_all_matching_symtabs): Update.
2903 * cp-support.c (add_symbol_overload_list_qualified): Update.
2904 * ada-lang.c (add_nonlocal_symbols): Update.
2905
2906 2021-03-20 Tom Tromey <tom@tromey.com>
2907
2908 * objfiles.h (struct objfile) <has_partial_symbols>: Return bool.
2909 * symfile.h (struct quick_symbol_functions) <has_symbols>: Return
2910 bool.
2911 * symfile-debug.c (debug_qf_has_symbols): Return bool.
2912 * psymtab.c (psym_has_symbols): Return bool.
2913 * objfiles.c (objfile::has_partial_symbols): Return bool.
2914 * dwarf2/read.c (dw2_has_symbols): Return bool.
2915
2916 2021-03-20 Tom Tromey <tom@tromey.com>
2917
2918 * symfile.c (read_symbols): Update.
2919 * objfiles.h (struct objfile) <has_partial_symbols>: New method.
2920 (objfile_has_partial_symbols): Don't declare.
2921 * objfiles.c (objfile::has_partial_symbols): Rename from
2922 objfile_has_partial_symbols.
2923 (objfile_has_symbols, have_partial_symbols): Update.
2924 * elfread.c (elf_symfile_read): Update.
2925 * dwarf2/read.c (dwarf2_has_info): Update.
2926 * coffread.c (coff_symfile_read): Update.
2927
2928 2021-03-20 Tom Tromey <tom@tromey.com>
2929
2930 * coffread.c: Include dwarf2/public.h.
2931 * dwarf2/frame.c: Include dwarf2/public.h.
2932 * dwarf2/index-write.h: Include dwarf2/public.h, not symfile.h.
2933 * dwarf2/public.h: New file.
2934 * dwarf2/read.c: Include dwarf2/public.h.
2935 * elfread.c: Include dwarf2/public.h.
2936 * machoread.c: Include dwarf2/public.h.
2937 * symfile.h (dwarf2_has_info, enum dw_index_kind)
2938 (dwarf2_initialize_objfile, dwarf2_build_psymtabs)
2939 (dwarf2_build_frame_info): Move to dwarf2/public.h.
2940 * xcoffread.c: Include dwarf2/public.h.
2941
2942 2021-03-20 Tom Tromey <tom@tromey.com>
2943
2944 * symfile.h (enum dwarf2_section_enum)
2945 (dwarf2_get_section_info): Move to dwarf2/read.h.
2946 * dwarf2/read.h (enum dwarf2_section_enum)
2947 (dwarf2_get_section_info): Move from symfile.h.
2948
2949 2021-03-19 Pedro Alves <pedro@palves.net>
2950
2951 * thread.c (any_thread_of_inferior): Check if there's a selected
2952 thread before calling inferior_thread().
2953
2954 2021-03-18 Tom Tromey <tromey@adacore.com>
2955
2956 * dwarf2/stringify.c (dwarf_unit_type_name): New function. Use
2957 get_DW_UT_name.
2958 * dwarf2/stringify.h (dwarf_unit_type_name): Declare.
2959 * dwarf2/comp-unit.c (dwarf_unit_type_name): Remove.
2960
2961 2021-03-18 Andrew Burgess <andrew.burgess@embecosm.com>
2962
2963 * python/py-param.c (get_set_value): Update header comment.
2964
2965 2021-03-17 Simon Marchi <simon.marchi@polymtl.ca>
2966
2967 * infrun.c (check_multi_target_resumption): Remove argument to
2968 all_non_exited_inferiors.
2969
2970 2021-03-16 Christian Biesinger <cbiesinger@google.com>
2971
2972 * windows-nat.c (windows_init_thread_list): Add message to
2973 debug log.
2974
2975 2021-03-16 Andrew Burgess <andrew.burgess@embecosm.com>
2976
2977 * python/py-framefilter.c (py_print_frame): Use PyInt_Check as
2978 well as PyLong_Check for Python 2.
2979
2980 2021-03-15 Tom Tromey <tromey@adacore.com>
2981
2982 PR build/27579:
2983 * rust-exp.y (maker_map): Use gdb::hash_enum.
2984 * stap-probe.c (stap_maker_map): Use gdb::hash_enum.
2985
2986 2021-03-15 Simon Marchi <simon.marchi@polymtl.ca>
2987
2988 * dwarf2/read.c (create_debug_type_hash_table): Remove colon at
2989 end of debug print.
2990
2991 2021-03-15 Simon Marchi <simon.marchi@polymtl.ca>
2992
2993 * dwarf2/read.c (dw2_get_file_names_reader): Remove info_ptr
2994 parameter, adjust caller.
2995
2996 2021-03-15 Tom Tromey <tromey@adacore.com>
2997
2998 * ada-exp.y (simple_exp): Always push a result for unary '+'.
2999
3000 2021-03-15 Tom Tromey <tromey@adacore.com>
3001
3002 * ada-lang.c (ada_unop_ind_operation::evaluate): Call
3003 ada_ensure_varsize_limit.
3004
3005 2021-03-15 Tom Tromey <tromey@adacore.com>
3006
3007 * ada-lang.c (numeric_type_p, integer_type_p): Return true for
3008 fixed-point.
3009 * ada-exp.y (maybe_overload): New function.
3010 (ada_wrap_overload): New function.
3011 (ada_un_wrap2, ada_wrap2, ada_wrap_op): Use maybe_overload.
3012 (exp1, simple_exp, relation, and_exp, and_then_exp, or_exp)
3013 (or_else_exp, xor_exp, primary): Update.
3014
3015 2021-03-15 Tom Tromey <tromey@adacore.com>
3016
3017 PR ada/27545:
3018 * ada-lang.c (ada_var_value_operation::evaluate): Use recursive
3019 call for tagged type.
3020
3021 2021-03-15 Tom Tromey <tromey@adacore.com>
3022
3023 * ada-exp.y (exp1): Handle resolution of the right hand side of an
3024 assignment.
3025
3026 2021-03-15 Tom Tromey <tromey@adacore.com>
3027
3028 * ada-lang.c (ada_aggregate_operation::assign_aggregate): Return
3029 container.
3030 (ada_assign_operation::evaluate): Update.
3031 * ada-exp.h (class ada_aggregate_operation) <assign_aggregate>:
3032 Change return type.
3033
3034 2021-03-15 Felix Willgerodt <felix.willgerodt@intel.com>
3035
3036 * i386-tdep.c (i386_floatformat_for_type): Add COMPLEX*32 and REAL*16.
3037
3038 2021-03-15 Andrew Burgess <andrew.burgess@embecosm.com>
3039
3040 * python/python.c (gdbpy_source_objfile_script): Use
3041 make_scoped_restore to restore gdbpy_current_objfile.
3042 (gdbpy_execute_objfile_script): Likewise.
3043
3044 2021-03-14 Tom Tromey <tom@tromey.com>
3045
3046 * dwarf2/read.c (read_attribute_value): Use cu_header
3047 consistently.
3048
3049 2021-03-14 Tom Tromey <tom@tromey.com>
3050
3051 * dwarf2/read.c (struct die_reader_specs) <abfd>: Fix formatting.
3052 (peek_die_abbrev): Use reader.abfd.
3053
3054 2021-03-14 Tom Tromey <tom@tromey.com>
3055
3056 * dwarf2/read.c (dwarf2_per_cu_data::get_header): Set
3057 m_header_read_in.
3058
3059 2021-03-13 Tom Tromey <tom@tromey.com>
3060
3061 * dwarf2/read.c (struct partial_die_info): Update.
3062 (peek_die_abbrev, skip_children, skip_one_die, read_full_die_1)
3063 (load_partial_dies, partial_die_info::partial_die_info): Update.
3064 * dwarf2/abbrev.h (lookup_abbrev): Constify.
3065
3066 2021-03-13 Tom Tromey <tom@tromey.com>
3067
3068 * dwarf2/abbrev.c (abbrev_table::read): Remove Irix 6 workaround.
3069
3070 2021-03-12 Christian Biesinger <cbiesinger@google.com>
3071
3072 PR threads/27239
3073 * cp-support.c: Use scoped_segv_handler_restore.
3074 * event-top.c (thread_local_segv_handler): Made static.
3075 (scoped_segv_handler_restore::scoped_segv_handler_restore):
3076 New function.
3077 (scoped_segv_handler_restore::~scoped_segv_handler_restore): New
3078 function.
3079 * event-top.h (class scoped_segv_handler_restore): New class.
3080 (thread_local_segv_handler): Removed.
3081
3082 2021-03-10 Tom Tromey <tromey@adacore.com>
3083
3084 * parser-defs.h (parser_state): Change completion to bool.
3085 <parse_completion>: Likewise.
3086 * ada-lang.h (ada_find_operator_symbol, ada_resolve_funcall)
3087 (ada_resolve_variable, ada_resolve_function): Update.
3088 * ada-lang.c (ada_find_operator_symbol): Change
3089 parse_completion to bool.
3090 (ada_resolve_funcall, ada_resolve_variable)
3091 (ada_resolve_function): Likewise.
3092
3093 2021-03-09 Tom Tromey <tromey@adacore.com>
3094
3095 * eval.c (operation::evaluate_funcall): Use function formal
3096 parameter types when evaluating.
3097
3098 2021-03-09 Andrew Burgess <andrew.burgess@embecosm.com>
3099
3100 * gdb-gdb.py.in (StructMainTypePrettyPrinter) <owner_to_string>:
3101 Updated fields names flag_objfile_owned to m_flag_objfile_owned,
3102 and owner to m_owner.
3103
3104 2021-03-09 Felix Willgerodt <felix.willgerodt@intel.com>
3105
3106 * f-exp.h (eval_op_f_loc): Declare.
3107 (expr::fortran_loc_operation): New typedef.
3108 * f-exp.y (exp): Handle UNOP_FORTRAN_LOC after parsing an
3109 UNOP_INTRINSIC.
3110 (f77_keywords): Add LOC keyword.
3111 * f-lang.c (eval_op_f_loc): New function.
3112 * std-operator.def (UNOP_FORTRAN_LOC): New operator.
3113
3114 2021-03-09 Andrew Burgess <andrew.burgess@embecosm.com>
3115
3116 * f-exp.h (eval_op_f_array_shape): Declare.
3117 (fortran_array_shape_operation): New type.
3118 * f-exp.y (exp): Handle UNOP_FORTRAN_SHAPE after parsing
3119 UNOP_INTRINSIC.
3120 (f77_keywords): Add "shape" keyword.
3121 * f-lang.c (fortran_array_shape): New function.
3122 (eval_op_f_array_shape): New function.
3123 * std-operator.def (UNOP_FORTRAN_SHAPE): New operator.
3124
3125 2021-03-09 Andrew Burgess <andrew.burgess@embecosm.com>
3126
3127 * f-exp.y (eval_op_f_array_size): Declare 1 and 2 argument forms
3128 of this function.
3129 (expr::fortran_array_size_1arg): New type.
3130 (expr::fortran_array_size_2arg): Likewise.
3131 * f-exp.y (exp): Handle FORTRAN_ARRAY_SIZE after parsing
3132 UNOP_OR_BINOP_INTRINSIC.
3133 (f77_keywords): Add "size" keyword.
3134 * f-lang.c (fortran_array_size): New function.
3135 (eval_op_f_array_size): New function, has a 1 arg and 2 arg form.
3136 * std-operator.def (FORTRAN_ARRAY_SIZE): New operator.
3137
3138 2021-03-09 Andrew Burgess <andrew.burgess@embecosm.com>
3139
3140 * f-exp.h (eval_op_f_rank): Declare.
3141 (expr::fortran_rank_operation): New typedef.
3142 * f-exp.y (exp): Handle UNOP_FORTRAN_RANK after parsing an
3143 UNOP_INTRINSIC.
3144 (f77_keywords): Add "rank" keyword.
3145 * f-lang.c (eval_op_f_rank): New function.
3146 * std-operator.def (UNOP_FORTRAN_RANK): New operator.
3147
3148 2021-03-08 Tom Tromey <tom@tromey.com>
3149
3150 * printcmd.c (set_command): Remove null check.
3151 * value.c (init_if_undefined_command): Remove null check.
3152
3153 2021-03-08 Tom Tromey <tom@tromey.com>
3154
3155 * parse.c (parser_state::push_symbol, parser_state::push_dollar):
3156 Update.
3157 * p-exp.y (variable): Update.
3158 * go-exp.y (variable): Update.
3159 * expprint.c (dump_for_expression): Use bound_minimal_symbol.
3160 Remove overload for objfile.
3161 * expop.h (eval_op_var_msym_value): Use bound_minimal_symbol
3162 parameter.
3163 (check_objfile): Likewise.
3164 (dump_for_expression): Likewise. Remove overload for objfile.
3165 (class var_msym_value_operation): Use bound_minimal_symbol.
3166 * eval.c (eval_op_var_msym_value): Use bound_minimal_symbol
3167 parameter.
3168 (var_msym_value_operation::evaluate_for_address)
3169 (var_msym_value_operation::evaluate_for_sizeof)
3170 (var_msym_value_operation::evaluate_for_cast): Update.
3171 * d-exp.y (PrimaryExpression): Update.
3172 * c-exp.y (variable): Update.
3173 * ax-gdb.c (var_msym_value_operation::do_generate_ax): Update.
3174 * ada-lang.c (ada_var_msym_value_operation::evaluate_for_cast):
3175 Update.
3176 * ada-exp.y (write_var_or_type): Update.
3177
3178 2021-03-08 Tom Tromey <tom@tromey.com>
3179
3180 * parser-defs.h (exp_uses_objfile): Return bool.
3181 * parse.c (exp_uses_objfile): Return bool.
3182
3183 2021-03-08 Tom Tromey <tom@tromey.com>
3184
3185 * value.h (eval_skip_value): Don't declare.
3186 * opencl-lang.c (eval_opencl_assign): Update.
3187 * m2-lang.c (eval_op_m2_high, eval_op_m2_subscript): Update.
3188 * f-lang.c (eval_op_f_abs, eval_op_f_mod, eval_op_f_ceil)
3189 (eval_op_f_floor, eval_op_f_modulo, eval_op_f_cmplx): Remove.
3190 * expression.h (enum noside) <EVAL_SKIP>: Remove.
3191 * expop.h (typeof_operation::evaluate)
3192 (decltype_operation::evaluate, unop_addr_operation::evaluate)
3193 (unop_sizeof_operation::evaluate, assign_operation::evaluate)
3194 (cxx_cast_operation::evaluate): Update.
3195 * eval.c (eval_skip_value): Remove.
3196 (eval_op_scope, eval_op_var_entry_value)
3197 (eval_op_func_static_var, eval_op_string, eval_op_objc_selector)
3198 (eval_op_concat, eval_op_ternop, eval_op_structop_struct)
3199 (eval_op_structop_ptr, eval_op_member, eval_op_add, eval_op_sub)
3200 (eval_op_binary, eval_op_subscript, eval_op_equal)
3201 (eval_op_notequal, eval_op_less, eval_op_gtr, eval_op_geq)
3202 (eval_op_leq, eval_op_repeat, eval_op_plus, eval_op_neg)
3203 (eval_op_complement, eval_op_lognot, eval_op_ind)
3204 (eval_op_memval, eval_op_preinc, eval_op_predec)
3205 (eval_op_postinc, eval_op_postdec, eval_op_type)
3206 (eval_binop_assign_modify, eval_op_objc_msgcall)
3207 (eval_multi_subscript, logical_and_operation::evaluate)
3208 (logical_or_operation::evaluate, array_operation::evaluate)
3209 (operation::evaluate_for_cast)
3210 (var_msym_value_operation::evaluate_for_cast)
3211 (var_value_operation::evaluate_for_cast): Update.
3212 * c-lang.c (c_string_operation::evaluate): Update.
3213 * c-exp.h (objc_nsstring_operation::evaluate)
3214 (objc_selector_operation::evaluate): Update.
3215 * ada-lang.c (ada_assign_operation::evaluate)
3216 (eval_ternop_in_range, ada_unop_neg, ada_unop_in_range)
3217 (ada_atr_size): Update.
3218
3219 2021-03-08 Tom Tromey <tom@tromey.com>
3220
3221 * eval.c: Merge "namespace" scopes.
3222
3223 2021-03-08 Tom Tromey <tom@tromey.com>
3224
3225 * parser-defs.h (struct expr_builder) <expr_builder>: Inline.
3226 <release>: Inline.
3227 * parse.c (expr_builder::expr_builder, expr_builder::release):
3228 Remove.
3229
3230 2021-03-08 Tom Tromey <tom@tromey.com>
3231
3232 * parse.c (expression::expression, expression::~expression):
3233 Remove.
3234 * expression.h (struct expression): Inline constructor. Remove
3235 destructor.
3236
3237 2021-03-08 Tom Tromey <tom@tromey.com>
3238
3239 * std-operator.def (BINOP_END): Remove.
3240 * p-exp.y (tokentab3, tokentab2): Use OP_NULL, not BINOP_END.
3241 * go-exp.y (tokentab2): Use OP_NULL, not BINOP_END.
3242 * f-exp.y (dot_ops, f77_keywords): Use OP_NULL, not BINOP_END.
3243 * d-exp.y (tokentab2, ident_tokens): Use OP_NULL, not BINOP_END.
3244 * c-exp.y (tokentab3, tokentab2, ident_tokens): Use OP_NULL, not
3245 BINOP_END.
3246
3247 2021-03-08 Tom Tromey <tom@tromey.com>
3248
3249 * expression.h (enum exp_opcode) <OP_UNUSED_LAST>: Remove.
3250
3251 2021-03-08 Tom Tromey <tom@tromey.com>
3252
3253 * std-operator.def (OP_EXTENDED0): Remove.
3254
3255 2021-03-08 Tom Tromey <tom@tromey.com>
3256
3257 * std-operator.def (OP_NAME, OP_ATR_IMAGE, OP_ATR_MODULUS)
3258 (OP_OTHERS, OP_CHOICES, OP_POSITIONAL, OP_DISCRETE_RANGE):
3259 Remove.
3260
3261 2021-03-08 Tom Tromey <tom@tromey.com>
3262
3263 * std-operator.def (UNOP_CAP, UNOP_CHR, UNOP_ORD, UNOP_FLOAT)
3264 (UNOP_MAX, UNOP_MIN, UNOP_ODD, UNOP_TRUNC, OP_M2_STRING): Remove.
3265
3266 2021-03-08 Tom Tromey <tom@tromey.com>
3267
3268 * std-operator.def (OP_ATR_MIN, OP_ATR_MAX): Remove.
3269 * ada-lang.c (ada_binop_minmax): Update.
3270 * ada-exp.h (ada_binop_min_operation, ada_binop_max_operation):
3271 Use BINOP_MIN and BINOP_MAX.
3272
3273 2021-03-08 Tom Tromey <tom@tromey.com>
3274
3275 * value.h (evaluate_subexp_with_coercion): Don't declare.
3276 * parse.c (exp_descriptor_standard): Remove.
3277 (expr_builder::expr_builder, expr_builder::release): Update.
3278 (expression::expression): Remove size_t parameter.
3279 (expression::~expression): Simplify.
3280 (expression::resize): Remove.
3281 (write_exp_elt, write_exp_elt_opcode, write_exp_elt_sym)
3282 (write_exp_elt_msym, write_exp_elt_block, write_exp_elt_objfile)
3283 (write_exp_elt_longcst, write_exp_elt_floatcst)
3284 (write_exp_elt_type, write_exp_elt_intern, write_exp_string)
3285 (write_exp_string_vector, write_exp_bitstring): Remove.
3286 * p-lang.h (class pascal_language) <opcode_print_table,
3287 op_print_tab>: Remove.
3288 * p-lang.c (pascal_language::op_print_tab): Remove.
3289 * opencl-lang.c (class opencl_language) <opcode_print_table>:
3290 Remove.
3291 * objc-lang.c (objc_op_print_tab): Remove.
3292 (class objc_language) <opcode_print_table>: Remove.
3293 * m2-lang.h (class m2_language) <opcode_print_table,
3294 op_print_tab>: Remove.
3295 * m2-lang.c (m2_language::op_print_tab): Remove.
3296 * language.h (struct language_defn) <post_parser, expression_ops,
3297 opcode_print_table>: Remove.
3298 * language.c (language_defn::expression_ops)
3299 (auto_or_unknown_language::opcode_print_table): Remove.
3300 * go-lang.h (class go_language) <opcode_print_table,
3301 op_print_tab>: Remove.
3302 * go-lang.c (go_language::op_print_tab): Remove.
3303 * f-lang.h (class f_language) <opcode_print_table>: Remove
3304 <op_print_tab>: Remove.
3305 * f-lang.c (f_language::op_print_tab): Remove.
3306 * expression.h (union exp_element): Remove.
3307 (struct expression): Remove size_t parameter from constructor.
3308 <resize>: Remove.
3309 <first_opcode>: Update.
3310 <nelts, elts>: Remove.
3311 (EXP_ELEM_TO_BYTES, BYTES_TO_EXP_ELEM): Remove.
3312 (evaluate_subexp_standard, print_expression, op_string)
3313 (dump_raw_expression): Don't declare.
3314 * expprint.c (print_expression, print_subexp)
3315 (print_subexp_funcall, print_subexp_standard, op_string)
3316 (dump_raw_expression, dump_subexp, dump_subexp_body)
3317 (dump_subexp_body_funcall, dump_subexp_body_standard): Remove.
3318 (dump_prefix_expression): Update.
3319 * eval.c (evaluate_subexp): Remove.
3320 (evaluate_expression, evaluate_type): Update.
3321 (evaluate_subexpression_type): Remove.
3322 (fetch_subexp_value): Remove "pc" parameter. Update.
3323 (extract_field_op, evaluate_struct_tuple, evaluate_funcall)
3324 (evaluate_subexp_standard, evaluate_subexp_for_address)
3325 (evaluate_subexp_with_coercion, evaluate_subexp_for_sizeof)
3326 (evaluate_subexp_for_cast): Remove.
3327 (parse_and_eval_type): Update.
3328 * dtrace-probe.c (dtrace_probe::compile_to_ax): Update.
3329 * d-lang.c (d_op_print_tab): Remove.
3330 (class d_language) <opcode_print_table>: Remove.
3331 * c-lang.h (c_op_print_tab): Don't declare.
3332 * c-lang.c (c_op_print_tab): Remove.
3333 (class c_language, class cplus_language, class asm_language, class
3334 minimal_language) <opcode_print_table>: Remove.
3335 * breakpoint.c (update_watchpoint, watchpoint_check)
3336 (watchpoint_exp_is_const, watch_command_1): Update.
3337 * ax-gdb.h (union exp_element): Don't declare.
3338 * ax-gdb.c (const_var_ref, const_expr, maybe_const_expr)
3339 (gen_repeat, gen_sizeof, gen_expr_for_cast, gen_expr)
3340 (gen_expr_binop_rest): Remove.
3341 (gen_trace_for_expr, gen_eval_for_expr, gen_printf): Update.
3342 * ada-lang.c (ada_op_print_tab): Remove.
3343 (class ada_language) <post_parser, opcode_print_table>: Remove.
3344
3345 2021-03-08 Tom Tromey <tom@tromey.com>
3346
3347 * go-lang.c (go_language::expression_ops): Don't declare.
3348 * go-lang.h (class go_language) <expression_ops>: Remove.
3349 * opencl-lang.c (evaluate_subexp_opencl, exp_descriptor_opencl):
3350 Remove.
3351 (class opencl_language) <expression_ops>: Remove.
3352 * d-lang.c (class d_language) <expression_ops>: Remove.
3353 * c-lang.h (evaluate_subexp_c, exp_descriptor_c): Don't declare.
3354 * c-lang.c (evaluate_subexp_c, exp_descriptor_c): Remove.
3355 (class c_language, class cplus_language, class asm_language)
3356 (class minimal_language) <expression_ops>: Remove.
3357
3358 2021-03-08 Tom Tromey <tom@tromey.com>
3359
3360 * ada-lang.c (resolve_subexp, replace_operator_with_call)
3361 (evaluate_subexp_type, assign_aggregate)
3362 (aggregate_assign_positional, aggregate_assign_from_choices)
3363 (aggregate_assign_others, ada_evaluate_subexp_for_cast)
3364 (ada_evaluate_subexp, ADA_OPERATORS, ada_operator_length)
3365 (ada_operator_check, ada_forward_operator_length)
3366 (ada_dump_subexp_body, ada_print_subexp, ada_exp_descriptor):
3367 Remove.
3368 (post_parser): Update.
3369 (class ada_language) <expresssion_ops>: Remove.
3370
3371 2021-03-08 Tom Tromey <tom@tromey.com>
3372
3373 * m2-lang.h (class m2_language) <expresssion_ops,
3374 exp_descriptor_modula2>: Remove.
3375 * m2-lang.c (evaluate_subexp_modula2)
3376 (m2_language::exp_descriptor_modula2): Remove.
3377
3378 2021-03-08 Tom Tromey <tom@tromey.com>
3379
3380 * f-lang.h (class f_language) <expresssion_ops>: Remove.
3381 <exp_descriptor_tab>: Remove.
3382 * f-lang.c (fortran_value_subarray, evaluate_subexp_f)
3383 (operator_length_f, print_unop_subexp_f, print_binop_subexp_f)
3384 (print_subexp_f, dump_subexp_body_f, operator_check_f)
3385 (f_language::exp_descriptor_tab, fortran_prepare_argument):
3386 Remove.
3387
3388 2021-03-08 Tom Tromey <tom@tromey.com>
3389
3390 * rust-lang.h (class rust_language) <expression_ops,
3391 exp_descriptor_tab>: Remove.
3392 * rust-lang.c (rust_evaluate_funcall): Remove.
3393 (rust_range, rust_subscript, eval_op_rust_complement): Don't use
3394 EVAL_SKIP.
3395 (rust_evaluate_subexp): Remove.
3396 (rust_aggregate_operation::evaluate): Don't use EVAL_SKIP.
3397 (rust_operator_length, rust_dump_subexp_body, rust_print_subexp)
3398 (rust_operator_check, rust_language::exp_descriptor_tab): Remove.
3399
3400 2021-03-08 Tom Tromey <tom@tromey.com>
3401
3402 * ada-exp.y: Create operations.
3403 (empty_stoken): Remove.
3404 (ada_pop, ada_wrap, ada_addrof, ada_un_wrap2, ada_wrap2)
3405 (ada_wrap_op, ada_wrap3, ada_funcall): New functions.
3406 (components): New global.
3407 (push_component, choice_component, pop_component, pop_components):
3408 New functions.
3409 (associations): New global
3410 (push_association, pop_association, pop_associations): New
3411 functions.
3412 (ada_parse): Update.
3413 (write_var_from_sym, write_int): Create operations.
3414 (write_exp_op_with_string): Remove.
3415 (write_object_renaming, write_selectors, write_ambiguous_var)
3416 (write_var_or_type, write_name_assoc): Create operations.
3417 * ada-lang.h (ada_index_type): Declare.
3418 * ada-lang.c (ada_index_type): No longer static.
3419
3420 2021-03-08 Tom Tromey <tom@tromey.com>
3421
3422 * f-exp.y: Create operations.
3423 (f_language::parser): Update.
3424
3425 2021-03-08 Tom Tromey <tom@tromey.com>
3426
3427 * m2-exp.y: Create operations.
3428 (m2_language::parser): Update.
3429
3430 2021-03-08 Tom Tromey <tom@tromey.com>
3431
3432 * p-exp.y: Create operations.
3433 (pascal_language::parser): Update.
3434
3435 2021-03-08 Tom Tromey <tom@tromey.com>
3436
3437 * d-exp.y: Create operations.
3438 (d_parse): Update.
3439
3440 2021-03-08 Tom Tromey <tom@tromey.com>
3441
3442 * go-exp.y: Create operations.
3443 (go_language::parser): Update.
3444
3445 2021-03-08 Tom Tromey <tom@tromey.com>
3446
3447 * objc-lang.c (end_msglist): Create operations.
3448 * c-exp.y: Change parser to create operations.
3449 (write_destructor_name): Remove.
3450 (c_parse): Update.
3451
3452 2021-03-08 Tom Tromey <tom@tromey.com>
3453
3454 * rust-exp.y: Create operations.
3455 (rust_parser::convert_params_to_expression): Change return type.
3456 (binop_maker_ftype): New typedef.
3457 (maker_map): New global.
3458 (rust_parser::convert_ast_to_expression): Change return type.
3459 (rust_language::parser): Update.
3460 (_initialize_rust_exp): Initialize maker_map.
3461
3462 2021-03-08 Tom Tromey <tom@tromey.com>
3463
3464 * stap-probe.c (binop_maker_ftype): New typedef.
3465 (stap_maker_map): New global.
3466 (stap_make_binop): New function.
3467 (stap_parse_register_operand): Return operation_up.
3468 (stap_parse_single_operand, stap_parse_argument_conditionally)
3469 (stap_parse_argument_1): Likewise.
3470 (stap_parse_argument): Create operations.
3471 (stap_probe::parse_arguments): Update.
3472 (_initialize_stap_probe): Initialize stap_maker_map.
3473 * ppc-linux-tdep.c (ppc_stap_parse_special_token): Change return
3474 type.
3475 * i386-tdep.h (i386_stap_parse_special_token): Change return
3476 type.
3477 * i386-tdep.c (i386_stap_parse_special_token_triplet)
3478 (i386_stap_parse_special_token_three_arg_disp)
3479 (i386_stap_parse_special_token): Change return type.
3480 * gdbarch.sh (stap_parse_special_token): Change return type.
3481 * gdbarch.c: Rebuild.
3482 * gdbarch.h: Rebuild.
3483 * arm-linux-tdep.c (arm_stap_parse_special_token): Change return
3484 type.
3485 * aarch64-linux-tdep.c (aarch64_stap_parse_special_token): Change
3486 return type.
3487
3488 2021-03-08 Tom Tromey <tom@tromey.com>
3489
3490 * gdbarch.sh (dtrace_parse_probe_argument): Change return type.
3491 * gdbarch.h: Rebuild.
3492 * gdbarch.c: Rebuild.
3493 * dtrace-probe.c (dtrace_probe::build_arg_exprs): Update.
3494 * amd64-linux-tdep.c (amd64_dtrace_parse_probe_argument): Change
3495 return type.
3496 (amd64_dtrace_parse_probe_argument): Update.
3497
3498 2021-03-08 Tom Tromey <tom@tromey.com>
3499
3500 * parser-defs.h (struct parser_state) <push, push_new,
3501 push_c_string, push_symbol, push_dollar, pop, pop_vector, wrap,
3502 wrap2>: New methods.
3503 <m_operations>: New member.
3504 * parse.c (parser_state::push_c_string)
3505 (parser_state::push_symbol, parser_state::push_dollar): New
3506 methods.
3507
3508 2021-03-08 Tom Tromey <tom@tromey.com>
3509
3510 * parser-defs.h (struct expr_completion_state) <expout_last_op>:
3511 New member.
3512 (struct parser_state) <mark_struct_expression>: New method.
3513 * parse.c (parser_state::mark_struct_expression): Update assert.
3514 (parser_state::mark_struct_expression): New method.
3515 (parser_state::mark_completion_tag): Update assert.
3516 (parse_expression_for_completion): Handle expout_last_op.
3517
3518 2021-03-08 Tom Tromey <tom@tromey.com>
3519
3520 * ada-exp.h (class ada_var_value_operation) <get_symbol>: Remove;
3521 now in superclass.
3522 * value.h (fetch_subexp_value): Add "op" parameter.
3523 * value.c (init_if_undefined_command): Update.
3524 * tracepoint.c (validate_actionline, encode_actions_1): Update.
3525 * stap-probe.c (stap_probe::compile_to_ax): Update.
3526 * printcmd.c (set_command): Update.
3527 * ppc-linux-nat.c (ppc_linux_nat_target::check_condition):
3528 Update.
3529 * parser-defs.h (struct expr_builder) <set_operation>: New
3530 method.
3531 * parse.c (parse_exp_in_context, exp_uses_objfile): Update.
3532 * expression.h (struct expression) <first_opcode>: Update.
3533 <op>: New member.
3534 * expprint.c (dump_raw_expression, dump_prefix_expression):
3535 Update.
3536 * expop.h (class var_value_operation) <get_symbol>: New method.
3537 (class register_operation) <get_name>: New method.
3538 (class equal_operation): No longer a typedef, now a subclass.
3539 (class unop_memval_operation) <get_type>: New method.
3540 (class assign_operation) <get_lhs>: New method.
3541 (class unop_cast_operation) <get_type>: New method.
3542 * eval.c (evaluate_expression, evaluate_type)
3543 (evaluate_subexpression_type): Update.
3544 (fetch_subexp_value): Add "op" parameter.
3545 (parse_and_eval_type): Update.
3546 * dtrace-probe.c (dtrace_probe::compile_to_ax): Update.
3547 * breakpoint.c (update_watchpoint, watchpoint_check)
3548 (watchpoint_exp_is_const, watch_command_1): Update.
3549 * ax-gdb.c (gen_trace_for_expr, gen_eval_for_expr, gen_printf):
3550 Update.
3551
3552 2021-03-08 Tom Tromey <tom@tromey.com>
3553
3554 * ada-lang.c (ada_value_binop): Do not use op_string.
3555
3556 2021-03-08 Tom Tromey <tom@tromey.com>
3557
3558 * expprint.c (dump_for_expression): New overload.
3559 * expop.h (check_objfile, dump_for_expression): Declare new
3560 overloads.
3561 * ada-lang.c (check_objfile): New overload.
3562 (assign_component, ada_aggregate_component::uses_objfile)
3563 (ada_aggregate_component::dump, ada_aggregate_component::assign)
3564 (ada_aggregate_component::assign_aggregate)
3565 (ada_positional_component::uses_objfile)
3566 (ada_positional_component::dump, ada_positional_component::assign)
3567 (ada_discrete_range_association::uses_objfile)
3568 (ada_discrete_range_association::dump)
3569 (ada_discrete_range_association::assign)
3570 (ada_name_association::uses_objfile, ada_name_association::dump)
3571 (ada_name_association::assign)
3572 (ada_choices_component::uses_objfile, ada_choices_component::dump)
3573 (ada_choices_component::assign)
3574 (ada_others_component::uses_objfile, ada_others_component::dump)
3575 (ada_others_component::assign, ada_assign_operation::evaluate):
3576 New methods.
3577 * ada-exp.h (ada_string_operation) <get_name>: New method.
3578 (class ada_assign_operation): New.
3579 (class ada_component): New.
3580 (ada_component_up): New typedef.
3581 (class ada_aggregate_operation, class ada_aggregate_component)
3582 (class ada_positional_component, class ada_others_component)
3583 (class ada_association): New.
3584 (ada_association_up): New typedef.
3585 (class ada_choices_component)
3586 (class ada_discrete_range_association)
3587 (class ada_name_association): New.
3588
3589 2021-03-08 Tom Tromey <tom@tromey.com>
3590
3591 * ada-lang.c (ada_var_value_operation::resolve)
3592 (ada_funcall_operation::resolve)
3593 (ada_ternop_slice_operation::resolve): New methods.
3594 * ada-exp.h (struct ada_resolvable): New.
3595 (class ada_var_value_operation): Derive from ada_resolvable.
3596 <get_block, resolve>: New methods.
3597 (class ada_funcall_operation): Derive from ada_resolvable.
3598 <resolve>: New method.
3599 (class ada_ternop_slice_operation): Derive from ada_resolvable.
3600 <resolve>: New method.
3601
3602 2021-03-08 Tom Tromey <tom@tromey.com>
3603
3604 * ada-lang.c (ada_funcall_operation::evaluate): New method.
3605 * ada-exp.h (class ada_var_msym_value_operation) <get_symbol>: New
3606 method.
3607 (class ada_funcall_operation): New.
3608
3609 2021-03-08 Tom Tromey <tom@tromey.com>
3610
3611 * ada-lang.c (ada_structop_operation::evaluate): New method.
3612 * ada-exp.h (class ada_structop_operation): New.
3613
3614 2021-03-08 Tom Tromey <tom@tromey.com>
3615
3616 * ada-lang.c (ada_unop_ind_operation::evaluate): New method.
3617 * ada-exp.h (class ada_unop_ind_operation): New.
3618
3619 2021-03-08 Tom Tromey <tom@tromey.com>
3620
3621 * ada-lang.c (ada_binop_exp): No longer static.
3622 * ada-exp.h (ada_binop_exp_operation): New typedef.
3623
3624 2021-03-08 Tom Tromey <tom@tromey.com>
3625
3626 * ada-lang.c (ada_val_atr): No longer static.
3627 (ada_atr_val_operation::evaluate): New method.
3628 * ada-exp.h (class ada_atr_val_operation): New.
3629
3630 2021-03-08 Tom Tromey <tom@tromey.com>
3631
3632 * ada-lang.c (ada_pos_atr): No longer static.
3633 * ada-exp.h (ada_pos_operation): New typedef.
3634
3635 2021-03-08 Tom Tromey <tom@tromey.com>
3636
3637 * ada-lang.c (ada_pos_atr): Rename from value_pos_atr. Change
3638 parameters.
3639 (ada_evaluate_subexp): Use it.
3640
3641 2021-03-08 Tom Tromey <tom@tromey.com>
3642
3643 * ada-lang.c (ada_binop_minmax): No longer static.
3644 * ada-exp.h (ada_binop_min_operation, ada_binop_max_operation):
3645 New typedefs.
3646
3647 2021-03-08 Tom Tromey <tom@tromey.com>
3648
3649 * ada-lang.c (ada_var_msym_value_operation::evaluate_for_cast):
3650 New method.
3651 * ada-exp.h (class ada_var_msym_value_operation): New.
3652
3653 2021-03-08 Tom Tromey <tom@tromey.com>
3654
3655 * ada-lang.c (ada_var_value_operation::evaluate_for_cast)
3656 (ada_var_value_operation::evaluate): New methods.
3657 * ada-exp.h (class ada_var_value_operation): New.
3658
3659 2021-03-08 Tom Tromey <tom@tromey.com>
3660
3661 * ada-lang.c (ada_unop_atr_operation::evaluate): New method.
3662 * ada-exp.h (class ada_unop_atr_operation): New.
3663
3664 2021-03-08 Tom Tromey <tom@tromey.com>
3665
3666 * ada-lang.c (ada_binop_in_bounds): No longer static.
3667 * ada-exp.h (class ada_binop_in_bounds_operation): New.
3668
3669 2021-03-08 Tom Tromey <tom@tromey.com>
3670
3671 * ada-lang.c (ada_ternop_slice): No longer static.
3672 * ada-exp.h (class ada_ternop_slice_operation): New.
3673
3674 2021-03-08 Tom Tromey <tom@tromey.com>
3675
3676 * ada-exp.h (ada_bitwise_operation): New template class.
3677 (ada_bitwise_and_operation, ada_bitwise_ior_operation)
3678 (ada_bitwise_xor_operation): New typedefs.
3679
3680 2021-03-08 Tom Tromey <tom@tromey.com>
3681
3682 * ada-lang.c (ada_equal_binop): No longer static.
3683 * ada-exp.h (class ada_binop_equal_operation): New.
3684
3685 2021-03-08 Tom Tromey <tom@tromey.com>
3686
3687 * ada-lang.c (ada_mult_binop): No longer static.
3688 * ada-exp.h (ada_binop_mul_operation ada_binop_div_operation)
3689 (ada_binop_rem_operation, ada_binop_mod_operation): New typedefs.
3690
3691 2021-03-08 Tom Tromey <tom@tromey.com>
3692
3693 * ada-lang.c (ada_binop_addsub_operation::evaluate): New method.
3694 * ada-exp.h (class ada_binop_addsub_operation): New.
3695
3696 2021-03-08 Tom Tromey <tom@tromey.com>
3697
3698 * ada-lang.h (ada_find_operator_symbol, ada_resolve_funcall)
3699 (ada_resolve_variable): Declare.
3700 * ada-lang.c (ada_find_operator_symbol, ada_resolve_funcall)
3701 (ada_resolve_variable): New functions.
3702 (resolve_subexp): Update.
3703
3704 2021-03-08 Tom Tromey <tom@tromey.com>
3705
3706 * opencl-lang.c (opencl_ternop_cond_operation::evaluate): New
3707 method.
3708 * c-exp.h (class opencl_ternop_cond_operation): New.
3709
3710 2021-03-08 Tom Tromey <tom@tromey.com>
3711
3712 * opencl-lang.c (opencl_logical_binop_operation::evaluate): New
3713 method.
3714 * c-exp.h (class opencl_logical_binop_operation): New.
3715
3716 2021-03-08 Tom Tromey <tom@tromey.com>
3717
3718 * opencl-lang.c (opencl_structop_operation::evaluate): New
3719 method.
3720 * c-exp.h (class opencl_structop_operation): New.
3721
3722 2021-03-08 Tom Tromey <tom@tromey.com>
3723
3724 * opencl-lang.c (opencl_logical_not): No longer static. Change
3725 parameters.
3726 (evaluate_subexp_opencl): Update.
3727 * c-exp.h (opencl_notequal_operation): New typedef.
3728
3729 2021-03-08 Tom Tromey <tom@tromey.com>
3730
3731 * opencl-lang.c (opencl_relop, eval_opencl_assign): No longer
3732 static. Change parameters.
3733 (eval_opencl_assign): No longer static. Add "op" parameter.
3734 (evaluate_subexp_opencl): Update.
3735 * c-exp.h (opencl_binop_operation): New template class.
3736 (opencl_assign_operation, opencl_equal_operation)
3737 (opencl_notequal_operation, opencl_less_operation)
3738 (opencl_gtr_operation, opencl_geq_operation)
3739 (opencl_leq_operation): New typedefs.
3740
3741 2021-03-08 Tom Tromey <tom@tromey.com>
3742
3743 * opencl-lang.c (opencl_value_cast): No longer static.
3744 * c-exp.h (opencl_cast_type_operation): New typedef.
3745
3746 2021-03-08 Tom Tromey <tom@tromey.com>
3747
3748 * f-exp.h (eval_op_f_allocated): Declare.
3749 (fortran_allocated_operation): New typedef.
3750 * f-lang.c (eval_op_f_allocated): No longer static.
3751
3752 2021-03-08 Tom Tromey <tom@tromey.com>
3753
3754 * f-lang.c (eval_op_f_associated): New functions.
3755 * f-exp.h (fortran_associated_1arg, fortran_associated_2arg): New
3756 typedefs.
3757
3758 2021-03-08 Tom Tromey <tom@tromey.com>
3759
3760 * f-lang.c (fortran_bound_1arg::evaluate)
3761 (fortran_bound_2arg::evaluate): New methods.
3762 * f-exp.h (class fortran_bound_1arg, class fortran_bound_2arg):
3763 New.
3764
3765 2021-03-08 Tom Tromey <tom@tromey.com>
3766
3767 * expop.h (class unop_addr_operation) <get_expression>: New
3768 method.
3769 * f-lang.c (fortran_undetermined::value_subarray)
3770 (fortran_undetermined::evaluate): New methods.
3771 (fortran_prepare_argument): New overload.
3772 * f-exp.h (class fortran_range_operation)
3773 (class fortran_undetermined): New classes.
3774
3775 2021-03-08 Tom Tromey <tom@tromey.com>
3776
3777 * rust-lang.c (rust_structop::evaluate_funcall): New method.
3778 * rust-exp.h (class rust_structop) <evaluate_funcall>: Declare
3779 method.
3780
3781 2021-03-08 Tom Tromey <tom@tromey.com>
3782
3783 * expression.h (class operation) <evaluate_funcall>: New methods.
3784 * expop.h (class scope_operation) <evaluate_funcall>: New method.
3785 (class var_value_operation) <evaluate_funcall>: New method.
3786 (class structop_base_operation) <evaluate_funcall>: New method.
3787 (class var_msym_value_operation) <evaluate_funcall>: New method.
3788 (class structop_member_base): New class.
3789 (class structop_member_operation): Derive from
3790 structop_member_base.
3791 (class structop_mptr_operation): Derive from
3792 structop_member_base.
3793 (class funcall_operation): New class.
3794 * eval.c (operation::evaluate_funcall)
3795 (var_value_operation::evaluate_funcall)
3796 (scope_operation::evaluate_funcall)
3797 (structop_member_base::evaluate_funcall)
3798 (structop_base_operation::evaluate_funcall): New methods.
3799
3800 2021-03-08 Tom Tromey <tom@tromey.com>
3801
3802 * expop.h (class array_operation): New.
3803 * eval.c (array_operation::evaluate_struct_tuple)
3804 (array_operation::evaluate): New methods.
3805
3806 2021-03-08 Tom Tromey <tom@tromey.com>
3807
3808 * expop.h (class adl_func_operation): New.
3809 * eval.c (adl_func_operation::evaluate): New method.
3810
3811 2021-03-08 Tom Tromey <tom@tromey.com>
3812
3813 * ada-lang.c (ada_unop_in_range): No longer static.
3814 * ada-exp.h (class ada_unop_range_operation): New.
3815
3816 2021-03-08 Tom Tromey <tom@tromey.com>
3817
3818 * ada-lang.c (ada_unop_neg, ada_atr_tag, ada_atr_size, ada_abs):
3819 No longer static.
3820 * ada-exp.h (ada_neg_operation, ada_atr_tag_operation)
3821 (ada_atr_size_operation, ada_abs_operation): New typedefs.
3822
3823 2021-03-08 Tom Tromey <tom@tromey.com>
3824
3825 * expop.h (class logical_and_operation)
3826 (class logical_or_operation): New.
3827 * eval.c (logical_and_operation::evaluate)
3828 (logical_or_operation::evaluate): New methods.
3829 * ax-gdb.c (logical_and_operation::do_generate_ax)
3830 (logical_or_operation::do_generate_ax): New methods.
3831
3832 2021-03-08 Tom Tromey <tom@tromey.com>
3833
3834 * m2-lang.c (eval_op_m2_high, eval_op_m2_subscript): No longer
3835 static.
3836 * m2-exp.h: New file.
3837
3838 2021-03-08 Tom Tromey <tom@tromey.com>
3839
3840 * rust-lang.c (rust_aggregate_operation::evaluate): New method.
3841 * rust-exp.h (class rust_aggregate_operation): New.
3842
3843 2021-03-08 Tom Tromey <tom@tromey.com>
3844
3845 * rust-lang.c (eval_op_rust_struct_anon, eval_op_rust_structop):
3846 No longer static.
3847 * rust-exp.h (class rust_struct_anon): New.
3848 (class rust_structop): New.
3849
3850 2021-03-08 Tom Tromey <tom@tromey.com>
3851
3852 * rust-lang.c (rust_range): No longer static.
3853 * rust-exp.h (class rust_range_operation): New.
3854
3855 2021-03-08 Tom Tromey <tom@tromey.com>
3856
3857 * rust-lang.c (rust_subscript): No longer static.
3858 * rust-exp.h (class rust_subscript_operation): New.
3859
3860 2021-03-08 Tom Tromey <tom@tromey.com>
3861
3862 * rust-lang.c (eval_op_rust_ind): No longer static. Add "opcode"
3863 parameter.
3864 (rust_evaluate_subexp): Update.
3865 * rust-exp.h (class rust_unop_ind_operation): New.
3866
3867 2021-03-08 Tom Tromey <tom@tromey.com>
3868
3869 * rust-lang.c (eval_op_rust_complement, eval_op_rust_array): No
3870 longer static. Add "opcode" parameter.
3871 (rust_evaluate_subexp): Update.
3872 * rust-exp.h: New file.
3873
3874 2021-03-08 Tom Tromey <tom@tromey.com>
3875
3876 * f-lang.c (eval_op_f_abs, eval_op_f_mod, eval_op_f_ceil)
3877 (eval_op_f_floor, eval_op_f_modulo, eval_op_f_cmplx)
3878 (eval_op_f_kind): No longer static. Add "opcode" parameter.
3879 (evaluate_subexp_f): Update.
3880 * f-exp.h: New file.
3881
3882 2021-03-08 Tom Tromey <tom@tromey.com>
3883
3884 * ada-lang.c (ada_ternop_range_operation::evaluate): New method.
3885 * ada-exp.h (class ada_ternop_range_operation): New.
3886
3887 2021-03-08 Tom Tromey <tom@tromey.com>
3888
3889 * ada-lang.c (ada_qual_operation::evaluate): New method.
3890 * ada-exp.h (class ada_qual_operation): New.
3891
3892 2021-03-08 Tom Tromey <tom@tromey.com>
3893
3894 * ada-lang.c (ada_string_operation::evaluate): New method.
3895 * ada-exp.h (class ada_string_operation): New.
3896
3897 2021-03-08 Tom Tromey <tom@tromey.com>
3898
3899 * ada-lang.c (ada_wrapped_operation::evaluate): New method.
3900 * ada-exp.h: New file.
3901
3902 2021-03-08 Tom Tromey <tom@tromey.com>
3903
3904 * expop.h (class multi_subscript_operation): New.
3905 * eval.c (multi_subscript_operation::evaluate): New method.
3906
3907 2021-03-08 Tom Tromey <tom@tromey.com>
3908
3909 * eval.c (objc_msgcall_operation::evaluate): New method.
3910 * c-exp.h (class objc_msgcall_operation): New.
3911
3912 2021-03-08 Tom Tromey <tom@tromey.com>
3913
3914 * expop.h (class var_value_operation): New.
3915 * eval.c (var_value_operation::evaluate)
3916 (var_value_operation::evaluate_for_address)
3917 (var_value_operation::evaluate_with_coercion)
3918 (var_value_operation::evaluate_for_sizeof)
3919 (var_value_operation::evaluate_for_cast): New methods.
3920 * ax-gdb.c (var_value_operation::do_generate_ax): New method.
3921
3922 2021-03-08 Tom Tromey <tom@tromey.com>
3923
3924 * expop.h (cxx_cast_ftype): New typedef.
3925 (cxx_cast_operation): New template.
3926 (dynamic_cast_operation, reinterpret_cast_operation): New
3927 typedefs.
3928
3929 2021-03-08 Tom Tromey <tom@tromey.com>
3930
3931 * expop.h (class unop_cast_type_operation): New.
3932 * ax-gdb.c (unop_cast_type_operation::do_generate_ax): New
3933 method.
3934
3935 2021-03-08 Tom Tromey <tom@tromey.com>
3936
3937 * expop.h (class unop_cast_operation): New.
3938 * ax-gdb.c (unop_cast_operation::do_generate_ax): New method.
3939
3940 2021-03-08 Tom Tromey <tom@tromey.com>
3941
3942 * expop.h (class assign_modify_operation): New.
3943 * eval.c (eval_binop_assign_modify): No longer static.
3944 * ax-gdb.c (assign_modify_operation::do_generate_ax): New method.
3945
3946 2021-03-08 Tom Tromey <tom@tromey.com>
3947
3948 * expop.h (class assign_operation): New.
3949 * ax-gdb.c (assign_operation::do_generate_ax): New method.
3950
3951 2021-03-08 Tom Tromey <tom@tromey.com>
3952
3953 * expop.h (class type_instance_operation): New.
3954 * eval.c (type_instance_operation::evaluate): New method.
3955
3956 2021-03-08 Tom Tromey <tom@tromey.com>
3957
3958 * expop.h (class op_this_operation): New.
3959 * ax-gdb.c (op_this_operation::do_generate_ax): New method.
3960
3961 2021-03-08 Tom Tromey <tom@tromey.com>
3962
3963 * expop.h (class unop_memval_operation)
3964 (class unop_memval_type_operation): New.
3965 * eval.c (eval_op_memval): No longer static.
3966 (unop_memval_operation::evaluate_for_address)
3967 (unop_memval_type_operation::evaluate_for_address)
3968 (unop_memval_operation::evaluate_for_sizeof)
3969 (unop_memval_type_operation::evaluate_for_sizeof): New methods.
3970 * ax-gdb.c (unop_memval_operation::do_generate_ax)
3971 (unop_memval_type_operation::do_generate_ax): New methods.
3972
3973 2021-03-08 Tom Tromey <tom@tromey.com>
3974
3975 * expop.h (class unop_alignof_operation): New.
3976 * eval.c (eval_op_alignof): No longer static.
3977
3978 2021-03-08 Tom Tromey <tom@tromey.com>
3979
3980 * expop.h (class unop_sizeof_operation): New.
3981 * ax-gdb.c (unop_sizeof_operation::do_generate_ax): New method.
3982
3983 2021-03-08 Tom Tromey <tom@tromey.com>
3984
3985 * expop.h (class unop_addr_operation): New.
3986 * ax-gdb.c (gen_expr_unop) <case UNOP_ADDR>: New.
3987
3988 2021-03-08 Tom Tromey <tom@tromey.com>
3989
3990 * expop.h (class typeid_operation): New.
3991
3992 2021-03-08 Tom Tromey <tom@tromey.com>
3993
3994 * expop.h (class decltype_operation): New.
3995
3996 2021-03-08 Tom Tromey <tom@tromey.com>
3997
3998 * expop.h (class typeof_operation): New.
3999
4000 2021-03-08 Tom Tromey <tom@tromey.com>
4001
4002 * expop.h (class type_operation): New.
4003 * eval.c (eval_op_type): No longer static.
4004
4005 2021-03-08 Tom Tromey <tom@tromey.com>
4006
4007 * expop.h (class unop_ind_base_operation)
4008 (class unop_ind_operation): New.
4009 * eval.c (eval_op_ind): No longer static. Remove "op" parameter.
4010 (unop_ind_base_operation::evaluate_for_address)
4011 (unop_ind_base_operation::evaluate_for_sizeof): New method.
4012 * ax-gdb.c (gen_expr_unop) <case UNOP_IND>: New.
4013
4014 2021-03-08 Tom Tromey <tom@tromey.com>
4015
4016 * expop.h (unop_incr_operation): New template.
4017 (preinc_operation, predec_operation, postinc_operation)
4018 (postdec_operation): New typedefs.
4019 * eval.c (eval_op_preinc, eval_op_predec, eval_op_postinc)
4020 (eval_op_postdec): No longer static.
4021
4022 2021-03-08 Tom Tromey <tom@tromey.com>
4023
4024 * expop.h (unary_ftype): New typedef.
4025 (unop_operation, usual_ax_binop_operation): New templates.
4026 (unary_plus_operation, unary_neg_operation)
4027 (unary_complement_operation, unary_logical_not_operation): New
4028 typedefs.
4029 * eval.c (eval_op_plus, eval_op_neg, eval_op_complement)
4030 (eval_op_lognot): No longer static.
4031 * ax-gdb.c (gen_expr_unop): New function.
4032
4033 2021-03-08 Tom Tromey <tom@tromey.com>
4034
4035 * ax-gdb.c (comma_operation::do_generate_ax): New method.
4036
4037 2021-03-08 Tom Tromey <tom@tromey.com>
4038
4039 * expop.h (class repeat_operation): New.
4040 * eval.c (eval_op_repeat): No longer static. Remove "op"
4041 parameter.
4042 (evaluate_subexp_standard): Update.
4043 * ax-gdb.c (repeat_operation::do_generate_ax): New method.
4044
4045 2021-03-08 Tom Tromey <tom@tromey.com>
4046
4047 * expop.h (class comparison_operation): New.
4048 (equal_operation, notequal_operation, less_operation)
4049 (gtr_operation, geq_operation, leq_operation): New typedefs.
4050 * eval.c (eval_op_equal, eval_op_notequal, eval_op_less)
4051 (eval_op_gtr, eval_op_geq, eval_op_leq): No longer static.
4052
4053 2021-03-08 Tom Tromey <tom@tromey.com>
4054
4055 * expop.h (class subscript_operation): New.
4056 * eval.c (eval_op_subscript): No longer static.
4057
4058 2021-03-08 Tom Tromey <tom@tromey.com>
4059
4060 * expop.h (class binop_operation, class usual_ax_binop_operation):
4061 New.
4062 (exp_operation, intdiv_operation, mod_operation, mul_operation)
4063 (div_operation, rem_operation, lsh_operation, rsh_operation)
4064 (bitwise_and_operation, bitwise_ior_operation)
4065 (bitwise_xor_operation): New typedefs.
4066 * eval.c (eval_op_binary): No longer static.
4067
4068 2021-03-08 Tom Tromey <tom@tromey.com>
4069
4070 * expop.h (class sub_operation): New.
4071 * eval.c (eval_op_sub): No longer static. Remove "op" parameter.
4072 (evaluate_subexp_standard): Update.
4073
4074 2021-03-08 Tom Tromey <tom@tromey.com>
4075
4076 * expop.h (class add_operation): New.
4077 * eval.c (eval_op_add): No longer static. Remove "op" parameter.
4078 (evaluate_subexp_standard): Update.
4079
4080 2021-03-08 Tom Tromey <tom@tromey.com>
4081
4082 * expop.h (class concat_operation): New.
4083 * eval.c (eval_op_concat): No longer static. Remove "op"
4084 parameter.
4085 (evaluate_subexp_standard): Update.
4086
4087 2021-03-08 Tom Tromey <tom@tromey.com>
4088
4089 * expop.h (class structop_member_operation)
4090 (class structop_mptr_operation): New.
4091 * eval.c (eval_op_member): No longer static.
4092
4093 2021-03-08 Tom Tromey <tom@tromey.com>
4094
4095 * expop.h (class structop_ptr_operation): New.
4096 * eval.c (eval_op_structop_ptr): No longer static. Remove "op"
4097 parameter.
4098
4099 2021-03-08 Tom Tromey <tom@tromey.com>
4100
4101 * expop.h (class structop_base_operation)
4102 (class structop_operation): New.
4103 * eval.c (eval_op_structop_struct): No longer static.
4104
4105 2021-03-08 Tom Tromey <tom@tromey.com>
4106
4107 * expop.h (class complex_operation): New.
4108
4109 2021-03-08 Tom Tromey <tom@tromey.com>
4110
4111 * eval.c (eval_op_objc_selector): No longer static.
4112 * c-exp.h (class objc_selector_operation): New.
4113
4114 2021-03-08 Tom Tromey <tom@tromey.com>
4115
4116 * eval.c: Include c-exp.h.
4117 * c-exp.h (class objc_nsstring_operation): New.
4118
4119 2021-03-08 Tom Tromey <tom@tromey.com>
4120
4121 * c-lang.c (c_string_operation::evaluate): New method.
4122 * c-exp.h: New file.
4123
4124 2021-03-08 Tom Tromey <tom@tromey.com>
4125
4126 * expop.h (class ternop_cond_operation): New.
4127 * ax-gdb.c (ternop_cond_operation::do_generate_ax): New method.
4128
4129 2021-03-08 Tom Tromey <tom@tromey.com>
4130
4131 * expop.h (class ternop_slice_operation): New.
4132 * eval.c (eval_op_ternop): No longer static.
4133
4134 2021-03-08 Tom Tromey <tom@tromey.com>
4135
4136 * expop.h (class string_operation): New.
4137 * eval.c (eval_op_string): No longer static.
4138
4139 2021-03-08 Tom Tromey <tom@tromey.com>
4140
4141 * expop.h (class internalvar_operation): New.
4142 * ax-gdb.c (internalvar_operation::do_generate_ax): New method.
4143
4144 2021-03-08 Tom Tromey <tom@tromey.com>
4145
4146 * expop.h (class bool_operation): New.
4147
4148 2021-03-08 Tom Tromey <tom@tromey.com>
4149
4150 * expop.h (class register_operation): New.
4151 * eval.c (eval_op_register): No longer static.
4152 * ax-gdb.c (register_operation::do_generate_ax): New method.
4153
4154 2021-03-08 Tom Tromey <tom@tromey.com>
4155
4156 * expop.h (class last_operation): New.
4157
4158 2021-03-08 Tom Tromey <tom@tromey.com>
4159
4160 * expop.h (class func_static_var_operation): New.
4161 * eval.c (eval_op_func_static_var): No longer static.
4162
4163 2021-03-08 Tom Tromey <tom@tromey.com>
4164
4165 * expop.h (class var_entry_value_operation): New.
4166 * eval.c (eval_op_var_entry_value): No longer static.
4167
4168 2021-03-08 Tom Tromey <tom@tromey.com>
4169
4170 * expression.h (class operation) <set_outermost>: New method.
4171 * expop.h (class var_msym_value_operation): New.
4172 * eval.c (eval_op_var_msym_value): No longer static.
4173 (var_msym_value_operation::evaluate_for_address)
4174 (var_msym_value_operation::evaluate_for_sizeof)
4175 (var_msym_value_operation::evaluate_for_cast): New methods.
4176 * ax-gdb.c (var_msym_value_operation::do_generate_ax): New
4177 method.
4178
4179 2021-03-08 Tom Tromey <tom@tromey.com>
4180
4181 * expop.h (class long_const_operation): New.
4182 * ax-gdb.c (long_const_operation::do_generate_ax): New method.
4183
4184 2021-03-08 Tom Tromey <tom@tromey.com>
4185
4186 * expop.h (class scope_operation): New.
4187 * eval.c (eval_op_scope): No longer static.
4188 (scope_operation::evaluate_for_address): New method.
4189 * ax-gdb.c (scope_operation::do_generate_ax): New method.
4190
4191 2021-03-08 Tom Tromey <tom@tromey.com>
4192
4193 * expprint.c (float_const_operation::dump): New method.
4194 * expop.h (float_data): New typedef.
4195 (class float_const_operation): New.
4196
4197 2021-03-08 Tom Tromey <tom@tromey.com>
4198
4199 * expop.h (gen_expr_binop, gen_expr_structop): Declare.
4200 * ax-gdb.c (gen_expr_binop): New function.
4201 (gen_expr_structop): Likewise.
4202
4203 2021-03-08 Tom Tromey <tom@tromey.com>
4204
4205 * expprint.c (expr::dump_for_expression): New functions.
4206 * expop.h (dump_for_expression): New overloads.
4207 (tuple_holding_operation::dump, tuple_holding_operation::do_dump):
4208 Update.
4209
4210 2021-03-08 Tom Tromey <tom@tromey.com>
4211
4212 * expression.h (expr::operation): New class.
4213 (expr::make_operation): New function.
4214 (expr::operation_up): New typedef.
4215 * expop.h: New file.
4216 * eval.c (operation::evaluate_for_cast)
4217 (operation::evaluate_for_address, operation::evaluate_for_sizeof):
4218 New methods.
4219 * ax-gdb.c (operation::generate_ax): New method.
4220
4221 2021-03-08 Tom Tromey <tom@tromey.com>
4222
4223 * ax-gdb.c (gen_expr_binop_rest): Remove "pc" parameter.
4224 (gen_expr_binop_rest): New overload.
4225
4226 2021-03-08 Tom Tromey <tom@tromey.com>
4227
4228 * eval.c (eval_multi_subscript): New function.
4229 (evaluate_subexp_standard): Use it.
4230
4231 2021-03-08 Tom Tromey <tom@tromey.com>
4232
4233 * ada-lang.c (ada_binop_exp): New function.
4234 (ada_evaluate_subexp): Use it.
4235
4236 2021-03-08 Tom Tromey <tom@tromey.com>
4237
4238 * ada-lang.c (ada_val_atr): Rename from value_val_atr. Change
4239 parameters.
4240 (ada_evaluate_subexp): Use it.
4241
4242 2021-03-08 Tom Tromey <tom@tromey.com>
4243
4244 * ada-lang.c (ada_binop_minmax): New function.
4245 (ada_evaluate_subexp): Use it.
4246
4247 2021-03-08 Tom Tromey <tom@tromey.com>
4248
4249 * ada-lang.c (ada_unop_atr): New function.
4250 (ada_evaluate_subexp): Use it.
4251
4252 2021-03-08 Tom Tromey <tom@tromey.com>
4253
4254 * ada-lang.c (ada_binop_in_bounds): New function.
4255 (ada_evaluate_subexp): Use it.
4256
4257 2021-03-08 Tom Tromey <tom@tromey.com>
4258
4259 * ada-lang.c (ada_ternop_slice): New function.
4260 (ada_evaluate_subexp): Use it.
4261
4262 2021-03-08 Tom Tromey <tom@tromey.com>
4263
4264 * ada-lang.c (ada_equal_binop): New function.
4265 (ada_evaluate_subexp): Use it.
4266
4267 2021-03-08 Tom Tromey <tom@tromey.com>
4268
4269 * ada-lang.c (ada_mult_binop): New function.
4270 (ada_evaluate_subexp): Use it.
4271
4272 2021-03-08 Tom Tromey <tom@tromey.com>
4273
4274 * ada-lang.c (ada_abs): New function.
4275 (ada_evaluate_subexp): Use it.
4276
4277 2021-03-08 Tom Tromey <tom@tromey.com>
4278
4279 * ada-lang.c (ada_atr_size): New function.
4280 (ada_evaluate_subexp): Use it.
4281
4282 2021-03-08 Tom Tromey <tom@tromey.com>
4283
4284 * ada-lang.c (ada_atr_tag): New function.
4285 (ada_evaluate_subexp): Use it.
4286
4287 2021-03-08 Tom Tromey <tom@tromey.com>
4288
4289 * ada-lang.c (ada_unop_in_range): New function.
4290 (ada_evaluate_subexp): Use it.
4291
4292 2021-03-08 Tom Tromey <tom@tromey.com>
4293
4294 * ada-lang.c (ada_unop_neg): New function.
4295 (ada_evaluate_subexp): Use it.
4296
4297 2021-03-08 Tom Tromey <tom@tromey.com>
4298
4299 * ada-lang.c (eval_ternop_in_range): New function.
4300 (ada_evaluate_subexp): Use it.
4301
4302 2021-03-08 Tom Tromey <tom@tromey.com>
4303
4304 * opencl-lang.c (eval_opencl_assign): New function.
4305 (evaluate_subexp_opencl): Use it.
4306
4307 2021-03-08 Tom Tromey <tom@tromey.com>
4308
4309 * eval.c (eval_op_objc_msgcall): New function.
4310 (evaluate_subexp_standard): Use it.
4311
4312 2021-03-08 Tom Tromey <tom@tromey.com>
4313
4314 * eval.c (eval_binop_assign_modify): New function.
4315 (evaluate_subexp_standard): Use it.
4316
4317 2021-03-08 Tom Tromey <tom@tromey.com>
4318
4319 * m2-lang.c (eval_op_m2_subscript): New function.
4320 (evaluate_subexp_modula2): Use it.
4321
4322 2021-03-08 Tom Tromey <tom@tromey.com>
4323
4324 * m2-lang.c (eval_op_m2_high): New function.
4325 (evaluate_subexp_modula2): Use it.
4326
4327 2021-03-08 Tom Tromey <tom@tromey.com>
4328
4329 * eval.c (evaluate_subexp_for_address_base): New function.
4330 (evaluate_subexp_for_address): Use it.
4331 (evaluate_subexp_for_sizeof_base): New function.
4332 (evaluate_subexp_for_sizeof): Use it.
4333
4334 2021-03-08 Tom Tromey <tom@tromey.com>
4335
4336 * rust-lang.c (eval_op_rust_structop): New function.
4337 (rust_evaluate_subexp): Use it.
4338
4339 2021-03-08 Tom Tromey <tom@tromey.com>
4340
4341 * rust-lang.c (eval_op_rust_struct_anon): New function.
4342 (rust_evaluate_subexp): Use it.
4343
4344 2021-03-08 Tom Tromey <tom@tromey.com>
4345
4346 * rust-lang.c (eval_op_rust_array): New function.
4347 (rust_evaluate_subexp): Use it.
4348
4349 2021-03-08 Tom Tromey <tom@tromey.com>
4350
4351 * rust-lang.c (eval_op_rust_complement): New function.
4352 (rust_evaluate_subexp): Use it.
4353
4354 2021-03-08 Tom Tromey <tom@tromey.com>
4355
4356 * rust-lang.c (eval_op_rust_ind): New function.
4357 (rust_evaluate_subexp): Use it.
4358
4359 2021-03-08 Tom Tromey <tom@tromey.com>
4360
4361 * rust-lang.c (rust_subscript): Change parameters.
4362 (rust_evaluate_subexp): Update.
4363
4364 2021-03-08 Tom Tromey <tom@tromey.com>
4365
4366 * rust-lang.c (rust_range): Change parameters.
4367 (rust_evaluate_subexp): Update.
4368
4369 2021-03-08 Tom Tromey <tom@tromey.com>
4370
4371 * f-lang.c (eval_op_f_allocated): New function.
4372 (evaluate_subexp_f): Use it.
4373
4374 2021-03-08 Tom Tromey <tom@tromey.com>
4375
4376 * f-lang.c (fortran_require_array): New function.
4377 (evaluate_subexp_f): Use it.
4378
4379 2021-03-08 Tom Tromey <tom@tromey.com>
4380
4381 * f-lang.c (eval_op_f_kind): New function.
4382 (evaluate_subexp_f): Use it.
4383
4384 2021-03-08 Tom Tromey <tom@tromey.com>
4385
4386 * f-lang.c (eval_op_f_cmplx): New function.
4387 (evaluate_subexp_f): Use it.
4388
4389 2021-03-08 Tom Tromey <tom@tromey.com>
4390
4391 * f-lang.c (eval_op_f_modulo): New function.
4392 (evaluate_subexp_f): Use it.
4393
4394 2021-03-08 Tom Tromey <tom@tromey.com>
4395
4396 * f-lang.c (eval_op_f_floor): New function.
4397 (evaluate_subexp_f): Use it.
4398
4399 2021-03-08 Tom Tromey <tom@tromey.com>
4400
4401 * f-lang.c (eval_op_f_ceil): New function.
4402 (evaluate_subexp_f): Use it.
4403
4404 2021-03-08 Tom Tromey <tom@tromey.com>
4405
4406 * f-lang.c (eval_op_f_mod): New function.
4407 (evaluate_subexp_f): Use it.
4408
4409 2021-03-08 Tom Tromey <tom@tromey.com>
4410
4411 * f-lang.c (eval_op_f_abs): New function.
4412 (evaluate_subexp_f): Use it.
4413
4414 2021-03-08 Tom Tromey <tom@tromey.com>
4415
4416 * eval.c (eval_op_type): New function.
4417 (evaluate_subexp_standard): Use it.
4418
4419 2021-03-08 Tom Tromey <tom@tromey.com>
4420
4421 * eval.c (eval_op_postdec): New function.
4422 (evaluate_subexp_standard): Use it.
4423
4424 2021-03-08 Tom Tromey <tom@tromey.com>
4425
4426 * eval.c (eval_op_postinc): New function.
4427 (evaluate_subexp_standard): Use it.
4428
4429 2021-03-08 Tom Tromey <tom@tromey.com>
4430
4431 * eval.c (eval_op_predec): New file.
4432 (evaluate_subexp_standard): Use it.
4433
4434 2021-03-08 Tom Tromey <tom@tromey.com>
4435
4436 * eval.c (eval_op_preinc): New function.
4437 (evaluate_subexp_standard): Use it.
4438
4439 2021-03-08 Tom Tromey <tom@tromey.com>
4440
4441 * eval.c (eval_op_memval): New function.
4442 (evaluate_subexp_standard): Use it.
4443
4444 2021-03-08 Tom Tromey <tom@tromey.com>
4445
4446 * eval.c (eval_op_alignof): New function.
4447 (evaluate_subexp_standard): Use it.
4448
4449 2021-03-08 Tom Tromey <tom@tromey.com>
4450
4451 * eval.c (eval_op_ind): New function.
4452 (evaluate_subexp_standard): Use it.
4453
4454 2021-03-08 Tom Tromey <tom@tromey.com>
4455
4456 * eval.c (eval_op_lognot): New function.
4457 (evaluate_subexp_standard): Use it.
4458
4459 2021-03-08 Tom Tromey <tom@tromey.com>
4460
4461 * eval.c (eval_op_complement): New function.
4462 (evaluate_subexp_standard): Use it.
4463
4464 2021-03-08 Tom Tromey <tom@tromey.com>
4465
4466 * eval.c (eval_op_neg): New function.
4467 (evaluate_subexp_standard): Use it.
4468
4469 2021-03-08 Tom Tromey <tom@tromey.com>
4470
4471 * eval.c (eval_op_plus): New function.
4472 (evaluate_subexp_standard): Use it.
4473
4474 2021-03-08 Tom Tromey <tom@tromey.com>
4475
4476 * eval.c (eval_op_repeat): New function.
4477 (evaluate_subexp_standard): Use it.
4478
4479 2021-03-08 Tom Tromey <tom@tromey.com>
4480
4481 * eval.c (eval_op_leq): New function.
4482 (evaluate_subexp_standard): Use it.
4483
4484 2021-03-08 Tom Tromey <tom@tromey.com>
4485
4486 * eval.c (eval_op_geq): New function.
4487 (evaluate_subexp_standard): Use it.
4488
4489 2021-03-08 Tom Tromey <tom@tromey.com>
4490
4491 * eval.c (eval_op_gtr): New function.
4492 (evaluate_subexp_standard): Use it.
4493
4494 2021-03-08 Tom Tromey <tom@tromey.com>
4495
4496 * eval.c (eval_op_less): New function.
4497 (evaluate_subexp_standard): Use it.
4498
4499 2021-03-08 Tom Tromey <tom@tromey.com>
4500
4501 * eval.c (eval_op_notequal): New function.
4502 (evaluate_subexp_standard): Use it.
4503
4504 2021-03-08 Tom Tromey <tom@tromey.com>
4505
4506 * eval.c (eval_op_equal): New function.
4507 (evaluate_subexp_standard): Use it.
4508
4509 2021-03-08 Tom Tromey <tom@tromey.com>
4510
4511 * eval.c (eval_op_subscript): New function.
4512 (evaluate_subexp_standard): Use it.
4513
4514 2021-03-08 Tom Tromey <tom@tromey.com>
4515
4516 * eval.c (eval_op_binary): New function.
4517 (evaluate_subexp_standard): Use it.
4518
4519 2021-03-08 Tom Tromey <tom@tromey.com>
4520
4521 * eval.c (eval_op_sub): New function.
4522 (evaluate_subexp_standard): Use it.
4523
4524 2021-03-08 Tom Tromey <tom@tromey.com>
4525
4526 * eval.c (eval_op_add): New function.
4527 (evaluate_subexp_standard): Use it.
4528
4529 2021-03-08 Tom Tromey <tom@tromey.com>
4530
4531 * eval.c (eval_op_member): New function.
4532 (evaluate_subexp_standard): Use it.
4533
4534 2021-03-08 Tom Tromey <tom@tromey.com>
4535
4536 * eval.c (eval_op_structop_ptr): New function.
4537 (evaluate_subexp_standard): Use it.
4538
4539 2021-03-08 Tom Tromey <tom@tromey.com>
4540
4541 * eval.c (eval_op_structop_struct): New function.
4542 (evaluate_subexp_standard): Use it.
4543
4544 2021-03-08 Tom Tromey <tom@tromey.com>
4545
4546 * eval.c (eval_op_ternop): New function.
4547 (evaluate_subexp_standard): Use it.
4548
4549 2021-03-08 Tom Tromey <tom@tromey.com>
4550
4551 * eval.c (eval_op_concat): New function.
4552 (evaluate_subexp_standard): Use it.
4553
4554 2021-03-08 Tom Tromey <tom@tromey.com>
4555
4556 * eval.c (eval_op_objc_selector): New function.
4557 (evaluate_subexp_standard): Use it.
4558
4559 2021-03-08 Tom Tromey <tom@tromey.com>
4560
4561 * eval.c (eval_op_string): New function.
4562 (evaluate_subexp_standard): Use it.
4563
4564 2021-03-08 Tom Tromey <tom@tromey.com>
4565
4566 * eval.c (eval_op_register): New function.
4567 (evaluate_subexp_standard): Use it.
4568
4569 2021-03-08 Tom Tromey <tom@tromey.com>
4570
4571 * eval.c (eval_op_func_static_var): New function.
4572 (evaluate_subexp_standard): Use it.
4573
4574 2021-03-08 Tom Tromey <tom@tromey.com>
4575
4576 * eval.c (eval_op_var_msym_value): New function.
4577 (evaluate_subexp_standard): Use it.
4578
4579 2021-03-08 Tom Tromey <tom@tromey.com>
4580
4581 * eval.c (eval_op_var_entry_value): New function.
4582 (evaluate_subexp_standard): Use it.
4583
4584 2021-03-08 Tom Tromey <tom@tromey.com>
4585
4586 * eval.c (eval_op_scope): New function.
4587 (evaluate_subexp_standard): Use it.
4588
4589 2021-03-06 Chernov Sergey <klen_s@mail.ru>
4590
4591 PR gdb/27528:
4592 * ada-lang.c (ada_fold_name): Use gdb::to_string.
4593
4594 2021-03-06 Tom Tromey <tom@tromey.com>
4595
4596 * dwarf2/sect-names.h (dwarf2_elf_names): Declare.
4597 * dwarf2/read.h (dwarf2_get_dwz_file): Move to dwz.h.
4598 * dwarf2/read.c (dwarf2_elf_names): No longer static.
4599 (locate_dwz_sections, dwz_search_other_debugdirs)
4600 (dwarf2_get_dwz_file): Move to dwz.c.
4601 * dwarf2/dwz.h (dwarf2_get_dwz_file): Move declaration from
4602 read.h.
4603 * dwarf2/dwz.c (locate_dwz_sections, dwz_search_other_debugdirs)
4604 (dwarf2_get_dwz_file): Move from read.c.
4605
4606 2021-03-06 Tom Tromey <tom@tromey.com>
4607
4608 * debuginfod-support.h: Include scoped_fd.h.
4609
4610 2021-03-06 Tom Tromey <tom@tromey.com>
4611
4612 * dwarf2/read.h (dwarf2_get_dwz_file): Add 'require' parameter.
4613 * dwarf2/read.c (dwarf2_get_dwz_file): Add 'require' parameter.
4614 (get_abbrev_section_for_cu, read_attribute_value)
4615 (get_debug_line_section): Update.
4616 * dwarf2/macro.c (dwarf_decode_macro_bytes): Update.
4617
4618 2021-03-06 Tom Tromey <tom@tromey.com>
4619
4620 * dwarf2/sect-names.h (struct dwarf2_section_names) <matches>: New
4621 method.
4622 * dwarf2/read.c (section_is_p): Remove.
4623 (dwarf2_per_bfd::locate_sections)
4624 (dwarf2_per_bfd::locate_sections, locate_dwz_sections)
4625 (locate_v1_virtual_dwo_sections, dwarf2_locate_dwo_sections)
4626 (dwarf2_locate_common_dwp_sections)
4627 (dwarf2_locate_v2_dwp_sections, dwarf2_locate_v5_dwp_sections):
4628 Update.
4629
4630 2021-03-06 Tom Tromey <tom@tromey.com>
4631
4632 * xcoffread.c: Include sect-names.h.
4633 * symfile.h (struct dwarf2_section_names, struct
4634 dwarf2_debug_sections): Move to dwarf2/sect-names.h.
4635 * dwarf2/sect-names.h: New file, from symfile.h.
4636 * dwarf2/read.c: Include sect-names.h.
4637
4638 2021-03-06 Tom Tromey <tom@tromey.com>
4639
4640 * dwarf2/read.c (read_attribute): Make 'abbrev' const.
4641 * dwarf2/abbrev.c (abbrev_table::alloc_abbrev): Remove.
4642 (abbrev_table::read): Update.
4643 * dwarf2/abbrev.h (struct attr_abbrev): Move earlier.
4644 (struct abbrev_info): Reformat.
4645 <attrs>: Now an array.
4646 (struct abbrev_table) <alloc_abbrev>: Remove.
4647
4648 2021-03-06 Weimin Pan <weimin.pan@oracle.com>
4649
4650 * ctfread.c (ctf_psymtab_add_enums): New function.
4651 (ctf_psymtab_type_cb): call ctf_psymtab_add_enums.
4652
4653 2021-03-06 Weimin Pan <weimin.pan@oracle.com>
4654
4655 * ctfread.c (read_func_kind_type): Set up function arguments.
4656
4657 2021-03-05 Craig Blackmore <craig.blackmore@embecosm.com>
4658 Andrew Burgess <andrew.burgess@embecosm.com>
4659
4660 * riscv-none-tdep.c: Add 'user-regs.h' and 'target-description.h'
4661 includes.
4662 (riscv_csrset): New static global.
4663 (riscv_update_csrmap): New function.
4664 (riscv_iterate_over_regset_sections): Process CSRs.
4665
4666 2021-03-05 Andrew Burgess <andrew.burgess@embecosm.com>
4667
4668 * riscv-tdep.c (riscv_feature_name_csr): Define.
4669 (riscv_feature_name_cpu): Define.
4670 (riscv_feature_name_fpu): Define.
4671 (riscv_feature_name_virtual): Define.
4672 (riscv_xreg_feature): Use riscv_feature_name_cpu.
4673 (riscv_freg_feature): Use riscv_feature_name_fpu.
4674 (riscv_virtual_feature): Use riscv_feature_name_virtual.
4675 (riscv_csr_feature): Use riscv_feature_name_csr.
4676 * riscv-tdep.h (riscv_feature_name_csr): Declare.
4677
4678 2021-03-05 Andrew Burgess <andrew.burgess@embecosm.com>
4679 Craig Blackmore <craig.blackmore@embecosm.com>
4680
4681 * Makefile.in (ALL_TARGET_OBS): Add riscv-none-tdep.o.
4682 (ALLDEPFILES): Add riscv-none-tdep.c.
4683 * configure: Regenerate.
4684 * configure.ac (CONFIG_OBS): Add elf-none-tdep.o when BFD has ELF
4685 support.
4686 * configure.tgt (riscv*-*-*): Include riscv-none-tdep.c.
4687 * elf-none-tdep.c: New file.
4688 * elf-none-tdep.h: New file.
4689 * riscv-none-tdep.c: New file.
4690
4691 2021-03-05 Craig Blackmore <craig.blackmore@embecosm.com>
4692 Andrew Burgess <andrew.burgess@embecosm.com>
4693
4694 * corelow.c: Add 'xml-tdesc.h' include.
4695 (core_target::read_description): Load the target description from
4696 the core file when possible.
4697 * fbsd-tdep.c (fbsd_make_corefile_notes): Add target description
4698 note.
4699 * gcore-elf.c: Add 'gdbsupport/tdesc.h' include.
4700 (gcore_elf_make_tdesc_note): New function.
4701 * gcore-elf.h (gcore_elf_make_tdesc_note): Declare.
4702 * linux-tdep.c (linux_make_corefile_notes): Add target description
4703 note.
4704
4705 2021-03-05 Andrew Burgess <andrew.burgess@embecosm.com>
4706
4707 * Makefile.in (SFILES): Add gcore-elf.c.
4708 (HFILES_NO_SRCDIR): Add gcore-elf.h
4709 * configure: Regenerate.
4710 * configure.ac: Add gcore-elf.o to CONFIG_OBS if we have ELF
4711 support.
4712 * fbsd-tdep.c: Add 'gcore-elf.h' include.
4713 (struct fbsd_collect_regset_section_cb_data): Delete.
4714 (fbsd_collect_regset_section_cb): Delete.
4715 (fbsd_collect_thread_registers): Delete.
4716 (struct fbsd_corefile_thread_data): Delete.
4717 (fbsd_corefile_thread): Delete.
4718 (fbsd_make_corefile_notes): Call
4719 gcore_elf_build_thread_register_notes instead of the now deleted
4720 FreeBSD code.
4721 * gcore-elf.c: New file, the content was moved here from
4722 linux-tdep.c, functions were renamed and given minor cleanup.
4723 * gcore-elf.h: New file.
4724 * gcore.c (gcore_find_signalled_thread): Moved here from
4725 linux-tdep.c and given a new name. Minor cleanups.
4726 * gcore.h (gcore_find_signalled_thread): Declare.
4727 * linux-tdep.c: Add 'gcore.h' and 'gcore-elf.h' includes.
4728 (struct linux_collect_regset_section_cb_data): Delete.
4729 (linux_collect_regset_section_cb): Delete.
4730 (linux_collect_thread_registers): Delete.
4731 (linux_corefile_thread): Call
4732 gcore_elf_build_thread_register_notes.
4733 (find_signalled_thread): Delete.
4734 (linux_make_corefile_notes): Call gcore_find_signalled_thread.
4735
4736 2021-03-04 Simon Marchi <simon.marchi@polymtl.ca>
4737
4738 PR gdb/27147
4739 * sparc-nat.h (sparc_fetch_inferior_registers): Add
4740 process_stratum_target parameter,
4741 sparc_store_inferior_registers): update callers.
4742 * sparc-nat.c (sparc_fetch_inferior_registers,
4743 sparc_store_inferior_registers): Add process_stratum_target
4744 parameter. Switch current thread before calling
4745 sparc_supply_gregset / sparc_collect_rwindow.
4746 (sparc_store_inferior_registers): Likewise.
4747 * sparc-obsd-tdep.c (sparc32obsd_supply_uthread): Add assertion.
4748 (sparc32obsd_collect_uthread): Likewise.
4749 * sparc-tdep.c (sparc_supply_rwindow, sparc_collect_rwindow):
4750 Add assertion.
4751 * sparc64-obsd-tdep.c (sparc64obsd_collect_uthread,
4752 sparc64obsd_supply_uthread): Add assertion.
4753
4754 2021-03-04 Tom Tromey <tromey@adacore.com>
4755
4756 * ada-lang.c (struct match_data) <found_sym>: Now bool.
4757 (aux_add_nonlocal_symbols): Update.
4758 (ada_add_block_symbols): Change "found_sym" to bool.
4759
4760 2021-03-03 Tom Tromey <tromey@adacore.com>
4761
4762 * ada-lang.c (ada_resolve_function): Update comment.
4763 (is_nonfunction, add_symbols_from_enclosing_procs)
4764 (remove_extra_symbols): Likewise.
4765 (struct match_data): Add constructor, initializers.
4766 (add_nonlocal_symbols): Remove memset.
4767 (aux_add_nonlocal_symbols): Update comment.
4768 (ada_add_block_renamings, add_nonlocal_symbols)
4769 (ada_add_all_symbols): Likewise.
4770 * ada-exp.y (write_var_or_type): Clean up trailing whitespace.
4771
4772 2021-03-02 Tom Tromey <tromey@adacore.com>
4773
4774 * ada-lang.c (cast_from_gnat_encoded_fixed_point_type)
4775 (cast_to_gnat_encoded_fixed_point_type): Remove.
4776 (ada_value_cast, ada_evaluate_subexp): Update.
4777 (gnat_encoded_fixed_point_type_info)
4778 (ada_is_gnat_encoded_fixed_point_type)
4779 (gnat_encoded_fixed_point_delta)
4780 (gnat_encoded_fixed_point_scaling_factor): Remove.
4781 * ada-lang.h (ada_is_gnat_encoded_fixed_point_type)
4782 (gnat_encoded_fixed_point_delta)
4783 (gnat_encoded_fixed_point_scaling_factor): Don't declare.
4784 * ada-typeprint.c (print_gnat_encoded_fixed_point_type): Remove.
4785 (ada_print_type): Update.
4786 * ada-valprint.c (ada_value_print_num): Update.
4787 * dwarf2/read.c (ada_get_gnat_encoded_number)
4788 (ada_get_gnat_encoded_ratio): New functions.
4789 (finish_fixed_point_type): Use them. Add parameters.
4790 (GNAT_FIXED_POINT_SUFFIX): New define.
4791 (gnat_encoded_fixed_point_type_info): New function.
4792 (read_base_type): Handle gnat encodings.
4793
4794 2021-03-02 Tom Tromey <tromey@adacore.com>
4795
4796 * ada-lang.c (ada_fold_name, ada_variant_discrim_name)
4797 (ada_enum_name, scan_discrim_bound, to_fixed_range_type): Use
4798 std::string.
4799 (GROW_VECT): Remove.
4800 (grow_vect): Remove.
4801
4802 2021-03-02 Tom Tromey <tromey@adacore.com>
4803
4804 * ada-lang.h (ada_lookup_symbol_list): Return a vector.
4805 * ada-lang.c (resolve_subexp): Update.
4806 (ada_resolve_function): Accept a vector.
4807 (is_nonfunction, add_defn_to_vec)
4808 (add_symbols_from_enclosing_procs): Likewise.
4809 (num_defns_collected, defns_collected): Remove.
4810 (remove_extra_symbols): Return a vector.
4811 (remove_irrelevant_renamings): Return void.
4812 (ada_add_local_symbols): Accept a vector.
4813 (struct match_data) <obstackp>: Remove.
4814 <resultp>: New member.
4815 (aux_add_nonlocal_symbols): Update.
4816 (ada_add_block_renamings, add_nonlocal_symbols)
4817 (ada_add_all_symbols): Accept a vector.
4818 (ada_lookup_symbol_list_worker, ada_lookup_symbol_list): Return a
4819 vector.
4820 (ada_lookup_symbol): Update.
4821 (ada_add_block_symbols): Accept a vector.
4822 (get_var_value, iterate_over_symbols): Update.
4823 * ada-exp.y (block_lookup, write_var_or_type, write_name_assoc):
4824 Update.
4825
4826 2021-03-02 Tom Tromey <tromey@adacore.com>
4827
4828 * ada-lang.c (resolve_subexp): Use any_of and erase-remove idiom.
4829
4830 2021-03-02 Tom Tromey <tromey@adacore.com>
4831
4832 * ada-lang.c (struct ada_symbol_cache) <cache_space>: Now an
4833 auto_obstack.
4834 <root>: Initialize.
4835 (ada_pspace_data): Remove destructor.
4836 <sym_cache>: Now a unique_ptr.
4837 (ada_init_symbol_cache, ada_free_symbol_cache): Remove.
4838 (ada_get_symbol_cache): Use 'new'.
4839 (ada_clear_symbol_cache): Rewrite.
4840
4841 2021-03-02 Tom Tromey <tromey@adacore.com>
4842
4843 * ada-lang.c (add_nonlocal_symbols): Handle case where objfile->sf
4844 is null.
4845
4846 2021-02-27 Lancelot Six <lsix@lancelotsix.com>
4847
4848 PR gdb/27393
4849 * source.c (add_path): Skip empty dirnames.
4850
4851 2021-02-25 Kevin Buettner <kevinb@redhat.com>
4852
4853 * nat/aarch64-sve-linux-ptrace.h: Add comment regarding
4854 include order for <sys/ptrace.h> and <asm/ptrace.h>.
4855
4856 2021-02-25 Simon Marchi <simon.marchi@polymtl.ca>
4857
4858 PR gdb/26861
4859 * target.c (target_mourn_inferior): Only compare pids in
4860 target_mourn_inferior.
4861
4862 2021-02-25 Jan Matyas <jmatyas@codasip.com>
4863
4864 PR gdb/26819
4865 * remote.c (remote_target::start_remote): Ensure the single
4866 thread, automatically added for remote targets without the
4867 concept of threading, is initially in set to the "resumed"
4868 state.
4869 * remote.c (remote_target::add_current_inferior_and_thread):
4870 Add return value - return the main thread.
4871
4872 2021-02-25 Jan Vrany <jan.vrany@labware.com>
4873
4874 * gdb/mi/mi-interp.c (mi_traceframe_changed): Remove trailing \n from output.
4875 (mi_tsv_created): Likewise.
4876 (mi_tsv_deleted): Likewise.
4877
4878 2021-02-25 Tom de Vries <tdevries@suse.de>
4879
4880 PR symtab/27354
4881 * dwarf2/read.c (open_and_init_dwo_file): Use rcuh_kind::COMPILE as
4882 section_kind for &dwo_file->sections.info.
4883
4884 2021-02-25 Andrew Burgess <andrew.burgess@embecosm.com>
4885
4886 PR fortran/26155
4887 * f-lang.c (fortran_argument_convert): Delete declaration.
4888 (fortran_prepare_argument): New function.
4889 (evaluate_subexp_f): Move logic to new function
4890 fortran_prepare_argument.
4891
4892 2021-02-25 Andrew Burgess <andrew.burgess@embecosm.com>
4893
4894 * f-exp.y (f77_keywords): Add 'associated'.
4895 * f-lang.c (fortran_associated): New function.
4896 (evaluate_subexp_f): Handle FORTRAN_ASSOCIATED.
4897 (operator_length_f): Likewise.
4898 (print_unop_or_binop_subexp_f): New function.
4899 (print_subexp_f): Make use of print_unop_or_binop_subexp_f for
4900 FORTRAN_ASSOCIATED, FORTRAN_LBOUND, and FORTRAN_UBOUND.
4901 (dump_subexp_body_f): Handle FORTRAN_ASSOCIATED.
4902 (operator_check_f): Likewise.
4903 * std-operator.def: Add FORTRAN_ASSOCIATED.
4904
4905 2021-02-25 Andrew Burgess <andrew.burgess@embecosm.com>
4906
4907 * f-exp.y (fortran_operators): Add ".xor.".
4908
4909 2021-02-24 Tom de Vries <tdevries@suse.de>
4910
4911 PR symtab/27336
4912 * dwarf2/attribute.c (attribute::form_is_signed): New function
4913 factored out of ...
4914 * dwarf2/attribute.h (attribute::as_signed): ... here.
4915 (attribute::is_nonnegative, attribute::as_nonnegative): New function.
4916 (attribute::form_is_signed): Declare.
4917 * dwarf2/read.c (new_symbol): Use is_nonnegative and as_nonnegative
4918 for DW_AT_decl_file.
4919
4920 2021-02-24 Kevin Buettner <kevinb@redhat.com>
4921
4922 * nat/aarch64-linux-hw-point.c: Add comment regarding include
4923 order for <sys/ptrace.h> and <asm/ptrace.h>.
4924
4925 2021-02-24 Kevin Buettner <kevinb@redhat.com>
4926
4927 * nat/aarch64-linux-hw-point.c: Include <asm/ptrace.h> after
4928 <sys/ptrace.h>.
4929
4930 2021-02-24 Andrew Burgess <andrew.burgess@embecosm.com>
4931
4932 * exec.c (set_section_command): Move variable declarations into
4933 the function body, and use std::string instead of a fixed size
4934 buffer.
4935
4936 2021-02-24 Andrew Burgess <andrew.burgess@embecosm.com>
4937
4938 * exec.c (exec_target::get_section_table): Delete member function.
4939 (section_table_read_available_memory): Use current_top_target, not
4940 just the exec_ops target.
4941 * target-delegates.c: Regenerate.
4942 * target.c (default_get_section_table): New function.
4943 * target.h (target_ops::get_section_table): Change default
4944 behaviour to call default_get_section_table.
4945 (default_get_section_table): Declare.
4946
4947 2021-02-24 Andrew Burgess <andrew.burgess@embecosm.com>
4948
4949 * exec.c (exec_target::close): Call new clear_target_sections
4950 function.
4951 (program_space::add_target_sections): Update name of member
4952 variable.
4953 (program_space::add_target_sections): Update name of member
4954 variable.
4955 (program_space::remove_target_sections): Likewise.
4956 (exec_one_fork): Use new target_sections member function.
4957 (exec_target::get_section_table): Likewise.
4958 (exec_target::files_info): Likewise.
4959 (set_section_command): Likewise.
4960 (exec_set_section_address): Likewise.
4961 (exec_target::has_memory): Use new target_sections member
4962 function.
4963 * progspace.h (program_space::clear_target_sections): New member
4964 function.
4965 (program_space::target_sections): Rename member variable to
4966 m_target_sections, replace with a new member function.
4967 (program_space::m_target_sections): New member variable.
4968 * solib-dsbt.c (scan_dyntag): Use new member function.
4969 * solib-svr4.c (scan_dyntag): Likewise.
4970
4971 2021-02-24 Andrew Burgess <andrew.burgess@embecosm.com>
4972
4973 * gdb/bfd-target.c (class target_bfd) <get_section_table>: Make
4974 return type const.
4975 * gdb/exec.c (struct exec_target) <get_section_table>: Likewise.
4976 (section_table_read_available_memory): Make local const.
4977 (exec_target::xfer_partial): Make local const.
4978 (print_section_info): Make parameter const.
4979 * gdb/exec.h (print_section_info): Likewise.
4980 * gdb/ppc64-tdep.c (ppc64_convert_from_func_ptr_addr): Make local
4981 const.
4982 * gdb/record-btrace.c (record_btrace_target::xfer_partial):
4983 Likewise.
4984 * gdb/remote.c (remote_target::remote_xfer_live_readonly_partial):
4985 Likewise.
4986 * gdb/s390-tdep.c (s390_load): Likewise.
4987 * gdb/solib-dsbt.c (scan_dyntag): Likewise.
4988 * gdb/solib-svr4.c (scan_dyntag): Likewise.
4989 * gdb/target-debug.h (target_debug_print_target_section_table_p):
4990 Rename to...
4991 (target_debug_print_const_target_section_table_p): ...this.
4992 * gdb/target-delegates.c: Regenerate.
4993 * gdb/target.c (target_get_section_table): Make return type const.
4994 (target_section_by_addr): Likewise. Also make some locals const.
4995 (memory_xfer_partial_1): Make some locals const.
4996 * gdb/target.h (struct target_ops) <get_section_table>: Make
4997 return type const.
4998 (target_section_by_addr): Likewise.
4999 (target_get_section_table): Likewise.
5000
5001 2021-02-24 Andrew Burgess <andrew.burgess@embecosm.com>
5002
5003 * NEWS: Mention new 'maint info target-sections' command.
5004 * maint.c (maintenance_info_target_sections): New function.
5005 (_initialize_maint_cmds): Register new command.
5006
5007 2021-02-24 Andrew Burgess <andrew.burgess@embecosm.com>
5008
5009 * riscv-tdep.c (riscv_features_from_gdbarch_info): Rename to...
5010 (riscv_features_from_bfd): ...this. Change parameter type to
5011 'bfd*', and update as required.
5012 (riscv_find_default_target_description): Update call to
5013 riscv_features_from_bfd. Select a default xlen based on
5014 info.bfd_arch_info.
5015 (riscv_gdbarch_init): Update call to riscv_features_from_bfd.
5016
5017 2021-02-24 Andrew Burgess <andrew.burgess@embecosm.com>
5018
5019 * eval.c (evaluate_subexp_standard): Call value_ind for points to
5020 dynamic types in UNOP_IND.
5021
5022 2021-02-23 Simon Marchi <simon.marchi@polymtl.ca>
5023
5024 PR gdb/26828
5025 * dwarf2/read.c (dwarf2_queue_guard) <dwarf2_queue_guard>:
5026 Instantiate queue.
5027 (~dwarf2_queue_guard): Clear queue.
5028 (queue_comp_unit): Assert that queue is
5029 instantiated.
5030 (process_queue): Adjust.
5031 * dwarf2/read.h (struct dwarf2_per_bfd) <queue>: Make optional.
5032
5033 2021-02-23 Simon Marchi <simon.marchi@polymtl.ca>
5034
5035 PR gdb/26828
5036 * dwarf2/read.c (maybe_queue_comp_unit): Check if CU is expanded
5037 to decide whether or not to enqueue it for expansion.
5038 (follow_die_offset, follow_die_sig_1): Ensure we load the DIEs
5039 after calling maybe_queue_comp_unit.
5040
5041 2021-02-23 Simon Marchi <simon.marchi@polymtl.ca>
5042
5043 * linux-nat.c (linux_nat_filter_event): Return void.
5044
5045 2021-02-22 Tom Tromey <tromey@adacore.com>
5046
5047 * solib-svr4.c (enable_break): Update.
5048 * bfd-target.c (class target_bfd) <target_bfd>: Change parameter
5049 type.
5050 (target_bfd_reopen): Change parameter type.
5051 * bfd-target.h (target_bfd_reopen): Change parameter type.
5052
5053 2021-02-22 Simon Marchi <simon.marchi@polymtl.ca>
5054
5055 * thread.c (add_thread_silent): Add assert.
5056 (find_thread_ptid): Add assert.
5057
5058 2021-02-22 Simon Marchi <simon.marchi@polymtl.ca>
5059
5060 PR gdb/27435
5061 * inf-ptrace.c (struct target_unpusher): Move to target.h.
5062 (target_unpush_up): Likewise.
5063 * procfs.c (procfs_target::attach): Push target early. Use
5064 target_unpush_up to unpush target in case of error.
5065 * target.h (struct target_unpusher): Move here.
5066 (target_unpush_up): Likewise.
5067
5068 2021-02-19 Kevin Buettner <kevinb@redhat.com>
5069
5070 * nat/amd64-linux-siginfo.c: Include "gdbsupport/common-defs.h"
5071 (which in turn includes <gnulib/config.h>) before include
5072 of <signal.h>.
5073
5074 2021-02-19 Nelson Chu <nelson.chu@sifive.com>
5075
5076 PR 27158
5077 * riscv-tdep.c (decode_ci_type_insn): Updated encoding macros.
5078 (decode_j_type_insn): Likewise.
5079 (decode_cj_type_insn): Likewise.
5080 (decode_b_type_insn): Likewise.
5081 (decode): Likewise.
5082
5083 2021-02-18 Tom Tromey <tom@tromey.com>
5084
5085 * expression.h (struct expression) <evaluate>: Declare method.
5086 * eval.c (evaluate_subexp): Simplify.
5087 (expression::evaluate): New method.
5088 (evaluate_expression, evaluate_type): Use expression::evaluate.
5089
5090 2021-02-17 Kevin Buettner <kevinb@redhat.com>
5091
5092 * ada-lang.c (ada_fold_name): Check for non-empty string prior
5093 to accessing it.
5094 (ada_lookup_name_info): Likewise.
5095
5096 2021-02-13 Mike Frysinger <vapier@gentoo.org>
5097
5098 * aclocal.m4: Regenerate.
5099
5100 2021-02-12 Tom de Vries <tdevries@suse.de>
5101
5102 PR threads/26228
5103 * linux-nat.c (lin_thread_get_thread_signals): Remove.
5104 (lin_thread_signals): New static var.
5105 (lin_thread_get_thread_signal_num, lin_thread_get_thread_signal):
5106 New function.
5107 * linux-nat.h (lin_thread_get_thread_signals): Remove.
5108 (lin_thread_get_thread_signal_num, lin_thread_get_thread_signal):
5109 Declare.
5110 * linux-thread-db.c (check_thread_signals): Use
5111 lin_thread_get_thread_signal_num and lin_thread_get_thread_signal.
5112
5113 2021-02-12 Andrew Burgess <andrew.burgess@embecosm.com>
5114
5115 * f-exp.y (f77_keywords): Add allocated.
5116 * f-lang.c (evaluate_subexp_f): Handle UNOP_FORTRAN_ALLOCATED.
5117 (operator_length_f): Likewise.
5118 (print_subexp_f): Likewise.
5119 (dump_subexp_body_f): Likewise.
5120 (operator_check_f): Likewise.
5121 * std-operator.def (UNOP_FORTRAN_ALLOCATED): New operator.
5122
5123 2021-02-11 Tom de Vries <tdevries@suse.de>
5124
5125 PR symtab/27353
5126 * dwarf2/attribute.c (attribute::form_requires_reprocessing):
5127 Return true for DW_FORM_strx.
5128
5129 2021-02-11 Tom Tromey <tromey@adacore.com>
5130
5131 PR gdb/27383:
5132 * parse.c (write_exp_symbol_reference): Write sym.block.
5133
5134 2021-02-11 Andrew Burgess <andrew.burgess@embecosm.com>
5135
5136 * NEWS: Mention changes to 'maint info sections'.
5137 * maint.c (match_substring): Return a bool, fix whitespace issue.
5138 (struct single_bfd_flag_info): New struct.
5139 (bfd_flag_info): New static global.
5140 (match_bfd_flags): Return a bool, use bfd_flag_info.
5141 (print_bfd_flags): Use bfd_flag_info.
5142 (maint_print_section_info): Delete trailing whitespace.
5143 (struct maint_info_sections_opts): New struct.
5144 (maint_info_sections_option_defs): New static global.
5145 (maint_info_sections_completer): New function.
5146 (maintenance_info_sections): Use option parsing mechanism.
5147 (_initialize_maint_cmds): Update command help text for 'maint info
5148 sections' and register a command completer.
5149
5150 2021-02-11 Andrew Burgess <andrew.burgess@embecosm.com>
5151
5152 * maint.c (print_bfd_section_info_maybe_relocated): Delete,
5153 functionality merged into...
5154 (maint_print_all_sections): ...this new function.
5155 (maintenance_info_sections): Make use of maint_print_all_sections,
5156 allow all objects to be printed even where there's no executable.
5157
5158 2021-02-11 Andrew Burgess <andrew.burgess@embecosm.com>
5159
5160 * breakpoint.c (resolve_sal_pc): Make use of
5161 bound_minimal_symbol::obj_section.
5162 * maint.c (maintenance_translate_address): Likewise.
5163 * minsyms.c (minimal_symbol_upper_bound): Likewise.
5164 * minsyms.h (struct bound_minimal_symbol) <obj_section>: New
5165 member function.
5166 * printcmd.c (info_address_command): Make use of
5167 bound_minimal_symbol::obj_section.
5168
5169 2021-02-11 Alan Modra <amodra@gmail.com>
5170
5171 * arm-symbian-tdep.c: Delete.
5172 * NEWS: Mention arm-symbian removal.
5173 * Makefile.in: Remove arm-symbian-tdep entries.
5174 * configure.tgt: Remove arm*-*-symbianelf*.
5175 * doc/gdb.texinfo: Remove mention of SymbianOS.
5176 * osabi.c (gdb_osabi_names): Remove "Symbian".
5177 * osabi.h (enum gdb_osabi): Remove GDB_OSABI_SYMBIAN.
5178 * testsuite/gdb.base/ending-run.exp: Remove E32Main handling.
5179 * testsuite/gdb.ada/catch_ex_std.exp: Remove arm*-*-symbianelf*
5180 handling.
5181 * testsuite/gdb.base/dup-sect.exp: Likewise.
5182 * testsuite/gdb.base/long_long.exp: Likewise.
5183 * testsuite/gdb.base/solib-weak.exp: Likewise.
5184 * testsuite/gdb.guile/scm-section-script.exp: Likewise.
5185 * testsuite/gdb.python/py-section-script.exp: Likewise.
5186 * testsuite/lib/dwarf.exp: Likewise.
5187 * testsuite/lib/gdb.exp: Likewise.
5188
5189 2021-02-10 Andrew Burgess <andrew.burgess@embecosm.com>
5190
5191 * f-exp.y (UNOP_OR_BINOP_INTRINSIC): New token.
5192 (exp): New pattern using UNOP_OR_BINOP_INTRINSIC.
5193 (one_or_two_args): New pattern.
5194 (f77_keywords): Add lbound and ubound.
5195 * f-lang.c (fortran_bounds_all_dims): New function.
5196 (fortran_bounds_for_dimension): New function.
5197 (evaluate_subexp_f): Handle FORTRAN_LBOUND and FORTRAN_UBOUND.
5198 (operator_length_f): Likewise.
5199 (print_subexp_f): Likewise.
5200 (dump_subexp_body_f): Likewise.
5201 (operator_check_f): Likewise.
5202 * std-operator.def (FORTRAN_LBOUND): Define.
5203 (FORTRAN_UBOUND): Define.
5204
5205 2021-02-10 Andrew Burgess <andrew.burgess@embecosm.com>
5206
5207 * coff-pe-read.c (add_pe_forwarded_sym): Make use of section_index
5208 and set_section_index member functions where appropriate.
5209 * coffread.c (coff_symtab_read): Likewise.
5210 (process_coff_symbol): Likewise.
5211 * ctfread.c (set_symbol_address): Likewise.
5212 * dwarf2/read.c (add_partial_symbol): Likewise.
5213 (var_decode_location): Likewise.
5214 * language.c: Likewise.
5215 * minsyms.c (minimal_symbol_reader::record_full): Likewise.
5216 (compact_minimal_symbols): Likewise.
5217 (minimal_symbol_upper_bound): Likewise.
5218 * objfiles.c (relocate_one_symbol): Likewise.
5219 * psympriv.h (partial_symbol::obj_section): Likewise.
5220 (partial_symbol::address): Likewise.
5221 * psymtab.c (partial_symtab::add_psymbol): Likewise.
5222 * stabsread.c (scan_file_globals): Likewise.
5223 * symmisc.c (dump_msymbols): Likewise.
5224 * symtab.c (general_symbol_info::obj_section): Likewise.
5225 (fixup_section): Likewise.
5226 (get_msymbol_address): Likewise.
5227 * symtab.h (general_symbol_info::section): Rename to...
5228 (general_symbol_info::m_section): ...this.
5229 (general_symbol_info::set_section_index): New member function.
5230 (general_symbol_info::section_index): Likewise.
5231 (SYMBOL_SECTION): Delete.
5232 (MSYMBOL_VALUE_ADDRESS): Make use of section_index and
5233 set_section_index member functions where appropriate.
5234 (MSYMBOL_SECTION): Delete.
5235 (symbol::symbol): Update to initialize 'm_section'.
5236 * xcoffread.c (read_xcoff_symtab): Make use of set_section_index.
5237 (process_xcoff_symbol): Likewise.
5238
5239 2021-02-10 Andrew Burgess <andrew.burgess@embecosm.com>
5240
5241 * breakpoint.c (resolve_sal_pc): Replace SYMBOL_OBJ_SECTION and
5242 MSYMBOL_OBJ_SECTION.
5243 * findvar.c (language_defn::read_var_value): Likewise.
5244 * infcmd.c (jump_command): Likewise.
5245 * linespec.c (minsym_found): Likewise.
5246 * maint.c (maintenance_translate_address): Likewise.
5247 * minsyms.c (lookup_minimal_symbol_by_pc_section): Likewise.
5248 (minimal_symbol_upper_bound): Likewise.
5249 * parse.c (find_minsym_type_and_address): Likewise.
5250 (operator_check_standard): Likewise.
5251 * printcmd.c (info_address_command): Likewise.
5252 * symmisc.c (dump_msymbols): Likewise.
5253 (print_symbol): Likewise.
5254 * symtab.c (general_symbol_info::obj_section): Define new
5255 function.
5256 (fixup_symbol_section): Replace SYMBOL_OBJ_SECTION.
5257 (find_pc_sect_compunit_symtab): Likewise.
5258 (find_function_start_sal): Likewise.
5259 (skip_prologue_sal): Replace SYMBOL_OBJ_SECTION and
5260 MSYMBOL_OBJ_SECTION.
5261 * symtab.h (struct general_symbol_info) <obj_section>: Declare new
5262 function.
5263 (SYMBOL_OBJ_SECTION): Delete.
5264 (MSYMBOL_OBJ_SECTION): Delete.
5265
5266 2021-02-09 Tom Tromey <tom@tromey.com>
5267
5268 * stap-probe.c (stap_parse_argument_conditionally): Fix typo.
5269
5270 2021-02-09 Tom de Vries <tdevries@suse.de>
5271
5272 PR symtab/27341
5273 * dwarf2/read.c (read_array_type): Return NULL when not being able to
5274 construct an array type. Add assert to ensure that element_type is
5275 not being modified.
5276
5277 2021-02-09 Andrew Burgess <andrew.burgess@embecosm.com>
5278
5279 * gcore.c (struct gcore_collect_regset_section_cb_data): Delete.
5280 (gcore_collect_regset_section_cb): Delete.
5281 (gcore_collect_thread_registers): Delete.
5282 (gcore_build_thread_register_notes): Delete.
5283 (gcore_find_signalled_thread): Delete.
5284 * gcore.h: Remove 'gdbsupport/gdb_signals.h' include and delete
5285 'gdbarch' and 'thread_info' declarations.
5286 (gcore_build_thread_register_notes): Delete declaration.
5287 (gcore_find_signalled_thread): Likewise.
5288 * fbsd-tdep.c: Remove 'gcore.h' include.
5289 (struct fbsd_collect_regset_section_cb_data): New struct.
5290 (fbsd_collect_regset_section_cb): New function.
5291 (fbsd_collect_thread_registers): New function.
5292 (struct fbsd_corefile_thread_data): New struct.
5293 (fbsd_corefile_thread): New function.
5294 (fbsd_make_corefile_notes): Call FreeBSD specific code.
5295 * linux-tdep.c: Remove 'gcore.h' include.
5296 (struct linux_collect_regset_section_cb_data): New struct.
5297 (linux_collect_regset_section_cb): New function.
5298 (linux_collect_thread_registers): New function.
5299 (linux_corefile_thread): Call Linux specific code.
5300 (find_signalled_thread): New function.
5301 (linux_make_corefile_notes): Call find_signalled_thread.
5302
5303 2021-02-09 Tom Tromey <tromey@adacore.com>
5304
5305 * ada-lang.c (coerce_unspec_val_to_type): Avoid making lazy
5306 not_lval value.
5307 * value.c (value_contents_copy_raw): Now static.
5308 * value.h (value_contents_copy_raw): Don't declare.
5309
5310 2021-02-09 Tom Tromey <tromey@adacore.com>
5311
5312 * gdbtypes.c (resolve_dynamic_struct): Handle structure with no
5313 fields.
5314
5315 2021-02-08 Shahab Vahedi <shahab@synopsys.com>
5316
5317 PR tdep/27369
5318 * arc-linux-tdep.c (handle_atomic_sequence): New.
5319 (arc_linux_software_single_step): Call handle_atomic_sequence().
5320
5321 2021-02-08 Andrew Burgess <andrew.burgess@embecosm.com>
5322
5323 * python/py-tui.c (gdbpy_tui_window) <is_valid>: New member
5324 function.
5325 (REQUIRE_WINDOW): Call is_valid member function.
5326 (REQUIRE_WINDOW_FOR_SETTER): New define.
5327 (gdbpy_tui_is_valid): Call is_valid member function.
5328 (gdbpy_tui_set_title): Call REQUIRE_WINDOW_FOR_SETTER instead.
5329 * tui/tui-data.h (struct tui_win_info) <is_visible>: Check
5330 tui_active too.
5331 * tui/tui-layout.c (tui_apply_current_layout): Add an assert.
5332 * tui/tui.c (tui_enable): Move setting of tui_active earlier in
5333 the function.
5334
5335 2021-02-08 Andrew Burgess <andrew.burgess@embecosm.com>
5336
5337 * python/py-tui.c (gdbpy_tui_set_title): Check that the new value
5338 for the title is not nullptr.
5339
5340 2021-02-08 Andrew Burgess <andrew.burgess@embecosm.com>
5341
5342 * tui-layout.c (saved_tui_windows): Delete.
5343 (tui_apply_current_layout): Don't make use of saved_tui_windows,
5344 call new get_windows member function instead.
5345 (tui_get_window_by_name): Check in tui_windows.
5346 (tui_layout_window::apply): Don't add to tui_windows.
5347 * tui-layout.h (tui_layout_base::get_windows): New member function.
5348 (tui_layout_window::get_windows): Likewise.
5349 (tui_layout_split::get_windows): Likewise.
5350
5351 2021-02-08 Andrew Burgess <andrew.burgess@embecosm.com>
5352
5353 * tui/tui-layout.c (tui_apply_current_layout): Restore the delete
5354 of the window objects.
5355
5356 2021-02-08 Andrew Burgess <andrew.burgess@embecosm.com>
5357
5358 * python/python.c (gdbpy_print_stack): Reformat an error message.
5359
5360 2021-02-08 Andrew Burgess <andrew.burgess@embecosm.com>
5361
5362 * tui/tui-interp.c (tui_command_line_handler): New function.
5363 (tui_interp::resume): Register tui_command_line_handler as the
5364 input_handler.
5365 * tui/tui-io.c (tui_inject_newline_into_command_window): New
5366 function.
5367 (tui_getc_1): Delete handling of '\n' and '\r'.
5368 * tui-io.h (tui_inject_newline_into_command_window): Declare.
5369
5370 2021-02-07 Hannes Domani <ssbssa@yahoo.de>
5371
5372 * tui/tui-regs.c (tui_data_window::display_registers_from):
5373 Mark invisible register sub windows.
5374 (tui_data_window::check_register_values): Ignore invisible
5375 register sub windows.
5376
5377 2021-02-07 Hannes Domani <ssbssa@yahoo.de>
5378
5379 * tui/tui-regs.c (tui_data_item_window::rerender): Don't call
5380 n_spaces with a negative value.
5381
5382 2021-02-07 Hannes Domani <ssbssa@yahoo.de>
5383
5384 * tui/tui-regs.c (tui_data_window::display_registers_from):
5385 Add refresh_window call.
5386
5387 2021-02-07 Hannes Domani <ssbssa@yahoo.de>
5388
5389 * python/py-frame.c (frapy_richcompare): Compare frame_id_is_next.
5390
5391 2021-02-05 Simon Marchi <simon.marchi@polymtl.ca>
5392
5393 * symmisc.c (std_in, std_out, std_err): Remove.
5394 (_initialize_symmisc): Don't set std_in, std_out and std_err.
5395
5396 2021-02-05 Tom de Vries <tdevries@suse.de>
5397
5398 PR breakpoints/27330
5399 * breakpoint.c (create_exception_master_breakpoint): Handle case that
5400 glibc object file has debug info.
5401
5402 2021-02-05 Tom de Vries <tdevries@suse.de>
5403
5404 PR symtab/27333
5405 * dwarf2/read.c (process_psymtab_comp_unit): Handle DW_TAG_type_unit.
5406
5407 2021-02-05 Tom de Vries <tdevries@suse.de>
5408
5409 PR breakpoints/27313
5410 * break-catch-syscall.c (catch_syscall_split_args): Reject negative
5411 syscall numbers.
5412
5413 2021-02-05 Tom Tromey <tom@tromey.com>
5414
5415 * compile/compile-c-support.c (get_compile_context)
5416 (c_get_compile_context, cplus_get_compile_context): Change return
5417 type.
5418 * language.c (language_defn::get_compile_instance): New method.
5419 * language.h (language_defn::get_compile_instance): Change return
5420 type. No longer inline.
5421 * c-lang.c (c_language::get_compile_instance): Change return type.
5422 (cplus_language::get_compile_instance): Change return type.
5423 * c-lang.h (c_get_compile_context, cplus_get_compile_context):
5424 Change return type.
5425 * compile/compile.c (compile_to_object): Update.
5426
5427 2021-02-05 Tom Tromey <tom@tromey.com>
5428
5429 * parser-defs.h (write_exp_symbol_reference): Declare.
5430 * parse.c (write_exp_symbol_reference): New function.
5431 * p-exp.y (variable): Use write_exp_symbol_reference.
5432 * m2-exp.y (variable): Use write_exp_symbol_reference.
5433 * f-exp.y (variable): Use write_exp_symbol_reference.
5434 * d-exp.y (PrimaryExpression): Use write_exp_symbol_reference.
5435 * c-exp.y (variable): Use write_exp_symbol_reference.
5436
5437 2021-02-05 Tom de Vries <tdevries@suse.de>
5438
5439 PR exp/27265
5440 * valarith.c (complex_binop): Throw an error if complex type can't
5441 be created.
5442
5443 2021-02-05 Tom de Vries <tdevries@suse.de>
5444
5445 PR symtab/27307
5446 * dwarf2/read.c (create_cus_from_debug_names_list): Add missing
5447 return.
5448
5449 2021-02-05 Tom de Vries <tdevries@suse.de>
5450
5451 * dwarf2/read.c (create_cus_from_debug_names_list): Fix indentation.
5452
5453 2021-02-04 Mike Frysinger <vapier@gentoo.org>
5454
5455 * configure.tgt (riscv*-*-*): Set gdb_sim.
5456
5457 2021-02-04 Simon Marchi <simon.marchi@polymtl.ca>
5458
5459 * target.c (target_is_non_stop_p): Return bool.
5460 * target.h (target_is_non_stop_p): Return bool.
5461
5462 2021-02-04 Simon Marchi <simon.marchi@efficios.com>
5463
5464 * record-full.c (record_full_async_inferior_event_handler):
5465 Don't clear async event handler.
5466 (record_full_base_target::wait): Clear async event handler at
5467 beginning.
5468
5469 2021-02-04 Simon Marchi <simon.marchi@efficios.com>
5470
5471 * record-btrace.c (record_btrace_handle_async_inferior_event):
5472 Don't clear async event handler.
5473 (record_btrace_target::wait): Clear async event handler at
5474 beginning.
5475
5476 2021-02-04 Simon Marchi <simon.marchi@efficios.com>
5477
5478 * remote.c (remote_target::wait): Clear async event handler at
5479 beginning, mark if needed at the end.
5480 (remote_async_inferior_event_handler): Don't set or clear async
5481 event handler.
5482
5483 2021-02-04 Simon Marchi <simon.marchi@efficios.com>
5484
5485 * async-event.h (async_event_handler_func): Add documentation.
5486 * async-event.c (check_async_event_handlers): Don't clear
5487 async_event_handler ready flag.
5488 * infrun.c (infrun_async_inferior_event_handler): Clear ready
5489 flag.
5490 * record-btrace.c (record_btrace_handle_async_inferior_event):
5491 Likewise.
5492 * record-full.c (record_full_async_inferior_event_handler):
5493 Likewise.
5494 * remote-notif.c (remote_async_get_pending_events_handler):
5495 Likewise.
5496 * remote.c (remote_async_inferior_event_handler): Likewise.
5497
5498 2021-02-03 Simon Marchi <simon.marchi@polymtl.ca>
5499
5500 * infrun.c (handle_inferior_event): Move stop_soon variable to
5501 inner scope.
5502
5503 2021-02-03 Pedro Alves <pedro@palves.net>
5504
5505 * infcmd.c (detach_command): Hold strong reference to target, and
5506 if all-stop on entry, restart threads on exit.
5507 * infrun.c (switch_back_to_stepped_thread): Factor out bits to ...
5508 (restart_stepped_thread): ... this new function. Also handle
5509 trap_expected.
5510 (restart_after_all_stop_detach): New function.
5511 * infrun.h (restart_after_all_stop_detach): Declare.
5512
5513 2021-02-03 Pedro Alves <pedro@palves.net>
5514
5515 * infrun.c (struct step_over_info): Initialize fields.
5516 (prepare_for_detach): Handle ongoing in-line step over.
5517
5518 2021-02-03 Pedro Alves <pedro@palves.net>
5519
5520 * linux-nat.c (linux_nat_target::detach): Remove breakpoints
5521 here...
5522 * remote.c (remote_target::remote_detach_1): ... and here ...
5523 * target.c (target_detach): ... instead of here.
5524 * target.h (target_ops::detach): Add comment.
5525
5526 2021-02-03 Pedro Alves <pedro@palves.net>
5527
5528 * infrun.c (struct wait_one_event): Move higher up.
5529 (prepare_for_detach): Abort in-progress displaced steps instead of
5530 letting them complete.
5531 (handle_one): If the inferior is detaching, don't add the thread
5532 back to the global step-over chain.
5533 (restart_threads): Don't restart threads if detaching.
5534 (handle_signal_stop): Remove inferior::detaching reference.
5535
5536 2021-02-03 Pedro Alves <pedro@palves.net>
5537
5538 * infrun.c (prepare_for_detach): Don't release scoped_restore
5539 before returning.
5540
5541 2021-02-03 Pedro Alves <pedro@palves.net>
5542
5543 * infrun.c (handle_one): New function, factored out from ...
5544 (stop_all_threads): ... here.
5545
5546 2021-02-03 Pedro Alves <pedro@palves.net>
5547
5548 * remote.c (remote_notif_stop_ack): Don't error out on
5549 TARGET_WAITKIND_IGNORE; instead, just ignore the notification.
5550 (remote_target::discard_pending_stop_replies): Don't delete
5551 in-flight notification; instead, clear its contents.
5552
5553 2021-02-03 Pedro Alves <pedro@palves.net>
5554
5555 * remote.c (extended_remote_target::attach): Set target async in
5556 the target-non-stop path too.
5557
5558 2021-02-03 Pedro Alves <pedro@palves.net>
5559
5560 PR gdb/27055
5561 * infrun.c (handle_signal_stop): Move main context_switch call
5562 earlier, before STOP_QUIETLY_NO_SIGSTOP.
5563
5564 2021-02-02 Lancelot SIX <lsix@lancelotsix.com>
5565
5566 * NEWS (Changed commands): Add entry for the behavior change of
5567 the inferior command.
5568 * inferior.c (inferior_command): When no argument is given to the
5569 inferior command, display info about the currently selected
5570 inferior.
5571
5572 2021-02-02 Simon Marchi <simon.marchi@efficios.com>
5573
5574 * dwarf2/read.c (read_loclist_index, read_rnglist_index): Return
5575 a sect_offset.
5576 (read_attribute_reprocess): Adjust.
5577
5578 2021-02-02 Simon Marchi <simon.marchi@efficios.com>
5579
5580 * dwarf2/die.h (struct die_info) <ranges_base>: Split in...
5581 <gnu_ranges_base>: ... this...
5582 <rnglists_base>: ... and this.
5583 * dwarf2/read.c (struct dwarf2_cu) <ranges_base>: Split in...
5584 <gnu_ranges_base>: ... this...
5585 <rnglists_base>: ... and this.
5586 (read_cutu_die_from_dwo): Adjust
5587 (dwarf2_get_pc_bounds): Adjust
5588 (dwarf2_record_block_ranges): Adjust.
5589 (read_full_die_1): Adjust
5590 (partial_die_info::read): Adjust.
5591 (read_rnglist_index): Adjust.
5592
5593 2021-02-02 Simon Marchi <simon.marchi@efficios.com>
5594
5595 PR gdb/26813
5596 * dwarf2/read.c (read_loclists_rnglists_header): Add
5597 header_offset parameter and use it.
5598 (read_loclist_index): Read header of the current contribution,
5599 not the one at the beginning of the section.
5600 (read_rnglist_index): Likewise.
5601
5602 2021-02-02 Simon Marchi <simon.marchi@efficios.com>
5603
5604 PR gdb/26813
5605 * dwarf2/attribute.h (struct attribute) <set_unsigned>: Clear
5606 requires_reprocessing flag.
5607 * dwarf2/attribute.c (attribute::form_is_unsigned): Handle
5608 DW_FORM_loclistx.
5609 (attribute::form_requires_reprocessing): Handle DW_FORM_rnglistx
5610 and DW_FORM_loclistx.
5611 * dwarf2/read.c (read_attribute_reprocess): Use set_unsigned
5612 instead of set_address for DW_FORM_loclistx and
5613 DW_FORM_rnglistx.
5614
5615 2021-02-02 Simon Marchi <simon.marchi@efficios.com>
5616
5617 * dwarf2/read.c (read_loclist_index): Remove bound check for
5618 start of offset.
5619 (read_rnglist_index): Likewise.
5620
5621 2021-02-02 Simon Marchi <simon.marchi@efficios.com>
5622
5623 * dwarf2/read.c (read_loclist_index): Add bound check for the end
5624 of the offset.
5625
5626 2021-02-02 Simon Marchi <simon.marchi@efficios.com>
5627
5628 * dwarf2/read.c (read_rnglist_index): Fix bound check.
5629
5630 2021-02-02 Simon Marchi <simon.marchi@efficios.com>
5631
5632 * dwarf2/read.c (read_loclist_index): Change complaints into
5633 errors.
5634
5635 2021-02-02 Tom de Vries <tdevries@suse.de>
5636
5637 PR symtab/24620
5638 * dwarf2/index-write.c (write_one_signatured_type): Skip if
5639 psymtab == nullptr.
5640
5641 2021-02-01 Andrew Burgess <andrew.burgess@embecosm.com>
5642
5643 * Makefile.in (HFILES_NO_SRCDIR): Add corefile.h.
5644 * gcore.c (struct gcore_collect_regset_section_cb_data): Moved
5645 here from linux-tdep.c and given a new name. Minor cleanups.
5646 (gcore_collect_regset_section_cb): Likewise.
5647 (gcore_collect_thread_registers): Likewise.
5648 (gcore_build_thread_register_notes): Likewise.
5649 (gcore_find_signalled_thread): Likewise.
5650 * gcore.h (gcore_build_thread_register_notes): Declare.
5651 (gcore_find_signalled_thread): Declare.
5652 * fbsd-tdep.c: Add 'gcore.h' include.
5653 (struct fbsd_collect_regset_section_cb_data): Delete.
5654 (fbsd_collect_regset_section_cb): Delete.
5655 (fbsd_collect_thread_registers): Delete.
5656 (struct fbsd_corefile_thread_data): Delete.
5657 (fbsd_corefile_thread): Delete.
5658 (fbsd_make_corefile_notes): Call
5659 gcore_build_thread_register_notes instead of the now deleted
5660 FreeBSD code.
5661 * linux-tdep.c: Add 'gcore.h' include.
5662 (struct linux_collect_regset_section_cb_data): Delete.
5663 (linux_collect_regset_section_cb): Delete.
5664 (linux_collect_thread_registers): Delete.
5665 (linux_corefile_thread): Call
5666 gcore_build_thread_register_notes.
5667 (find_signalled_thread): Delete.
5668 (linux_make_corefile_notes): Call gcore_find_signalled_thread.
5669
5670 2021-01-29 Tom de Vries <tdevries@suse.de>
5671
5672 PR breakpoints/26063
5673 * infrun.c (process_event_stop_test): Reset
5674 ecs->event_thread->current_line to 0 if is-stmt=n and frame has
5675 changed.
5676
5677 2021-01-28 Andrew Burgess <andrew.burgess@embecosm.com>
5678
5679 * thread.c (thr_try_catch_cmd): Replace swith_to_thread with an
5680 assert. Extend the header comment.
5681
5682 2021-01-28 Andrew Burgess <andrew.burgess@embecosm.com>
5683
5684 * Makefile.in (SUBDIR_TUI_SRCS): Add tui/tui-location.c.
5685 (HFILES_NO_SRCDIR): Add tui/tui-location.h.
5686 * tui/tui-data.h (TUI_STATUS_WIN): Define.
5687 (tui_locator_win_info_ptr): Delete declaration.
5688 * tui/tui-disasm.c: Add 'tui/tui-location.h' include.
5689 (tui_disasm_window::set_contents): Fetch state from tui_location
5690 global.
5691 (tui_get_begin_asm_address): Likewise.
5692 * tui/tui-layout.c (tui_apply_current_layout): Remove special case
5693 for locator window.
5694 (get_locator_window): Delete.
5695 (initialize_known_windows): Treat locator window just like all the
5696 rest.
5697 * tui/tui-source.c: Add 'tui/tui-location.h' include.
5698 (tui_source_window::set_contents): Fetch state from tui_location
5699 global.
5700 (tui_source_window::showing_source_p): Likewise.
5701 * tui/tui-stack.c: Add 'tui/tui-location.h' include.
5702 (_locator): Delete.
5703 (tui_locator_win_info_ptr): Delete.
5704 (tui_locator_window::make_status_line): Fetch state from
5705 tui_location global.
5706 (tui_locator_window::rerender): Remove check of 'handle',
5707 reindent function body.
5708 (tui_locator_window::set_locator_fullname): Delete.
5709 (tui_locator_window::set_locator_info): Delete.
5710 (tui_update_locator_fullname): Delete.
5711 (tui_show_frame_info): Likewise.
5712 (tui_show_locator_content): Access window through TUI_STATUS_WIN.
5713 * tui/tui-stack.h (tui_locator_window::set_locator_info): Moved to
5714 tui/tui-location.h and renamed to
5715 tui_location_tracker::set_location.
5716 (tui_locator_window::set_locator_fullname): Moved to
5717 tui/tui-location.h and renamed to
5718 tui_location_tracker::set_fullname.
5719 (tui_locator_window::full_name): Delete.
5720 (tui_locator_window::proc_name): Delete.
5721 (tui_locator_window::line_no): Delete.
5722 (tui_locator_window::addr): Delete.
5723 (tui_locator_window::gdbarch): Delete.
5724 (tui_update_locator_fullname): Delete declaration.
5725 * tui/tui-wingeneral.c (tui_refresh_all): Removed special handling
5726 for locator window.
5727 * tui/tui-winsource.c: Add 'tui/tui-location.h' include.
5728 (tui_display_main): Call function on tui_location directly.
5729 * tui/tui.h (enum tui_win_type): Add STATUS_WIN.
5730 * tui/tui-location.c: New file.
5731 * tui/tui-location.h: New file.
5732
5733 2021-01-28 Simon Marchi <simon.marchi@polymtl.ca>
5734
5735 * gdbtypes.h (get_type_arch): Rename to...
5736 (struct type) <arch>: ... this, update all users.
5737
5738 2021-01-28 Simon Marchi <simon.marchi@polymtl.ca>
5739
5740 * gdbtypes.h (struct type) <arch>: Rename to...
5741 <arch_owner>: ... this, update all users.
5742 <objfile>: Rename to...
5743 <objfile_owner>: ... this, update all users.
5744
5745 2021-01-28 Andrew Burgess <andrew.burgess@embecosm.com>
5746
5747 * gdbcmd.h (execute_command_to_string): Update comment.
5748 * top.c (execute_command_to_string): Update header comment.
5749
5750 2021-01-28 Tom de Vries <tdevries@suse.de>
5751
5752 PR breakpoints/27205
5753 * breakpoint.c (create_longjmp_master_breakpoint_probe)
5754 (create_longjmp_master_breakpoint_names): New function, factored out
5755 of ...
5756 (create_longjmp_master_breakpoint): ... here. Only try to install
5757 longjmp_names breakpoints in libc.so/libc.so.debug if installing probe
5758 breakpoint in libc.so failed.
5759
5760 2021-01-27 Lancelot SIX <lsix@lancelotsix.com>
5761
5762 PR gdb/27133
5763 * cli/cli-interp.c (cli_interp_base::set_logging): Ensure the
5764 unique_ptr is released when the wrapped pointer is kept for later
5765 use.
5766
5767 2021-01-27 Matthew Malcomson <matthew.malcomson@arm.com>
5768
5769 * aarch64-tdep.c (aarch64_displaced_step_others): Account for
5770 BLR and BR instructions.
5771 * arch/aarch64-insn.h (enum aarch64_opcodes): Add BR opcode.
5772 (enum aarch64_masks): New.
5773
5774 2021-01-26 Tom Tromey <tromey@adacore.com>
5775
5776 * windows-nat.c (DEBUG_EXEC, DEBUG_EVENTS, DEBUG_MEM)
5777 (DEBUG_EXCEPT): Use debug_prefixed_printf_cond.
5778 (windows_init_thread_list, windows_nat::handle_load_dll)
5779 (windows_nat::handle_unload_dll, windows_nat_target::resume)
5780 (windows_nat_target::resume)
5781 (windows_nat_target::get_windows_debug_event)
5782 (windows_nat_target::interrupt, windows_xfer_memory)
5783 (windows_nat_target::close): Update.
5784 * nat/windows-nat.c (DEBUG_EVENTS): Use
5785 debug_prefixed_printf_cond.
5786 (matching_pending_stop, fetch_pending_stop)
5787 (continue_last_debug_event): Update.
5788
5789 2020-12-17 Mihails Strasuns <mihails.strasuns@intel.com>
5790
5791 * linux-tdep.c (linux_make_mappings_corefile_notes): Start using
5792 elfcore_write_file_note.
5793
5794 2021-01-26 Shahab Vahedi <shahab@synopsys.com>
5795
5796 * arc-tdep.c (arc_add_reggroups): New function.
5797 (arc_gdbarch_init): Call arc_add_reggroups.
5798
5799 2021-01-26 Anton Kolesov <anton.kolesov@synopsys.com>
5800
5801 * arc-tdep.c (arc_skip_prologue): Log "pc" address.
5802
5803 2021-01-25 Bernd Edlinger <bernd.edlinger@hotmail.de>
5804 Simon Marchi <simon.marchi@polymtl.ca>
5805 Tom de Vries <tdevries@suse.de>
5806
5807 * dwarf2/read.c (partial_die_info::read): Use as_unsigned () for
5808 DW_AT_ranges.
5809
5810 2021-01-25 Tom Tromey <tromey@adacore.com>
5811
5812 * dwarf2/read.c (get_mpz): New function.
5813 (get_dwarf2_rational_constant): Use it.
5814
5815 2021-01-25 Tom Tromey <tromey@adacore.com>
5816
5817 * ada-lang.c (resolve_subexp): Handle array context.
5818
5819 2021-01-23 Tom Tromey <tom@tromey.com>
5820
5821 PR compile/25575
5822 * compile/compile-loc2c.c (note_register): New function.
5823 (pushf_register_address, pushf_register): Use it.
5824
5825 2021-01-23 Tom Tromey <tom@tromey.com>
5826
5827 * symtab.h (struct symbol_computed_ops) <generate_c_location>:
5828 Change type of "registers_used".
5829 * dwarf2/loc.h (dwarf2_compile_property_to_c): Update.
5830 * dwarf2/loc.c (dwarf2_compile_property_to_c)
5831 (locexpr_generate_c_location, loclist_generate_c_location): Change
5832 type of "registers_used".
5833 * compile/compile.h (compile_dwarf_expr_to_c)
5834 (compile_dwarf_bounds_to_c): Update.
5835 * compile/compile-loc2c.c (pushf_register_address)
5836 (pushf_register, do_compile_dwarf_expr_to_c)
5837 (compile_dwarf_expr_to_c, compile_dwarf_bounds_to_c): Change type
5838 of "registers_used".
5839 * compile/compile-c.h (generate_c_for_variable_locations):
5840 Update.
5841 * compile/compile-c-symbols.c (generate_vla_size)
5842 (generate_c_for_for_one_variable): Change type of
5843 "registers_used".
5844 (generate_c_for_variable_locations): Return std::vector.
5845 * compile/compile-c-support.c (generate_register_struct): Change
5846 type of "registers_used".
5847 (compute): Update.
5848
5849 2021-01-23 Tom Tromey <tom@tromey.com>
5850
5851 * compile/compile-internal.h (class compile_instance)
5852 <set_arguments>: Change return type.
5853 * compile/compile.c (compile_to_object): Remove call to reset.
5854 (compile_instance::set_arguments): Change return type.
5855
5856 2021-01-23 Simon Marchi <simon.marchi@polymtl.ca>
5857
5858 * gdbtypes.c (copy_type_recursive): Use get_type_arch.
5859 * gdbtypes.h (struct type) <set_owner>: Add asserts.
5860
5861 2021-01-23 Lancelot SIX <lsix@lancelotsix.com>
5862
5863 * Makefile.in (SELFTESTS_SRCS): Add
5864 unittests/gdb_tilde_expand-selftests.c.
5865 * unittests/gdb_tilde_expand-selftests.c: New file.
5866
5867 2021-01-22 Andrew Burgess <andrew.burgess@embecosm.com>
5868
5869 PR cli/25956
5870 * NEWS: Mention new command.
5871 * cli/cli-style.c: Add 'cli/cli-setshow.h' include.
5872 (version_style): Define.
5873 (cli_style_option::cli_style_option): Add intensity parameter, and
5874 use as appropriate.
5875 (_initialize_cli_style): Register version style set/show commands.
5876 * cli/cli-style.h (cli_style_option): Add intensity parameter.
5877 (version_style): Declare.
5878 * top.c (print_gdb_version): Use version_stype, and styled_string
5879 to print the GDB version string.
5880
5881 2021-01-22 Andrew Burgess <andrew.burgess@embecosm.com>
5882
5883 * utils.c (emit_style_escape): Only emit an escape sequence if the
5884 requested style is different than the current applied style.
5885 (fputs_maybe_filtered): Adjust the juggling of the wrap_style, and
5886 current applied_style.
5887 (fputs_styled): Remove is_default check.
5888 (fputs_styled_unfiltered): Likewise.
5889 (vfprintf_styled_no_gdbfmt): Likewise.
5890
5891 2021-01-22 Simon Marchi <simon.marchi@polymtl.ca>
5892
5893 * remote.h (remote_debug_printf): New.
5894 (remote_debug_printf_nofunc): New.
5895 (REMOTE_SCOPED_DEBUG_ENTER_EXIT): New.
5896 * remote.c: Use above macros throughout file.
5897
5898 2021-01-22 Simon Marchi <simon.marchi@polymtl.ca>
5899
5900 * remote.h (remote_debug): Change to bool.
5901 * remote.c (remote_debug): Change to bool.
5902 (_initialize_remote): Adjust.
5903
5904 2021-01-22 Simon Marchi <simon.marchi@polymtl.ca>
5905
5906 * target.h (remote_debug): Move to...
5907 * remote.h (remote_debug): ... here.
5908 * top.c (remote_debug): Move to...
5909 * remote.c (remote_debug): ... here.
5910 * remote-sim.c: Include remote.h.
5911
5912 2021-01-22 Simon Marchi <simon.marchi@polymtl.ca>
5913
5914 * cli/cli-cmds.c (show_remote_debug): Remove.
5915 (show_remote_timeout): Remove.
5916 (_initialize_cli_cmds): Don't register commands.
5917 * remote.c (show_remote_debug): Move here.
5918 (show_remote_timeout): Move here.
5919 (_initialize_remote): Register commands.
5920
5921 2021-01-22 Simon Marchi <simon.marchi@polymtl.ca>
5922
5923 * gdbtypes.h (TYPE_OBJFILE): Remove, change all users to use the
5924 type::objfile method instead.
5925
5926 2021-01-22 Simon Marchi <simon.marchi@polymtl.ca>
5927
5928 * gdbtypes.h (TYPE_OBJFILE_OWNED): Remove, update all users to
5929 use the type::is_objfile_owned method.
5930
5931 2021-01-22 Simon Marchi <simon.marchi@efficios.com>
5932
5933 * gdbtypes.h (TYPE_OBJFILE_OWNED): Adjust.
5934 (TYPE_OWNER): Remove.
5935 (TYPE_OBJFILE): Adjust.
5936 (struct main_type) <flag_objfile_owned>: Rename to...
5937 <m_flag_objfile_owned>: ... this.
5938 <owner>: Rename to...
5939 <m_owner>: ... this.
5940 (struct type) <is_objfile_owned, set_owner, objfile, arch>: New
5941 methods.
5942 (TYPE_ALLOC): Adjust.
5943 * gdbtypes.c (alloc_type): Adjust.
5944 (alloc_type_arch): Adjust.
5945 (alloc_type_copy): Adjust.
5946 (get_type_arch): Adjust.
5947 (smash_type): Adjust.
5948 (lookup_array_range_type): Adjust.
5949 (recursive_dump_type): Adjust.
5950 (copy_type_recursive): Adjust.
5951 * compile/compile-c-types.c (convert_func): Adjust.
5952 (convert_type_basic): Adjust.
5953 * compile/compile-cplus-types.c (compile_cplus_convert_func):
5954 Adjust.
5955 * language.c
5956 (language_arch_info::type_and_symbol::alloc_type_symbol):
5957 Adjust.
5958
5959 2021-01-21 Luis Machado <luis.machado@linaro.org>
5960
5961 * coffread.c (enter_linenos): Passing string to complaint.
5962 * valops.c (value_assign): Make array view.
5963
5964 2021-01-21 Simon Marchi <simon.marchi@polymtl.ca>
5965
5966 * auto-load.h (debug_auto_load): Move here.
5967 (auto_load_debug_printf): New.
5968 * auto-load.c: Use auto_load_debug_printf.
5969 (debug_auto_load): Move to header.
5970 * linux-thread-db.c (try_thread_db_load): Use
5971 auto_load_debug_printf.
5972 * main.c (captured_main_1): Likewise.
5973
5974 2021-01-21 Simon Marchi <simon.marchi@polymtl.ca>
5975
5976 * f-valprint.c (f77_array_offset_tbl): Remove.
5977
5978 2021-01-21 Simon Marchi <simon.marchi@polymtl.ca>
5979
5980 * gdb_bfd.c (bfd_cache_debug_printf): New, use throughout file.
5981
5982 2021-01-21 Simon Marchi <simon.marchi@polymtl.ca>
5983
5984 * ser-tcp.c (wait_for_connect): Use interruptible_select instead
5985 of gdb_select.
5986
5987 2021-01-21 Hannes Domani <ssbssa@yahoo.de>
5988
5989 PR python/19151
5990 * python/py-breakpoint.c (bppy_get_location): Handle
5991 bp_hardware_breakpoint.
5992 (bppy_init): Likewise.
5993 (gdbpy_breakpoint_created): Likewise.
5994
5995 2021-01-21 Simon Marchi <simon.marchi@polymtl.ca>
5996
5997 * arm-tdep.c (arm_debug_printf): Add and use throughout file.
5998
5999 2021-01-20 Simon Marchi <simon.marchi@polymtl.ca>
6000
6001 * gdb_bfd.c (debug_bfd_cache): Change type to bool.
6002 (_initialize_gdb_bfd): Adjust.
6003
6004 2021-01-20 Simon Marchi <simon.marchi@polymtl.ca>
6005
6006 PR gdb/26828
6007 * dwarf2/read.c (maybe_queue_comp_unit): Add assertion.
6008
6009 2021-01-20 Simon Marchi <simon.marchi@polymtl.ca>
6010
6011 * dwarf2/read.c (follow_die_offset): Add logging.
6012 (dwarf2_per_objfile::age_comp_units): Add logging.
6013
6014 2021-01-20 Simon Marchi <simon.marchi@polymtl.ca>
6015
6016 * aarch64-linux-tdep.c (aarch64_linux_record_tdep): Make static.
6017 * aarch64-tdep.c (tdesc_aarch64_list, aarch64_prologue_unwind,
6018 aarch64_stub_unwind, aarch64_normal_base, ): Make static.
6019 * arm-linux-tdep.c (arm_prologue_unwind): Make static.
6020 * arm-tdep.c (struct frame_unwind): Make static.
6021 * auto-load.c (auto_load_safe_path_vec): Make static.
6022 * csky-tdep.c (csky_stub_unwind): Make static.
6023 * gdbarch.c (gdbarch_data_registry): Make static.
6024 * gnu-v2-abi.c (gnu_v2_abi_ops): Make static.
6025 * i386-netbsd-tdep.c (i386nbsd_mc_reg_offset): Make static.
6026 * i386-tdep.c (i386_frame_setup_skip_insns,
6027 i386_tramp_chain_in_reg_insns, i386_tramp_chain_on_stack_insns):
6028 Make static.
6029 * infrun.c (observer_mode): Make static.
6030 * linux-nat.c (sigchld_action): Make static.
6031 * linux-thread-db.c (thread_db_list): Make static.
6032 * maint-test-options.c (maintenance_test_options_list):
6033 * mep-tdep.c (mep_csr_registers): Make static.
6034 * mi/mi-cmds.c (struct mi_cmd_stats): Remove struct type name.
6035 (stats): Make static.
6036 * nat/linux-osdata.c (struct osdata_type): Make static.
6037 * ppc-netbsd-tdep.c (ppcnbsd_reg_offsets): Make static.
6038 * progspace.c (last_program_space_num): Make static.
6039 * python/py-param.c (struct parm_constant): Remove struct type
6040 name.
6041 (parm_constants): Make static.
6042 * python/py-record-btrace.c (btpy_list_methods): Make static.
6043 * python/py-record.c (recpy_gap_type): Make static.
6044 * record.c (record_goto_cmdlist): Make static.
6045 * regcache.c (regcache_descr_handle): Make static.
6046 * registry.h (DEFINE_REGISTRY): Make definition static.
6047 * symmisc.c (std_in, std_out, std_err): Make static.
6048 * top.c (previous_saved_command_line): Make static.
6049 * tracepoint.c (trace_user, trace_notes, trace_stop_notes): Make
6050 static.
6051 * unittests/command-def-selftests.c (nr_duplicates,
6052 nr_invalid_prefixcmd, lists): Make static.
6053 * unittests/observable-selftests.c (test_notification): Make
6054 static.
6055 * unittests/optional/assignment/1.cc (counter): Make static.
6056 * unittests/optional/assignment/2.cc (counter): Make static.
6057 * unittests/optional/assignment/3.cc (counter): Make static.
6058 * unittests/optional/assignment/4.cc (counter): Make static.
6059 * unittests/optional/assignment/5.cc (counter): Make static.
6060 * unittests/optional/assignment/6.cc (counter): Make static.
6061
6062 2021-01-20 Joel Sherrill <joel@rtems.org>
6063
6064 PR gdb/27219
6065 * remote.c (struct remote_thread_info) <resume_state>: Rename
6066 to...
6067 <get_resume_state>: ... this.
6068 (remote_target::resume): Adjust.
6069 (remote_target::commit_resume): Adjust.
6070 (remote_target::select_thread_for_ambiguous_stop_reply): Adjust.
6071
6072 2021-01-20 Sergio Durigan Junior <sergiodj@sergiodj.net>
6073 Tom Tromey <tom@tromey.com>
6074
6075 * stap-probe.c (stap_parse_single_operand): Handle '!'
6076 operator.
6077 (stap_parse_argument_conditionally): Likewise.
6078 Skip spaces after processing open-parenthesis sub-expression.
6079 (stap_parse_argument_1): Skip spaces after call to
6080 stap_parse_argument_conditionally.
6081 Handle case when right-side expression is a parenthesized
6082 sub-expression.
6083 Skip spaces after call to stap_parse_argument_1.
6084
6085 2021-01-19 Lancelot SIX <lsix@lancelotsix.com>
6086
6087 * top.h (switch_thru_all_uis): Use DISABLE_COPY_AND_ASSIGN.
6088
6089 2021-01-19 Luis Machado <luis.machado@linaro.org>
6090
6091 * trad-frame.h (trad_frame_saved_reg) <set_value_bytes>: Allocate
6092 memory and save data.
6093 (trad_frame_set_value, trad_frame_set_realreg, trad_frame_set_addr)
6094 (trad_frame_set_unknown, trad_frame_set_value_bytes)
6095 (trad_frame_value_p, trad_frame_addr_p, trad_frame_realreg_p)
6096 (trad_frame_value_bytes_p): Remove.
6097 (trad_frame_reset_saved_regs): Adjust documentation.
6098 * trad-frame.c (trad_frame_alloc_saved_regs): Initialize via a
6099 constructor and reset the state of the registers.
6100 (trad_frame_value_p, trad_frame_addr_p, trad_frame_realreg_p)
6101 (trad_frame_value_bytes_p, trad_frame_set_value)
6102 (trad_frame_set_realreg, trad_frame_set_addr)
6103 (trad_frame_set_unknown, trad_frame_set_value_bytes): Remove.
6104 (trad_frame_set_reg_realreg): Update to call member function.
6105 (trad_frame_set_reg_addr, trad_frame_set_reg_value_bytes): Likewise.
6106 (trad_frame_get_prev_register): Likewise.
6107
6108 * aarch64-tdep.c (aarch64_analyze_prologue)
6109 (aarch64_analyze_prologue_test, aarch64_make_prologue_cache_1)
6110 (aarch64_prologue_prev_register): Update to use member functions.
6111 * alpha-mdebug-tdep.c (alpha_mdebug_frame_unwind_cache): Likewise.
6112 * alpha-tdep.c (alpha_heuristic_frame_unwind_cache): Likewise.
6113 * arc-tdep.c (arc_print_frame_cache, arc_make_frame_cache): Likewise.
6114 * arm-tdep.c (arm_make_prologue_cache, arm_exidx_fill_cache)
6115 (arm_make_epilogue_frame_cache): Likewise.
6116 * avr-tdep.c (avr_frame_unwind_cache)
6117 (avr_frame_prev_register): Likewise.
6118 * cris-tdep.c (cris_scan_prologue): Likewise.
6119 * csky-tdep.c (csky_frame_unwind_cache): Likewise.
6120 * frv-tdep.c (frv_analyze_prologue): Likewise.
6121 * hppa-tdep.c (hppa_frame_cache, hppa_fallback_frame_cache): Likewise.
6122 * lm32-tdep.c (lm32_frame_cache): Likewise.
6123 * m32r-tdep.c (m32r_frame_unwind_cache): Likewise.
6124 * m68hc11-tdep.c (m68hc11_frame_unwind_cache): Likewise.
6125 * mips-tdep.c (set_reg_offset, mips_insn16_frame_cache)
6126 (mips_micro_frame_cache, mips_insn32_frame_cache): Likewise.
6127 (reset_saved_regs): Adjust to set realreg.
6128 * riscv-tdep.c (riscv_scan_prologue, riscv_frame_cache): Adjust to
6129 call member functions.
6130 * rs6000-tdep.c (rs6000_frame_cache, rs6000_epilogue_frame_cache)
6131 * s390-tdep.c (s390_prologue_frame_unwind_cache)
6132 (s390_backchain_frame_unwind_cache): Likewise.
6133 * score-tdep.c (score7_analyze_prologue)
6134 (score3_analyze_prologue, score_make_prologue_cache): Likewise.
6135 * sparc-netbsd-tdep.c (sparc32nbsd_sigcontext_saved_regs): Likewise.
6136 * sparc-sol2-tdep.c (sparc32_sol2_sigtramp_frame_cache): Likewise.
6137 * sparc64-netbsd-tdep.c (sparc64nbsd_sigcontext_saved_regs): Likewise.
6138 * sparc64-sol2-tdep.c (sparc64_sol2_sigtramp_frame_cache): Likewise.
6139 * tilegx-tdep.c (tilegx_analyze_prologue)
6140 (tilegx_frame_cache): Likewise.
6141 * v850-tdep.c (v850_frame_cache): Likewise.
6142 * vax-tdep.c (vax_frame_cache): Likewise.
6143
6144 2021-01-19 Luis Machado <luis.machado@linaro.org>
6145
6146 * frame.h (get_frame_register_bytes): Pass a gdb::array_view instead
6147 of buffer + length.
6148 (put_frame_register_bytes): Likewise.
6149 Adjust documentation.
6150 (get_frame_memory): Pass a gdb::array_view instead of buffer + length.
6151 (safe_frame_unwind_memory): Likewise.
6152 * frame.c (get_frame_register_bytes, put_frame_register_bytes)
6153 (get_frame_memory, safe_frame_unwind_memory): Adjust to use
6154 gdb::array_view.
6155 * amd64-fbsd-tdep.c (amd64fbsd_sigtramp_p): Likewise.
6156 * amd64-linux-tdep.c (amd64_linux_sigtramp_start): Likewise.
6157 * amd64-obsd-tdep.c (amd64obsd_sigtramp_p): Likewise.
6158 * arc-linux-tdep.c (arc_linux_is_sigtramp): Likewise.
6159 * cris-tdep.c (cris_sigtramp_start, cris_rt_sigtramp_start): Likewise.
6160 * dwarf2/loc.c (rw_pieced_value): Likewise.
6161 * hppa-tdep.c (hppa_frame_cache): Likewise.
6162 * i386-fbsd-tdep.c (i386fbsd_sigtramp_p): Likewise.
6163 * i386-gnu-tdep.c (i386_gnu_sigtramp_start): Likewise.
6164 * i386-linux-tdep.c (i386_linux_sigtramp_start)
6165 (i386_linux_rt_sigtramp_start): Likewise.
6166 * i386-obsd-tdep.c (i386obsd_sigtramp_p): Likewise.
6167 * i386-tdep.c (i386_register_to_value): Likewise.
6168 * i387-tdep.c (i387_register_to_value): Likewise.
6169 * ia64-tdep.c (ia64_register_to_value): Likewise.
6170 * m32r-linux-tdep.c (m32r_linux_sigtramp_start)
6171 (m32r_linux_rt_sigtramp_start): Likewise.
6172 * m68k-linux-tdep.c (m68k_linux_pc_in_sigtramp): Likewise.
6173 * m68k-tdep.c (m68k_register_to_value): Likewise.
6174 * mips-tdep.c (mips_register_to_value)
6175 (mips_value_to_register): Likewise.
6176 * ppc-fbsd-tdep.c (ppcfbsd_sigtramp_frame_sniffer)
6177 (ppcfbsd_sigtramp_frame_cache): Likewise.
6178 * ppc-obsd-tdep.c (ppcobsd_sigtramp_frame_sniffer)
6179 (ppcobsd_sigtramp_frame_cache): Likewise.
6180 * rs6000-tdep.c (rs6000_in_function_epilogue_frame_p)
6181 (rs6000_register_to_value): Likewise.
6182 * tilegx-tdep.c (tilegx_analyze_prologue): Likewise.
6183 * tramp-frame.c (tramp_frame_start): Likewise.
6184 * valops.c (value_assign): Likewise.
6185
6186 2021-01-19 Luis Machado <luis.machado@linaro.org>
6187
6188 * aarch64-linux-tdep.c (aarch64_linux_restore_vreg): Pass in an
6189 array_view.
6190 * trad-frame.c (trad_frame_set_value_bytes): Use gdb::array_view
6191 instead of buffer and size.
6192 (trad_frame_set_reg_value_bytes): Likewise.
6193 * trad-frame.h (trad_frame_set_reg_value_bytes): Likewise.
6194 (trad_frame_set_value_bytes): Likewise.
6195
6196 2021-01-18 Mike Frysinger <vapier@gentoo.org>
6197
6198 * copyright.py (NOT_FSF_LIST): Delete sim/testsuite/sim/bfin/s21.s.
6199
6200 2021-01-18 Andrew Burgess <andrew.burgess@embecosm.com>
6201
6202 * riscv-fbsd-tdep.c (riscv_fbsd_supply_gregset): Delete.
6203 (riscv_fbsd_gregset): Use riscv_supply_regset.
6204 (riscv_fbsd_fpregset): Likewise.
6205 * riscv-linux-tdep.c (riscv_linux_gregset): Likewise.
6206 (riscv_linux_fregset): Likewise.
6207 * riscv-tdep.c (riscv_supply_regset): Define new function.
6208 * riscv-tdep.h (riscv_supply_regset): Declare new function.
6209
6210 2021-01-18 Tom de Vries <tdevries@suse.de>
6211
6212 PR tdep/27172
6213 * nat/amd64-linux-siginfo.c (cpt_si_lower, cpt_si_upper, SEGV_BNDERR):
6214 New macro.
6215 (compat_siginfo_from_siginfo): Copy cpt_si_lower and cpt_si_upper
6216 for SEGV_BNDERR.
6217
6218 2021-01-18 Simon Marchi <simon.marchi@polymtl.ca>
6219
6220 * remote.c (class remote_target) <remote_hostio_send_command,
6221 remote_hostio_parse_result>: Constify parameter.
6222 (remote_hostio_parse_result): Likewise.
6223 (remote_target::remote_hostio_send_command): Adjust.
6224 (remote_target::remote_hostio_pread_vFile): Adjust.
6225 (remote_target::fileio_readlink): Adjust.
6226 (remote_target::fileio_fstat): Adjust.
6227
6228 2021-01-18 Simon Marchi <simon.marchi@polymtl.ca>
6229
6230 * remote.c (remote_target::start_remote): Move wait_status to
6231 narrower scope.
6232
6233 2021-01-18 Simon Marchi <simon.marchi@polymtl.ca>
6234
6235 * remote.c (class remote_target):
6236 <add_current_inferior_and_thread>: Constify parameter.
6237 (stop_reply_extract_thread): Likewise.
6238 (remote_target::get_current_thread): Likewise.
6239 (remote_target::add_current_inferior_and_thread): Likewise.
6240
6241 2021-01-18 Simon Marchi <simon.marchi@polymtl.ca>
6242
6243 * remote.c (class remote_target)
6244 <remote_unpack_thread_info_response,
6245 parse_threadlist_response>: Constify parameter and/or return
6246 value and or local variable.
6247 (stub_unpack_int): Likewise.
6248 (unpack_nibble): Likewise.
6249 (unpack_byte): Likewise.
6250 (unpack_int): Likewise.
6251 (unpack_string): Likewise.
6252 (unpack_threadid): Likewise.
6253 (remote_target::remote_unpack_thread_info_response): Likewise.
6254 (remote_target::parse_threadlist_response): Likewise.
6255
6256 2021-01-15 Andrew Burgess <andrew.burgess@embecosm.com>
6257
6258 * tui/tui.c (tui_is_window_visible): Compare to nullptr, not 0.
6259
6260 2021-01-14 Lancelot Six <lsix@lancelotsix.com>
6261
6262 * MAINTAINERS (Write After Approval): Add myself.
6263
6264 2021-01-14 Bernd Edlinger <bernd.edlinger@hotmail.de>
6265
6266 * trad-frame.c (trad_frame_alloc_saved_regs): Avoid compile-error
6267 because is_trivially_default_constructible was first implemented with
6268 gcc-5.
6269
6270 2021-01-14 Tom de Vries <tdevries@suse.de>
6271
6272 PR breakpoints/27151
6273 * objfiles.h (in_plt_section): Handle .plt.sec.
6274
6275 2021-01-13 Andrew Burgess <andrew.burgess@embecosm.com>
6276
6277 PR gdb/26819
6278 * remote.c
6279 (remote_target::select_thread_for_ambiguous_stop_reply): New
6280 member function.
6281 (remote_target::process_stop_reply): Call
6282 select_thread_for_ambiguous_stop_reply.
6283
6284 2021-01-13 Simon Marchi <simon.marchi@efficios.com>
6285
6286 * record-btrace.c (class record_btrace_target): Remove.
6287 (record_btrace_target::commit_resume): Remove.
6288 * record-full.c (class record_full_target): Remove.
6289 (record_full_target::commit_resume): Remove.
6290
6291 2021-01-13 Simon Marchi <simon.marchi@efficios.com>
6292
6293 * remote.c (enum class resume_state): New.
6294 (struct resumed_pending_vcont_info): New.
6295 (struct remote_thread_info) <resume_state, set_not_resumed,
6296 set_resumed_pending_vcont, resumed_pending_vcont_info,
6297 set_resumed, m_resume_state, m_resumed_pending_vcont_info>:
6298 New.
6299 <last_resume_step, last_resume_sig, vcont_resumed>: Remove.
6300 (remote_target::remote_add_thread): Adjust.
6301 (remote_target::process_initial_stop_replies): Adjust.
6302 (remote_target::resume): Adjust.
6303 (remote_target::commit_resume): Rely on state in
6304 remote_thread_info and not on tp->executing.
6305 (remote_target::process_stop_reply): Adjust.
6306
6307 2021-01-13 Simon Marchi <simon.marchi@polymtl.ca>
6308
6309 * arc-tdep.h (arc_debug_printf): New.
6310 * arc-tdep.c: Use arc_debug_printf.
6311 * arc-linux-nat.c (arc_linux_nat_debug_printf): Add and use.
6312 * arc-linux-tdep.c (arc_linux_debug_printf): Add and use.
6313 * arc-newlib-tdep.c (arc_newlib_debug_printf): Add and use.
6314
6315 2021-01-13 Simon Marchi <simon.marchi@polymtl.ca>
6316
6317 * arc-tdep.h (arc_debug): Change type to bool.
6318 * arc-tdep.c (arc_debug): Change type to bool.
6319 (arc_analyze_prologue): Adjust.
6320 (_initialize_arc_tdep): Use add_setshow_boolean_cmd.
6321 * arc-linux-nat.c (ps_get_thread_area): Adjust.
6322
6323 2021-01-13 Simon Marchi <simon.marchi@polymtl.ca>
6324
6325 * auto-load.c (auto_load_objfile_script_1): Use bool.
6326 (execute_script_contents): Use bool.
6327
6328 2021-01-13 Simon Marchi <simon.marchi@polymtl.ca>
6329
6330 * auto-load.h (auto_load_gdb_scripts_enabled): Return bool, move
6331 comment here.
6332 * auto-load.c (auto_load_gdb_scripts_enabled): Return bool, move
6333 comment to header.
6334 * extension-priv.h (struct extension_language_script_ops)
6335 <auto_load_enabled>: Return bool.
6336 * extension.h (ext_lang_auto_load_enabled): Return bool, move
6337 comment here.
6338 * extension.c (ext_lang_auto_load_enabled): Return bool, move
6339 comment to header.
6340 * guile/guile-header.h (gdbscm_auto_load_enabled): Return bool,
6341 move comment here.
6342 * guile/scm-auto-load.c (gdbscm_auto_load_enabled): Return bool,
6343 move comment to header.
6344 * python/python-header.h (gdbpy_auto_load_enabled): Return bool,
6345 move comment here.
6346 * python/py-auto-load.c (gdbpy_auto_load_enabled): Return bool,
6347 move comment to header.
6348
6349 2021-01-13 Simon Marchi <simon.marchi@polymtl.ca>
6350
6351 * auto-load.h (file_is_auto_load_safe): Change return type to
6352 bool, move comment here.
6353 * auto-load.c (file_is_auto_load_safe): Change return type and
6354 advice_printed to bool. Move comment to header.
6355
6356 2021-01-13 Simon Marchi <simon.marchi@polymtl.ca>
6357
6358 * jit.c (jit_debug_printf): New, use throughout file.
6359
6360 2021-01-12 Simon Marchi <simon.marchi@polymtl.ca>
6361
6362 * infrun.c (normal_stop): Fix indentation.
6363
6364 2021-01-12 Simon Marchi <simon.marchi@polymtl.ca>
6365
6366 * top.h (readnow_symbol_files, readnever_symbol_files): Move
6367 declarations to ...
6368 * symfile.h: ... here.
6369 * symfile.c: Update doc.
6370
6371 2021-01-12 Simon Marchi <simon.marchi@polymtl.ca>
6372
6373 * target.h (baud_rate, serial_parity): Move declarations...
6374 * serial.h: ... here.
6375 * main.c: Include serial.h.
6376 * serial.c (baud_rate, serial_parity): Update doc.
6377
6378 2021-01-12 Simon Marchi <simon.marchi@polymtl.ca>
6379
6380 * top.c (pre_init_ui_hook): Remove.
6381
6382 2021-01-12 Srinath Parvathaneni <srinath.parvathaneni@arm.com>
6383
6384 * aarch64-tdep.c (aarch64_vnh_type): Add "bf" field in h registers.
6385 (aarch64_vnv_type): Add "bf" type in h field of v registers.
6386 * features/aarch64-fpu.c (create_feature_aarch64_fpu): Regenerated.
6387 * features/aarch64-fpu.xml: Add bfloat16 type.
6388
6389 2021-01-12 Andrew Burgess <andrew.burgess@embecosm.com>
6390
6391 * expprint.c (dump_subexp_body_standard): Handle OP_BOOL.
6392
6393 2021-01-12 Andrew Burgess <andrew.burgess@embecosm.com>
6394
6395 * f-exp.y (dot_ops): Rename to...
6396 (fortran_operators): ...this. Add a header comment. Add symbol
6397 based operators.
6398 (yylex): Update to use fortran_operators not dot_ops. Remove
6399 special handling for '**', this is now included in
6400 fortran_operators.
6401
6402 2021-01-11 Simon Marchi <simon.marchi@polymtl.ca>
6403
6404 * arch/aarch64-insn.h (aarch64_debug_printf): New.
6405 * arch/aarch64-insn.c: Use aarch64_debug_printf.
6406 * aarch64-tdep.c: Use aarch64_debug_printf.
6407
6408 2021-01-11 Simon Marchi <simon.marchi@polymtl.ca>
6409
6410 * solib-aix.c (solib_aix_debug_printf): New, use throughout
6411 file.
6412
6413 2021-01-11 Simon Marchi <simon.marchi@polymtl.ca>
6414
6415 * jit.c (jit_debug): Change type to bool.
6416 (_initialize_jit): Adjust.
6417
6418 2021-01-09 Tom Tromey <tom@tromey.com>
6419
6420 PR compile/23672
6421 * compile/compile.c (compile_to_object): Avoid crash when
6422 osabi_triplet_regexp returns NULL.
6423
6424 2021-01-09 Tom Tromey <tom@tromey.com>
6425
6426 * tracepoint.h (class collection_list) <append_exp>: Take a
6427 std::string.
6428 * tracepoint.c (collection_list::append_exp): Take a std::string.
6429 (encode_actions_1): Update.
6430
6431 2021-01-08 Tom Tromey <tromey@adacore.com>
6432
6433 * parse.c (parse_expression): Add void_context_p parameter. Use
6434 parse_exp_in_context.
6435 * printcmd.c (print_command_1): Change voidprint to bool. Pass to
6436 parse_expression.
6437 (print_command, call_command): Update.
6438 * expression.h (parse_expression): Add void_context_p parameter.
6439
6440 2021-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
6441
6442 * value.c (set_value_component_location): Adjust the VALUE_LVAL
6443 for internalvar components that have a dynamic location.
6444
6445 2021-01-08 Tom de Vries <tdevries@suse.de>
6446
6447 PR gdb/26881
6448 * breakpoint.c (create_exception_master_breakpoint_probe)
6449 (create_exception_master_breakpoint_hook): Factor out
6450 of ...
6451 (create_exception_master_breakpoint): ... here. Only try to install
6452 the master exception breakpoint in objfile.debug using the
6453 _Unwind_DebugHook method, if the install using probes in objfile
6454 failed.
6455
6456 2021-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
6457
6458 * f-lang.c (fortran_value_subarray): Call value_from_component.
6459
6460 2021-01-07 Mike Frysinger <vapier@gentoo.org>
6461
6462 * remote-sim.c: Include memory-map.h.
6463 (gdbsim_target): Define memory_map override.
6464 (gdbsim_target::memory_map): Define.
6465
6466 2021-01-07 Tom Tromey <tromey@adacore.com>
6467
6468 * ada-lang.c (do_full_match): Conditionally skip "_ada_" prefix.
6469
6470 2021-01-07 Tom Tromey <tromey@adacore.com>
6471
6472 * ada-lang.c (add_component_interval): Start loop using vector's
6473 updated size.
6474
6475 2021-01-06 Tom Tromey <tromey@adacore.com>
6476
6477 * ada-lang.c (ada_evaluate_subexp) <BINOP_ADD, BINOP_SUB>:
6478 Do not cast result.
6479 * valarith.c (fixed_point_binop): Handle multiplication
6480 and division specially.
6481 * valops.c (value_to_gdb_mpq): New function.
6482 (value_cast_to_fixed_point): Use it.
6483
6484 2021-01-05 Hannes Domani <ssbssa@yahoo.de>
6485
6486 * tui/tui-winsource.c (tui_source_window_base::refresh_window):
6487 Call wnoutrefresh instead of tui_win_info::refresh_window.
6488
6489 2021-01-05 Hannes Domani <ssbssa@yahoo.de>
6490
6491 * tui/tui-source.c (tui_source_window::show_line_number):
6492 Redraw second space after line number.
6493
6494 2021-01-05 Hannes Domani <ssbssa@yahoo.de>
6495
6496 PR tui/26927
6497 * tui/tui-winsource.c (tui_source_window_base::refresh_window):
6498 Fix source pad size in prefresh.
6499 (tui_source_window_base::show_source_content): Grow source pad
6500 if necessary.
6501
6502 2021-01-04 Mike Frysinger <vapier@gentoo.org>
6503
6504 * bfin-tdep.c (bfin_push_dummy_call): Use align_up.
6505 (bfin_frame_align): Use align_down.
6506
6507 2021-01-04 Tom de Vries <tdevries@suse.de>
6508
6509 * buildsym.c (buildsym_compunit::record_line): Filter out end-of-seq
6510 terminators that do not terminate anything.
6511
6512 2021-01-04 Simon Marchi <simon.marchi@efficios.com>
6513
6514 * debug.c (debug_print_depth): New.
6515 * infrun.h (INFRUN_SCOPED_DEBUG_START_END): New.
6516 (INFRUN_SCOPED_DEBUG_ENTER_EXIT): New.
6517 * infrun.c (start_step_over): Use
6518 INFRUN_SCOPED_DEBUG_ENTER_EXIT.
6519 (proceed): Use INFRUN_SCOPED_DEBUG_ENTER_EXIT and
6520 INFRUN_SCOPED_DEBUG_START_END.
6521 (fetch_inferior_event): Use INFRUN_SCOPED_DEBUG_ENTER_EXIT.
6522
6523 2021-01-04 Simon Marchi <simon.marchi@efficios.com>
6524
6525 * infrun.c (print_target_wait_results): Use infrun_debug_printf.
6526
6527 2021-01-04 Simon Marchi <simon.marchi@efficios.com>
6528
6529 * utils.c (vfprintf_unfiltered): Print timestamp only when
6530 previous debug output ended with a newline.
6531
6532 2021-01-04 Luis Machado <luis.machado@linaro.org>
6533
6534 Update all users of trad_frame_saved_reg to use the new member
6535 functions.
6536
6537 Remote all struct keywords from declarations of trad_frame_saved_reg
6538 types, except on forward declarations.
6539
6540 * aarch64-tdep.c: Update.
6541 * alpha-mdebug-tdep.c: Update.
6542 * alpha-tdep.c: Update.
6543 * arc-tdep.c: Update.
6544 * arm-tdep.c: Update.
6545 * avr-tdep.c: Update.
6546 * cris-tdep.c: Update.
6547 * csky-tdep.c: Update.
6548 * frv-tdep.c: Update.
6549 * hppa-linux-tdep.c: Update.
6550 * hppa-tdep.c: Update.
6551 * hppa-tdep.h: Update.
6552 * lm32-tdep.c: Update.
6553 * m32r-linux-tdep.c: Update.
6554 * m32r-tdep.c: Update.
6555 * m68hc11-tdep.c: Update.
6556 * mips-tdep.c: Update.
6557 * moxie-tdep.c: Update.
6558 * riscv-tdep.c: Update.
6559 * rs6000-tdep.c: Update.
6560 * s390-linux-tdep.c: Update.
6561 * s390-tdep.c: Update.
6562 * score-tdep.c: Update.
6563 * sparc-netbsd-tdep.c: Update.
6564 * sparc-sol2-tdep.c: Update.
6565 * sparc64-fbsd-tdep.c: Update.
6566 * sparc64-netbsd-tdep.c: Update.
6567 * sparc64-obsd-tdep.c: Update.
6568 * sparc64-sol2-tdep.c: Update.
6569 * tilegx-tdep.c: Update.
6570 * v850-tdep.c: Update.
6571 * vax-tdep.c: Update.
6572
6573 * frame-unwind.c (frame_unwind_got_bytes): Make parameter const.
6574 * frame-unwind.h (frame_unwind_got_bytes): Likewise.
6575
6576 * trad-frame.c: Update.
6577 Remove TF_REG_* enum.
6578 (trad_frame_alloc_saved_regs): Add a static assertion to check for
6579 a trivially-constructible struct.
6580 (trad_frame_reset_saved_regs): Adjust to use member function.
6581 (trad_frame_value_p): Likewise.
6582 (trad_frame_addr_p): Likewise.
6583 (trad_frame_realreg_p): Likewise.
6584 (trad_frame_value_bytes_p): Likewise.
6585 (trad_frame_set_value): Likewise.
6586 (trad_frame_set_realreg): Likewise.
6587 (trad_frame_set_addr): Likewise.
6588 (trad_frame_set_unknown): Likewise.
6589 (trad_frame_set_value_bytes): Likewise.
6590 (trad_frame_get_prev_register): Likewise.
6591 * trad-frame.h: Update.
6592 (trad_frame_saved_reg_kind): New enum.
6593 (struct trad_frame_saved_reg) <addr, realreg, data>: Remove.
6594 <m_kind, m_reg>: New member fields.
6595 <set_value, set_realreg, set_addr, set_unknown, set_value_bytes>
6596 <kind, value, realreg, addr, value_bytes, is_value, is_realreg>
6597 <is_addr, is_unknown, is_value_bytes>: New member functions.
6598
6599 2021-01-02 Simon Marchi <simon.marchi@polymtl.ca>
6600
6601 * target-float.c: Fix typos.
6602
6603 2021-01-02 Hannes Domani <ssbssa@yahoo.de>
6604
6605 * gdb-gdb.py.in: Fix main_type.flds_bnds.bounds pretty printer.
6606
6607 2021-01-01 Joel Brobecker <brobecker@adacore.com>
6608
6609 * gdbarch.sh: Update copyright year range.
6610
6611 2021-01-01 Joel Brobecker <brobecker@adacore.com>
6612
6613 Update copyright year range in copyright header of all GDB files.
6614
6615 2021-01-01 Joel Brobecker <brobecker@adacore.com>
6616
6617 * copyright.py (get_update_list): Add "gdbserver" and "gdbsupport"
6618 to the list of directories to update.
6619
6620 2021-01-01 Joel Brobecker <brobecker@adacore.com>
6621
6622 * top.c (print_gdb_version): Update copyright year.
6623
6624 2021-01-01, 21 Joel Brobecker <brobecker@adacore.com>
6625
6626 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2020.
6627
6628 For older changes see ChangeLog-2020.
6629 \f
6630 Local Variables:
6631 mode: change-log
6632 left-margin: 8
6633 fill-column: 74
6634 version-control: never
6635 coding: utf-8
6636 End: