Fix potentially undefined behaviour in the linker when parsing input statements.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
87fb00ea
SM
12019-11-21 Simon Marchi <simon.marchi@polymtl.ca>
2
3 * top.c (current_ui_gdb_stdout_ptr): Spell out by hand.
4 (current_ui_gdb_stdin_ptr): Likewise.
5 (current_ui_gdb_stderr_ptr): Likewise.
6 (current_ui_gdb_stdlog_ptr): Likewise.
7 (current_ui_current_uiout_ptr): Likewise.
8 (gen_ret_current_ui_field_ptr): Remove.
9
65d1cd5f
TV
102019-11-21 Tom de Vries <tdevries@suse.de>
11
12 PR gdb/24956
13 * cli/cli-script.c (execute_control_command): Only switch to
14 INTERP_CONSOLE's ui_out when INTERP_MI is active.
15
9f6ad286
TT
162019-11-19 Tom Tromey <tom@tromey.com>
17
18 * tui/tui-win.c (tui_partial_win_by_name): Move from tui-data.c.
19 Now static. Change type of "name".
20 (tui_set_win_height_command): Don't copy "arg".
21 * tui/tui-data.h (tui_partial_win_by_name): Don't declare.
22 * tui/tui-data.c (tui_partial_win_by_name): Move to tui-win.c.
23
435d3d88
AT
242019-11-19 Ali Tamur <tamur@google.com>
25
26 * dwarf2read.c (dw2_get_file_names_reader): Replace "if (attr)" with
27 "if (attr != nullptr)".
28 (dwarf2_find_base_address): Likewise.
29 (dwarf2_build_include_psymtabs): Likewise.
30 (read_cutu_die_from_dwo): Likewise.
31 (read_func_scope): Likewise.
32 (read_call_site_scope): Likewise.
33 (dwarf2_get_pc_bounds): Likewise.
34 (dwarf2_record_block_ranges): Likewise.
35 (dwarf2_add_field): Likewise.
36 (dwarf2_add_member_fn): Likewise.
37 (read_structure_type): Likewise.
38 (read_enumeration_type): Likewise.
39 (read_array_type): Likewise.
40 (read_array_order): Likewise.
41 (read_set_type): Likewise.
42 (read_common_block): Likewise.
43 (read_tag_reference_type): Likewise.
44 (read_tag_string_type): Likewise.
45 (read_subroutine_type): Likewise.
46 (read_base_type): Likewise.
47 (read_subrange_type): Likewise.
48 (new_symbol): Likewise.
49 (prepare_one_comp_unit): Likewise.
50
c9739b6a
TT
512019-11-19 Tom Tromey <tromey@adacore.com>
52
53 * windows-nat.c (windows_nat_target::attach): Include GetLastError
54 result in error when DebugActiveProcess fails.
55
494409bb
SDJ
562019-11-18 Sergio Durigan Junior <sergiodj@redhat.com>
57 Pedro Alves <palves@redhat.com>
58
59 https://bugzilla.redhat.com/show_bug.cgi?id=1765117
60 * target.c (target_stack::push): Call 'unpush' if there's a
61 target on top of the stack.
62
2e953aca
PW
632019-11-18 Philippe Waroquiers <philippe.waroquiers@skynet.be>
64
65 * python/py-block.c (blpy_dealloc): Call tp_free.
66 (blpy_block_syms_dealloc): Likewise.
67 * python/py-finishbreakpoint.c (bpfinishpy_dealloc): Likewise.
68 * python/py-inferior.c (infpy_dealloc): Likewise.
69 * python/py-lazy-string.c (stpy_dealloc): Likewise.
70 * python/py-linetable.c (ltpy_iterator_dealloc): Likewise.
71 * python/py-symbol.c (sympy_dealloc): Likewise.
72 * python/py-symtab.c (stpy_dealloc): Likewise.
73 * python/py-type.c (typy_iterator_dealloc): Likewise.
74
6edc43ec
CB
752019-11-18 Christian Biesinger <cbiesinger@google.com>
76
77 * symtab.h (struct symbol) <owner>: Initialize explicitly in the
78 constructor instead of using a class initializer.
79
cd850b40
CB
802019-11-15 Christian Biesinger <cbiesinger@google.com>
81
82 * Makefile.in: Replace {posix,mingw}-strerror.c with safe-strerror.c.
83 * configure: Regenerate.
84 * configure.ac: Don't source common.host.
85 * gdbsupport/common.host: Remove.
86 * gdbsupport/mingw-strerror.c: Remove.
87 * gdbsupport/posix-strerror.c: Rename to...
88 * gdbsupport/safe-strerror.c: ...this.
89
53fea9c7
CB
902019-11-15 Christian Biesinger <cbiesinger@google.com>
91
92 * maint.c (scoped_command_stats::print_time): Use localtime_r
93 instead of localtime (provided through gnulib if necessary).
94 * nat/linux-osdata.c (time_from_time_t): Use ctime_r instead
95 of ctime.
96
f8e27d88
CB
972019-11-15 Christian Biesinger <cbiesinger@google.com>
98
99 * gdbsupport/common-defs.h: Include time.h before pathmax.h to
100 avoid compile errors.
101
5abebf3c
CB
1022019-11-15 Christian Biesinger <cbiesinger@google.com>
103
104 * config.in: Regenerate.
105 * configure: Regenerate.
106 * gdbsupport/common.m4: No longer check for strerror_r.
107 * gdbsupport/posix-strerror.c (safe_strerror): Always call the
108 POSIX version of strerror_r, now that gnulib provides it if
109 necessary.
110
9a351667
CB
1112019-11-14 Christian Biesinger <cbiesinger@google.com>
112
113 * README (`configure' options): Update.
114
55708e99
TT
1152019-11-14 Tom Tromey <tromey@adacore.com>
116
117 * eval.c (evaluate_subexp_standard) <BINOP_ASSIGN>: Do not pass an
118 expected type for the RHS if the LHS is a convenience variable.
119
4b09bb2e
SM
1202019-11-14 Simon Marchi <simon.marchi@polymtl.ca>
121
122 * unittests/vec-utils-selftests.c (unordered_remove_tests::obj):
123 Provide explicit default and copy constructor.
124
bd454f8b
PW
1252019-11-14 Philippe Waroquiers <philippe.waroquiers@skynet.be>
126
127 * python/py-finishbreakpoint.c (gdbpy_breakpoint_created):
128 only call Py_INCREF (newbp) in the bppy_pending_object case.
129
d1aa3cf0
TT
1302019-11-13 Tom Tromey <tromey@adacore.com>
131
132 PR build/25182:
133 * psympriv.h (partial_symbol): Remove static assert.
134 * symtab.h (general_symbol_info, symbol): Remove static assert.
135
e06f3d6e
AB
1362019-11-12 Andrew Burgess <andrew.burgess@embecosm.com>
137
138 * gdbsupport/format.c (format_pieces::format_pieces): Support
139 printf 'z' size modifier.
140 * gdbsupport/format.h (enum argclass): Add size_t_arg.
141 * printcmd.c (ui_printf): Handle size_t_arg.
142 * ui-out.c (ui_out::vmessage): Likewise.
143 * unittests/format_pieces-selftests.c (test_format_int_sizes): New
144 function.
145 (run_tests): Call test_format_int_sizes.
146
468c0cbb
CB
1472019-11-12 Christian Biesinger <cbiesinger@google.com>
148
149 * ada-exp.y (write_ambiguous_var): Update.
150 * buildsym.c (add_symbol_to_list): Update.
151 * dwarf2read.c (read_variable): Update.
152 (new_symbol): Update.
153 * jit.c (finalize_symtab): Update.
154 * language.c (language_alloc_type_symbol): Update.
155 * symtab.c (fixup_symbol_section): Update.
156 (initialize_objfile_symbol_1): Move code to...
157 (initialize_objfile_symbol): ...here. Remove now-unnecessary memset.
158 (allocate_symbol): Update.
159 (allocate_template_symbol): Update.
160 (get_symbol_address): Update.
161 * symtab.h (struct symbol): Inherit from general_symbol_info instead
162 of having as a field, and add a constructor.
163 (SYMBOL_VALUE): Update.
164 (SYMBOL_VALUE_ADDRESS): Update.
165 (SET_SYMBOL_VALUE_ADDRESS): Update.
166 (SYMBOL_VALUE_BYTES): Update.
167 (SYMBOL_VALUE_COMMON_BLOCK): Update.
168 (SYMBOL_BLOCK_VALUE): Update.
169 (SYMBOL_VALUE_CHAIN): Update.
170 (SYMBOL_LANGUAGE): Update.
171 (SYMBOL_SECTION): Update.
172 (SYMBOL_OBJ_SECTION): Update.
173 (SYMBOL_SET_LANGUAGE): Update.
174 (SYMBOL_SET_LINKAGE_NAME): Update.
175 (SYMBOL_SET_NAMES): Update.
176 (SYMBOL_NATURAL_NAME): Update.
177 (SYMBOL_LINKAGE_NAME): Update.
178 (SYMBOL_DEMANGLED_NAME): Update.
179 (SYMBOL_SEARCH_NAME): Update.
180 (SYMBOL_MATCHES_SEARCH_NAME): Update.
181 (struct symbol): Update.
182 (struct template_symbol): Update.
183 (struct rust_vtable_symbol): Update.
184 * xcoffread.c (SYMBOL_DUP): Update.
185
ed2c82c3
TT
1862019-11-12 Tom Tromey <tom@tromey.com>
187
188 * tui/tui-layout.c (show_layout): Set current_layout.
189 (show_source_disasm_command, show_data)
190 (show_source_or_disasm_and_command): Don't set current_layout.
191
d9fcefd5
TT
1922019-11-12 Tom Tromey <tom@tromey.com>
193
194 * tui/tui-layout.c (_initialize_tui_layout): Move to end.
195
45e42163
TT
1962019-11-12 Tom Tromey <tom@tromey.com>
197
198 * tui/tui-win.c (resize_message): New global.
199 (show_tui_resize_message): New function.
200 (tui_async_resize_screen): Print message if requested.
201 (_initialize_tui_win): Add tui-resize-message setting.
202 * NEWS: Add entry for new commands.
203
c86d74cc
TT
2042019-11-11 Tom Tromey <tom@tromey.com>
205
206 * tui/tui.c (tui_initialize_readline): Add new bindable readline
207 functions.
208
7b7b9424
CB
2092019-11-11 Christian Biesinger <cbiesinger@google.com>
210
211 * nat/linux-osdata.c (user_from_uid): Use getpwuid_r.
212
086baaf1
AB
2132019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
214
215 * python/py-symbol.c (gdbpy_lookup_static_symbols): New
216 function.
217 * python/python-internal.h (gdbpy_lookup_static_symbols):
218 Declare new function.
219 * python/python.c (python_GdbMethods): Add
220 gdb.lookup_static_symbols method.
221 * NEWS: Mention gdb.lookup_static_symbols.
222
09ff83af
AB
2232019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
224
225 * python/py-symbol.c (gdbpy_lookup_static_symbol): Lookup in
226 static block of current object file first. Also fix typo in
227 header comment.
228
eb2dd8df
AB
2292019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
230
231 * stack.c (set_last_displayed_sal): Delete.
232 (last_displayed_sal_valid): Delete.
233 (last_displayed_pspace): Delete.
234 (last_displayed_addr): Delete.
235 (last_displayed_symtab): Delete.
236 (last_displayed_line): Delete.
237 (class last_displayed_symtab_info_type): New.
238 (last_displayed_symtab_info): New static global variable.
239 (print_frame_info): Call methods on last_displayed_symtab_info.
240 (clear_last_displayed_sal): Update header comment, and make use of
241 last_displayed_symtab_info.
242 (last_displayed_sal_is_valid): Likewise.
243 (get_last_displayed_pspace): Likewise.
244 (get_last_displayed_addr): Likewise.
245 (get_last_displayed_symtab): Likewise.
246 (get_last_displayed_line): Likewise.
247 (get_last_displayed_sal): Likewise.
248 * stack.h (clear_last_displayed_sal): Update header comment.
249 (last_displayed_sal_is_valid): Likewise.
250 (get_last_displayed_pspace): Likewise.
251 (get_last_displayed_addr): Likewise.
252 (get_last_displayed_symtab): Likewise.
253 (get_last_displayed_line): Likewise.
254 (get_last_displayed_sal): Likewise.
255
62137775
AB
2562019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
257
258 * stack.c (frame_show_address): Convert return type to bool.
259 * stack.h (frame_show_address): Likewise, and update header
260 comment.
261
cf57ad6d
AB
2622019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
263
264 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add new file to the list.
265 * unittests/vec-utils-selftests.c: New file.
266 * gdbsupport/gdb_vecs.h (unordered_remove): Avoid self move assign.
267
0b026263
TT
2682019-11-10 Tom Tromey <tom@tromey.com>
269
270 * tui/tui-wingeneral.c (tui_unhighlight_win): Use can_box.
271 (tui_highlight_win): Likewise.
272 (tui_win_info::check_and_display_highlight_if_needed): Likewise.
273 * tui/tui-data.h (struct tui_win_info) <can_highlight>: Remove.
274 * tui/tui-command.h (struct tui_cmd_window) <tui_cmd_window>:
275 Don't set can_highlight.
276
b049ce2d
TT
2772019-11-10 Tom Tromey <tom@tromey.com>
278
279 * cli/cli-style.h (class cli_style_option) <cli_style_option>:
280 Remove unused declaration.
281
992a7040
TT
2822019-11-08 Tom Tromey <tromey@adacore.com>
283
284 * top.c (read_command_file): Update.
285 (command_line_input): Make return type const.
286 * python/py-gdb-readline.c: Update.
287 * linespec.c (decode_line_2): Update.
288 * defs.h (command_line_input): Make return type const.
289 * cli/cli-script.c (read_next_line): Make return type const.
290 * ada-lang.c (get_selections): Update.
291
ca3a04f6
CB
2922019-11-06 Christian Biesinger <cbiesinger@google.com>
293
294 * linux-tdep.c (linux_info_proc): Use strtok_r instead of strtok.
295 * mi/mi-main.c (output_cores): Likewise.
296 * nat/linux-osdata.c (linux_xfer_osdata_cpus): Likewise.
297 (linux_xfer_osdata_modules): Likewise.
298 * remote.c (register_remote_support_xml): Likewise.
299 * sparc64-tdep.c (adi_is_addr_mapped): Likewise.
300 * xml-syscall.c (syscall_create_syscall_desc): Likewise.
301
e0eac551
TT
3022019-11-06 Tom Tromey <tom@tromey.com>
303
304 * tui/tui-interp.c: Don't include readline.h.
305 * tui/tui-hooks.c: Don't include readline.h.
306 * symmisc.c: Include tilde.h, not readline.h.
307 * symfile.c: Include tilde.h, not readline.h.
308 * source.c: Include tilde.h, not readline.h.
309 * solib.c: Include tilde.h, not readline.h.
310 * psymtab.c: Include tilde.h, not readline.h.
311 * exec.c: Include tilde.h, not readline.h.
312 * corelow.c: Include tilde.h, not readline.h.
313 * cli/cli-dump.c: Include tilde.h, not readline.h.
314 * cli/cli-cmds.c: Don't include readline.h.
315
825165c5
TT
3162019-11-05 Tom Tromey <tom@tromey.com>
317
318 * tui/tui-disasm.c (struct tui_asm_line) <addr_size>: New member.
319 (tui_disassemble): Set addr_size.
320 (tui_disasm_window::set_contents): Use addr_size.
321
91ae903f
TT
3222019-11-05 Tom Tromey <tom@tromey.com>
323
324 * rust-lang.c (rust_language_defn): Update.
325 * python/py-value.c (valpy_string): Call c_get_string.
326 * p-lang.c (pascal_language_defn): Update.
327 * opencl-lang.c (opencl_language_defn): Update.
328 * objc-lang.c (objc_language_defn): Update.
329 * m2-lang.c (m2_language_defn): Update.
330 * language.c (unknown_language_defn, auto_language_defn): Update.
331 (default_get_string): Remove.
332 * guile/scm-value.c (gdbscm_value_to_string): Use c_get_string.
333 * go-lang.c (go_language_defn): Update.
334 * f-lang.c (f_language_defn): Update.
335 * d-lang.c (d_language_defn): Update.
336 * c-lang.c (c_language_defn, cplus_language_defn)
337 (asm_language_defn, minimal_language_defn): Update.
338 * ada-lang.c (ada_language_defn): Update.
339 * language.h (struct language_defn) <la_get_string>: Remove.
340 (LA_GET_STRING): Remove.
341 (default_get_string): Don't declare.
342
1df2f9ef
TT
3432019-11-05 Tom Tromey <tom@tromey.com>
344
345 * tui/tui-source.h (struct tui_source_window): Inline
346 constructor. Remove destructor.
347 <style_changed, m_observable>: Move to superclass.
348 * tui/tui-winsource.h (tui_copy_source_line): Declare.
349 (struct tui_source_window_base): Move private members to end.
350 <style_changed, m_observable>: Move from tui_source_window.
351 * tui/tui-winsource.c (tui_copy_source_line): Move from
352 tui-source.c. Rename from copy_source_line. Add special handling
353 for negative line number.
354 (tui_source_window_base::style_changed): Move from
355 tui_source_window.
356 (tui_source_window_base): Register observer.
357 (~tui_source_window_base): New.
358 * tui/tui-source.c (copy_source_line): Move to tui-winsource.c;
359 rename.
360 (tui_source_window::set_contents): Use tui_copy_source_line.
361 (tui_source_window::tui_source_window): Move to tui-source.h.
362 (tui_source_window::~tui_source_window): Remove.
363 (tui_source_window::style_changed): Move to superclass.
364 * tui/tui-disasm.c (tui_disassemble): Create string file with
365 styling, when possible. Add "addr_size" parameter.
366 (tui_disasm_window::set_contents): Use tui_copy_source_line.
367 Don't compute maximum size.
368 (len_without_escapes): New function
369
5d051055
TT
3702019-11-05 Tom Tromey <tom@tromey.com>
371
372 * tui/tui-winsource.h (struct tui_source_element) <line>: Now a
373 std::string.
374 * tui/tui-winsource.c (tui_show_source_line): Update.
375 * tui/tui-source.c (tui_source_window::set_contents): Update.
376 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
377
ade7beea
CB
3782019-11-05 Christian Biesinger <cbiesinger@google.com>
379
380 * symtab.h (gdb_static_assert): Put && operator at the beginning
381 of the line instead of the end.
382
3573abe1
CB
3832019-11-04 Christian Biesinger <cbiesinger@google.com>
384
385 * psympriv.h: Add static_asserts for sizeof (general_symbol_info)
386 and sizeof (symbol).
387 * symtab.h: Add a static_assert for sizeof (partial_symbol).
388
dae8b3eb
RO
3892019-11-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
390
391 * NEWS (Changes since GDB 8.3): Document Solaris 10 removal.
392 * configure.host: Mark *-*-solaris2.10* obsolete.
393 * configure.tgt: Mark Solaris < 11 obsolete.
394 * MAINTAINERS (Target Instruction Set Architectures) <sparc>:
395 Update target triplet.
396
5df96a4e
TT
3972019-11-01 Tom Tromey <tromey@adacore.com>
398
399 * utils.c (print_sys_errmsg): Simplify.
400
b7481649
TT
4012019-11-01 Tom Tromey <tromey@adacore.com>
402
403 * gdbsupport/mingw-strerror.c (safe_strerror): Constify result.
404
e48f6033
CB
4052019-11-01 Christian Biesinger <cbiesinger@google.com>
406
407 * configure: Regenerate.
408 * configure.ac: Remove check for strerror_r.
409 * gdbsupport/common.m4: Check for strerror_r.
410
bd5766ec
LM
4112019-11-01 Luis Machado <luis.machado@linaro.org>
412
413 PR gdb/25124
414
415 * arm-tdep.c (arm_per_objfile): Rename to ...
416 (arm_per_bfd): ... this.
417 (arm_objfile_data_key): Rename to ...
418 (arm_bfd_data_key): ... this.
419 (arm_find_mapping_symbol): Adjust access to new bfd_key-based
420 data.
421 (arm_record_special_symbol): Likewise.
422
e1709896
AB
4232019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
424
425 * ada-typeprint.c (ada_print_typedef): Don't print newline at the
426 end.
427 * c-typeprint.c (c_print_typedef): Likewise.
428 * f-typeprint.c (f_print_typedef): Likewise.
429 * m2-typeprint.c (m2_print_typedef): Likewise.
430 * p-typeprint.c (pascal_print_typedef): Likewise.
431 * rust-lang.c (rust_print_typedef): Likewise.
432 * symtab.c (print_symbol_info): Print a newline after calling
433 typedef_print.
434
165f8965
AB
4352019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
436
437 * symtab.c (info_module_cmdlist): New variable.
438 (info_module_command): New function.
439 (search_module_symbols): New function.
440 (info_module_subcommand): New function.
441 (struct info_modules_var_func_options): New struct.
442 (info_modules_var_func_options_defs): New variable.
443 (make_info_modules_var_func_options_def_group): New function.
444 (info_module_functions_command): New function.
445 (info_module_variables_command): New function.
446 (info_module_var_func_command_completer): New function.
447 (_initialize_symtab): Register new 'info module functions' and
448 'info module variables' commands.
449 * symtab.h (typedef symbol_search_in_module): New typedef.
450 (search_module_symbols): Declare new function.
451 * NEWS: Mention new commands.
452
59c35742
AB
4532019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
454
455 * dwarf2read.c (dw2_symtab_iter_next): Handle MODULE_DOMAIN.
456 (dw2_expand_marked_cus): Handle MODULES_DOMAIN.
457 (dw2_debug_names_iterator::next): Handle MODULE_DOMAIN and
458 MODULES_DOMAIN.
459 (scan_partial_symbols): Only create partial module symbols for non
460 declarations.
461 * psymtab.c (recursively_search_psymtabs): Handle MODULE_DOMAIN
462 and MODULES_DOMAIN.
463 * symtab.c (search_domain_name): Likewise.
464 (search_symbols): Likewise.
465 (print_symbol_info): Likewise.
466 (symtab_symbol_info): Likewise.
467 (info_modules_command): New function.
468 (_initialize_symtab): Register 'info modules' command.
469 * symtab.h (enum search_domain): Add MODULES_DOMAIN.
470 * NEWS: Mention new 'info modules' command.
471
aed61d02
PW
4722019-10-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
473
474 * NEWS: Mention $_gdb_setting, $_gdb_setting_str, $_gdb_maint_setting
475 and $_gdb_maint_setting_str.
476
9ad9b77d
PW
4772019-10-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
478
479 * cli/cli-cmds.c (setting_cmd, value_from_setting)
480 (gdb_setting_internal_fn, gdb_maint_setting_internal_fn)
481 (str_value_from_setting, gdb_setting_str_internal_fn)
482 (gdb_maint_setting_str_internal_fn): New functions.
483 (_initialize_cli_cmds): Define the new convenience functions.
484 * gdb/cli/cli-setshow.h (get_setshow_command_value_string): Constify.
485 * gdb/cli/cli-setshow.c (get_setshow_command_value_string): Constify.
486
8d6efaa2
CB
4872019-10-31 Christian Biesinger <cbiesinger@google.com>
488
489 * agent.c (set_can_use_agent): When the setting is turned on,
490 look up agent symbols if we don't have them yet.
491 (agent_new_objfile): Don't look up agent symbols when the agent
492 setting is off.
493
33cb1647
CB
4942019-10-31 Christian Biesinger <cbiesinger@google.com>
495
496 * config.in: Regenerate.
497
b231e86a
CB
4982019-10-31 Christian Biesinger <cbiesinger@google.com>
499
500 * configure: Regenerate.
501 * configure.ac: Check for strerror_r.
502 * gdbsupport/common-utils.h (safe_strerror): Change return value
503 to const char * and document that this function is now threadsafe.
504 * gdbsupport/posix-strerror.c (safe_strerror): Make buf
505 thread_local and call strerror_r, if available.
506 * utils.c (perror_string): Update.
507 (print_sys_errmsg): Update.
508
a2726d4f
LM
5092019-10-31 Luis Machado <luis.machado@linaro.org>
510
511 * arm-tdep.c (arm_exidx_data_key): Use bfd_key instead of
512 objfile_key.
513 (arm_exidx_new_objfile): Adjust to use objfile->obfd instead of
514 objfile to fetch per-bfd data.
515 (arm_find_exidx_entry): Likewise.
516
75cafaa6
CB
5172019-10-31 Christian Biesinger <cbiesinger@google.com>
518
519 * gdbsupport/agent.c (debug_agent): Change type to bool.
520 (use_agent): Likewise.
521 (all_agent_symbols_look_up): Likewise.
522 (agent_loaded_p): Change return value to bool.
523 (agent_look_up_symbols): Update.
524 (agent_capability_check): Change return value to bool.
525 * gdbsupport/agent.h (agent_loaded_p): Likewise.
526 (debug_agent): Change type to bool.
527 (use_agent): Likewise.
528 (agent_capability_check): Change return value to bool.
529
808590ec
CB
5302019-10-30 Christian Biesinger <cbiesinger@google.com>
531
532 * minsyms.c (clear_minimal_symbol_hash_tables): New function.
533 (build_minimal_symbol_hash_tables): Code to clear the table moved
534 to clear_minimal_symbol_hash_tables.
535 (minimal_symbol_reader::install): Call clear_minimal_symbol_hash_tables
536 when needed.
537
f18ad8a1
SM
5382019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
539
540 * infcmd.c: Remove includes.
541 * infrun.c: Remove includes.
542
de93309a
SM
5432019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
544
545 * ada-lang.h (GROW_VECT): Move to ada-lang.c.
546 (grow_vect): Remove declaration.
547 (ada_type_of_array): Remove declaration.
548 (ada_update_initial_language): Remove declaration.
549 (ada_fold_name): Remove declaration.
550 (ada_fill_in_ada_prototype): Remove declaration.
551 (user_select_syms): Remove declaration.
552 (get_selections): Remove declaration.
553 (ada_tag_type): Remove declaration.
554 (ada_value_tag): Remove declaration.
555 (ada_is_others_clause): Remove declaration.
556 (ada_in_variant): Remove declaration.
557 (ada_value_struct_elt): Remove declaration.
558 (ada_attribute_name): Remove declaration.
559 (ada_system_address_type): Remove declaration.
560 * ada-lang.c (ada_watch_location_expression): Make static.
561 (GROW_VECT): Move here from ada-lang.h.
562 (grow_vect): Make static.
563 (ada_update_initial_language): Make static.
564 (ada_fold_name): Make static.
565 (ada_type_of_array): Make static.
566 (encoded_ordered_before): Move up.
567 (sort_choices): Move up.
568 (print_signatures): Move up.
569 (ada_print_symbol_signature): Move up.
570 (get_selections): Move up and make static.
571 (user_select_syms): Move up and make static.
572 (ada_value_struct_elt): Move up and make static.
573 (ada_tag_type): Make static.
574 (ada_value_tag): Make static.
575 (ada_is_others_clause): Make static.
576 (ada_in_variant): Make static.
577 (ada_attribute_name): Make static.
578
cdc46a9f
SM
5792019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
580
581 * ada-lang.c: Remove includes.
582 * ada-typeprint.c: Remove includes.
583 * ada-valprint.c: Remove includes.
584
90421c56
SM
5852019-10-29 Simon Marchi <simon.marchi@efficios.com>
586
587 * addrmap.c: Add static assertions of type size, moved from
588 _initialize_addrmap.
589 (_initialize_addrmap): Remove.
590
31edb802
CB
5912019-10-29 Christian Biesinger <cbiesinger@google.com>
592
593 * coffread.c (record_minimal_symbol): Update.
594 (process_coff_symbol): Update.
595 * dbxread.c (read_dbx_symtab): Update.
596 * dwarf2read.c (add_partial_symbol): Update.
597 (fixup_go_packaging): Update.
598 (load_partial_dies): Update.
599 (new_symbol): Update.
600 * elfread.c (record_minimal_symbol): Change signature to use
601 gdb::string_view instead of name+len.
602 (elf_symtab_read): Update.
603 (elf_rel_plt_read): Update.
604 * mdebugread.c (parse_partial_symbols): Update.
605 (handle_psymbol_enumerators): Update.
606 (new_symbol): Update.
607 * minsyms.c (minimal_symbol_reader::record_full): Change signature
608 to use gdb::string_view instead of name+len.
609 * minsyms.h (class minimal_symbol_reader) <record_full>: Likewise.
610 * psympriv.h (add_psymbol_to_list): Likewise.
611 * psymtab.c (add_psymbol_to_bcache): Likewise.
612 (add_psymbol_to_list): Likewise.
613 * stabsread.c (define_symbol): Update.
614 * symtab.c (symbol_set_names): Change signature to use gdb::string_view.
615 * symtab.h (SYMBOL_SET_NAMES): Likewise.
616 (symbol_set_names): Likewise.
617 * xcoffread.c (scan_xcoff_symtab): Update.
618
0c921b21
CB
6192019-10-29 Christian Biesinger <cbiesinger@google.com>
620
621 * symtab.h (symbol_set_names): Document that copy_name must be
622 set to true for non-nullterminated strings.
623 * symtab.c (symbol_set_names): Only make a nullterminated copy of
624 linkage_name if the entry was not found and we need to demangle.
625
35e65c49
CB
6262019-10-29 Christian Biesinger <cbiesinger@google.com>
627
628 * Makefile.in (HFILES_NO_SRCDIR): Add gdb_binary_search.h.
629 * dwarf2-frame.c (bsearch_fde_cmp): Update.
630 (dwarf2_frame_find_fde): Replace bsearch with gdb::binary_search.
631 * gdbsupport/gdb_binary_search.h: New file.
632
ed2a2229
CB
6332019-10-29 Christian Biesinger <cbiesinger@google.com>
634
635 * NEWS: Mention new --with-system-gdbinit-dir option.
636 * config.in: Regenerate.
637 * configure: Regenerate.
638 * configure.ac: Add new option --with-system-gdbinit-dir.
639 * extension.c (get_ext_lang_of_file): Return extension_language_gdb
640 for a ".gdb" suffix.
641 * main.c (get_init_files): Change system_gdbinit argument to
642 a vector and return the files in SYSTEM_GDBINIT_DIR in
643 addition to SYSTEM_GDBINIT.
644 (captured_main_1): Update.
645 (print_gdb_help): Update.
646 * top.c (print_gdb_configuration): Also print the value of
647 SYSTEM_GDBINIT_DIR.
648
87f34879
CB
6492019-10-28 Christian Biesinger <cbiesinger@google.com>
650
651 * gdbsupport/common-utils.h (startswith): Add an overloaded version
652 that takes gdb::string_view arguments.
653
30baf67b
TV
6542019-10-26 Tom de Vries <tdevries@suse.de>
655
656 * aarch64-linux-tdep.c: Fix typos in comments.
657 * aarch64-tdep.c: Same.
658 * ada-lang.c: Same.
659 * amd64-nat.c: Same.
660 * arc-tdep.c: Same.
661 * arch/aarch64-insn.c: Same.
662 * block.c: Same.
663 * breakpoint.h: Same.
664 * btrace.h: Same.
665 * c-varobj.c: Same.
666 * cli/cli-decode.c: Same.
667 * cli/cli-script.c: Same.
668 * cli/cli-utils.h: Same.
669 * coff-pe-read.c: Same.
670 * coffread.c: Same.
671 * compile/compile-cplus-symbols.c: Same.
672 * compile/compile-object-run.c: Same.
673 * completer.c: Same.
674 * corelow.c: Same.
675 * cp-support.c: Same.
676 * demangle.c: Same.
677 * dwarf-index-write.c: Same.
678 * dwarf2-frame.c: Same.
679 * dwarf2-frame.h: Same.
680 * eval.c: Same.
681 * frame-base.h: Same.
682 * frame.h: Same.
683 * gdbcmd.h: Same.
684 * gdbtypes.h: Same.
685 * gnu-nat.c: Same.
686 * guile/scm-objfile.c: Same.
687 * i386-tdep.c: Same.
688 * i386-tdep.h: Same.
689 * infcall.c: Same.
690 * infcall.h: Same.
691 * linux-nat.c: Same.
692 * m68k-tdep.c: Same.
693 * macroexp.c: Same.
694 * memattr.c: Same.
695 * mi/mi-cmd-disas.c: Same.
696 * mi/mi-getopt.h: Same.
697 * mi/mi-main.c: Same.
698 * minsyms.c: Same.
699 * nat/aarch64-sve-linux-sigcontext.h: Same.
700 * objfiles.h: Same.
701 * ppc-linux-nat.c: Same.
702 * ppc-linux-tdep.c: Same.
703 * ppc-tdep.h: Same.
704 * progspace.h: Same.
705 * prologue-value.h: Same.
706 * python/py-evtregistry.c: Same.
707 * python/py-instruction.h: Same.
708 * record-btrace.c: Same.
709 * record-full.c: Same.
710 * remote.c: Same.
711 * rs6000-tdep.c: Same.
712 * ser-tcp.c: Same.
713 * sol-thread.c: Same.
714 * sparc-sol2-tdep.c: Same.
715 * sparc64-tdep.c: Same.
716 * stabsread.c: Same.
717 * symfile.c: Same.
718 * symtab.h: Same.
719 * target.c: Same.
720 * tracepoint.c: Same.
721 * tui/tui-data.h: Same.
722 * tui/tui-io.c: Same.
723 * tui/tui-win.c: Same.
724 * tui/tui.c: Same.
725 * unittests/rsp-low-selftests.c: Same.
726 * user-regs.h: Same.
727 * utils.c: Same.
728 * utils.h: Same.
729 * valarith.c: Same.
730 * valops.c: Same.
731 * valprint.c: Same.
732 * valprint.h: Same.
733 * value.c: Same.
734 * value.h: Same.
735 * varobj.c: Same.
736 * x86-nat.h: Same.
737 * xtensa-tdep.c: Same.
738
1834d45f
AT
7392019-10-25 Ali Tamur <tamur@google.com>
740
741 * charset.c (find_charset_names): Reflect API change.
742
5396ae17
CB
7432019-10-25 Christian Biesinger <cbiesinger@google.com>
744
745 * symtab.c (struct demangled_name_entry): Change demangled name
746 to a unique_xmalloc_ptr<char>, now that we don't allocate it as
747 part of the struct anymore.
748 (symbol_set_names): No longer obstack allocate + copy the demangled
749 name, just store the allocated name from bfd.
750
93878f47
TT
7512019-10-25 Tom Tromey <tromey@adacore.com>
752
753 * dwarf2-frame.c (dwarf2_cie_table): Now a typedef.
754 (bsearch_cie_cmp, add_cie): Remove.
755 (find_cie): Reimplement.
756 (decode_frame_entry_1, decode_frame_entry): Change type. Update.
757 (dwarf2_build_frame_info): Update.
758
7b71fc97
L
7592019-10-24 H.J. Lu <hongjiu.lu@intel.com>
760
761 PR gdb/25126
762 * symfile.c (reread_symbols): Call forget_cached_source_info to
763 clear the stale source cache.
764
cbb5a2ea
CB
7652019-10-24 Christian Biesinger <cbiesinger@google.com>
766
767 * configure: Regenerate.
768 * configure.ac: Remove code that sets python_has_threads.
769
71737c43
CB
7702019-10-24 Christian Biesinger <cbiesinger@google.com>
771
772 * config.in: Regenerate.
773 * configure: Regenerate.
774 * configure.ac: Remove the code that uses sed to get the python
775 version and defines HAVE_LIBPYTHON2_6 / HAVE_LIBPYTHON2_7.
776
33d569b7
AB
7772019-10-24 Andrew Burgess <andrew.burgess@embecosm.com>
778
779 * python/py-progspace.c (pspy_block_for_pc): Return None for all
780 error paths.
781
f16f7b7c
TT
7822019-10-23 Tom Tromey <tom@tromey.com>
783
784 * arc-tdep.c: Remove ".." from include.
785 * frv-tdep.c: Remove ".." from include.
786 * lm32-tdep.c: Remove ".." from include.
787 * microblaze-tdep.c: Remove ".." from include.
788 * or1k-tdep.h: Remove ".." from include.
789 * s12z-tdep.c: Remove ".." from include.
790 * Makefile.in (OPCODES_CFLAGS): Add comment.
791 (TOP_CFLAGS): New variable.
792 (INTERNAL_CFLAGS_BASE): Add TOP_CFLAGS.
793
6999161a
TT
7942019-10-23 Tom Tromey <tom@tromey.com>
795
796 * Makefile.in (READLINE_DIR): Update.
797
12e7c35e
TBA
7982019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
799
800 * infcall.c (call_function_by_hand_dummy): Fix the function
801 comment. And extract out a code section into...
802 (reserve_stack_space): ...this new function.
803
37055cad
TBA
8042019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
805
806 * infcall.c (value_arg_coerce): Remove an unused parameter.
807 (call_function_by_hand_dummy): Update the call to
808 'value_arg_coerce'.
809
39bcc47c
TBA
8102019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
811
812 * infcall.c (call_function_by_hand_dummy): Refactor.
813
bd888c0f
TBA
8142019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
815
816 * MAINTAINERS (Write After Approval): Add Tankut Baris Aktemur.
817
c12d372d
TT
8182019-10-23 Tom Tromey <tom@tromey.com>
819
820 * configure: Rebuild.
821 * configure.ac: Don't check for sigprocmask.
822 * gdbsupport/common.m4 (GDB_AC_COMMON): Check for sigprocmask.
823
4d0b984b
TT
8242019-10-23 Tom Tromey <tom@tromey.com>
825
826 * configure: Rebuild.
827 * acinclude.m4: Use m4_include, not sinclude.
828
7e785608
TV
8292019-10-23 Tom de Vries <tdevries@suse.de>
830
831 PR breakpoints/24687
832 * symtab.c (iterate_over_some_symtabs): Apply gdb_realpath on fullname.
833
403772ef
CB
8342019-10-22 Christian Biesinger <cbiesinger@google.com>
835
836 * symtab.c (struct demangled_name_entry) <language>: Change from
837 bitfield to regular variable.
838
3a494279
CB
8392019-10-22 Christian Biesinger <cbiesinger@google.com>
840
841 * symtab.c (struct demangled_name_entry): Add a constructor.
842 (free_demangled_name_entry): New function to call the destructor
843 for demangled_name_entry.
844 (create_demangled_names_hash): Pass free_demangled_name_entry to
845 htab_create_alloc.
846 (symbol_set_names): Call placement new for demangled_name_entry.
847 * utils.c: No longer include xxhash.h here, now that fast_hash
848 is inlined in the header.
849 * utils.h: Instead, include it here.
850
ccb1ba62
CB
8512019-10-22 Christian Biesinger <cbiesinger@google.com>
852
853 * Makefile.in: Link with libxxhash.
854 * config.in: Regenerate.
855 * configure: Regenerate.
856 * configure.ac: Search for libxxhash.
857 * utils.c (fast_hash): Use xxhash if present.
858
1a6ff1a9
CB
8592019-10-22 Christian Biesinger <cbiesinger@google.com>
860
861 * utils.h (fast_hash): New function.
862 * symtab.c (hash_demangled_name_entry): Call new function
863 fast_hash.
864
7bb43059
CB
8652019-10-22 Christian Biesinger <cbiesinger@google.com>
866
867 * symtab.c (struct demangled_name_entry): Change type of mangled
868 to gdb::string_view. Also adds a constructor that takes the
869 mangled name.
870 (hash_demangled_name_entry): Update.
871 (eq_demangled_name_entry): Update.
872 (free_demangled_name_entry): New function to call the destructor
873 now that this is not a POD anymore.
874 (create_demangled_names_hash): Pass free_demangled_name_entry to
875 htab_create_alloc.
876 (symbol_set_names): Update.
877
7ba99d21
AT
8782019-10-21 Ali Tamur <tamu@google.com>
879
880 * dwarf2read.c (dir_index): Change type.
881 (file_name_index): Likewise.
882 (line_header::include_dir_at): Change comment and implementation on
883 whether it is DWARF 5.
884 (line_header::is_valid_file_index): New function.
885 (line_header::file_name_at): Change comment and implementation on
886 whether it is DWARF 5.
887 (line_header::file_names): Change to private field renamed as
888 m_file_names and introduce a new accessor method.
889 (line_header::file_names_size): New method.
890 (line_header::include_dirs): Change to private field and rename as
891 m_include_dirs.
892 (dw2_get_file_names_reader): Define local var at a smaller scope and
893 reflect API change.
894 (dwarf2_cu::setup_type_unit_groups): Reflect API change.
895 (process_structure_scope): Likewise.
896 (line_header::add_include_dir): Change message and reflect renaming.
897 (line_header::add_file_name): Likewise.
898 (read_formatted_entries): Handle DW_FORM_data16.
899 (dwarf_decode_line_header): Fix line header length calculation.
900 (psymtab_include_file_name): Change comment and API.
901 (lnp_state_machine::m_file): Update comment and reflect type change.
902 (lnp_state_machine::record_line): Reflect type change.
903 (dwarf_decode_lines): Reflect API change.
904 (file_file_name): Likewise.
905 (file_full_name): Likewise.
906
45f47c3a
AB
9072019-10-21 Andrew Burgess <andrew.burgess@embecosm.com>
908
909 * objfiles.c (sort_cmp): Ensure that !(a < a) holds true.
910
e5f3c0e3
TT
9112019-10-21 Tom Tromey <tom@tromey.com>
912
913 * tui/tui-winsource.h (tui_exec_info_content): Remove typedef.
914
a0a461e5
TT
9152019-10-21 Tom Tromey <tom@tromey.com>
916
917 * configure.ac (nm.h): Conditionally create nm.h link. Subst
918 NM_H. Use AC_CONFIG_LINKS.
919 * configure: Rebuild.
920 * Makefile.in (NM_H): New variable.
921 (generated_files): Add NM_H. Remove gcore.
922 (nm.h, stamp-nmh): New targets.
923
54d83b8d
TT
9242019-10-20 Tom Tromey <tom@tromey.com>
925
926 * objfiles.h (unlink_objfile, put_objfile_before): Don't declare.
927 * objfiles.c (unlink_objfile): Move earlier. Now static. Remove
928 obsolete comment.
929 (put_objfile_before): Now static.
930
23771117
SM
9312019-10-19 Simon Marchi <simon.marchi@polymtl.ca>
932
933 * gdbsupport/common-utils.h (startswith): Change return type to
934 bool.
935
39ef2f62
CB
9362019-10-19 Christian Biesinger <cbiesinger@google.com>
937
938 * bcache.c (bcache::print_statistics): Use std::sort instead of qsort.
939 * breakpoint.c (bp_locations_compare): Rename to...
940 (bp_location_is_less_than): ...this, and change to std::sort semantics.
941 (update_global_location_list): Use std::sort instead of qsort.
942 * buildsym.c (compare_line_numbers): Rename to...
943 (lte_is_less_than): ...this, and change to std::sort semantics.
944 (buildsym_compunit::end_symtab_with_blockvector): Use std::sort
945 instead of qsort.
946 * disasm.c (compare_lines): Rename to...
947 (line_is_less_than): ...this, and change to std::sort semantics.
948 (do_mixed_source_and_assembly_deprecated): Call std::sort instead
949 of qsort.
950 * dwarf2-frame.c (qsort_fde_cmp): Rename to...
951 (fde_is_less_than): ...this, and change to std::sort semantics.
952 (dwarf2_build_frame_info): Call std::sort instead of qsort.
953 * mdebugread.c (compare_blocks):
954 (block_is_less_than): ...this, and change to std::sort semantics.
955 (sort_blocks): Call std::sort instead of qsort.
956 * objfiles.c (qsort_cmp): Rename to...
957 (sort_cmp): ...this, and change to std::sort semantics.
958 (update_section_map): Call std::sort instead of qsort.
959 * remote.c (compare_pnums): Remove.
960 (map_regcache_remote_table): Call std::sort instead of qsort.
961 * utils.c (compare_positive_ints): Remove.
962 * utils.h (compare_positive_ints): Remove.
963 * xcoffread.c (compare_lte): Remove.
964 (arrange_linetable): Call std::sort instead of qsort.
965
f71433ee
SDJ
9662019-10-19 Sergio Durigan Junior <sergiodj@redhat.com>
967
968 * symfile.c (init_entry_point_info): Fix typo.
969 * i386-darwin-tdep.c (darwin_dwarf_signal_frame_p): Fix typo.
970
85102364
TV
9712019-10-18 Tom de Vries <tdevries@suse.de>
972
973 * aarch64-tdep.c: Fix typos in comments.
974 * ada-lang.c: Same.
975 * ada-tasks.c: Same.
976 * alpha-tdep.c: Same.
977 * alpha-tdep.h: Same.
978 * amd64-nat.c: Same.
979 * amd64-windows-tdep.c: Same.
980 * arc-tdep.c: Same.
981 * arc-tdep.h: Same.
982 * arch-utils.c: Same.
983 * arm-nbsd-tdep.c: Same.
984 * arm-tdep.c: Same.
985 * ax-gdb.c: Same.
986 * blockframe.c: Same.
987 * btrace.c: Same.
988 * c-varobj.c: Same.
989 * coff-pe-read.c: Same.
990 * coffread.c: Same.
991 * cris-tdep.c: Same.
992 * darwin-nat.c: Same.
993 * dbxread.c: Same.
994 * dcache.c: Same.
995 * disasm.c: Same.
996 * dtrace-probe.c: Same.
997 * dwarf-index-write.c: Same.
998 * dwarf2-frame-tailcall.c: Same.
999 * dwarf2-frame.c: Same.
1000 * dwarf2read.c: Same.
1001 * eval.c: Same.
1002 * exceptions.c: Same.
1003 * fbsd-tdep.c: Same.
1004 * findvar.c: Same.
1005 * frame.c: Same.
1006 * frv-tdep.c: Same.
1007 * gnu-v3-abi.c: Same.
1008 * go32-nat.c: Same.
1009 * h8300-tdep.c: Same.
1010 * hppa-tdep.c: Same.
1011 * i386-linux-tdep.c: Same.
1012 * i386-tdep.c: Same.
1013 * ia64-libunwind-tdep.c: Same.
1014 * ia64-tdep.c: Same.
1015 * infcmd.c: Same.
1016 * infrun.c: Same.
1017 * linespec.c: Same.
1018 * linux-nat.c: Same.
1019 * linux-thread-db.c: Same.
1020 * machoread.c: Same.
1021 * mdebugread.c: Same.
1022 * mep-tdep.c: Same.
1023 * mn10300-tdep.c: Same.
1024 * namespace.c: Same.
1025 * objfiles.c: Same.
1026 * opencl-lang.c: Same.
1027 * or1k-tdep.c: Same.
1028 * osabi.c: Same.
1029 * ppc-linux-nat.c: Same.
1030 * ppc-linux-tdep.c: Same.
1031 * ppc-sysv-tdep.c: Same.
1032 * printcmd.c: Same.
1033 * procfs.c: Same.
1034 * record-btrace.c: Same.
1035 * record-full.c: Same.
1036 * remote-fileio.c: Same.
1037 * remote.c: Same.
1038 * rs6000-tdep.c: Same.
1039 * s12z-tdep.c: Same.
1040 * score-tdep.c: Same.
1041 * ser-base.c: Same.
1042 * ser-go32.c: Same.
1043 * skip.c: Same.
1044 * sol-thread.c: Same.
1045 * solib-svr4.c: Same.
1046 * solib.c: Same.
1047 * source.c: Same.
1048 * sparc-nat.c: Same.
1049 * sparc-sol2-tdep.c: Same.
1050 * sparc-tdep.c: Same.
1051 * sparc64-tdep.c: Same.
1052 * stabsread.c: Same.
1053 * stack.c: Same.
1054 * symfile.c: Same.
1055 * symtab.c: Same.
1056 * target-descriptions.c: Same.
1057 * target-float.c: Same.
1058 * thread.c: Same.
1059 * utils.c: Same.
1060 * valops.c: Same.
1061 * valprint.c: Same.
1062 * value.c: Same.
1063 * varobj.c: Same.
1064 * windows-nat.c: Same.
1065 * xcoffread.c: Same.
1066 * xstormy16-tdep.c: Same.
1067 * xtensa-tdep.c: Same.
1068
c5adaa19
TT
10692019-10-17 Tom Tromey <tromey@adacore.com>
1070
1071 * configure: Rebuild.
1072 * configure.ac: Use AC_CONFIG_HEADERS. Create stamp-h there, not
1073 in AC_CONFIG_FILES invocation.
1074 * Makefile.in (Makefile, data-directory/Makefile, stamp-h): Use
1075 new-style config.status invocation.
1076
405feb71
TV
10772019-10-17 Tom de Vries <tdevries@suse.de>
1078
1079 * arm-nbsd-nat.c: Fix typos in comments.
1080 * arm-tdep.c: Same.
1081 * darwin-nat-info.c: Same.
1082 * dwarf2read.c: Same.
1083 * elfread.c: Same.
1084 * event-top.c: Same.
1085 * findvar.c: Same.
1086 * gdbtypes.c: Same.
1087 * hppa-tdep.c: Same.
1088 * i386-tdep.c: Same.
1089 * jit.c: Same.
1090 * main.c: Same.
1091 * mdebugread.c: Same.
1092 * moxie-tdep.c: Same.
1093 * nto-procfs.c: Same.
1094 * osabi.c: Same.
1095 * ppc-linux-tdep.c: Same.
1096 * remote.c: Same.
1097 * riscv-tdep.c: Same.
1098 * s390-tdep.c: Same.
1099 * sh-tdep.c: Same.
1100 * sparc-linux-tdep.c: Same.
1101 * sparc-nat.c: Same.
1102 * stack.c: Same.
1103 * target-descriptions.c: Same.
1104 * top.c: Same.
1105 * varobj.c: Same.
1106
befcd486
TT
11072019-10-16 Tom Tromey <tom@tromey.com>
1108
1109 * objfiles.h (struct objfile) <original_name>: Now const.
1110
17bfe554
CB
11112019-10-16 Christian Biesinger <cbiesinger@google.com>
1112
1113 * gdbsupport/gdb_setjmp.h (SIGSETJMP): Allow passing in the value to
1114 pass on to sigsetjmp's second argument.
1115 * cp-support.c (gdb_demangle): Unblock SIGSEGV if we caught a crash.
1116
950b7495
KS
11172019-10-16 Keith Seitz <keiths@redhat.com>
1118
1119 PR gdb/23567
1120 * dwarf2read.c (dwarf2_per_objfile::locate_sections): Discard
1121 sections whose size is greater than the file size.
1122
ff371ec9
JW
11232019-10-16 Jim Wilson <jimw@sifive.com>
1124
1125 * riscv-tdep.c (riscv_gcc_target_options): New.
1126 (riscv_gnu_triplet_regexp): New.
1127 (riscv_gdbarch_init): Call set_gdbarch_gcc_triplet_options and
1128 set_gdbarch_gnu_triplet_regexp.
1129
fec4e896
CB
11302019-10-16 Christian Biesinger <cbiesinger@google.com>
1131
1132 * Makefile.in: Add xml-builtin.h.
1133 * features/feature_to_c.sh: Add an include for xml-builtin.h
1134 to ensure that the compiler checks that the types match.
1135 * xml-builtin.h: New file.
1136 * xml-support.c (fetch_xml_builtin): Add missing const.
1137 * xml-support.h: Remove declaration of xml_builtins.
1138
d10eccaa
TV
11392019-10-16 Tom de Vries <tdevries@suse.de>
1140
1141 PR tdep/25096
1142 * amd64-tdep.c (amd64_classify_aggregate_field): Factor out of ...
1143 (amd64_classify_aggregate): ... here.
1144 (amd64_classify_aggregate_field): Handled fiels of nested structs
1145 recursively.
1146
745ff14e
TV
11472019-10-16 Tom de Vries <tdevries@suse.de>
1148
1149 PR tdep/24104
1150 * amd64-tdep.c (amd64_push_arguments): Handle AMD64_NO_CLASS in loop
1151 that handles 'theclass'.
1152
791b7405
AB
11532019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
1154
1155 * linespec.c (decode_digits_ordinary): Update comment.
1156 * make-target-delegates: No longer need to handle VEC case.
1157 * memrange.c (normalize_mem_ranges): Update comment.
1158 * namespace.c (add_using_directive): Update comment.
1159 * objc-lang.c (uniquify_strings): Update comment.
1160 * ppc-linux-nat.c (struct thread_points): Update comment.
1161 * probe.h (find_probes_in_objfile): Update comment.
1162 * target.h (enum flash_preserve_mode): Update comment.
1163 * varobj.c (varobj_restrict_range): Update comment.
1164 * varobj.h (varobj_list_children): Update comment.
1165
0dc32745
AB
11662019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
1167
1168 * Makefile.in: Remove references to vec.h and vec.c.
1169 * aarch64-tdep.c: No longer include vec.h.
1170 * ada-lang.c: Likewise.
1171 * ada-lang.h: Likewise.
1172 * arm-tdep.c: Likewise.
1173 * ax.h: Likewise.
1174 * breakpoint.h: Likewise.
1175 * charset.c: Likewise.
1176 * cp-support.h: Likewise.
1177 * dtrace-probe.c: Likewise.
1178 * dwarf2read.c: Likewise.
1179 * extension.h: Likewise.
1180 * gdb_bfd.c: Likewise.
1181 * gdbsupport/gdb_vecs.h: Likewise.
1182 * gdbsupport/vec.c: Remove.
1183 * gdbsupport/vec.h: Remove.
1184 * gdbthread.h: Likewise.
1185 * guile/scm-type.c: Likewise.
1186 * inline-frame.c: Likewise.
1187 * machoread.c: Likewise.
1188 * memattr.c: Likewise.
1189 * memrange.h: Likewise.
1190 * namespace.h: Likewise.
1191 * nat/linux-btrace.h: Likewise.
1192 * osdata.c: Likewise.
1193 * parser-defs.h: Likewise.
1194 * progspace.h: Likewise.
1195 * python/py-type.c: Likewise.
1196 * record-btrace.c: Likewise.
1197 * rust-exp.y: Likewise.
1198 * solib-target.c: Likewise.
1199 * stap-probe.c: Likewise.
1200 * target-descriptions.c: Likewise.
1201 * target-memory.c: Likewise.
1202 * target.h: Likewise.
1203 * varobj.c: Likewise.
1204 * varobj.h: Likewise.
1205 * xml-support.h: Likewise.
1206
ae640021
AB
12072019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
1208
1209 * gdb/dwarf2read.c (dwarf2_per_objfile::~dwarf2_per_objfile):
1210 Update for new std::vector based implementation.
1211 (process_psymtab_comp_unit_reader): Likewise.
1212 (scan_partial_symbols): Likewise.
1213 (recursively_compute_inclusions): Likewise.
1214 (compute_compunit_symtab_includes): Likewise.
1215 (process_imported_unit_die): Likewise.
1216 (queue_and_load_dwo_tu): Likewise.
1217 (follow_die_sig_1): Likewise.
1218 * gdb/dwarf2read.h: Remove DEF_VEC_P.
1219 (typedef dwarf2_per_cu_ptr): Remove.
1220 (struct dwarf2_per_cu_data) <imported_symtabs_empty>: New
1221 function.
1222 (struct dwarf2_per_cu_data) <imported_symtabs_push>: New function.
1223 (struct dwarf2_per_cu_data) <imported_symtabs_size>: New function.
1224 (struct dwarf2_per_cu_data) <imported_symtabs_free>: New function.
1225 (struct dwarf2_per_cu_data) <imported_symtabs>: Change to
1226 std::vector.
1227
55dfc88f
TT
12282019-10-15 Tom Tromey <tromey@adacore.com>
1229
1230 * windows-nat.c (windows_nat_target::resume): Use %x when logging
1231 TID.
1232
96b49c5e
TT
12332019-10-15 Tom Tromey <tromey@adacore.com>
1234
1235 * windows-nat.c (windows_nat_target::fetch_registers)
1236 (windows_nat_target::store_registers): Rename "pid" to "tid".
1237
953cff56
TT
12382019-10-15 Tom Tromey <tromey@adacore.com>
1239
1240 * gdbarch.h, gdbarch.c: Rebuild.
1241 * gdbarch.sh (gcc_target_options): Change return type to
1242 std::string.
1243 * compile/compile.c (get_args): Update.
1244 * nios2-tdep.c (nios2_gcc_target_options): Return std::string.
1245 * arm-linux-tdep.c (arm_linux_gcc_target_options): Return
1246 std::string.
1247 * aarch64-linux-tdep.c (aarch64_linux_gcc_target_options): Return
1248 std::string.
1249 * arch-utils.c (default_gcc_target_options): Return std::string.
1250 * arch-utils.h (default_gcc_target_options): Return std::string.
1251 * s390-tdep.c (s390_gcc_target_options): Return std::string.
1252
81e6b8eb
CB
12532019-10-15 Christian Biesinger <cbiesinger@google.com>
1254
1255 * breakpoint.c (breakpoint_chain): Make static.
1256 * tui/tui-winsource.c: Call iterate_over_breakpoints instead
1257 of accessing breakpoint_chain.
1258
95da600f
CB
12592019-10-15 Christian Biesinger <cbiesinger@google.com>
1260
1261 * breakpoint.c (iterate_over_breakpoints): Change function pointer
1262 to a gdb::function_view and return value to bool.
1263 * breakpoint.h (iterate_over_breakpoints): Likewise.
1264 * dummy-frame.c (pop_dummy_frame_bpt): Update.
1265 (pop_dummy_frame): Update.
1266 * guile/scm-breakpoint.c (bpscm_build_bp_list): Update.
1267 (gdbscm_breakpoints): Update.
1268 * python/py-breakpoint.c (build_bp_list): Update.
1269 (gdbpy_breakpoints): Update.
1270 * python/py-finishbreakpoint.c (bpfinishpy_detect_out_scope_cb):
1271 Update.
1272 (bpfinishpy_handle_stop): Update.
1273 (bpfinishpy_handle_exit): Update.
1274 * solib-svr4.c (svr4_update_solib_event_breakpoint): Update.
1275 (svr4_update_solib_event_breakpoints): Update.
1276
ba18312d
AA
12772019-10-15 Andreas Arnez <arnez@linux.ibm.com>
1278
1279 * s390-tdep.c (s390_effective_inner_type): Ignore static fields
1280 when unwrapping single-field structs.
1281
6acc1a0b
SM
12822019-10-14 Simon Marchi <simon.marchi@polymtl.ca>
1283
1284 * dwarf2read.c: Remove includes.
1285
284782de
SM
12862019-10-13 Simon Marchi <simon.marchi@polymtl.ca>
1287
1288 * ui-out.c (ui_out::call_do_message): Silence
1289 -Wformat-nonliteral warning.
1290
073bbbb0
SM
12912019-10-12 Simon Marchi <simon.marchi@polymtl.ca>
1292
1293 * breakpoint.c: Remove some includes: continuations.h, skip.h,
1294 mi/mi-main.h, readline/readline.h, readline/history.h. Add
1295 include: readline/tilde.h.
1296
7b9a15e1
CB
12972019-10-12 Christian Biesinger <cbiesinger@google.com>
1298
1299 * remote.c (remote_target::get_trace_status): Remove declaration of
1300 trace_regblock_size.
1301
cc8dee1f
CB
13022019-10-12 Christian Biesinger <cbiesinger@google.com>
1303
1304 * cli/cli-cmds.c (max_user_call_depth): Move comment to header.
1305 (show_user): Remove declaration of cmdlist.
1306 * cli/cli-cmds.h (max_user_call_depth): Declare.
1307 * cli/cli-script.c (execute_user_command): Remove declaration
1308 of max_user_call_depth.
1309
a83d4ef6
JW
13102019-10-11 Jim Wilson <jimw@sifive.com>
1311
5f93c5a6
JW
1312 * gdbsupport/print-utils.h (pulongest): Fix comment.
1313 (plongest): Likewise.
1314 (phex): Add missing comment, mention leading zeros.
1315 (phex_nz): Add mention of no leading zeros to comment.
1316
a83d4ef6
JW
1317 * riscv-tdep.c (riscv_push_dummy_code): Change %lld to %s and use
1318 plongest instead of unsigned long long cast.
1319
26344e0c
CB
13202019-10-10 Christian Biesinger <cbiesinger@google.com>
1321
1322 * main.c (captured_main_1): Include gdbtk.h and remove declarations
1323 for external_editor_command and gdbtk_test.
1324
c2c440a9
CB
13252019-10-10 Christian Biesinger <cbiesinger@google.com>
1326
1327 * mi/mi-cmd-var.c (varobjdebug): Remove declaration.
1328 * varobj.c (varobjdebug): Move comment to...
1329 * varobj.h (varobjdebug): ...here, and declare.
1330
a31bff9d
TT
13312019-10-09 Tom Tromey <tom@tromey.com>
1332
1333 * tui/tui-regs.c (tui_data_window::show_registers): Don't call
1334 erase_data_content.
1335
7523da63
TT
13362019-10-09 Tom Tromey <tom@tromey.com>
1337
1338 * tui/tui-wingeneral.h (tui_delete_win): Don't declare.
1339 * tui/tui-stack.c (tui_locator_window::rerender): Update.
1340 * tui/tui-command.c (tui_cmd_window::resize)
1341 (tui_refresh_cmd_win): Update.
1342 * tui/tui-win.c (tui_resize_all, tui_set_focus_command): Update.
1343 * tui/tui.c (tui_rl_other_window, tui_enable): Update.
1344 * tui/tui-data.c (~tui_gen_win_info): Remove.
1345 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
1346 * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts)
1347 (tui_redisplay_readline, tui_mld_flush)
1348 (tui_mld_erase_entire_line, tui_mld_getc, tui_getc): Update.
1349 * tui/tui-regs.c (tui_data_window::delete_data_content_windows)
1350 (tui_data_window::erase_data_content)
1351 (tui_data_item_window::rerender)
1352 (tui_data_item_window::refresh_window): Update.
1353 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window)
1354 (box_win, tui_gen_win_info::make_window)
1355 (tui_gen_win_info::make_visible): Update.
1356 (tui_delete_win): Remove.
1357 * tui/tui-winsource.c
1358 (tui_source_window_base::do_erase_source_content): Update.
1359 (tui_show_source_line, tui_source_window_base::update_tab_width)
1360 (tui_source_window_base::update_exec_info): Update.
1361 * tui/tui-data.h (struct curses_deleter): New.
1362 (struct tui_gen_win_info) <handle>: Now a unique_ptr.
1363 (struct tui_gen_win_info) <~tui_gen_win_info>: Define.
1364
a7798e7f
TT
13652019-10-09 Tom Tromey <tom@tromey.com>
1366
1367 * tui/tui-wingeneral.h (struct tui_gen_win_info): Don't declare.
1368
5c45899e
TT
13692019-10-09 Tom Tromey <tom@tromey.com>
1370
1371 * tui/tui-data.c (tui_win_is_auxiliary): Remove.
1372 * tui/tui-data.h (tui_win_is_auxiliary): Don't declare.
1373
6d7fd9aa
TT
13742019-10-09 Tom Tromey <tom@tromey.com>
1375
1376 * tui/tui-disasm.c (tui_get_low_disassembly_address): Compute
1377 window height directly.
1378 * tui/tui-layout.h (tui_default_win_viewport_height): Don't
1379 declare.
1380 * tui/tui-layout.c (tui_default_win_height): Remove.
1381 (tui_default_win_viewport_height): Remove.
1382
d2dd1084
TT
13832019-10-09 Tom Tromey <tom@tromey.com>
1384
1385 * tui/tui.h: Remove comments.
1386
cff32449
TV
13872019-10-09 Tom de Vries <tdevries@suse.de>
1388
1389 * python/lib/gdb/printer/bound_registers.py: Use
1390 '^builtin_type_bound128' as regexp argument for
1391 add_builtin_pretty_printer.
1392
6a25e8a2
CB
13932019-10-09 Christian Biesinger <cbiesinger@google.com>
1394
1395 * guile/guile.c (guile_extension_script_ops): Remove forward
1396 declaration and mark as static.
1397 (guile_script_ops): Likewise.
1398 (extension_language_guile): Move further down in the file so
1399 it can reference the definitions for guile_{extension_,}script_ops.
1400
6d9d6da4
AA
14012019-10-09 Andreas Arnez <arnez@linux.ibm.com>
1402
1403 * s390-tdep.c (390_process_record): Handle new arch13 instructions
1404 except SORTL, DFLTCC, and KDSA.
1405
3abea05d
TT
14062019-10-08 Tom Tromey <tromey@adacore.com>
1407
1408 * windows-nat.c (struct windows_thread_info_struct) <sf>: Remove.
1409 (struct safe_symbol_file_add_args): Remove.
1410
dde996e2
TT
14112019-10-08 Tom Tromey <tromey@adacore.com>
1412
1413 * windows-nat.c: Don't include buildsym-legacy.h.
1414
cd6fdaa1
TT
14152019-10-08 Tom Tromey <tromey@adacore.com>
1416
1417 * contrib/ari/gdb_ari.sh (%p): Allow gdb-specific %p extensions.
1418
79bb1944
CB
14192019-10-08 Christian Biesinger <cbiesinger@google.com>
1420
1421 * gdbtypes.c (overload_debug): Move comment to header.
1422 * gdbtypes.h (overload_debug): Declare.
1423 * valops.c: Remove declaration of overload_debug, instead
1424 include gdbtypes.h.
1425
34916edc
CB
14262019-10-08 Christian Biesinger <cbiesinger@google.com>
1427
1428 * language.c (show_language_command): Pass lang_frame_mismatch_warn
1429 through _().
1430 (lang_frame_mismatch_warn): Make const, mark with N_(), and
1431 move comment...
1432 * language.h (lang_frame_mismatch_warn): ... here. Also add
1433 declaration.
1434 * top.c (lang_frame_mismatch_warn): Remove declaration.
1435 (check_frame_language_change): Pass lang_frame_mismatch_warn
1436 through _().
1437
bad5c026
CB
14382019-10-07 Christian Biesinger <cbiesinger@google.com>
1439
1440 * c-lang.h (vtbl_ptr_name): Declare.
1441 * cp-valprint.c (vtbl_ptr_name): Remove "extern" now that we get
1442 it from the header.
1443 * stabsread.c (define_symbol): Remove declaration of vtbl_ptr_name.
1444
51f1fdc3
CB
14452019-10-07 Christian Biesinger <cbiesinger@google.com>
1446
1447 * charset.c (your_gdb_wchar_t_is_bogus): Replace with a
1448 gdb_static_assert.
1449
30d1f018
WP
14502019-10-07 Weimin Pan <weimin.pan@oracle.com>
1451
606813d5
WP
1452 * ../Makefile.def (dependencies): Add all-libctf to all-gdb
1453 * ../Makefile.in: Add "all-gdb: maybe-all-libctf"
30d1f018
WP
1454 * ctfread.c: New file.
1455 * ctfread.h: New file.
1456 * elfread.c: Include ctfread.h.
1457 (struct elfinfo text_p): New member ctfsect.
1458 (elf_locate_sections): Mark CTF section.
1459 (elf_symfile_read): Call elfctf_build_psymtabs.
1460 * Makefile.in (LIBCTF): Add.
1461 (CLIBS): Use it.
1462 (CDEPS): Likewise.
1463 (DIST): Add ctfread.c.
606813d5
WP
1464
14652019-10-07 Andrew Burgess <andrew.burgess@embecosm.com>
1466
1467 * ctfread.c (struct nextfield): Renamed to ...
1468 (struct ctf_nextfield): ... this.
1469 (struct field_info): Renamed to ...
1470 (strut ctf_field_info): ... this.
1471 (attach_fields_to_type): Update for renamed structures.
1472 (ctf_add_member_cb): Likewise.
1473 (ctf_add_enum_member_cb): Likewise.
1474 (process_struct_members): Likewise.
1475 (process_enum_type): Likewise.
30d1f018 1476
518fe38c
WP
14772019-10-07 Weimin Pan <weimin.pan@oracle.com>
1478
1479 * tracectf.h: Rename, was ctf.h.
1480 * tracectf.c: Rename, was ctf.c, replace ctf.h with tracectf.h.
1481 * tracefile.c: Likewise.
1482 * tracepoint.c: Remove unused include ctf.h.
1483 * mi/mi-main.c: Likewise.
1484 * Makefile.in Replace ctf.c with tracectf.c.
1485
225f296a
JB
14862019-10-06 Joel Brobecker <brobecker@adacore.com>
1487
1488 * version.in: Change version number to "9.0.50.DATE-git".
1489
77c2dba3
TT
14902019-10-03 Tom Tromey <tom@tromey.com>
1491
1492 PR rust/24976:
1493 * dwarf2read.c (quirk_rust_enum): Handle single-element unions.
1494
179aed7f
AB
14952019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
1496
1497 * f-lang.c (f_language_defn): Use cp_get_symbol_name_matcher and
1498 cp_search_name_hash.
1499 * NEWS: Add entry about nested function support.
1500
0a4b0913
AB
15012019-10-03 Bernhard Heckel <bernhard.heckel@intel.com>
1502 Andrew Burgess <andrew.burgess@embecosm.com>
1503
1504 * cp-namespace.c (cp_search_static_and_baseclasses): Only search
1505 for nested static variables when searchin VAR_DOMAIN.
1506 * dwarf2read.c (add_partial_symbol): Add nested subroutines to the
1507 global scope, update comment.
1508 (add_partial_subprogram): Call add_partial_subprogram recursively
1509 for nested subroutines when processinng Fortran.
1510 (load_partial_dies): Process the child entities of a subprogram
1511 when processing Fortran.
1512 (partial_die_parent_scope): Handle building scope
1513 for Fortran nested functions.
1514 (process_die): Record that nested functions have a scope.
1515 (new_symbol): Always record Fortran subprograms on the global
1516 symbol list.
1517 (determine_prefix): How to build the prefix for Fortran
1518 subprograms.
1519
d8c06f22
AB
15202019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
1521
1522 * linux-nat.c (linux_nat_filter_event): Don't ignore SIGSTOP if we
1523 have just sent the thread a SIGSTOP and are waiting for it to
1524 arrive.
1525
a8b3b8e9
AB
15262019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
1527
1528 * btrace.c (btrace_add_pc): Remove whitespace before the template
1529 parameter in 'std::vector <...>'.
1530 (parse_xml_btrace_block): Likewise.
1531 (btrace_maint_decode_pt): Likewise.
1532 (btrace_maint_update_packets): Likewise.
1533 (btrace_maint_print_packets): Likewise.
1534 * btrace.h (struct btrace_maint_info): Likewise.
1535 * dwarf2read.c (struct type_unit_group): Likewise.
1536 (build_type_psymtabs_reader): Likewise.
1537 * gdbsupport/btrace-common.c (btrace_data_append): Likewise.
1538 * gdbsupport/btrace-common.h (struct btrace_data_bts): Likewise.
1539 * nat/linux-btrace.c (perf_event_read_bts): Likewise.
1540
4d825eab
TV
15412019-10-03 Tom de Vries <tdevries@suse.de>
1542
1543 * cli/cli-style.c (_initialize_cli_style): Adding a '.' at the end of
1544 the first line of the help text for set/show style metadata.
1545
80fd2826
TT
15462019-10-02 Tom Tromey <tromey@adacore.com>
1547
1548 * Makefile.in (COMMON_SFILES): Add common-inferior.c.
1549 * gdbsupport/common-inferior.c: New file.
1550 * infcmd.c (startup_with_shell): Don't define.
1551 * nat/fork-inferior.h (startup_with_shell): Don't declare.
1552 * gdbsupport/common-inferior.h (startup_with_shell): Declare.
1553 * inferior.h (startup_with_shell): Don't declare.
1554
70054538
CB
15552019-10-02 Christian Biesinger <cbiesinger@google.com>
1556
1557 * gdbsupport/gdb_assert.h: Include errors.h.
1558 * gdbsupport/gdb_string_view.h: Include gdb_assert.h.
1559
37f6a7f4
TT
15602019-10-02 Tom Tromey <tromey@adacore.com>
1561
1562 * NEWS: Add $_ada_exception entry.
1563 * ada-lang.c (struct ada_catchpoint): Add constructor.
1564 <m_kind>: New member.
1565 (allocate_location_exception, re_set_exception): Remove
1566 "ex" parameter.
1567 (should_stop_exception): Compute $_ada_exception.
1568 (check_status_exception, print_it_exception)
1569 (print_one_exception, print_mention_exception): Remove
1570 "ex" parameter.
1571 (allocate_location_catch_exception, re_set_catch_exception)
1572 (check_status_exception, print_it_catch_exception)
1573 (print_one_catch_exception, print_mention_catch_exception)
1574 (print_recreate_catch_exception)
1575 (allocate_location_catch_exception_unhandled)
1576 (re_set_catch_exception_unhandled)
1577 (check_status_exception, print_it_catch_exception_unhandled)
1578 (print_one_catch_exception_unhandled)
1579 (print_mention_catch_exception_unhandled)
1580 (print_recreate_catch_exception_unhandled)
1581 (allocate_location_catch_assert, re_set_catch_assert)
1582 (check_status_assert, print_it_catch_assert)
1583 (print_one_catch_assert, print_mention_catch_assert)
1584 (print_recreate_catch_assert)
1585 (allocate_location_catch_handlers, re_set_catch_handlers)
1586 (check_status_handlers, print_it_catch_handlers)
1587 (print_one_catch_handlers, print_mention_catch_handlers)
1588 (print_recreate_catch_handlers): Remove.
1589 (create_ada_exception_catchpoint): Update.
1590 (initialize_ada_catchpoint_ops): Update.
1591
fccf9de1
TT
15922019-10-02 Tom Tromey <tromey@adacore.com>
1593
1594 * ada-lang.c (ada_lookup_simple_minsyms): Remove.
1595 (create_excep_cond_exprs): Simplify exception string computation.
1596 (ada_exception_catchpoint_cond_string): Likewise.
1597
4b610737
TT
15982019-10-02 Tom Tromey <tromey@adacore.com>
1599
1600 * symmisc.c (dump_msymbols): Don't use MSYMBOL_VALUE_ADDRESS.
1601 * ada-lang.c (lesseq_defined_than): Handle
1602 LOC_STATIC.
1603 * dwarf2read.c (dwarf2_per_objfile): Add can_copy
1604 parameter.
1605 (dwarf2_has_info): Likewise.
1606 (new_symbol): Set maybe_copied on symbol when
1607 appropriate.
1608 * dwarf2read.h (dwarf2_per_objfile): Add can_copy
1609 parameter.
1610 <can_copy>: New member.
1611 * elfread.c (record_minimal_symbol): Set maybe_copied
1612 on symbol when appropriate.
1613 (elf_symfile_read): Update call to dwarf2_has_info.
1614 * minsyms.c (lookup_minimal_symbol_linkage): New
1615 function.
1616 * minsyms.h (lookup_minimal_symbol_linkage): Declare.
1617 * symtab.c (get_symbol_address, get_msymbol_address):
1618 New functions.
1619 * symtab.h (get_symbol_address, get_msymbol_address):
1620 Declare.
1621 (SYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_ADDRESS): Handle
1622 maybe_copied.
1623 (struct symbol, struct minimal_symbol) <maybe_copied>:
1624 New member.
1625
1dd58850
TT
16262019-10-02 Tom Tromey <tromey@adacore.com>
1627
1628 * source.c (struct current_source_location): New.
1629 (current_source_key): New global.
1630 (current_source_symtab, current_source_line)
1631 (current_source_pspace): Remove.
1632 (get_source_location): New function.
1633 (get_current_source_symtab_and_line)
1634 (set_default_source_symtab_and_line)
1635 (set_current_source_symtab_and_line)
1636 (clear_current_source_symtab_and_line, select_source_symtab)
1637 (info_source_command, print_source_lines_base)
1638 (info_line_command, search_command_helper, _initialize_source):
1639 Update.
1640
5c281dbb
TT
16412019-10-02 Tom Tromey <tromey@adacore.com>
1642
1643 * source.c (select_source_symtab): Don't call
1644 decode_line_with_current_source.
1645
d3d32391
AB
16462019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
1647
1648 * symtab.c (lookup_global_symbol): Search global block.
1649
38583298
TT
16502019-10-02 Tom Tromey <tromey@adacore.com>
1651
1652 * coffread.c (process_coff_symbol): Update.
1653 * dwarf2read.c (var_decode_location, new_symbol): Update.
1654 * mdebugread.c (parse_symbol): Update.
1655 * objfiles.c (relocate_one_symbol): Update.
1656 * stabsread.c (define_symbol, fix_common_block)
1657 (scan_file_globals): Update.
1658 * symtab.h (SYMBOL_VALUE_ADDRESS): Expand to an rvalue.
1659 (SET_SYMBOL_VALUE_ADDRESS): New macro.
1660 * xcoffread.c (process_xcoff_symbol): Update.
1661
9344c18f
AA
16622019-10-02 Andreas Arnez <arnez@linux.ibm.com>
1663
1664 * MAINTAINERS: Update my email address.
1665
df07e2c7
AB
16662019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
1667
1668 * dwarf2read.c (struct type_unit_group) <tus>: Convert to
1669 std::vector.
1670 (build_type_psymtabs_reader): Update for std::vector.
1671 (build_type_psymtab_dependencies): Likewise.
1672 * dwarf2read.h: Remove use of DEF_VEC_P.
1673 (typedef sig_type_ptr): Delete.
1674
554ac434
AB
16752019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
1676
1677 * btrace.c (btrace_maint_clear): Update to handle change from VEC
1678 to std::vector.
1679 (btrace_maint_decode_pt): Likewise, and move allocation of the
1680 vector outside of the loop.
1681 (btrace_maint_update_packets): Update to handle change from VEC to
1682 std::vector.
1683 (btrace_maint_print_packets): Likewise.
1684 (maint_info_btrace_cmd): Likewise.
1685 * btrace.h: Remove use of DEF_VEC_O.
1686 (typedef btrace_pt_packet_s): Delete.
1687 (struct btrace_maint_info) <packets>: Change fromm VEC to
1688 std::vector.
1689 * gdbsupport/btrace-common.h: Remove 'vec.h' include.
1690
46f29a9a
AB
16912019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
1692
1693 * btrace.c (btrace_compute_ftrace_bts): Update for std::vector,
1694 make accesses into the vector constant references.
1695 (btrace_add_pc): Update for std::vector.
1696 (btrace_stitch_bts): Likewise.
1697 (parse_xml_btrace_block): Likewise.
1698 (btrace_maint_update_packets): Likewise.
1699 (btrace_maint_print_packets): Likewise.
1700 (maint_info_btrace_cmd): Likewise.
1701 * gdbsupport/btrace-common.c (btrace_data::fini): Update for
1702 std::vector.
1703 (btrace_data::empty): Likewise.
1704 (btrace_data_append): Likewise.
1705 * gdbsupport/btrace-common.h: Remove use of DEF_VEC_O.
1706 (typedef btrace_block_s): Delete.
1707 (struct btrace_block): Add constructor.
1708 (struct btrace_data_bts) <blocks>: Change to std::vector.
1709 * nat/linux-btrace.c (perf_event_read_bts): Update for
1710 std::vector.
1711 (linux_read_bts): Likewise.
1712
d770d56f
TT
17132019-10-01 Tom Tromey <tom@tromey.com>
1714
1715 * cli/cli-logging.c (show_logging_filename): Use styled_string.
1716
9d636d67
TT
17172019-10-01 Tom Tromey <tom@tromey.com>
1718
1719 * stack.c (print_frame, info_frame_command_core): Use
1720 styled_string.
1721 * linux-thread-db.c (try_thread_db_load_1)
1722 (try_thread_db_load_from_pdir_1): Use styled_string.
1723 * auto-load.c (file_is_auto_load_safe, execute_script_contents)
1724 (auto_load_section_scripts, info_auto_load_local_gdbinit)
1725 (maybe_print_unsupported_script_warning)
1726 (maybe_print_script_not_found_warning): Use styled_string.
1727 * ada-lang.c (user_select_syms): Use styled_string.
1728
7f6aba03
TT
17292019-10-01 Tom Tromey <tom@tromey.com>
1730
1731 * p-lang.c (pascal_printstr): Use metadata style.
1732 * value.c (show_convenience): Use metadata style.
1733 * valprint.c (valprint_check_validity, val_print_optimized_out)
1734 (val_print_not_saved, val_print_unavailable)
1735 (val_print_invalid_address, generic_val_print, val_print)
1736 (value_check_printable, val_print_array_elements): Use metadata
1737 style.
1738 * ui-out.h (class ui_out) <field_fmt>: New overload.
1739 <do_field_fmt>: Add style parameter.
1740 * ui-out.c (ui_out::field_fmt): New overload.
1741 * typeprint.c (type_print_unknown_return_type)
1742 (val_print_not_allocated, val_print_not_associated): Use metadata
1743 style.
1744 * tui/tui-out.h (class tui_ui_out) <do_field_fmt>: Add style
1745 parameter.
1746 * tui/tui-out.c (tui_ui_out::do_field_fmt): Update.
1747 * tracepoint.c (tvariables_info_1): Use metadata style.
1748 * stack.c (print_frame_arg, print_frame_info, print_frame)
1749 (info_frame_command_core): Use metadata style.
1750 * skip.c (info_skip_command): Use metadata style.
1751 * rust-lang.c (rust_print_enum): Use metadata style.
1752 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
1753 metadata style.
1754 * python/py-framefilter.c (py_print_single_arg): Use metadata
1755 style.
1756 * printcmd.c (do_one_display, print_variable_and_value): Use
1757 metadata style.
1758 * p-valprint.c (pascal_val_print)
1759 (pascal_object_print_value_fields): Use metadata style.
1760 * p-typeprint.c (pascal_type_print_base): Use metadata style.
1761 * mi/mi-out.h (class mi_ui_out) <do_field_fmt>: Add style
1762 parameter.
1763 * mi/mi-out.c (mi_ui_out::do_field_fmt): Update.
1764 * m2-valprint.c (m2_print_long_set): Use metadata style.
1765 * m2-typeprint.c (m2_print_type): Use metadata style.
1766 * infcmd.c (print_return_value_1): Use metadata style.
1767 * gnu-v3-abi.c (print_one_vtable): Use metadata style.
1768 * f-valprint.c (info_common_command_for_block): Use metadata
1769 style.
1770 * f-typeprint.c (f_type_print_base): Use metadata style.
1771 * expprint.c (print_subexp_standard): Use metadata style.
1772 * cp-valprint.c (cp_print_value_fields): Use metadata style.
1773 * cli/cli-style.h (class cli_style_option): Add constructor.
1774 (metadata_style): Declare.
1775 * cli/cli-style.c (metadata_style): New global.
1776 (_initialize_cli_style): Register metadata style.
1777 * cli-out.h (class cli_ui_out) <do_field_fmt>: Add style
1778 parameter.
1779 * cli-out.c (cli_ui_out::do_field_fmt): Update.
1780 * c-typeprint.c (c_type_print_base_struct_union)
1781 (c_type_print_base_1): Use metadata style.
1782 * breakpoint.c (watchpoint_value_print)
1783 (print_one_breakpoint_location): Use metadata style.
1784 * break-catch-syscall.c (print_one_catch_syscall): Use metadata
1785 style.
1786 * break-catch-sig.c (signal_catchpoint_print_one): Use metadata
1787 style.
1788 * ada-valprint.c (val_print_packed_array_elements, printstr)
1789 (print_field_values, ada_val_print_ref, ada_val_print): Use
1790 metadata style.
1791 * ada-typeprint.c (print_array_type, ada_print_type): Use metadata
1792 style.
1793 * ada-tasks.c (print_ada_task_info, info_task): Use metadata
1794 style.
1795 * ada-lang.c (user_select_syms): Use metadata style.
1796
14309bb6
TT
17972019-10-01 Tom Tromey <tom@tromey.com>
1798
1799 * cli/cli-cmds.c (pwd_command): Style output.
1800
6a831f06
PA
18012019-10-01 Pedro Alves <palves@redhat.com>
1802 Tom Tromey <tom@tromey.com>
1803
1804 * symtab.c (print_symbol_info): Use %ps.
1805 (print_msymbol_info): Use %ps.
1806 * symfile.c (symbol_file_add_with_addrs): Use %ps.
1807 * printcmd.c (print_variable_and_value): Use %ps.
1808 * macrocmd.c (show_pp_source_pos): Use %ps.
1809 * infrun.c (print_exited_reason): Use ui_out::message.
1810 * breakpoint.c (watchpoint_check, print_one_breakpoint_location)
1811 (describe_other_breakpoints): Use ui_out::message and new
1812 formats.
1813 (say_where): Use new formats.
1814 (bkpt_print_it, tracepoint_print_one_detail): Use ui_out::message
1815 and new formats.
1816
2a3c1174
PA
18172019-10-01 Pedro Alves <palves@redhat.com>
1818 Tom Tromey <tom@tromey.com>
1819
1820 * unittests/format_pieces-selftests.c: Add gdb_format parameter.
1821 (test_gdb_formats): New function.
1822 (run_tests): Call it.
1823 (test_format_specifier): Update.
1824 * utils.h (fputs_filtered): Update comment.
1825 (vfprintf_styled, vfprintf_styled_no_gdbfmt)
1826 (fputs_styled_unfiltered): Declare.
1827 * utils.c (fputs_styled_unfiltered): New function.
1828 (vfprintf_maybe_filtered): Add gdbfmt parameter.
1829 (vfprintf_filtered): Update.
1830 (vfprintf_unfiltered, vprintf_filtered): Update.
1831 (vfprintf_styled, vfprintf_styled_no_gdbfmt): New functions.
1832 * ui-out.h (enum ui_out_flag) <unfiltered_output,
1833 disallow_ui_out_field>: New constants.
1834 (enum class field_kind): New.
1835 (struct base_field_s, struct signed_field_s): New.
1836 (signed_field): New function.
1837 (struct string_field_s): New.
1838 (string_field): New function.
1839 (struct styled_string_s): New.
1840 (styled_string): New function.
1841 (class ui_out) <message>: Add comment.
1842 <vmessage, call_do_message>: New methods.
1843 <do_message>: Add style parameter.
1844 * ui-out.c (ui_out::call_do_message, ui_out::vmessage): New
1845 methods.
1846 (ui_out::message): Rewrite.
1847 * mi/mi-out.h (class mi_ui_out) <do_message>: Add style
1848 parameter.
1849 * mi/mi-out.c (mi_ui_out::do_message): Add style parameter.
1850 * gdbsupport/format.h (class format_pieces) <format_pieces>: Add
1851 gdb_extensions parameter.
1852 (class format_piece): Add parameter to constructor.
1853 (n_int_args): New field.
1854 * gdbsupport/format.c (format_pieces::format_pieces): Add
1855 gdb_extensions parameter. Handle '*'.
1856 * cli-out.h (class cli_ui_out) <do_message>: Add style parameter.
1857 * cli-out.c (cli_ui_out::do_message): Add style parameter. Call
1858 vfprintf_styled_no_gdbfmt.
1859 (cli_ui_out::do_field_string, cli_ui_out::do_spaces)
1860 (cli_ui_out::do_text, cli_ui_out::field_separator): Allow
1861 unfiltered output.
1862 * ui-style.h (struct ui_file_style) <ptr>: New method.
1863
0dfe5bfb
TT
18642019-10-01 Tom Tromey <tom@tromey.com>
1865
1866 * unittests/format_pieces-selftests.c: Update. Add final format.
1867 * gdbsupport/format.c (format_pieces::format_pieces): Don't add
1868 empty literal pieces.
1869
e43b10e1
TT
18702019-10-01 Tom Tromey <tom@tromey.com>
1871
1872 * ui-out.h (enum class ui_out_style_kind): Remove.
1873 (class ui_out) <field_string, field_stsream, do_field_string>:
1874 Change type of "style".
1875 * ui-out.c (ui_out::field_core_addr, ui_out::field_stream)
1876 (ui_out::field_string): Update.
1877 * tui/tui-out.h (class tui_ui_out) <do_field_string>: Change type
1878 of "style".
1879 * tui/tui-out.c (tui_ui_out::do_field_string): Update.
1880 * tracepoint.c (print_one_static_tracepoint_marker): Update.
1881 * stack.c (print_frame_arg, print_frame_info, print_frame):
1882 Update.
1883 * source.c (print_source_lines_base): Update.
1884 * solib.c (info_sharedlibrary_command): Update.
1885 * skip.c (info_skip_command): Update.
1886 * record-btrace.c (btrace_call_history_src_line)
1887 (btrace_call_history): Update.
1888 * python/py-framefilter.c (py_print_frame): Update.
1889 * mi/mi-out.h (class mi_ui_out) <do_field_string>: Change type of
1890 "style".
1891 * mi/mi-out.c (mi_ui_out::do_table_header)
1892 (mi_ui_out::do_field_signed, mi_ui_out::do_field_unsigned)
1893 (mi_ui_out::do_field_string): Update.
1894 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
1895 Update.
1896 * cli-out.h (class cli_ui_out) <do_field_string>: Change type of
1897 "style".
1898 * cli-out.c (cli_ui_out::do_table_header)
1899 (cli_ui_out::do_field_signed, cli_ui_out::do_field_unsigned)
1900 (cli_ui_out::do_field_skip, cli_ui_out::do_field_string)
1901 (cli_ui_out::do_field_fmt): Update.
1902 * breakpoint.c (print_breakpoint_location): Update.
1903 (update_static_tracepoint): Update.
1904
cd7c32c3
PW
19052019-10-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1906
1907 * main.c (relocate_gdbinit_path_maybe_in_datadir): Remove std::string
1908 conversion of gdb_datadir.
1909 (captured_main_1): Remove xstrdup when assigning to gdb_datadir,
1910 remove not needed c_str ().
1911
8fe0f950
AT
19122019-09-30 Ali Tamur <tamur@google.com>
1913
1914 * dwarf2read.c (skip_one_die): Handle DW_FORM_strx forms.
1915 (dwarf2_string_attr): Likewise.
1916
5f48f8f3
AT
19172019-09-30 Ali Tamur <tamur@google.com>
1918
1919 * dwarf2read.c (process_full_comp_unit): Remove whitespace at the EOL.
1920 (process_full_type_unit): Likewise.
1921 (dump_die_shallow): Likewise.
1922 (cu_debug_loc_section): Likewise.
1923
6fb08628
CB
19242019-09-28 Christian Biesinger <cbiesinger@google.com>
1925
1926 * minsyms.c (compare_minimal_symbols): Rename to...
1927 (minimal_symbol_is_less_than): ...this, and adjust to STL
1928 conventions (return bool, take arguments as references)
1929 (minimal_symbol_reader::install): Call std::sort instead
1930 of qsort.
1931
c7ee338a
CB
19322019-09-29 Christian Biesinger <cbiesinger@google.com>
1933
1934 * minsyms.h (msymbol_hash): Document that this is a case-insensitive
1935 hash and why.
1936 * objfiles.h (struct objfile_per_bfd_storage) <demangled_names_hash,
1937 msymbol_hash, msymbol_demangled_hash>: Improve comments.
1938
703a86c2
SM
19392019-09-30 Simon Marchi <simon.marchi@polymtl.ca>
1940
1941 * psymtab.c (add_psymbol_to_list): Move comment to psympriv.h.
1942 * psympriv.h (add_psymbol_to_list): Move comment here and update
1943 it.
1944
0df0352a
TV
19452019-09-29 Tom de Vries <tdevries@suse.de>
1946
1947 * contrib/cc-with-tweaks.sh (get_tmpdir): New function.
1948 Use $tmpdir/$(basename "$output_file").dwz instead of
1949 "${output_file}.dwz".
1950
ad75efa6
SM
19512019-09-28 Simon Marchi <simon.marchi@polymtl.ca>
1952
1953 PR gdb/25045
1954 * hppa-linux-nat.c: Include gdbarch.h.
1955
ececd218
CB
19562019-09-26 Christian Biesinger <cbiesinger@google.com>
1957
1958 * blockframe.c (find_pc_partial_function): Change return type to bool.
1959 * elfread.c (elf_gnu_ifunc_resolve_name): Likewise.
1960 * minsyms.c (in_gnu_ifunc_stub): Likewise.
1961 (stub_gnu_ifunc_resolve_name): Likewise.
1962 * symtab.c (compare_filenames_for_search): Likewise.
1963 (compare_glob_filenames_for_search): Likewise.
1964 (matching_obj_sections): Likewise.
1965 (symbol_matches_domain): Likewise.
1966 (find_line_symtab): Change out param EXACT_MATCH to bool *.
1967 (find_line_pc): Change return type to bool.
1968 (find_line_pc_range): Likewise.
1969 (producer_is_realview): Likewise.
1970 * symtab.h (symbol_matches_domain): Likewise.
1971 (find_pc_partial_function): Likewise.
1972 (find_pc_line_pc_range): Likewise.
1973 (in_gnu_ifunc_stub): Likewise.
1974 (struct gnu_ifunc_fns) <gnu_ifunc_resolve_name>: Likewise.
1975 (find_line_pc): Likewise.
1976 (find_line_pc_range): Likewise.
1977 (matching_obj_sections): Likewise.
1978 (find_line_symtab): Change out parameter to bool.
1979 (producer_is_realview): Change return type to bool.
1980 (compare_filenames_for_search): Likewise.
1981 (compare_glob_filenames_for_search): Likewise.
1982
27a900b8
TT
19832019-09-26 Tom Tromey <tom@tromey.com>
1984
1985 * Makefile.in (COMMON_SFILES): Remove gdb_usleep.c.
1986 (HFILES_NO_SRCDIR): Remove gdb_usleep.h.
1987 * gdb_usleep.h: Remove.
1988 * gdb_usleep.c: Remove.
1989 * utils.c: Don't include gdb_usleep.h.
1990
5d63b30a
TT
19912019-09-26 Tom Tromey <tromey@adacore.com>
1992
1993 * python/py-type.c (type_to_type_object): Call check_typedef
1994 for stub types.
1995
12904d37
TT
19962019-09-26 Tom Tromey <tom@tromey.com>
1997
1998 * utils.h (initialize_utils): Don't declare.
1999 * top.c (gdb_init): Don't call initialize_utils.
2000 * utils.c (initialize_utils): Remove. Move contents...
2001 (_initialize_utils): ... here.
2002
858f25f0
TT
20032019-09-25 Tom Tromey <tom@tromey.com>
2004
2005 * python/py-objfile.c (objfpy_get_build_id): Use bin2hex.
2006 * utils.h (make_hex_string): Don't declare.
2007 * utils.c (make_hex_string): Remove.
2008
3d435220
TV
20092019-09-24 Tom de Vries <tdevries@suse.de>
2010
2011 PR gdb/23815
2012 * amd64-linux-nat.c (amd64_linux_nat_target::fetch_registers):
2013 Initialize xstateregs before ptrace PTRACE_GETREGSET call.
2014
ddd44b70
DD
20152019-09-23 Dimitar Dimitrov <dimitar@dinux.eu>
2016
2017 * NEWS: Mention new simulator port for PRU.
2018
f945dedf
CB
20192019-09-23 Christian Biesinger <cbiesinger@google.com>
2020
2021 * ada-exp.y (write_object_remaining): Update.
2022 * ada-lang.c (ada_decode): Return a std::string instead of a char*
2023 and eliminate the static buffer.
2024 (ada_decode_symbol): Update.
2025 (ada_la_decode): Update.
2026 (ada_sniff_from_mangled_name): Update.
2027 (is_valid_name_for_wild_match): Update.
2028 (ada_lookup_name_info::matches): Update and simplify.
2029 (name_matches_regex): Update.
2030 (ada_add_global_exceptions): Update.
2031 * ada-lang.h (ada_decode): Update signature.
2032 * ada-varobj.c (ada_varobj_describe_simple_array_child): Update.
2033 * dwarf-index-write.c (debug_names::insert): Update.
2034
7ab78ccb
SM
20352019-09-21 Simon Marchi <simon.marchi@polymtl.ca>
2036
2037 * solib-svr4.c (svr4_iterate_over_objfiles_in_search_order): Fix
2038 formatting.
2039
9252448b
SM
20402019-09-21 Simon Marchi <simon.marchi@polymtl.ca>
2041
2042 * breakpoint.h (bp_location) <inserted, permanent, duplicate>:
2043 Change "nonzero" to "true" in documentation.
2044
626ca2c0
CB
20452019-09-20 Christian Biesinger <cbiesinger@google.com>
2046
2047 * solib-darwin.c (darwin_lookup_lib_symbol): Remove.
2048 (_initialize_darwin_solib): Don't set
2049 darwin_so_ops.lookup_lib_global_symbol.
2050 * solib-svr4.c (set_solib_svr4_fetch_link_map_offsets): Call
2051 set_gdbarch_iterate_over_objfiles_in_search_order.
2052 (elf_lookup_lib_symbol): Rename to...
2053 (svr4_iterate_over_objfiles_in_search_order): this, and update
2054 to iterate semantics.
2055 (_initialize_svr4_solib): Don't set lookup_lib_global_symbol.
2056 * solib.c (solib_global_lookup): Remove.
2057 * solist.h (struct target_so_ops): Remove lookup_lib_global_symbol.
2058 (solib_global_lookup): Remove.
2059 * symtab.c (lookup_global_or_static_symbol): Remove call to
2060 solib_global_lookup.
2061
5a3a0d63
JB
20622019-09-20 Joel Brobecker <brobecker@adacore.com>
2063
2064 * NEWS: Move entries about default MI version now being
2065 version 3, and about the GDB/MI fix for multi-location
2066 breakpoints to the "since GDB 8.3" section.
2067
ffea1427
JB
20682019-09-20 Joel Brobecker <brobecker@adacore.com>
2069
2070 GDB 8.3.1 released.
2071
abf516c6
UW
20722019-09-20 Ulrich Weigand <uweigand@de.ibm.com>
2073
2074 * NEWS: Mention that Cell/B.E. debugging support was removed.
2075 * MAINTAINERS: Remove spu target.
2076
2077 * config/djgpp/fnchange.lst: Remove entries for removed files.
2078
2079 * Makefile.in (ALL_TARGET_OBS): Remove solib-spu.o,
2080 spu-multiarch.o, and spu-tdep.o.
2081 (HFILES_NO_SRCDIR): Remove solib-spu.h and spu-tdep.h.
2082 (ALLDEPFILES): Remove solib-spu.c, spu-linux-nat.c,
2083 spu-multiarch.c, and spu-tdep.c.
2084 * spu-linux-nat.c: Remove file.
2085 * spu-multiarch.c: Remove file.
2086 * spu-tdep.c: Remove file.
2087 * spu-tdep.h: Remove file.
2088 * solib-spu.c: Remove file.
2089 * solib-spu.h: Remove file.
2090
2091 * configure.host (powerpc64*-*-linux*): Remove Cell/B.E. support.
2092 * configure.nat (spu-linux): Remove.
2093 * configure.tgt (powerpc*-*-linux*): Remove solib-spu.o and
2094 solib-multiarch.o from gdb_target_obs.
2095 (spu*-*-*): Remove.
2096
2097 * arch/ppc-linux-common.h (struct ppc_linux_features): Remove "cell"
2098 feature flag.
2099 (ppc_linux_no_features): Update.
2100 * arch/ppc-linux-common.c (ppc_linux_match_description): Remove
2101 Cell/B.E. support.
2102 * arch/ppc-linux-tdesc.h (tdesc_powerpc_cell32l): Remove declaration.
2103 (tdesc_powerpc_cell64l): Likewise.
2104 * nat/ppc-linux.h (PPC_FEATURE_CELL): Remove.
2105 * ppc-linux-nat.c (ppc_linux_nat_target::read_description): Remove
2106 Cell/B.E. support.
2107 * ppc-linux-tdep.h: Do not include "solib-spu.h" or "spu-tdep.h".
2108 Do not include "features/rs6000/powerpc-cell32l.c" or
2109 "features/rs6000/powerpc-cell64l.c".
2110 (ppc_linux_spu_section): Remove.
2111 (ppc_linux_core_read_description): Remove Cell/B.E. support.
2112 (spe_context_objfile, spe_context_lm_addr, spe_context_offset,
2113 spe_context_cache_ptid, spe_context_cache_ptid): Remove.
2114 (ppc_linux_spe_context_lookup): Remove.
2115 (ppc_linux_spe_context_inferior_created): Remove.
2116 (ppc_linux_spe_context_solib_loaded): Remove.
2117 (ppc_linux_spe_context_solib_unloaded): Remove.
2118 (ppc_linux_spe_context): Remove.
2119 (struct ppu2spu_cache): Remove.
2120 (ppu2spu_prev_arch, ppu2spu_this_id, ppu2spu_prev_register): Remove.
2121 (struct ppu2spu_data): Remove.
2122 (ppu2spu_unwind_register, ppu2spu_sniffer, ppu2spu_dealloc_cache,
2123 ppu2spu_unwind): Remove.
2124 (ppc_linux_init_abi): Remove Cell/B.E. support.
2125 * rs6000-tdep.h (rs6000_gdbarch_init): Remove Cell/B.E. support.
2126
2127 * features/Makefile (rs6000/powerpc-cell32l-expedite): Remove.
2128 (rs6000/powerpc-cell64l-expedite): Likewise
2129 (WHICH): Remove rs6000/powerpc-cell32l and rs6000/powerpc-cell64l.
2130 (XMLTOC): Remove rs6000/powerpc-cell32l.xml and
2131 rs6000/powerpc-cell64l.xml.
2132 * features/rs6000/powerpc-cell32l.xml: Remove.
2133 * features/rs6000/powerpc-cell64l.xml: Likewise.
2134 * features/rs6000/powerpc-cell32l.c: Remove generated file.
2135 * features/rs6000/powerpc-cell64l.c: Likewise.
2136 * regformats/rs6000/powerpc-cell32l.dat: Remove generated file.
2137 * regformats/rs6000/powerpc-cell64l.dat: Likewise.
2138 * regformats/reg-spu.dat: Remove.
2139
2140 * target.h (enum target_object): Remove TARGET_OBJECT_SPU.
2141 * corelow.c (struct spuid_list): Remove.
2142 (add_to_spuid_list): Remove.
2143 (core_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
2144 * remote.c (PACKET_qXfer_spu_read, PACKET_qXfer_spu_write): Remove.
2145 (remote_protocol_features): Remove associated entries.
2146 (_initialize_remote): No longer initialize them.
2147 (remote_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
2148 * linux-nat.c (SPUFS_MAGIC): Remove.
2149 (linux_proc_xfer_spu): Remove.
2150 (spu_enumerate_spu_ids): Remove.
2151 (linux_nat_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
2152 * linux-tdep.c (-linux_spu_make_corefile_notes): Remove.
2153 (linux_make_corefile_notes): No longer call it.
2154
2155 * regcache.c (cooked_read_test): Remove bfd_arch_spu special case.
2156 (cooked_write_test): Likewise.
2157
78e8cb91
TT
21582019-09-20 Tom Tromey <tom@tromey.com>
2159
2160 * NEWS: Mention case-sensitivity of TUI commands.
2161 * tui/tui-win.c (tui_set_focus_command): Now case-sensitive.
2162 (tui_set_win_height_command, parse_scrolling_args): Likewise.
2163 * tui/tui-layout.c (tui_layout_command): Now case-sensitive.
2164
f074b67e
TT
21652019-09-20 Tom Tromey <tom@tromey.com>
2166
2167 * tui/tui-source.c (tui_source_window::set_contents): Use
2168 make_unique_xstrdup.
2169 * tui/tui-disasm.c (tui_disasm_window::set_contents): Use
2170 make_unique_xstrdup.
2171
63c4bf19
TT
21722019-09-20 Tom Tromey <tom@tromey.com>
2173
2174 * tui/tui-data.c: Remove separator comments.
2175 * tui/tui-layout.c: Remove separator comments.
2176 * tui/tui-win.c: Remove separator comments.
2177 * tui/tui-wingeneral.c: Remove separator comments.
2178
43df9b2f
TT
21792019-09-20 Tom Tromey <tom@tromey.com>
2180
2181 * tui/tui.h (strcat_to_buf): Don't declare.
2182 * tui/tui.c (strcat_to_buf): Remove.
2183
7226433c
TT
21842019-09-20 Tom Tromey <tom@tromey.com>
2185
2186 * tui/tui-source.h (struct tui_source_window) <m_fullname>: Rename
2187 from "fullname".
2188 * tui/tui-source.c (tui_source_window::set_contents)
2189 (tui_source_window::location_matches_p)
2190 (tui_source_window::maybe_update): Update.
2191
80df3337
TT
21922019-09-20 Tom Tromey <tom@tromey.com>
2193
2194 * tui/tui-regs.h (struct tui_data_window) <get_current_group>:
2195 Update.
2196 <m_regs_content, m_regs_column_count, m_current_group>: Add "m_"
2197 prefix.
2198 * tui/tui-regs.c (tui_data_window::last_regs_line_no)
2199 (tui_data_window::line_from_reg_element_no)
2200 (tui_data_window::first_reg_element_no_inline)
2201 (tui_data_window::show_registers)
2202 (tui_data_window::show_register_group)
2203 (tui_data_window::display_registers_from)
2204 (tui_data_window::display_registers_from_line)
2205 (tui_data_window::first_data_item_displayed)
2206 (tui_data_window::delete_data_content_windows)
2207 (tui_data_window::erase_data_content)
2208 (tui_data_window::do_scroll_vertical)
2209 (tui_data_window::refresh_window)
2210 (tui_data_window::check_register_values): Update.
2211
9923f347
TT
22122019-09-20 Tom Tromey <tom@tromey.com>
2213
2214 * tui/tui-stack.h (MAX_LOCATOR_ELEMENT_LEN): Remove define.
2215 (struct tui_locator_window) <full_name, proc_name>: Now
2216 std::string.
2217 * tui/tui-stack.c (tui_locator_window::make_status_line)
2218 (tui_locator_window::set_locator_fullname)
2219 (tui_locator_window::set_locator_info): Update.
2220 * tui/tui-source.c (tui_source_window::set_contents)
2221 (tui_source_window::showing_source_p): Update.
2222
b76251ab
TT
22232019-09-20 Tom Tromey <tom@tromey.com>
2224
2225 * tui/tui-stack.c (tui_locator_window::set_locator_fullname):
2226 Don't call tui_locator_win_info_ptr.
2227
0891be08
TT
22282019-09-20 Tom Tromey <tom@tromey.com>
2229
2230 * tui/tui-win.c (tui_resize_all): Don't call refresh.
2231
1b935acf
TT
22322019-09-20 Tom Tromey <tom@tromey.com>
2233
2234 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Use 1 as
2235 height for locator.
2236 * tui/tui-stack.c (tui_locator_window::rerender): Call scrollok.
2237 * tui/tui-layout.c (show_source_disasm_command, show_data)
2238 (show_source_or_disasm_and_command): Use 1 as height for locator.
2239
9abd8a65
TT
22402019-09-20 Tom Tromey <tom@tromey.com>
2241
2242 * tui/tui.c (tui_enable): Update.
2243 * tui/tui-win.c (tui_sigwinch_handler, tui_async_resize_screen):
2244 Update.
2245 * tui/tui-data.h (tui_win_resized, tui_set_win_resized_to):
2246 Update.
2247 * tui/tui-data.c (win_resized): Now bool.
2248 (tui_win_resized): Return bool.
2249 (tui_set_win_resized_to): Accept a bool.
2250
b5457826
TT
22512019-09-20 Tom Tromey <tom@tromey.com>
2252
2253 * tui/tui-regs.h (struct tui_data_window) <show_register_group>:
2254 Change type of "refresh_values_only".
2255 * tui/tui-regs.c (tui_data_window::show_register_group): Change
2256 type of "refresh_values_only".
2257
6b915f7d
TT
22582019-09-20 Tom Tromey <tom@tromey.com>
2259
2260 * tui/tui-disasm.c (struct tui_asm_line) <addr_string, insn>: Now
2261 std::string.
2262 (tui_disassemble): Add "pos" parameter.
2263 (tui_disasm_window::set_contents): Simplify.
2264
2ad52f6f
TT
22652019-09-20 Tom Tromey <tom@tromey.com>
2266
2267 * tui/tui-winsource.h (struct tui_source_window_base)
2268 <show_source_content>: Now private.
2269 * tui/tui-winsource.c
2270 (tui_source_window_base::show_source_content): Don't handle empty
2271 content case.
2272
b3b1bde6
TT
22732019-09-20 Tom Tromey <tom@tromey.com>
2274
2275 * tui/tui-layout.c (show_source_disasm_command)
2276 (show_source_or_disasm_and_command): Don't call
2277 show_source_content.
2278
71a25ed2
TT
22792019-09-20 Tom Tromey <tom@tromey.com>
2280
2281 * tui/tui-stack.h (struct tui_locator_window) <make_status_line>:
2282 Declare.
2283 * tui/tui-stack.c (tui_locator_window::make_status_line): Rename
2284 from tui_make_status_line.
2285 (tui_locator_window::rerender): Update.
2286
f8532154
TT
22872019-09-20 Tom Tromey <tom@tromey.com>
2288
2289 * tui/tui-stack.c (tui_make_status_line): Return std::string.
2290 (tui_locator_window::rerender): Update.
2291
2d81b349
TT
22922019-09-20 Tom Tromey <tom@tromey.com>
2293
2294 * tui/tui-winsource.h (struct tui_source_window_base)
2295 <~tui_source_window_base>: Don't declare.
2296 <fullname>: Remove.
2297 * tui/tui-winsource.c (~tui_source_window_base): Remove.
2298 * tui/tui-source.h (struct tui_source_window) <fullname>: New
2299 member.
2300 * tui/tui-source.c (tui_source_window::set_contents): Update.
2301 (tui_source_window::location_matches_p)
2302 (tui_source_window::maybe_update): Update.
2303
f14bec58
TT
23042019-09-20 Tom Tromey <tom@tromey.com>
2305
2306 * tui/tui-winsource.h (~tui_source_element): Remove.
2307 (tui_source_element): Update.
2308 (struct tui_source_element) <line>: Now a unique_xmalloc_ptr.
2309 * tui/tui-winsource.c (tui_show_source_line): Update.
2310 * tui/tui-source.c (tui_source_window::set_contents): Update.
2311 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
2312
78d5933a
TT
23132019-09-20 Tom Tromey <tom@tromey.com>
2314
2315 * tui/tui-data.h (tui_clear_source_windows_detail): Don't
2316 declare.
2317 * tui/tui-layout.c (tui_add_win_to_layout): Don't call
2318 tui_clear_source_windows_detail.
2319 * tui/tui-winsource.h (struct tui_source_window_base)
2320 <clear_detail>: Don't declare.
2321 * tui/tui-winsource.c (tui_source_window_base::clear_detail):
2322 Remove.
2323 * tui/tui-data.c (tui_clear_source_windows_detail): Remove.
2324
d4207696
TT
23252019-09-20 Tom Tromey <tromey@adacore.com>
2326
2327 PR ada/24919:
2328 * block.c (contained_in): Fix final return value.
2329
00f93c44
AM
23302019-09-20 Alan Modra <amodra@gmail.com>
2331
2332 * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Use bfd_set_usrdata.
2333 * dwarf2read.c (dwarf2_read_gdb_index, dwarf2_read_debug_names),
2334 (read_indirect_string_from_dwz): Use bfd accessor.
2335 * dwarf2read.h (struct dwz_file <filename>): Likewise.
2336 * machoread.c (macho_symfile_read_all_oso): Likewise.
2337 * solib.c (solib_bfd_open): Likewise.
2338
e4153ae6
CB
23392019-09-19 Christian Biesinger <cbiesinger@google.com>
2340
2341 * eval.c: Move declaration of overload_resolution to...
2342 * value.h: ...here.
2343
c7ae7675
CB
23442019-09-19 Christian Biesinger <cbiesinger@google.com>
2345
2346 * arm-linux-nat.c: Remove extern declaration for arm_apcs_32.
2347 * arm-linux-tdep.c: Likewise.
2348 * arm-nbsd-nat.c: Likewise.
2349 * arm-tdep.h: Declare arm_apcs_32.
2350 * arm-tdep.c: Move documentation for arm_apcs_32 to arm-tdep.h.
2351
e86f08d2
CB
23522019-09-19 Christian Biesinger <cbiesinger@google.com>
2353
2354 * dwarf2loc.c: Remove extern declaration of dwarf_always_disassemble.
2355 * dwarf2read.h: Declare dwarf_always_disassemble.
2356
f64e2f40
TV
23572019-09-19 Tom de Vries <tdevries@suse.de>
2358
2359 PR gdb/25009
2360 * source-cache.c (source_cache::ensure): Catch exception thrown during
2361 construction of the highlighter.
2362
fd361982
AM
23632019-09-18 Alan Modra <amodra@gmail.com>
2364
2365 * aarch64-linux-tdep.c, * arm-tdep.c, * auto-load.c,
2366 * coff-pe-read.c, * coffread.c, * corelow.c, * dbxread.c,
2367 * dicos-tdep.c, * dwarf2-frame.c, * dwarf2read.c, * elfread.c,
2368 * exec.c, * fbsd-tdep.c, * gcore.c, * gdb_bfd.c, * gdb_bfd.h,
2369 * hppa-tdep.c, * i386-cygwin-tdep.c, * i386-fbsd-tdep.c,
2370 * i386-linux-tdep.c, * jit.c, * linux-tdep.c, * machoread.c,
2371 * maint.c, * mdebugread.c, * minidebug.c, * mips-linux-tdep.c,
2372 * mips-sde-tdep.c, * mips-tdep.c, * mipsread.c, * nto-tdep.c,
2373 * objfiles.c, * objfiles.h, * osabi.c, * ppc-linux-tdep.c,
2374 * ppc64-tdep.c, * record-btrace.c, * record-full.c, * remote.c,
2375 * rs6000-aix-tdep.c, * rs6000-tdep.c, * s390-linux-tdep.c,
2376 * s390-tdep.c, * solib-aix.c, * solib-dsbt.c, * solib-frv.c,
2377 * solib-spu.c, * solib-svr4.c, * solib-target.c,
2378 * spu-linux-nat.c, * spu-tdep.c, * symfile-mem.c, * symfile.c,
2379 * symmisc.c, * symtab.c, * target.c, * windows-nat.c,
2380 * xcoffread.c, * cli/cli-dump.c, * compile/compile-object-load.c,
2381 * mi/mi-interp.c: Update throughout for bfd section macro and
2382 function changes.
2383 * gcore (gcore_create_callback): Use bfd_set_section_lma.
2384 * spu-tdep.c (spu_overlay_new_objfile): Likewise.
2385
11061048
TT
23862019-09-18 Tom Tromey <tom@tromey.com>
2387
2388 * NEWS: Add entry.
2389 * tui/tui.c (tui_initialize_readline): Set name of keymap. Do not
2390 call rl_initialize.
2391 (tui_enable): Do not call rl_initialize.
2392
7a27b85f
CG
23932019-09-18 Christian Groessler <chris@groessler.org>
2394
2395 * alpha-linux-nat.c: Include gdbarch.h.
2396
f64eea3a
SM
23972019-09-18 Simon Marchi <simon.marchi@polymtl.ca>
2398
2399 * ui-file.c: Include cli/cli-style.h.
2400 (term_cli_styling): Remove cli_styling declaration.
2401
e6f7f6d1
AM
24022019-09-18 Alan Modra <amodra@gmail.com>
2403
2404 * arm-tdep.c (arm_record_special_symbol): Update bfd_get_section
2405 to bfd_asymbol_section.
2406
1d38e9d1
AM
24072019-09-18 Alan Modra <amodra@gmail.com>
2408
2409 * amd64-dicos-tdep.c (amd64_dicos_osabi_sniffer): Constify target.
2410 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
2411 * i386-dicos-tdep.c (i386_dicos_osabi_sniffer): Likewise.
2412
90d92a63
AM
24132019-09-18 Alan Modra <amodra@gmail.com>
2414
2415 * solib-spu.c (spu_bfd_open): Use bfd_set_filename.
2416 * spu-linux-nat.c (spu_bfd_open): Likewise.
2417
a3d181d2
CB
24182019-09-18 Christian Biesinger <cbiesinger@google.com>
2419
2420 * dwarf2loc.c: Change extern declaration of dwarf_always_disassemble
2421 to bool to match definition in dwarf2read.c.
2422
491144b5
CB
24232019-09-17 Christian Biesinger <cbiesinger@google.com>
2424
2425 * ada-lang.c (ada_ignore_descriptive_types_p): Change to bool.
2426 (print_signatures): Likewise.
2427 (trust_pad_over_xvs): Likewise.
2428 * arch/aarch64-insn.c (aarch64_debug): Likewise.
2429 * arch/aarch64-insn.h (aarch64_debug): Likewise.
2430 * arm-linux-nat.c (arm_apcs_32): Likewise.
2431 * arm-linux-tdep.c (arm_apcs_32): Likewise.
2432 * arm-nbsd-nat.c (arm_apcs_32): Likewise.
2433 * arm-tdep.c (arm_debug): Likewise.
2434 (arm_apcs_32): Likewise.
2435 * auto-load.c (debug_auto_load): Likewise.
2436 (auto_load_gdb_scripts): Likewise.
2437 (global_auto_load): Likewise.
2438 (auto_load_local_gdbinit): Likewise.
2439 (auto_load_local_gdbinit_loaded): Likewise.
2440 * auto-load.h (global_auto_load): Likewise.
2441 (auto_load_local_gdbinit): Likewise.
2442 (auto_load_local_gdbinit_loaded): Likewise.
2443 * breakpoint.c (disconnected_dprintf): Likewise.
2444 (breakpoint_proceeded): Likewise.
2445 (automatic_hardware_breakpoints): Likewise.
2446 (always_inserted_mode): Likewise.
2447 (target_exact_watchpoints): Likewise.
2448 (_initialize_breakpoint): Update.
2449 * breakpoint.h (target_exact_watchpoints): Change to bool.
2450 * btrace.c (maint_btrace_pt_skip_pad): Likewise.
2451 * cli/cli-cmds.c (trace_commands): Likewise.
2452 * cli/cli-cmds.h (trace_commands): Likewise.
2453 * cli/cli-decode.c (add_setshow_boolean_cmd): Change int* argument
2454 to bool*.
2455 * cli/cli-logging.c (logging_overwrite): Change to bool.
2456 (logging_redirect): Likewise.
2457 (debug_redirect): Likewise.
2458 * cli/cli-option.h (option_def) <boolean>: Change return type to bool*.
2459 (struct boolean_option_def) <get_var_address_cb_>: Change return type
2460 to bool.
2461 <boolean_option_def>: Update.
2462 (struct flag_option_def): Change default type of Context to bool
2463 from int.
2464 <flag_option_def>: Change return type of var_address_cb_ to bool*.
2465 * cli/cli-setshow.c (do_set_command): Cast to bool* instead of int*.
2466 (get_setshow_command_value_string): Likewise.
2467 * cli/cli-style.c (cli_styling): Change to bool.
2468 (source_styling): Likewise.
2469 * cli/cli-style.h (source_styling): Likewise.
2470 (cli_styling): Likewise.
2471 * cli/cli-utils.h (struct qcs_flags) <quiet, cont, silent>: Change
2472 to bool.
2473 * command.h (var_types): Update comment.
2474 (add_setshow_boolean_cmd): Change int* var argument to bool*.
2475 * compile/compile-cplus-types.c (debug_compile_cplus_types): Change to
2476 bool.
2477 (debug_compile_cplus_scopes): Likewise.
2478 * compile/compile-internal.h (compile_debug): Likewise.
2479 * compile/compile.c (compile_debug): Likewise.
2480 (struct compile_options) <raw>: Likewise.
2481 * cp-support.c (catch_demangler_crashes): Likewise.
2482 * cris-tdep.c (usr_cmd_cris_version_valid): Likewise.
2483 (usr_cmd_cris_dwarf2_cfi): Likewise.
2484 * csky-tdep.c (csky_debug): Likewise.
2485 * darwin-nat.c (enable_mach_exceptions): Likewise.
2486 * dcache.c (dcache_enabled_p): Likewise.
2487 * defs.h (info_verbose): Likewise.
2488 * demangle.c (demangle): Likewise.
2489 (asm_demangle): Likewise.
2490 * dwarf-index-cache.c (debug_index_cache): Likewise.
2491 * dwarf2-frame.c (dwarf2_frame_unwinders_enabled_p): Likewise.
2492 * dwarf2-frame.h (dwarf2_frame_unwinders_enabled_p): Likewise.
2493 * dwarf2read.c (check_physname): Likewise.
2494 (use_deprecated_index_sections): Likewise.
2495 (dwarf_always_disassemble): Likewise.
2496 * eval.c (overload_resolution): Likewise.
2497 * event-top.c (set_editing_cmd_var): Likewise.
2498 (exec_done_display_p): Likewise.
2499 * event-top.h (set_editing_cmd_var): Likewise.
2500 (exec_done_display_p): Likewise.
2501 * exec.c (write_files): Likewise.
2502 * fbsd-nat.c (debug_fbsd_lwp): Likewise
2503 (debug_fbsd_nat): Likewise.
2504 * frame.h (struct frame_print_options) <print_raw_frame_arguments>:
2505 Likewise.
2506 (struct set_backtrace_options) <backtrace_past_main>: Likewise.
2507 <backtrace_past_entry> Likewise.
2508 * gdb-demangle.h (demangle): Likewise.
2509 (asm_demangle): Likewise.
2510 * gdb_bfd.c (bfd_sharing): Likewise.
2511 * gdbcore.h (write_files): Likewise.
2512 * gdbsupport/common-debug.c (show_debug_regs): Likewise.
2513 * gdbsupport/common-debug.h (show_debug_regs): Likewise.
2514 * gdbthread.h (print_thread_events): Likewise.
2515 * gdbtypes.c (opaque_type_resolution): Likewise.
2516 (strict_type_checking): Likewise.
2517 * gnu-nat.c (gnu_debug_flag): Likewise.
2518 * guile/scm-auto-load.c (auto_load_guile_scripts): Likewise.
2519 * guile/scm-param.c (pascm_variable): Add boolval.
2520 (add_setshow_generic): Update.
2521 (pascm_param_value): Update.
2522 (pascm_set_param_value_x): Update.
2523 * hppa-tdep.c (hppa_debug): Change to bool..
2524 * infcall.c (may_call_functions_p): Likewise.
2525 (coerce_float_to_double_p): Likewise.
2526 (unwind_on_signal_p): Likewise.
2527 (unwind_on_terminating_exception_p): Likewise.
2528 * infcmd.c (startup_with_shell): Likewise.
2529 * inferior.c (print_inferior_events): Likewise.
2530 * inferior.h (startup_with_shell): Likewise.
2531 (print_inferior_events): Likewise.
2532 * infrun.c (step_stop_if_no_debug): Likewise.
2533 (detach_fork): Likewise.
2534 (debug_displaced): Likewise.
2535 (disable_randomization): Likewise.
2536 (non_stop): Likewise.
2537 (non_stop_1): Likewise.
2538 (observer_mode): Likewise.
2539 (observer_mode_1): Likewise.
2540 (set_observer_mode): Update.
2541 (sched_multi): Change to bool.
2542 * infrun.h (debug_displaced): Likewise.
2543 (sched_multi): Likewise.
2544 (step_stop_if_no_debug): Likewise.
2545 (non_stop): Likewise.
2546 (disable_randomization): Likewise.
2547 * linux-tdep.c (use_coredump_filter): Likewise.
2548 (dump_excluded_mappings): Likewise.
2549 * linux-thread-db.c (auto_load_thread_db): Likewise.
2550 (check_thread_db_on_load): Likewise.
2551 * main.c (captured_main_1): Update.
2552 * maint-test-options.c (struct test_options_opts) <flag_opt, xx1_opt,
2553 xx2_opt, boolean_opt>: Change to bool.
2554 * maint-test-settings.c (maintenance_test_settings_boolean): Likewise.
2555 * maint.c (maintenance_profile_p): Likewise.
2556 (per_command_time): Likewise.
2557 (per_command_space): Likewise.
2558 (per_command_symtab): Likewise.
2559 * memattr.c (inaccessible_by_default): Likewise.
2560 * mi/mi-main.c (mi_async): Likewise.
2561 (mi_async_1): Likewise.
2562 * mips-tdep.c (mips64_transfers_32bit_regs_p): Likewise.
2563 * nat/fork-inferior.h (startup_with_shell): Likewise.
2564 * nat/linux-namespaces.c (debug_linux_namespaces): Likewise.
2565 * nat/linux-namespaces.h (debug_linux_namespaces): Likewise.
2566 * nios2-tdep.c (nios2_debug): Likewise.
2567 * or1k-tdep.c (or1k_debug): Likewise.
2568 * parse.c (parser_debug): Likewise.
2569 * parser-defs.h (parser_debug): Likewise.
2570 * printcmd.c (print_symbol_filename): Likewise.
2571 * proc-api.c (procfs_trace): Likewise.
2572 * python/py-auto-load.c (auto_load_python_scripts): Likewise.
2573 * python/py-param.c (union parmpy_variable): Add "bool boolval" field.
2574 (set_parameter_value): Update.
2575 (add_setshow_generic): Update.
2576 * python/py-value.c (copy_py_bool_obj): Change argument from int*
2577 to bool*.
2578 * python/python.c (gdbpy_parameter_value): Cast to bool* instead of
2579 int*.
2580 * ravenscar-thread.c (ravenscar_task_support): Change to bool.
2581 * record-btrace.c (record_btrace_target::store_registers): Update.
2582 * record-full.c (record_full_memory_query): Change to bool.
2583 (record_full_stop_at_limit): Likewise.
2584 * record-full.h (record_full_memory_query): Likewise.
2585 * remote-notif.c (notif_debug): Likewise.
2586 * remote-notif.h (notif_debug): Likewise.
2587 * remote.c (use_range_stepping): Likewise.
2588 (interrupt_on_connect): Likewise.
2589 (remote_break): Likewise.
2590 * ser-tcp.c (tcp_auto_retry): Likewise.
2591 * ser-unix.c (serial_hwflow): Likewise.
2592 * skip.c (debug_skip): Likewise.
2593 * solib-aix.c (solib_aix_debug): Likewise.
2594 * spu-tdep.c (spu_stop_on_load_p): Likewise.
2595 (spu_auto_flush_cache_p): Likewise.
2596 * stack.c (struct backtrace_cmd_options) <full, no_filters, hide>:
2597 Likewise.
2598 (struct info_print_options) <quiet>: Likewise.
2599 * symfile-debug.c (debug_symfile): Likewise.
2600 * symfile.c (auto_solib_add): Likewise.
2601 (separate_debug_file_debug): Likewise.
2602 * symfile.h (auto_solib_add): Likewise.
2603 (separate_debug_file_debug): Likewise.
2604 * symtab.c (basenames_may_differ): Likewise.
2605 (struct filename_partial_match_opts) <dirname, basename>: Likewise.
2606 (struct info_print_options) <quiet, exclude_minsyms>: Likewise.
2607 (struct info_types_options) <quiet>: Likewise.
2608 * symtab.h (demangle): Likewise.
2609 (basenames_may_differ): Likewise.
2610 * target-dcache.c (stack_cache_enabled_1): Likewise.
2611 (code_cache_enabled_1): Likewise.
2612 * target.c (trust_readonly): Likewise.
2613 (may_write_registers): Likewise.
2614 (may_write_memory): Likewise.
2615 (may_insert_breakpoints): Likewise.
2616 (may_insert_tracepoints): Likewise.
2617 (may_insert_fast_tracepoints): Likewise.
2618 (may_stop): Likewise.
2619 (auto_connect_native_target): Likewise.
2620 (target_stop_and_wait): Update.
2621 (target_async_permitted): Change to bool.
2622 (target_async_permitted_1): Likewise.
2623 (may_write_registers_1): Likewise.
2624 (may_write_memory_1): Likewise.
2625 (may_insert_breakpoints_1): Likewise.
2626 (may_insert_tracepoints_1): Likewise.
2627 (may_insert_fast_tracepoints_1): Likewise.
2628 (may_stop_1): Likewise.
2629 * target.h (target_async_permitted): Likewise.
2630 (may_write_registers): Likewise.
2631 (may_write_memory): Likewise.
2632 (may_insert_breakpoints): Likewise.
2633 (may_insert_tracepoints): Likewise.
2634 (may_insert_fast_tracepoints): Likewise.
2635 (may_stop): Likewise.
2636 * thread.c (struct info_threads_opts) <show_global_ids>: Likewise.
2637 (make_thread_apply_all_options_def_group): Change argument from int*
2638 to bool*.
2639 (thread_apply_all_command): Update.
2640 (print_thread_events): Change to bool.
2641 * top.c (confirm): Likewise.
2642 (command_editing_p): Likewise.
2643 (history_expansion_p): Likewise.
2644 (write_history_p): Likewise.
2645 (info_verbose): Likewise.
2646 * top.h (confirm): Likewise.
2647 (history_expansion_p): Likewise.
2648 * tracepoint.c (disconnected_tracing): Likewise.
2649 (circular_trace_buffer): Likewise.
2650 * typeprint.c (print_methods): Likewise.
2651 (print_typedefs): Likewise.
2652 * utils.c (debug_timestamp): Likewise.
2653 (sevenbit_strings): Likewise.
2654 (pagination_enabled): Likewise.
2655 * utils.h (sevenbit_strings): Likewise.
2656 (pagination_enabled): Likewise.
2657 * valops.c (overload_resolution): Likewise.
2658 * valprint.h (struct value_print_options) <prettyformat_arrays,
2659 prettyformat_structs, vtblprint, unionprint, addressprint, objectprint,
2660 stop_print_at_null, print_array_indexes, deref_ref, static_field_print,
2661 pascal_static_field_print, raw, summary, symbol_print, finish_print>:
2662 Likewise.
2663 * windows-nat.c (new_console): Likewise.
2664 (cygwin_exceptions): Likewise.
2665 (new_group): Likewise.
2666 (debug_exec): Likewise.
2667 (debug_events): Likewise.
2668 (debug_memory): Likewise.
2669 (debug_exceptions): Likewise.
2670 (useshell): Likewise.
2671 * windows-tdep.c (maint_display_all_tib): Likewise.
2672 * xml-support.c (debug_xml): Likewise.
2673
f1b620e9
MG
26742019-09-17 Mike Gulick <mgulick@mathworks.com>
2675
2676 * source.c (prepare_path_for_appending): New function.
2677 (openp): Make use of new function.
2678 (find_and_open_source): Search for the compilation directory and
2679 source file as a relative path beneath the directory search path.
2680
67f3ed6a
AB
26812019-09-17 Andrew Burgess <andrew.burgess@embecosm.com>
2682
2683 * source-cache.c (source_cache::get_line_charpos): Catch
2684 exceptions and return false, this matches the behaviour documented
2685 in the header file.
2686
74332189
JB
26872019-09-17 Joel Brobecker <brobecker@adacore.com>
2688
2689 * ada-tasks.c (info_task): Remove quoting of the task's name.
2690
f2f24aa9
CB
26912019-09-16 Christian Biesinger <cbiesinger@google.com>
2692
2693 * symfile.c (auto_solib_add): Replace comment with a reference
2694 to the header file.
2695
6a062a93
CB
26962019-09-14 Christian Biesinger <cbiesinger@google.com>
2697
2698 * NEWS: Mention that gdb can now be compiled with Python 3
2699 on Windows.
2700
ec6c8338
AB
27012019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
2702
2703 * maint.c (maint_print_section_data::maint_print_section_data):
2704 Force use of 'float log10 (float)' by casting the argument to
2705 float.
2706
aa17805f
AB
27072019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
2708
2709 * maint.c: Add 'cmath' include.
2710 (struct maint_print_section_data): New structure.
2711 (print_section_index): New function.
2712 (print_bfd_section_info): Add header comment, small whitespace
2713 cleanup, and update to call new print_section_index function.
2714 (print_objfile_section_info): Likewise.
2715 (maint_obj_section_from_bfd_section): New function.
2716 (print_bfd_section_info_maybe_relocated): New function.
2717 (maintenance_info_sections): Add header comment, always use
2718 bfd_map_over_sections instead of ALL_OBJFILE_OSECTIONS.
2719
3dd9bb46
AB
27202019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
2721
2722 * psymtab.c (find_pc_sect_psymtab): Move baseaddr local into more
2723 inner scope, add check that the objfile has psymtabs before
2724 checking psymtabs_addrmap.
2725 * psymtab.h (psymtab_storage) <psymtabs_addrmap>: Extend comment.
2726
4993045d
PW
27272019-09-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2728
2729 * NEWS: Announce that Ada task names are now shown at more places,
2730 and between quotes (except in info task output).
2731 * gdb/ada-tasks.c (task_to_str): New function.
2732 (display_current_task_id): Call task_to_str.
2733 (task_command_1): Likewise.
2734 (print_ada_task_info): In non-mi mode, Properly align headers and data
2735 when task-id length is > 9 (9 is the default for a 32 bits CORE_ADDR).
2736
7a289707
RO
27372019-09-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2738
2739 * procfs.c (procfs_target::wait) <PR_FAULTED>: Get signal from
2740 prstatus.pr_lwp.pr_info instead of making it up.
2741
f2aec7f6
CB
27422019-09-11 Christian Biesinger <cbiesinger@google.com>
2743
2744 * auto-load.c (auto_load_expand_dir_vars): Update.
2745 * defs.h (gdb_datadir): Change to std::string.
2746 (python_libdir): Likewise.
2747 (relocate_gdb_directory): Change return type to std::string.
2748 * guile/guile.c (gdbscm_data_directory): Update.
2749 (initialize_scheme_side): Update.
2750 * jit.c (jit_reader_dir): Change to std::string.
2751 (jit_reader_load_command): Update.
2752 * main.c (gdb_datadir): Change to std::string.
2753 (python_libdir): Likewise.
2754 (set_gdb_data_directory): Update.
2755 (relocate_path): Change to return std::string.
2756 (relocate_gdb_directory): Change to return std::string.
2757 (relocate_gdbinit_path_maybe_in_datadir): Update.
2758 (captured_main_1): Update.
2759 * python/python.c (do_start_initialization): Update.
2760 * top.c (show_gdb_datadir): Update.
2761 * xml-syscall.c (xml_init_syscalls_info): Update.
2762 (init_syscalls_info): Update.
2763
9224a013
CB
27642019-09-11 Christian Biesinger <cbiesinger@google.com>
2765
2766 * main.c (relocate_gdbinit_path_maybe_in_datadir): Factor this code
2767 out of get_init_files.
2768 (get_init_files): Update.
2769
f48cd836
CB
27702019-09-11 Christian Biesinger <cbiesinger@google.com>
2771
2772 * main.c (get_init_files): Change to use std::string.
2773 (captured_main_1): Update.
2774 (print_gdb_help): Update.
2775
9cab7ecd
AT
27762019-09-11 Ali Tamur <tamur@google.com>
2777
2778 *gdb/target-float.c (host_float_ops<T>::to_longest): Update
2779 implementation.
2780
67547d89
CB
27812019-09-11 Christian Biesinger <cbiesinger@google.com>
2782
2783 * dbxread.c (read_dbx_symtab): Update.
2784 * dwarf2read.c (load_partial_dies): Update.
2785 * mdebugread.c (parse_partial_symbols): Update.
2786 (handle_psymbol_enumerators): Update.
2787 * psympriv.h (add_psymbol_to_list): Change type of copy_names to bool.
2788 * psymtab.c (add_psymbol_to_bcache): Likewise.
2789 (add_psymbol_to_list): Likewise.
2790 * symtab.c (symbol_set_names): Likewise.
2791 * symtab.h (symbol_set_names): Likewise.
2792 * xcoffread.c (scan_xcoff_symtab): Update.
2793
64b2d4a0
TT
27942019-09-11 Tom Tromey <tom@tromey.com>
2795
2796 * symfile-mem.c (symbol_file_add_from_memory): Use
2797 bfd_set_filename.
2798 * solib-darwin.c (darwin_bfd_open): Use bfd_set_filename.
2799 * solib-aix.c (solib_aix_bfd_open): Use bfd_set_filename.
2800
3b00ef10
TT
28012019-09-10 Tom Tromey <tromey@adacore.com>
2802
2803 * dwarf-index-write.c (write_psymbols): Extend error message.
2804 (debug_names::insert): Add Ada code.
2805 (debug_names::write_psymbols): Remove Ada check.
2806 (debug_names) <m_string_obstack>: New member.
2807 * dwarf2read.c (gdb_index_symbol_name_matcher): Remove.
2808 (gdb_index_symbol_name_matcher::matches): Remove.
2809 (mapped_index_base::find_name_components_bounds): Add "lang"
2810 parameter.
2811 (mapped_index_base::build_name_components): Also split names
2812 according to Ada syntax.
2813 (dw2_expand_symtabs_matching_symbol): Loop over languages. Change
2814 type of "match_callback".
2815 (check_match, check_find_bounds_finds)
2816 (dw2_expand_symtabs_matching): Update.
2817 (dw2_debug_names_iterator): Add new constructor.
2818 (dw2_debug_names_map_matching_symbols): New function.
2819 (dw2_debug_names_expand_symtabs_matching): Update.
2820 (dwarf2_debug_names_functions): Use
2821 dw2_debug_names_map_matching_symbols.
2822
aa391654
TT
28232019-09-10 Tom Tromey <tromey@adacore.com>
2824
2825 * dwarf2read.c (dw2_get_file_names_reader): Add the
2826 CU's file name to the results.
2827
b054970d
TT
28282019-09-10 Tom Tromey <tromey@adacore.com>
2829
2830 * ada-lang.c (add_nonlocal_symbols): Combine calls to
2831 map_matching_symbols. Update.
2832 * dwarf2read.c (dw2_map_matching_symbols): Update.
2833 * psymtab.c (match_partial_symbol): Change type; update.
2834 (psym_map_matching_symbols): Likewise.
2835 * symfile-debug.c (debug_qf_map_matching_symbols): Change
2836 type; update.
2837 * symfile.h (struct quick_symbol_functions)
2838 <map_matching_symbols>: Change "name" to be a lookup_name_info.
2839 Remove "match".
2840
6a3dbf1b
TT
28412019-09-10 Tom Tromey <tromey@adacore.com>
2842
2843 * psymtab.c (map_block): Remove.
2844 (psym_map_matching_symbols): Use iterate_over_symbols_terminated.
2845 * symtab.c (iterate_over_symbols_terminated): New function.
2846 * symtab.c (iterate_over_symbols_terminated): Declare.
2847
6969f124
TT
28482019-09-10 Tom Tromey <tromey@adacore.com>
2849
2850 * ada-lang.c (ada_iterate_over_symbols): Return bool.
2851 * language.h (struct language_defn) <la_iterate_over_symbols>:
2852 Return bool.
2853 * symtab.c (iterate_over_symbols): Return bool.
2854 * symtab.h (iterate_over_symbols): Return bool.
2855
199b4314
TT
28562019-09-10 Tom Tromey <tromey@adacore.com>
2857
2858 * ada-lang.c (aux_add_nonlocal_symbols): Change type.
2859 (add_nonlocal_symbols): Update.
2860 * dwarf2read.c (dw2_map_matching_symbols): Change type.
2861 * psymtab.c (map_block, psym_map_matching_symbols): Change type.
2862 * symfile-debug.c (debug_qf_map_matching_symbols): Change type.
2863 * symfile.h (struct quick_symbol_functions) <map_matching_symbols>:
2864 Change type of "callback". Remove "data".
2865
a084a2a6
AT
2866
28672019-09-09 Ali Tamur <tamur@google.com>
2868
2869 * dwarf2read.c (comp_unit_head): Update comment.
2870 (dwarf2_dwo_name): New function declaration.
2871 (dwarf_unit_type_name): New function declaration.
2872 (read_comp_unit_head): Add support for new compilation units,
2873 DW_UT_partial, DW_UT_skeleton, DW_UT_split_compile, DW_UT_split_type.
2874 Particularly, DW_UT_skeleton and DW_UT_split_compile have dwo_id
2875 (currently named as "signature") in their header. Also clarify error
2876 messages.
2877 (lookup_dwo_id): New function. Returns the dwo id of the given
2878 compile unit.
2879 (lookup_dwo_unit): Use the new lookup_dwo_id function.
2880 (init_cutu_and_read_dies): Use the new dwarf2_dwo_name and lookup_dwo_id
2881 functions.
2882 (create_dwo_cu_reader): Use the added lookup_dwo_id function.
2883 (dwarf2_dwo_name): Get the dwo name if present.
2884 (dwarf_unit_type_name): Convert DW_UT_* types to string for diagnostic
2885 purposes.
2886
25a2915e
TT
28872019-09-09 Tom Tromey <tom@tromey.com>
2888
2889 * tui/tui-win.c (tui_all_windows_info): Use ui_out.
2890
e4df0874
PW
28912019-09-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2892
2893 * python/python.c (do_start_initialization): Make progname_copy static,
2894 to avoid a leak report.
2895
8634b462
TT
28962019-09-08 Tom Tromey <tom@tromey.com>
2897
2898 * tui/tui-wingeneral.c (box_win): Truncate long window titles.
2899
c7f839cb
SM
29002019-09-07 Simon Marchi <simon.marchi@efficios.com>
2901
2902 * dwarf2read.c (struct dw2_symtab_iterator) <block_index>:
2903 Change type to gdb::optional<block_enum>.
2904 (dw2_symtab_iter_init): Change block_index parameter type
2905 to gdb::optional<block_enum>.
2906 (dw2_lookup_symbol): Change block_index parameter
2907 type to block_enum.c
2908 (dw2_debug_names_lookup_symbol): Likewise.
2909 * psymtab.c (psym_lookup_symbol): Likewise.
2910 * symfile-debug.c (debug_qf_lookup_symbol): Likewise.
2911 * symfile.h (struct quick_symbol_functions) <lookup_symbol>:
2912 Likewise.
2913
ead0e69a
CB
29142019-09-06 Christian Biesinger <cbiesinger@google.com>
2915
2916 * defs.h (relocate_gdb_directory): Change int to bool in
2917 signature and rename flag to relocatable.
2918 * main.c (relocate_path): Likewise.
2919 (relocate_gdb_directory): Likewise.
2920
b16c44de
AM
29212019-09-06 Alan Modra <amodra@gmail.com>
2922
2923 * coffread.c (coff_symfile_read): Constify filename variable.
2924 * dbxread.c (dbx_symfile_init, coffstab_build_psymtabs),
2925 (elfstab_build_psymtabs, stabsect_build_psymtabs): Likewise.
2926 * gdb_bfd.c (gdb_bfd_close_or_warn): Likewise.
2927 * solib.c (reload_shared_libraries_1): Likewise.
2928 * symfile.c (reread_symbols): Likewise.
2929 * solib-aix.c (solib_aix_bfd_open): Add cast for xfree of filename.
2930 * solib-darwin.c (darwin_bfd_open): Likewise.
2931 * symfile-mem.c (symbol_file_add_from_memory): Likewise.
2932
06ff036e
AB
29332019-09-03 Andrew Burgess <andrew.burgess@embecosm.com>
2934
2935 * psymtab.c (print_partial_symbols): Handle missing domain_enum
2936 values MODULE_DOMAIN and COMMON_BLOCK_DOMAIN.
2937
4e962e74
TT
29382019-09-03 Tom Tromey <tromey@adacore.com>
2939
2940 * ada-valprint.c (ada_val_print_num): Don't recurse for range
2941 types.
2942 (has_negatives): Unbias a range type bound.
2943 * dwarf2read.c (read_subrange_type): Handle DW_AT_GNU_bias.
2944 * gdbtypes.c (operator==): Handle new field.
2945 (create_range_type): Add "bias" parameter.
2946 (create_static_range_type, resolve_dynamic_range): Update.
2947 * gdbtypes.h (struct range_bounds) <bias>: New member.
2948 (create_range_type): Add bias parameter.
2949 * printcmd.c (print_scalar_formatted): Unbias range types.
2950 * value.c (unpack_long): Unbias range types.
2951 (pack_long): Bias range types.
2952
d90b8f26
AH
29532019-09-02 Alan Hayward <alan.hayward@arm.com>
2954
2955 * solib-svr4.c (svr4_find_and_create_probe_breakpoints): Check all
2956 probe arguments.
2957
fe01123e
AH
29582019-09-02 Alan Hayward <alan.hayward@arm.com>
2959
2960 * break-catch-throw.c (fetch_probe_arguments): Use gdbarch.
2961 * dtrace-probe.c (dtrace_probe::get_argument_count): Likewise.
2962 * probe.c (probe_safe_evaluate_at_pc) (compute_probe_arg)
2963 (compile_probe_arg): Likewise.
2964 * probe.h (get_argument_count): Likewise.
2965 * solib-svr4.c (solib_event_probe_action): Likewise.
2966 * stap-probe.c (stap_probe::get_argument_count): Likewise.
2967
e661ef01
AH
29682019-09-02 Alan Hayward <alan.hayward@arm.com>
2969
2970 * solib-svr4.c (svr4_find_and_create_probe_breakpoints): Move
2971 code to here...
2972 (svr4_create_solib_event_breakpoints): ...from here.
2973
47a536d9
SDJ
29742019-08-30 Sergio Durigan Junior <sergiodj@redhat.com>
2975
2976 * nat/fork-inferior.c (trace_start_error): Remove "\nError: "
2977 suffix from warning message.
2978
d6a00eba
TT
29792019-08-30 Tom Tromey <tom@tromey.com>
2980
2981 * tui/tui-winsource.h (struct tui_source_window_base)
2982 <refresh_all>: Don't declare.
2983 * tui/tui-winsource.c (tui_source_window_base::refresh_all):
2984 Remove.
2985 * tui/tui-win.c (tui_refresh_all_win): Don't call refresh_all or
2986 tui_show_locator_content.
2987 * tui/tui-regs.h (struct tui_data_window) <refresh_all>: Don't
2988 declare.
2989 * tui/tui-regs.c (tui_data_window::refresh_all): Remove.
2990 * tui/tui-data.h (struct tui_win_info) <refresh_all>: Don't
2991 declare.
2992
55b2657b
TT
29932019-08-30 Tom Tromey <tom@tromey.com>
2994
2995 * tui/tui-io.c (tui_cont_sig): Don't call wrefresh.
2996
12a8555a
TT
29972019-08-30 Tom Tromey <tom@tromey.com>
2998
2999 * tui/tui-stack.c (_initialize_tui_stack): Move later.
3000 Remove unnecessary forward declarations.
3001
900ac242
TT
30022019-08-30 Tom Tromey <tom@tromey.com>
3003
3004 * tui/tui-stack.c (tui_locator_window::set_locator_fullname): Call
3005 rerender.
3006 (tui_update_locator_fullname, tui_show_frame_info): Don't call
3007 tui_show_locator_content.
3008
99ab33fb
TT
30092019-08-30 Tom Tromey <tom@tromey.com>
3010
3011 * tui/tui-stack.c (tui_show_locator_content): Move lower. Rewrite.
3012 (tui_locator_window::rerender): Rewrite using body of previous
3013 tui_show_locator_content.
3014
e594a5d1
TT
30152019-08-30 Tom Tromey <tom@tromey.com>
3016
3017 * tui/tui-stack.h (struct tui_locator_window) <set_locator_info,
3018 set_locator_fullname>: New methods.
3019 * tui/tui-stack.c (tui_locator_window::set_locator_fullname):
3020 Rename from tui_set_locator_fullname.
3021 (tui_locator_window::set_locator_info): Rename from
3022 tui_set_locator_info. Return bool.
3023 (tui_update_locator_fullname, tui_show_frame_info): Update.
3024
715bb467
TT
30252019-08-30 Tom Tromey <tom@tromey.com>
3026
3027 * tui/tui-layout.c (show_layout): Don't call tui_refresh_all.
3028
772f3f03
TT
30292019-08-30 Tom Tromey <tom@tromey.com>
3030
3031 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Don't
3032 call touchwin.
3033
108e13ab
TT
30342019-08-30 Tom Tromey <tom@tromey.com>
3035
3036 * tui/tui-wingeneral.c (box_win): Assume win_info and
3037 win_info->handle cannot be NULL.
3038
cdaa6eb4
TT
30392019-08-30 Tom Tromey <tom@tromey.com>
3040
3041 * tui/tui-regs.h (struct tui_data_item_window) <rerender,
3042 refresh_window>: Declare.
3043 * tui/tui-regs.c (tui_data_window::display_registers_from): Call
3044 resize.
3045 (tui_data_item_window::rerender): Rename from
3046 tui_display_register.
3047 (tui_data_item_window::refresh_window): New method.
3048 * tui/tui-layout.c (tui_gen_win_info::resize): Do nothing on
3049 no-op.
3050
89df7f90
TT
30512019-08-30 Tom Tromey <tom@tromey.com>
3052
3053 * tui/tui-regs.h (struct tui_data_window) <regs_content,
3054 regs_column_count, current_group>: Move later. Now private.
3055 <get_current_group>: New method.
3056 * tui/tui-regs.c (tui_reg_command): Update.
3057 * tui/tui-layout.c (tui_set_layout): Update.
3058
1bf2866a
TT
30592019-08-30 Tom Tromey <tom@tromey.com>
3060
3061 * tui/tui-regs.c (tui_data_window::display_registers_from_line)
3062 (tui_data_window::rerender): Don't call
3063 check_and_display_highlight_if_needed.
3064 (tui_data_window::refresh_all): Remove call to
3065 erase_data_content.
3066
0670413d
TT
30672019-08-30 Tom Tromey <tom@tromey.com>
3068
3069 * tui/tui-regs.c (tui_data_window::last_regs_line_no)
3070 (tui_data_window::display_registers_from)
3071 (tui_data_window::display_reg_element_at_line)
3072 (tui_data_window::display_registers_from_line): Remove checks of
3073 "empty".
3074
18bb55c7
TT
30752019-08-30 Tom Tromey <tom@tromey.com>
3076
3077 * tui/tui-regs.h (struct tui_data_window) <display_all_data>:
3078 Don't declare.
3079 * tui/tui-regs.c (tui_data_window::show_registers): Call
3080 rerender.
3081 (tui_data_window::rerender): Rename from display_all_data.
3082 (tui_data_window::rerender): Remove old implementation.
3083
1f6d2f10
TT
30842019-08-30 Tom Tromey <tom@tromey.com>
3085
3086 * tui/tui-regs.c (tui_data_window::display_all_data): Change
3087 text.
3088 * tui/tui-data.h (NO_DATA_STRING): Remove define.
3089
16d01f9c
BW
30902019-08-29 Bernhard Wodok <barto@gmx.net>
3091 Sergio Durigan Junior <sergiodj@redhat.com>
3092
3093 PR win32/24284
3094 * mingw-hdep.c (gdb_select): Handle case when 'n' is zero.
3095
d8f27c60
AB
30962019-08-28 Andrew Burgess <andrew.burgess@embecosm.com>
3097
3098 * symtab.c (search_symbols): Don't include MODULE_DOMAIN symbols
3099 when searching for types.
3100
1f20c35e
AB
31012019-08-28 Andrew Burgess <andrew.burgess@embecosm.com>
3102
3103 * f-lang.c (f_language_defn): Use f_print_typedef.
3104 * f-lang.h (f_print_typedef): Declare.
3105 * f-typeprint.c (f_print_typedef): Define.
3106
550105b7
CB
31072019-08-27 Christian Biesinger <cbiesinger@google.com>
3108
3109 * nat/linux-namespaces.c (mnsh_main): Initialize fd (to -1).
3110
4acfdd20
AB
31112019-08-27 Andrew Burgess <andrew.burgess@embecosm.com>
3112
3113 * cli/cli-utils.c (info_print_options_defs): Delete.
3114 (make_info_print_options_def_group): Delete.
3115 (extract_info_print_options): Delete.
3116 (info_print_command_completer): Delete.
3117 (info_print_args_help): Add extra parameter, and optionally
3118 include text about -n flag.
3119 * cli/cli-utils.h (struct info_print_options): Delete.
3120 (extract_info_print_options): Delete declaration.
3121 (info_print_command_completer): Delete declaration.
3122 (info_print_args_help): Add extra parameter, extend header
3123 comment.
3124 * python/python.c (gdbpy_rbreak): Pass additional parameter to
3125 search_symbols.
3126 * stack.c (struct info_print_options): New type.
3127 (info_print_options_defs): New file scoped variable.
3128 (make_info_print_options_def_group): New static function.
3129 (info_print_command_completer): New static function.
3130 (info_locals_command): Update to use new local functions.
3131 (info_args_command): Likewise.
3132 (_initialize_stack): Add extra parameter to calls to
3133 info_print_args_help.
3134 * symtab.c (search_symbols): Add extra parameter, use this to
3135 possibly excluse non-debug symbols.
3136 (symtab_symbol_info): Add extra parameter, which is passed on to
3137 search_symbols.
3138 (struct info_print_options): New type.
3139 (info_print_options_defs): New file scoped variable.
3140 (make_info_print_options_def_group): New static function.
3141 (info_print_command_completer): New static function.
3142 (info_variables_command): Update to use local functions, and pass
3143 extra parameter through to symtab_symbol_info.
3144 (info_functions_command): Likewise.
3145 (info_types_command): Pass additional argument through to
3146 symtab_symbol_info.
3147 (rbreak_command): Pass extra argument to search_symbols.
3148 (_initialize_symtab): Add extra arguments for calls to
3149 info_print_args_help, and update help text for 'info variables',
3150 'whereis', and 'info functions' commands.
3151 * symtab.h (search_symbols): Add extra argument to declaration.
3152 * NEWS: Mention new flags.
3153
9aa55206
CB
31542019-08-26 Christian Biesinger <cbiesinger@google.com>
3155
3156 * symtab.c (lookup_static_symbol): Call the new function (and move
3157 it down to be next to lookup_global_symbol).
3158 (struct global_sym_lookup_data): Add block_enum member and rename to...
3159 (struct global_or_static_sym_lookup_data): ...this.
3160 (lookup_symbol_global_iterator_cb): Pass block_index instead of
3161 GLOBAL_BLOCK to lookup_symbol_in_objfile and rename to...
3162 (lookup_symbol_global_or_static_iterator_cb): ...this.
3163 (lookup_global_or_static_symbol): New function.
3164 (lookup_global_symbol): Call new function.
3165
5c31b358
TV
31662019-08-26 Tom de Vries <tdevries@suse.de>
3167
3168 PR c++/24852
3169 * break-catch-throw.c (fetch_probe_arguments): Improve error mesage
3170 when pc_probe.prob == NULL.
3171
23c13d42
SM
31722019-08-25 Simon Marchi <simon.marchi@efficios.com>
3173
3174 * dwarf2read.c (dw2_debug_names_iterator::next): Rename local
3175 variable symbol_linkage to symbol_linkage_.
3176
beadd3e8
SM
31772019-08-25 Simon Marchi <simon.marchi@efficios.com>
3178
3179 * dwarf2read.c (dw2_debug_names_iterator::next): Use enum to
3180 represent whether the symbol is static, dynamic, or we don't
3181 know.
3182
e3ec872f
YS
31832019-08-25 Yoshinori Sato <ysato@users.sourceforge.jp>
3184
3185 * gdb/rx-tdep.c (rx_register_names): New.
3186 (rx_register_name): Delete.
3187 (rx_psw_type): Delete.
3188 (rx_fpsw_type): Delete.
3189 (rx_register_type): Delete.
3190 (rx_gdbarch_init): Convert target-descriptions.
3191 (_initialize_rx_tdep): Add initialize_tdesc_rx.
3192 * gdb/features/Makefile: Add rx.xml.
3193 * gdb/features/rx.xml: New.
3194 * gdb/features/rx.c: Generated.
3195 * gdb/NEWS: Mention target description support.
3196
d0509ba4
CB
31972019-08-22 Christian Biesinger <cbiesinger@google.com>
3198
3199 * symtab.c (symbol_cache_lookup): Always initialize *bsc_ptr and
3200 *slot_ptr.
3201
2d41fa11
SDJ
32022019-08-23 Sergio Durigan Junior <sergiodj@redhat.com>
3203
3204 * configure.ac: Don't check for 'dlfcn.h' (moved to
3205 gdbsupport/common.m4).
3206 * Makefile.in (COMMON_SFILES): Move 'gdb-dlfcn.c' to
3207 'gdbsupport/'.
3208 (HFILES_NO_SRCDIR): Likewise, for 'gdb-dlfcn.h'.
3209 * compile/compile-c-support.c: Include
3210 'gdbsupport/gdb-dlfcn.h'.
3211 * gdbsupport/common.m4: Check for 'dlfcn.h'.
3212 * gdb-dlfcn.c: Move to...
3213 * gdbsupport/gdb-dlfcn.c: ... here.
3214 * gdb-dlfcn.h: Move to...
3215 * gdbsupport/gdb-dlfcn.h: ... here.
3216
de8af808
SL
32172019-08-23 Sandra Loosemore <sandra@codesourcery.com>
3218
3219 * nios2-tdep.c (struct reg_value): Improve comments. Make
3220 the offset field signed.
3221
27204489
CB
32222019-08-22 Christian Biesinger <cbiesinger@google.com>
3223
3224 * python/lib/gdb/__init__.py (_execute_file): New function.
3225 * python/python.c (python_run_simple_file): Call gdb._execute_file
3226 on Windows.
3227
43771869
AB
32282019-08-22 Andrew Burgess <andrew.burgess@embecosm.com>
3229
3230 * f-exp.y (yylex): Remove is_a_field_of_this local variable, and
3231 all uses as this was never set to anything but a zero value.
3232
26c957f1
PA
32332019-08-21 Bogdan Harjoc <harjoc@gmail.com>
3234
3235 * cli/cli-cmds.c (with_command_1): Error out if no arguments.
3236
c07aae6e
CB
32372019-08-21 Christian Biesinger <cbiesinger@google.com>
3238
3239 * tui/tui-data.h (tui_gen_win_info): Add an =default
3240 move constructor, required by some GCC versions.
3241
3960cb7a
JF
32422019-08-21 Jinke Fan <fanjinke51@yeah.net>
3243
3244 * go32-nat.c (go32_sysinfo): Add hygon_p.
3245
04c72a68
TT
32462019-08-20 Tom Tromey <tom@tromey.com>
3247
3248 * tui/tui-regs.h (struct tui_data_window) <last_regs_line_no,
3249 line_from_reg_element_no, first_reg_element_no_inline,
3250 display_all_data, delete_data_content_windows,
3251 erase_data_content>: Now private.
3252
072272ce
TT
32532019-08-20 Tom Tromey <tom@tromey.com>
3254
3255 * tui/tui-wingeneral.c (box_win): Change type of highlight_flag.
3256 (tui_unhighlight_win, tui_highlight_win)
3257 (tui_win_info::make_window): Update.
3258 * tui/tui-data.h (HILITE, NO_HILITE): Remove.
3259
973961bd
TT
32602019-08-20 Tom Tromey <tom@tromey.com>
3261
3262 * tui/tui-data.h (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
3263 (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
3264 (MAX_PID_WIDTH): Move to tui-stack.c.
3265 * tui/tui-stack.c (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
3266 (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
3267 (MAX_PID_WIDTH): Move from tui-data.h.
3268
ab0e1f1a
TT
32692019-08-20 Tom Tromey <tom@tromey.com>
3270
3271 * tui/tui-wingeneral.h (tui_make_window): Don't declare.
3272 * tui/tui-wingeneral.c (box_win): Change type of win_info.
3273 (box_win): Update.
3274 (tui_gen_win_info::make_window): Rename from tui_make_window.
3275 (tui_win_info::make_window): New method.
3276 (tui_gen_win_info::make_visible): Update.
3277 * tui/tui-source.c (tui_source_window::set_contents): Update.
3278 * tui/tui-regs.c (tui_data_window::show_register_group): Update.
3279 (tui_data_window::display_registers_from): Update.
3280 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
3281 * tui/tui-data.h (struct tui_gen_win_info) <make_window>:
3282 Declare.
3283 <can_box>: Remove.
3284 <title>: Remove.
3285 (struct tui_win_info) <make_window>: Declare.
3286 <can_box>: Now virtual.
3287 <title>: New member.
3288 * tui/tui-data.c (~tui_gen_win_info): Don't free title.
3289 * tui/tui-command.c (tui_cmd_window::resize): Update.
3290
100c2bf3
TT
32912019-08-20 Tom Tromey <tom@tromey.com>
3292
3293 * tui/tui-regs.h (struct tui_data_window) <display_regs>: Remove.
3294 * tui/tui-regs.c (tui_data_window::show_registers): Update.
3295 (tui_data_window::check_register_values): Update.
3296
fa4dc567
TT
32972019-08-20 Tom Tromey <tom@tromey.com>
3298
3299 * tui/tui-regs.h (struct tui_data_window): Use
3300 DISABLE_COPY_AND_ASSIGN.
3301 <regs_content>: Change type, removing unique_ptr.
3302 <tui_data_window>: Add move constructor.
3303 * tui/tui-regs.c (tui_data_window::show_registers)
3304 (tui_data_window::show_register_group)
3305 (tui_data_window::display_registers_from)
3306 (tui_data_window::display_registers_from)
3307 (tui_data_window::first_data_item_displayed)
3308 (tui_data_window::delete_data_content_windows)
3309 (tui_data_window::rerender, tui_data_window::refresh_window)
3310 (tui_data_window::check_register_values): Update.
3311
ca02d7c8
TT
33122019-08-20 Tom Tromey <tom@tromey.com>
3313
3314 * tui/tui-regs.h (struct tui_data_window) <show_registers,
3315 show_register_group>: Declare.
3316 (tui_show_register_group): Don't declare.
3317 * tui/tui-regs.c (tui_data_window::show_registers): Rename from
3318 tui_show_registers.
3319 (tui_data_window::show_register_group): Rename from
3320 tui_show_register_group.
3321 (tui_data_window::check_register_values, tui_reg_command):
3322 Update.
3323 * tui/tui-layout.c (tui_set_layout): Update.
3324
63356bfd
TT
33252019-08-20 Tom Tromey <tom@tromey.com>
3326
3327 * tui/tui-regs.h (struct tui_data_window) <check_register_values>:
3328 Declare.
3329 (tui_check_register_values): Don't declare.
3330 * tui/tui-regs.c (tui_data_window::check_register_values): Rename
3331 from tui_check_register_values.
3332 * tui/tui-hooks.c (tui_register_changed): Update.
3333
42cc14a7
TT
33342019-08-20 Tom Tromey <tom@tromey.com>
3335
3336 * tui/tui-regs.c (tui_reg_layout): Move later.
3337 (tui_show_registers): Don't enable TUI mode or change layout.
3338
b9ad3686
TT
33392019-08-20 Tom Tromey <tom@tromey.com>
3340
3341 * tui/tui-regs.h (struct tui_data_item_window)
3342 <~tui_data_item_window>: Remove.
3343 <content>: Now a unique_xmalloc_ptr.
3344 * tui/tui-regs.c (tui_register_format): Return a
3345 unique_xmalloc_ptr.
3346 (tui_get_register): Update.
3347 (~tui_data_item_window): Remove.
3348 (tui_data_window::display_registers_from, tui_display_register):
3349 Update.
3350 * tui/tui-io.h (tui_expand_tabs): Update.
3351 * tui/tui-io.c (tui_expand_tabs): Return a unique_xmalloc_ptr.
3352 Remove "col" parameter.
3353
8e114aab
TT
33542019-08-20 Tom Tromey <tom@tromey.com>
3355
3356 * tui/tui-regs.h (struct tui_data_item_window) <value>: Remove
3357 field.
3358 * tui/tui-regs.c (~tui_data_item_window): Update.
3359
1a4f81dd
TT
33602019-08-20 Tom Tromey <tom@tromey.com>
3361
3362 * tui/tui-regs.c (tui_register_format, tui_get_register): Move
3363 earlier.
3364
0f8d8876
TT
33652019-08-20 Tom Tromey <tom@tromey.com>
3366
3367 * tui/tui-regs.c (tui_reg_command): Remove NULL check.
3368
605dc2c2
TT
33692019-08-20 Tom Tromey <tom@tromey.com>
3370
3371 * tui/tui-source.h (struct tui_source_window): Update.
3372 * tui/tui-regs.c (tui_show_registers): Update.
3373 * tui/tui-disasm.h (struct tui_disasm_window): Update.
3374 * tui/tui-data.h (NO_SRC_STRING, NO_DISASSEM_STRING)
3375 (NO_REGS_STRING): Remove defines.
3376
aedbe3bb
CM
33772019-08-20 Conrad Meyer <cem@FreeBSD.org>
3378
3379 * remote.c (remote_target::remote_btrace_maybe_reopen): Avoid
3380 unnecessary thread walk if remote doesn't support the packet.
3381
7ce8f214
TT
33822019-08-19 Tom Tromey <tromey@adacore.com>
3383
3384 * python/py-value.c (value_has_field): Fix indentation.
3385
f21c2bd7
TT
33862019-08-19 Tom Tromey <tromey@adacore.com>
3387
3388 * printcmd.c (do_one_display, info_display_command): Update.
3389 * block.h (contained_in): Return bool. Add allow_nested
3390 parameter.
3391 * block.c (contained_in): Return bool. Add allow_nested
3392 parameter.
3393
d806ea2d
TT
33942019-08-19 Tom Tromey <tom@tromey.com>
3395
3396 * configure: Rebuild.
3397 * configure.ac: Disallow the combination of -static-libstdc++ and
3398 source highlight.
3399 * source-cache.c (get_language_name): Handle rust.
3400 (source_cache::get_source_lines): Ignore highlighting exceptions.
3401
398fdd60
TT
34022019-08-16 Tom Tromey <tom@tromey.com>
3403
3404 * tui/tui.h (enum tui_win_type) <EXEC_INFO_WIN>: Remove.
3405 * tui/tui-winsource.h (struct tui_exec_info_window): Remove.
3406 (struct tui_source_window_base) <make_visible, refresh_window,
3407 resize>: Remove methods.
3408 <execution_info>: Remove field.
3409 * tui/tui-winsource.c (tui_source_window_base::do_erase_source_content)
3410 (tui_show_source_line, tui_source_window_base)
3411 (~tui_source_window_base): Update.
3412 (tui_source_window_base::resize)
3413 (tui_source_window_base::make_visible)
3414 (tui_source_window_base::refresh_window): Remove.
3415 (tui_source_window_base::update_exec_info): Update.
3416 * tui/tui-source.c (tui_source_window::set_contents): Update.
3417 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
3418
e699d331
TT
34192019-08-16 Tom Tromey <tom@tromey.com>
3420
3421 * tui/tui-hooks.c (tui_remove_hooks): Don't set
3422 deprecated_query_hook.
3423
bb01dbfc
TT
34242019-08-16 Tom Tromey <tom@tromey.com>
3425
3426 * tui/tui-winsource.c (tui_update_source_windows_with_addr)
3427 (tui_update_source_windows_with_line): Update.
3428 * tui/tui-source.h (struct tui_source_window)
3429 <show_symtab_source>: Declare.
3430 (tui_show_symtab_source): Don't declare.
3431 * tui/tui-source.c (tui_show_symtab_source): Rename from
3432 tui_show_symtab_source.
3433
81c82c4b
TT
34342019-08-16 Tom Tromey <tom@tromey.com>
3435
3436 * tui/tui-winsource.h (struct tui_source_window_base)
3437 <set_contents>: Declare.
3438 * tui/tui-winsource.c
3439 (tui_source_window_base::update_source_window_as_is): Update.
3440 * tui/tui-source.h (struct tui_source_window) <set_contents>:
3441 Declare.
3442 (tui_set_source_content): Don't declare.
3443 * tui/tui-source.c (tui_source_window::set_contents): Rename from
3444 tui_set_source_content.
3445 * tui/tui-disasm.h (struct tui_disasm_window) <set_contents>:
3446 Declare.
3447 (tui_set_disassem_content): Don't declare.
3448 * tui/tui-disasm.c (tui_disasm_window::set_contents): Rename from
3449 tui_set_disassem_content.
3450
2ddaf614
TT
34512019-08-16 Tom Tromey <tom@tromey.com>
3452
3453 * tui/tui-winsource.h (struct tui_source_window_base)
3454 <update_breakpoint_info>: Declare.
3455 (tui_update_breakpoint_info): Don't declare.
3456 * tui/tui-winsource.c (tui_source_window_base::update_source_window_as_is)
3457 (tui_update_all_breakpoint_info): Update.
3458 (tui_source_window_base::update_breakpoint_info): Rename from
3459 tui_update_breakpoint_info.
3460 (tui_source_window_base::update_exec_info): Update.
3461
017f9828
TT
34622019-08-16 Tom Tromey <tom@tromey.com>
3463
3464 * tui/tui-winsource.h (struct tui_source_window_base)
3465 <update_source_window>: Declare.
3466 (tui_update_source_window): Don't declare.
3467 * tui/tui-winsource.c
3468 (tui_source_window_base::update_source_window): Rename from
3469 tui_update_source_window.
3470 (tui_source_window_base::rerender): Update.
3471 * tui/tui-source.c (tui_source_window::maybe_update): Update.
3472 * tui/tui-disasm.c (tui_show_disassem)
3473 (tui_show_disassem_and_update_source)
3474 (tui_disasm_window::maybe_update): Update.
3475
ed8358e9
TT
34762019-08-16 Tom Tromey <tom@tromey.com>
3477
3478 * tui/tui-winsource.h (struct tui_source_window_base)
3479 <update_source_window_as_is>: Declare.
3480 (tui_update_source_window_as_is): Don't declare.
3481 * tui/tui-winsource.c (tui_update_source_window): Update
3482 (tui_source_window_base::update_source_window_as_is): Rename from
3483 tui_update_source_window_as_is.
3484 (tui_source_window_base::refill): Update.
3485 * tui/tui-source.c (tui_show_symtab_source): Update.
3486 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical):
3487 Update.
3488
20149b6b
TT
34892019-08-16 Tom Tromey <tom@tromey.com>
3490
3491 * tui/tui-winsource.h (tui_update_source_window)
3492 (tui_update_source_window_as_is): Remove "noerror" parameter.
3493 * tui/tui-winsource.c (tui_update_source_window)
3494 (tui_update_source_window_as_is): Remove "noerror" parameter.
3495 (tui_update_source_windows_with_addr)
3496 (tui_update_source_windows_with_line)
3497 (tui_source_window_base::rerender)
3498 (tui_source_window_base::refill): Update.
3499 * tui/tui-source.h (tui_set_source_content)
3500 (tui_show_symtab_source): Remove "noerror" parameter.
3501 * tui/tui-source.c (tui_set_source_content): Remove "noerror"
3502 parameter.
3503 (tui_show_symtab_source): Likewise.
3504 (tui_source_window::maybe_update): Update.
3505 * tui/tui-disasm.c (tui_show_disassem)
3506 (tui_show_disassem_and_update_source)
3507 (tui_disasm_window::do_scroll_vertical)
3508 (tui_disasm_window::maybe_update): Update.
3509
2d83e710
TT
35102019-08-16 Tom Tromey <tom@tromey.com>
3511
3512 * tui/tui.c (tui_is_window_visible): Update.
3513 * tui/tui-wingeneral.c (tui_make_window)
3514 (tui_gen_win_info::make_visible, tui_refresh_all): Update.
3515 * tui/tui-win.c (window_name_completer, tui_refresh_all_win)
3516 (tui_set_focus_command, tui_all_windows_info, update_tab_width)
3517 (tui_set_win_height_command, parse_scrolling_args): Update.
3518 * tui/tui-source.c (tui_source_window::style_changed): Update.
3519 * tui/tui-regs.c (tui_show_registers)
3520 (tui_data_window::first_data_item_displayed)
3521 (tui_data_window::delete_data_content_windows)
3522 (tui_check_register_values, tui_reg_command): Update.
3523 * tui/tui-disasm.c (tui_show_disassem): Update.
3524 * tui/tui-data.h (struct tui_gen_win_info) <is_visible>: New
3525 method.
3526 <is_visible>: Remove field.
3527 * tui/tui-data.c (tui_next_win, tui_prev_win)
3528 (tui_delete_invisible_windows): Update.
3529
d4ab829a
TT
35302019-08-16 Tom Tromey <tom@tromey.com>
3531
3532 * tui/tui-winsource.h (struct tui_source_window_base)
3533 <m_has_locator>: Remove.
3534 * tui/tui-layout.c (show_source_disasm_command, show_data)
3535 (show_source_or_disasm_and_command): Update.
3536
aa7ca1bb
AH
35372019-08-16 Alan Hayward <alan.hayward@arm.com>
3538
3539 * NEWS (Other MI changes): New subsection.
3540 * aarch64-tdep.c (aarch64_get_pc_address_flags): New function.
3541 (aarch64_gdbarch_init): Add aarch64_get_pc_address_flags.
3542 * arch-utils.c (default_get_pc_address_flags): New function.
3543 * arch-utils.h (default_get_pc_address_flags): New declaration.
3544 * gdbarch.sh: Add get_pc_address_flags.
3545 * gdbarch.c: Regenerate.
3546 * gdbarch.h: Likewise.
3547 * stack.c (print_pc): New function.
3548 (print_frame_info) (print_frame): Call print_pc.
3549
6eac171f
TV
35502019-08-16 Tom de Vries <tdevries@suse.de>
3551
3552 * maint.c (maintenance_info_sections): Also handle !ALLOBJ case using
3553 print_objfile_section_info.
3554
3df505f6
TT
35552019-08-15 Tom Tromey <tom@tromey.com>
3556
3557 * tui/tui-io.c (tui_puts_internal): Check TUI_CMD_WIN before
3558 calling update_cmdwin_start_line.
3559 * tui/tui-winsource.h (struct tui_source_window_base)
3560 <do_make_visible_with_new_height, set_new_height>: Don't declare.
3561 <rerender>: Declare.
3562 * tui/tui-winsource.c (tui_source_window_base::update_tab_width):
3563 Call rerender.
3564 (tui_source_window_base::set_new_height): Remove.
3565 (tui_source_window_base::rerender): Rename from
3566 do_make_visible_with_new_height.
3567 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Use
3568 resize method.
3569 (tui_win_info::make_invisible_and_set_new_height)
3570 (tui_win_info::make_visible_with_new_height): Remove.
3571 * tui/tui-stack.h (struct tui_locator_window) <rerender>:
3572 Declare.
3573 * tui/tui-stack.c (tui_locator_window::rerender): New method.
3574 * tui/tui-regs.h (struct tui_data_window) <set_new_height,
3575 do_make_visible_with_new_height>: Don't declare.
3576 <rerender>: Declare.
3577 * tui/tui-regs.c (tui_data_window::rerender): Rename from
3578 set_new_height.
3579 (tui_data_window::do_make_visible_with_new_height): Remove.
3580 * tui/tui-layout.c (show_source_disasm_command, show_data): Don't
3581 call tui_show_locator_content.
3582 (tui_gen_win_info::resize): Call rerender.
3583 (show_source_or_disasm_and_command): Don't call
3584 tui_show_locator_content.
3585 * tui/tui-data.h (struct tui_gen_win_info) <rerender>: New
3586 method.
3587 (struct tui_win_info) <rerender>: Declare.
3588 <set_new_height, make_invisible_and_set_new_height,
3589 make_visible_with_new_height>: Don't declare.
3590 * tui/tui-data.c (tui_win_list::rerender): New method.
3591 * tui/tui-command.h (struct tui_cmd_window)
3592 <do_make_visible_with_new_height>: Don't declare.
3593 * tui/tui-command.c
3594 (tui_cmd_window::do_make_visible_with_new_height): Remove.
3595
272560b5
TT
35962019-08-15 Tom Tromey <tromey@adacore.com>
3597
3598 * ada-exp.y (convert_char_literal): Handle "Q%c" encoding.
3599 * ada-lang.c (ada_enum_name): Likewise.
3600
08235187
CB
36012019-08-15 Christian Biesinger <cbiesinger@google.com>
3602
3603 * python/lib/gdb/__init__.py (GdbOutputFile): Rename to have a
3604 leading underscore.
3605 (GdbOutputErrorFile): Likewise.
3606 (global scope): Adjust constructor calls to GdbOutput{,Error}File
3607 accordingly.
3608 (execute_unwinders): Rename to have a leading underscore.
3609 (auto_load_packages): Likewise.
3610 (global scope): Adjust call to auto_load_packages accordingly.
3611 (GdbSetPythonDirectory): Likewise.
3612 * python/py-unwind.c (pyuw_sniffer): Call _execute_unwinders
3613 instead of execute_unwinders.
3614
db502012
TT
36152019-08-15 Tom Tromey <tom@tromey.com>
3616
3617 * tui/tui-layout.c (show_layout, show_source_disasm_command)
3618 (show_data): Don't change window visibility.
3619 (tui_gen_win_info::resize): Remove special case for command
3620 window. Use wresize, when available.
3621 (show_source_or_disasm_and_command): Don't change window
3622 visibility.
3623 * tui/tui-command.h (struct tui_cmd_window) <resize>: Declare.
3624 <make_visible>: New method.
3625 * tui/tui-command.c (tui_cmd_window::resize): New method.
3626
3891b65e
TT
36272019-08-15 Tom Tromey <tom@tromey.com>
3628
3629 * tui/tui-winsource.h (struct tui_source_window_iterator): New.
3630 (struct tui_source_windows): New.
3631 * tui/tui-winsource.c (tui_display_main): Update.
3632 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
3633 (new_height_ok, parse_scrolling_args): Update.
3634 * tui/tui-layout.c (show_layout, show_data): Update.
3635 * tui/tui-data.h (tui_source_windows, tui_clear_source_windows)
3636 (tui_add_to_source_windows): Don't declare.
3637 * tui/tui-data.c (source_windows, tui_source_windows)
3638 (tui_clear_source_windows, tui_add_to_source_windows): Remove.
3639
ee556432
TT
36402019-08-15 Tom Tromey <tom@tromey.com>
3641
3642 * tui/tui-winsource.h (struct tui_source_window_base) <resize>:
3643 Rename from reset.
3644 * tui/tui-winsource.c (tui_source_window_base::resize): Rename.
3645 * tui/tui-layout.c (show_source_disasm_command, show_data):
3646 Update.
3647 (tui_gen_win_info::resize): Rename.
3648 (show_source_or_disasm_and_command): Update.
3649 * tui/tui-data.h (struct tui_gen_win_info) <resize>: Rename from
3650 reset.
3651
46f438e3
TT
36522019-08-15 Tom Tromey <tom@tromey.com>
3653
3654 * tui/tui-stack.c (tui_initialize_static_data): Remove.
3655 * tui/tui-interp.c (tui_interp::init): Don't call
3656 tui_initialize_static_data.
3657 * tui/tui-data.h (tui_initialize_static_data): Don't declare.
3658
f4ce562c
TT
36592019-08-15 Tom Tromey <tom@tromey.com>
3660
3661 * tui/tui-layout.c (tui_default_win_viewport_height): Don't
3662 examine tui_win_list.
3663
c398c3d0
TT
36642019-08-15 Tom Tromey <tom@tromey.com>
3665
3666 * tui/tui-winsource.h (tui_clear_source_content): Don't declare.
3667 * tui/tui-winsource.c (tui_update_source_window_as_is): Don't call
3668 tui_clear_source_content.
3669 (tui_clear_source_content): Remove.
3670 (tui_source_window_base::do_erase_source_content): Hoist call to
3671 content.clear().
3672 * tui/tui-stack.c (tui_show_frame_info): Don't call
3673 tui_clear_source_content.
3674
e25d2004
TT
36752019-08-15 Tom Tromey <tom@tromey.com>
3676
3677 * tui/tui-winsource.h (struct tui_source_window_base)
3678 <do_erase_source_content>: New method.
3679 <erase_source_content>: New method.
3680 (tui_erase_source_content): Don't declare.
3681 * tui/tui-winsource.c (tui_clear_source_content): Update.
3682 (tui_source_window_base::do_erase_source_content): Rename from
3683 tui_erase_source_content.
3684 (tui_source_window_base::show_source_content): Update.
3685 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
3686 * tui/tui-source.h (struct tui_source_window)
3687 <erase_source_content>: New method.
3688 * tui/tui-disasm.h (struct tui_disasm_window)
3689 <erase_source_content>: New method.
3690
002f15c2
TT
36912019-08-15 Tom Tromey <tom@tromey.com>
3692
3693 * tui/tui-winsource.h (tui_alloc_source_buffer): Don't declare.
3694 (struct tui_source_element): Add DISABLE_COPY_AND_ASSIGN, and move
3695 constructor.
3696 * tui/tui-winsource.c (tui_alloc_source_buffer): Remove.
3697 * tui/tui-source.c (tui_set_source_content): Update.
3698 * tui/tui-disasm.c (tui_set_disassem_content): Update.
3699
c9033fe8
TT
37002019-08-15 Tom Tromey <tom@tromey.com>
3701
3702 * tui/tui-winsource.h (tui_line_is_displayed): Don't declare.
3703 * tui/tui-winsource.c (tui_line_is_displayed): Move to
3704 tui-source.c.
3705 * tui/tui-source.h (struct tui_source_window) <line_is_displayed>:
3706 Declare.
3707 * tui/tui-source.c (tui_source_window::line_is_displayed): New
3708 method.
3709 (tui_source_window::maybe_update): Update.
3710
088f37dd
TT
37112019-08-15 Tom Tromey <tom@tromey.com>
3712
3713 * tui/tui-winsource.h (tui_addr_is_displayed): Don't declare.
3714 * tui/tui-winsource.c (tui_addr_is_displayed): Move to
3715 tui-disasm.c.
3716 * tui/tui-disasm.h (struct tui_disasm_window) <addr_is_displayed>:
3717 Declare.
3718 * tui/tui-disasm.c (tui_disasm_window::addr_is_displayed): New
3719 method.
3720 (tui_disasm_window::maybe_update): Update.
3721
a54700c6
TT
37222019-08-15 Tom Tromey <tom@tromey.com>
3723
3724 * tui/tui-winsource.h (struct tui_source_window_base)
3725 <maybe_update>: Declare.
3726 * tui/tui-stack.c (tui_show_frame_info): Call maybe_update
3727 method.
3728 * tui/tui-source.h (struct tui_source_window) <maybe_update>:
3729 Declare.
3730 * tui/tui-source.c (tui_source_window::maybe_update): New method.
3731 * tui/tui-disasm.h (struct tui_disasm_window) <maybe_update>:
3732 Declare.
3733 * tui/tui-disasm.c (tui_disasm_window::maybe_update): New method.
3734
e2a678a5
TT
37352019-08-15 Tom Tromey <tom@tromey.com>
3736
3737 * tui/tui-stack.c (tui_make_status_line): Use string constructor.
3738
f2dda477
TT
37392019-08-15 Tom Tromey <tom@tromey.com>
3740
3741 * tui/tui-wingeneral.c: Include tui-stack.h.
3742 * tui/tui-stack.h (MAX_LOCATOR_ELEMENT_LEN)
3743 (struct tui_locator_window): Move from tui-data.h.
3744 * tui/tui-stack.c (_locator, tui_locator_win_info_ptr)
3745 (tui_initialize_static_data): Move from tui-data.c.
3746 * tui/tui-data.h (MAX_LOCATOR_ELEMENT_LEN)
3747 (struct tui_locator_window): Move to tui-stack.c.
3748 * tui/tui-data.c (_locator, tui_locator_win_info_ptr)
3749 (tui_initialize_static_data): Move to tui-stack.c.
3750
ed4a1084
TT
37512019-08-15 Tom Tromey <tom@tromey.com>
3752
3753 * tui/tui-layout.c (show_source_disasm_command)
3754 (show_source_or_disasm_and_command): Use make_visible method, not
3755 tui_make_window.
3756 * tui/tui-command.h (struct tui_cmd_window) <make_visible>:
3757 Remove.
3758
65962b20
TT
37592019-08-15 Tom Tromey <tom@tromey.com>
3760
3761 * tui/tui-wingeneral.h (tui_make_window): Update.
3762 * tui/tui-wingeneral.c (tui_make_window): Remove "box_it"
3763 parameter.
3764 (tui_gen_win_info::make_visible): Update.
3765 * tui/tui-regs.c (tui_data_window::display_registers_from):
3766 Update.
3767 * tui/tui-layout.c (show_source_disasm_command)
3768 (show_source_or_disasm_and_command): Update.
3769 * tui/tui-data.h (struct tui_gen_win_info) <can_box>: New method.
3770 (enum tui_box): Remove.
3771 (struct tui_win_info) <can_box>: New method.
3772 * tui/tui-command.h (struct tui_cmd_window) <can_box>: New
3773 method.
3774
2208ee91
TV
37752019-08-15 Tom de Vries <tdevries@suse.de>
3776
3777 * linux-nat-trad.c: Include gdbarch.h.
3778
75faf5c4
AH
37792019-08-14 Alan Hayward <alan.hayward@arm.com>
3780
3781 * aarch64-tdep.c (aarch64_analyze_prologue): Allow any valid
3782 register sizes.
3783
b1c896b3
TT
37842019-08-14 Tom Tromey <tromey@adacore.com>
3785
3786 * darwin-nat.c: Include gdbarch.h.
3787 * darwin-nat-info.c: Include gdbarch.h.
3788
6405cd73
TT
37892019-08-13 Tom Tromey <tom@tromey.com>
3790
3791 * tui/tui-data.h (struct tui_gen_win_info) <last_visible_line>:
3792 Remove.
3793 * tui/tui-data.c (tui_initialize_static_data): Update.
3794
5216580d
TT
37952019-08-13 Tom Tromey <tom@tromey.com>
3796
3797 * tui/tui-winsource.h (struct tui_exec_info_window)
3798 <~tui_exec_info_window, maybe_allocate_content, get_content,
3799 m_content>: Remove.
3800 (struct tui_source_window_base) <set_exec_info_content,
3801 show_exec_info_content>: Don't declare.
3802 * tui/tui-winsource.c
3803 (tui_exec_info_window::maybe_allocate_content): Remove.
3804 (tui_source_window_base::update_exec_info): Rename from
3805 set_exec_info_content.
3806 (tui_source_window_base::show_exec_info_content)
3807 (tui_source_window_base::update_exec_info): Remove.
3808
93858ad3
TT
38092019-08-13 Tom Tromey <tom@tromey.com>
3810
3811 * tui/tui-winsource.h (tui_clear_exec_info_content): Don't
3812 declare.
3813 * tui/tui-winsource.c (tui_update_source_window_as_is)
3814 (tui_update_source_windows_with_addr, tui_erase_source_content):
3815 Update.
3816 (tui_clear_exec_info_content): Remove.
3817
e321e7ce
TT
38182019-08-13 Tom Tromey <tom@tromey.com>
3819
3820 * tui/tui-winsource.h (tui_erase_exec_info_content): Don't
3821 declare.
3822 * tui/tui-winsource.c (tui_source_window_base::refresh_all): Don't
3823 call tui_erase_exec_info_content.
3824 (tui_clear_exec_info_content): Rename from
3825 tui_erase_exec_info_content.
3826 (tui_clear_exec_info_content): Delete.
3827
8270ac62
TT
38282019-08-13 Tom Tromey <tom@tromey.com>
3829
3830 * tui/tui-winsource.h (struct tui_source_window_base)
3831 <show_exec_info_content>: Declare.
3832 (tui_show_exec_info_content): Don't declare.
3833 * tui/tui-winsource.c
3834 (tui_source_window_base::show_exec_info_content): Rename from
3835 tui_show_exec_info_content.
3836 (tui_source_window_base::update_exec_info): Update.
3837
7b56485d
TT
38382019-08-13 Tom Tromey <tom@tromey.com>
3839
3840 * tui/tui-data.h (enum tui_bp_flag, tui_bp_flags, struct tui_source_element)
3841 (TUI_BP_HIT_POS, TUI_BP_BREAK_POS, TUI_EXEC_POS)
3842 (TUI_EXECINFO_SIZE, tui_exec_info_content): Move ...
3843 * tui/tui-winsource.h (enum tui_bp_flag, tui_bp_flags, struct
3844 tui_source_element, TUI_BP_HIT_POS, TUI_BP_BREAK_POS)
3845 (TUI_EXEC_POS, TUI_EXECINFO_SIZE, tui_exec_info_content):
3846 ... here.
3847
7ba913dc
TT
38482019-08-13 Tom Tromey <tom@tromey.com>
3849
3850 * tui/tui-winsource.h (struct tui_source_window_base)
3851 <update_exec_info>: Declare.
3852 (tui_update_exec_info): Don't declare.
3853 * tui/tui-winsource.c (tui_update_source_window_as_is)
3854 (tui_source_window_base::refresh_all)
3855 (tui_update_all_breakpoint_info): Update.
3856 (tui_source_window_base::update_exec_info): Rename from
3857 tui_update_exec_info.
3858 * tui/tui-stack.c (tui_show_frame_info): Update.
3859
37a4a131
TT
38602019-08-13 Tom Tromey <tom@tromey.com>
3861
3862 * tui/tui-winsource.h (struct tui_source_window_base)
3863 <set_exec_info_content>: Declare.
3864 (tui_set_exec_info_content): Don't declare.
3865 * tui/tui-winsource.c
3866 (tui_source_window_base::set_exec_info_content): Rename from
3867 tui_set_exec_info_content.
3868 (tui_update_exec_info): Update.
3869
0bd27e07
TT
38702019-08-13 Tom Tromey <tom@tromey.com>
3871
3872 * tui/tui-winsource.h (struct tui_source_window_base)
3873 <show_source_content>: Declare.
3874 (tui_show_source_content): Don't declare.
3875 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
3876 (tui_source_window_base::show_source_content): Rename from
3877 tui_show_source_content.
3878 (tui_source_window_base::refresh_all): Update.
3879 * tui/tui-layout.c (show_source_disasm_command)
3880 (show_source_or_disasm_and_command): Update.
3881
b4ef5aeb
TT
38822019-08-13 Tom Tromey <tom@tromey.com>
3883
3884 * tui/tui-winsource.c (tui_erase_source_content)
3885 (tui_show_source_content, tui_source_window_base::refresh_all):
3886 Update.
3887 * tui/tui-wingeneral.h
3888 (tui_check_and_display_highlight_if_needed): Don't declare.
3889 * tui/tui-wingeneral.c
3890 (tui_win_info::check_and_display_highlight_if_needed): Rename from
3891 check_and_display_highlight_if_needed.
3892 * tui/tui-win.c (tui_rehighlight_all)
3893 (tui_win_info::make_visible_with_new_height): Update.
3894 * tui/tui-regs.c (tui_data_window::display_registers_from_line)
3895 (tui_data_window::erase_data_content)
3896 (tui_data_window::display_all_data): Update.
3897 * tui/tui-data.h (struct tui_win_info)
3898 <check_and_display_highlight_if_needed>: Declare.
3899
fede5273
TT
39002019-08-13 Tom Tromey <tom@tromey.com>
3901
3902 * tui/tui-win.c (tui_resize_all): Call
3903 tui_delete_invisible_windows.
3904 * tui/tui-layout.c (show_layout): Call
3905 tui_delete_invisible_windows.
3906 * tui/tui-data.h (tui_delete_invisible_windows): Declare.
3907 * tui/tui-data.c (tui_delete_invisible_windows): New function.
3908
22c3f490
TT
39092019-08-13 Tom Tromey <tom@tromey.com>
3910
3911 * tui/tui-disasm.c (tui_show_disassem): Add assertion. Don't call
3912 tui_add_win_to_layout.
3913
16cb7910
TT
39142019-08-13 Tom Tromey <tom@tromey.com>
3915
3916 * tui/tui-layout.h (tui_default_win_height): Don't declare.
3917 * tui/tui-layout.c (tui_default_win_height): Now static.
3918
cc0c3ffb
TT
39192019-08-13 Tom Tromey <tom@tromey.com>
3920
3921 * tui/tui-layout.c (show_layout): Unify all layout cases into a
3922 single switch.
3923 (show_source_disasm_command, show_source_or_disasm_and_command):
3924 Don't check current layout.
3925
3f3ffe54
TT
39262019-08-13 Tom Tromey <tom@tromey.com>
3927
3928 * tui/tui-wingeneral.c (make_all_visible): Remove.
3929 (tui_make_all_invisible): Simplify.
3930 * tui/tui-layout.c (tui_make_all_invisible): Move from
3931 tui-wingeneral.c; simplify.
3932 (show_layout): Hoist call to tui_make_all_invisible.
3933 (show_data): Don't call tui_make_all_invisible.
3934
69258091
TT
39352019-08-13 Tom Tromey <tom@tromey.com>
3936
3937 * tui/tui-wingeneral.h (tui_make_all_visible): Don't declare.
3938 * tui/tui-wingeneral.c (tui_make_all_visible): Remove.
3939
62cf57fe
TT
39402019-08-13 Tom Tromey <tom@tromey.com>
3941
3942 * tui/tui-layout.c (current_layout, tui_current_layout): Move from
3943 tui-data.c.
3944 (show_source_disasm_command, show_data)
3945 (show_source_or_disasm_and_command): Don't use
3946 tui_set_current_layout_to.
3947 * tui/tui-data.h (tui_set_current_layout_to): Don't declare.
3948 * tui/tui-data.c (current_layout, tui_current_layout): Move to
3949 tui-layout.c.
3950 (tui_set_current_layout_to): Remove.
3951
2afade5d
TT
39522019-08-13 Tom Tromey <tom@tromey.com>
3953
3954 * tui/tui-layout.c (tui_set_layout): Update.
3955 * tui/tui-data.h (struct tui_layout_def): Remove.
3956 (tui_layout_def): Don't declare.
3957 * tui/tui-data.c (layout_def): Remove.
3958 (tui_layout_def): Remove.
3959
a3504e96
TT
39602019-08-13 Tom Tromey <tom@tromey.com>
3961
3962 * tui/tui-winsource.h (struct tui_source_window_base)
3963 <clear_detail>: No longer "override".
3964 * tui/tui-regs.h (struct tui_data_window) <clear_detail>: Remove.
3965 * tui/tui-regs.c (tui_data_window::clear_detail): Remove.
3966 * tui/tui-data.h (struct tui_win_info) <clear_detail>: Remove.
3967 * tui/tui-command.h (struct tui_cmd_window) <clear_detail>:
3968 Remove.
3969 * tui/tui-command.c (tui_cmd_window::clear_detail): Remove.
3970
29c92911
TT
39712019-08-13 Tom Tromey <tromey@adacore.com>
3972
3973 * tracepoint.c: Don't include readline.h or history.h.
3974
86c6b807
TT
39752019-08-12 Tom Tromey <tom@tromey.com>
3976
3977 * configure: Rebuild.
3978 * configure.ac: Check for readline 7.
3979 * NEWS: Mention readline 7 requirement.
3980 * README: Update.
3981
5db2718c
TT
39822019-08-12 Tom Tromey <tom@tromey.com>
3983
3984 * mingw-hdep.c (gdb_select): Remove readline hack.
3985
dac36daf
PFC
39862019-08-09 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
3987
3988 * blockframe.c (find_pc_partial_function): Set *block to nullptr
3989 when the function fails.
3990
1022c627
AA
39912019-08-09 Andreas Arnez <arnez@linux.ibm.com>
3992
3993 * s390-tdep.c (s390_type_align): New function.
3994 (s390_gdbarch_init): Set it as type_align gdbarch method.
3995
eba4caf2
TV
39962019-08-09 Tom de Vries <tdevries@suse.de>
3997
3998 PR gdb/24591
3999 * dwarf2read.c (dwarf2_fetch_die_loc_sect_off): Adjust pc_high and
4000 pc_low with relocation offset.
4001
123cd851
TT
40022019-08-07 Tom Tromey <tromey@adacore.com>
4003
4004 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
4005 (print_frame_args): Update.
4006 * python/py-framefilter.c (py_print_single_arg, enumerate_args):
4007 Update.
4008 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
4009 * frame.h (struct frame_arg): Add initializers.
4010 <error>: Now a unique_xmalloc_ptr.
4011
3d31bc39
AH
40122019-08-07 Alan Hayward <alan.hayward@arm.com>
4013
4014 * NEWS: Expand the Pointer Authentication entry.
4015 * aarch64-tdep.c (aarch64_frame_unmask_address): Rename from this.
4016 (aarch64_frame_unmask_lr): ... to this.
4017 (aarch64_prologue_prev_register, aarch64_dwarf2_prev_register):
4018 Call aarch64_frame_unmask_lr.
4019 * frame.c (struct frame_info): Add "masked" variable.
4020 (frame_set_previous_pc_masked) (frame_get_pc_masked): New functions.
4021 (fprint_frame): Check for masked pc.
4022 * frame.h (frame_set_previous_pc_masked) (frame_get_pc_masked): New
4023 declarations.
4024 * python/py-framefilter.c (py_print_frame): Check for masked pc.
4025 * stack.c (print_frame): Check for masked pc.
4026
0cf9feb9
TT
40272019-08-06 Tom Tromey <tom@tromey.com>
4028
4029 * stabsread.c (patch_block_stabs, read_one_struct_field)
4030 (read_enum_type): Use obstack_strndup.
4031 * rust-exp.y (rust_parser::copy_name): Use obstack_strndup.
4032 * gdb_obstack.h (obstack_strndup): Use obstack_strndup.
4033 * dwarf2read.c (guess_full_die_structure_name)
4034 (anonymous_struct_prefix): Use obstack_strndup.
4035 * dbxread.c (cp_set_block_scope): Use obstack_strndup.
4036 * c-exp.y (yylex): Use obstack_strndup.
4037 * ada-exp.y (write_object_renaming, write_ambiguous_var)
4038 (write_var_or_type): Use obstack_strndup.
4039
efba19b0
TT
40402019-08-06 Tom Tromey <tom@tromey.com>
4041
4042 * symfile.c (reread_symbols): Use obstack_strdup.
4043 * stabsread.c (read_type): Use obstack_strdup.
4044 * gdb_obstack.h (obstack_strdup): New overload.
4045 * dwarf2read.c (dwarf2_compute_name, create_dwo_unit_in_dwp_v1)
4046 (create_dwo_unit_in_dwp_v2, build_error_marker_type)
4047 (dwarf2_canonicalize_name): Use obstack_strdup.
4048 * dbxread.c (read_dbx_symtab): Use obstack_strdup.
4049 * cp-support.c (inspect_type, replace_typedefs_qualified_name):
4050 Use obstack_strdup.
4051
f25102f7
TT
40522019-08-06 Tom Tromey <tom@tromey.com>
4053
4054 * gdb_obstack.h (obstack_strdup): Define.
4055 * gdb_obstack.c (obstack_strdup): Don't define.
4056
021887d8
TT
40572019-08-06 Tom Tromey <tom@tromey.com>
4058
4059 * xcoffread.c (SYMNAME_ALLOC, process_xcoff_symbol): Use
4060 obstack_strdup.
4061 * typeprint.c (typedef_hash_table::find_global_typedef): Use
4062 obstack_strdup.
4063 * symfile.c (allocate_compunit_symtab): Use obstack_strdup.
4064 * stabsread.c (common_block_start): Use obstack_strdup.
4065 * objfiles.c (set_objfile_main_name, objfile): Use
4066 obstack_strdup.
4067 * namespace.c (add_using_directive): Use obstack_strdup.
4068 * mdebugread.c (parse_symbol, parse_type): Use obstack_strdup.
4069 * jit.c (finalize_symtab): Use obstack_strdup.
4070 * dwarf2read.c (fixup_go_packaging, dwarf2_physname)
4071 (guess_partial_die_structure_name, partial_die_info::fixup)
4072 (dwarf2_name): Use obstack_strdup.
4073 * coffread.c (coff_read_struct_type, coff_read_enum_type): Use
4074 obstack_strdup.
4075 * c-exp.y (scan_macro_expansion): Use obstack_strdup.
4076 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
4077 obstack_strdup.
4078 * ada-lang.c (ada_decode_symbol): Use obstack_strdup.
4079
d2834edc
PW
40802019-08-07 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4081
4082 * unittests/help-doc-selftests.c: New file.
4083 * Makefile.in: Add the new file.
4084
590042fc
PW
40852019-08-07 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4086
4087 * cli/cli-decode.h (print_doc_line): Add for_value_prefix argument.
4088 * cli/cli-decode.c (print_doc_line): Likewise. It now prints
4089 the full first line, except when FOR_VALUE_PREFIX. In this case,
4090 the trailing '.' is not output, and the first character is uppercased.
4091 (print_help_for_command): Update call to print_doc_line.
4092 (print_doc_of_command): Likewise.
4093 * cli/cli-setshow.c (deprecated_show_value_hack): Likewise.
4094 * cli/cli-option.c (append_indented_doc): Do not append newline.
4095 (build_help_option): Append newline after first appended_indented_doc
4096 only if a second call is done.
4097 (build_help): Append 2 new lines before each option, except the first
4098 one.
4099 * compile/compile.c (_initialize_compile): Add new lines after
4100 %OPTIONS%, when not at the end of the help.
4101 Change help doc or code
4102 producing the help doc to respect the invariants.
4103 * maint-test-options.c (_initialize_maint_test_options): Likewise.
4104 Also removed the new line after 'Options:', as all other commands
4105 do not put an empty line between 'Options:' and the first option.
4106 * printcmd.c (_initialize_printcmd): Likewise.
4107 * stack.c (_initialize_stack): Likewise.
4108 * interps.c (interpreter_exec_cmd): Fix "Usage:" line that was
4109 incorrectly telling COMMAND is optional.
4110 * ada-lang.c (_initialize_ada_language): Change help doc or code
4111 producing the help doc to respect the invariants.
4112 * ada-tasks.c (_initialize_ada_tasks): Likewise.
4113 * breakpoint.c (_initialize_breakpoint): Likewise.
4114 * cli/cli-cmds.c (_initialize_cli_cmds): Likewise.
4115 * cli/cli-logging.c (_initialize_cli_logging): Likewise.
4116 * cli/cli-setshow.c (_initialize_cli_setshow): Likewise.
4117 * cli/cli-style.c (cli_style_option::add_setshow_commands,
4118 _initialize_cli_style): Likewise.
4119 * corelow.c (core_target_info): Likewise.
4120 * dwarf-index-cache.c (_initialize_index_cache): Likewise.
4121 * dwarf2read.c (_initialize_dwarf2_read): Likewise.
4122 * filesystem.c (_initialize_filesystem): Likewise.
4123 * frame.c (_initialize_frame): Likewise.
4124 * gnu-nat.c (add_task_commands): Likewise.
4125 * infcall.c (_initialize_infcall): Likewise.
4126 * infcmd.c (_initialize_infcmd): Likewise.
4127 * interps.c (_initialize_interpreter): Likewise.
4128 * language.c (_initialize_language): Likewise.
4129 * linux-fork.c (_initialize_linux_fork): Likewise.
4130 * maint-test-settings.c (_initialize_maint_test_settings): Likewise.
4131 * maint.c (_initialize_maint_cmds): Likewise.
4132 * memattr.c (_initialize_mem): Likewise.
4133 * printcmd.c (_initialize_printcmd): Likewise.
4134 * python/lib/gdb/function/strfns.py (_MemEq, _StrLen, _StrEq,
4135 _RegEx): Likewise.
4136 * ravenscar-thread.c (_initialize_ravenscar): Likewise.
4137 * record-btrace.c (_initialize_record_btrace): Likewise.
4138 * record-full.c (_initialize_record_full): Likewise.
4139 * record.c (_initialize_record): Likewise.
4140 * regcache-dump.c (_initialize_regcache_dump): Likewise.
4141 * regcache.c (_initialize_regcache): Likewise.
4142 * remote.c (add_packet_config_cmd, init_remote_threadtests,
4143 _initialize_remote): Likewise.
4144 * ser-tcp.c (_initialize_ser_tcp): Likewise.
4145 * serial.c (_initialize_serial): Likewise.
4146 * skip.c (_initialize_step_skip): Likewise.
4147 * source.c (_initialize_source): Likewise.
4148 * stack.c (_initialize_stack): Likewise.
4149 * symfile.c (_initialize_symfile): Likewise.
4150 * symtab.c (_initialize_symtab): Likewise.
4151 * target-descriptions.c (_initialize_target_descriptions): Likewise.
4152 * top.c (init_main): Likewise.
4153 * tracefile-tfile.c (tfile_target_info): Likewise.
4154 * tracepoint.c (_initialize_tracepoint): Likewise.
4155 * tui/tui-win.c (_initialize_tui_win): Likewise.
4156 * utils.c (add_internal_problem_command): Likewise.
4157 * valprint.c (value_print_option_defs): Likewise.
4158
404f2902
FCE
41592019-08-06 Frank Ch. Eigler <fche@redhat.com>
4160
4161 PR build/24886
4162 * configure.ac: Drop enable-libmcheck support.
4163 * configure, config.in: Rebuild.
4164 * libmcheck.m4: Remove.
4165 * acinclude.m4: Don't include it.
4166 * Makefile.in: Don't distribute it.
4167 * top.c (print_gdb_configuration): Don't mention it.
4168
046bebe1
TT
41692019-08-06 Tom Tromey <tom@tromey.com>
4170
4171 * utils.c (set_output_style): Sometimes pass stream to
4172 emit_style_escape.
4173 * ui-out.h (class ui_out) <can_emit_style_escape>: Declare.
4174 * record-btrace.c (btrace_insn_history): Update.
4175 * mi/mi-out.h (class mi_ui_out) <can_emit_style_escape>: New
4176 method.
4177 * disasm.h (gdb_pretty_print_disassembler): Add uiout parameter.
4178 Update initializers.
4179 <m_uiout>: New field.
4180 <m_di>: Move lower.
4181 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
4182 Remove "uiout" parameter.
4183 (dump_insns): Update.
4184 * cli-out.h (class cli_ui_out) <can_emit_style_escape>: Declare.
4185 * cli-out.c (cli_ui_out::can_emit_style_escape): New method.
4186
ddbcedf5
CB
41872019-08-06 Christian Biesinger <cbiesinger@google.com>
4188
4189 * symtab.c (symbol_cache_lookup): Change int to enum block_enum.
4190 (error_in_psymtab_expansion): Likewise.
4191 (lookup_symbol_via_quick_fns): Likewise.
4192 (basic_lookup_transparent_type_quick): Likewise.
4193 (basic_lookup_transparent_type_1): Likewise.
4194
b08b16c8
TT
41952019-08-06 Tom Tromey <tromey@adacore.com>
4196
4197 * source.c (last_source_error): Now bool.
4198 (print_source_lines_base): Make "noprint" bool. Only open
4199 source file when last_source_visited changes.
4200
cb44333d
TT
42012019-08-06 Tom Tromey <tromey@adacore.com>
4202
4203 * annotate.c (annotate_source_line): Use g_source_cache.
4204 * source-cache.c (source_cache::get_plain_source_lines): Change
4205 parameters. Populate m_offset_cache.
4206 (source_cache::ensure): New method.
4207 (source_cache::get_line_charpos): New method.
4208 (extract_lines): Move lower. Change parameters.
4209 (source_cache::get_source_lines): Move lower.
4210 * source-cache.h (class source_cache): Update comment.
4211 <get_line_charpos>: New method.
4212 <get_source_lines>: Update comment.
4213 <clear>: Clear m_offset_cache.
4214 <get_plain_source_lines>: Change parameters.
4215 <ensure>: New method
4216 <m_offset_cache>: New member.
4217 * source.c (forget_cached_source_info_for_objfile): Update.
4218 (info_source_command): Use g_source_cache.
4219 (find_source_lines, open_source_file_with_line_charpos): Remove.
4220 (print_source_lines_base, search_command_helper): Use g_source_cache.
4221 * source.h (open_source_file_with_line_charpos): Don't declare.
4222 * symtab.h (struct symtab) <nlines, line_charpos>: Remove.
4223 * tui/tui-source.c (tui_source_window::do_scroll_vertical):
4224 Use g_source_cache.
4225
872dceaa
TT
42262019-08-06 Tom Tromey <tromey@adacore.com>
4227
4228 * source-cache.c (source_cache::get_plain_source_lines):
4229 Remove "first_line" and "last_line" parameters.
4230 (source_cache::get_source_lines): Cache plain text.
4231 * source-cache.h (class source_cache)
4232 <get_plain_source_lines>: Update.
4233
269249d9
TT
42342019-08-06 Tom Tromey <tromey@adacore.com>
4235
4236 * source-cache.c (extract_lines): No longer a method.
4237 Changed type of parameter. Include final newline.
4238 (selftests::extract_lines_test): New function.
4239 (_initialize_source_cache): Likewise.
4240 * source-cache.h (class source_cache)
4241 <extract_lines>: Don't declare.
4242
c0e8dcd8
TT
42432019-08-06 Tom Tromey <tromey@adacore.com>
4244
4245 * breakpoint.c (init_breakpoint_sal): Update.
4246 (breakpoint): Update.
4247 * breakpoint.h (struct breakpoint) <filter>: Now a
4248 unique_xmalloc_ptr.
4249
0b27c27d
CB
42502019-08-05 Christian Biesinger <cbiesinger@google.com>
4251
4252 * NEWS: Mention dictionary access on blocks.
4253 * python/py-block.c (blpy_getitem): New function.
4254 (block_object_as_mapping): New struct.
4255 (block_object_type): Use new struct for tp_as_mapping field.
4256
4ee94178
CB
42572019-08-05 Christian Biesinger <cbiesinger@google.com>
4258
4259 * objfiles.h (objfile): Add a comment describing partial symbols.
4260
8abfcabc
TT
42612019-08-05 Tom Tromey <tromey@adacore.com>
4262
4263 * compile/compile.c (_initialize_compile): Use _(), not N_().
4264 * thread.c (_initialize_thread): Use _(), not N_().
4265 * stack.c (_initialize_stack): Use _(), not N_().
4266 * printcmd.c (_initialize_printcmd): Use _(), not N_().
4267
2b79f376
SM
42682019-08-04 Simon Marchi <simon.marchi@polymtl.ca>
4269
4270 * dwarf2read.c (struct dw2_symtab_iterator):
4271 <want_specific_block>: Remove.
4272 <block_index>: Change type to gdb::optional.
4273 (dw2_symtab_iter_init): Remove WANT_SPECIFIC_BLOCK parameter,
4274 change type of BLOCK_INDEX parameter to gdb::optional.
4275 (dw2_symtab_iter_next): Re-write in function of gdb::optional.
4276 (dw2_lookup_symbol): Don't pass argument for
4277 WANT_SPECIFIC_BLOCK.
4278 (dw2_expand_symtabs_for_function): Don't pass argument for
4279 WANT_SPECIFIC_BLOCK, pass empty optional for BLOCK_INDEX.
4280 (class dw2_debug_names_iterator)
4281 <dw2_debug_names_iterator>: Remove WANT_SPECIFIC_BLOCK
4282 parameter, change BLOCK_INDEX type to gdb::optional.
4283 <m_want_specific_block>: Remove.
4284 <m_block_index>: Change type to gdb::optional.
4285 (dw2_debug_names_iterator::next): Change type of IS_STATIC to
4286 gdb::optional. Re-write in function of gdb::optional.
4287 (dw2_debug_names_lookup_symbol): Don't pass argument for
4288 WANT_SPECIFIC_BLOCK.
4289 (dw2_debug_names_expand_symtabs_for_function): Don't pass
4290 argument for WANT_SPECIFIC_BLOCK, pass empty optional for
4291 BLOCK_INDEX.
4292
ae60f04e
PW
42932019-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4294
4295 * NEWS: Mention changes to "info sources" command.
4296
28cd9371
PW
42972019-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4298
4299 * symtab.c (filename_partial_match_opts): New struct type.
4300 (struct output_source_filename_data): New members
4301 regexp, c_regexp, partial_match.
4302 (output_source_filename): Use new members to decide to print file.
4303 (info_sources_option_defs): New variable.
4304 (make_info_sources_options_def_group, print_info_sources_header,
4305 info_sources_command_completer):
4306 New functions.
4307 (info_sources_command): Read new optional arguments.
4308 (_initialize_symtab): Update info sources help.
4309
ca683e3a
AO
43102019-08-02 Alexandre Oliva <oliva@adacore.com>
4311
4312 * ada-lang.c (exception_support_info_v0): Renamed from...
4313 (default_exception_support_info): ... this. Create new
4314 definition for v1.
4315 (ada_has_this_exception_support): Look up catch_handlers_sym.
4316 (ada_exception_support_info_sniffer): Try v0 after default.
4317
f1264162
TT
43182019-08-01 Tom Tromey <tromey@adacore.com>
4319
4320 * ia64-libunwind-tdep.h (struct libunwind_descr): Include
4321 gdbarch.h.
4322
0a7b2485
CB
43232019-08-01 Christian Biesinger <cbiesinger@google.com>
4324
4325 * s12z-tdep.c: Fix include path for s12z-opc.h.
4326
c6bdbeb7
AH
43272019-08-01 Alan Hayward <alan.hayward@arm.com>
4328
4329 * NEWS: Require GNU make 3.82.
4330
a2bd7b82
TT
43312019-07-16 Tom Tromey <tom@tromey.com>
4332
4333 * tui/tui-wingeneral.h (tui_copy_win, tui_box_win): Don't
4334 declare.
4335
aa3b6533
TT
43362019-07-30 Tom Tromey <tromey@adacore.com>
4337
4338 * block.c (contained_in): Remove BLOCK_FUNCTION check.
4339
a1530dc7
KB
43402019-07-30 Kevin Buettner <kevinb@redhat.com>
4341
4342 * printcmd.c (print_address_symbolic): Print negative offsets.
4343 (build_address_symbolic): Force signed arithmetic when computing
4344 offset.
4345
2906593f
CB
43462019-07-30 Christian Biesinger <cbiesinger@google.com>
4347
4348 PR/24474: Add a function to lookup static variables.
4349 * NEWS: Mention this new function.
4350 * python/py-symbol.c (gdbpy_lookup_static_symbol): New function.
4351 * python/python-internal.h (gdbpy_lookup_static_symbol): New function.
4352 * python/python.c (python_GdbMethods): Add new function.
4353
c620ed88
CB
43542019-07-29 Christian Biesinger <cbiesinger@google.com>
4355
4356 * NEWS: Mention new functions Objfile.lookup_{global,static}_symbol.
4357 * python/py-objfile.c (objfpy_lookup_global_symbol): New function.
4358 (objfpy_lookup_static_symbol): New function.
4359 (objfile_object_methods): Add new functions.
4360
bc4268a5
PW
43612019-07-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4362
4363 * NEWS: Mention 'set|show print frame-info'. Mention new
4364 'presence' value for 'frame-arguments'. Mention new '-frame-info'
4365 backtrace argument. Mention that python frame filtering code
4366 is now consistent with what 'backtrace' command prints.
4367
4b5e8d19
PW
43682019-07-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4369
4370 * frame.h (enum print_what): New value 'SHORT_LOCATION', update
4371 comments.
4372 (print_frame_info_auto, print_frame_info_source_line,
4373 print_frame_info_location, print_frame_info_source_and_location,
4374 print_frame_info_location_and_address, print_frame_info_short_location):
4375 New declarations.
4376 (struct frame_print_options): New member print_frame_info.
4377 * extension.h (enum ext_lang_frame_args): New value CLI_PRESENCE.
4378 * stack.h (get_user_print_what_frame_info): New declaration.
4379 (frame_show_address): New declaration.
4380 * stack.c (print_frame_arguments_choices): New value 'presence'.
4381 (print_frame_info_auto, print_frame_info_source_line,
4382 print_frame_info_location, print_frame_info_source_and_location,
4383 print_frame_info_location_and_address, print_frame_info_short_location,
4384 print_frame_info_choices, print_frame_info_print_what): New definitions.
4385 (print_frame_args): Only print dots for args if print frame-arguments
4386 is 'presence'.
4387 (frame_print_option_defs): New element for "frame-info".
4388 (get_user_print_what_frame_info): New function.
4389 (frame_show_address): Make non static. Move comment to stack.h.
4390 (print_frame_info_to_print_what): New function.
4391 (print_frame_info): Update comment. Use fp_opts.print_frame_info
4392 to decide what to print.
4393 (backtrace_command_1): Handle the new print_frame_arguments_presence
4394 value.
4395 (_initialize_stack): Call add_setshow_enum_cmd for frame-info.
4396 * python/py-framefilter.c (py_print_args): Handle CLI_PRESENCE.
4397 (py_print_frame): In non-mi mode, use LOCATION as default for
4398 print_what, similarly to frame information printed directly by
4399 backtrace command. Handle frame-info user option in non MI mode.
4400
6bdfee81
KB
44012019-07-27 Kevin Buettner <kevinb@redhat.com>
4402
4403 * linux-thread-db.c (thread_db_target::thread_handle_to_thread_info):
4404 Add case for debugging 32-bit target on 64-bit host. Revise
4405 comment.
4406
98a617f8
KB
44072019-07-27 Kevin Buettner <kevinb@redhat.com>
4408
4409 * infrun.c (fill_in_stop_func): Use find_pc_partial_function
4410 instead of find_function_entry_range_from_pc.
4411
567238c9
KB
44122019-07-27 Kevin Buettner <kevinb@redhat.com>
4413
4414 * stack.c (find_frame_funname): Remove code which preferred
4415 minsym over symtab sym in "certain pathological cases".
4416
2dc80cf8
KB
4417 * valprint.h (build_address_symbolic): Add "prefer_sym_over_minsym"
4418 parameter. Change type of "do_demangle" to bool.
4419 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
4420 Pass suitable "prefer_sym_over_minsym" flag to
4421 build_address_symbolic(). Don't output "+" for negative offsets.
4422 * printcmd.c (print_address_symbolic): Update invocation of
4423 build_address_symbolic to include a "prefer_sym_over_minsym"
4424 flag.
4425 (build_address_symbolic): Add "prefer_sym_over_minsym" parameter.
4426 Restrict cases in which use of minimal symbol is preferred to that
4427 of a found symbol. Update comments.
4428
1aff7173
KB
4429 * dwarf2-frame.c (dwarf2_frame_cache): Don't decode FDE instructions
4430 for entry pc when entry pc is out of range for that FDE.
4431
89b085ac
BC
44322019-07-26 Brian Callahan <bcallah@openbsd.org>
4433
4434 PR gdb/24839:
4435 * gdb/obsd-nat.c (obsd_nat_target::pid_to_str): Fix typo in return
4436 type.
4437
f32feb4a
CB
44382019-07-25 Christian Biesinger <cbiesinger@google.com>
4439
4440 * python/py-objfile.c (add_separate_debug_file): Fix comment about
4441 this function's Python signature.
4442
4443
44442019-07-24 Christian Biesinger <cbiesinger@google.com>
442853af
CB
4445
4446 * compile/compile-object-load.c (compile_object_load): Pass GLOBAL_SCOPE.
4447 * solib-spu.c (spu_lookup_lib_symbol): Pass GLOBAL_SCOPE.
4448 * solib-svr4.c (elf_lookup_lib_symbol): Pass GLOBAL_SCOPE.
4449 * symtab.c (lookup_global_symbol_from_objfile): Add a scope parameter.
4450 * symtab.h (lookup_global_symbol_from_objfile): Likewise.
4451
4452
c54e4253
YS
44532019-07-24 Yoshinori Sato <ysato@users.sourceforge.jp>
4454
4455 * h8300-tdep.c (h8300_register_name_common): New.
4456 h8300_register_name): Use h8300_register_name_common.
4457 (h8300s_register_name): Likewise.
4458 (h8300sx_register_name): Likewise.
4459 (h8300h_register_nam): New.
4460 (h8300_gdbarch_init): Use h8300h_register_name in h8300h machine.
4461
4462
40eadf04
SP
44632019-07-23 Srinath Parvathaneni <srinath.parvathaneni@arm.com>
4464
4465 * arm-tdep.c (arm_skip_cmse_entry): New function.
4466 (arm_is_sgstubs_section): New function.
4467 (arm_skip_stub): Add call to arm_skip_cmse_entry function.
4468
bfa2a36d
TT
44692019-07-22 Tom Tromey <tom@tromey.com>
4470
4471 * tui/tui-win.c (tui_win_info::make_invisible_and_set_new_height):
4472 Don't self-assign.
4473
a8e9d247
AB
44742019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
4475
4476 * c-typeprint.c (c_print_typedef): Pass -1 instead of 0 to
4477 type_print.
4478
eb86c5e2
AB
44792019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
4480
4481 * symtab.c (search_symbols): Adjust msymbol matching type arrays
4482 so that GDB doesn't match any msymbols when searching in the
4483 TYPES_DOMAIN.
4484 (print_symbol_info): Print using typedef_print or type_print based
4485 on the type of the symbol. Add updated FIXME comment moved from...
4486 (_initialize_symtab): ... move and update FIXME comment to above.
4487
a8eab7c6
AB
44882019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
4489
4490 * NEWS: Mention adding -q option to "info types".
4491 * symtab.c (struct info_types_options): New struct.
4492 (info_types_options_defs): New variable.
4493 (make_info_types_options_def_group): New function.
4494 (info_types_command): Use gdb::option framework to parse options.
4495 (info_types_command_completer): New function.
4496 (_initialize_symtab): Extend the help text on "info types" and
4497 register command completer.
4498
b4603c34
CB
44992019-07-21 Christian Biesinger <cbiesinger@google.com>
4500
4501 * symtab.c (lookup_symbol_in_objfile_symtabs): Change int to block_enum.
4502 (lookup_symbol_in_objfile): Change int to block_enum and add a
4503 gdb_assert to make sure block_index is GLOBAL_BLOCK or STATIC_BLOCK.
4504
c8cdc1e0
CB
45052019-07-20 Christian Biesinger <cbiesinger@google.com>
4506
4507 * MAINTAINERS (Write After Approval): Add self.
4508
01e175fe
AB
45092019-07-19 Andrew Burgess <andrew.burgess@embecosm.com>
4510
4511 * riscv-tdep.c (riscv_push_dummy_code): Write a 4-byte nop
4512 instruction to the dummy code region.
4513
56f79b63
TT
45142019-07-19 Tom Tromey <tromey@adacore.com>
4515
4516 * contrib/ari/gdb_ari.sh: Mention C++11, not ISO C 90.
4517 (ARGSUSED, PARAMS, __func__): Remove rules.
4518
4c5aa8e0
AH
45192019-07-19 Alan Hayward <alan.hayward@arm.com>
4520
4521 * arm-tdep.c (_initialize_arm_tdep): Remove xml tests.
4522 * features/arm/arm-with-iwmmxt.c: Remove.
4523 * features/arm/arm-with-iwmmxt.xml: Remove.
4524 * features/arm/arm-with-m-fpa-layout.c: Remove.
4525 * features/arm/arm-with-m-fpa-layout.xml: Remove.
4526 * features/arm/arm-with-m-vfp-d16.c: Remove.
4527 * features/arm/arm-with-m-vfp-d16.xml: Remove.
4528 * features/arm/arm-with-m.c: Remove.
4529 * features/arm/arm-with-m.xml: Remove.
4530 * features/arm/arm-with-neon.c: Remove.
4531 * features/arm/arm-with-neon.xml: Remove.
4532 * features/arm/arm-with-vfpv2.c: Remove.
4533 * features/arm/arm-with-vfpv2.xml: Remove.
4534 * features/arm/arm-with-vfpv3.c: Remove.
4535 * features/arm/arm-with-vfpv3.xml: Remove.
4536
f42b2617
AH
45372019-07-19 Alan Hayward <alan.hayward@arm.com>
4538
4539 * arm-tdep.c (_initialize_arm_tdep): Add xml regression tests.
4540
f29ec966
AH
45412019-07-19 Alan Hayward <alan.hayward@arm.com>
4542
4543 * arch/aarch32.c (aarch32_create_target_description): Create
4544 target descriptions using features.
4545 * arch/arm.c (arm_create_target_description)
4546 (arm_create_mprofile_target_description): Likewise.
4547 * arm-tdep.c (_initialize_arm_tdep): Remove tdesc init calls.
4548
d105cce5
AH
45492019-07-19 Alan Hayward <alan.hayward@arm.com>
4550
4551 * Makefile.in: Add new files.
4552 * aarch32-tdep.c: New file.
4553 * aarch32-tdep.h: New file.
4554 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
4555 Call aarch32_read_description.
4556 * arch/aarch32.c: New file.
4557 * arch/aarch32.h: New file.
4558 * arch/arm.c (arm_create_target_description)
4559 (arm_create_mprofile_target_description): New function.
4560 * arch/arm.h (arm_fp_type, arm_m_profile_type): New enum.
4561 (arm_create_target_description)
4562 (arm_create_mprofile_target_description): New declaration.
4563 * arm-fbsd-tdep.c (arm_fbsd_read_description_auxv): Call
4564 read_description functions.
4565 * arm-linux-nat.c (arm_linux_nat_target::read_description):
4566 Likewise.
4567 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
4568 * arm-tdep.c (tdesc_arm_list): New variable.
4569 (arm_register_g_packet_guesses): Call create description functions.
4570 (arm_read_description) (arm_read_mprofile_description): New
4571 function.
4572 * arm-tdep.h (arm_read_description)
4573 (arm_read_mprofile_description): Add declaration.
4574 * configure.tgt: Add new files.
4575
afe09f0b
GL
45762019-07-18 Guillaume LABARTHE <guillaume.labarthe@gmail.com>
4577
4578 * top.c (new_ui_command): Open specified terminal just once.
4579
cd215b2e
TT
45802019-07-18 Tom Tromey <tromey@adacore.com>
4581
4582 * symtab.c (main_name): Constify return type.
4583 * symfile.c (set_initial_language): Update.
4584 * symtab.h (main_name): Constify return type.
4585
d8f68fcb
TT
45862019-07-17 Tom Tromey <tom@tromey.com>
4587
4588 * tui/tui-winsource.c (tui_update_source_window)
4589 (tui_update_source_window_as_is)
4590 (tui_update_source_windows_with_line): Remove return.
4591 * tui/tui-disasm.c (tui_show_disassem)
4592 (tui_show_disassem_and_update_source): Remove return.
4593 * tui/tui.c (tui_reset): Remove return.
4594 * tui/tui-wingeneral.c
4595 (tui_check_and_display_highlight_if_needed): Remove return.
4596
ca5af91e
TT
45972019-07-17 Tom Tromey <tom@tromey.com>
4598
4599 * tui/tui-win.c (parse_scrolling_args): Throw separate errors.
4600
5104fe36
TT
46012019-07-17 Tom Tromey <tom@tromey.com>
4602
4603 * tui/tui-winsource.h (struct tui_exec_info_window)
4604 (struct tui_source_window_base): Move from tui-data.h.
4605 * tui/tui-winsource.c: Move many method definitions from
4606 elsewhere. Remove "structuring" comments.
4607 * tui/tui-wingeneral.c (tui_source_window_base::make_visible)
4608 (tui_source_window_base::refresh_window): Move to
4609 tui-winsource.c.
4610 * tui/tui-win.c (tui_source_window_base::refresh_all)
4611 (tui_source_window_base::update_tab_width)
4612 (tui_source_window_base::set_new_height)
4613 (tui_source_window_base::do_make_visible_with_new_height): Move to
4614 tui-winsource.c.
4615 * tui/tui-source.h: Update.
4616 * tui/tui-source.c (tui_source_window_base::reset): Move to
4617 tui-winsource.c.
4618 * tui/tui-disasm.h: Update.
4619 * tui/tui-data.h (struct tui_exec_info_window): Move to
4620 tui-winsource.h.
4621 (struct tui_source_window_base): Likewise.
4622 * tui/tui-data.c (tui_source_window_base::clear_detail)
4623 (tui_source_window_base, ~tui_source_window_base): Move to
4624 tui-winsource.c.
4625
daa15dde
TT
46262019-07-17 Tom Tromey <tom@tromey.com>
4627
4628 * tui/tui-win.c (tui_resize_all)
4629 (tui_source_window_base::update_tab_width)
4630 (tui_adjust_win_heights): Update.
4631 (tui_win_info::make_invisible_and_set_new_height): Rename from
4632 make_invisible_and_set_new_height.
4633 * tui/tui-data.h (struct tui_win_info)
4634 <make_invisible_and_set_new_height>: New method.
4635
bfad4537
TT
46362019-07-17 Tom Tromey <tom@tromey.com>
4637
4638 * tui/tui.c: Update.
4639 * tui/tui-source.h (struct tui_source_window): Move from
4640 tui-data.h.
4641 * tui/tui-layout.c: Update.
4642 * tui/tui-disasm.c: Update.
4643 * tui/tui-data.h (struct tui_source_window): Move to
4644 tui-source.h.
4645
88f7e873
TT
46462019-07-17 Tom Tromey <tom@tromey.com>
4647
4648 * tui/tui-disasm.h (struct tui_disasm_window): Move from
4649 tui-data.h.
4650 * tui/tui-data.h (struct tui_disasm_window): Move to
4651 tui-disasm.h.
4652
96bd6233
TT
46532019-07-17 Tom Tromey <tom@tromey.com>
4654
4655 * tui/tui-regs.h (struct tui_data_item_window): Move from
4656 tui-data.h.
4657 * tui/tui-regs.c (tui_data_item_window): Move from tui-data.c.
4658 * tui/tui-data.h (struct tui_data_item_window): Move to
4659 tui-regs.h.
4660 * tui/tui-data.c (~tui_data_item_window): Move to tui-regs.c.
4661
ce38393b
TT
46622019-07-17 Tom Tromey <tom@tromey.com>
4663
4664 * tui/tui.c: Update.
4665 * tui/tui-win.c (tui_cmd_window::do_make_visible_with_new_height)
4666 (tui_cmd_window::max_height): Move to tui-command.c.
4667 * tui/tui-layout.c: Update.
4668 * tui/tui-data.h (struct tui_cmd_window): Move to tui-command.h.
4669 * tui/tui-data.c (tui_cmd_window::clear_detail): Move to
4670 tui-command.c.
4671 * tui/tui-command.h (struct tui_cmd_window): Move from
4672 tui-data.h.
4673 * tui/tui-command.c: Remove "structuring" comments.
4674 (tui_cmd_window::clear_detail)
4675 (tui_cmd_window::do_make_visible_with_new_height)
4676 (tui_cmd_window::max_height): Move from elsewhere.
4677
2d8b51cb
TT
46782019-07-17 Tom Tromey <tom@tromey.com>
4679
4680 * tui/tui-io.c (tui_dispatch_ctrl_char): Move from tui-command.c.
4681 Now static.
4682 * tui/tui-command.h (tui_dispatch_ctrl_char): Don't declare.
4683 * tui/tui-command.c (tui_dispatch_ctrl_char): Move to tui-io.c.
4684
18ab23af
TT
46852019-07-17 Tom Tromey <tom@tromey.com>
4686
4687 * tui/tui.c: Update.
4688 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Move to
4689 tui-regs.c.
4690 * tui/tui-windata.h: Remove file.
4691 * tui/tui-windata.c: Remove file.
4692 * tui/tui-win.c (tui_data_window::set_new_height)
4693 (tui_data_window::do_make_visible_with_new_height): Move to
4694 tui-regs.c.
4695 * tui/tui-regs.h (struct tui_data_window): Move from tui-data.h.
4696 * tui/tui-regs.c: Remove "structuring" comments.
4697 (tui_data_window::first_data_item_displayed)
4698 (tui_data_window::delete_data_content_windows)
4699 (tui_data_window::erase_data_content)
4700 (tui_data_window::display_all_data)
4701 (tui_data_window::refresh_all)
4702 (tui_data_window::do_scroll_vertical)
4703 (tui_data_window::clear_detail, tui_data_window::set_new_height)
4704 (tui_data_window::do_make_visible_with_new_height)
4705 (tui_data_window::refresh_window): Move from elsewhere.
4706 (_initialize_tui_regs): Move to end of file.
4707 * tui/tui-layout.c: Update.
4708 * tui/tui-hooks.c: Update.
4709 * tui/tui-data.h (struct tui_data_window): Move to tui-regs.h.
4710 * tui/tui-data.c (tui_data_window::clear_detail): Move to
4711 tui-regs.c.
4712 * Makefile.in (SUBDIR_TUI_SRCS): Remove tui-windata.c.
4713
88b7e7cc
TT
47142019-07-17 Tom Tromey <tom@tromey.com>
4715
4716 * tui/tui-io.c (tui_puts_internal): Call wrefresh if newline is
4717 seen.
4718
0fcd3711
TT
47192019-07-17 Tom Tromey <tom@tromey.com>
4720
4721 * tui/tui-win.c (tui_source_window_base::set_new_height)
4722 (tui_source_window_base::do_make_visible_with_new_height): Use
4723 m_has_locator field directly.
4724 * tui/tui-data.h (struct tui_win_info) <has_locator>: Remove
4725 method.
4726 (struct tui_source_window_base) <has_locator>: Likewise.
4727
4a38112d
TT
47282019-07-17 Tom Tromey <tom@tromey.com>
4729
4730 * tui/tui-wingeneral.h (tui_make_visible, tui_make_invisible):
4731 Don't declare.
4732 * tui/tui-wingeneral.c (tui_make_visible, tui_make_invisible):
4733 Remove.
4734 * tui/tui-win.c (tui_source_window_base::set_new_height)
4735 (tui_source_window_base::set_new_height)
4736 (make_invisible_and_set_new_height)
4737 (tui_source_window_base::do_make_visible_with_new_height)
4738 (tui_source_window_base::do_make_visible_with_new_height):
4739 Update.
4740 * tui/tui-layout.c (show_source_disasm_command, show_data)
4741 (show_source_or_disasm_and_command): Update.
4742 * tui/tui-layout.c (show_layout): Update.
4743
09129226
TT
47442019-07-17 Tom Tromey <tom@tromey.com>
4745
4746 * tui/tui-layout.c (make_data_window): Remove.
4747 (show_data): Unify creation and re-initialization cases.
4748
4a8a5e84
TT
47492019-07-17 Tom Tromey <tom@tromey.com>
4750
4751 * tui/tui-layout.c (make_source_window, make_disasm_window):
4752 Remove.
4753 (show_data): Unify creation and re-initialization cases.
4754
76d2be8e
TT
47552019-07-17 Tom Tromey <tom@tromey.com>
4756
4757 * tui/tui-layout.c (make_command_window): Remove.
4758 (show_source_disasm_command, show_source_or_disasm_and_command):
4759 Unify creation and re-initialization cases.
4760
890b8bde
TT
47612019-07-17 Tom Tromey <tom@tromey.com>
4762
4763 * tui/tui-layout.c (show_source_or_disasm_and_command): Unify
4764 creation and re-initialization cases.
4765
2cdfa113
TT
47662019-07-17 Tom Tromey <tom@tromey.com>
4767
4768 * tui/tui-regs.c (tui_get_register): Return void.
4769
8e3cfd09
TT
47702019-07-17 Tom Tromey <tom@tromey.com>
4771
4772 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible):
4773 Simplify.
4774
f4e04977
TT
47752019-07-17 Tom Tromey <tom@tromey.com>
4776
4777 * tui/tui-layout.c (show_source_disasm_command): Simplify window
4778 resetting.
4779
0379b883
TT
47802019-07-17 Tom Tromey <tom@tromey.com>
4781
4782 * tui/tui.h (tui_set_layout_by_name): Don't declare.
4783 * tui/tui-regs.c (tui_reg_layout): New function.
4784 (tui_show_registers, tui_reg_command): Use it.
4785 * tui/tui-layout.c (LAYOUT_USAGE): Remove.
4786 (tui_layout_command): Rename from tui_set_layout_by_name. Change
4787 parameters.
4788 (tui_layout_command): Remove.
4789
b7fbad91
TT
47902019-07-17 Tom Tromey <tom@tromey.com>
4791
4792 * tui/tui-layout.h (tui/tui-layout): Return void.
4793 * tui/tui-layout.c (tui_set_layout): Return void. Add assert.
4794
4e1e56b9
TT
47952019-07-17 Tom Tromey <tom@tromey.com>
4796
4797 * tui/tui-layout.c (show_source_disasm_command, show_data):
4798 Update.
4799 (reset_locator): Remove.
4800 (show_source_or_disasm_and_command): Update.
4801
1e0c09ba
TT
48022019-07-17 Tom Tromey <tom@tromey.com>
4803
4804 * tui/tui-source.c (tui_source_window_base::reset): Remove
4805 win_type parameter.
4806 * tui/tui-layout.c (make_command_window, make_source_window)
4807 (make_disasm_window, make_data_window)
4808 (show_source_disasm_command, show_data, tui_gen_win_info::reset)
4809 (reset_locator, show_source_or_disasm_and_command): Update.
4810 * tui/tui-data.h (struct tui_gen_win_info) <reset>: Remove
4811 win_type parameter.
4812 (struct tui_source_window_base) <reset>: Likewise.
4813
1bf605de
TT
48142019-07-17 Tom Tromey <tom@tromey.com>
4815
4816 * tui/tui-layout.c (show_source_disasm_command): Use
4817 reset_locator.
4818 (reset_locator): New function.
4819 (init_and_make_win): Remove.
4820 (show_source_or_disasm_and_command): Use reset_locator.
4821
098f9ed4
TT
48222019-07-17 Tom Tromey <tom@tromey.com>
4823
4824 * tui/tui-winsource.c (tui_set_exec_info_content): Remove
4825 condition.
4826 * tui/tui-wingeneral.c (tui_source_window_base::make_visible):
4827 Remove condition.
4828 * tui/tui-source.c (tui_source_window_base::reset): New method.
4829 * tui/tui-layout.c (make_command_window): Don't call
4830 init_and_make_win.
4831 (make_source_window, make_disasm_window): Don't call
4832 make_source_or_disasm_window.
4833 (make_data_window): Don't call init_and_make_win. Change calling
4834 convention.
4835 (show_source_disasm_command, show_data): Simplify.
4836 (make_source_or_disasm_window): Remove.
4837 (show_source_or_disasm_and_command): Simplify.
4838 * tui/tui-data.h (struct tui_gen_win_info) <reset>: Now virtual.
4839 (struct tui_source_window_base) <reset>: Likewise.
4840 <execution_info>: Remove initializer.
4841 * tui/tui-data.c (tui_source_window_base): Initialize
4842 execution_info.
4843
80110957
TT
48442019-07-17 Tom Tromey <tom@tromey.com>
4845
4846 * tui/tui-layout.c (tui_set_layout): Remove regs_populate
4847 variable.
4848
cf82af05
TT
48492019-07-17 Tom Tromey <tom@tromey.com>
4850
4851 * tui/tui.c (tui_rl_other_window): Update.
4852 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Call
4853 superclass method first. Always iterate over regs_content.
4854 (tui_unhighlight_win, tui_highlight_win): Use refresh_window
4855 method.
4856 * tui/tui-win.c (tui_set_focus_command): Update.
4857
01aeb396
TT
48582019-07-17 Tom Tromey <tom@tromey.com>
4859
4860 * tui/tui-win.c (tui_set_focus_command): Rename from
4861 tui_set_focus. Call tui_enable.
4862 (tui_set_focus_command): Remove.
4863
fd6c75ee
TT
48642019-07-17 Tom Tromey <tom@tromey.com>
4865
4866 * tui/tui-winsource.c (tui_show_exec_info_content): Don't call
4867 refresh_window.
4868 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Call
4869 touchwin.
4870 (tui_data_window::refresh_window): Call refresh_window on data
4871 items. Always call superclass refresh_window.
4872 (tui_win_info::refresh): Remove.
4873 (tui_source_window_base::refresh_window): Update.
4874 (tui_refresh_all): Update.
4875 * tui/tui-layout.c (show_source_disasm_command): Remove call to
4876 refresh_window.
4877 (show_source_or_disasm_and_command): Likewise.
4878 * tui/tui-data.h (struct tui_win_info) <refresh>: Remove.
4879 (struct tui_source_window_base) <refresh>: Likewise.
4880
f6cc34a9
TT
48812019-07-17 Tom Tromey <tom@tromey.com>
4882
4883 * tui/tui-winsource.c (tui_clear_source_content)
4884 (tui_show_source_content): Update.
4885 * tui/tui-source.c (tui_source_window::showing_source_p): Check
4886 whether content is empty.
4887 * tui/tui-data.h (struct tui_source_window_base) <content_in_use>:
4888 Remove.
4889
f31ec9af
TT
48902019-07-17 Tom Tromey <tom@tromey.com>
4891
4892 * tui/tui-winsource.c (tui_erase_source_content): Clear the
4893 window's contents.
4894 * tui/tui-source.h (tui_set_source_content_nil): Don't declare.
4895 * tui/tui-source.c (tui_set_source_content_nil): Remove.
4896
d1b6f1e5
TT
48972019-07-17 Tom Tromey <tom@tromey.com>
4898
4899 * tui/tui-data.h (UNDEFINED_ITEM): Remove define.
4900 (struct tui_data_item_window): Update.
4901
d9743a13
TT
49022019-07-17 Tom Tromey <tom@tromey.com>
4903
4904 * tui/tui-data.h (MAX_CONTENT_COUNT, TUI_NULL_STR)
4905 (DEFAULT_HISTORY_COUNT, WITH_LOCATOR, NO_LOCATOR): Remove
4906 defines.
4907
caf0bc4e
TT
49082019-07-17 Tom Tromey <tom@tromey.com>
4909
4910 * tui/tui-winsource.h (tui_erase_source_content)
4911 (tui_clear_source_content): Remove "display_prompt" parameter.
4912 * tui/tui-winsource.c (tui_update_source_window_as_is)
4913 (tui_update_source_windows_with_addr): Update.
4914 (tui_clear_source_content): Remove "display_prompt" parameter.
4915 (tui_erase_source_content): Likewise. Simplify.
4916 (tui_show_source_content): Update.
4917 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
4918 * tui/tui-stack.c (tui_show_frame_info): Update.
4919 * tui/tui-data.h (EMPTY_SOURCE_PROMPT, NO_EMPTY_SOURCE_PROMPT):
4920 Remove defines.
4921
9d391078
TT
49222019-07-17 Tom Tromey <tom@tromey.com>
4923
4924 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
4925 * tui/tui-disasm.h (tui_set_disassem_content): Add win_info
4926 parameter.
4927 * tui/tui-disasm.c (tui_set_disassem_content): Add win_info
4928 parameter.
4929
a38da35d
TT
49302019-07-17 Tom Tromey <tom@tromey.com>
4931
4932 * tui/tui-winsource.c (tui_clear_source_content)
4933 (tui_show_source_content, tui_show_exec_info_content)
4934 (tui_clear_exec_info_content): Update.
4935 * tui/tui-stack.c (tui_show_locator_content): Update.
4936 (tui_show_frame_info): Update.
4937 * tui/tui-source.h (tui_source_window): Don't declare.
4938 * tui/tui-source.c (tui_source_window::showing_source_p): Rename
4939 from tui_source_is_displayed.
4940 * tui/tui-data.h (struct tui_gen_win_info) <content_in_use>:
4941 Remove field.
4942 (struct tui_source_window_base) <content_in_use>: New field. Now
4943 bool.
4944 (struct tui_source_window) <showing_source_p>: New method.
4945 (TUI_SRC_WIN): Change cast.
4946 * tui/tui-data.c (tui_initialize_static_data): Update.
4947
c2cd8994
TT
49482019-07-17 Tom Tromey <tom@tromey.com>
4949
4950 * tui/tui-winsource.c (tui_update_breakpoint_info): Use
4951 location_matches_p.
4952 * tui/tui-source.c (tui_source_window::location_matches_p): New
4953 method.
4954 * tui/tui-disasm.c (tui_disasm_window::location_matches_p): New
4955 method.
4956 * tui/tui-data.h (struct tui_source_window_base)
4957 <location_matches_p>: New method.
4958 (struct tui_source_window, struct tui_disasm_window)
4959 <location_matches_p>: Likewise.
4960
4dde7b34
TT
49612019-07-17 Tom Tromey <tom@tromey.com>
4962
4963 * tui/tui-win.c (tui_set_win_height_command): Rename from
4964 tui_set_win_height.
4965 (tui_set_win_height_command): Remove.
4966
b73dd877
TT
49672019-07-17 Tom Tromey <tom@tromey.com>
4968
4969 * tui/tui-source.c (tui_source_window): New constructor. Add
4970 observer.
4971 (~tui_source_window): New destructor.
4972 (tui_source_window::style_changed): New method.
4973 * tui/tui-hooks.c (tui_redisplay_source): Remove.
4974 (tui_attach_detach_observers): Update.
4975 * tui/tui-data.h (struct tui_source_window): Make constructor not
4976 inline. Add destructor.
4977 (struct tui_source_window) <style_changed>: New method.
4978 <m_observable>: New member.
4979
ae2b5380
TT
49802019-07-17 Tom Tromey <tom@tromey.com>
4981
4982 * tui/tui-data.c (tui_clear_source_windows_detail): Fix typo.
4983 * tui/tui-win.c (tui_resize_all): Fix typo.
4984
1ce3e844
TT
49852019-07-17 Tom Tromey <tom@tromey.com>
4986
4987 * tui/tui-wingeneral.h (tui_refresh_all): Update.
4988 * tui/tui-wingeneral.c (make_all_visible): Use foreach.
4989 (tui_refresh_all): Remove "list" parameter. Use foreach.
4990 * tui/tui-win.c (window_name_completer): Use foreach.
4991 (tui_refresh_all_win, tui_rehighlight_all, tui_all_windows_info)
4992 (update_tab_width): Likewise.
4993 * tui/tui-layout.c (show_layout): Update.
4994 * tui/tui-data.h (class tui_window_iterator): New.
4995 (struct all_tui_windows): New.
4996 * tui/tui-data.c (tui_partial_win_by_name): Use foreach.
4997
fe3eaf1c
TT
49982019-07-17 Tom Tromey <tom@tromey.com>
4999
5000 * tui/tui-regs.c (tui_reg_next, tui_reg_prev): Add "current_group"
5001 parameter. Don't reference globals.
5002 (tui_reg_command): Update.
5003
368c1354
TT
50042019-07-17 Tom Tromey <tom@tromey.com>
5005
5006 * tui/tui-regs.c (tui_show_registers): Simplify.
5007
e80cd204
TT
50082019-07-17 Tom Tromey <tom@tromey.com>
5009
5010 * tui/tui-regs.c (tui_show_registers): Update.
5011 (tui_show_register_group): Add win_info parameter.
5012
aca2dd16
TT
50132019-07-17 Tom Tromey <tom@tromey.com>
5014
5015 * tui/tui-regs.c (tui_data_window::display_reg_element_at_line):
5016 Rename from tui_display_reg_element_at_line.
5017 (tui_data_window::display_registers_from_line): Update.
5018 * tui/tui-data.h (struct tui_data_window)
5019 <display_reg_element_at_line>: New method.
5020
517e9505
TT
50212019-07-17 Tom Tromey <tom@tromey.com>
5022
5023 * tui/tui-regs.h (tui_display_registers_from)
5024 (tui_display_registers_from_line): Don't declare.
5025 * tui/tui-windata.c (tui_data_window::display_all_data)
5026 (tui_data_window::refresh_all)
5027 (tui_data_window::do_scroll_vertical): Update.
5028 * tui/tui-regs.c (tui_data_window::display_registers_from): Rename
5029 from tui_display_registers_from.
5030 (tui_display_reg_element_at_line): Update.
5031 (tui_data_window::display_registers_from_line): Rename from
5032 tui_display_registers_from_line.
5033 * tui/tui-data.h (struct tui_data_window) <display_registers_from,
5034 display_registers_from_line>: New methods.
5035
f76d8b19
TT
50362019-07-17 Tom Tromey <tom@tromey.com>
5037
5038 * tui/tui-windata.h (tui_erase_data_content): Don't declare.
5039 * tui/tui-windata.c (tui_data_window::erase_data_content): Rename
5040 from tui_erase_data_content.
5041 (tui_data_window::display_all_data)
5042 (tui_data_window::refresh_all)
5043 (tui_data_window::do_scroll_vertical): Update.
5044 * tui/tui-regs.c (tui_show_registers): Update.
5045 * tui/tui-data.h (struct tui_data_window) <erase_data_content>:
5046 New method.
5047
b4094625
TT
50482019-07-17 Tom Tromey <tom@tromey.com>
5049
5050 * tui/tui-windata.h (tui_delete_data_content_windows): Don't
5051 declare.
5052 * tui/tui-windata.c
5053 (tui_data_window::delete_data_content_windows): Rename from
5054 tui_delete_data_content_windows.
5055 (tui_data_window::display_all_data)
5056 (tui_data_window::do_scroll_vertical): Update.
5057 * tui/tui-data.h (struct tui_data_window)
5058 <delete_data_content_windows>: New method.
5059
c223a729
TT
50602019-07-17 Tom Tromey <tom@tromey.com>
5061
5062 * tui/tui-windata.h (tui_refresh_data_win): Don't declare.
5063 * tui/tui-regs.h (tui_first_reg_element_inline): Don't declare.
5064
50daf268
TT
50652019-07-17 Tom Tromey <tom@tromey.com>
5066
5067 * tui/tui-windata.h (tui_display_all_data): Don't declare.
5068 * tui/tui-windata.c (tui_data_window::display_all_data): Rename
5069 from tui_display_all_data.
5070 * tui/tui-win.c
5071 (tui_data_window::do_make_visible_with_new_height): Update.
5072 * tui/tui-regs.c (tui_show_registers): Update.
5073 * tui/tui-layout.c (tui_set_layout): Update.
5074 * tui/tui-data.h (struct tui_data_window) <display_all_data>: New
5075 method.
5076
df5f8cab
TT
50772019-07-17 Tom Tromey <tom@tromey.com>
5078
5079 * tui/tui-windata.h (tui_display_data_from): Don't declare.
5080 * tui/tui-windata.c (tui_display_data_from): Remove.
5081 (tui_data_window::refresh_all): Update.
5082
80cb6c27
TT
50832019-07-17 Tom Tromey <tom@tromey.com>
5084
5085 * tui/tui-windata.h (tui_display_data_from_line): Don't declare.
5086 * tui/tui-windata.c (tui_display_data_from_line): Remove.
5087 (tui_display_data_from, tui_data_window::do_scroll_vertical): Call
5088 tui_display_registers_from_line.
5089 * tui/tui-regs.h (tui_display_registers_from_line): Update.
5090 * tui/tui-regs.c (tui_display_registers_from_line): Remove
5091 "force_display" parameter.
5092
baff0c28
TT
50932019-07-17 Tom Tromey <tom@tromey.com>
5094
5095 * tui/tui-regs.h (tui_first_reg_element_no_inline): Don't
5096 declare.
5097 * tui/tui-regs.c (tui_data_window::first_reg_element_no_inline):
5098 Rename from tui_first_reg_element_no_inline.
5099 (tui_display_reg_element_at_line)
5100 (tui_display_registers_from_line): Update.
5101 * tui/tui-data.h (struct tui_data_window)
5102 <first_reg_element_no_inline>: New method.
5103
3b23c5f2
TT
51042019-07-17 Tom Tromey <tom@tromey.com>
5105
5106 * tui/tui-windata.c (tui_display_data_from)
5107 (tui_data_window::do_scroll_vertical): Update.
5108 * tui/tui-regs.h (tui_line_from_reg_element_no): Don't declare.
5109 * tui/tui-regs.c (tui_data_window::line_from_reg_element_no):
5110 Rename from tui_line_from_reg_element_no.
5111 (tui_display_registers_from_line): Update.
5112 * tui/tui-data.h (struct tui_data_window)
5113 <line_from_reg_element_no>: New method.
5114
0b5ec218
TT
51152019-07-17 Tom Tromey <tom@tromey.com>
5116
5117 * tui/tui-regs.h (tui_last_regs_line_no): Don't declare.
5118 * tui/tui-regs.c (tui_data_window::last_regs_line_no): Rename from
5119 tui_last_regs_line_no.
5120 (tui_display_reg_element_at_line)
5121 (tui_display_registers_from_line): Update.
5122 * tui/tui-data.h (struct tui_data_window) <last_regs_line_no>: New
5123 method.
5124
0807ab7b
TT
51252019-07-17 Tom Tromey <tom@tromey.com>
5126
5127 PR tui/24722:
5128 * tui/tui-winsource.h (tui_update_all_breakpoint_info)
5129 (tui_update_breakpoint_info): Add "being_deleted" parameter.
5130 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
5131 (tui_update_all_breakpoint_info): Add "being_deleted" parameter.
5132 (tui_update_breakpoint_info): Likewise.
5133 * tui/tui-hooks.c (tui_event_create_breakpoint)
5134 (tui_event_delete_breakpoint, tui_event_modify_breakpoint):
5135 Update.
5136
9ad7fdef
TT
51372019-07-17 Tom Tromey <tom@tromey.com>
5138
5139 * tui/tui-stack.c (tui_show_frame_info): Consolidate "if"s.
5140
5813316f
TT
51412019-07-17 Tom Tromey <tom@tromey.com>
5142
5143 * tui/tui-winsource.c (tui_update_source_window_as_is)
5144 (tui_update_source_windows_with_addr): Update.
5145 * tui/tui-source.h (tui_set_source_content)
5146 (tui_show_symtab_source): Add "win_info" parameter.
5147 * tui/tui-source.c (tui_set_source_content): Add "win_info"
5148 parameter.
5149 (tui_show_symtab_source): Likewise.
5150
00e264e7
TT
51512019-07-17 Tom Tromey <tom@tromey.com>
5152
5153 * tui/tui-wingeneral.c
5154 (tui_check_and_display_highlight_if_needed): Check can_highlight.
5155
06210ce4
TT
51562019-07-17 Tom Tromey <tom@tromey.com>
5157
5158 * tui/tui-data.h (struct tui_win_info) <can_scroll>: New method.
5159 (struct tui_cmd_window) <can_scroll>: New method.
5160 * tui/tui-command.c (tui_dispatch_ctrl_char): Use can_scroll
5161 method.
5162
381befee
TT
51632019-07-17 Tom Tromey <tromey@adacore.com>
5164
5165 * ui-out.h (class ui_out) <field_signed, field_fmt_signed,
5166 do_field_signed>: Rename. Change type of "value".
5167 * ui-out.c (ui_out::field_signed): Rename from field_int.
5168 Change type of "value".
5169 (ui_out::field_fmt_signed): Rename from field_fmt_int. Change
5170 type of "value".
5171 * tui/tui-out.h (class tui_ui_out) <do_field_signed>: Rename from
5172 do_field_int. Change type of "value".
5173 * tui/tui-out.c (tui_ui_out::do_field_signed): Rename from
5174 do_field_int. Change type of "value".
5175 * tracepoint.c (trace_status_mi, tfind_1)
5176 (print_one_static_tracepoint_marker): Update.
5177 * thread.c (print_thread_info_1, print_selected_thread_frame):
5178 Update.
5179 * stack.c (print_frame, print_frame_info): Update.
5180 * spu-tdep.c (info_spu_signal_command, info_spu_dma_cmdlist):
5181 Update.
5182 * source.c (print_source_lines_base): Update.
5183 * skip.c (info_skip_command): Update.
5184 * record-btrace.c (btrace_ui_out_decode_error)
5185 (btrace_call_history_src_line): Update.
5186 * python/py-framefilter.c (py_print_single_arg, py_print_frame):
5187 Update.
5188 * progspace.c (print_program_space): Update.
5189 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Update.
5190 * mi/mi-out.h (class mi_ui_out) <do_field_signed>: Rename from
5191 do_field_int. Change type of "value".
5192 * mi/mi-out.c (mi_ui_out::do_table_begin)
5193 (mi_ui_out::do_table_header): Update.
5194 (mi_ui_out::do_field_signed): Rename from do_field_int. Change
5195 type of "value".
5196 * mi/mi-main.c (mi_cmd_thread_list_ids, print_one_inferior)
5197 (mi_cmd_data_list_changed_registers, output_register)
5198 (mi_cmd_data_read_memory, mi_load_progress)
5199 (mi_cmd_trace_frame_collected): Update.
5200 * mi/mi-interp.c (mi_on_normal_stop_1, mi_output_solib_attribs):
5201 Update.
5202 * mi/mi-cmd-var.c (print_varobj, mi_cmd_var_create)
5203 (mi_cmd_var_delete, mi_cmd_var_info_num_children)
5204 (mi_cmd_var_list_children, varobj_update_one): Update.
5205 * mi/mi-cmd-stack.c (mi_cmd_stack_info_depth)
5206 (mi_cmd_stack_list_args, list_arg_or_local): Update.
5207 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Update.
5208 * inferior.c (print_inferior): Update.
5209 * gdb_bfd.c (print_one_bfd): Update.
5210 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
5211 Update.
5212 * darwin-nat-info.c (darwin_debug_regions_recurse): Update.
5213 * cli-out.h (class cli_ui_out) <do_field_signed>: Rename from
5214 do_field_int. Change type of "value".
5215 * cli-out.c (cli_ui_out::do_field_signed): Rename from
5216 do_field_int. Change type of "value".
5217 * breakpoint.c (watchpoint_check, print_breakpoint_location)
5218 (print_one_breakpoint_location, print_it_catch_fork)
5219 (print_one_catch_fork, print_it_catch_vfork)
5220 (print_one_catch_vfork, print_it_catch_solib)
5221 (print_it_catch_exec, print_it_ranged_breakpoint)
5222 (print_mention_watchpoint, print_mention_masked_watchpoint)
5223 (bkpt_print_it, update_static_tracepoint): Update.
5224 * break-catch-throw.c (print_it_exception_catchpoint): Update.
5225 * break-catch-syscall.c (print_it_catch_syscall): Update.
5226 * ada-tasks.c (print_ada_task_info): Update.
5227 * ada-lang.c (print_it_exception, print_mention_exception):
5228 Update.
5229
6b78c3f8
AB
52302019-07-17 Andrew Burgess <andrew.burgess@embecosm.com>
5231
5232 PR breakpoints/24541
5233 * gdbarch.c: Regenerate.
5234 * gdbarch.h: Regenerate.
5235 * gdbarch.sh: Adjust return type and parameter types for
5236 'stap_adjust_register'.
5237 (i386_stap_adjust_register): Adjust signature and return new
5238 register name.
5239 * stap-probe.c (stap_parse_register_operand): Adjust use of
5240 'gdbarch_stap_adjust_register'.
5241
d72a9b85
TT
52422019-07-17 Tom Tromey <tromey@adacore.com>
5243
5244 * s390-linux-nat.c (s390_watch_area): Remove typedef. Don't
5245 declare VEC.
5246 (struct s390_debug_reg_state) <watch_areas, break_areas>: Now
5247 std::vector.
5248 (struct s390_process_info): Add initializers.
5249 (s390_add_process): Use new.
5250 (s390_linux_nat_target::low_forget_process): Use delete.
5251 (s390_linux_nat_target::low_new_fork)
5252 (s390_linux_nat_target::stopped_by_watchpoint)
5253 (s390_linux_nat_target::low_prepare_to_resume)
5254 (s390_linux_nat_target::insert_watchpoint)
5255 (s390_linux_nat_target::insert_hw_breakpoint)
5256 (s390_linux_nat_target::remove_watchpoint)
5257 (s390_linux_nat_target::remove_hw_breakpoint): Update.
5258
206e6c58
JB
52592019-07-16 John Baldwin <jhb@FreeBSD.org>
5260
5261 * aarch64-fbsd-nat.c: Include regcache.h.
5262 (getregs_supplies, getfpregs_supplies): Remove unused gdbarch
5263 argument.
5264 (aarch64_fbsd_nat_target::fetch_registers)
5265 (aarch64_fbsd_nat_target::store_registers): Remove gdbarch
5266 variable.
5267 * arm-fbsd-nat.c, riscv-fbsd-nat.c: Likewise.
5268
cbde90f2
JB
52692019-07-16 John Baldwin <jhb@FreeBSD.org>
5270
5271 * fbsd-nat.c: Include gdbarch.h.
5272
07128006
TT
52732019-07-15 Tom Tromey <tromey@adacore.com>
5274
5275 * mi/mi-out.c (mi_ui_out::do_field_int): Use plongest.
5276
1f77b012
TT
52772019-07-15 Tom Tromey <tromey@adacore.com>
5278
5279 * mi/mi-out.h (class mi_ui_out) <do_field_unsigned>: Declare.
5280 * mi/mi-out.c (mi_ui_out::do_field_unsigned): New method.
5281 * cli-out.h (class cli_ui_out) <do_field_unsigned>: Declare.
5282 * cli-out.c (cli_ui_out::do_field_int): New method.
5283 * ui-out.c (ui_out::field_unsigned): New method.
5284 * symfile.c (generic_load): Use field_unsigned.
5285 (print_transfer_performance): Likewise.
5286 * record-btrace.c (ui_out_field_uint): Remove.
5287 (btrace_call_history_insn_range, btrace_call_history): Use
5288 field_unsigned.
5289 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn): Use
5290 field_unsigned.
5291 * ui-out.h (class ui_out) <field_unsigned>: New method.
5292 <do_field_unsigned>: Likewise.
5293
33eca680
TT
52942019-07-15 Tom Tromey <tromey@adacore.com>
5295
5296 * mi/mi-main.c (list_available_thread_groups): Use field_string.
5297 * mi/mi-interp.c (mi_memory_changed): Use field_string.
5298 * target.c (flash_erase_command): Use field_string.
5299 * infrun.c (print_signal_received_reason): Use field_string.
5300 * i386-tdep.c (i386_mpx_print_bounds): Use field_string.
5301 * breakpoint.c (maybe_print_thread_hit_breakpoint): Use
5302 field_string.
5303 * ada-tasks.c (print_ada_task_info): Use field_string.
5304
ca8d69be
TT
53052019-07-15 Tom Tromey <tromey@adacore.com>
5306
5307 * target.c (flash_erase_command): Use field_core_addr.
5308 * symfile.c (generic_load): Use field_core_addr.
5309 * sparc64-linux-tdep.c (sparc64_linux_handle_segmentation_fault):
5310 Use field_core_addr.
5311 * i386-linux-tdep.c (i386_linux_handle_segmentation_fault): Use
5312 field_core_addr.
5313
0d4e84ed
AB
53142019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
5315
5316 * dwarf2loc.c (dwarf2_evaluate_property): Sign extend property
5317 value if its desired type is smaller than a CORE_ADDR and signed.
5318
9a49df9d
AB
53192019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
5320
5321 * dwarf2loc.c (dwarf2_evaluate_property): Update to take account
5322 of changes to field names, and use new is_reference field to
5323 decide if a property is a reference or not.
5324 * dwarf2loc.h (struct dwarf2_locexpr_baton): Add 'is_reference'
5325 field.
5326 (struct dwarf2_property_baton): Update header comment, rename
5327 'referenced_type' to 'property_type' and update comments.
5328 * dwarf2read.c (attr_to_dynamic_prop): Add extra parameter to hold
5329 default property type, store in property baton, update to take
5330 accound of renamed field.
5331 (read_func_scope): Update call to attr_to_dynamic_prop.
5332 (read_array_type): Likewise.
5333 (dwarf2_per_cu_addr_sized_int_type): New function.
5334 (read_subrange_index_type): Move type finding code to
5335 dwarf2_per_cu_addr_sized_int_type.
5336 (read_subrange_type): Update calls to attr_to_dynamic_prop.
5337 (dwarf2_per_cu_addr_type): New function.
5338 (set_die_type): Update calls to attr_to_dynamic_prop.
5339
b86352cf
AB
53402019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
5341
5342 * dwarf2read.c (read_subrange_index_type): New function.
5343 (read_subrange_type): Move code into new function and call it.
5344 * gdbtypes.c (create_range_type): Add some asserts.
5345
603490bf
AB
53462019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
5347
5348 * dwarf2loc.c (dwarf2_evaluate_property): Change return type, and
5349 update return statements.
5350 * dwarf2loc.h (dwarf2_evaluate_property): Update return type on
5351 declaration, and update comment to match.
5352 * gdbtypes.c (resolve_dynamic_array): Update call to
5353 dwarf2_evaluate_property to match new return type.
5354
592f9d27
AB
53552019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
5356
5357 * valarith.c (value_subscripted_rvalue): Change lowerbound
5358 parameter type from int to LONGEST.
5359 * value.h (value_subscripted_rvalue): Likewise in declaration.
5360
60cfcb20
AB
53612019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
5362
5363 * cli/cli-utils.c (info_print_command_completer): New function.
5364 * cli/cli-utils.h: Add 'completer.h' include, and forward
5365 declaration for 'struct cmd_list_element'.
5366 (info_print_command_completer): Declare.
5367 * stack.c (_initialize_stack): Add completer for 'info locals' and
5368 'info args'.
5369 * symtab.c (_initialize_symtab): Add completer for 'info
5370 variables' and 'info functions'.
5371 * NEWS: Mention completion for additional info commands.
5372
b16507e0
AB
53732019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
5374
5375 * cli/cli-utils.c (extract_info_print_args): Delete.
5376 (extract_arg_maybe_quoted): Delete.
5377 (info_print_options_defs): New variable.
5378 (make_info_print_options_def_group): New function.
5379 (extract_info_print_options): Define new function.
5380 * cli/cli-utils.h (extract_info_print_args): Delete.
5381 (struct info_print_options): New structure.
5382 (extract_info_print_options): Declare new function.
5383 * stack.c (info_locals_command): Update to use new
5384 extract_info_print_options, also add a header comment.
5385 (info_args_command): Likewise.
5386 * symtab.c (info_variables_command): Likewise.
5387 (info_functions_command): Likewise.
5388
021d8588
AB
53892019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
5390
5391 * cli/cli-option.c (parse_option): Use extract_string_maybe_quoted
5392 to extract string arguments.
5393 * common/common-utils.c (extract_string_maybe_quoted): New function.
5394 * common/common-utils.h (extract_string_maybe_quoted): Declare.
5395
b777eb6d
TT
53962019-07-11 Tom Tromey <tromey@adacore.com>
5397
5398 * main.c (get_init_files): Use GDBINIT, not gdbinit.
5399 * auto-load.c (file_is_auto_load_safe): Use GDBINIT, not gdbinit.
5400 * top.h (gdbinit): Don't declare.
5401 * cli/cli-cmds.c (init_cli_cmds): Remove, merging contents
5402 into...
5403 (_initialize_cli_cmds): ...here. Use GDBINIT, not gdbinit.
5404 * top.c (gdb_init): Don't call init_cli_cmds.
5405 (gdbinit): Remove.
5406 * cli/cli-cmds.h (init_cli_cmds): Don't declare.
5407
72ee03ff
TT
54082019-07-11 Tom Tromey <tromey@adacore.com>
5409
5410 * python/py-inferior.c (add_thread_object): Don't use thread_obj
5411 after it has been moved.
5412
00db9531
SM
54132019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
5414
5415 * valops.c (value_must_coerce_to_target): Change return type to
5416 bool.
5417 * value.h (value_must_coerce_to_target): Likewise.
5418
f2478a7e
SM
54192019-07-10 Simon Marchi <simon.marchi@efficios.com>
5420
5421 * breakpoint.c (is_hardware_watchpoint): Remove
5422 forward-declaration.
5423 (is_masked_watchpoint): Change return type to bool.
5424 (is_tracepoint): Likewise.
5425 (is_breakpoint): Likewise.
5426 (is_hardware_watchpoint): Likewise.
5427 (is_watchpoint): Likewise.
5428 (is_no_memory_software_watchpoint): Likewise.
5429 (is_catchpoint): Likewise.
5430 (breakpoint_1): Make FILTER parameter's return type bool.
5431 is_masked_watchpoint): Change return type to bool.
5432 (save_breakpoints): Make FILTER parameter's return type bool.
5433 * breakpoint.h (is_breakpoint): Change return type to bool.
5434 (is_watchpoint): Likewise.
5435 (is_catchpoint): Likewise.
5436 (is_tracepoint): Likewise.
5437
0d12e84c
TT
54382019-07-10 Tom Tromey <tom@tromey.com>
5439
5440 * defs.h: Don't include gdbarch.h.
5441 * aarch64-ravenscar-thread.c, aarch64-tdep.c, alpha-bsd-tdep.h,
5442 alpha-linux-tdep.c, alpha-mdebug-tdep.c, arch-utils.h, arm-tdep.h,
5443 ax-general.c, btrace.c, buildsym-legacy.c, buildsym.h, c-lang.c,
5444 cli/cli-decode.h, cli/cli-dump.c, cli/cli-script.h,
5445 cli/cli-style.h, coff-pe-read.h, compile/compile-c-support.c,
5446 compile/compile-cplus.h, compile/compile-loc2c.c, corefile.c,
5447 cp-valprint.c, cris-linux-tdep.c, ctf.c, d-lang.c, d-namespace.c,
5448 dcache.c, dicos-tdep.c, dictionary.c, disasm-selftests.c,
5449 dummy-frame.c, dummy-frame.h, dwarf2-frame-tailcall.c,
5450 dwarf2expr.c, expression.h, f-lang.c, frame-base.c,
5451 frame-unwind.c, frv-linux-tdep.c, gdbarch-selftests.c, gdbtypes.h,
5452 go-lang.c, hppa-nbsd-tdep.c, hppa-obsd-tdep.c, i386-dicos-tdep.c,
5453 i386-tdep.h, ia64-vms-tdep.c, interps.h, language.c,
5454 linux-record.c, location.h, m2-lang.c, m32r-linux-tdep.c,
5455 mem-break.c, memattr.c, mn10300-linux-tdep.c, nios2-linux-tdep.c,
5456 objfiles.h, opencl-lang.c, or1k-linux-tdep.c, p-lang.c,
5457 parser-defs.h, ppc-tdep.h, probe.h, python/py-record-btrace.c,
5458 record-btrace.c, record.h, regcache-dump.c, regcache.h,
5459 riscv-fbsd-tdep.c, riscv-linux-tdep.c, rust-exp.y,
5460 sh-linux-tdep.c, sh-nbsd-tdep.c, source-cache.c,
5461 sparc-nbsd-tdep.c, sparc-obsd-tdep.c, sparc-ravenscar-thread.c,
5462 sparc64-fbsd-tdep.c, std-regs.c, target-descriptions.h,
5463 target-float.c, tic6x-linux-tdep.c, tilegx-linux-tdep.c, top.c,
5464 tracefile.c, trad-frame.c, type-stack.h, ui-style.c, utils.c,
5465 utils.h, valarith.c, valprint.c, varobj.c, x86-tdep.c,
5466 xml-support.h, xtensa-linux-tdep.c, cli/cli-cmds.h: Update.
5467 * s390-linux-nat.c, procfs.c, inf-ptrace.c: Likewise.
5468
f06f1252
TT
54692019-07-10 Tom Tromey <tromey@adacore.com>
5470
5471 * ada-lang.h (is_ada_exception_catchpoint): Declare.
5472 * breakpoint.c (init_ada_exception_breakpoint): Register as
5473 bp_catchpoint.
5474 (print_one_breakpoint_location, print_one_breakpoint): Use
5475 is_ada_exception_catchpoint.
5476 * ada-lang.c (class ada_catchpoint_location): Pass
5477 bp_loc_software_breakpoint to bp_location constructor.
5478 (is_ada_exception_catchpoint): New function.
5479
7a5d944b
TT
54802019-07-10 Tom Tromey <tromey@adacore.com>
5481
5482 * arm-tdep.c (arm_exidx_entry_s): Remove typedef. Don't define
5483 VEC.
5484 (struct arm_exidx_entry): New method operator<.
5485 (struct arm_exidx_data) <section_maps>: Change type.
5486 (arm_exidx_data_free): Remove.
5487 (arm_exidx_data_key): Change type. Move lower.
5488 (arm_exidx_new_objfile): Update.
5489 (arm_compare_exidx_entries): Remove.
5490 (arm_find_exidx_entry, _initialize_arm_tdep)
5491
48c66e1d
TT
54922019-07-10 Tom Tromey <tromey@adacore.com>
5493
5494 * solib-spu.c (ocl_program_data_key): Change type.
5495 (append_ocl_sos, ocl_enable_break, _initialize_spu_solib):
5496 Update.
5497
a269fbf1
TT
54982019-07-10 Tom Tromey <tromey@adacore.com>
5499
5500 * solib-aix.c (lm_info_aix_p): Remove typedef. Don't define VEC.
5501 (struct solib_aix_inferior_data) <library_list>: Change type.
5502 (solib_aix_inferior_data_handle): Change type.
5503 (get_solib_aix_inferior_data): Update.
5504 (solib_aix_free_library_list): Remove.
5505 (library_list_start_library): Update.
5506 (solib_aix_parse_libraries, solib_aix_get_library_list): Change
5507 return type.
5508 (solib_aix_get_library_list)
5509 (solib_aix_solib_create_inferior_hook, solib_aix_current_sos)
5510 (solib_aix_normal_stop_observer, _initialize_solib_aix): Update.
5511
c294730c
TT
55122019-07-10 Tom Tromey <tromey@adacore.com>
5513
5514 * solib-dsbt.c (struct dsbt_info): Add initializers.
5515 (solib_dsbt_pspace_data): Change type.
5516 (dsbt_pspace_data_cleanup): Remove.
5517 (get_dsbt_info, _initialize_dsbt_solib): Update.
5518
9d52077d
TT
55192019-07-10 Tom Tromey <tromey@adacore.com>
5520
5521 * spu-tdep.c (spu_overlay_data): Change type.
5522 (spu_get_overlay_table, spu_overlay_new_objfile)
5523 (_initialize_spu_tdep): Update.
5524
22a20dca
TT
55252019-07-10 Tom Tromey <tromey@adacore.com>
5526
5527 * gdb-stabs.h (struct dbx_symfile_info): Add initializers and
5528 destructor.
5529 (dbx_objfile_data_key): Change type and declare later.
5530 (DBX_SYMFILE_INFO): Rewrite.
5531 * dbxread.c (dbx_objfile_data_key): Change type.
5532 (dbx_symfile_init): Update.
5533 (~dbx_symfile_info): Rename from dbx_free_symfile_info. Update.
5534 (coffstab_build_psymtabs, elfstab_build_psymtabs)
5535 (stabsect_build_psymtabs, _initialize_dbxread): Update.
5536
cb60f420
TT
55372019-07-10 Tom Tromey <tromey@adacore.com>
5538
5539 * jit.c (jit_program_space_key): Change type. Move lower.
5540 (get_jit_program_space_data): Update.
5541 (jit_program_space_data_cleanup): Remove.
5542 (jit_breakpoint_deleted, free_objfile_data, _initialize_jit):
5543 Update.
5544 (struct jit_program_space_data): Add initializers.
5545
51df2ae3
TT
55462019-07-10 Tom Tromey <tromey@adacore.com>
5547
5548 * solib-darwin.c (struct darwin_info): Add initializers.
5549 (solib_darwin_pspace_data): Change type.
5550 (darwin_pspace_data_cleanup): Remove.
5551 (get_darwin_info, _initialize_darwin_solib): Update.
5552
18101a35
TT
55532019-07-10 Tom Tromey <tromey@adacore.com>
5554
5555 * remote-sim.c (struct sim_inferior_data): Add initializers,
5556 constructor, and destructor.
5557 (sim_inferior_data_key): Change type. Move lower.
5558 (check_for_duplicate_sim_descriptor): Update.
5559 (get_sim_inferior_data): Use new. Update.
5560 (~sim_inferior_data_cleanup): Rename from
5561 sim_inferior_data_cleanup. Simplify.
5562 (gdbsim_close_inferior, simulator_command)
5563 (sim_command_completer, _initialize_remote_sim): Update.
5564 (next_pid, INITIAL_PID): Move earlier.
5565
05b08ac1
TT
55662019-07-10 Tom Tromey <tromey@adacore.com>
5567
5568 * python/python-internal.h (create_thread_object): Return
5569 gdbpy_ref.
5570 * python/py-infthread.c (create_thread_object): Return gdbpy_ref.
5571 * python/py-inferior.c (struct threadlist_entry): Add
5572 constructor.
5573 <thread_obj>: Now a gdbpy_ref.
5574 (thread_to_thread_object): Update.
5575 (add_thread_object): Use new.
5576 (delete_thread_object): Use delete.
5577 (infpy_threads): Update.
5578 (py_free_inferior): Update. Construct "inf_obj" after acquiring
5579 GIL.
5580
32372d80
TT
55812019-07-10 Tom Tromey <tromey@adacore.com>
5582
5583 * valops.c (value_cast): Specialize error message for Ada.
5584
5c458ae8
SM
55852019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
5586
5587 * breakpoint.c (breakpoint_1): Update doc and parameter names.
5588
4c462cb0
SM
55892019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
5590
5591 * breakpoint.h (bpstat_explains_signal, bpstat_causes_stop,
5592 bpstat_should_step): Return bool, adjust comments.
5593 * breakpoint.c (bpstat_explains_signal, bpstat_causes_stop,
5594 bpstat_should_step): Likewise.
5595
89abbcc2
AH
55962019-07-10 Alan Hayward <alan.hayward@arm.com>
5597
5598 * features/Makefile: Use feature target descriptions for Arm.
5599 * features/arm/arm-core.c: Generate new file.
5600 * features/arm/arm-fpa.c: Likewise.
5601 * features/arm/arm-m-profile-with-fpa.xml: Likewise.
5602 * features/arm/arm-m-profile.c: Likewise.
5603 * features/arm/arm-vfpv2.c: Likewise.
5604 * features/arm/arm-vfpv3.c: Likewise.
5605 * features/arm/xscale-iwmmxt.c: Likewise.
5606 * target-descriptions.c (maint_print_c_tdesc_cmd): Add Arm.
5607
166a82be
AH
56082019-07-10 Alan Hayward <alan.hayward@arm.com>
5609
5610 * arm-linux-nat.c (arm_linux_nat_target::read_description): Check
5611 ptrace earlier.
5612
9fb4c7e9
AH
56132019-07-10 Alan Hayward <alan.hayward@arm.com>
5614
5615 * features/aarch64-pauth.c: Regenerate.
5616
e2d0f980
SM
56172019-07-09 Simon Marchi <simon.marchi@polymtl.ca>
5618
5619 * breakpoint.h (struct bpstat_what) <is_longjmp>: Change type to
5620 bool.
5621 (bpstat_what): Use false instead of 0.
5622
a38118e5
PA
56232019-07-09 Pedro Alves <palves@redhat.com>
5624
5625 * break-catch-throw.c (is_exception_catchpoint): New.
5626 * breakpoint.c (print_one_breakpoint_location): New parameter
5627 'raw_loc'. Handle it. Use
5628 is_watchpoint/is_catchpoint/is_exception_catchpoint instead of
5629 looking at the breakpoint's type.
5630 (print_one_breakpoint): If handling "maint info breakpoints", also
5631 print locations of exception catchpoints.
5632 * breakpoint.h (is_exception_catchpoint): Declare.
5633
cb1e4e32
PA
56342019-07-09 Pedro Alves <palves@redhat.com>
5635
5636 * break-catch-throw.c (print_one_exception_catchpoint): Skip the
5637 "addr" field.
5638 (allocate_location_exception_catchpoint): New.
5639 (handle_gnu_v3_exceptions): Don't reset 'type' to bp_breakpoint.
5640 (initialize_throw_catchpoint_ops): Install
5641 allocate_location_exception_catchpoint as allocate_location
5642 method.
5643 * breakpoint.c (bpstat_what) <bp_catch>: Set action to
5644 BPSTAT_WHAT_SINGLE if not stopping and the location's type is not
5645 bp_loc_other.
5646 (breakpoint_address_is_meaningful): Delete.
5647 (bl_address_is_meaningful): New.
5648 (breakpoint_locations_match): Adjust comment.
5649 (bp_location_from_bp_type): New, factored out of...
5650 (bp_location::bp_location(breakpoint *)): ... this.
5651 (bp_location::bp_location(breakpoint *, bp_loc_type)): New,
5652 factored out of...
5653 (bp_location::bp_location(breakpoint *)): ... this. Reimplement.
5654 (bp_loc_is_permanent): Use bl_address_is_meaningful instead of
5655 breakpoint_address_is_meaningful.
5656 (bp_locations_compare): Adjust comment.
5657 (update_global_location_list): Use bl_address_is_meaningful
5658 instead of breakpoint_address_is_meaningful.
5659 * breakpoint.h (bp_location::bp_location(breakpoint *)): New
5660 explicit.
5661 (bp_location::bp_location(breakpoint *, bp_loc_type)): Declare.
5662 * python/py-breakpoint.c (bppy_get_location): No longer check
5663 whether location is null.
5664
b58a68fe
PA
56652019-07-09 Pedro Alves <palves@redhat.com>
5666
5667 PR c++/15468
5668 * breakpoint.c (print_one_breakpoint_location): Remove
5669 single-location assert.
5670
268a13a5
TT
56712019-07-09 Tom Tromey <tom@tromey.com>
5672
5673 * contrib/ari/gdb_ari.sh: Change common to gdbsupport.
5674 * configure: Rebuild.
5675 * configure.ac: Change common to gdbsupport.
5676 * gdbsupport: Rename from common.
5677 * acinclude.m4: Change common to gdbsupport.
5678 * Makefile.in (CONFIG_SRC_SUBDIR, COMMON_SFILES)
5679 (HFILES_NO_SRCDIR, stamp-version, ALLDEPFILES): Change common to
5680 gdbsupport.
5681 * aarch64-tdep.c, ada-lang.c, ada-lang.h, agent.c, alloc.c,
5682 amd64-darwin-tdep.c, amd64-dicos-tdep.c, amd64-fbsd-nat.c,
5683 amd64-fbsd-tdep.c, amd64-linux-nat.c, amd64-linux-tdep.c,
5684 amd64-nbsd-tdep.c, amd64-obsd-tdep.c, amd64-sol2-tdep.c,
5685 amd64-tdep.c, amd64-windows-tdep.c, arch-utils.c,
5686 arch/aarch64-insn.c, arch/aarch64.c, arch/aarch64.h, arch/amd64.c,
5687 arch/amd64.h, arch/arm-get-next-pcs.c, arch/arm-linux.c,
5688 arch/arm.c, arch/i386.c, arch/i386.h, arch/ppc-linux-common.c,
5689 arch/riscv.c, arch/riscv.h, arch/tic6x.c, arm-tdep.c, auto-load.c,
5690 auxv.c, ax-gdb.c, ax-general.c, ax.h, breakpoint.c, breakpoint.h,
5691 btrace.c, btrace.h, build-id.c, build-id.h, c-lang.h, charset.c,
5692 charset.h, cli/cli-cmds.c, cli/cli-cmds.h, cli/cli-decode.c,
5693 cli/cli-dump.c, cli/cli-option.h, cli/cli-script.c,
5694 coff-pe-read.c, command.h, compile/compile-c-support.c,
5695 compile/compile-c.h, compile/compile-cplus-symbols.c,
5696 compile/compile-cplus-types.c, compile/compile-cplus.h,
5697 compile/compile-loc2c.c, compile/compile.c, completer.c,
5698 completer.h, contrib/ari/gdb_ari.sh, corefile.c, corelow.c,
5699 cp-support.c, cp-support.h, cp-valprint.c, csky-tdep.c, ctf.c,
5700 darwin-nat.c, debug.c, defs.h, disasm-selftests.c, disasm.c,
5701 disasm.h, dtrace-probe.c, dwarf-index-cache.c,
5702 dwarf-index-cache.h, dwarf-index-write.c, dwarf2-frame.c,
5703 dwarf2expr.c, dwarf2loc.c, dwarf2read.c, event-loop.c,
5704 event-top.c, exceptions.c, exec.c, extension.h, fbsd-nat.c,
5705 features/aarch64-core.c, features/aarch64-fpu.c,
5706 features/aarch64-pauth.c, features/aarch64-sve.c,
5707 features/i386/32bit-avx.c, features/i386/32bit-avx512.c,
5708 features/i386/32bit-core.c, features/i386/32bit-linux.c,
5709 features/i386/32bit-mpx.c, features/i386/32bit-pkeys.c,
5710 features/i386/32bit-segments.c, features/i386/32bit-sse.c,
5711 features/i386/64bit-avx.c, features/i386/64bit-avx512.c,
5712 features/i386/64bit-core.c, features/i386/64bit-linux.c,
5713 features/i386/64bit-mpx.c, features/i386/64bit-pkeys.c,
5714 features/i386/64bit-segments.c, features/i386/64bit-sse.c,
5715 features/i386/x32-core.c, features/riscv/32bit-cpu.c,
5716 features/riscv/32bit-csr.c, features/riscv/32bit-fpu.c,
5717 features/riscv/64bit-cpu.c, features/riscv/64bit-csr.c,
5718 features/riscv/64bit-fpu.c, features/tic6x-c6xp.c,
5719 features/tic6x-core.c, features/tic6x-gp.c, filename-seen-cache.h,
5720 findcmd.c, findvar.c, fork-child.c, gcore.c, gdb_bfd.c, gdb_bfd.h,
5721 gdb_proc_service.h, gdb_regex.c, gdb_select.h, gdb_usleep.c,
5722 gdbarch-selftests.c, gdbthread.h, gdbtypes.h, gnu-nat.c,
5723 go32-nat.c, guile/guile.c, guile/scm-ports.c,
5724 guile/scm-safe-call.c, guile/scm-type.c, i386-fbsd-nat.c,
5725 i386-fbsd-tdep.c, i386-go32-tdep.c, i386-linux-nat.c,
5726 i386-linux-tdep.c, i386-tdep.c, i387-tdep.c,
5727 ia64-libunwind-tdep.c, ia64-linux-nat.c, inf-child.c,
5728 inf-ptrace.c, infcall.c, infcall.h, infcmd.c, inferior-iter.h,
5729 inferior.c, inferior.h, inflow.c, inflow.h, infrun.c, infrun.h,
5730 inline-frame.c, language.h, linespec.c, linux-fork.c, linux-nat.c,
5731 linux-tdep.c, linux-thread-db.c, location.c, machoread.c,
5732 macrotab.h, main.c, maint.c, maint.h, memattr.c, memrange.h,
5733 mi/mi-cmd-break.h, mi/mi-cmd-env.c, mi/mi-cmd-stack.c,
5734 mi/mi-cmd-var.c, mi/mi-interp.c, mi/mi-main.c, mi/mi-parse.h,
5735 minsyms.c, mips-linux-tdep.c, namespace.h,
5736 nat/aarch64-linux-hw-point.c, nat/aarch64-linux-hw-point.h,
5737 nat/aarch64-linux.c, nat/aarch64-sve-linux-ptrace.c,
5738 nat/amd64-linux-siginfo.c, nat/fork-inferior.c,
5739 nat/linux-btrace.c, nat/linux-btrace.h, nat/linux-namespaces.c,
5740 nat/linux-nat.h, nat/linux-osdata.c, nat/linux-personality.c,
5741 nat/linux-procfs.c, nat/linux-ptrace.c, nat/linux-ptrace.h,
5742 nat/linux-waitpid.c, nat/mips-linux-watch.c,
5743 nat/mips-linux-watch.h, nat/ppc-linux.c, nat/x86-dregs.c,
5744 nat/x86-dregs.h, nat/x86-linux-dregs.c, nat/x86-linux.c,
5745 nto-procfs.c, nto-tdep.c, objfile-flags.h, objfiles.c, objfiles.h,
5746 obsd-nat.c, observable.h, osdata.c, p-valprint.c, parse.c,
5747 parser-defs.h, ppc-linux-nat.c, printcmd.c, probe.c, proc-api.c,
5748 procfs.c, producer.c, progspace.h, psymtab.h,
5749 python/py-framefilter.c, python/py-inferior.c, python/py-ref.h,
5750 python/py-type.c, python/python.c, record-btrace.c, record-full.c,
5751 record.c, record.h, regcache-dump.c, regcache.c, regcache.h,
5752 remote-fileio.c, remote-fileio.h, remote-sim.c, remote.c,
5753 riscv-tdep.c, rs6000-aix-tdep.c, rust-exp.y, s12z-tdep.c,
5754 selftest-arch.c, ser-base.c, ser-event.c, ser-pipe.c, ser-tcp.c,
5755 ser-unix.c, skip.c, solib-aix.c, solib-target.c, solib.c,
5756 source-cache.c, source.c, source.h, sparc-nat.c, spu-linux-nat.c,
5757 stack.c, stap-probe.c, symfile-add-flags.h, symfile.c, symfile.h,
5758 symtab.c, symtab.h, target-descriptions.c, target-descriptions.h,
5759 target-memory.c, target.c, target.h, target/waitstatus.c,
5760 target/waitstatus.h, thread-iter.h, thread.c, tilegx-tdep.c,
5761 top.c, top.h, tracefile-tfile.c, tracefile.c, tracepoint.c,
5762 tracepoint.h, tui/tui-io.c, ui-file.c, ui-out.h,
5763 unittests/array-view-selftests.c,
5764 unittests/child-path-selftests.c, unittests/cli-utils-selftests.c,
5765 unittests/common-utils-selftests.c,
5766 unittests/copy_bitwise-selftests.c, unittests/environ-selftests.c,
5767 unittests/format_pieces-selftests.c,
5768 unittests/function-view-selftests.c,
5769 unittests/lookup_name_info-selftests.c,
5770 unittests/memory-map-selftests.c, unittests/memrange-selftests.c,
5771 unittests/mkdir-recursive-selftests.c,
5772 unittests/observable-selftests.c,
5773 unittests/offset-type-selftests.c, unittests/optional-selftests.c,
5774 unittests/parse-connection-spec-selftests.c,
5775 unittests/ptid-selftests.c, unittests/rsp-low-selftests.c,
5776 unittests/scoped_fd-selftests.c,
5777 unittests/scoped_mmap-selftests.c,
5778 unittests/scoped_restore-selftests.c,
5779 unittests/string_view-selftests.c, unittests/style-selftests.c,
5780 unittests/tracepoint-selftests.c, unittests/unpack-selftests.c,
5781 unittests/utils-selftests.c, unittests/xml-utils-selftests.c,
5782 utils.c, utils.h, valarith.c, valops.c, valprint.c, value.c,
5783 value.h, varobj.c, varobj.h, windows-nat.c, x86-linux-nat.c,
5784 xml-support.c, xml-support.h, xml-tdesc.h, xstormy16-tdep.c,
5785 xtensa-linux-nat.c, dwarf2read.h: Change common to gdbsupport.
5786
5b0e2db4
AB
57872019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
5788
5789 * linespec.c (decode_digits_list_mode): Set explicit_line to a
5790 bool value.
5791 (decode_digits_ordinary): Set explicit_line field in sal.
5792 * symtab.c (skip_prologue_sal): Don't skip prologue for a
5793 symtab_and_line that was set on an explicit line number in
5794 assembler code. Do always update the recorded symtab and line if
5795 we do skip the prologue.
5796
0ba852ab
AB
57972019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
5798
5799 * breakpoint.c (set_breakpoint_location_function): Remove
5800 explicit_loc parameter.
5801 (momentary_breakpoint_from_master): Update call to
5802 set_breakpoint_location_function.
5803 (add_location_to_breakpoint): Likewise.
5804
b3a7d171
AB
58052019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
5806
5807 * riscv-tdep.c (riscv_features_from_gdbarch_info): Don't modify
5808 required features based on default bfd type when no specific bfd
5809 is present.
5810
1f6f6e21
PW
58112019-07-08 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5812
5813 * NEWS: Mention that GDB printf and eval commands can now print
5814 C-style and Ada-style convenience var strings without
5815 calling the inferior.
5816 * printcmd.c (printf_c_string): Locally print GDB internal var
5817 instead of transiting via the inferior.
5818 (printf_wide_c_string): Likewise.
5819
58202019-07-04 Alan Hayward <alan.hayward@arm.com>
ea142fbf 5821
5862c886 5822 PR breakpoints/25011
ea142fbf
AH
5823 * symfile.c (symbol_file_command): Call solib_create_inferior_hook.
5824
0598af48
TT
58252019-07-04 Tom Tromey <tom@tromey.com>
5826
5827 PR tui/24724:
5828 * tui/tui-winsource.c (tui_clear_source_content): Update.
5829 (tui_source_window_base::set_is_exec_point_at): Fix comment.
5830 (tui_update_breakpoint_info): Update.
5831 (tui_set_exec_info_content): Update.
5832 * tui/tui-source.c (tui_set_source_content_nil): Update.
5833 * tui/tui-disasm.c (tui_set_disassem_content): Don't set
5834 has_break.
5835 * tui/tui-data.h (enum tui_bp_flag): New.
5836 (tui_bp_flags): New enum flags type.
5837 (struct tui_source_element) <break_mode>: Change type. Rename
5838 from has_break.
5839 (TUI_BP_ENABLED, TUI_BP_DISABLED, TUI_BP_HIT)
5840 (TUI_BP_CONDITIONAL, TUI_BP_HARDWARE): Don't define. Now enum
5841 constants.
5842 * tui/tui-winsource.h: Fix comment.
5843
350fab54
AH
58442019-07-04 Alan Hayward <alan.hayward@arm.com>
5845
5846 * aarch32-linux-nat.h (VFP_REGS_SIZE): Remove define.
5847 * aarch64-linux-nat.c (fetch_fpregs_from_thread)
5848 (store_fpregs_to_thread)
5849 (aarch64_linux_nat_target::read_description): Use ARM_VFP3_REGS_SIZE.
5850 * arch/arm.h (IWMMXT_VEC_REGISTER_SIZE, ARM_CORE_REGS_SIZE)
5851 (ARM_FP_REGS_SIZE, ARM_VFP2_REGS_SIZE, ARM_VFP3_REGS_SIZE)
5852 (IWMMXT_REGS_SIZE): Add define.
5853 * arm-linux-nat.c (IWMMXT_REGS_SIZE): Remove define.
5854 (fetch_vfp_regs, store_vfp_regs)
5855 (arm_linux_nat_target::read_description): Use ARM_VFP3_REGS_SIZE.
5856 * arm-tdep.c (arm_register_g_packet_guesses): Use new defines.
5857
f0452268
AH
58582019-07-04 Alan Hayward <alan.hayward@arm.com>
5859
5860 * arch/arm-get-next-pcs.c (thumb_get_next_pcs_raw): Use ARM_
5861 defines.
5862 * arch/arm-linux.c (arm_linux_sigreturn_next_pc_offset): Likewise.
5863 * arch/arm.h (INT_REGISTER_SIZE) Rename from...
5864 (ARM_INT_REGISTER_SIZE): ...to this.
5865 (ARM_FP_REGISTER_SIZE) (ARM_VFP_REGISTER_SIZE): Add define.
5866 * arm-linux-tdep.c (ARM_LINUX_JB_ELEMENT_SIZE)
5867 (ARM_LINUX_SIZEOF_GREGSET, arm_linux_supply_gregset)
5868 (arm_linux_collect_gregset, supply_nwfpe_register)
5869 (collect_nwfpe_register, arm_linux_collect_nwfpe): Use ARM_
5870 defines.
5871 * arm-linux-tdep.h (ARM_LINUX_SIZEOF_NWFPE, NWFPE_FPSR_OFFSET)
5872 (NWFPE_FPCR_OFFSET, NWFPE_TAGS_OFFSET): Likewise
5873 * arm-nbsd-tdep.c (ARM_NBSD_JB_ELEMENT_SIZE): Likewise.
5874 * arm-tdep.c (arm_push_dummy_call, arm_extract_return_value)
5875 (arm_return_in_memory, arm_store_return_value)
5876 (arm_get_longjmp_target, arm_register_g_packet_guesses)
5877 (arm_record_ld_st_multiple): Likewise.
5878 * arm-tdep.h (FP_REGISTER_SIZE, VFP_REGISTER_SIZE): Remove.
5879 * arm-wince-tdep.c (ARM_WINCE_JB_ELEMENT_SIZE): Use ARM_ defines.
5880
e935475c
AH
58812019-07-04 Alan Hayward <alan.hayward@arm.com>
5882
5883 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Use
5884 AARCH64_DISPLACED_MODIFIED_INSNS.
5885 * aarch64-tdep.c (struct aarch64_displaced_step_data)
5886 (aarch64_displaced_step_copy_insn): Likewise.
5887 * aarch64-tdep.h (DISPLACED_MODIFIED_INSNS): Rename from..
5888 (AARCH64_DISPLACED_MODIFIED_INSNS): ...to this.
5889 * arm-linux-tdep.c (arm_linux_cleanup_svc): Use
5890 ARM_DISPLACED_MODIFIED_INSNS.
5891 * arm-tdep.c (arm_gdbarch_init): Likewise.
5892 * arm-tdep.h (DISPLACED_MODIFIED_INSNS): Rename from..
5893 (ARM_DISPLACED_MODIFIED_INSNS): ...to this.
5894 (struct arm_displaced_step_closure): Use
5895 ARM_DISPLACED_MODIFIED_INSNS.
5896
df0bb381
AH
58972019-07-04 Alan Hayward <alan.hayward@arm.com>
5898
5899 * features/Makefile: Remove unused xml files.
5900 * features/aarch64.xml: Remove.
5901 * features/i386/amd64-avx-avx512-linux.xml: Remove.
5902 * features/i386/amd64-avx-avx512.xml: Remove.
5903 * features/i386/amd64-avx-linux.xml: Remove.
5904 * features/i386/amd64-avx-mpx-avx512-pku-linux.xml: Remove.
5905 * features/i386/amd64-avx-mpx-avx512-pku.xml: Remove.
5906 * features/i386/amd64-avx-mpx-linux.xml: Remove.
5907 * features/i386/amd64-avx-mpx.xml: Remove.
5908 * features/i386/amd64-avx.xml: Remove.
5909 * features/i386/amd64-linux.xml: Remove.
5910 * features/i386/amd64-mpx-linux.xml: Remove.
5911 * features/i386/amd64-mpx.xml: Remove.
5912 * features/i386/amd64.xml: Remove.
5913 * features/i386/i386-avx-avx512-linux.xml: Remove.
5914 * features/i386/i386-avx-avx512.xml: Remove.
5915 * features/i386/i386-avx-linux.xml: Remove.
5916 * features/i386/i386-avx-mpx-avx512-pku-linux.xml: Remove.
5917 * features/i386/i386-avx-mpx-avx512-pku.xml: Remove.
5918 * features/i386/i386-avx-mpx-linux.xml: Remove.
5919 * features/i386/i386-avx-mpx.xml: Remove.
5920 * features/i386/i386-avx.xml: Remove.
5921 * features/i386/i386-linux.xml: Remove.
5922 * features/i386/i386-mmx-linux.xml: Remove.
5923 * features/i386/i386-mmx.xml: Remove.
5924 * features/i386/i386-mpx-linux.xml: Remove.
5925 * features/i386/i386-mpx.xml: Remove.
5926 * features/i386/i386.xml: Remove.
5927 * features/i386/x32-avx-avx512-linux.xml: Remove.
5928 * features/i386/x32-avx-linux.xml: Remove.
5929 * features/i386/x32-linux.xml: Remove.
5930
edd6266a
AH
59312019-07-04 Alan Hayward <alan.hayward@arm.com>
5932
5933 * regformats/aarch64.dat: Remove.
5934 * regformats/i386/amd64-avx-avx512-linux.dat: Remove.
5935 * regformats/i386/amd64-avx-linux.dat: Remove.
5936 * regformats/i386/amd64-avx-mpx-avx512-pku-linux.dat: Remove.
5937 * regformats/i386/amd64-avx-mpx-linux.dat: Remove.
5938 * regformats/i386/amd64-linux.dat: Remove.
5939 * regformats/i386/amd64-mpx-linux.dat: Remove.
5940 * regformats/i386/amd64.dat: Remove.
5941 * regformats/i386/i386-avx-avx512-linux.dat: Remove.
5942 * regformats/i386/i386-avx-linux.dat: Remove.
5943 * regformats/i386/i386-avx-mpx-avx512-pku-linux.dat: Remove.
5944 * regformats/i386/i386-avx-mpx-linux.dat: Remove.
5945 * regformats/i386/i386-linux.dat: Remove.
5946 * regformats/i386/i386-mmx-linux.dat: Remove.
5947 * regformats/i386/i386-mpx-linux.dat: Remove.
5948 * regformats/i386/i386.dat: Remove.
5949 * regformats/i386/x32-avx-avx512-linux.dat: Remove.
5950 * regformats/i386/x32-avx-linux.dat: Remove.
5951 * regformats/i386/x32-linux.dat: Remove.
5952
2b40fda7
AH
59532019-07-04 Alan Hayward <alan.hayward@arm.com>
5954
5955 * aarch64-tdep.c: Remove xml self tests.
5956 * amd64-linux-tdep.c: Likewise.
5957 * amd64-tdep.c: Likewise.
5958 * i386-linux-tdep.c: Likewise.
5959 * i386-tdep.c: Likewise.
5960
5f4ba3e7
PA
59612019-07-03 Pedro Alves <palves@redhat.com>
5962
5963 PR cli/24732
5964 * cli/cli-cmds.c (struct pipe_cmd_opts): New.
5965 (pipe_cmd_option_defs): New.
5966 (make_pipe_cmd_options_def_group): New.
5967 (pipe_command): Use gdb::option::process_options.
5968 (pipe_command_completer): New function.
5969 (_initialize_cli_cmds): Install completer for "pipe" command.
5970
3d9be6f5
PA
59712019-07-03 Pedro Alves <palves@redhat.com>
5972
5973 * cli/cli-option.c (union option_value) <string>: New field.
5974 (struct option_def_and_value): Add ctor, move ctor, dtor and
5975 use DISABLE_COPY_AND_ASSIGN.
5976 (option_def_and_value::clear_value): New.
5977 (parse_option, save_option_value_in_ctx, get_val_type_str)
5978 (add_setshow_cmds_for_options): Handle var_string.
5979 * cli-option.h (union option_def::var_address) <string>: New
5980 field.
5981 (struct string_option_def): New.
5982 * maint-test-options.c (struct test_options_opts): Add default
5983 ctor and use DISABLE_COPY_AND_ASSIGN.
5984 <string_opt>: New field.
5985 (test_options_opts::~test_options_opts): New.
5986 (test_options_opts::dump): Also dump "-string".
5987 (test_options_option_defs): Install "string.
5988
41fc454c
PA
59892019-07-03 Pedro Alves <palves@redhat.com>
5990
5991 * cli/cli-option.c (parse_option) <var_enum>: Don't return an
5992 option_value with a null enumeration.
5993 (complete_options): Save the option values in the context.
5994 (save_option_value_in_ctx): New, factored out from ...
5995 (process_options): ... here.
5996 * cli/cli-utils.c (get_ulongest): Don't advance PP until the end
5997 of the function.
5998 * maint-test-options.c (test_options_opts::dump): New, factored
5999 out from ...
6000 (maintenance_test_options_command_mode): ... here.
6001 (maintenance_test_options_command_completion_result): Delete.
6002 (maintenance_test_options_command_completion_text): Update
6003 comment.
6004 (maintenance_show_test_options_completion_result): Change
6005 prototype. Just print
6006 maintenance_test_options_command_completion_text.
6007 (save_completion_result): New.
6008 (maintenance_test_options_completer_mode): Pass options context to
6009 complete_options, and then save a dump.
6010 (_initialize_maint_test_options): Use add_cmd to install "maint
6011 show test-options-completion-result".
6012
fdbc9870
PA
60132019-07-03 Pedro Alves <palves@redhat.com>
6014
6015 * NEWS (New commands): Mention "with" and "maint with".
6016 * cli/cli-cmds.c (with_command_1, with_command_completer_1)
6017 (with_command, with_command_completer): New.
6018 (pipe_command): Adjust to new repeat_previous
6019 interface.
6020 (_initialize_cli_cmds): Install the "with" command and its "w"
6021 alias.
6022 * cli/cli-cmds.h (with_command_1, with_command_completer_1): New
6023 declarations.
6024 * cli/cli-setshow.c (parse_cli_var_uinteger)
6025 (parse_cli_var_zuinteger_unlimited, do_set_command): Handle empty
6026 argument strings for all var_types.
6027 (get_setshow_command_value_string): New, factored out from ...
6028 (do_show_command): ... this.
6029 * cli/cli-setshow.h: Include <string>.
6030 (get_setshow_command_value_string): Declare.
6031 * command.h (repeat_previous): Now returns const char *. Adjust
6032 comment.
6033 * maint.c: Include "cli/cli-cmds.h".
6034 (maintenance_with_cmd, maintenance_with_cmd_completer): New.
6035 (_initialize_maint_cmds): Register the "maintenance with" command.
6036 * top.c (repeat_previous): Move bits from pipe_command here:
6037 Return the saved command line, if any; error out if there's no
6038 command to relaunch.
6039
c6ac8931
PA
60402019-07-03 Pedro Alves <palves@redhat.com>
6041
6042 * NEWS (New commands): Mention "maint set/show test-settings"
6043 instead of "maint test-settings".
6044 * maint-test-settings.c (maintenance_test_settings_list): Delete.
6045 (maintenance_test_settings_set_list): Rename to ...
6046 (maintenance_set_test_settings_list): ... this.
6047 (maintenance_test_settings_show_list): Rename to ...
6048 (maintenance_show_test_settings_list): ... this.
6049 (maintenance_test_settings_cmd): Delete.
6050 (maintenance_test_settings_set_cmd): ...
6051 (maintenance_set_test_settings_cmd): ... this.
6052 (maintenance_test_settings_show_cmd): ...
6053 (maintenance_show_test_settings_cmd): ... this.
6054 (maintenance_test_settings_show_value_cmd):
6055 (maintenance_show_test_settings_value_cmd): ... this.
6056 (_initialize_maint_test_settings): No longer install the "maint
6057 test-settings" prefix command. Rename "maint test-settings set"
6058 to "maint set test-settings", and "maint test-settings show" to
6059 "maint show test-settings". Adjust all subcommands.
6060
d1fcf2fd
PA
60612019-07-03 Pedro Alves <palves@redhat.com>
6062
6063 * maint-test-settings.c: Fix file's intro comment. Replace all
6064 references to "test-options" with references to "test-settings",
6065 in comments.
6066
970f9d09
PA
60672019-07-03 Pedro Alves <palves@redhat.com>
6068
6069 * maint-test-settings.c (maintenance_test_settings_xxx)
6070 (maintenance_test_settings_yyy, maintenance_test_settings_zzz):
6071 New.
6072 (maintenance_test_settings_enums): Use them.
6073 (maintenance_test_settings_enum): Default to
6074 maintenance_test_settings_xxx.
6075 (_initialize_maint_test_settings): Initialize
6076 MAINTENANCE_TEST_SETTINGS_FILENAME.
6077
f3869b1a
SM
60782019-07-02 Simon Marchi <simon.marchi@polymtl.ca>
6079
6080 * breakpoint.h (remove_breakpoints_inf): Change return type to
6081 void, move function documentation here.
6082 * breakpoint.c (remove_breakpoints_inf): Change return type to
6083 void, move function documentation to header.
6084
54d66006
PA
60852019-07-02 Pedro Alves <palves@redhat.com>
6086
6087 * NEWS (Completion improvements): Mention "info threads".
6088 * thread.c (struct info_threads_opts, info_threads_option_defs)
6089 (make_info_threads_options_def_group): New.
6090 (info_threads_command): Use gdb::option::process_options.
6091 (info_threads_command_completer): New.
6092 (_initialize_thread): Use gdb::option::build_help to build the
6093 help text for "info threads".
6094
854f6088
SM
60952019-07-02 Simon Marchi <simon.marchi@polymtl.ca>
6096
6097 * defs.h (generic_load): Move from here...
6098 * symfile.h (generic_load): ... to here. Rename name parameter
6099 to args.
6100 * symfile.c (generic_load): Add comment.
6101
54ee4252
TT
61022019-07-01 Tom Tromey <tromey@adacore.com>
6103
6104 * dwarf2read.c
6105 (dw2_debug_names_iterator::find_vec_in_debug_names): Hoist
6106 declaration of without_params. Fix formatting.
6107
65392b3e
TT
61082019-07-01 Tom Tromey <tromey@adacore.com>
6109
6110 * ada-exp.y (find_primitive_type): Update.
6111 * ada-lang.h (ada_lookup_symbol): Update.
6112 * ada-lang.c (ada_lookup_symbol): Remove "is_a_field_of_this"
6113 parameter.
6114 (ada_lookup_encoded_symbol, ada_lookup_symbol_nonlocal): Update.
6115
7d7571f0
SDJ
61162019-06-28 Sergio Durigan Junior <sergiodj@redhat.com>
6117
6118 PR breakpoints/24541
6119 * gdbarch.c: Regenerate.
6120 * gdbarch.h: Regenerate.
6121 * gdbarch.sh: Add 'stap_adjust_register'.
6122 * i386-tdep.c: Include '<unordered_set>'.
6123 (i386_stap_adjust_register): New function.
6124 (i386_elf_init_abi): Register 'i386_stap_adjust_register'.
6125 * stap-probe.c (stap_parse_register_operand): Call
6126 'gdbarch_stap_adjust_register'.
6127
5af5392a
SDJ
61282019-06-28 Sergio Durigan Junior <sergiodj@redhat.com>
6129
6130 PR python/24742
6131 https://bugzilla.redhat.com/show_bug.cgi?id=1723564
6132 * python/python.c (do_start_initialization): Use 'xmalloc'
6133 instead of 'PyMem_Malloc'.
6134
10d06d82
TT
61352019-06-28 Tom Tromey <tromey@adacore.com>
6136
6137 * dwarf2read.c (partial_die_info::read): Prefer the linkage name
6138 for Ada.
6139
1b7f24cd
TT
61402019-06-27 Tom Tromey <tromey@adacore.com>
6141
6142 * arm-tdep.c (arm_objfile_data_key): Move lower. Change type to
6143 objfile_key.
6144 (arm_find_mapping_symbol, arm_record_special_symbol)
6145 (_initialize_arm_tdep): Update.
6146 (arm_objfile_data_free): Remove.
6147
3d507ff2
TT
61482019-06-27 Tom Tromey <tromey@adacore.com>
6149
6150 * cp-valprint.c (cp_print_value_fields): Pass opts, not options,
6151 to cp_print_static_field.
6152
762c164d
TT
61532019-06-26 Tom Tromey <tromey@adacore.com>
6154
6155 * minsyms.c (lookup_minimal_symbol_solib_trampoline): Remove.
6156 * minsyms.h (lookup_minimal_symbol_solib_trampoline): Don't
6157 declare.
6158
aa2f9bcf
AH
61592019-06-26 Alan Hayward <alan.hayward@arm.com>
6160
6161 * features/aarch64-core.c (create_feature_aarch64_core):
6162 Regenerate.
6163 * features/aarch64-core.xml: Add cpsr flags.
6164
3426ae57
AH
61652019-06-26 Alan Hayward <alan.hayward@arm.com>
6166
6167 * arm-tdep.c (arm_gnu_triplet_regexp): New function.
6168 (arm_gdbarch_init): Add arm_gnu_triplet_regexp.
6169
4838e44c
SM
61702019-06-25 Simon Marchi <simon.marchi@polymtl.ca>
6171
6172 * arm-tdep.c (struct arm_per_objfile) <section_maps_sorted>: New
6173 field.
6174 (arm_find_mapping_symbol): Sort mapping symbol vectors on first
6175 use.
6176 (arm_record_special_symbol): Don't insert new symbol in sorted
6177 position, push it at the end.
6178
54cc7474
SM
61792019-06-25 Simon Marchi <simon.marchi@polymtl.ca>
6180
6181 * arm-tdep.c (struct arm_mapping_symbol) (operator <): New.
6182 (arm_mapping_symbol_s): Remove.
6183 (DEF_VEC_O(arm_mapping_symbol_s)): Remove.
6184 (arm_mapping_symbol_vec): New typedef.
6185 (struct arm_per_objfile): Add constructor.
6186 <section_maps>: Change type to
6187 std::unique_ptr<arm_mapping_symbol_vec[]>.
6188 (arm_compare_mapping_symbols): Remove.
6189 (arm_find_mapping_symbol): Adjust to section_maps type change.
6190 (arm_objfile_data_free): Call delete on arm_per_objfile.
6191 (arm_record_special_symbol): Adjust to section_maps type change.
6192 Allocate arm_per_objfile with new.
6193
b65b566c
PW
61942019-06-25 Philippe Waroquiers <philippe.waroquiers@skynet.be>
6195
6196 * cli/cli-cmds.c (alias_command): Compare the alias prefix
6197 with the command prefix.
6198
c2fc64f5
TT
61992019-06-25 Tom Tromey <tom@tromey.com>
6200
6201 * tui/tui-wingeneral.c (tui_delete_win): Remove "return".
6202 * tui/tui-data.c (~tui_gen_win_info): Remove "if".
6203
fb54fa76
TT
62042019-06-25 Tom Tromey <tom@tromey.com>
6205
6206 * tui/tui-layout.c (init_and_make_win): Assert on unrecognized
6207 type.
6208 * tui/tui-data.h (struct tui_gen_win_info): Make constructor
6209 protected.
6210
f7952c57
TT
62112019-06-25 Tom Tromey <tom@tromey.com>
6212
6213 * tui/tui-winsource.c
6214 (tui_source_window_base::set_is_exec_point_at): Add check against
6215 LOA_ADDRESS.
6216
17568d78
TT
62172019-06-25 Tom Tromey <tom@tromey.com>
6218
6219 * tui/tui-source.c (tui_set_source_content): Don't check before
6220 xfree.
6221 * tui/tui-disasm.c (tui_disassemble): Don't check before xfree.
6222
53e7cdba
TT
62232019-06-25 Tom Tromey <tom@tromey.com>
6224
6225 * tui/tui-winsource.h (tui_update_source_window_as_is)
6226 (tui_alloc_source_buffer, tui_line_is_displayed)
6227 (tui_addr_is_displayed): Change type of win_info.
6228 * tui/tui-winsource.c (tui_update_source_window_as_is)
6229 (tui_clear_source_content, tui_show_source_line)
6230 (tui_show_source_content, tui_source_window_base::refill)
6231 (tui_source_window_base::set_is_exec_point_at)
6232 (tui_source_window_base::set_is_exec_point_at)
6233 (tui_update_breakpoint_info, tui_set_exec_info_content): Update.
6234 (tui_alloc_source_buffer, tui_line_is_displayed)
6235 (tui_addr_is_displayed): Change type of win_info. Update.
6236 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
6237 (tui_source_window_base::do_make_visible_with_new_height):
6238 Update.
6239 * tui/tui-source.c (tui_set_source_content)
6240 (tui_set_source_content_nil)
6241 (tui_source_window::do_scroll_vertical): Update.
6242 * tui/tui-layout.c (show_layout): Update.
6243 * tui/tui-disasm.c (tui_set_disassem_content)
6244 (tui_disasm_window::do_scroll_vertical): Update.
6245 * tui/tui-data.h (tui_win_content): Remove.
6246 (struct tui_gen_win_info) <content, content_size>: Remove.
6247 (struct tui_source_element): Add initializers and destructor.
6248 (union tui_which_element, struct tui_win_element): Remove.
6249 (struct tui_source_window_base) <content>: New field.
6250 (struct tui_data_window): Remove destructor.
6251 (tui_alloc_content, tui_free_win_content)
6252 (tui_free_all_source_wins_content): Don't declare.
6253 * tui/tui-data.c (tui_initialize_static_data): Update.
6254 (init_content_element, tui_alloc_content): Remove.
6255 (~tui_gen_win_info): Update.
6256 (~tui_data_window, tui_free_all_source_wins_content)
6257 (tui_free_win_content, free_content, free_content_elements):
6258 Remove.
6259
7908abbf
TT
62602019-06-25 Tom Tromey <tom@tromey.com>
6261
6262 * tui/tui-winsource.h (tui_clear_source_content)
6263 (tui_erase_source_content, tui_show_source_content): Change type
6264 of win_info.
6265 * tui/tui-winsource.c (tui_clear_source_content)
6266 (tui_erase_source_content, tui_show_source_content): Change type
6267 of win_info.
6268 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
6269 * tui/tui-source.h (tui_set_source_content_nil): Change type of
6270 win_info.
6271 * tui/tui-source.c (tui_set_source_content_nil): Change type of
6272 win_info.
6273 * tui/tui-layout.c (show_source_or_disasm_and_command): Update.
6274
02c28df0
TT
62752019-06-25 Tom Tromey <tom@tromey.com>
6276
6277 * tui/tui-winsource.c (tui_clear_source_content)
6278 (tui_source_window_base::set_is_exec_point_at): Update.
6279 * tui/tui-source.c (tui_set_source_content_nil): Update.
6280 * tui/tui-data.h (struct tui_source_element) <is_exec_point>: Now
6281 a bool.
6282 * tui/tui-data.c (init_content_element): Update.
6283
6658b1bf
TT
62842019-06-25 Tom Tromey <tom@tromey.com>
6285
6286 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Update.
6287 * tui/tui-win.c (make_invisible_and_set_new_height): Update.
6288 * tui/tui-layout.c (init_and_make_win): Update.
6289 * tui/tui.h (enum tui_win_type): Update.
6290 * tui/tui-data.h (tui_win_is_auxiliary): Rename from
6291 tui_win_is_auxillary.
6292 * tui/tui-data.c (tui_win_is_auxiliary): Rename from
6293 tui_win_is_auxillary.
6294
21e1c91e
TT
62952019-06-25 Tom Tromey <tom@tromey.com>
6296
6297 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Update.
6298 * tui/tui-windata.c (tui_data_window::first_data_item_displayed)
6299 (tui_delete_data_content_windows, tui_display_all_data)
6300 (tui_data_window::do_scroll_vertical, tui_display_data_from):
6301 Update.
6302 * tui/tui-win.c (tui_data_window::set_new_height): Simplify.
6303 * tui/tui-regs.c (tui_last_regs_line_no)
6304 (tui_line_from_reg_element_no, tui_first_reg_element_no_inline)
6305 (tui_show_registers): Update.
6306 (tui_show_register_group): Return void. Update.
6307 (tui_display_registers_from, tui_display_reg_element_at_line)
6308 (tui_display_registers_from_line, tui_check_register_values):
6309 Update.
6310 * tui/tui-data.h (union tui_which_element) <data_window>: Remove
6311 member.
6312 (struct tui_data_window) <regs_content>: Now a std::vector.
6313 <regs_content_count>: Remove.
6314 (tui_add_content_elements, tui_free_data_content): Don't declare.
6315 * tui/tui-data.c (tui_data_window::clear_detail): Update.
6316 (init_content_element): Remove DATA_WIN case. Add assert.
6317 (tui_add_content_elements): Remove.
6318 (tui_data_window): Update.
6319 (tui_free_data_content): Remove.
6320 (free_content_elements): Remove DATA_WIN case.
6321
115ac53b
TT
63222019-06-25 Tom Tromey <tom@tromey.com>
6323
6324 * tui/tui-data.c (tui_data_item_window): Update.
6325 * tui/tui-windata.h (tui_check_data_values): Don't declare.
6326 * tui/tui-windata.c (tui_display_all_data)
6327 (tui_display_data_from_line): Update.
6328 (tui_check_data_values): Remove.
6329 * tui/tui-regs.c (tui_show_register_group)
6330 (tui_display_reg_element_at_line): Update.
6331 * tui/tui-hooks.c (tui_register_changed)
6332 (tui_refresh_frame_and_register_information): Call
6333 tui_check_register_values.
6334 * tui/tui-data.h (struct tui_data_window) <data_content,
6335 data_content_count, data_type>: Remove.
6336 (enum tui_data_type): Remove.
6337
6338 * tui/tui-data.c (tui_data_window::clear_detail)
6339 (~tui_data_window): Update.
6340
eaf9738b
TT
63412019-06-25 Tom Tromey <tom@tromey.com>
6342
6343 * tui/tui-windata.h (tui_first_data_item_displayed): Don't
6344 declare.
6345 * tui/tui-windata.c (tui_data_window::first_data_item_displayed):
6346 Rename from tui_first_data_item_displayed. Update.
6347 (tui_data_window::refresh_all)
6348 (tui_data_window::do_scroll_vertical): Update.
6349 * tui/tui-data.h (struct tui_data_window)
6350 <first_data_item_displayed>: Declare new method.
6351
31ca4723
TT
63522019-06-25 Tom Tromey <tom@tromey.com>
6353
6354 * tui/tui-data.h (tui_init_generic_part): Don't declare.
6355 * tui/tui-data.c (tui_init_generic_part): Remove, moving
6356 contents...
6357 (tui_initialize_static_data): ...here.
6358
41bcff7f
TT
63592019-06-25 Tom Tromey <tom@tromey.com>
6360
6361 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
6362 (tui_display_registers_from, tui_check_register_values): Update.
6363 (tui_display_register): Remove win_info parameter; update.
6364 (tui_get_register): Change type of parameters.
6365 * tui/tui-data.h (struct tui_data_element): Remove.
6366 (union tui_which_element) <data>: Remove.
6367 <data_window>: Change type.
6368 (struct tui_data_item_window): New.
6369 * tui/tui-data.c (init_content_element): Remove DATA_ITEM_WIN
6370 case. Add assert.
6371 (~tui_data_item_window): New destructor.
6372 (free_content_elements): Remove DATA_ITEM_WIN case.
6373
d2802c33
TT
63742019-06-25 Tom Tromey <tom@tromey.com>
6375
6376 * tui/tui.h (enum tui_win_type) <MAX_WINDOWS, UNDEFINED_WIN>:
6377 Remove.
6378
dd835f8b
TT
63792019-06-25 Tom Tromey <tom@tromey.com>
6380
6381 * tui/tui-data.h (struct tui_command_element): Remove.
6382 (union tui_which_element) <command>: Remove.
6383 * tui/tui-data.c (init_content_element): Remove CMD_WIN case. Add
6384 assert.
6385 (free_content_elements): Remove CMD_WIN case.
6386
bd7db367
TT
63872019-06-25 Tom Tromey <tom@tromey.com>
6388
6389 * tui/tui-layout.c (tui_set_layout): Update.
6390 * tui/tui-data.h (struct tui_layout_def) <split>: Remove.
6391 * tui/tui-data.c (layout_def): Update.
6392
3add462f
TT
63932019-06-25 Tom Tromey <tom@tromey.com>
6394
6395 * tui/tui-wingeneral.c (tui_refresh_all): Update.
6396 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
6397 (tui_source_window_base::set_new_height): Update.
6398 * tui/tui-stack.c (tui_make_status_line): Change parameter type.
6399 Update.
6400 (tui_set_locator_fullname, tui_set_locator_info)
6401 (tui_show_frame_info): Update.
6402 * tui/tui-source.c (tui_set_source_content)
6403 (tui_source_is_displayed): Update.
6404 * tui/tui-layout.c (show_source_disasm_command, show_data)
6405 (show_source_or_disasm_and_command): Update.
6406 * tui/tui-disasm.c (tui_set_disassem_content)
6407 (tui_get_begin_asm_address): Update.
6408 * tui/tui-data.h (struct tui_locator_element): Remove.
6409 (union tui_which_element) <locator>: Remove.
6410 (struct tui_locator_window): New.
6411 (tui_locator_win_info_ptr): Change return type.
6412 * tui/tui-data.c (_locator): Change type.
6413 (tui_locator_win_info_ptr): Change return type.
6414 (init_content_element): Remove LOCATOR_WIN case. Add assert.
6415 (tui_alloc_content): Add assert.
6416
489e9d8b
TT
64172019-06-25 Tom Tromey <tom@tromey.com>
6418
6419 * tui/tui-winsource.c
6420 (tui_exec_info_window::maybe_allocate_content): New method.
6421 (tui_set_exec_info_content, tui_show_exec_info_content): Update.
6422 * tui/tui-layout.c (init_and_make_win): Add EXEC_INFO_WIN case.
6423 (make_source_or_disasm_window): Add cast.
6424 * tui/tui-data.h (union tui_which_element) <simple_string>:
6425 Remove.
6426 (struct tui_source_info): New.
6427 (struct tui_source_window_base) <execution_info>: Change type.
6428 * tui/tui-data.c (init_content_element): Remove EXEC_INFO_WIN
6429 case, and add assert.
6430 (tui_alloc_content): Add assert.
6431
c3fabb7d
TT
64322019-06-25 Tom Tromey <tom@tromey.com>
6433
6434 * tui/tui-data.h (tui_alloc_win_info): Don't declare.
6435 * tui/tui-layout.c (init_and_make_win): Use "new" directly.
6436 * tui/tui-data.c (tui_alloc_win_info): Remove.
6437
bbc228ee
TT
64382019-06-25 Tom Tromey <tom@tromey.com>
6439
6440 * tui/tui-win.c (tui_set_win_focus_to): Don't check window type.
6441 * tui/tui-wingeneral.c (tui_unhighlight_win): Check
6442 can_highlight.
6443
5fcee43a
TT
64442019-06-25 Tom Tromey <tom@tromey.com>
6445
6446 * tui/tui-win.c (tui_source_window_base::update_tab_width): Call
6447 make_visible_with_new_height method.
6448 (tui_win_info::make_visible_with_new_height): New method.
6449 (tui_source_window_base::do_make_visible_with_new_height)
6450 (tui_data_window::do_make_visible_with_new_height)
6451 (tui_cmd_window::do_make_visible_with_new_height): New methods.
6452 (make_visible_with_new_height): Remove.
6453 (tui_resize_all, tui_adjust_win_heights): Use
6454 make_visible_with_new_height method.
6455 * tui/tui-data.h (struct tui_win_info)
6456 <do_make_visible_with_new_height, make_visible_with_new_height>:
6457 New methods.
6458 (struct tui_source_window_base, struct tui_data_window)
6459 (struct tui_cmd_window) <do_make_visible_with_new_height>: New
6460 methods.
6461
d83f1fe6
TT
64622019-06-25 Tom Tromey <tom@tromey.com>
6463
6464 * tui/tui-win.c (tui_source_window_base::update_tab_width): New
6465 method.
6466 (update_tab_width): Call update_tab_width method.
6467 * tui/tui-data.h (struct tui_win_info)
6468 (struct tui_source_window_base) <update_tab_width>: New methods.
6469
17374de4
TT
64702019-06-25 Tom Tromey <tom@tromey.com>
6471
6472 * tui/tui-wingeneral.h (tui_make_window): Change type of "box_it"
6473 parameter.
6474 * tui/tui-wingeneral.c (tui_make_window): Change type of "box_it"
6475 parameter.
6476 (tui_gen_win_info::make_visible): Update.
6477 * tui/tui-layout.c (init_and_make_win): Change type of "box_it"
6478 parameter.
6479 * tui/tui-data.h (enum tui_box): New enum.
6480 (BOX_WINDOW, DONT_BOX_WINDOW): Remove defines.
6481
f936bca2
TT
64822019-06-25 Tom Tromey <tom@tromey.com>
6483
6484 * tui/tui-layout.c (make_source_or_disasm_window): Always use
6485 init_and_make_win for EXEC_INFO_WIN.
6486 * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>: No
6487 longer inline.
6488 (struct tui_win_info) <~tui_win_info>: Inline.
6489 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
6490 Don't declare.
6491 * tui/tui-data.c (source_win, disasm_win): Remove globals.
6492 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
6493 Remove.
6494 (tui_initialize_static_data): Update.
6495 (~tui_gen_win_info): Handle more cleanup here.
6496 (~tui_source_window_base): Delete "execution_info".
6497 (~tui_win_info): Move code to ~tui_gen_win_info; remove.
6498
d6ba6a11
TT
64992019-06-25 Tom Tromey <tom@tromey.com>
6500
6501 * tui/tui-layout.c (make_command_window): Don't set
6502 can_highlight.
6503 (show_source_disasm_command): Call the reset method.
6504 (show_data): Don't set can_highlight. Call the reset method.
6505 (tui_gen_win_info::reset): Rename from init_gen_win_info
6506 (init_and_make_win): Simplify. Return tui_gen_win_info.
6507 (show_source_or_disasm_and_command): Call the reset method.
6508 * tui/tui-data.h (struct tui_gen_win_info) <reset>: New method.
6509 (struct tui_cmd_window): Set can_highlight.
6510
48a3bd16
TT
65112019-06-25 Tom Tromey <tom@tromey.com>
6512
6513 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Rename
6514 from make_visible.
6515 (tui_make_visible, tui_make_invisible): Rewrite.
6516 (tui_win_info::make_visible): Remove.
6517 (tui_source_window_base::make_visible): Update.
6518 * tui/tui-data.h (struct tui_gen_win_info) <make_visible>: New
6519 method. Moved from...
6520 (struct tui_win_info) <make_visible>: ...here.
6521
c3bd716f
TT
65222019-06-25 Tom Tromey <tom@tromey.com>
6523
6524 * tui/tui-winsource.c
6525 (tui_source_window_base::do_scroll_horizontal): Remove direction
6526 parameter.
6527 * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Remove
6528 direction parameter.
6529 * tui/tui-win.c (tui_win_info::forward_scroll)
6530 (tui_win_info::backward_scroll, tui_win_info::left_scroll)
6531 (tui_win_info::right_scroll): Update.
6532 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Remove
6533 direction parameter.
6534 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Remove
6535 direction parameter.
6536 * tui/tui-data.h (enum tui_scroll_direction): Remove.
6537 (struct tui_win_info) <do_scroll_vertical, do_scroll_horizontal>:
6538 Remove direction parameter.
6539 (struct tui_source_window_base, struct tui_source_window)
6540 (struct tui_disasm_window, struct tui_data_window)
6541 (struct tui_cmd_window): Update.
6542
21c32dca
TT
65432019-06-25 Tom Tromey <tom@tromey.com>
6544
6545 * tui/tui-winsource.h (tui_set_exec_info_content)
6546 (tui_show_exec_info_content, tui_erase_exec_info_content)
6547 (tui_clear_exec_info_content, tui_update_exec_info): Change
6548 argument to tui_source_window_base.
6549 * tui/tui-winsource.c (tui_set_exec_info_content)
6550 (tui_show_exec_info_content, tui_erase_exec_info_content)
6551 (tui_clear_exec_info_content, tui_update_exec_info): Change
6552 argument to tui_source_window_base.
6553
73fbdc65
TT
65542019-06-25 Tom Tromey <tom@tromey.com>
6555
6556 * tui/tui-winsource.h (tui_set_exec_info_content): Return void.
6557 * tui/tui-winsource.c (tui_set_exec_info_content): Return void.
6558
33325343
TT
65592019-06-25 Tom Tromey <tom@tromey.com>
6560
6561 * tui/tui-winsource.c (tui_set_exec_info_content): Remove NULL
6562 check.
6563
29d2c474
TT
65642019-06-25 Tom Tromey <tom@tromey.com>
6565
6566 * tui/tui-winsource.h (tui_alloc_source_buffer): Change return
6567 type to void.
6568 * tui/tui-winsource.c (tui_alloc_source_buffer): Change return
6569 type to void.
6570 * tui/tui-source.c (tui_set_source_content): Update.
6571 * tui/tui-disasm.c (tui_set_disassem_content): Update.
6572
152f3f4b
TT
65732019-06-25 Tom Tromey <tom@tromey.com>
6574
6575 * tui/tui-win.c (window_name_completer, tui_set_focus)
6576 (tui_all_windows_info): Use name method.
6577 * tui/tui-data.h (struct tui_gen_win_info)
6578 (struct tui_source_window, struct tui_disasm_window)
6579 (struct tui_data_window, struct tui_cmd_window) <name>: New
6580 method.
6581 (tui_win_name): Don't declare.
6582 * tui/tui-data.c (tui_partial_win_by_name): Use name method.
6583 (tui_win_name): Remove.
6584
be4da588
TT
65852019-06-25 Tom Tromey <tom@tromey.com>
6586
6587 * tui/tui-winsource.h (tui_update_source_window)
6588 (tui_update_source_window_as_is): Change parameter type.
6589 * tui/tui-winsource.c (tui_update_source_window): Change win_info
6590 to be a tui_source_window_base.
6591 (tui_update_source_window_as_is): Likewise.
6592 * tui/tui-win.c (make_visible_with_new_height): Update.
6593
5b81daba
TT
65942019-06-25 Tom Tromey <tom@tromey.com>
6595
6596 * tui/tui-winsource.c (tui_erase_source_content)
6597 (tui_show_source_content, tui_show_exec_info_content)
6598 (tui_erase_exec_info_content): Use refresh_window method.
6599 * tui/tui-wingeneral.h (tui_refresh_win): Don't declare.
6600 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Rename
6601 from tui_refresh_win.
6602 (tui_data_window::refresh_window): New method.
6603 (tui_win_info::refresh, tui_source_window_base::refresh)
6604 (tui_refresh_all): Use refresh_window method.
6605 * tui/tui-stack.c (tui_show_locator_content): Call refresh_window
6606 method.
6607 * tui/tui-regs.c (tui_display_register): Call refresh_window
6608 method.
6609 * tui/tui-layout.c (show_source_disasm_command)
6610 (show_source_or_disasm_and_command): Call refresh_window method.
6611 * tui/tui-data.h (struct tui_gen_win_info)
6612 (struct tui_data_window, struct tui_cmd_window) <refresh_window>:
6613 New method.
6614
cb2ce893
TT
66152019-06-25 Tom Tromey <tom@tromey.com>
6616
6617 * tui/tui.c (tui_rl_other_window, tui_enable)
6618 (tui_is_window_visible, tui_get_command_dimension): Update.
6619 * tui/tui-winsource.c (tui_update_source_window_as_is)
6620 (tui_clear_source_content, tui_erase_source_content)
6621 (tui_show_source_line, tui_source_window_base::refill)
6622 (tui_source_window_base::do_scroll_horizontal)
6623 (tui_source_window_base::set_is_exec_point_at)
6624 (tui_update_breakpoint_info, tui_set_exec_info_content)
6625 (tui_alloc_source_buffer, tui_line_is_displayed)
6626 (tui_addr_is_displayed): Update.
6627 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win)
6628 (tui_check_and_display_highlight_if_needed)
6629 (tui_win_info::make_visible, tui_win_info::refresh)
6630 (tui_refresh_all): Update.
6631 * tui/tui-windata.c (tui_first_data_item_displayed)
6632 (tui_delete_data_content_windows, tui_erase_data_content)
6633 (tui_display_all_data, tui_data_window::refresh_all)
6634 (tui_check_data_values): Update.
6635 * tui/tui-win.c (window_name_completer, tui_update_gdb_sizes)
6636 (tui_set_win_focus_to, tui_win_info::forward_scroll)
6637 (tui_win_info::backward_scroll, tui_refresh_all_win)
6638 (tui_resize_all, tui_set_focus, tui_all_windows_info)
6639 (update_tab_width, tui_set_win_height, tui_adjust_win_heights)
6640 (tui_source_window_base::set_new_height)
6641 (tui_data_window::set_new_height)
6642 (make_invisible_and_set_new_height)
6643 (make_visible_with_new_height, new_height_ok)
6644 (parse_scrolling_args): Update.
6645 * tui/tui-stack.c (tui_show_frame_info): Update.
6646 * tui/tui-source.c (tui_set_source_content)
6647 (tui_set_source_content_nil, tui_source_is_displayed)
6648 (tui_source_window::do_scroll_vertical): Update.
6649 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
6650 (tui_display_registers_from, tui_display_reg_element_at_line)
6651 (tui_check_register_values, tui_reg_command): Update.
6652 * tui/tui-layout.c (tui_default_win_height)
6653 (show_source_disasm_command, show_data, init_and_make_win)
6654 (show_source_or_disasm_and_command): Update.
6655 * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts)
6656 (tui_redisplay_readline, tui_mld_flush)
6657 (tui_mld_erase_entire_line, tui_mld_getc, tui_cont_sig)
6658 (tui_getc): Update.
6659 * tui/tui-disasm.c (tui_set_disassem_content)
6660 (tui_disasm_window::do_scroll_vertical): Update.
6661 * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>:
6662 Now virtual.
6663 (struct tui_win_info): Derive from tui_gen_win_info.
6664 <~tui_win_info>: Mark as override.
6665 <generic>: Remove member.
6666 * tui/tui-data.c (tui_cmd_window::clear_detail, tui_next_win)
6667 (tui_prev_win, tui_partial_win_by_name, tui_win_info)
6668 (~tui_data_window, ~tui_win_info)
6669 (tui_free_all_source_wins_content): Update.
6670 * tui/tui-command.c (tui_refresh_cmd_win): Update.
6671
ab313b35
TT
66722019-06-25 Tom Tromey <tom@tromey.com>
6673
6674 * tui/tui-layout.c (init_and_make_win): Use new.
6675 * tui/tui-data.h (struct tui_gen_win_info): Add constructor,
6676 destructor, initializers.
6677 (tui_alloc_generic_win_info): Don't declare.
6678 * tui/tui-data.c (_locator): Add argument to constructor.
6679 (source_win, disasm_win): New globals.
6680 (exec_info): Remove.
6681 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
6682 Update.
6683 (tui_alloc_generic_win_info): Remove.
6684 (init_content_element): Use new.
6685 (tui_win_info::tui_win_info): Update.
6686 (free_content_elements) <case DATA_WIN>: Use delete.
6687
dc2c33e4
TT
66882019-06-25 Tom Tromey <tom@tromey.com>
6689
6690 * tui/tui-wingeneral.c (tui_refresh_win): Update.
6691 * tui/tui-windata.c (tui_first_data_item_displayed)
6692 (tui_delete_data_content_windows): Update.
6693 * tui/tui-win.c (tui_data_window::set_new_height): Update.
6694 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
6695 (tui_display_registers_from, tui_check_register_values): Update.
6696 * tui/tui-data.h (union tui_which_element) <data_window>: Now a
6697 pointer.
6698 * tui/tui-data.c (init_content_element): Update. Allocate the new
6699 window.
6700 (tui_free_data_content): Update.
6701 (free_content_elements) <case DATA_WIN>: Free the window.
6702
214a5cbe
TT
67032019-06-25 Tom Tromey <tom@tromey.com>
6704
6705 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win):
6706 Update.
6707 * tui/tui-layout.c (make_command_window)
6708 (show_source_disasm_command, show_data, init_and_make_win)
6709 (show_source_or_disasm_and_command): Update.
6710 * tui/tui-data.h (struct tui_win_info) <set_highlight>: New
6711 method.
6712 <can_highight, is_highlighted>: Now bool.
6713 (tui_set_win_highlight): Don't declare.
6714 * tui/tui-data.c (tui_set_win_highlight): Remove.
6715
8e2daf15
TT
67162019-06-25 Tom Tromey <tom@tromey.com>
6717
6718 * tui/tui-wingeneral.c (make_visible): Remove check of window
6719 type.
6720
8903bd8a
TT
67212019-06-25 Tom Tromey <tom@tromey.com>
6722
6723 * tui/tui-win.c (tui_win_info::max_height)
6724 (tui_cmd_window::max_height): New methods.
6725 (new_height_ok): Call max_height.
6726 * tui/tui-data.h (struct tui_win_info, struct tui_cmd_window)
6727 <max_height>: New method.
6728
3f02ce1e
TT
67292019-06-25 Tom Tromey <tom@tromey.com>
6730
6731 * tui/tui-win.c (tui_source_window_base::set_new_height)
6732 (tui_data_window::set_new_height): New methods.
6733 (make_invisible_and_set_new_height): Call set_new_height method.
6734 * tui/tui-data.h (struct tui_win_info)
6735 (struct tui_source_window_base, struct tui_data_window)
6736 <set_new_height>: New method.
6737
1825f487
TT
67382019-06-25 Tom Tromey <tom@tromey.com>
6739
6740 * tui/tui.c (tui_rl_other_window): Call the refresh_all method.
6741 * tui/tui-windata.c (tui_data_window::refresh_all): Rename from
6742 tui_refresh_data_win.
6743 * tui/tui-win.c (tui_source_window_base::refresh_all): New
6744 method.
6745 (tui_refresh_all_win): Call the refresh_all method.
6746 (tui_set_focus): Likewise.
6747 * tui/tui-data.h (struct tui_win_info) <refresh_all>: New method.
6748 (struct tui_source_window_base, struct tui_data_window) <refresh>:
6749 Likewise.
6750
ad54d15b
TT
67512019-06-25 Tom Tromey <tom@tromey.com>
6752
6753 * tui/tui-winsource.h (tui_refill_source_window)
6754 (tui_set_is_exec_point_at): Don't declare.
6755 * tui/tui-winsource.c (tui_update_source_windows_with_addr)
6756 (tui_source_window_base::refill): Rename from
6757 tui_refill_source_window.
6758 (tui_source_window_base::do_scroll_horizontal): Update.
6759 (tui_source_window_base::set_is_exec_point_at): Rename from
6760 tui_set_is_exec_point_at.
6761 (tui_update_all_breakpoint_info): Update.
6762 * tui/tui-stack.c (tui_show_frame_info): Update.
6763 * tui/tui-layout.c (show_data): Add cast.
6764 * tui/tui-hooks.c (tui_redisplay_source): Call refill method.
6765 * tui/tui-data.h (struct tui_source_window_base) <refill,
6766 set_is_exec_point_at>: New methods.
6767 (tui_source_windows, tui_add_to_source_windows): Update types.
6768 (tui_add_to_source_windows): Remove redundant declaration.
6769 * tui/tui-data.c (source_windows): Store tui_source_window_base.
6770 (tui_source_windows): Change return type.
6771 (tui_clear_source_windows_detail): Update.
6772 (tui_add_to_source_windows): Change type of parameter.
6773 (tui_free_all_source_wins_content): Update.
6774
2042b506
TT
67752019-06-25 Tom Tromey <tom@tromey.com>
6776
6777 * tui/tui-wingeneral.c (tui_win_info::refresh)
6778 (tui_source_window_base::refresh): New methods.
6779 (tui_refresh_all): Call the refresh method.
6780 * tui/tui-data.h (struct tui_win_info)
6781 (struct tui_source_window_base) <refresh>: New method.
6782
56122977
TT
67832019-06-25 Tom Tromey <tom@tromey.com>
6784
6785 * tui/tui.h (tui_is_window_visible): Return bool.
6786 * tui/tui.c (tui_is_window_visible): Return bool.
6787 * tui/tui-wingeneral.c (tui_make_window, make_visible)
6788 (tui_make_visible, tui_make_invisible)
6789 (tui_win_info::make_visible)
6790 (tui_source_window_base::make_visible, make_all_visible)
6791 (tui_make_all_visible, tui_make_all_invisible): Update.
6792 * tui/tui-windata.c (tui_delete_data_content_windows): Update.
6793 * tui/tui-data.h (struct tui_gen_win_info) <is_visible>: Now
6794 bool.
6795 (struct tui_win_info, struct tui_source_window_base)
6796 (struct tui_cmd_window) <make_visible>: Change parameter to bool.
6797 * tui/tui-data.c (tui_init_generic_part): Update.
6798
cda37efb
TT
67992019-06-25 Tom Tromey <tom@tromey.com>
6800
6801 * tui/tui-wingeneral.c (tui_win_info::make_visible)
6802 (tui_source_window_base::make_visible): New methods.
6803 (make_all_visible): Make method call.
6804 * tui/tui-data.h (struct tui_win_info) <make_visible>: New method.
6805 (struct tui_source_window_base, struct tui_cmd_window): Override
6806 make_visible.
6807 (tui_win_is_source_type): Don't declare.
6808 * tui/tui-data.c (tui_win_is_source_type): Remove.
6809
6a0ee02c
TT
68102019-06-25 Tom Tromey <tom@tromey.com>
6811
6812 * tui/tui-layout.c (show_source_or_disasm_and_command): Remove
6813 NULL check.
6814
63901aec
TT
68152019-06-25 Tom Tromey <tom@tromey.com>
6816
6817 * tui/tui-data.h (struct tui_data_window, struct tui_cmd_window):
6818 Inline constructor. Add initializers for members.
6819 * tui/tui-data.c (tui_data_window, tui_cmd_window): Remove
6820 constructors; now inline in class.
6821
ceb13a13
TT
68222019-06-25 Tom Tromey <tom@tromey.com>
6823
6824 * tui/tui-regs.c (tui_show_registers): Update.
6825 * tui/tui-data.h (struct tui_data_window) <display_regs>: Now
6826 bool.
6827 * tui/tui-data.c (tui_data_window::clear_detail)
6828 (tui_data_window): Update.
6829
238eb706
TT
68302019-06-25 Tom Tromey <tom@tromey.com>
6831
6832 * tui/tui-windata.c (tui_display_all_data)
6833 (tui_display_data_from_line, tui_display_data_from)
6834 (tui_check_data_values, tui_data_window::do_scroll_vertical):
6835 Update.
6836 * tui/tui-regs.c (tui_last_regs_line_no)
6837 (tui_line_from_reg_element_no, tui_first_reg_element_no_inline)
6838 (tui_show_registers, tui_show_register_group)
6839 (tui_display_registers_from, tui_display_reg_element_at_line)
6840 (tui_display_registers_from_line, tui_check_register_values)
6841 (tui_reg_next, tui_reg_prev): Update.
6842 * tui/tui-layout.c (tui_set_layout, show_data): Update.
6843 * tui/tui-data.h (struct tui_data_info): Remove. Move contents to
6844 tui_data_window.
6845 (struct tui_win_info) <detail>: Remove. Add new fields from
6846 tui_data_info.
6847 (TUI_DATA_WIN): Add cast.
6848 * tui/tui-data.c (tui_data_window::clear_detail, tui_data_window)
6849 (~tui_data_window): Simplify.
6850
81491aa0
TT
68512019-06-25 Tom Tromey <tom@tromey.com>
6852
6853 * tui/tui-layout.c (show_source_disasm_command)
6854 (show_source_or_disasm_and_command): Update.
6855 * tui/tui-io.c (update_cmdwin_start_line)
6856 (tui_redisplay_readline): Update.
6857 * tui/tui-data.h (struct tui_command_info): Remove.
6858 (struct tui_win_info) <detail>: Remove command_info member.
6859 (struct tui_data_window) <start_line>: New member, from
6860 tui_command_info.
6861 (TUI_CMD_WIN): Add casts.
6862
e6e41501
TT
68632019-06-25 Tom Tromey <tom@tromey.com>
6864
6865 * tui/tui-winsource.c (tui_update_source_window)
6866 (tui_refill_source_window)
6867 (tui_source_window_base::do_scroll_horizontal)
6868 (tui_update_breakpoint_info, tui_set_exec_info_content)
6869 (tui_show_exec_info_content, tui_erase_exec_info_content)
6870 (tui_clear_exec_info_content): Update.
6871 * tui/tui-wingeneral.c (make_all_visible, tui_refresh_all):
6872 Update.
6873 * tui/tui-win.c (make_invisible_and_set_new_height)
6874 (make_visible_with_new_height): Update.
6875 * tui/tui-source.c (tui_set_source_content)
6876 (tui_show_symtab_source): Update.
6877 * tui/tui-layout.c (extract_display_start_addr)
6878 (show_source_disasm_command, show_data)
6879 (make_source_or_disasm_window)
6880 (show_source_or_disasm_and_command): Update.
6881 * tui/tui-disasm.c (tui_set_disassem_content): Simplify.
6882 (tui_disasm_window::do_scroll_vertical): Remove shadowing
6883 "gdbarch".
6884 * tui/tui-data.h (struct tui_source_info): Remove. Move contents
6885 to tui_source_window_base.
6886 (struct tui_win_info) <detail>: Remove source_info member.
6887 (struct tui_source_window_base) <has_locator>: Inline.
6888 Move contents from tui_source_info; rename has_locator member to
6889 m_has_locator.
6890 (TUI_SRC_WIN, TUI_DISASM_WIN): Add casts.
6891 * tui/tui-data.c (tui_source_window_base::has_locator): Move to
6892 header file.
6893 (tui_source_window_base::clear_detail, ~tui_source_window_base):
6894 Simplify.
6895 (tui_free_all_source_wins_content): Cast to
6896 tui_source_window_base.
6897
44f0e208
TT
68982019-06-25 Tom Tromey <tom@tromey.com>
6899
6900 * tui/tui-win.c (make_invisible_and_set_new_height)
6901 (make_visible_with_new_height): Call has_locator method.
6902 * tui/tui-layout.c (show_source_disasm_command, show_data)
6903 (show_source_or_disasm_and_command): Update for bool change.
6904 * tui/tui-data.h (struct tui_source_info) <has_locator>: Now bool.
6905 (tui_win_info) <has_locator>: New method.
6906 (struct tui_source_window_base) <has_locator>: New method.
6907 (tui_win_has_locator): Don't declare.
6908 * tui/tui-data.c (tui_source_window_base::has_locator): Rename
6909 from tui_win_has_locator.
6910 (tui_source_window_base): Use false, not FALSE.
6911
7778b912
TT
69122019-06-25 Tom Tromey <tom@tromey.com>
6913
6914 * tui/tui-data.h (tui_clear_win_detail): Don't declare.
6915 * tui/tui-data.c (tui_clear_source_windows_detail): Call the
6916 clear_detail method directly.
6917 (tui_clear_win_detail): Remove.
6918
f83d391c
TT
69192019-06-25 Tom Tromey <tom@tromey.com>
6920
6921 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Use
6922 "this", not TUI_DISASM_WIN.
6923
13446e05
TT
69242019-06-25 Tom Tromey <tom@tromey.com>
6925
6926 * tui/tui-winsource.h (tui_horizontal_source_scroll): Don't
6927 declare.
6928 * tui/tui-winsource.c
6929 (tui_source_window_base::do_scroll_horizontal): Rename from
6930 tui_horizontal_source_scroll.
6931 * tui/tui-windata.h (tui_vertical_data_scroll): Don't declare.
6932 * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Rename
6933 from tui_vertical_data_scroll.
6934 * tui/tui-win.h (tui_scroll): Don't declare.
6935 * tui/tui-win.c (tui_win_info::forward_scroll)
6936 (tui_win_info::backward_scroll, tui_win_info::left_scroll)
6937 (tui_win_info::right_scroll): Rename and update.
6938 (tui_scroll_forward_command, tui_scroll_backward_command)
6939 (tui_scroll_left_command, tui_scroll_right_command): Update.
6940 (tui_scroll): Remove.
6941 * tui/tui-source.h: Don't declare tui_vertical_source_scroll.
6942 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Rename
6943 from tui_vertical_source_scroll.
6944 * tui/tui-disasm.h (tui_vertical_disassem_scroll): Don't declare.
6945 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Rename
6946 from tui_vertical_disassem_scroll.
6947 * tui/tui-data.h (struct tui_win_info) <do_scroll_vertical,
6948 do_scroll_horizontal>: New methods.
6949 <forward_scroll, backward_scroll, left_scroll, right_scroll>:
6950 Likewise.
6951 (struct tui_source_window_base): Add do_scroll_horizontal.
6952 (struct tui_source_window, struct tui_disasm_window): Add
6953 do_scroll_vertical.
6954 (struct tui_data_window, struct tui_cmd_window): Add
6955 do_scroll_horizontal and do_scroll_vertical.
6956 * tui/tui-command.c (tui_dispatch_ctrl_char): Use method calls.
6957
5cf82909
TT
69582019-06-25 Tom Tromey <tom@tromey.com>
6959
6960 * tui/tui-data.h (struct tui_source_window_base): New struct.
6961 (struct tui_source_window): Derive from tui_source_window_base.
6962 (struct tui_disasm_window): New struct.
6963 * tui/tui-data.c (tui_source_window_base::clear_detail): Rename
6964 from tui_source_window::clear_detail.
6965 (tui_source_window_base): Rename from tui_source_window.
6966 (~tui_source_window_base): Rename from ~tui_source_window.
6967 (tui_alloc_win_info): Create a tui_disasm_window.
6968
ee1d42d6
TT
69692019-06-25 Tom Tromey <tom@tromey.com>
6970
6971 * tui/tui-data.h (struct tui_source_window)
6972 (struct tui_data_window): Declare destructors.
6973 * tui/tui-data.c (~tui_source_window, ~tui_data_window): New
6974 destructors.
6975 (tui_win_info): Simplify.
6976
b4eb2452
TT
69772019-06-25 Tom Tromey <tom@tromey.com>
6978
6979 * tui/tui-winsource.c (tui_display_main)
6980 (tui_update_source_windows_with_addr)
6981 (tui_update_all_breakpoint_info): Update.
6982 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
6983 (new_height_ok, parse_scrolling_args): Update.
6984 * tui/tui-stack.c (tui_show_frame_info): Update.
6985 * tui/tui-data.h (struct tui_list): Remove.
6986 (tui_source_windows): Return a reference to a std::vector.
6987 * tui/tui-data.c (source_windows): Now a std::vector.
6988 (tui_source_windows): Change return type.
6989 (tui_clear_source_windows): Rewrite.
6990 (tui_clear_source_windows_detail, tui_add_to_source_windows)
6991 (tui_free_all_source_wins_content): Rewrite.
6992
8761a91b
TT
69932019-06-25 Tom Tromey <tom@tromey.com>
6994
6995 * tui/tui-data.h (struct tui_win_info, struct tui_source_window)
6996 (struct tui_data_window, struct tui_cmd_window): Declare
6997 clear_detail method.
6998 * tui/tui-data.c (tui_source_window::clear_detail)
6999 (tui_cmd_window::clear_detail, tui_data_window::clear_detail): New
7000 methods.
7001 (tui_clear_win_detail): Simplify.
7002
0ed69eda
TT
70032019-06-25 Tom Tromey <tom@tromey.com>
7004
7005 * tui/tui-layout.c (make_source_window, make_disasm_window)
7006 (make_source_or_disasm_window): Remove win_info_ptr parameter.
7007 Return the new window.
7008 (show_source_disasm_command, show_data)
7009 (show_source_or_disasm_and_command): Update.
7010
82432e10
TT
70112019-06-25 Tom Tromey <tom@tromey.com>
7012
7013 * tui/tui-layout.c (make_command_window): Remove win_info_ptr
7014 parameter. Return the new window.
7015 (show_source_disasm_command): Update and remove NULL check.
7016 (show_source_or_disasm_and_command): Update.
7017
ec328aa5
TT
70182019-06-25 Tom Tromey <tom@tromey.com>
7019
7020 * tui/tui-layout.c (init_and_make_win): Remove NULL check.
7021
33b906ab
TT
70222019-06-25 Tom Tromey <tom@tromey.com>
7023
7024 * tui/tui-data.h (struct tui_win_info): Make constructor
7025 protected. Make destructor virtual. Add initializers.
7026 (tui_source_window, tui_data_window, tui_cmd_window): New
7027 classes.
7028 * tui/tui-data.c (tui_win_info): Rename from init_win_info. Now a
7029 constructor. Add "type" parameter.
7030 (tui_source_window, tui_data_window, tui_cmd_window): New
7031 constructors.
7032 (tui_alloc_win_info): Instantiate the appropriate subclass.
7033
e7e11af4
TT
70342019-06-25 Tom Tromey <tom@tromey.com>
7035
7036 * tui/tui-win.c (tui_resize_all): Use delete.
7037 * tui/tui-data.h (struct tui_win_info) <~tui_win_info>: Declare
7038 destructor.
7039 (tui_free_window): Don't declare.
7040 * tui/tui-data.c (~tui_win_info): Rename from tui_free_window.
7041 Update.
7042
6792b55e
TT
70432019-06-25 Tom Tromey <tom@tromey.com>
7044
7045 * tui/tui-data.h (struct tui_win_info): Add constructor.
7046 * tui/tui-data.c (tui_alloc_win_info): Use new.
7047 (tui_free_window): Use delete.
7048
f95675e1
TT
70492019-06-22 Tom Tromey <tom@tromey.com>
7050
7051 * tui/tui-windata.h (tui_first_data_element_no_in_line): Don't
7052 declare.
7053 * tui/tui-windata.c (tui_first_data_element_no_in_line): Remove.
7054
5bff081c
TT
70552019-06-22 Tom Tromey <tom@tromey.com>
7056
7057 * tui/tui-data.h (tui_del_window, tui_del_data_windows): Don't
7058 declare.
7059 * tui/tui-data.c (tui_del_window, tui_del_data_windows): Remove.
7060
47e3f474
TV
70612019-06-22 Tom de Vries <tdevries@suse.de>
7062
7063 * dwarf2read.c (create_addrmap_from_aranges)
7064 (read_debug_names_from_section): Print ptrdiff_t using '%s' and plongest
7065 instead of '%zu'.
7066
fd5866f6
SM
70672019-06-21 Simon Marchi <simon.marchi@efficios.com>
7068
7069 * dwarf2read.h (dwarf2_section_info_def): Remove.
7070 (DEF_VEC_O (dwarf2_section_info_def)): Remove.
7071 * dwarf2read.c (struct dwo_sections) <types>: Change type to
7072 std::vector<dwarf2_section_info>.
7073 (struct dwo_file) <~dwo_file>: Remove.
7074 (dwarf2_per_objfile::~dwarf2_per_objfile): Don't manually free
7075 types field.
7076 (dwarf2_per_objfile::locate_sections): Adjust to std::vector.
7077 (dwarf2_read_debug_names): Likewise.
7078 (create_debug_types_hash_table): Change parameter type to
7079 array_view, adjust code accordingly.
7080 (dwarf2_locate_dwo_sections): Adjust to std::vector.
7081 (partial_die_info::fixup): Likewise.
7082 (determine_prefix): Likewise.
7083 * dwarf-index-write.c (write_psymtabs_to_index): Adjust.
7084
fb1eb2f9
SM
70852019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
7086
7087 * dwarf2read.c (struct dwo_file) <dbfd>: Change type to
7088 gdb_bfd_ref_ptr.
7089 <~dwo_file>: Remove call to gdb_bfd_unref.
7090 (open_and_init_dwo_file): Move gdb_bfd_ref_ptr into dbfd field. Call
7091 gdb_bfd_ref_ptr::get.
7092
51ac9db5
SM
70932019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
7094
7095 * dwarf2read.h (struct dwarf2_per_objfile) <dwo_files>: Change
7096 type to htab_up.
7097 * dwarf2read.c (struct dwo_file): Initialize fields.
7098 <~dwo_file>: New.
7099 (free_dwo_file): Remove, move content to ~dwo_file.
7100 (struct dwo_file_deleter): Remove.
7101 (dwo_file_up>: Remove custom deleter.
7102 (free_dwo_files): Remove.
7103 (dwarf2_per_objfile::~dwarf2_per_objfile): Don't explicitly free
7104 dwo_files.
7105 (process_skeletonless_type_units): Call unique_ptr::get.
7106 (allocate_dwo_file_hash_table): Add deleter to created hash
7107 table. Change return type to htab_up.
7108 (lookup_dwo_file_slot): Don't memset dwo_file, call
7109 unique_ptr::get.
7110 (create_dwo_unit_in_dwp_v1): Allocate dwo_file with new.
7111 (create_dwo_unit_in_dwp_v2): Likewise.
7112 (open_and_init_dwo_file): Likewise.
7113 (free_dwo_file_from_slot): Remove.
7114
dc4ccb6f
SM
71152019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
7116
7117 * dwarf2read.h (struct dwarf2_section_info) <readin,
7118 is_virtual>: Change type to bool.
7119 * dwarf2read.c (dwarf2_read_section, create_dwp_v2_section): Use
7120 true instead of 1.
7121
e6a1c5cb
TT
71222019-06-19 Tom Tromey <tom@tromey.com>
7123
7124 * tui/tui-data.h (tui_init_content_element): Don't declare.
7125
6f6ffbeb
TT
71262019-06-19 Tom Tromey <tom@tromey.com>
7127
7128 * tui/tui-data.h (tui_init_win_info): Don't declare.
7129
f23f598e
TV
71302019-06-19 Tom de Vries <tdevries@suse.de>
7131
7132 * dwarf2read.h (abstract_to_concrete): Change type to
7133 std::unordered_map<sect_offset, std::vector<sect_offset>,
7134 gdb::hash_enum<sect_offset>>.
7135
680e1bee
TT
71362019-06-19 Tom Tromey <tromey@adacore.com>
7137
7138 * ada-lang.c (ada_evaluate_subexp) <case OP_ATR_FIRST>: Handle
7139 EVAL_AVOID_SIDE_EFFECTS specially.
7140
dcf37923
TT
71412019-06-19 Tom Tromey <tromey@adacore.com>
7142
7143 * source-cache.c (highlighter): New global.
7144 (source_cache::get_source_lines): Create a highlighter on demand.
7145
494986d5
AB
71462019-06-18 Andrew Burgess <andrew.burgess@embecosm.com>
7147
7148 * defs.h (deprecated_interactive_hook): Delete declaration.
7149 * interps.c (clear_interpreter_hooks): Remove use of
7150 deprecated_interactive_hook.
7151 * top.c (deprecated_interactive_hook): Delete definition.
7152 * utils.c (maybe_quit): Remove use of deprecated_interactive_hook.
7153
3360b6e7
TV
71542019-06-18 Tom de Vries <tdevries@suse.de>
7155
7156 PR gdb/24515
7157 * dwarf2read.h (abstract_to_concrete): Change type from
7158 std::unordered_map<die_info_ptr, std::vector<die_info_ptr>> to
7159 std::unordered_map<sect_offset, std::vector<sect_offset>>.
7160 * dwarf2read.c (read_variable): Update.
7161 (dwarf2_fetch_die_loc_sect_off): Update.
7162
310b3441
TV
71632019-06-17 Tom de Vries <tdevries@suse.de>
7164
7165 PR gdb/24617
7166 * common/pathstuff.c (child_path): Make sure parent_len > 0 before
7167 accessing parent[parent_len - 1].
7168
ba9777be
PP
71692019-06-17 Paul Pluzhnikov <ppluzhnikov@google.com>
7170
7171 PR gdb/24364
7172 * gdb/dtrace-probe.c (dtrace_static_probe_ops::get_probe): Don't
7173 call dtrace_process_dof with NULL dof.
7174
2b9f6e89
TV
71752019-06-16 Tom de Vries <tdevries@suse.de>
7176
7177 PR gdb/24445
7178 * contrib/gdb-add-index.sh: Update to handle dwz-m-ed executable.
7179
431b3ead
TT
71802019-06-16 Tom Tromey <tom@tromey.com>
7181
7182 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win)
7183 (make_all_visible): Use address of member.
7184
d04b44a1
TT
71852019-06-16 Tom Tromey <tom@tromey.com>
7186
7187 * tui/tui-data.c (tui_clear_win_detail, init_win_info)
7188 (tui_free_window, free_content, free_content_elements): Remove
7189 unnecessary cast.
7190 * tui/tui-windata.c (tui_display_all_data): Remove unnecessary
7191 cast.
7192 * tui/tui-regs.c (tui_show_register_group)
7193 (tui_display_registers_from, tui_display_reg_element_at_line):
7194 Remove unnecessary cast.
7195
bf5142e7
AB
71962019-06-16 Andrew Burgess <andrew.burgess@embecosm.com>
7197
7198 * linux-nat.c (normal_mask): Delete.
7199 (_initialize_linux_nat): Don't initialise normal_mask.
7200
c4973306
SM
72012019-06-16 Simon Marchi <simon.marchi@polymtl.ca>
7202
7203 PR gdb/24445
7204 * dwarf-index-write.h (write_psymtabs_to_index): Add
7205 dwz_basename parameter.
7206 * dwarf-index-write.c (write_gdbindex): Move file writing to
7207 write_gdbindex_1. Change return type void.
7208 (assert_file_size): Move up, remove filename parameter.
7209 (write_gdbindex_1): New function.
7210 (write_debug_names): Change return type to void, call
7211 assert_file_size.
7212 (struct index_wip_file): New struct.
7213 (write_psymtabs_to_index): Add dwz_basename parameter. Move
7214 file logic to index_wip_file. Write index for dwz file if
7215 needed.
7216 (save_gdb_index_command): Pass basename of dwz file, if present.
7217 * dwarf-index-cache.c (index_cache::store): Obtain and pass
7218 build-id of dwz file, if present.
7219 * dwarf2read.c (struct dwz_file): Move to dwarf2read.h.
7220 (dwarf2_get_dwz_file): Likewise.
7221 * dwarf2read.h (struct dwz_file): Move from dwarf2read.c.
7222 (dwarf2_get_dwz_file): Likewise.
7223
395f9c91
TT
72242019-06-16 Tom Tromey <tom@tromey.com>
7225
7226 * coffread.c (process_coff_symbol): Use xstrdup.
7227 * value.c (create_internalvar): Use xstrdup.
7228
cafb3438
TT
72292019-06-16 Tom Tromey <tom@tromey.com>
7230
7231 * valops.c (value_cast, value_slice): Remove unnecessary cast.
7232 * breakpoint.c (stopin_command, stopat_command)
7233 (until_break_command, decode_location_default): Remove unnecessary
7234 cast.
7235 * utils.c (subset_compare): Remove unnecessary cast.
7236 * ada-lang.c (ada_update_initial_language): Remove unnecessary
7237 cast.
7238 * linespec.c (decode_line_with_last_displayed): Remove unnecessary
7239 cast.
7240 * infcmd.c (path_command): Remove unnecessary cast.
7241 * coffread.c (decode_type): Remove unnecessary cast.
7242 * xcoffread.c (read_xcoff_symtab): Remove unnecessary cast.
7243 * mipsread.c (mipscoff_symfile_read): Remove unnecessary cast.
7244 * tui/tui-stack.c (tui_show_locator_content)
7245 (tui_show_frame_info): Remove unnecessary cast.
7246 * tui/tui-win.c (tui_scroll_forward_command)
7247 (tui_scroll_backward_command, tui_set_focus, tui_set_win_height)
7248 (parse_scrolling_args): Remove unnecessary cast.
7249 * tui/tui-data.c (init_win_info, tui_del_window)
7250 (tui_free_window, tui_del_data_windows, tui_free_data_content)
7251 (free_content_elements): Remove unnecessary cast.
7252 * tui/tui-windata.c (tui_first_data_item_displayed): Remove
7253 unnecessary cast.
7254 * tui/tui-source.c (tui_set_source_content)
7255 (tui_vertical_source_scroll): Remove unnecessary cast.
7256 * tui/tui-layout.c (tui_default_win_height): Remove unnecessary
7257 cast.
7258 * tui/tui-io.c (tui_initialize_io): Remove unnecessary cast.
7259 * tui/tui-regs.c (tui_display_registers_from)
7260 (tui_display_register): Remove unnecessary cast.
7261 * tui/tui-wingeneral.c (tui_refresh_win, tui_delete_win)
7262 (tui_unhighlight_win, tui_highlight_win, tui_make_window)
7263 (make_visible): Remove unnecessary cast.
7264 * tui/tui-winsource.c (tui_erase_source_content)
7265 (tui_update_breakpoint_info, tui_set_exec_info_content): Remove
7266 unnecessary cast.
7267 * ax-gdb.c (agent_command_1): Remove unnecessary cast.
7268 * cli/cli-setshow.c (cmd_show_list): Remove unnecessary cast.
7269 * stabsread.c (read_type, read_array_type, read_range_type):
7270 Remove unnecessary cast.
7271 * mdebugread.c (mdebug_build_psymtabs): Remove unnecessary cast.
7272 (parse_symbol, parse_type, upgrade_type, parse_external)
7273 (parse_partial_symbols, psymtab_to_symtab_1, cross_ref): Remove
7274 unnecessary cast.
7275 * gdb_bfd.c (gdb_bfd_map_section): Remove unnecessary cast.
7276
730ead81
TT
72772019-06-16 Tom Tromey <tom@tromey.com>
7278
7279 * tui/tui-data.c (tui_alloc_generic_win_info)
7280 (tui_alloc_win_info, tui_add_content_elements): Remove NULL
7281 checks.
7282
584a927c
AB
72832019-06-16 Bernhard Heckel <bernhard.heckel@intel.com>
7284 Andrew Burgess <andrew.burgess@embecosm.com>
7285
7286 * f-typeprint.c (f_print_type): Don't return early for not
7287 associated or not allocated types.
7288 (f_type_print_varspec_suffix): Add print_rank parameter and print
7289 ranks of array types in case they dangling.
7290 (f_type_print_base): Add print_rank parameter.
7291
30056ea0
AB
72922019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
7293
7294 * NEWS: Mention new MI commands.
7295 * break-catch-throw.c (enum exception_event_kind): Move to
7296 breakpoint.h.
7297 (print_mention_exception_catchpoint): Output text as a single
7298 message.
7299 (catch_exception_command_1): Rename to...
7300 (catch_exception_event): ...this, make non-static, update header
7301 command, and change some parameter types.
7302 (catch_catch_command): Update for changes to
7303 catch_exception_command_1.
7304 (catch_throw_command): Likewise.
7305 (catch_rethrow_command): Likewise.
7306 * breakpoint.c (enum exception_event_kind): Delete.
7307 * breakpoint.h (enum exception_event_kind): Moved here from
7308 break-catch-throw.c.
7309 (catch_exception_event): Declare.
7310 * mi/mi-cmd-catch.c (mi_cmd_catch_exception_event): New function.
7311 (mi_cmd_catch_throw): New function.
7312 (mi_cmd_catch_rethrow): New function.
7313 (mi_cmd_catch_catch): New function.
7314 * mi/mi-cmds.c (mi_cmds): Add 'catch-throw', 'catch-rethrow', and
7315 'catch-catch' entries.
7316 * mi/mi-cmds.h (mi_cmd_catch_throw): Declare.
7317 (mi_cmd_catch_rethrow): Declare.
7318 (mi_cmd_catch_catch): Declare.
7319
ec8e2b6d
AB
73202019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
7321
7322 * annotate.c (annotate_source_line): Change return type to void,
7323 update implementation to match.
7324 * annotate.h (annotate_source_line): Change return type to void,
7325 update header comment.
7326 * stack.c (print_frame_info): Don't change what frame information
7327 is printed based on whether annotations are on or not.
7328
0d3abd8c
AB
73292019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
7330
7331 * annotate.c: Add 'source.h' and 'objfiles.h' includes.
7332 (annotate_source): Make static.
7333 (annotate_source_line): Moved from source.c and renamed from
7334 identify_source_line. Update the return type.
7335 * annotate.h (annotate_source): Delete declaration.
7336 (annotate_source_line): Declaration moved from source.h, and
7337 renamed from identify_source_line. Return type updated.
7338 * source.c (identify_source_line): Moved to annotate.c and renamed
7339 to annotate_source_line.
7340 (info_line_command): Remove check of annotation_level.
7341 * source.h (identify_source_line): Move declaration to annotate.h
7342 and rename to annotate_source_line.
7343 * stack.c: Add 'annotate.h' include.
7344 (print_frame_info): Remove check of annotation_level before
7345 calling annotate_source_line.
7346
00df30ae
AB
73472019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
7348
7349 * source-cache.c (source_cache::get_plain_source_lines): Use
7350 open_source_file_with_line_charpos instead of just
7351 open_source_file, remove call to find_source_lines.
7352 (source_cache::get_source_lines): Likewise.
7353 * source.c (find_source_lines): Make static.
7354 (get_filename_and_charpos): Renamed into...
7355 (open_source_file_with_line_charpos): ..this along with changes to
7356 return a scoped_fd, and some other minor clean ups.
7357 (identify_source_line): Use open_source_file_with_line_charpos.
7358 (search_command_helper): Use open_source_file_with_line_charpos
7359 instead of just open_source_file, remove call to
7360 find_source_lines.
7361 * source.h (open_source_file_with_line_charpos): Declare new
7362 function.
7363 (find_source_lines): Delete declaration.
7364
afda45a2
AB
73652019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
7366
7367 * source.c (get_filename_and_charpos): Remove fullname
7368 parameter.
7369 (identify_source_line): Update call to get_filename_and_charpos.
7370
0735b091
TT
73712019-06-14 Tom Tromey <tromey@adacore.com>
7372
7373 PR gdb/24502:
7374 * ui-style.h (skip_ansi_escape): Update comment.
7375 * ui-file.h (class no_terminal_escape_file): New class.
7376 * ui-file.c (no_terminal_escape_file::write)
7377 (no_terminal_escape_file::puts): New methods.
7378 * cli/cli-logging.c (handle_redirections): Use
7379 no_terminal_escape_file.
7380
52ce35e2
TT
73812019-06-14 Tom Tromey <tromey@adacore.com>
7382
7383 * NEWS: Move convenience variable news above Python news.
7384
73cc7272
TT
73852019-06-14 Tom Tromey <tom@tromey.com>
7386
7387 * gnulib: Move directory to top-level.
7388 * configure.ac: Don't configure gnulib.
7389 * configure: Rebuild.
7390 * common/common-defs.h: Use new path to gnulib.
7391 * Makefile.in (GNULIB_BUILDDIR): Now ../gnulib.
7392 (GNULIB_H): Remove.
7393 (INCGNU): Look in new gnulib location.
7394 (HFILES_NO_SRCDIR): Remove gnulib files.
7395 (SUBDIR, REQUIRED_SUBDIRS): Remove gnulib.
7396 (generated_files): Remove GNULIB_H.
7397 ($(LIBGNU), all-lib): Remove targets.
7398 (distclean): Don't mention GNULIB_BUILDDIR.
7399 ($(GNULIB_BUILDDIR)/Makefile): Remove target.
7400
f5686554
TT
74012019-06-14 Tom Tromey <tromey@adacore.com>
7402
7403 * symfile.c (add_symbol_file_command): Remove obsolete comment.
7404 Warn if symbol file does not provide any symbols.
7405
a0c1ffed
TT
74062019-06-14 Tom Tromey <tromey@adacore.com>
7407
7408 * source.c (find_and_open_source): Respect basenames_may_differ.
7409
7c39e397
AB
74102019-06-14 Andrew Burgess <andrew.burgess@embecosm.com>
7411
7412 * annotate.c (annotate_breakpoints_invalid): Make use of
7413 scoped_restore_terminal_state.
7414 (annotate_frames_invalid): Likewise.
7415
f411722c
TT
74162019-06-14 Tom Tromey <tromey@adacore.com>
7417
7418 * ada-lang.c (ada_evaluate_subexp) <case BINOP_ASSIGN>: Always
7419 allow assignment to an internalvar.
7420
4268ec18
TT
74212019-06-14 Tom Tromey <tromey@adacore.com>
7422
7423 * ada-lex.l: Allow "_" in attribute names.
7424
abdb711e
TT
74252019-06-14 Tom Tromey <tromey@adacore.com>
7426
7427 PR gdb/24653:
7428 * regcache.c (registers_changed): Don't call alloca.
7429 * top.c (execute_command): Don't call alloca.
7430
4c048731
PA
74312019-06-13 Pedro Alves <palves@redhat.com>
7432
7433 * cli/cli-setshow.c (cli/cli-setshow.c): New parameter
7434 'expression'. When parsing an expression, error out if there's
7435 junk after "unlimited".
7436 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
7437 (do_set_command): Adjust calls to is_unlimited_literal.
7438
66eb1ed3
PA
74392019-06-13 Pedro Alves <palves@redhat.com>
7440
7441 * compile/compile.c (make_compile_options_def_group): Add braces
7442 around array_view initializer.
7443 * thread.c (make_thread_apply_all_options_def_group)
7444 (make_thread_apply_all_options_def_group): Likewise.
7445
3345721a
PA
74462019-06-13 Pedro Alves <palves@redhat.com>
7447
7448 * NEWS (New commands): Mention "maint test-options
7449 require-delimiter", "maint test-options unknown-is-error", "maint
7450 test-options unknown-is-operand" and "maint show
7451 test-options-completion-result".
7452 (New command options, command completion): New section.
7453 (Completion improvements): New section.
7454 Mention that you can abbreviate "unlimited".
7455
6206060d
PA
74562019-06-13 Pedro Alves <palves@redhat.com>
7457
7458 * cli/cli-utils.c (parse_flags, parse_flags_qcs): Delete.
7459 * cli/cli-utils.h (parse_flags, parse_flags_qcs): Delete.
7460 * unittests/cli-utils-selftests.c (test_parse_flags)
7461 (test_parse_flags_qcs): Delete.
7462 (test_cli_utils): Don't call deleted functions.
7463
6665660a
PA
74642019-06-13 Pedro Alves <palves@redhat.com>
7465
7466 * thread.c: Include "cli/cli-option.h".
7467 (tp_array_compar_ascending): Global.
7468 (tp_array_compar): Delete function.
7469 (tp_array_compar_ascending, tp_array_compar_descending): New
7470 functions.
7471 (ascending_option_def, qcs_flag_option_def)
7472 (thr_qcs_flags_option_defs)
7473 (make_thread_apply_all_options_def_group)
7474 (make_thread_apply_options_def_group): New.
7475 (thread_apply_all_command): Use gdb::option::process_options.
7476 (thread_apply_command_completer)
7477 (thread_apply_all_command_completer): New.
7478 (thread_apply_command): Use gdb::option::process_options.
7479 (_initialize_thread): Delete THREAD_APPLY_FLAGS_HELP, replace it
7480 with a new THREAD_APPLY_OPTION_HELP. Use gdb::option::build_help
7481 to generate help text of "thread apply". Adjust "taas"'s help.
7482 * tid-parse.c (tid_range_parser::in_thread_range): New method.
7483 * tid-parse.h (tid_range_parser::in_thread_range): New method.
7484
f7e13587
PA
74852019-06-13 Pedro Alves <palves@redhat.com>
7486
7487 * thread.c (thread_apply_command): Check for invalid TID with
7488 isdigit instead of !isalpha.
7489
5d707134
PA
74902019-06-13 Pedro Alves <palves@redhat.com>
7491
7492 * cli/cli-utils.c (parse_flags_qcs): Use validate_flags_qcs.
7493 (validate_flags_qcs): New.
7494 * cli/cli-utils.h (struct qcs_flags): Change field types to int.
7495 (validate_flags_qcs): Declare.
7496 * stack.c (qcs_flag_option_def, fr_qcs_flags_option_defs): New.
7497 (make_frame_apply_options_def_group): New.
7498 (frame_apply_command_count): Process options with
7499 gdb::option::process_options.
7500 (frame_apply_completer): New.
7501 (frame_apply_level_completer, frame_apply_all_completer)
7502 (frame_apply_completer): New.
7503 (_initialize_stack): Update help of "frame apply", "frame apply
7504 level", "frame apply all" and "faas" to mention supported options
7505 and install command completers.
7506 * stack.h (frame_apply_all_completer): Declare.
7507 * thread.c: Include "stack.h".
7508 (tfaas_command): Add "--".
7509 (_initialize_thread): Update help "tfaas" to mention supported
7510 options and install command completer.
7511
272d4594
PA
75122019-06-13 Pedro Alves <palves@redhat.com>
7513
7514 * completer.c (complete_nested_command_line): New.
7515 (gdb_completion_word_break_characters_throw): Add assertion.
7516 * completer.h (complete_nested_command_line): Declare.
7517
90a1ef87
PA
75182019-06-13 Pedro Alves <palves@redhat.com>
7519
7520 * stack.c (parse_backtrace_qualifiers): New.
7521 (backtrace_command): Use it.
7522 (backtrace_command_completer): Complete on qualifiers.
7523
d4c16835
PA
75242019-06-13 Pedro Alves <palves@redhat.com>
7525
7526 * frame.c: Include "cli/cli-option.h.
7527 (user_set_backtrace_options): New.
7528 (backtrace_past_main, backtrace_past_entry, backtrace_limit):
7529 Delete.
7530 (get_prev_frame): Adjust.
7531 (boolean_option_def, uinteger_option_def)
7532 (set_backtrace_option_defs): New.
7533 (_initialize_frame): Adjust and use
7534 gdb::option::add_setshow_cmds_for_options to install "set
7535 backtrace past-main" and "set backtrace past-entry".
7536 * frame.h: Include "cli/cli-option.h".
7537 (struct frame_print_options): Forward declare.
7538 (print_frame_arguments_all, print_frame_arguments_scalars)
7539 (print_frame_arguments_none): Declare.
7540 (print_entry_values): Delete declaration.
7541 (struct frame_print_options, user_frame_print_options): New.
7542 (struct set_backtrace_options): New.
7543 (set_backtrace_option_defs, user_set_backtrace_options): Declare.
7544 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
7545 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
7546 (mi_cmd_stack_list_variables): Pass down USER_FRAME_PRINT_OPTIONS.
7547 (list_args_or_locals): Add frame_print_options parameter.
7548 (mi_cmd_stack_info_frame): Pass down USER_FRAME_PRINT_OPTIONS.
7549 * python/py-framefilter.c (enumerate_args): Pass down
7550 USER_FRAME_PRINT_OPTIONS.
7551 * stack.c: Include "cli/cli-option.h".
7552 (print_frame_arguments_all, print_frame_arguments_scalars)
7553 (print_frame_arguments_none): Declare.
7554 (print_raw_frame_arguments, print_entry_values): Delete.
7555 (user_frame_print_options): New.
7556 (boolean_option_def, enum_option_def, frame_print_option_defs):
7557 New.
7558 (struct backtrace_cmd_options): New.
7559 (bt_flag_option_def): New.
7560 (backtrace_command_option_defs): New.
7561 (print_stack_frame): Pass down USER_FRAME_PRINT_OPTIONS.
7562 (print_frame_arg, read_frame_arg, print_frame_args)
7563 (print_frame_info, print_frame): Add frame_print_options parameter
7564 and use it.
7565 (info_frame_command_core): Pass down USER_FRAME_PRINT_OPTIONS.
7566 (backtrace_command_1): Add frame_print_options and
7567 backtrace_cmd_options parameters and use them.
7568 (make_backtrace_options_def_group): New.
7569 (backtrace_command): Process command options with
7570 gdb::option::process_options.
7571 (backtrace_command_completer): New.
7572 (_initialize_stack): Extend "backtrace"'s help to mention
7573 supported options. Install completer for "backtrace".
7574 Install some settings commands with add_setshow_cmds_for_options.
7575
2daf894e
PA
75762019-06-13 Pedro Alves <palves@redhat.com>
7577
7578 * NEWS (Changed commands): Mention set/show print raw-frame-arguments,
7579 and that "set/show print raw frame-arguments" are now deprecated.
7580
7581 * cli/cli-decode.c (add_setshow_boolean_cmd): Now returns the
7582 command.
7583 * command.h (add_setshow_boolean_cmd): Return cmd_list_element *.
7584 * stack.c (_initialize_stack): Install "set/show print
7585 raw-frame-arguments", and deprecate "set/show print raw
7586 frame-arguments".
7587 * valprint.c (_initialize_valprint): Deprecate "set/show print
7588 raw".
7589
e6ed716c
PA
75902019-06-13 Pedro Alves <palves@redhat.com>
7591
7592 * compile/compile.c (struct compile_options): New.
7593 (compile_flag_option_def, compile_command_option_defs)
7594 (make_compile_options_def_group): New.
7595 (compile_file_command): Handle options with
7596 gdb::option::process_options.
7597 (compile_file_command_completer): New function.
7598 (compile_code_command): Handle options with
7599 gdb::option::process_options.
7600 (compile_code_command_completer): New function.
7601 (_initialize_compiler): Install completers for "compile code" and
7602 "compile file". Mention available options in "compile code" and
7603 "compile code"'s help.
7604 * completer.c (advance_to_completion_word): New, factored out from
7605 ...
7606 (advance_to_expression_complete_word_point): ... this.
7607 (advance_to_filename_complete_word_point): New.
7608 * completer.h (advance_to_filename_complete_word_point): New
7609 declaration.
7610
7d8062de
PA
76112019-06-13 Pedro Alves <palves@redhat.com>
7612
7613 * compile/compile.c: Include "cli/cli-option.h".
7614 (compile_print_value): Scope data pointer is now a
7615 value_print_options pointer; adjust.
7616 (compile_print_command): Process options. Scope data pointer is
7617 now a value_print_options pointer; adjust.
7618 (_initialize_compile): Update "compile print"'s help to include
7619 supported options. Install a completer for "compile print".
7620 * cp-valprint.c (show_vtblprint, show_objectprint)
7621 (show_static_field_print): Delete.
7622 (_initialize_cp_valprint): Don't install "set print
7623 static-members", "set print vtbl", "set print object" here.
7624 * printcmd.c: Include "cli/cli-option.h" and
7625 "common/gdb_optional.h".
7626 (print_command_parse_format): Rework to fill in a
7627 value_print_options instead of a format_data.
7628 (print_value): Change parameter type from format_data pointer to
7629 value_print_options reference. Adjust.
7630 (print_command_1): Process options. Adjust to pass down a
7631 value_print_options.
7632 (print_command_completer): New.
7633 (_initialize_printcmd): Install print_command_completer as
7634 handle_brkchars completer for the "print" command. Update
7635 "print"'s help to include supported options.
7636 * valprint.c: Include "cli/cli-option.h".
7637 (show_vtblprint, show_objectprint, show_static_field_print): Moved
7638 here from cp-valprint.c.
7639 (boolean_option_def, uinteger_option_def)
7640 (value_print_option_defs, make_value_print_options_def_group):
7641 New. Use gdb::option::add_setshow_cmds_for_options to install
7642 "set print elements", "set print null-stop", "set print repeats",
7643 "set print pretty", "set print union", "set print array", "set
7644 print address", "set print symbol", "set print array-indexes".
7645 * valprint.h: Include <string> and "cli/cli-option.h".
7646 (make_value_print_options_def_group): Declare.
7647 (print_value): Change parameter type from format_data pointer to
7648 value_print_options reference.
7649 (print_command_completer): Declare.
7650
9d0faba9
PA
76512019-06-13 Pedro Alves <palves@redhat.com>
7652
7653 * Makefile.in (SUBDIR_CLI_SRCS): Add cli/cli-option.c.
7654 (COMMON_SFILES): Add maint-test-settings.c.
7655 * cli/cli-decode.c (boolean_enums): New global, factored out from
7656 ...
7657 (add_setshow_boolean_cmd): ... here.
7658 * cli/cli-decode.h (boolean_enums): Declare.
7659 * cli/cli-option.c: New file.
7660 * cli/cli-option.h: New file.
7661 * cli/cli-setshow.c (parse_cli_boolean_value(const char **)): New,
7662 factored out from ...
7663 (parse_cli_boolean_value(const char *)): ... this.
7664 (is_unlimited_literal): Change parameter type to pointer to
7665 pointer. Adjust and advance ARG pointer.
7666 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
7667 (parse_cli_var_enum): New, factored out from ...
7668 (do_set_command): ... this. Adjust.
7669 * cli/cli-setshow.h (parse_cli_boolean_value)
7670 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
7671 (parse_cli_var_enum): Declare.
7672 * cli/cli-utils.c: Include "cli/cli-option.h".
7673 (get_ulongest): New.
7674 * cli/cli-utils.h (get_ulongest): Declare.
7675 (check_for_argument): New overloads.
7676 * maint-test-options.c: New file.
7677
2c722807
PA
76782019-06-13 Pedro Alves <palves@redhat.com>
7679
7680 * cli/cli-utils.c (number_or_range_parser::get_number): Do not
7681 parse a range if "-" is at the end of the string.
7682
dee7b4c8
PA
76832019-06-13 Pedro Alves <palves@redhat.com>
7684
7685 * cli/cli-setshow.c (parse_auto_binary_operation)
7686 (parse_cli_boolean_value): Don't allow "o".
7687
dca0f6c0
PA
76882019-06-13 Pedro Alves <palves@redhat.com>
7689
7690 * Makefile.in (COMMON_SFILES): Add maint-test-settings.c.
7691 * NEWS: Mention maint test-settings KIND.
7692 * maint-test-settings.c: New file.
7693
597bf39d
PA
76942019-06-13 Pedro Alves <palves@redhat.com>
7695
7696 * cli/cli-decode.c (add_setshow_cmd_full): Remove "show"
7697 completer.
7698 (add_setshow_string_cmd, add_setshow_string_noescape_cmd): Remove
7699 "set" completers.
7700
48c410fb
PA
77012019-06-13 Pedro Alves <palves@redhat.com>
7702
7703 * cli/cli-setshow.c (do_set_command) <var_enum>: Detect junk
7704 after item.
7705
93bcb043
PA
77062019-06-13 Pedro Alves <palves@redhat.com>
7707
7708 * cli/cli-setshow.c (is_unlimited_literal): Allow abbreviations.
7709
cbba3ecd
PA
77102019-06-13 Pedro Alves <palves@redhat.com>
7711
7712 * ax-gdb.c (agent_command_1): Remove skip_spaces call.
7713 * breakpoint.c (watch_maybe_just_location): Remove skip_spaces
7714 call.
7715 * cli/cli-cmds.c (apropos_command): Remove skip_spaces call.
7716 * cli/cli-utils.c (extract_info_print_args): Remove skip_spaces
7717 calls.
7718 (check_for_argument): Skip spaces after argument.
7719
b9a3f842
PA
77202019-06-13 Pedro Alves <palves@redhat.com>
7721
7722 * thread.c (thread_apply_command): Adjust TID parsing.
7723 * tid-parse.c (tid_range_parser::finished): Ensure parsing end is
7724 detected before end of string.
7725 (tid_is_in_list): Error out if LIST is invalid.
7726
3844e605
PA
77272019-06-13 Pedro Alves <palves@redhat.com>
7728
7729 * completer.c (complete_line_internal_1): Rewind completion word
7730 point.
7731 (completion_tracker::advance_custom_word_point_by): Change
7732 parameter type to int.
7733 * completer.h (completion_tracker::advance_custom_word_point_by):
7734 Likewise.
7735
00b56dbe
PA
77362019-06-13 Pedro Alves <palves@redhat.com>
7737
7738 * completer.c (advance_to_completion_word): Handle delimiters.
7739
d106773e
PA
77402019-06-11 Bernhard Heckel <bernhard.heckel@intel.com>
7741
7742 * dwarf2read.c (add_partial_symbol): Skip nameless modules.
7743
08f10e02
TT
77442019-06-11 Tom Tromey <tom@tromey.com>
7745
7746 * common/common-utils.c (xmalloc, xrealloc, xcalloc)
7747 (xmalloc_failed): Move to alloc.c.
7748 * alloc.c: New file.
7749 * Makefile.in (COMMON_SFILES): Add alloc.c.
7750
1c7fe951
TT
77512019-06-11 Tom Tromey <tom@tromey.com>
7752
7753 * nat/linux-waitpid.c: Don't include server.h.
7754 (linux_debug): Remove.
7755 (my_waitpid): Update.
7756
89549d7f
TT
77572019-06-11 Tom Tromey <tromey@adacore.com>
7758
7759 * infcall.c (_initialize_infcall): Remove trailing newline from
7760 help.
7761 * user-regs.c (_initialize_user_regs): Remove trailing newline
7762 from help.
7763 * typeprint.c (_initialize_typeprint): Remove trailing newline
7764 from help.
7765 * reverse.c (_initialize_reverse): Remove trailing newlines from
7766 help.
7767 * tracepoint.c (_initialize_tracepoint): Remove trailing newlines
7768 from help.
7769 * language.c (add_set_language_command): Remove trailing newline
7770 from help.
7771 * infcmd.c (_initialize_infcmd): Remove trailing newlines from
7772 help.
7773 * disasm.c (_initialize_disasm): Remove trailing newline from
7774 help.
7775 * top.c (init_main): Remove trailing newline from help.
7776 * interps.c (_initialize_interpreter): Remove trailing newline
7777 from help.
7778 * btrace.c (_initialize_btrace): Remove trailing newlines from
7779 help.
7780 * breakpoint.c (_initialize_breakpoint): Remove trailing newline
7781 from help.
7782 * python/python.c (_initialize_python): Remove trailing newline
7783 from help.
7784 * spu-tdep.c (_initialize_spu_tdep): Remove trailing newlines from
7785 help.
7786 * tui/tui-win.c (_initialize_tui_win): Remove trailing newlines
7787 from help. Reformat some text.
7788 * tui/tui-stack.c (_initialize_tui_stack): Remove trailing newline
7789 from help.
7790 * tui/tui-layout.c (_initialize_tui_layout): Remove trailing
7791 newline from help.
7792
86108c13
TT
77932019-06-11 Tom Tromey <tromey@adacore.com>
7794
7795 * darwin-nat.c (darwin_decode_exception_message)
7796 (darwin_decode_message, darwin_nat_target::kill): Fix shadowing.
7797
a7067863
AB
77982019-06-10 Andrew Burgess <andrew.burgess@embecosm.com>
7799
7800 * valops.c (value_slice): Check for not allocated or not
7801 associated values.
7802
9ab08412
TV
78032019-06-10 Tom de Vries <tdevries@suse.de>
7804
7805 PR gdb/24618
7806 * dwarf2read.c (struct mapped_index::symbol_name_slot_invalid): Make
7807 sure an empty slot (defined by a 32-bit zero pair) is recognized as
7808 invalid.
7809
f19e22e9
TV
78102019-06-10 Tom de Vries <tdevries@suse.de>
7811
7812 PR gdb/24611
7813 * linespec.c (linespec_lexer_lex_string): Remove incorrect
7814 "++(PARSER_STREAM (parser))" for "[abi"-prefixed colon. Add assert.
7815
e99f9db0
TV
78162019-06-10 Tom de Vries <tdevries@suse.de>
7817
7818 PR symtab/24545
7819 * symtab.c (struct demangled_name_entry): Add language field.
7820 (symbol_set_names): Revert "[gdb/symtab] Fix language of duplicate
7821 static minimal symbol". Set and use language field.
7822
9bf7038b
TT
78232019-06-10 Tom Tromey <tromey@adacore.com>
7824
7825 * ada-lang.c (_initialize_ada_language): Update help text.
7826
422186a9
TT
78272019-06-10 Tom Tromey <tromey@adacore.com>
7828
7829 * m32c-tdep.c (m32c_m16c_address_to_pointer): Don't end warning
7830 with a newline.
7831 * guile/guile.c (handle_boot_error): Don't end warning with a
7832 newline.
7833 * cli/cli-cmds.c (exit_status_set_internal_vars): Don't end
7834 warning with a newline.
7835 * s12z-tdep.c (s12z_skip_prologue): Don't end warning with a
7836 newline.
7837 (s12z_frame_cache): Likewise.
7838 * dwarf-index-cache.c (index_cache::store): Don't end warning with
7839 a newline.
7840 * solib-svr4.c (disable_probes_interface): Don't end warning with
7841 a newline.
7842 * nat/fork-inferior.c (fork_inferior): Don't end warning with a
7843 newline.
7844 * python/python.c (do_finish_initialization): Don't end warning
7845 with a newline.
7846
25ce02ee
TT
78472019-06-10 Tom Tromey <tom@tromey.com>
7848
7849 * python/py-breakpoint.c (gdbpy_breakpoint_created)
7850 (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
7851 gdbpy_enter.
7852
caa429d8
TT
78532019-06-10 Tom Tromey <tromey@adacore.com>
7854
7855 * elfread.c (elf_read_minimal_symbols): Don't set the dbx objfile
7856 data.
7857 (elf_new_init): Don't call stabsread_new_init.
7858 * dbxread.c (coffstab_build_psymtabs): Set dbx objfile data.
7859 (elfstab_build_psymtabs): Likewise. Call stabsread_new_init.
7860 * coffread.c (coff_symfile_init): Don't set the dbx objfile data.
7861
81873cc8
TV
78622019-06-10 Tom de Vries <tdevries@suse.de>
7863
7864 PR symtab/16264
7865 PR symtab/24517
7866 * dwarf2read.c (read_func_scope): Handle DW_AT_main_subprogram.
7867
4fa0265e
РИ
78682019-06-06 Руслан Ижбулатов <lrn1986@gmail.com>
7869
7870 * source.c (find_and_open_source): Also rewrite relative file
7871 names.
7872
1a3da2cd
AB
78732019-04-26 Amos Bird <amosbird@gmail.com>
7874
7875 * annotate.c (annotate_thread_exited): Add "thread-exited"
7876 annotation.
7877
3847a7bf
TT
78782019-06-06 Tom Tromey <tromey@adacore.com>
7879
7880 * maint.h (class scoped_command_stats): Use
7881 DISABLE_COPY_AND_ASSIGN.
7882 <print_time>: New method.
7883 * maint.c (scoped_command_stats, ~scoped_command_stats): Call
7884 print_time.
7885 (scoped_command_stats::print_time): New method.
7886
312617a3
AB
78872019-06-05 Andrew Burgess <andrew.burgess@embecosm.com>
7888
7889 * riscv-tdep.c (riscv_insn::decode): Gracefully ignore
7890 instructions of lengths 6 or 8 bytes.
7891
b02f78f9
PA
78922019-06-04 Pedro Alves <palves@redhat.com>
7893
7894 * common/gdb_unique_ptr.h (make_unique_xstrdup): New.
7895
7896 * ada-lang.c (catch_ada_completer): Use make_unique_xstrdup.
7897 * breakpoint.c (condition_completer): Likewise.
7898 * cli/cli-dump.c (scan_expression): Likewise.
7899 * common/filestuff.c (mkdir_recursive): Likewise.
7900 * common/gdb_tilde_expand.c (gdb_tilde_expand_up)
7901 * common/pathstuff.c (gdb_realpath, gdb_realpath_keepfile)
7902 (gdb_abspath): Likewise.
7903 * compile/compile-cplus-types.c
7904 (compile_cplus_instance::decl_name): Likewise.
7905 * completer.c (complete_explicit_location):
7906 (signal_completer, reg_or_group_completer_1): Likewise.
7907 * cp-support.c (cp_remove_params_if_any): Likewise.
7908 * fbsd-tdep.c (fbsd_core_vnode_path): Likewise.
7909 * guile/scm-safe-call.c (gdbscm_safe_eval_string): Likewise.
7910 * infcmd.c (strip_bg_char): Likewise.
7911 * linespec.c (copy_token_string): Likewise.
7912 * mi/mi-main.c (output_cores): Likewise.
7913 * psymtab.c (psymtab_search_name):
7914 * symfile.c (test_set_ext_lang_command): Likewise.
7915 * target.c (target_fileio_read_stralloc): Likewise.
7916 * tui/tui-regs.c (tui_reggroup_completer): Likewise.
7917 * value.c (complete_internalvar): Likewise.
7918
e1f2e1a2
CB
79192019-06-04 Christian Biesinger <cbiesinger@google.com>
7920
7921 Add objfile property to gdb.Type.
d3238f7d
PA
7922 * NEWS: Mention Python API addition.
7923 * python/py-type.c (typy_get_objfile): New method.
e1f2e1a2 7924
e664d728
PW
79252019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7926
7927 * NEWS: Mention the new set|show style [title|highlight].
7928 Mention changes to "show style", "help" and "apropos".
7929
66d8c862
PW
79302019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7931
7932 * cli/cli-decode.h (apropos_cmd): Add verbose argument.
7933 * cli/cli-decode.c (apropos_cmd): Likewise. Use print_doc_of_command
7934 instead of print_help_for_command.
7935 (print_doc_of_command): New function.
7936 (help_list): Add 'apropos -v word' suggestion.
7937 (print_help_for_command): Style the command name using title style.
7938 * cli/cli-cmds.c (apropos_command): Parse optional -v flag.
7939 (_initialize_cli_cmds): Describe -v in apropos_command help.
7940
9303eb2f
PW
79412019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7942
7943 * cli/cli-style.h (cli_style_option): Add name in constructor,
7944 add m_name class member, add constructor with intensity,
7945 add name class function.
7946 (cli_style_option::add_setshow_commands): Remove name argument.
7947 (highlight_style, title_style): New styles.
7948 * cli/cli-style.c (do_show): New function that shows a style
7949 characteristic styling the style name with itself.
7950 (set_style_name): New function.
7951 (STYLE_ADD_SETSHOW_COMMANDS): Remove NAME arguments.
7952 Update all callers according to the changes in cli/cli-style.h.
7953 * utils.h (fputs_highlighted): New function.
7954 * utils.c (fputs_highlighted): Likewise.
7955
e2c52041
PW
79562019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7957
7958 * NEWS: Mention new pipe command and new convenience variables.
7959
947d3946
PW
79602019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7961
7962 * cli/cli-cmds.c (pipe_command): New function.
7963 (_initialize_cli_cmds): Call add_com for pipe_command.
7964 Define | as an alias for pipe.
7965 (exit_status_set_internal_vars): New function.
7966 (shell_escape): Call exit_status_set_internal_vars.
7967 cli/cli-decode.c (find_command_name_length): Recognize | as
7968 a single character command.
7969
b8fd0918
PW
79702019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7971
7972 * gdbcmd.h (execute_command_to_ui_file): New declaration.
7973 top.c (execute_command_to_ui_file): New function, mostly a copy
7974 of execute_command_to_string.
7975 (execute_command_to_string): Implement by calling
7976 execute_command_to_ui_file.
7977
68bb5386
PW
79782019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7979
7980 * top.h (saved_command_line): Remove declaration.
7981 * top.c (previous_saved_command_line, previous_repeat_arguments):
7982 New variables.
7983 (saved_command_line): Make static, define together with other
7984 'repeat variables'.
7985 (dont_repeat): Clear repeat_arguments.
7986 (repeat_previous, get_saved_command_line, save_command_line):
7987 New functions.
7988 (gdb_init): Initialize saved_command_line
7989 and previous_saved_command_line.
7990 * main.c (captured_main_1): Remove saved_command_line initialization.
7991 * event-top.c (handle_line_of_input): Update to use
7992 the new 'repeat' related functions instead of direct access to
7993 saved_command_line.
7994 * command.h (repeat_previous, get_saved_command_line,
7995 save_command_line): New declarations.
7996 (dont_repeat): Add comment.
7997
bfcdb852
TT
79982019-05-30 Tom Tromey <tromey@adacore.com>
7999
8000 * gdbtypes.h (struct range_bounds) <flag_upper_bound_is_count>:
8001 Fix comment.
8002 (TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED): Rewrite comment.
8003
0ef209f2
JV
80042019-05-30 Jan Vrany <jan.vrany@fit.cvut.cz>
8005
8006 PR cli/24587
8007 * completer.c (complete): Initialize variable word.
8008
955b06fa
SDJ
80092019-05-29 Sergio Durigan Junior <sergiodj@redhat.com>
8010
8011 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192
8012 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1715008
8013 * dwarf2read.c (dwarf_decode_macro_bytes): Move check to see if
8014 'body' is NULL to the outter 'if', protecting the '!is_define'
8015 situation as well.
8016
fa9c3fa0
TT
80172019-05-29 Tom Tromey <tromey@adacore.com>
8018
8019 * dwarf2read.c (partial_die_parent_scope): Call dwarf_tag_name.
8020 (dwarf_unknown): New function.
8021 (dwarf_tag_name, dwarf_attr_name, dwarf_form_name)
8022 (dwarf_type_encoding_name): Use dwarf_unknown.
8023
4330d61d
TT
80242019-05-29 Tom Tromey <tromey@adacore.com>
8025
8026 PR c++/20020:
8027 * cp-valprint.c (cp_print_value_fields): Call
8028 cp_print_static_field inside "try".
8029
33a6bc35
TT
80302019-05-29 Tom Tromey <tromey@adacore.com>
8031
8032 * inflow.c (struct terminal_info): Add default operator=.
8033 * configure: Rebuild.
8034 * warning.m4 (AM_GDB_WARNINGS): Add -Wdeprecated-copy,
8035 -Wdeprecated-copy-dtor, -Wredundant-move.
8036
000439d5
TT
80372019-05-29 Tom Tromey <tromey@adacore.com>
8038
8039 * NEWS: Add entry.
8040 * infcmd.c (print_return_value_1): Handle finish_print
8041 option.
8042 (show_print_finish): New function.
8043 (_initialize_infcmd): Add "set/show print finish" commands.
8044 * valprint.c (user_print_options): Initialize new member.
8045 * valprint.h (struct value_print_options) <finish_print>: New
8046 member.
8047
c0e70c62
TT
80482019-05-28 Tom Tromey <tromey@adacore.com>
8049
8050 * ada-lang.c (ada_remove_Xbn_suffix)
8051 (find_old_style_renaming_symbol)
8052 (parse_old_style_renaming): Remove.
8053 (ada_find_renaming_symbol): Don't call
8054 find_old_style_renaming_symbol.
8055 (ada_is_renaming_symbol): Rename from
8056 ada_find_renaming_symbol. Remove "block" parameter. Return
8057 bool. Now static.
8058 (ada_read_var_value): Update and simplify.
8059 * ada-exp.y (write_var_or_type): Remove old code.
8060
766f8836
AH
80612019-05-28 Alan Hayward <alan.hayward@arm.com>
8062
68255adc 8063 PR gdb/25010
766f8836
AH
8064 * event-top.c: Remove include comment.
8065 * inflow.c (class scoped_ignore_sigttou): Move from here...
8066 * inflow.h (class scoped_ignore_sigttou): ...to here.
8067 * ser-unix.c (hardwire_drain_output): Block SIGTTOU during drain.
8068 * top.c: Remove include comment.
8069
eb41253a
TT
80702019-05-27 Tom Tromey <tom@tromey.com>
8071
8072 * NEWS: Fix typo.
8073
4ca51187
TT
80742019-05-22 Tom Tromey <tromey@adacore.com>
8075
8076 * target.c (target_follow_exec): Constify parameter.
8077 * target-delegates.c: Rebuild.
8078 * remote.c (remote_target::follow_exec): Constify parameter.
8079 * infrun.c (follow_exec): Constify parameter.
8080 * target.h (struct target_ops) <follow_exec>: Constify parameter.
8081 (target_follow_exec): Likewise.
8082
8fca4da0
AH
80832019-05-22 Alan Hayward <alan.hayward@arm.com>
8084
8085 * aarch64-tdep.c (aarch64_execute_dwarf_cfa_vendor_op): Treat
8086 DW_CFA_AARCH64_negate_ra_state as nop on non pauth targets.
8087
b7060614
AH
80882019-05-22 Alan Hayward <alan.hayward@arm.com>
8089
8090 * NEWS: Add debugredirect and testsuite sections.
8091
0a5954bd
SC
80922019-05-22 Simon Cook <simon.cook@embecosm.com>
8093
8094 * riscv-tdep.c (riscv_gdbarch_init): Support determining flen from
8095 target descriptions using exclusively floating point register name
8096 aliases.
8097
dc42e902
AB
80982019-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
8099
8100 PR gdb/18644:
8101 * f-lang.c (build_fortran_types): Handle the case where
8102 gdbarch_floatformat_for_type returns a nullptr.
8103
fb7806c7
TV
81042019-05-21 Tom de Vries <tdevries@suse.de>
8105
8106 PR cli/24587
8107 * cli/cli-cmds.c (complete_command): Fix use of unitialized variable.
8108
34d11c68
AB
81092019-05-18 Andrew Burgess <andrew.burgess@embecosm.com>
8110
8111 PR gdb/18644:
8112 * f-lang.c (build_fortran_types): Use floatformats_ia64_quad for
8113 16-byte floats.
8114 * i386-tdep.c (i386_floatformat_for_type): Use
8115 floatformats_ia64_quad for the 16-byte floating point component
8116 within a fortran 32-byte complex number.
8117
122cf0f2
AB
81182019-05-18 Andrew Burgess <andrew.burgess@embecosm.com>
8119
8120 * dwarf2read.c (struct cu_partial_die_info): Add constructor,
8121 delete default constructor.
8122 (find_partial_die): Update to return const struct.
8123 (partial_die_parent_scope): Move variable declaration into scope
8124 of its use and change its type to auto.
8125 (guess_partial_die_structure_name): Likewise.
8126 (partial_die_info::fixup): Likewise.
8127
33d0e35a
TT
81282019-05-17 Tom Tromey <tromey@adacore.com>
8129
8130 * source.c (find_and_open_source): Remove cast.
8131
a45575b0
TT
81322019-05-17 Tom Tromey <tromey@adacore.com>
8133
8134 * annotate.c (annotate_source): Make "filename" const.
8135 * annotate.h (annotate_source): Use const.
8136
81f47ac2
AH
81372019-05-17 Alan Hayward <alan.hayward@arm.com>
8138
8139 * disasm.c (set_disassembler_options): Send errors to stderr.
8140
ca1285d1
AH
81412019-05-17 Alan Hayward <alan.hayward@arm.com>
8142
8143 * cli/cli-interp.c (struct saved_output_files): Add saved entry.
8144 (cli_interp_base::set_logging): Check debug_redirect.
8145 * cli/cli-interp.h (set_logging): Add debug_redirect parameter.
8146 * cli/cli-logging.c (debug_redirect): Add static variable.
8147 (pop_output_files): Add default param.
8148 (handle_redirections): Print debug setting.
8149 (show_logging_command): Likewise.
8150 (_initialize_cli_logging): Add debugredirect command.
8151 * interps.c (current_interp_set_logging): Add debug_redirect
8152 parameter.
8153 * interps.h (set_logging): Add debug_redirect parameter.
8154 (current_interp_set_logging): Likewise.
8155 * mi/mi-common.h: Likewise.
8156 * mi/mi-interp.c (mi_interp::set_logging): Likewise.
8157
81582019-05-17 Alan Hayward <alan.hayward@arm.com>
f3a09c80
AH
8159 Tom Tromey <tromey@adacore.com>
8160
8161 * cli/cli-interp.c (cli_interp_base::set_logging): Create tee_file
8162 directly.
8163 * cli/cli-interp.h (make_logging_output): Remove declaration.
8164 * cli/cli-logging.c (make_logging_output): Remove function.
8165 * mi/mi-interp.c (mi_interp::set_logging): Create tee_file
8166 directly.
8167 * ui-file.c (tee_file::tee_file): Remove bools.
8168 (tee_file::~tee_file): Remove deletes.
8169 * ui-file.h (tee_file): Remove bools.
8170
26648588
JV
81712019-01-28 Jan Vrany <jan.vrany@fit.cvut.cz>
8172
8173 * mi/mi-cmds.h (mi_cmd_complete): New function.
8174 * mi/mi-main.c (mi_cmd_complete): Likewise.
8175 * mi/mi-cmds.c: Define new MI command -complete.
8176 * NEWS: Mention new -complete command.
8177
6e035501
JV
81782019-01-24 Jan Vrany <jan.vrany@fit.cvut.cz>
8179
8180 * completer.h (complete): New function.
8181 * completer.c (complete): Likewise.
8182 * cli/cli-cmds.c: (complete_command): Update to use new complete()
8183 function defined in completer.h.
8184
7d0e2ece
JV
81852019-05-17 Jan Vrany <jan.vrany@fit.cvut.cz>
8186
e79be6e5 8187 * MAINTAINERS (Write After Approval): Add myself.
7d0e2ece 8188
fb816e8b
TV
81892019-05-17 Tom de Vries <tdevries@suse.de>
8190
8191 PR gdb/24094
8192 * dwarf2read.c (struct cu_partial_die_info): New struct.
8193 (find_partial_die): Return cu_partial_die_info.
8194 (partial_die_parent_scope, guess_partial_die_structure_name)
8195 (partial_die_info::fixup): Handle new return type of find_partial_die.
8196
677052f2
SDJ
81972019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
8198
a1726c38 8199 PR breakpoints/24541
677052f2
SDJ
8200 * stap-probe.c (stap_parse_register_operand): Make "regname" an
8201 "std::string", simplifying the algorithm.
8202
f3da9116
SDJ
82032019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
8204
8205 * stap-probe.c (handle_stap_probe): Fix complaint formatting.
8206 (stap_static_probe_ops::get_probes): Likewise.
8207
f1bb75ab
SDJ
82082019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
8209
8210 * stap-probe.c (stap_parse_register_operand): Make "if (*p->arg ==
8211 '-')" and "else if".
8212 (stap_parse_single_operand): Join checks for
8213 "gdbarch_stap_parse_special_token_p" and
8214 "gdbarch_stap_parse_special_token" in the same "if" statement.
8215 Invert check when verifying for operation on register
8216 displacement.
8217
3ca58cde
SDJ
82182019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
8219
8220 * stap-probe.c (stap_get_opcode): Update comment.
8221 (stap_get_expected_argument_type): Likewise.
8222 (handle_stap_probe): Likewise.
8223
af2d9bee
SDJ
82242019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
8225
8226 * i386-tdep.c (i386_stap_parse_special_token_triplet): Change
8227 return type to 'bool'. Adjust comment. Use 'bool' when
8228 appropriate.
8229 (i386_stap_parse_special_token_three_arg_disp): Likewise.
8230 * stap-probe.c (stap_parse_argument_1): Likewise.
8231 (stap_is_operator): Likewise.
8232 (stap_is_generic_prefix): Likewise.
8233 (stap_is_register_prefix): Likewise.
8234 (stap_is_register_indirection_prefix): Likewise.
8235 (stap_is_integer_prefix): Likewise.
8236 (stap_generic_check_suffix): Likewise.
8237 (stap_check_integer_suffix): Likewise.
8238 (stap_check_register_suffix): Likewise.
8239 (stap_check_register_indirection_suffix): Likewise.
8240 (stap_parse_register_operand): Likewise.
8241 (stap_parse_single_operand): Likewise.
8242 (stap_parse_argument_1): Likewise.
8243 (stap_probe::get_argument_count): Likewise.
8244 (stap_is_operator): Likewise.
8245
61c9c421
TT
82462019-05-16 Tom Tromey <tromey@adacore.com>
8247
8248 * darwin-nat.c (thread_info_from_private_thread_info): Add struct
8249 keyword to foreach.
8250
9ddc1af1
SM
82512019-05-15 Simon Marchi <simon.marchi@efficios.com>
8252
8253 * linux-thread-db.c (try_thread_db_load_1): Change return type
8254 to bool.
8255 (try_thread_db_load): Likewise.
8256 (try_thread_db_load_from_pdir_1): Likewise.
8257 (try_thread_db_load_from_pdir): Likewise.
8258 (try_thread_db_load_from_sdir): Likewise.
8259 (try_thread_db_load_from_dir): Likewise.
8260 (thread_db_load_search): Likewise.
8261 (has_libpthread): Likewise.
8262 (thread_db_load): Likewise.
8263
7bede828
SDJ
82642019-05-15 Sergio Durigan Junior <sergiodj@redhat.com>
8265
8266 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192
8267 * dwarf2read.c (parse_macro_definition): Check whether 'body' is
8268 NULL, and complain/return if that's the case.
8269
c5358db4
JD
82702019-05-15 John Darrington <john@darrington.wattle.id.au>
8271
8272 * s12z-tdep.c (push_pull_get_stack_adjustment): New function.
8273 (advance, posn, abstract_read_memory): New functions.
8274 [struct mem_read_abstraction]: New struct.
8275 (s12z_frame_cache): Use opcodes API to interpret stack frame code.
8276
c408a94f
TT
82772019-05-14 Tom Tromey <tromey@adacore.com>
8278
8279 * ada-lang.c (coerce_unspec_val_to_type): Only set address when
8280 value is not lval_memory.
8281
e7bd7fba
TT
82822019-05-14 Tom Tromey <tromey@adacore.com>
8283
8284 * solib.c (info_sharedlibrary_command): Style the file name.
8285
a6d0f249
AH
82862019-05-14 Alan Hayward <alan.hayward@arm.com>
8287
8288 * aarch64-tdep.c (aarch64_vnh_type): Add half view.
8289 (aarch64_vnv_type): Likewise.
8290 * target-descriptions.c (make_gdb_type): Add TDESC_TYPE_IEEE_HALF.
8291 * common/tdesc.c: Likewise.
8292 * common/tdesc.h (enum tdesc_type_kind): Likewise.
8293 * features/aarch64-fpu.c (create_feature_aarch64_fpu): Regenerate.
8294 * features/aarch64-fpu.xml: Add ieee half view.
8295 * features/aarch64-sve.c (create_feature_aarch64_fpu): Likewise.
8296 * gdbtypes.c (gdbtypes_post_init): Add builtin_half
8297 * gdbtypes.h (struct builtin_type): Likewise.
8298 (struct objfile_type): Likewise.
8299
66b8bb74
SM
83002019-05-12 Paul Naert <paul.naert@polymtl.ca>
8301
8302 * language.c (language_sniff_from_mangled_name): Fix "langauge"
8303 typo.
8304 * location.h (string_to_event_location): Likewise.
8305
21c219fd
JB
83062019-05-11 Joel Brobecker <brobecker@adacore.com>
8307
8308 GDB 8.3 released.
8309
13674803
SM
83102019-05-10 Simon Marchi <simon.marchi@efficios.com>
8311
8312 * breakpoint.h (fix_multi_location_breakpoint_output_globally):
8313 New variable declaration.
8314 * breakpoint.c (fix_multi_location_breakpoint_output_globally):
8315 New variable.
8316 (print_one_breakpoint): Use ui_out::test_flags and new global
8317 variable to compute use_fixed_output.
8318 * mi/mi-main.h (mi_multi_location_breakpoint_output_fixed):
8319 Remove.
8320 * mi/mi-main.c (fix_multi_location_breakpoint_output): Remove.
8321 (mi_multi_location_breakpoint_output_fixed): Remove.
8322 (mi_cmd_fix_multi_location_breakpoint_output): Adjust to set the
8323 new variable.
8324 * mi/mi-out.c (mi_ui_out::mi_ui_out): Set
8325 fix_multi_location_breakpoint_output flag if version >= 3.
8326 * ui-out.h (enum ui_out_flag)
8327 <fix_multi_location_breakpoint_output>: New enumerator.
8328
a9eac7f9
SM
83292019-05-10 Simon Marchi <simon.marchi@efficios.com>
8330
8331 * contrib/cc-with-tweaks.sh: Validate dwz's work.
8332
71bed2db
TT
83332019-05-10 Tom Tromey <tromey@adacore.com>
8334
8335 * ada-lang.c (catch_ada_completer): New function.
8336 (_initialize_ada_language): Use it.
8337
24c54127
TT
83382019-05-10 Tom Tromey <tromey@adacore.com>
8339
8340 * thread.c (print_thread_info): Make "requested_threads" const.
8341 * gdbthread.h (print_thread_info): Make "requested_threads"
8342 const.
8343 * ada-tasks.c (print_ada_task_info): Make "taskno_str" const.
8344 * ada-lang.h (print_ada_task_info): Make "taskno_str" const.
8345
7a102139
TT
83462019-05-08 Tom Tromey <tom@tromey.com>
8347
8348 * gdbtypes.c (objfile_type_data): Change type.
8349 (objfile_type, _initialize_gdbtypes): Update.
8350
924d79e2
TT
83512019-05-08 Tom Tromey <tom@tromey.com>
8352
8353 * dwarf2-frame.c (dwarf2_frame_objfile_data): Change type.
8354 (dwarf2_frame_find_fde, dwarf2_build_frame_info)
8355 (_initialize_dwarf2_frame): Update.
8356
4c58e337
TT
83572019-05-08 Tom Tromey <tom@tromey.com>
8358
8359 * objc-lang.c (objc_objfile_data): Change type.
8360 (find_methods): Update.
8361 (_initialize_objc_lang): Remove.
8362
d772d2ab
TT
83632019-05-08 Tom Tromey <tom@tromey.com>
8364
8365 * stabsread.c (rs6000_builtin_type_data): Change type.
8366 (rs6000_builtin_type, _initialize_stabsread): Update.
8367
d11d83f4
TT
83682019-05-08 Tom Tromey <tom@tromey.com>
8369
8370 * mips-tdep.c (mips_pdr_data): Remove.
8371 (_initialize_mips_tdep): Update.
8372
9a73f0ad
TT
83732019-05-08 Tom Tromey <tom@tromey.com>
8374
8375 * hppa-tdep.c (hppa_objfile_priv_data): Change type.
8376 (hppa_init_objfile_priv_data, read_unwind_info)
8377 (find_unwind_entry, _initialize_hppa_tdep): Update.
8378
8127a2fa
TT
83792019-05-08 Tom Tromey <tom@tromey.com>
8380
8381 * elfread.c (elf_objfile_gnu_ifunc_cache_data): Change type.
8382 (elf_gnu_ifunc_record_cache): Update. Don't allocate hash table
8383 on obstack.
8384 (elf_gnu_ifunc_resolve_by_cache, _initialize_elfread): Update.
8385
91d3055d
TT
83862019-05-08 Tom Tromey <tom@tromey.com>
8387
8388 * mdebugread.c (basic_type_data): Change type.
8389 (basic_type, _initialize_mdebugread): Update.
8390
31930bd3
TT
83912019-05-08 Tom Tromey <tom@tromey.com>
8392
8393 * common/gdb_unique_ptr.h (struct noop_deleter): New.
8394
bdb3ed9e
TT
83952019-05-08 Tom Tromey <tom@tromey.com>
8396
8397 * nto-tdep.c (nto_inferior_data_reg): Change type.
8398 (nto_inferior_data): Update.
8399 (nto_inferior_data_cleanup, nto_new_inferior_data)
8400 (_initialize_nto_tdep): Remove.
8401 * nto-tdep.h (struct nto_inferior_data): Add initializers.
8402
f37b313d
TT
84032019-05-08 Tom Tromey <tom@tromey.com>
8404
8405 * ada-lang.c (struct ada_inferior_data): Add initializers.
8406 (ada_inferior_data): Change type.
8407 (ada_inferior_data_cleanup): Remove.
8408 (get_ada_inferior_data, ada_inferior_exit)
8409 (struct ada_pspace_data): Add initializers, destructor.
8410 (ada_pspace_data_handle): Change type.
8411 (get_ada_pspace_data): Update.
8412 (ada_pspace_data_cleanup): Remove.
8413
24699405
TT
84142019-05-08 Tom Tromey <tom@tromey.com>
8415
8416 * coffread.c (struct coff_symfile_info): Add initializers.
8417 (coff_objfile_data_key): Move lower. Change type.
8418 (coff_symfile_init, coff_symfile_read, _initialize_coffread):
8419 Update.
8420 (coff_free_info): Remove.
8421
d4e05d2f
TT
84222019-05-08 Tom Tromey <tom@tromey.com>
8423
8424 * fbsd-tdep.c (struct fbsd_pspace_data): Add initializers.
8425 (fbsd_pspace_data_handle): Move lower. Change type.
8426 (get_fbsd_pspace_data): Update.
8427 (fbsd_pspace_data_cleanup): Remove.
8428 (_initialize_fbsd_tdep): Update.
8429
14ef6690
TT
84302019-05-08 Tom Tromey <tom@tromey.com>
8431
8432 * ada-tasks.c (ada_tasks_pspace_data_handle): Change type.
8433 (get_ada_tasks_pspace_data): Update.
8434 (ada_tasks_pspace_data_cleanup): Remove.
8435 (_initialize_tasks): Update.
8436 (ada_tasks_inferior_data_handle): Change type.
8437 (get_ada_tasks_inferior_data): Update.
8438 (ada_tasks_inferior_data_cleanup): Remove.
8439 (struct ada_tasks_pspace_data): Add initializers.
8440
814cf43a
TT
84412019-05-08 Tom Tromey <tom@tromey.com>
8442
8443 * symfile.h (struct sym_probe_fns) <sym_get_probes>: Change type.
8444 * symfile-debug.c (debug_sym_get_probes): Change type.
8445 * stap-probe.c (handle_stap_probe):
8446 (stap_static_probe_ops::get_probes): Change type.
8447 * probe.h (class static_probe_ops) <get_probes>: Change type.
8448 * probe.c (class any_static_probe_ops) <get_probes>: Change type.
8449 (parse_probes_in_pspace): Update.
8450 (find_probes_in_objfile, find_probe_by_pc, collect_probes):
8451 Update.
8452 (any_static_probe_ops::get_probes): Change type.
8453 * elfread.c (elfread_data): New typedef.
8454 (probe_key): Change type.
8455 (elf_get_probes): Likewise. Update.
8456 (probe_key_free): Remove.
8457 (_initialize_elfread): Update.
8458 * dtrace-probe.c (class dtrace_static_probe_ops) <get_probes>:
8459 Change type.
8460 (dtrace_process_dof_probe, dtrace_process_dof)
8461 (dtrace_static_probe_ops::get_probe): Change type.
8462
02dc647e
TT
84632019-05-08 Tom Tromey <tom@tromey.com>
8464
8465 * xcoffread.c (struct xcoff_symfile_info): Rename from
8466 coff_symfile_info. Add initializers.
8467 (xcoff_objfile_data_key): Move lower. Change type.
8468 (XCOFF_DATA): Rewrite.
8469 (xcoff_free_info): Remove.
8470 (xcoff_symfile_init, _initialize_xcoffread, read_xcoff_symtab)
8471 (read_symbol, read_symbol_lineno, find_linenos, init_stringtab)
8472 (xcoff_initial_scan): Update.
8473
09232438
TT
84742019-05-08 Tom Tromey <tom@tromey.com>
8475
8476 * solib-svr4.c (struct svr4_info): Add initializers and
8477 destructor.
8478 <probes_table>: Now an htab_up.
8479 (solib_svr4_pspace_data): Change type.
8480 (free_probes_table): Simplify.
8481 (~svr4_info): Rename from svr4_pspace_data_cleanup.
8482 (get_svr4_info, probes_table_htab_remove_objfile_probes)
8483 (probes_table_remove_objfile_probes, register_solib_event_probe)
8484 (solib_event_probe_at, svr4_update_solib_event_breakpoint)
8485 (_initialize_svr4_solib): Update.
8486
7b4a314f
TT
84872019-05-08 Tom Tromey <tom@tromey.com>
8488
8489 * remote.c (remote_pspace_data): Change type.
8490 (remote_pspace_data_cleanup): Remove.
8491 (get_remote_exec_file, set_pspace_remote_exec_file)
8492 (_initialize_remote): Update.
8493
51d3063a
TT
84942019-05-08 Tom Tromey <tom@tromey.com>
8495
8496 * breakpoint.c (breakpoint_objfile_key): Change type.
8497 (get_breakpoint_objfile_data): Update.
8498 (free_breakpoint_objfile_data): Remove.
8499 (_initialize_breakpoint): Update.
8500
89fb8848
TT
85012019-05-08 Tom Tromey <tom@tromey.com>
8502
8503 * linux-tdep.c (struct linux_info): Add initializers.
8504 (linux_inferior_data): Move. Change type.
8505 (invalidate_linux_cache_inf): Update.
8506 (linux_inferior_data_cleanup): Remove.
8507 (get_linux_inferior_data, _initialize_linux_tdep): Update.
8508
e9b89e2d
TT
85092019-05-08 Tom Tromey <tom@tromey.com>
8510
8511 * auxv.c (auxv_inferior_data): Move. Change type.
8512 (auxv_inferior_data_cleanup): Remove.
8513 (invalidate_auxv_cache_inf): Rewrite.
8514 (get_auxv_inferior_data, _initialize_auxv): Update.
8515
8c42777c
TT
85162019-05-08 Tom Tromey <tom@tromey.com>
8517
8518 * symfile-debug.c (struct debug_sym_fns_data): Add initializers.
8519 (symfile_debug_objfile_data_key): Change type.
8520 (symfile_debug_installed, debug_qf_has_symbols)
8521 (debug_qf_find_last_source_symtab)
8522 (debug_qf_forget_cached_source_info)
8523 (debug_qf_map_symtabs_matching_filename, debug_qf_lookup_symbol)
8524 (debug_qf_print_stats, debug_qf_dump)
8525 (debug_qf_expand_symtabs_for_function)
8526 (debug_qf_expand_all_symtabs)
8527 (debug_qf_expand_symtabs_with_fullname)
8528 (debug_qf_map_matching_symbols)
8529 (debug_qf_expand_symtabs_matching)
8530 (debug_qf_find_pc_sect_compunit_symtab)
8531 (debug_qf_map_symbol_filenames)
8532 (debug_qf_find_compunit_symtab_by_address, debug_sym_get_probes)
8533 (debug_sym_new_init, debug_sym_init, debug_sym_read)
8534 (debug_sym_read_psymbols, debug_sym_finish, debug_sym_offsets)
8535 (debug_sym_read_linetable, debug_sym_relocate): Update.
8536 (symfile_debug_free_objfile): Remove.
8537 (install_symfile_debug_logging, _initialize_symfile_debug):
8538 Update.
8539
5bfd760d
TT
85402019-05-08 Tom Tromey <tom@tromey.com>
8541
8542 * dwarf2read.h (struct dwarf2_per_objfile): Don't inherit from
8543 allocate_on_obstack.
8544 * dwarf2read.c (dwarf2_objfile_data_key): Change type.
8545 (get_dwarf2_per_objfile): Update.
8546 (set_dwarf2_per_objfile): Remove.
8547 (dwarf2_has_info, dwarf2_get_section_info): Update.
8548 (dwarf2_free_objfile): Remove.
8549 (_initialize_dwarf2_read): Update.
8550
e85e19b4
TT
85512019-05-08 Tom Tromey <tom@tromey.com>
8552
8553 * auto-load.c (struct auto_load_pspace_info): Add destructor and
8554 initializers.
8555 <unsupported_script_warning_printed,
8556 script_not_found_warning_printed>: Now bool.
8557 (auto_load_pspace_data): Change type.
8558 (~auto_load_pspace_info): Rename from
8559 auto_load_pspace_data_cleanup.
8560 (get_auto_load_pspace_data, init_loaded_scripts_info)
8561 (clear_section_scripts, maybe_print_unsupported_script_warning)
8562 (maybe_print_script_not_found_warning, _initialize_auto_load):
8563 Update.
8564
f6aa7436
TT
85652019-05-08 Tom Tromey <tom@tromey.com>
8566
8567 * objfiles.c (objfile_pspace_info): Add destructor and
8568 initializers.
8569 (objfiles_pspace_data): Change type.
8570 (~objfile_pspace_info): Rename from objfiles_pspace_data_cleanup.
8571 (get_objfile_pspace_data): Update.
8572 (objfiles_bfd_data): Change type.
8573 (get_objfile_bfd_data): Update.
8574 (objfile_bfd_data_free, _initialize_objfiles): Remove.
8575
6ae614f6
TT
85762019-05-08 Tom Tromey <tom@tromey.com>
8577
8578 * break-catch-syscall.c (catch_syscall_inferior_data): Move.
8579 Change type.
8580 (get_catch_syscall_inferior_data): Update.
8581 (catch_syscall_inferior_data_cleanup): Remove.
8582 (_initialize_break_catch_syscall): Update.
8583
6509b8eb
TT
85842019-05-08 Tom Tromey <tom@tromey.com>
8585
8586 * inflow.c (struct terminal_info): Add destructor and
8587 initializers.
8588 (inflow_inferior_data): Change type.
8589 (~terminal_info): Rename from inflow_inferior_data_cleanup.
8590 (get_inflow_inferior_data, inflow_inferior_exit)
8591 (swap_terminal_info, _initialize_inflow): Update.
8592
35632941
TT
85932019-05-08 Tom Tromey <tom@tromey.com>
8594
8595 * target-dcache.c (target_dcache_cleanup): Remove.
8596 (target_dcache_aspace_key): Change type.
8597 (target_dcache_init_p, target_dcache_invalidate)
8598 (target_dcache_get, target_dcache_get_or_init)
8599 (_initialize_target_dcache): Update.
8600 * dcache.h (struct dcache_deleter): New.
8601
3017b94d
TT
86022019-05-08 Tom Tromey <tom@tromey.com>
8603
8604 * symtab.c (struct symbol_cache): Add destructor and
8605 initializers.
8606 (symbol_cache_key): Move. Change type.
8607 (make_symbol_cache, free_symbol_cache): Remove.
8608 (get_symbol_cache): Update.
8609 (symbol_cache_cleanup): Remove.
8610 (ALL_PSPACES, symbol_cache_flush)
8611 (maintenance_print_symbol_cache)
8612 (maintenance_print_symbol_cache_statistics, _initialize_symtab):
8613 Update.
8614
a32ad8c5
TT
86152019-05-08 Tom Tromey <tom@tromey.com>
8616
8617 * symtab.c (struct main_info): Add destructor and initializers.
8618 (main_progspace_key): Move. Change type.
8619 (get_main_info): Update.
8620 (main_info_cleanup): Remove.
8621 (_initialize_symtab): Update.
8622
5f6e90a0
TT
86232019-05-08 Tom Tromey <tom@tromey.com>
8624
8625 * registry.h (DECLARE_REGISTRY): Define the _key class.
8626
1bd0c6e4
AB
86272019-05-08 Andrew Burgess <andrew.burgess@embecosm.com>
8628
8629 * NEWS: Merge two 'New commands' sections.
8630
2228ef77
XR
86312019-05-08 Joel Brobecker <brobecker@adacore.com>
8632
8633 * ada-valprint.c (ada_val_print_gnat_array): Remove language
8634 parameter and use Ada language definition instead.
8635 (ada_val_print_ptr): Remove unused language parameter.
8636 (ada_val_print_num): Remove language parameter and use Ada language
8637 definition instead.
8638 (ada_val_print_enum, ada_val_print_flt): Remove unused language
8639 parameter.
8640 (ada_val_print_struct_union, ada_val_print_ref): Remove language
8641 parameter and use Ada language definition instead.
8642 (ada_val_print_1): Update all ada_val_print_xxx calls.
8643 Remove language parameter.
8644 (ada_val_print): Update ada_val_print_1 call.
8645
60fcc1c3
TT
86462019-05-08 Tom Tromey <tromey@adacore.com>
8647
8648 * remote.c (remote_hw_watchpoint_limit)
8649 (remote_hw_watchpoint_length_limit, remote_hw_breakpoint_limit):
8650 Now static.
8651
ed2b7c17
TT
86522019-05-08 Tom Tromey <tromey@adacore.com>
8653
8654 * maint.c (_initialize_maint_cmds): Move initialization code to
8655 remote.c.
8656 (watchdog, show_watchdog): Move to remote.c.
8657 * remote.c (watchdog, show_watchdog): Move from maint.c. Make
8658 "watchdog" static.
8659 (_initialize_remote): Move initialization code from maint.c.
8660 * defs.h (watchdog): Don't declare.
8661
b0be6c91
TT
86622019-05-08 Tom Tromey <tromey@adacore.com>
8663
8664 * tui/tui-interp.c: Include main.h.
8665 * interps.c: Include main.h.
8666 * main.h (interpreter_p): Declare.
8667 * defs.h (interpreter_p): Don't declare.
8668
587ee17b
TT
86692019-05-08 Tom Tromey <tromey@adacore.com>
8670
8671 * dwarf2loc.c: Include dwarf2read.h.
8672 * defs.h (read_unsigned_leb128): Don't declare.
8673 * dwarf2read.h (read_unsigned_leb128): Declare.
8674
ca1df239
TT
86752019-05-08 Tom Tromey <tromey@adacore.com>
8676
8677 * utils.c (fputs_maybe_filtered): Call can_emit_style_escape as a
8678 method.
8679
99f20f08
TT
86802019-05-08 Tom Tromey <tromey@adacore.com>
8681
8682 * utils.c (fputs_maybe_filtered): Reset style after paging, even
8683 when no wrap column is set.
8684
80e55b13
TT
86852019-05-08 Tom Tromey <tromey@adacore.com>
8686
8687 * c-lang.c (c_get_string): Handle non-C-style arrays.
8688
9d3421af
TT
86892019-05-08 Tom Tromey <tromey@adacore.com>
8690
8691 * typeprint.c (print_offset_data::update): Print the bit offset,
8692 not the number of bits remaining.
8693
844333e2
TT
86942019-05-08 Tom Tromey <tromey@adacore.com>
8695
8696 * typeprint.c (print_offset_data::maybe_print_hole): Add extra
8697 padding at end of comment.
8698
988915ee
TT
86992019-05-08 Tom Tromey <tromey@adacore.com>
8700
8701 * dwarf2loc.c (dwarf2_evaluate_property) <PROP_ADDR_OFFSET>:
8702 Compare main types.
8703
26bfd823
TT
87042019-05-06 Tom Tromey <tom@tromey.com>
8705
8706 * common/scoped_mmap.c: Include common-defs.h.
8707 * common/scoped_mmap.h: Don't include config.h.
8708
89055eaa
TT
87092019-05-04 Tom Tromey <tom@tromey.com>
8710
8711 * aarch64-tdep.c (stack_item_t): Remove typedef and DEF_VEC.
8712 (struct aarch64_call_info): Add initializers.
8713 <si>: Now a std::vector.
8714 (pass_on_stack, aarch64_push_dummy_call): Update.
8715
5da01df5
TT
87162019-05-04 Simon Marchi <simon.marchi@efficios.com>
8717 Tom Tromey <tom@tromey.com>
8718
8719 * ppc-linux-nat.c (thread_points_p): Remove typedef and DEF_VEC.
8720 (ppc_threads): Now a std::vector. Now static.
8721 (hwdebug_find_thread_points_by_tid)
8722 (ppc_linux_nat_target::low_new_thread, ppc_linux_thread_exit):
8723 Update.
8724
fbdf05a1
TT
87252019-05-04 Tom Tromey <tom@tromey.com>
8726
8727 * arc-tdep.c (arc_tdesc_init): Return bool.
8728
06d16ec9
TT
87292019-05-04 Tom Tromey <tom@tromey.com>
8730
8731 * arm-linux-nat.c (arm_linux_nat_target::can_use_hw_breakpoint):
8732 Use gdb_assert_not_reached.
8733
9c056022
TT
87342019-05-04 Tom Tromey <tom@tromey.com>
8735
8736 * compile/compile-cplus-types.c (compile_cplus_convert_enum): Use
8737 "false".
8738
fa9c2a59
TT
87392019-05-04 Tom Tromey <tom@tromey.com>
8740
8741 * arc-tdep.c (arc_tdesc_init): Use bool.
8742
e2eb806a
TT
87432019-05-04 Tom Tromey <tom@tromey.com>
8744
8745 * stack.c (select_frame_for_mi): Use "false", not "FALSE".
8746
6fe87677
TT
87472019-05-04 Tom Tromey <tom@tromey.com>
8748
8749 * cli/cli-cmds.c (valid_command_p): Return bool.
8750
7f008c9e
TT
87512019-05-04 Tom Tromey <tom@tromey.com>
8752
8753 * cli/cli-decode.c (valid_user_defined_cmd_name_p): Return bool.
8754 * command.h (valid_user_defined_cmd_name_p): Channge return type.
8755
b6484282
RT
87562019-05-04 Raul Tambre <raul@tambre.ee>
8757
8758 * python/lib/gdb/prompt.py (_ExtendedPrompt)
8759 <before_prompt_hook, get_show_string>: Fix incorrect use of 'is'
8760 operator for comparison.
8761
af97b416
TT
87622019-05-04 Tom Tromey <tom@tromey.com>
8763
8764 * psymtab.c (psymbol_name_matches, match_partial_symbol)
8765 (lookup_partial_symbol, print_partial_symbols)
8766 (recursively_search_psymtabs, sort_pst_symbols, psymbol_hash)
8767 (psymbol_compare): Update.
8768 (add_psymbol_to_bcache): Clear the entire psymbol.
8769 (maintenance_check_psymtabs): Update.
8770 * psympriv.h (struct partial_symbol): Don't derive from
8771 general_symbol_info.
8772 <obj_section, unrelocated_address, address,
8773 set_unrelocated_address>: Update.
8774 <ginfo>: New member.
8775 * dwarf-index-write.c (write_psymbols, debug_names::insert)
8776 (debug_names::write_psymbols): Update.
8777
9d6d4be8
TV
87782019-05-04 Tom de Vries <tdevries@suse.de>
8779
8780 * contrib/cc-with-tweaks.sh: Support -n arg.
8781
66452beb
PW
87822019-05-04 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8783
8784 * corelow.c (core_target::detach): Ensure frame cache and
8785 register caches are cleared.
8786 inferior.c (exit_inferior_1): Likewise.
8787
bde09ab7
TT
87882019-05-03 Sandra Loosemore <sandra@codesourcery.com>
8789 Tom Tromey <tom@tromey.com>
8790
8791 * dictionary.c (collate_pending_symbols_by_language): Remove
8792 "struct" from foreach.
8793 * symtab.c (lookup_global_symbol_from_objfile)
8794 (lookup_symbol_in_objfile_from_linkage_name): Remove "struct" from
8795 foreach.
8796 * ser-tcp.c (net_open): Remove "struct" from foreach.
8797 * objfiles.c (objfile_relocate, objfile_rebase)
8798 (objfile_has_symbols): Remove "struct" from foreach.
8799 * minsyms.c (lookup_minimal_symbol_by_pc_section): Remove "struct"
8800 from foreach.
8801 * dwarf2read.c (handle_struct_member_die): Remove "struct" from
8802 foreach.
8803 * darwin-nat.c (thread_info_from_private_thread_info): Remove
8804 "struct" from foreach.
8805 * ada-lang.c (create_excep_cond_exprs)
8806 (ada_exception_catchpoint_cond_string): Remove "struct" from
8807 foreach.
8808
222a8d25
TT
88092019-05-03 Tom Tromey <tromey@adacore.com>
8810
8811 * ada-exp.y (convert_char_literal): Check suffix of each
8812 enumerator.
8813
fcd60b84
DP
88142019-05-03 Dilyan Palauzov <dilyan.palauzov@aegee.org>
8815
8816 PR ada/21406:
8817 * ada-exp.y (yywrap): Don't define.
8818 * ada-lex.l (%option): Add noyywrap
8819 (yywrap): Remove.
8820
5f2459c2
EZ
88212019-05-03 Eli Zaretskii <eliz@gnu.org>
8822
353ea2d1
EZ
8823 * common/common-defs.h [__MINGW32__ || __CYGWIN__]: Define
8824 _WIN32_WINNT to the XP level, unless already defined to a higher
8825 level.
8826
8827 * unittests/parse-connection-spec-selftests.c:
8828 * ser-tcp.c:
8829 * common/netstuff.c [USE_WIN32API]: Remove the _WIN32_WINNT
8830 override.
8831
5f2459c2
EZ
8832 * symfile.c (find_separate_debug_file): Remove colon from the
8833 drive spec of DOS/Windows file names of the target, so that the
8834 file name produced from DEBUGDIR and the target's directory will
8835 be valid on DOS/Windows systems.
8836
80062eb9
AB
88372019-05-02 Andrew Burgess <andrew.burgess@embecosm.com>
8838
8839 * rust-lang.c (val_print_struct): Handle printing structures
8840 containing strings.
8841
b8c05e85
TT
88422019-05-02 Tom Tromey <tromey@adacore.com>
8843
8844 * valarith.c (_initialize_valarith): Remove.
8845
4504bbde
TT
88462019-05-01 Tom Tromey <tromey@adacore.com>
8847
8848 * ada-lang.c (ada_value_primitive_field): Treat more fields as
8849 bitfields.
8850
d48e62f4
TT
88512019-05-01 Tom Tromey <tromey@adacore.com>
8852
8853 * ada-lang.c (ada_value_assign): Correctly compute starting offset
8854 for big-endian copies.
8855
15f18d14
AT
88562019-04-30 Ali Tamur <tamur@google.com>
8857 * gdb/dwarf2read.c (read_3_bytes): New declaration.
8858 (read_attribute_value): Added DW_FORM_strx1-4 cases.
8859 (read_3_bytes): New function.
8860
ab4ee614
JB
88612019-04-30 Joel Brobecker <brobecker@adacore.com>
8862
8863 * windows-nat.c (main_thread_id): Delete.
8864 (handle_output_debug_string): Replace main_thread_id by
8865 current_event.dwThreadId.
8866 (fake_create_process): Likewise.
8867 (get_windows_debug_event) <CREATE_PROCESS_DEBUG_EVENT>:
8868 Do not set main_thread_id.
8869 <LOAD_DLL_DEBUG_EVENT>: Replace main_thread_id by
8870 current_event.dwThreadId.
8871 <UNLOAD_DLL_DEBUG_EVENT>: Likewise.
8872
8ed5b76e
JB
88732019-04-30 Joel Brobecker <brobecker@adacore.com>
8874
8875 * windows-nat.c (get_windows_debug_event) <EXIT_PROCESS_DEBUG_EVENT>:
8876 Use current_event.dwThreadId instead of main_thread_id.
8877
2ff0a947
TT
88782019-04-30 Tom Tromey <tromey@adacore.com>
8879
8880 * ada-lang.c (ada_lookup_simple_minsyms): New function.
8881 (create_excep_cond_exprs): Iterate over program spaces.
8882 (ada_exception_catchpoint_cond_string): Examine all minimal
8883 symbols for exception types.
8884
a776957c
TT
88852019-04-30 Tom Tromey <tromey@adacore.com>
8886
8887 PR c++/24470:
8888 * dwarf2read.c (process_structure_scope): Handle case where type
8889 has template parameters but no symbol was created.
8890
bc68014d
AB
88912019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8892 Chris January <chris.january@arm.com>
8893
8894 * f-typeprint.c (f_type_print_base): Print 'allocatable' type
8895 qualifier.
8896 * gdbtypes.h (TYPE_IS_ALLOCATABLE): Define.
8897
f1fdc960
AB
88982019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8899
8900 * f-typeprint.c (f_print_type): Update rules for printing
8901 whitespace.
8902 (f_type_print_varspec_suffix): Likewise.
8903
bf7a4de1
AB
89042019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8905 Chris January <chris.january@arm.com>
8906
8907 * f-typeprint.c (f_type_print_varspec_suffix): Handle printing
8908 function arguments.
8909
bbe75b9d
AB
89102019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8911
8912 * f-lang.c (build_fortran_types): Change name of void type to
8913 lower case.
8914 * f-typeprint.c (f_type_print_base): Print the name of the void
8915 type, rather than a fixed string.
8916 * f-valprint.c (f_decorations): Use lower case void string.
8917
1db455a7
AB
89182019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8919 Chris January <chris.january@arm.com>
8920
8921 * dwarf2read.c (dwarf2_init_complex_target_type): Use different
8922 types for Fortran.
8923
b6d03bb2
AB
89242019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8925 Chris January <chris.january@arm.com>
8926 David Lecomber <david.lecomber@arm.com>
8927
8928 * f-exp.y (BINOP_INTRINSIC): New token.
8929 (exp): New parser rule handling BINOP_INTRINSIC.
8930 (f77_keywords): Add new builtin procedures.
8931 * f-lang.c (evaluate_subexp_f): Handle BINOP_MOD, UNOP_FORTRAN_CEILING,
8932 UNOP_FORTRAN_FLOOR, BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
8933 (operator_length_f): Handle UNOP_FORTRAN_CEILING,
8934 UNOP_FORTRAN_FLOOR, BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
8935 (print_unop_subexp_f): New function.
8936 (print_binop_subexp_f): New function.
8937 (print_subexp_f): Handle UNOP_FORTRAN_CEILING, UNOP_FORTRAN_FLOOR,
8938 BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
8939 (dump_subexp_body_f): Likewise.
8940 (operator_check_f): Likewise.
8941 * fortran-operator.def: Add UNOP_FORTRAN_CEILING, UNOP_FORTRAN_FLOOR,
8942 BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX
8943
83228e93
AB
89442019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8945
8946 * gdb/expprint.c (dump_subexp_body_standard): Remove use of
8947 UNOP_KIND.
8948 * gdb/expression.h (exp_opcode): Include 'fortran-operator.def'.
8949 * gdb/f-exp.y (exp): Rename UNOP_KIND to UNOP_FORTRAN_KIND.
8950 * gdb/f-lang.c (evaluate_subexp_f): Likewise.
8951 (operator_length_f): New fuction.
8952 (print_subexp_f): New function.
8953 (op_name_f): New function.
8954 (dump_subexp_body_f): New function.
8955 (operator_check_f): New function.
8956 (exp_descriptor_f): Replace standard expression handling functions
8957 with new functions.
8958 * gdb/fortran-operator.def: New file.
8959 * gdb/parse.c (operator_length_standard): Remove use of UNOP_KIND.
8960 * gdb/std-operator.def: Remove UNOP_KIND.
8961
6fdcd7cc
AB
89622019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8963
8964 * std-operator.def: Remove unbalanced, stray double quote
8965 character.
8966
2e62ab40
AB
89672019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8968 Chris January <chris.january@arm.com>
8969 Daniel Everett <daniel.everett@arm.com>
8970 Nick Forrington <nick.forrington@arm.com>
8971 Richard Bunt <richard.bunt@arm.com>
8972
8973 * cp-valprint.c (cp_print_value_fields): Allow an additional level
8974 of depth when printing anonymous structs or unions.
8975 * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer):
8976 Don't print either the top-level value, or the children if the
8977 max-depth is exceeded.
8978 (ppscm_print_children): When printing the key of a map, allow one
8979 extra level of depth.
8980 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Don't
8981 print either the top-level value, or the children if the max-depth
8982 is exceeded.
8983 (print_children): When printing the key of a map, allow one extra
8984 level of depth.
8985 * python/py-value.c (valpy_format_string): Add max_depth keyword.
8986 * valprint.c: (PRINT_MAX_DEPTH_DEFAULT): Define.
8987 (user_print_options): Initialise max_depth field.
8988 (val_print_scalar_or_string_type_p): New function.
8989 (val_print): Check to see if the max depth has been reached.
8990 (val_print_check_max_depth): Define new function.
8991 (show_print_max_depth): New function.
8992 (_initialize_valprint): Add 'print max-depth' option.
8993 * valprint.h (struct value_print_options) <max_depth>: New field.
8994 (val_print_check_max_depth): Declare new function.
8995 * NEWS: Document new feature.
8996
4be290b2
AB
89972019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8998
8999 * ada-lang.c (ada_language_defn): Initialise new field.
9000 * c-lang.c (c_is_string_type_p): New function.
9001 (c_language_defn): Initialise new field.
9002 (cplus_language_defn): Initialise new field.
9003 (asm_language_defn): Initialise new field.
9004 (minimal_language_defn): Initialise new field.
9005 * c-lang.h (c_is_string_type_p): Declare new function.
9006 * d-lang.c (d_language_defn): Initialise new field.
9007 * f-lang.c (f_is_string_type_p): New function.
9008 (f_language_defn): Initialise new field.
9009 * go-lang.c (go_is_string_type_p): New function.
9010 (go_language_defn): Initialise new field.
9011 * language.c (default_is_string_type_p): New function.
9012 (unknown_language_defn): Initialise new field.
9013 (auto_language_defn): Initialise new field.
9014 * language.h (struct language_defn) <la_is_string_type_p>: New
9015 member variable.
9016 (default_is_string_type_p): Declare new function.
9017 * m2-lang.c (m2_language_defn): Initialise new field.
9018 * objc-lang.c (objc_language_defn): Initialise new field.
9019 * opencl-lang.c (opencl_language_defn): Initialise new field.
9020 * p-lang.c (pascal_is_string_type_p): New function.
9021 (pascal_language_defn): Initialise new field.
9022 * rust-lang.c (rust_is_string_type_p): New function.
9023 (rust_language_defn): Initialise new field.
9024
721b08c6
AB
90252019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
9026
9027 * language.h (struct language_defn) <la_struct_too_deep_ellipsis>:
9028 New field.
9029 * ada-lang.c (ada_language_defn): Initialise new field.
9030 * c-lang.c (c_language_defn): Likewise.
9031 (cplus_language_defn): Likewise.
9032 (asm_language_defn): Likewise.
9033 (minimal_language_defn): Likewise.
9034 * d-lang.c (d_language_defn): Likewise.
9035 * f-lang.c (f_language_defn): Likewise.
9036 * go-lang.c (go_language_defn): Likewise.
9037 * language.c (unknown_language_defn): Likewise.
9038 (auto_language_defn): Likewise.
9039 * m2-lang.c (m2_language_defn): Likewise.
9040 * objc-lang.c (objc_language_defn): Likewise.
9041 * opencl-lang.c (opencl_language_defn): Likewise.
9042 * p-lang.c (pascal_language_defn): Likewise.
9043 * rust-lang.c (rust_language_defn): Likewise.
9044
fc913e53
AB
90452019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
9046
9047 * ada-lang.c (ada_is_character_type): Change return type to bool.
9048 (ada_is_string_type): Likewise.
9049 * ada-lang.h (ada_is_character_type): Update declaration
9050 (ada_is_string_type): Likewise.
9051
fa731fa0
PW
90522019-04-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9053
9054 Support style in 'frame|thread apply'
9055
9056 * gdbcmd.h (execute_command_to_string): New term_out parameter.
9057 * record.c (record_start, record_stop): Update callers of
9058 execute_command_to_string with false.
9059 * guile/guile.c (gdbscm_execute_gdb_command): Likewise.
9060 * ui-file.h (class ui_file): New term_out and can_emit_style_escape
9061 methods.
9062 (class string_file): New constructor with term_out parameter.
9063 Override methods term_out and can_emit_style_escape. New member
9064 term_out.
9065 (class stdio_file): Override can_emit_style_escape.
9066 (class tee_file): Override term_out and can_emit_style_escape.
9067 * utils.h (can_emit_style_escape): Remove.
9068 * utils.c (can_emit_style_escape): Likewise.
9069 Update all callers of can_emit_style_escape (SOMESTREAM) to
9070 SOMESTREAM->can_emit_style_escape.
9071 * source-cache.c (source_cache::get_source_lines): Likewise.
9072 * stack.c (frame_apply_command_count): Call execute_command_to_string
9073 passing the term_out characteristic of the current gdb_stdout.
9074 * thread.c (thr_try_catch_cmd): Likewise.
9075 * top.c (execute_command_to_string): pass term_out parameter
9076 to construct the string_file for the command output.
9077 * ui-file.c (term_cli_styling): New function (most code moved
9078 from utils.c can_emit_style_escape).
9079 (string_file::string_file, string_file::can_emit_style_escape,
9080 stdio_file::can_emit_style_escape, tee_file::term_out,
9081 tee_file::can_emit_style_escape): New functions.
9082
136afab8
PW
90832019-04-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9084
9085 * NEWS: Mention the new set|show may-call-functions.
9086 * infcall.c (may_call_functions_p): New variable.
9087 (show_may_call_functions_p): New function.
9088 (call_function_by_hand_dummy): Throws an error if not
9089 may-call-functions.
9090 (_initialize_infcall): Call add_setshow_boolean_cmd for
9091 may-call-functions.
9092
725cbb63
KS
90932019-04-25 Keith Seitz <keiths@redhat.com>
9094
9095 PR c++/24367
9096 * cp-support.c (inspect_type): Don't attempt substitutions
9097 of symbol with the same name.
9098
3d1cbb78
TT
90992019-04-25 Tom Tromey <tromey@adacore.com>
9100
9101 PR gdb/24475:
9102 * event-top.c (gdb_rl_callback_handler): Make "gdb_rl_expt"
9103 static.
9104
94aeb44b
TT
91052019-04-25 Tom Tromey <tromey@adacore.com>
9106
9107 * xml-support.c (struct gdb_xml_parser) <set_error>: Take an
9108 rvalue reference.
9109 (gdb_xml_start_element_wrapper, gdb_xml_end_element_wrapper)
9110 (gdb_xml_parser::parse): Use std::move.
9111 * python/python-internal.h (gdbpy_convert_exception): Take a const
9112 reference.
9113 * python/py-value.c (valpy_getitem, valpy_nonzero): Use
9114 std::move.
9115 * python/py-utils.c (gdbpy_convert_exception): Take a const
9116 reference.
9117 * python/py-inferior.c (infpy_write_memory, infpy_search_memory):
9118 Use std::move.
9119 * python/py-breakpoint.c (bppy_set_condition, bppy_set_commands):
9120 Use std::move.
9121 * mi/mi-main.c (mi_print_exception): Take a const reference.
9122 * main.c (handle_command_errors): Take a const reference.
9123 * linespec.c (parse_linespec): Use std::move.
9124 * infcall.c (run_inferior_call): Use std::move.
9125 (call_function_by_hand_dummy): Use std::move.
9126 * exec.c (try_open_exec_file): Use std::move.
9127 * exceptions.h (exception_print, exception_fprintf)
9128 (exception_print_same): Update.
9129 * exceptions.c (print_exception, exception_print)
9130 (exception_fprintf, exception_print_same): Change parameters to
9131 const reference.
9132 * event-top.c (gdb_rl_callback_read_char_wrapper): Update.
9133 * common/new-op.c: Use std::move.
9134 * common/common-exceptions.h (struct gdb_exception): Add move
9135 constructor.
9136 (struct gdb_exception_error, struct gdb_exception_quit, struct
9137 gdb_quit_bad_alloc): Change constructor to move constructor.
9138 (throw_exception): Change parameter to rvalue reference.
9139 * common/common-exceptions.c (throw_exception): Take rvalue
9140 reference.
9141 * cli/cli-interp.c (safe_execute_command): Use std::move.
9142 * breakpoint.c (insert_bp_location, location_to_sals): Use
9143 std::move.
9144
680d7fd5
TT
91452019-04-25 Tom Tromey <tromey@adacore.com>
9146
9147 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception)
9148 (gdbscm_throw_gdb_exception): Take a gdbscm_gdb_exception.
9149 * guile/scm-block.c, guile/scm-breakpoint.c, guile/scm-cmd.c,
9150 guile/scm-disasm.c, guile/scm-frame.c, guile/scm-lazy-string.c,
9151 guile/scm-math.c, guile/scm-param.c, guile/scm-ports.c,
9152 guile/scm-symbol.c, guile/scm-symtab.c, guile/scm-type.c,
9153 guile/scm-value.c: Use unpack.
9154 * guile/guile-internal.h (gdbscm_scm_from_gdb_exception): Take a
9155 gdbscm_gdb_exception.
9156 (gdbscm_throw_gdb_exception): Likewise.
9157 (struct gdbscm_gdb_exception): New.
9158 (unpack): New function.
9159 (gdbscm_wrap): Use unpack.
9160
c6fdd8b2
TT
91612019-04-25 Tom Tromey <tromey@adacore.com>
9162
9163 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept)
9164 (gdb_rl_callback_handler): Use std::move.
9165 * common/common-exceptions.h (struct gdb_exception): Add move
9166 assignment operator.
9167 (throw_exception_sjlj): Change "exception" to const reference.
9168 * common/common-exceptions.c (exceptions_state_mc_catch): Update.
9169 (throw_exception_sjlj): Change "exception" to const reference.
9170
cc06b668
TT
91712019-04-25 Tom Tromey <tromey@adacore.com>
9172
9173 * xml-support.c (gdb_xml_parser::gdb_xml_parser): Update.
9174 * python/py-value.c (valpy_getitem, valpy_nonzero): Update.
9175 * python/py-inferior.c (infpy_write_memory, infpy_search_memory):
9176 Update.
9177 * python/py-breakpoint.c (bppy_set_condition, bppy_set_commands):
9178 Update.
9179 * mi/mi-interp.c (mi_interp::exec): Update.
9180 * linespec.c (parse_linespec): Update.
9181 * infcall.c (run_inferior_call): Update.
9182 * guile/scm-value.c (gdbscm_value_to_lazy_string): Update.
9183 * guile/scm-symbol.c (gdbscm_lookup_symbol)
9184 (gdbscm_lookup_global_symbol): Update.
9185 * guile/scm-param.c (gdbscm_parameter_value): Update.
9186 * guile/scm-frame.c (gdbscm_frame_read_register)
9187 (gdbscm_frame_read_var): Update.
9188 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Update.
9189 * exec.c (try_open_exec_file): Update.
9190 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept)
9191 (gdb_rl_callback_handler): Update.
9192 * common/common-exceptions.h (exception_none): Don't declare.
9193 * common/common-exceptions.c (exception_none): Don't define.
9194 (struct catcher) <exception>: Update.
9195 * cli/cli-interp.c (safe_execute_command): Update.
9196 * breakpoint.c (insert_bp_location, location_to_sals): Update.
9197
cf532bd1
AT
91982019-04-25 Ali Tamur <tamur@google.com>
9199
9200 * dwarf2read.c (skip_one_die): Add DW_FORM_strx.
9201 (read_attribute_value): Likewise.
9202 (dwarf2_read_addr_index): Update comment.
9203 (read_str_index): Add DW_FORM_strx.
9204 (dwarf2_string_attr): Likewise.
9205 (dwarf2_const_value_attr): Likewise.
9206 (dump_die_shallow): Likewise.
9207 (dwarf2_fetch_constant_bytes): Likewise.
9208 (skip_form_bytes): Likewise.
9209 * testsuite/lib/dwarf.exp (_handle_DW_FORM): Add DW_FORM_strx.
9210
82433e3e
SDJ
92112019-04-25 Sergio Durigan Junior <sergiodj@redhat.com>
9212
9213 PR corefiles/11608
9214 PR corefiles/18187
9215 * linux-tdep.c (dump_mapping_p): Add new parameters ADDR and
9216 OFFSET. Verify if current mapping contains an ELF header.
9217 (linux_find_memory_regions_full): Adjust call to
9218 dump_mapping_p.
9219
723adb65
SL
92202019-04-25 Sandra Loosemore <sandra@codesourcery.com>
9221 Kang Li <kanglictf@gmail.com>
9222
9223 PR gdb/21600
9224
9225 * dwarf2-frame.c (read_initial_length): Be consistent about using
9226 unsigned representation of length.
9227 (decode_frame_entry_1): Likewise. Check for wraparound of
9228 end pointer as well as buffer overflow.
9229
596179f7
SDJ
92302019-04-24 Sergio Durigan Junior <sergiodj@redhat.com>
9231
9232 * aarch64-tdep.c (aarch64_gdbarch_init): Use "pulongest" to print
9233 "vq".
9234
a59240a4
TT
92352019-04-24 Tom Tromey <tromey@adacore.com>
9236
9237 * amd64-tdep.c (amd64_has_unaligned_fields): Ignore bitfields.
9238
f872fdbb
AB
92392019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9240
9241 * s12z-tdep.c (s12z_unwind_pc): Delete.
9242 (s12z_unwind_sp): Delete.
9243 (s12z_gdbarch_init): Don't register deleted functions with
9244 gdbarch.
9245
b614e6f3
AB
92462019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9247
9248 * rl78-tdep.c (rl78_unwind_sp): Delete.
9249 (rl78_gdbarch_init): Don't register deleted function with gdbarch.
9250
14faed38
AB
92512019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9252
9253 * xstormy16-tdep.c (xstormy16_unwind_sp): Delete.
9254 (xstormy16_unwind_pc): Delete.
9255 (xstormy16_dummy_id): Delete.
9256 (xstormy16_gdbarch_init): Don't register deleted functions with
9257 gdbarch.
9258
541aad8a
AB
92592019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9260
9261 * vax-tdep.c (vax_unwind_pc): Delete.
9262 (vax_gdbarch_init): Don't register deleted function with gdbarch.
9263
29222070
AB
92642019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9265
9266 * v850-tdep.c (v850_unwind_sp): Delete.
9267 (v850_unwind_pc): Delete.
9268 (v850_dummy_id): Delete.
9269 (v850_gdbarch_init): Don't register deleted functions with
9270 gdbarch.
9271
0f534d76
AB
92722019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9273
9274 * tilegx-tdep.c (tilegx_unwind_sp): Delete.
9275 (tilegx_unwind_pc): Delete.
9276 (tilegx_unwind_dummy_id): Delete.
9277 (tilegx_gdbarch_init): Don't register deleted functions with
9278 gdbarch.
9279
1ba7b7f9
AB
92802019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9281
9282 * tic6x-tdep.c (tic6x_unwind_sp): Delete.
9283 (tic6x_dummy_id): Delete.
9284 (tic6x_gdbarch_init): Don't register deleted functions with
9285 gdbarch.
9286
d31f262c
AB
92872019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9288
9289 * sparc-tdep.c (sparc_unwind_pc): Delete.
9290 (sparc32_gdbarch_init): Don't register deleted function with
9291 gdbarch.
9292
6d14d64d
AB
92932019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9294
9295 * sh-tdep.c (sh_unwind_sp): Delete.
9296 (sh_unwind_pc): Delete.
9297 (sh_dummy_id): Delete.
9298 (sh_gdbarch_init): Don't register deleted functions with
9299 gdbarch.
9300
a40dde9d
AB
93012019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9302
9303 * score-tdep.c (score_unwind_sp): Delete.
9304 (score_unwind_pc): Delete.
9305 (score_dummy_id): Delete.
9306 (score_gdbarch_init): Don't register deleted functions with
9307 gdbarch.
9308
47c47d69
AB
93092019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9310
9311 * rx-tdep.c (rx_unwind_pc): Delete.
9312 (rx_unwind_sp): Delete.
9313 (rx_dummy_id): Delete.
9314 (rx_gdbarch_init): Don't register deleted functions with
9315 gdbarch. Update comment.
9316
833a4480
AB
93172019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9318
9319 * rs6000-tdep.c (rs6000_unwind_pc): Delete.
9320 (rs6000_dummy_id): Delete.
9321 (rs6000_gdbarch_init): Don't register deleted functions with
9322 gdbarch.
9323
3f2cef49
AB
93242019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9325
9326 * or1k-tdep.c (or1k_dummy_id): Delete.
9327 (or1k_gdbarch_init): Don't register deleted function with gdbarch.
9328
96acf884
AB
93292019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9330
9331 * nios2-tdep.c (nios2_dummy_id): Delete.
9332 (nios2_unwind_sp): Delete.
9333 (nios2_gdbarch_init): Don't register deleted functions with
9334 gdbarch.
9335
ca0ab0aa
AB
93362019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9337
9338 * nds32-tdep.c (nds32_dummy_id): Delete.
9339 (nds32_unwind_pc): Delete.
9340 (nds32_unwind_sp): Delete.
9341 (nds32_gdbarch_init): Don't register deleted functions with
9342 gdbarch.
9343
c8259044
AB
93442019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9345
9346 * msp430-tdep.c (msp430_unwind_pc): Delete.
9347 (msp430_unwind_sp): Delete.
9348 (msp430_dummy_id): Delete.
9349 (msp430_gdbarch_init): Don't register deleted functions with
9350 gdbarch.
9351
27f113c8
AB
93522019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9353
9354 * moxie-tdep.c (moxie_unwind_sp): Delete.
9355 (moxie_unwind_pc): Delete.
9356 (moxie_dummy_id): Delete.
9357 (moxie_gdbarch_init): Don't register deleted functions with
9358 gdbarch.
9359
aee6c3cd
AB
93602019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9361
9362 * mn10300-tdep.c (mn10300_dummy_id): Delete.
9363 (mn10300_unwind_pc): Delete.
9364 (mn10300_unwind_sp): Delete.
9365 (mn10300_push_dummy_call): Use gdbarch_unwind_sp not
9366 mn10300_unwind_sp.
9367 (mn10300_frame_unwind_init): Don't register deleted functions with
9368 gdbarch.
9369
8e2b5aea
AB
93702019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9371
9372 * mep-tdep.c (mep_unwind_pc): Delete.
9373 (mep_unwind_sp): Delete.
9374 (mep_dummy_id): Delete.
9375 (mep_gdbarch_init): Don't register deleted functions with
9376 gdbarch.
9377
43cf3ede
AB
93782019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9379
9380 * m68hc11-tdep.c (m68hc11_unwind_pc): Delete.
9381 (m68hc11_unwind_sp): Delete.
9382 (m68hc11_gdbarch_init): Don't register deleted functions with
9383 gdbarch.
9384
5e79b7bb
AB
93852019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9386
9387 * m32r-tdep.c (m32r_unwind_sp): Delete.
9388 (m32r_unwind_pc): Delete.
9389 (m32r_dummy_id): Delete.
9390 (m32r_gdbarch_init): Don't register deleted functions with
9391 gdbarch.
9392
89b268d8
AB
93932019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9394
9395 * m32c-tdep.c (m32c_unwind_pc): Delete.
9396 (m32c_unwind_sp): Delete.
9397 (m32c_dummy_id): Delete.
9398 (m32c_gdbarch_init): Don't register deleted functions with
9399 gdbarch.
9400
946c28d2
AB
94012019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9402
9403 * gdb/lm32-tdep.c (lm32_unwind_sp): Delete.
9404 (lm32_unwind_pc): Delete.
9405 (lm32_dummy_id): Delete.
9406 (lm32_gdbarch_init): Don't register deleted functions with
9407 gdbarch.
9408
bf12844a
AB
94092019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9410
9411 * gdb/iq2000-tdep.c (iq2000_unwind_sp): Delete.
9412 (iq2000_unwind_pc): Delete.
9413 (iq2000_dummy_id): Delete.
9414 (iq2000_gdbarch_init): Don't register deleted functions with
9415 gdbarch.
9416
ecbc06d2
AB
94172019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9418
9419 * nds32-tdep.c (nds32_type_align): Delete.
9420 (nds32_push_dummy_call): Use type_align instead.
9421
030197b4
AB
94222019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9423
9424 * arm-tdep.c (arm_type_align): Only handle vector override case.
9425 (arm_push_dummy_call): Use type_align.
9426 (arm_gdbarch_init): Register arm_type_align gdbarch function.
9427
b907456c
AB
94282019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9429
9430 * aarch64-tdep.c (aarch64_type_align): Only handle vector override
9431 case.
9432 (pass_on_stack): Use type_align.
9433 (aarch64_gdbarch_init): Register aarch64_type_align gdbarch
9434 function.
9435
9e97ba43
TT
94362019-04-23 Tom Tromey <tromey@adacore.com>
9437
9438 * dwarf2read.c (line_header::file_name_at): Remove unused
9439 overload.
9440
6892f601
TV
94412019-04-23 Tom de Vries <tdevries@suse.de>
9442
9443 PR gdb/24438
9444 * contrib/cc-with-tweaks.sh: Remove superfluous .alt file after dwz
9445 invocation.
9446
336d760d
AT
9447
94482019-03-27 Ali Tamur <tamur@google.com>
9449
9450 * dwarf2-frame.c(dwarf_expr_executor::get_addr_index): Update comment
9451 * dwarf2expr.c(dwarf_expr_context::execute_stack_op): Add DW_OP_addrx
9452 * dwarf2expr.h(dwarf_expr_context::offset): Update comment
9453 (dwarf_expr_context::get_addr_index): Likewise
9454 * dwarf2loc.c(dwarf_evaluate_loc_desc::get_addr_index): Likewise
9455 (symbol_needs_eval_context::get_addr_index): Likewise
9456 (disassemble_dwarf_expression): Add DW_OP_addrx
9457 * dwarf2read.c(attr_value_as_address): Add DW_FORM_addrx
9458 (read_cutu_die_from_dwo): Update comment
9459 (skip_one_die): Add DW_FORM_addrx
9460 (read_attribute_value): Likewise
9461 (var_decode_location): Add DW_OP_addrx
9462 (dwarf2_const_value_attr): Add DW_FORM_addrx
9463 (dump_die_shallow): Likewise
9464 (dwarf2_fetch_constant_bytes): Likewise
9465 (decode_locdesc): Add DW_OP_addrx
9466 (skip_form_bytes): Add DW_FORM_addrx
9467
ad9d13f8
AT
94682019-04-22 Ali Tamur <tamur@google.com>
9469
9470 * MAINTAINERS (Write After Approval): Add self.
9471
d70cc3ba
SM
94722019-04-22 Simon Marchi <simon.marchi@efficios.com>
9473
9474 * solib-svr4.c (get_svr4_info): Add pspace parameter.
9475 (svr4_keep_data_in_core): Pass current_program_space to get_svr4_info.
9476 (open_symbol_file_object): Likewise.
9477 (svr4_default_sos): Add info parameter.
9478 (svr4_read_so_list): Likewise.
9479 (svr4_current_sos_direct): Adjust functions calls to pass down
9480 info.
9481 (svr4_current_sos_1): Add info parameter.
9482 (svr4_current_sos): Call get_svr4_info, pass info down to
9483 svr4_current_sos_1.
9484 (svr4_fetch_objfile_link_map): Pass objfile->pspace to
9485 get_svr4_info.
9486 (svr4_in_dynsym_resolve_code): Pass current_program_space to
9487 get_svr4_info.
9488 (probes_table_htab_remove_objfile_probes): Pass objfile->pspace
9489 to get_svr4_info.
9490 (probes_table_remove_objfile_probes): Likewise.
9491 (register_solib_event_probe): Add info parameter.
9492 (solist_update_incremental): Pass info parameter down to
9493 svr4_read_so_list.
9494 (disable_probes_interface): Add info parameter.
9495 (svr4_handle_solib_event): Pass current_program_space to
9496 get_svr4_info. Adjust disable_probes_interface cleanup.
9497 (svr4_create_probe_breakpoints): Add info parameter, pass it
9498 down to register_solib_event_probe.
9499 (svr4_create_solib_event_breakpoints): Add info parameter,
9500 pass it down to svr4_create_probe_breakpoints.
9501 (enable_break): Pass info down to
9502 svr4_create_solib_event_breakpoints.
9503 (svr4_solib_create_inferior_hook): Pass current_program_space to
9504 get_svr4_info.
9505 (svr4_clear_solib): Likewise.
9506
7905fc35
PA
95072019-04-22 Pedro Alves <palves@redhat.com>
9508
9509 * solib-svr4.c (svr4_free_objfile_observer): New.
9510 (probe_and_action::objfile): New field.
9511 (probes_table_htab_remove_objfile_probes)
9512 (probes_table_remove_objfile_probes): New functions.
9513 (register_solib_event_probe): Add 'objfile' parameter. Store it
9514 in the new probe_and_action. Don't store the probe in 'lookup'.
9515 (svr4_create_probe_breakpoints): Pass objfile to
9516 register_solib_event_probe.
9517 (_initialize_svr4_solib): Register a free_objfile observer.
9518
fb881986
TT
95192019-04-19 Tom Tromey <tom@tromey.com>
9520
9521 * common/queue.h: Remove.
9522
8732db6c
TT
95232019-04-19 Tom Tromey <tom@tromey.com>
9524
9525 * event-loop.c: Don't include "common/queue.h".
9526
97dfbadd
TT
95272019-04-19 Tom Tromey <tom@tromey.com>
9528
9529 * remote.c (remote_target): Use delete.
9530 * remote-notif.h: Include <list>, not "common/queue.h".
9531 (notif_client_p): Remove typedef.
9532 (remote_notif_state): Add constructor, destructor, initializer.
9533 <notif_queue>: Now a std::list.
9534 (remote_notif_state_xfree): Don't declare.
9535 * remote-notif.c (remote_notif_process, handle_notification)
9536 (remote_notif_state_allocate): Update.
9537 (~remote_notif_state): Rename from remote_notif_state_xfree.
9538
cf250e36
TT
95392019-04-19 Tom Tromey <tom@tromey.com>
9540
9541 * symfile.c (reread_symbols): Update.
9542 * objfiles.c (objfile_register_static_link)
9543 (objfile_lookup_static_link): Update
9544 (~objfile) Don't delete static_links.
9545 * objfiles.h (struct objfile) <static_links>: Now an htab_up.
9546
61f4b350
TT
95472019-04-19 Tom Tromey <tom@tromey.com>
9548
9549 * type-stack.h (struct type_stack) <insert>: Constify string.
9550 * type-stack.c (type_stack::insert): Constify string.
9551 * gdbtypes.h (lookup_template_type): Update.
9552 (address_space_name_to_int): Update.
9553 * gdbtypes.c (address_space_name_to_int): Make space_identifier
9554 const.
9555 (lookup_template_type): Make name const.
9556 * c-exp.y: Update rules.
9557 (lex_one_token, classify_name, classify_inner_name)
9558 (c_print_token): Update.
9559 * p-exp.y: Update rules.
9560 (yylex): Update.
9561 * f-exp.y: Update rules.
9562 (yylex): Update.
9563 * d-exp.y: Update rules.
9564 (lex_one_token, classify_name, classify_inner_name): Update.
9565 * parse.c (write_dollar_variable, copy_name): Return std::string.
9566 * parser-defs.h (copy_name): Change return type.
9567 * m2-exp.y: Update rules.
9568 (yylex): Update.
9569 * go-exp.y (lex_one_token): Update.
9570 Update rules.
9571 (classify_unsafe_function, classify_packaged_name)
9572 (classify_name, yylex): Update.
9573
189b8c2e
ST
95742019-04-19 Sergei Trofimovich <siarheit@google.com>
9575
9576 * configure.ac: add --enable-source-highlight switch.
9577 * configure: Regenerate.
9578 * top.c (print_gdb_version): plumb --enable-source-highlight
9579 status to "show configuration".
9580
8ecb59f8
TT
95812019-04-19 Tom Tromey <tromey@adacore.com>
9582
9583 * ada-lang.c (ada_is_variant_part, ada_to_fixed_type_1):
9584 Check ADA_TYPE_P.
9585 (empty_record, ada_template_to_fixed_record_type_1)
9586 (template_to_static_fixed_type)
9587 (to_record_with_fixed_variant_part): Use INIT_NONE_SPECIFIC.
9588 * cp-abi.c (value_rtti_type): Check HAVE_CPLUS_STRUCT.
9589 * gdbtypes.h (INIT_NONE_SPECIFIC, ADA_TYPE_P): New
9590 macros.
9591
62160ec9
TT
95922019-04-19 Ilya Yu. Malakhov <malakhov@mcst.ru>
9593
9594 PR symtab/24423:
9595 * source.c (print_source_lines_base): Advance "iter" when a
9596 control character is seen.
9597
f2ae8bc8
PW
95982019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9599
9600 * inferior.h (struct infcall_suspend_state_deleter):
9601 Catch exception in destructor to avoid crash.
9602
d563b953
PW
96032019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9604
9605 * cli/cli-cmds.c (_initialize_cli_cmds): Move "shell" "!" alias
9606 close to the add_com "shell".
9607
dc34c897
TT
96082019-04-18 Tom Tromey <tromey@adacore.com>
9609
9610 * process-stratum-target.h (class process_stratum_target)
9611 <stratum>: Add "final".
9612
a12e5744
TT
96132019-04-17 Tom Tromey <tromey@adacore.com>
9614
9615 * dwarf2read.c (dwarf2_init_complex_target_type): Check "tt"
9616 against nullptr before use.
9617
a7e559cc
AH
96182019-04-17 Alan Hayward <alan.hayward@arm.com>
9619
9620 * nat/linux-waitpid.c (linux_debug): Call debug_vprintf.
9621
c01660c6
AB
96222019-04-17 Jim Wilson <jimw@sifive.com>
9623 Andrew Burgess <andrew.burgess@embecosm.com>
9624
9625 * riscv-tdep.c (riscv_breakpoint_kind_from_pc): Hanndle case where
9626 code read might fail, assume 4-byte breakpoint in that case.
9627
4aa866af
LS
96282019-04-15 Leszek Swirski <leszeks@google.com>
9629
9630 * amd64-tdep.c (amd64_classify_aggregate): Use cp_pass_by_reference
9631 rather than a hand-rolled POD check when checking for forced MEMORY
9632 classification.
9633
48574d91
AH
96342019-04-15 Alan Hayward <alan.hayward@arm.com>
9635
9636 * aarch64-linux-nat.c (store_sveregs_to_thread): Set vector length.
9637 * nat/aarch64-sve-linux-ptrace.c (aarch64_sve_set_vq): New
9638 function.
9639 (aarch64_sve_regs_copy_to_reg_buf): Remove VG checks.
9640 (aarch64_sve_regs_copy_from_reg_buf): Likewise.
9641 * nat/aarch64-sve-linux-ptrace.h (aarch64_sve_set_vq): New
9642 declaration.
9643
4da037ef
AH
96442019-04-15 Alan Hayward <alan.hayward@arm.com>
9645
9646 * aarch64-linux-nat.c
9647 (aarch64_linux_nat_target::thread_architecture): Add override.
9648 * aarch64-tdep.c (aarch64_gdbarch_init): Ensure different tdesc for
9649 each VQ.
9650
ccb8d7e8
AH
96512019-04-15 Alan Hayward <alan.hayward@arm.com>
9652
9653 * aarch64-tdep.c (aarch64_gdbarch_init): Move gdbarch lookup.
9654
35add35e
AB
96552019-04-13 Andrew Burgess <andrew.burgess@embecosm.com>
9656
9657 * dwarf2read.c (dwarf2_init_complex_target_type): Handle complex
9658 target types of size 96-bits, add some additional comments, and
9659 check that the builtin type we found was the correct size.
9660
51196bbc
EZ
96612019-04-12 Eli Zaretskii <eliz@gnu.org>
9662
9663 * utils.c (prompt_for_continue): Don't restore the styling at the
9664 end, as applied_style has the wrong value. This fixes styling in
9665 long lists of file names that are interrupted by the "Continue?"
9666 prompt.
9667
62253a61
AB
96682019-04-12 Andrew Burgess <andrew.burgess@embecosm.com>
9669
9670 * ada-lang.c (ada_language_defn): Remove use of LANG_MAGIC.
9671 * c-lang.c (c_language_defn): Likewise.
9672 (cplus_language_defn): Likewise.
9673 (asm_language_defn): Likewise.
9674 (minimal_language_defn): Likewise.
9675 * d-lang.c (d_language_defn): Likewise.
9676 * f-lang.c (f_language_defn): Likewise.
9677 * go-lang.c (go_language_defn): Likewise.
9678 * language.c (unknown_language_defn): Likewise.
9679 (auto_language_defn): Likewise.
9680 * language.h (struct language_defn): Remove la_magic field.
9681 (LANG_MAGIC): Delete.
9682 * m2-lang.c (m2_language_defn): Remove use of LANG_MAGIC.
9683 * objc-lang.c (objc_language_defn): Likewise.
9684 * opencl-lang.c (opencl_language_defn): Likewise.
9685 * p-lang.c (pascal_language_defn): Likewise.
9686 * rust-lang.c (rust_language_defn): Likewise.
9687
a9158a86
AB
96882019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
9689
9690 * riscv-tdep.c (riscv_type_align): New function.
9691 (riscv_type_alignment): Delete.
9692 (riscv_arg_location): Use 'type_align'.
9693 (riscv_gdbarch_init): Register riscv_type_align gdbarch function.
9694
41077b66
AB
96952019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
9696
9697 * gdbtypes.c (type_align): A struct with no non-static fields also
9698 has alignment of 1.
9699
9f0272f8
AB
97002019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
9701
9702 * riscv-tdep.c (riscv_call_arg_complex_float): Fix offset of first
9703 component to 0.
9704 (riscv_struct_info::riscv_struct_info): Initialise m_offsets
9705 member.
9706 (riscv_struct_info::analyse): New implementation using new
9707 analyse_inner member function.
9708 (riscv_struct_info::field_offset): New member function.
9709 (riscv_struct_info::m_offsets): New member variable.
9710 (riscv_struct_info::analyse_inner): New private member function,
9711 takes the old implementation of riscv_struct_info::analyse but
9712 extended to track field offsets.
9713 (riscv_call_arg_struct): Update the struct folding special cases
9714 to handle cases where empty C++ structs, which are non-zero
9715 length, are found.
9716 (riscv_arg_location): Initialise the length of each location, a
9717 non-zero length now indicates the location is in use.
9718 (riscv_push_dummy_call): Allow for the first location having a
9719 non-zero offset when setting up arguments.
9720 (riscv_return_value): Likewise, but for return values.
9721
02cf60c7
TT
97222019-04-11 Tom Tromey <tromey@adacore.com>
9723
9724 * utils.c (internal_vproblem): Make "msg" const.
9725
68811f8f
AH
97262019-04-11 Alan Hayward <alan.hayward@arm.com>
9727
9728 * aarch64-tdep.c (aarch64_analyze_prologue_test): Reset saved regs.
9729 * trad-frame.c (trad_frame_reset_saved_regs): New function.
9730 (trad_frame_alloc_saved_regs): Call trad_frame_reset_saved_regs.
9731 * trad-frame.h (trad_frame_reset_saved_regs): New declaration.
9732
3f52fdbc
KB
97332019-04-10 Kevin Buettner <kevinb@redhat.com>
9734
9735 * amd64-linux-nat.c (amd64_linux_collect_native_gregset): New
9736 function.
9737 (fill_gregset): Call amd64_linux_collect_native_gregset instead
9738 of amd64_collect_native_gregset.
9739 (amd64_linux_nat_target::store_registers): Likewise.
9740
e9ad22ee
TT
97412019-04-10 Tom Tromey <tom@tromey.com>
9742
9743 * symtab.c (lookup_global_symbol_from_objfile)
9744 (lookup_symbol_in_objfile_from_linkage_name): Use the iterator.
9745 * objfiles.h (class separate_debug_iterator): New.
9746 (class separate_debug_range): New.
9747 (struct objfile) <separate_debug_objfiles>: New method.
9748 (objfile_separate_debug_iterate): Don't declare.
9749 * objfiles.c (separate_debug_iterator::operator++): Rename from
9750 objfile_separate_debug_iterate.
9751 (objfile_relocate, objfile_rebase, objfile_has_symbols): Use the
9752 iterator.
9753 * minsyms.c (lookup_minimal_symbol_by_pc_section): Use the
9754 iterator.
9755
ee371134
TT
97562019-04-10 Tom Tromey <tom@tromey.com>
9757
9758 * symfile.c (reread_symbols): Remove old comment.
9759 * objfiles.c (free_all_objfiles): Fix a typo.
9760
bf227d61
TT
97612019-04-10 Tom Tromey <tom@tromey.com>
9762
9763 * ia64-tdep.c (ia64_get_dyn_info_list): Use foreach.
9764 * minsyms.c (lookup_minimal_symbol): Use foreach.
9765 (lookup_minimal_symbol_text, lookup_minimal_symbol_by_pc_name)
9766 (lookup_minimal_symbol_solib_trampoline): Likewise.
9767 * symfile.c (reread_symbols): Use foreach.
9768
8dc433a0
TT
97692019-04-09 Ivan Begert <ivanbegert@gmail.com>
9770 Tom Tromey <tromey@adacore.com>
9771
9772 PR rust/24414:
9773 * rust-exp.y (rust_parser::lex_number): Use strtoulst.
9774 (rust_lex_int_test): Change "value" to be LONGEST.
9775 (rust_lex_tests): Add test for long integer literal.
9776
9ab8741a
TT
97772019-04-09 Tom Tromey <tromey@adacore.com>
9778
9779 * remote.c (remote_target::remote_add_inferior): Change fake_pid_p
9780 to bool.
9781 (extended_remote_target::attach): Update.
9782 (remote_target::remote_notice_new_inferior): Update.
9783 (remote_target::add_current_inferior_and_thread): Update.
9784 * inferior.c (exit_inferior_1): Use "false".
9785 * corelow.c (add_to_thread_list): Make fake_pid_p bool.
9786
e242fd12
SM
97872019-04-09 Simon Marchi <simon.marchi@efficios.com>
9788
9ca1957f 9789 * infcmd.c (run_command_1): Pass -qualified to tbreak when using
e242fd12
SM
9790 the "start" command.
9791
2b0c8b01
KB
97922019-04-08 Kevin Buettner <kevinb@redhat.com>
9793
9794 * python/py-inferior.c (infpy_thread_from_thread_handle):
9795 Adjust comments to reflect renaming of thread_from_thread_handle
9796 to thread_from_handle. Adjust keywords. Fix type error message.
9797 (inferior_object_methods): Add thread_from_handle. Retain
9798 thread_from_thread_handle, but mark it as deprecated.
9799
50a82723
KB
98002019-04-08 Kevin Buettner <kevinb@redhat.com>
9801
9802 * gdbthread.h (find_thread_by_handle): Revise declaration.
9803 * thread.c (find_thread_by_handle): Likewise. Adjust
9804 implementation too.
9805 * python/py-inferior.c (infpy_thread_from_thread_handle): Add
9806 support for buffer objects as handles.
9807
cf63b016
KB
98082019-04-08 Kevin Buettner <kevinb@redhat.com>
9809
9810 * python/py-infthread.c (thpy_thread_handle): New function.
9811 (thread_object_methods): Register thpy_thread_handle.
9812
3d6c6204
KB
98132019-04-08 Kevin Buettner <kevinb@redhat.com>
9814
9815 * gdbthread.h (thread_to_thread_handle): Declare.
9816 * thread.c (gdbtypes.h): Include.
9817 (thread_to_thread_handle): New function.
9818
9819 * target.h (struct target_ops): Add thread_info_to_thread_handle.
9820 (target_thread_info_to_thread_handle): Declare.
9821 * target.c (target_thread_info_to_thread_handle): New function.
9822 * target-debug.h (target_debug_print_gdb_byte_vector): Define.
9823 * target-delegates.c: Regenerate.
9824
9825 * linux-thread-db.c (class thread_db_target): Add method
9826 thread_info_to_thread_handle.
9827 (thread_db_target::thread_info_to_thread_handle): Define.
9828 * remote.c (class remote_target): Add new method
9829 thread_info_to_thread_handle.
9830 (remote_target::thread_info_to_thread_handle): Define.
9831
56be6ea8
PA
98322019-04-08 Pedro Alves <palves@redhat.com>
9833
9834 * common/common-exceptions.c (throw_exception): Don't create
9835 named object to throw; throw directly.
9836 (throw_it): Likewise. Don't initialize gdb_exception::message
9837 here, with new; pass FMT and AP to the ctor instead.
9838 * common/common-exceptions.h: Include <string>.
9839 (gdb_exception::gdb_exception(enum return_reason, enum errors,
9840 const char *, va_list)): New ctor. Use std::make_shared.
9841 (gdb_exception_error::gdb_exception_error(enum return_reason, enum
9842 errors)): Delete.
9843 (gdb_exception_error::gdb_exception_error(enum errors, const char
9844 *, va_list)): New.
9845 (gdb_exception_error::gdb_exception_error(const gdb_exception &)):
9846 Add assertion.
9847 (gdb_exception_quit::gdb_exception_quit(enum return_reason, enum
9848 errors)): Delete.
9849 (gdb_exception_quit::gdb_exception_quit(const char *, va_list)): New.
9850 (gdb_exception_quit::gdb_exception_quit(const gdb_exception &)):
9851 Add assertion.
9852
eedc3f4f
TT
98532019-04-08 Tom Tromey <tom@tromey.com>
9854
9855 * valops.c (value_rtti_indirect_type): Replace throw_exception
9856 with throw.
9857 * tracefile-tfile.c (tfile_target_open): Replace throw_exception
9858 with throw.
9859 * thread.c (thr_try_catch_cmd): Replace throw_exception with
9860 throw.
9861 * target.c (target_translate_tls_address): Replace throw_exception
9862 with throw.
9863 * stack.c (frame_apply_command_count): Replace throw_exception
9864 with throw.
9865 * solib-spu.c (append_ocl_sos): Replace throw_exception with
9866 throw.
9867 * s390-tdep.c (s390_frame_unwind_cache): Replace throw_exception
9868 with throw.
9869 * rs6000-tdep.c (rs6000_frame_cache)
9870 (rs6000_epilogue_frame_cache): Replace throw_exception with throw.
9871 * remote.c: Replace throw_exception with throw.
9872 * record-full.c (record_full_message, record_full_wait_1)
9873 (record_full_restore): Replace throw_exception with throw.
9874 * record-btrace.c:
9875 (get_thread_current_frame_id, record_btrace_start_replaying)
9876 (cmd_record_btrace_bts_start, cmd_record_btrace_pt_start)
9877 (cmd_record_btrace_start): Replace throw_exception with throw.
9878 * parse.c (parse_exp_in_context_1): Replace throw_exception with
9879 throw.
9880 * linux-nat.c (detach_one_lwp, linux_resume_one_lwp)
9881 (resume_stopped_resumed_lwps): Replace throw_exception with throw.
9882 * linespec.c:
9883 (find_linespec_symbols): Replace throw_exception with throw.
9884 * infrun.c (displaced_step_prepare, resume): Replace
9885 throw_exception with throw.
9886 * infcmd.c (post_create_inferior): Replace throw_exception with
9887 throw.
9888 * inf-loop.c (inferior_event_handler): Replace throw_exception
9889 with throw.
9890 * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache)
9891 (i386_sigtramp_frame_cache): Replace throw_exception with throw.
9892 * frame.c (frame_unwind_pc, get_prev_frame_if_no_cycle)
9893 (get_prev_frame_always, get_frame_pc_if_available)
9894 (get_frame_address_in_block_if_available, get_frame_language):
9895 Replace throw_exception with throw.
9896 * frame-unwind.c (frame_unwind_try_unwinder): Replace
9897 throw_exception with throw.
9898 * eval.c (fetch_subexp_value, evaluate_var_value)
9899 (evaluate_funcall, evaluate_subexp_standard): Replace
9900 throw_exception with throw.
9901 * dwarf2loc.c (call_site_find_chain)
9902 (dwarf2_evaluate_loc_desc_full, dwarf2_locexpr_baton_eval):
9903 Replace throw_exception with throw.
9904 * dwarf2-frame.c (dwarf2_frame_cache): Replace throw_exception
9905 with throw.
9906 * darwin-nat.c (darwin_attach_pid): Replace throw_exception with
9907 throw.
9908 * cp-abi.c (baseclass_offset): Replace throw_exception with throw.
9909 * completer.c (complete_line_internal): Replace throw_exception
9910 with throw.
9911 * compile/compile-object-run.c (compile_object_run): Replace
9912 throw_exception with throw.
9913 * cli/cli-script.c (process_next_line): Replace throw_exception
9914 with throw.
9915 * btrace.c (btrace_compute_ftrace_pt, btrace_compute_ftrace)
9916 (btrace_enable, btrace_maint_update_pt_packets): Replace
9917 throw_exception with throw.
9918 * breakpoint.c (create_breakpoint, save_breakpoints): Replace
9919 throw_exception with throw.
9920 * break-catch-throw.c (re_set_exception_catchpoint): Replace
9921 throw_exception with throw.
9922 * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache)
9923 (amd64_epilogue_frame_cache): Replace throw_exception with throw.
9924 * aarch64-tdep.c (aarch64_make_prologue_cache)
9925 (aarch64_make_stub_cache): Replace throw_exception with throw.
9926
26003a20
TT
99272019-04-08 Tom Tromey <tom@tromey.com>
9928
9929 * common/common-exceptions.c (throw_exception): Rename from
9930 throw_exception_cxx. Remove old copy. Make argument const.
9931 (throw_it): Create and throw exception objects directly.
9932 * common/common-exceptions.h (throw_exception): Make argument
9933 const.
9934 (struct gdb_exception_error): Add constructor.
9935 (struct gdb_exception_quit): Add constructor.
9936
d272eb37
TT
99372019-04-08 Tom Tromey <tom@tromey.com>
9938
9939 * common/common-exceptions.h (exception_rethrow): Don't declare.
9940 (TRY_SJLJ): Update comment.
9941 (TRY, CATCH, END_CATCH): Remove.
9942 * common/common-exceptions.c (exception_rethrow): Remove.
9943
230d2906
TT
99442019-04-08 Tom Tromey <tom@tromey.com>
9945
9946 * common/common-exceptions.h (gdb_exception_RETURN_MASK_ALL):
9947 Remove.
9948 (gdb_exception_error): Rename from
9949 gdb_exception_RETURN_MASK_ERROR.
9950 (gdb_exception_quit): Rename from gdb_exception_RETURN_MASK_QUIT.
9951 (gdb_quit_bad_alloc): Update.
9952 * aarch64-tdep.c: Update.
9953 * ada-lang.c: Update.
9954 * ada-typeprint.c: Update.
9955 * ada-valprint.c: Update.
9956 * amd64-tdep.c: Update.
9957 * arch-utils.c: Update.
9958 * break-catch-throw.c: Update.
9959 * breakpoint.c: Update.
9960 * btrace.c: Update.
9961 * c-varobj.c: Update.
9962 * cli/cli-cmds.c: Update.
9963 * cli/cli-interp.c: Update.
9964 * cli/cli-script.c: Update.
9965 * common/common-exceptions.c: Update.
9966 * common/new-op.c: Update.
9967 * common/selftest.c: Update.
9968 * compile/compile-c-symbols.c: Update.
9969 * compile/compile-cplus-symbols.c: Update.
9970 * compile/compile-object-load.c: Update.
9971 * compile/compile-object-run.c: Update.
9972 * completer.c: Update.
9973 * corelow.c: Update.
9974 * cp-abi.c: Update.
9975 * cp-support.c: Update.
9976 * cp-valprint.c: Update.
9977 * darwin-nat.c: Update.
9978 * disasm-selftests.c: Update.
9979 * dtrace-probe.c: Update.
9980 * dwarf-index-cache.c: Update.
9981 * dwarf-index-write.c: Update.
9982 * dwarf2-frame-tailcall.c: Update.
9983 * dwarf2-frame.c: Update.
9984 * dwarf2loc.c: Update.
9985 * dwarf2read.c: Update.
9986 * eval.c: Update.
9987 * event-loop.c: Update.
9988 * event-top.c: Update.
9989 * exec.c: Update.
9990 * f-valprint.c: Update.
9991 * fbsd-tdep.c: Update.
9992 * frame-unwind.c: Update.
9993 * frame.c: Update.
9994 * gdbtypes.c: Update.
9995 * gnu-v3-abi.c: Update.
9996 * guile/guile-internal.h: Update.
9997 * guile/scm-block.c: Update.
9998 * guile/scm-breakpoint.c: Update.
9999 * guile/scm-cmd.c: Update.
10000 * guile/scm-disasm.c: Update.
10001 * guile/scm-frame.c: Update.
10002 * guile/scm-lazy-string.c: Update.
10003 * guile/scm-math.c: Update.
10004 * guile/scm-param.c: Update.
10005 * guile/scm-ports.c: Update.
10006 * guile/scm-pretty-print.c: Update.
10007 * guile/scm-symbol.c: Update.
10008 * guile/scm-symtab.c: Update.
10009 * guile/scm-type.c: Update.
10010 * guile/scm-value.c: Update.
10011 * i386-linux-tdep.c: Update.
10012 * i386-tdep.c: Update.
10013 * inf-loop.c: Update.
10014 * infcall.c: Update.
10015 * infcmd.c: Update.
10016 * infrun.c: Update.
10017 * jit.c: Update.
10018 * language.c: Update.
10019 * linespec.c: Update.
10020 * linux-fork.c: Update.
10021 * linux-nat.c: Update.
10022 * linux-tdep.c: Update.
10023 * linux-thread-db.c: Update.
10024 * main.c: Update.
10025 * mi/mi-cmd-break.c: Update.
10026 * mi/mi-cmd-stack.c: Update.
10027 * mi/mi-interp.c: Update.
10028 * mi/mi-main.c: Update.
10029 * objc-lang.c: Update.
10030 * p-valprint.c: Update.
10031 * parse.c: Update.
10032 * ppc-linux-tdep.c: Update.
10033 * printcmd.c: Update.
10034 * python/py-arch.c: Update.
10035 * python/py-breakpoint.c: Update.
10036 * python/py-cmd.c: Update.
10037 * python/py-finishbreakpoint.c: Update.
10038 * python/py-frame.c: Update.
10039 * python/py-framefilter.c: Update.
10040 * python/py-gdb-readline.c: Update.
10041 * python/py-inferior.c: Update.
10042 * python/py-infthread.c: Update.
10043 * python/py-lazy-string.c: Update.
10044 * python/py-linetable.c: Update.
10045 * python/py-objfile.c: Update.
10046 * python/py-param.c: Update.
10047 * python/py-prettyprint.c: Update.
10048 * python/py-progspace.c: Update.
10049 * python/py-record-btrace.c: Update.
10050 * python/py-record.c: Update.
10051 * python/py-symbol.c: Update.
10052 * python/py-type.c: Update.
10053 * python/py-unwind.c: Update.
10054 * python/py-utils.c: Update.
10055 * python/py-value.c: Update.
10056 * python/python.c: Update.
10057 * record-btrace.c: Update.
10058 * record-full.c: Update.
10059 * remote-fileio.c: Update.
10060 * remote.c: Update.
10061 * riscv-tdep.c: Update.
10062 * rs6000-aix-tdep.c: Update.
10063 * rs6000-tdep.c: Update.
10064 * rust-exp.y: Update.
10065 * rust-lang.c: Update.
10066 * s390-tdep.c: Update.
10067 * selftest-arch.c: Update.
10068 * solib-dsbt.c: Update.
10069 * solib-frv.c: Update.
10070 * solib-spu.c: Update.
10071 * solib-svr4.c: Update.
10072 * solib.c: Update.
10073 * sparc64-linux-tdep.c: Update.
10074 * stack.c: Update.
10075 * symfile-mem.c: Update.
10076 * symmisc.c: Update.
10077 * target.c: Update.
10078 * thread.c: Update.
10079 * top.c: Update.
10080 * tracefile-tfile.c: Update.
10081 * tui/tui.c: Update.
10082 * typeprint.c: Update.
10083 * unittests/cli-utils-selftests.c: Update.
10084 * unittests/parse-connection-spec-selftests.c: Update.
10085 * valops.c: Update.
10086 * valprint.c: Update.
10087 * value.c: Update.
10088 * varobj.c: Update.
10089 * windows-nat.c: Update.
10090 * x86-linux-nat.c: Update.
10091 * xml-support.c: Update.
10092
a70b8144
TT
100932019-04-08 Tom Tromey <tom@tromey.com>
10094
10095 * xml-support.c: Use C++ exception handling.
10096 * x86-linux-nat.c: Use C++ exception handling.
10097 * windows-nat.c: Use C++ exception handling.
10098 * varobj.c: Use C++ exception handling.
10099 * value.c: Use C++ exception handling.
10100 * valprint.c: Use C++ exception handling.
10101 * valops.c: Use C++ exception handling.
10102 * unittests/parse-connection-spec-selftests.c: Use C++ exception
10103 handling.
10104 * unittests/cli-utils-selftests.c: Use C++ exception handling.
10105 * typeprint.c: Use C++ exception handling.
10106 * tui/tui.c: Use C++ exception handling.
10107 * tracefile-tfile.c: Use C++ exception handling.
10108 * top.c: Use C++ exception handling.
10109 * thread.c: Use C++ exception handling.
10110 * target.c: Use C++ exception handling.
10111 * symmisc.c: Use C++ exception handling.
10112 * symfile-mem.c: Use C++ exception handling.
10113 * stack.c: Use C++ exception handling.
10114 * sparc64-linux-tdep.c: Use C++ exception handling.
10115 * solib.c: Use C++ exception handling.
10116 * solib-svr4.c: Use C++ exception handling.
10117 * solib-spu.c: Use C++ exception handling.
10118 * solib-frv.c: Use C++ exception handling.
10119 * solib-dsbt.c: Use C++ exception handling.
10120 * selftest-arch.c: Use C++ exception handling.
10121 * s390-tdep.c: Use C++ exception handling.
10122 * rust-lang.c: Use C++ exception handling.
10123 * rust-exp.y: Use C++ exception handling.
10124 * rs6000-tdep.c: Use C++ exception handling.
10125 * rs6000-aix-tdep.c: Use C++ exception handling.
10126 * riscv-tdep.c: Use C++ exception handling.
10127 * remote.c: Use C++ exception handling.
10128 * remote-fileio.c: Use C++ exception handling.
10129 * record-full.c: Use C++ exception handling.
10130 * record-btrace.c: Use C++ exception handling.
10131 * python/python.c: Use C++ exception handling.
10132 * python/py-value.c: Use C++ exception handling.
10133 * python/py-utils.c: Use C++ exception handling.
10134 * python/py-unwind.c: Use C++ exception handling.
10135 * python/py-type.c: Use C++ exception handling.
10136 * python/py-symbol.c: Use C++ exception handling.
10137 * python/py-record.c: Use C++ exception handling.
10138 * python/py-record-btrace.c: Use C++ exception handling.
10139 * python/py-progspace.c: Use C++ exception handling.
10140 * python/py-prettyprint.c: Use C++ exception handling.
10141 * python/py-param.c: Use C++ exception handling.
10142 * python/py-objfile.c: Use C++ exception handling.
10143 * python/py-linetable.c: Use C++ exception handling.
10144 * python/py-lazy-string.c: Use C++ exception handling.
10145 * python/py-infthread.c: Use C++ exception handling.
10146 * python/py-inferior.c: Use C++ exception handling.
10147 * python/py-gdb-readline.c: Use C++ exception handling.
10148 * python/py-framefilter.c: Use C++ exception handling.
10149 * python/py-frame.c: Use C++ exception handling.
10150 * python/py-finishbreakpoint.c: Use C++ exception handling.
10151 * python/py-cmd.c: Use C++ exception handling.
10152 * python/py-breakpoint.c: Use C++ exception handling.
10153 * python/py-arch.c: Use C++ exception handling.
10154 * printcmd.c: Use C++ exception handling.
10155 * ppc-linux-tdep.c: Use C++ exception handling.
10156 * parse.c: Use C++ exception handling.
10157 * p-valprint.c: Use C++ exception handling.
10158 * objc-lang.c: Use C++ exception handling.
10159 * mi/mi-main.c: Use C++ exception handling.
10160 * mi/mi-interp.c: Use C++ exception handling.
10161 * mi/mi-cmd-stack.c: Use C++ exception handling.
10162 * mi/mi-cmd-break.c: Use C++ exception handling.
10163 * main.c: Use C++ exception handling.
10164 * linux-thread-db.c: Use C++ exception handling.
10165 * linux-tdep.c: Use C++ exception handling.
10166 * linux-nat.c: Use C++ exception handling.
10167 * linux-fork.c: Use C++ exception handling.
10168 * linespec.c: Use C++ exception handling.
10169 * language.c: Use C++ exception handling.
10170 * jit.c: Use C++ exception handling.
10171 * infrun.c: Use C++ exception handling.
10172 * infcmd.c: Use C++ exception handling.
10173 * infcall.c: Use C++ exception handling.
10174 * inf-loop.c: Use C++ exception handling.
10175 * i386-tdep.c: Use C++ exception handling.
10176 * i386-linux-tdep.c: Use C++ exception handling.
10177 * guile/scm-value.c: Use C++ exception handling.
10178 * guile/scm-type.c: Use C++ exception handling.
10179 * guile/scm-symtab.c: Use C++ exception handling.
10180 * guile/scm-symbol.c: Use C++ exception handling.
10181 * guile/scm-pretty-print.c: Use C++ exception handling.
10182 * guile/scm-ports.c: Use C++ exception handling.
10183 * guile/scm-param.c: Use C++ exception handling.
10184 * guile/scm-math.c: Use C++ exception handling.
10185 * guile/scm-lazy-string.c: Use C++ exception handling.
10186 * guile/scm-frame.c: Use C++ exception handling.
10187 * guile/scm-disasm.c: Use C++ exception handling.
10188 * guile/scm-cmd.c: Use C++ exception handling.
10189 * guile/scm-breakpoint.c: Use C++ exception handling.
10190 * guile/scm-block.c: Use C++ exception handling.
10191 * guile/guile-internal.h: Use C++ exception handling.
10192 * gnu-v3-abi.c: Use C++ exception handling.
10193 * gdbtypes.c: Use C++ exception handling.
10194 * frame.c: Use C++ exception handling.
10195 * frame-unwind.c: Use C++ exception handling.
10196 * fbsd-tdep.c: Use C++ exception handling.
10197 * f-valprint.c: Use C++ exception handling.
10198 * exec.c: Use C++ exception handling.
10199 * event-top.c: Use C++ exception handling.
10200 * event-loop.c: Use C++ exception handling.
10201 * eval.c: Use C++ exception handling.
10202 * dwarf2read.c: Use C++ exception handling.
10203 * dwarf2loc.c: Use C++ exception handling.
10204 * dwarf2-frame.c: Use C++ exception handling.
10205 * dwarf2-frame-tailcall.c: Use C++ exception handling.
10206 * dwarf-index-write.c: Use C++ exception handling.
10207 * dwarf-index-cache.c: Use C++ exception handling.
10208 * dtrace-probe.c: Use C++ exception handling.
10209 * disasm-selftests.c: Use C++ exception handling.
10210 * darwin-nat.c: Use C++ exception handling.
10211 * cp-valprint.c: Use C++ exception handling.
10212 * cp-support.c: Use C++ exception handling.
10213 * cp-abi.c: Use C++ exception handling.
10214 * corelow.c: Use C++ exception handling.
10215 * completer.c: Use C++ exception handling.
10216 * compile/compile-object-run.c: Use C++ exception handling.
10217 * compile/compile-object-load.c: Use C++ exception handling.
10218 * compile/compile-cplus-symbols.c: Use C++ exception handling.
10219 * compile/compile-c-symbols.c: Use C++ exception handling.
10220 * common/selftest.c: Use C++ exception handling.
10221 * common/new-op.c: Use C++ exception handling.
10222 * cli/cli-script.c: Use C++ exception handling.
10223 * cli/cli-interp.c: Use C++ exception handling.
10224 * cli/cli-cmds.c: Use C++ exception handling.
10225 * c-varobj.c: Use C++ exception handling.
10226 * btrace.c: Use C++ exception handling.
10227 * breakpoint.c: Use C++ exception handling.
10228 * break-catch-throw.c: Use C++ exception handling.
10229 * arch-utils.c: Use C++ exception handling.
10230 * amd64-tdep.c: Use C++ exception handling.
10231 * ada-valprint.c: Use C++ exception handling.
10232 * ada-typeprint.c: Use C++ exception handling.
10233 * ada-lang.c: Use C++ exception handling.
10234 * aarch64-tdep.c: Use C++ exception handling.
10235
3d6e9d23
TT
102362019-04-08 Tom Tromey <tom@tromey.com>
10237
10238 * xml-support.c (gdb_xml_parser::parse): Update.
10239 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
10240 * value.c (show_convenience): Update.
10241 * unittests/cli-utils-selftests.c (test_number_or_range_parser)
10242 (test_parse_flags_qcs): Update.
10243 * thread.c (thr_try_catch_cmd): Update.
10244 * target.c (target_translate_tls_address): Update.
10245 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
10246 (info_frame_command_core, frame_apply_command_count): Update.
10247 * rust-exp.y (rust_lex_exception_test): Update.
10248 * riscv-tdep.c (riscv_print_one_register_info): Update.
10249 * remote.c (remote_target::enable_btrace): Update.
10250 * record-btrace.c (record_btrace_enable_warn): Update.
10251 * python/py-utils.c (gdbpy_convert_exception): Update.
10252 * printcmd.c (do_one_display, print_variable_and_value): Update.
10253 * mi/mi-main.c (mi_print_exception): Update.
10254 * mi/mi-interp.c (mi_cmd_interpreter_exec): Use SCOPE_EXIT.
10255 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
10256 * linux-nat.c (linux_nat_target::attach): Update.
10257 * linux-fork.c (class scoped_switch_fork_info): Update.
10258 * infrun.c (displaced_step_prepare): Update.
10259 * infcall.c (call_function_by_hand_dummy): Update.
10260 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception): Update.
10261 * gnu-v3-abi.c (print_one_vtable): Update.
10262 * frame.c (get_prev_frame_always): Update.
10263 * f-valprint.c (info_common_command_for_block): Update.
10264 * exec.c (try_open_exec_file): Update.
10265 * exceptions.c (print_exception, exception_print)
10266 (exception_fprintf, exception_print_same): Update.
10267 * dwarf2-frame.c (dwarf2_build_frame_info): Update.
10268 * dwarf-index-cache.c (index_cache::store)
10269 (index_cache::lookup_gdb_index): Update.
10270 * darwin-nat.c (maybe_cache_shell): Update.
10271 * cp-valprint.c (cp_print_value_fields): Update.
10272 * compile/compile-cplus-symbols.c (gcc_cplus_convert_symbol)
10273 (gcc_cplus_symbol_address): Update.
10274 * compile/compile-c-symbols.c (gcc_convert_symbol)
10275 (gcc_symbol_address, generate_c_for_for_one_variable): Update.
10276 * common/selftest.c: Update.
10277 * common/common-exceptions.h (struct gdb_exception) <message>: Now
10278 a std::string.
10279 (exception_try_scope_entry, exception_try_scope_exit): Don't
10280 declare.
10281 (struct exception_try_scope): Remove.
10282 (TRY): Don't use exception_try_scope.
10283 (struct gdb_exception): Add constructor, operator=.
10284 <what>: New method.
10285 (struct gdb_exception_RETURN_MASK_ALL)
10286 (struct gdb_exception_RETURN_MASK_ERROR)
10287 (struct gdb_exception_RETURN_MASK_QUIT): Add constructor.
10288 (struct gdb_quit_bad_alloc): Update.
10289 * common/common-exceptions.c (exception_none): Change
10290 initializer.
10291 (struct catcher) <state, exception>: Initialize inline.
10292 <prev>: Remove member.
10293 (current_catcher): Remove.
10294 (catchers): New global.
10295 (exceptions_state_mc_init): Simplify.
10296 (catcher_pop): Remove.
10297 (exceptions_state_mc, exceptions_state_mc_catch): Update.
10298 (try_scope_depth, exception_try_scope_entry)
10299 (exception_try_scope_exit): Remove.
10300 (throw_exception_sjlj): Update.
10301 (exception_messages, exception_messages_size): Remove.
10302 (throw_it): Simplify.
10303 (gdb_exception_sliced_copy): Remove.
10304 (throw_exception_cxx): Update.
10305 * cli/cli-script.c (script_from_file): Update.
10306 * breakpoint.c (insert_bp_location, update_breakpoint_locations):
10307 Update.
10308 * ada-valprint.c (ada_val_print): Update.
10309 * ada-lang.c (ada_to_fixed_type_1, ada_exception_name_addr)
10310 (create_excep_cond_exprs): Update.
10311
c5c10118
TT
103122019-04-08 Tom Tromey <tom@tromey.com>
10313
10314 * common/common-exceptions.h (GDB_XCPT_SJMP, GDB_XCPT_TRY)
10315 (GDB_XCPT_RAW_TRY, GDB_XCPT): Remove.
10316 (TRY, CATCH, END_CATCH): Remove some definitions.
10317 * common/common-exceptions.c: Don't use GDB_XCPT.
10318 (catcher_list_size): Remove.
10319 (throw_exception, throw_it): Simplify.
10320
4de283e4
TT
103212019-04-05 Tom Tromey <tom@tromey.com>
10322
10323 Revert the header-sorting patch.
10324 * ft32-tdep.c: Revert.
10325 * frv-tdep.c: Revert.
10326 * frv-linux-tdep.c: Revert.
10327 * frame.c: Revert.
10328 * frame-unwind.c: Revert.
10329 * frame-base.c: Revert.
10330 * fork-child.c: Revert.
10331 * findvar.c: Revert.
10332 * findcmd.c: Revert.
10333 * filesystem.c: Revert.
10334 * filename-seen-cache.h: Revert.
10335 * filename-seen-cache.c: Revert.
10336 * fbsd-tdep.c: Revert.
10337 * fbsd-nat.h: Revert.
10338 * fbsd-nat.c: Revert.
10339 * f-valprint.c: Revert.
10340 * f-typeprint.c: Revert.
10341 * f-lang.c: Revert.
10342 * extension.h: Revert.
10343 * extension.c: Revert.
10344 * extension-priv.h: Revert.
10345 * expprint.c: Revert.
10346 * exec.h: Revert.
10347 * exec.c: Revert.
10348 * exceptions.c: Revert.
10349 * event-top.c: Revert.
10350 * event-loop.c: Revert.
10351 * eval.c: Revert.
10352 * elfread.c: Revert.
10353 * dwarf2read.h: Revert.
10354 * dwarf2read.c: Revert.
10355 * dwarf2loc.c: Revert.
10356 * dwarf2expr.h: Revert.
10357 * dwarf2expr.c: Revert.
10358 * dwarf2-frame.c: Revert.
10359 * dwarf2-frame-tailcall.c: Revert.
10360 * dwarf-index-write.h: Revert.
10361 * dwarf-index-write.c: Revert.
10362 * dwarf-index-common.c: Revert.
10363 * dwarf-index-cache.h: Revert.
10364 * dwarf-index-cache.c: Revert.
10365 * dummy-frame.c: Revert.
10366 * dtrace-probe.c: Revert.
10367 * disasm.h: Revert.
10368 * disasm.c: Revert.
10369 * disasm-selftests.c: Revert.
10370 * dictionary.c: Revert.
10371 * dicos-tdep.c: Revert.
10372 * demangle.c: Revert.
10373 * dcache.h: Revert.
10374 * dcache.c: Revert.
10375 * darwin-nat.h: Revert.
10376 * darwin-nat.c: Revert.
10377 * darwin-nat-info.c: Revert.
10378 * d-valprint.c: Revert.
10379 * d-namespace.c: Revert.
10380 * d-lang.c: Revert.
10381 * ctf.c: Revert.
10382 * csky-tdep.c: Revert.
10383 * csky-linux-tdep.c: Revert.
10384 * cris-tdep.c: Revert.
10385 * cris-linux-tdep.c: Revert.
10386 * cp-valprint.c: Revert.
10387 * cp-support.c: Revert.
10388 * cp-namespace.c: Revert.
10389 * cp-abi.c: Revert.
10390 * corelow.c: Revert.
10391 * corefile.c: Revert.
10392 * continuations.c: Revert.
10393 * completer.h: Revert.
10394 * completer.c: Revert.
10395 * complaints.c: Revert.
10396 * coffread.c: Revert.
10397 * coff-pe-read.c: Revert.
10398 * cli-out.h: Revert.
10399 * cli-out.c: Revert.
10400 * charset.c: Revert.
10401 * c-varobj.c: Revert.
10402 * c-valprint.c: Revert.
10403 * c-typeprint.c: Revert.
10404 * c-lang.c: Revert.
10405 * buildsym.c: Revert.
10406 * buildsym-legacy.c: Revert.
10407 * build-id.h: Revert.
10408 * build-id.c: Revert.
10409 * btrace.c: Revert.
10410 * bsd-uthread.c: Revert.
10411 * breakpoint.h: Revert.
10412 * breakpoint.c: Revert.
10413 * break-catch-throw.c: Revert.
10414 * break-catch-syscall.c: Revert.
10415 * break-catch-sig.c: Revert.
10416 * blockframe.c: Revert.
10417 * block.c: Revert.
10418 * bfin-tdep.c: Revert.
10419 * bfin-linux-tdep.c: Revert.
10420 * bfd-target.c: Revert.
10421 * bcache.c: Revert.
10422 * ax-general.c: Revert.
10423 * ax-gdb.h: Revert.
10424 * ax-gdb.c: Revert.
10425 * avr-tdep.c: Revert.
10426 * auxv.c: Revert.
10427 * auto-load.c: Revert.
10428 * arm-wince-tdep.c: Revert.
10429 * arm-tdep.c: Revert.
10430 * arm-symbian-tdep.c: Revert.
10431 * arm-pikeos-tdep.c: Revert.
10432 * arm-obsd-tdep.c: Revert.
10433 * arm-nbsd-tdep.c: Revert.
10434 * arm-nbsd-nat.c: Revert.
10435 * arm-linux-tdep.c: Revert.
10436 * arm-linux-nat.c: Revert.
10437 * arm-fbsd-tdep.c: Revert.
10438 * arm-fbsd-nat.c: Revert.
10439 * arm-bsd-tdep.c: Revert.
10440 * arch-utils.c: Revert.
10441 * arc-tdep.c: Revert.
10442 * arc-newlib-tdep.c: Revert.
10443 * annotate.h: Revert.
10444 * annotate.c: Revert.
10445 * amd64-windows-tdep.c: Revert.
10446 * amd64-windows-nat.c: Revert.
10447 * amd64-tdep.c: Revert.
10448 * amd64-sol2-tdep.c: Revert.
10449 * amd64-obsd-tdep.c: Revert.
10450 * amd64-obsd-nat.c: Revert.
10451 * amd64-nbsd-tdep.c: Revert.
10452 * amd64-nbsd-nat.c: Revert.
10453 * amd64-nat.c: Revert.
10454 * amd64-linux-tdep.c: Revert.
10455 * amd64-linux-nat.c: Revert.
10456 * amd64-fbsd-tdep.c: Revert.
10457 * amd64-fbsd-nat.c: Revert.
10458 * amd64-dicos-tdep.c: Revert.
10459 * amd64-darwin-tdep.c: Revert.
10460 * amd64-bsd-nat.c: Revert.
10461 * alpha-tdep.c: Revert.
10462 * alpha-obsd-tdep.c: Revert.
10463 * alpha-nbsd-tdep.c: Revert.
10464 * alpha-mdebug-tdep.c: Revert.
10465 * alpha-linux-tdep.c: Revert.
10466 * alpha-linux-nat.c: Revert.
10467 * alpha-bsd-tdep.c: Revert.
10468 * alpha-bsd-nat.c: Revert.
10469 * aix-thread.c: Revert.
10470 * agent.c: Revert.
10471 * addrmap.c: Revert.
10472 * ada-varobj.c: Revert.
10473 * ada-valprint.c: Revert.
10474 * ada-typeprint.c: Revert.
10475 * ada-tasks.c: Revert.
10476 * ada-lang.c: Revert.
10477 * aarch64-tdep.c: Revert.
10478 * aarch64-ravenscar-thread.c: Revert.
10479 * aarch64-newlib-tdep.c: Revert.
10480 * aarch64-linux-tdep.c: Revert.
10481 * aarch64-linux-nat.c: Revert.
10482 * aarch64-fbsd-tdep.c: Revert.
10483 * aarch64-fbsd-nat.c: Revert.
10484 * aarch32-linux-nat.c: Revert.
10485
d55e5aa6
TT
104862019-04-05 Tom Tromey <tom@tromey.com>
10487
10488 * ft32-tdep.c: Sort headers.
10489 * frv-tdep.c: Sort headers.
10490 * frv-linux-tdep.c: Sort headers.
10491 * frame.c: Sort headers.
10492 * frame-unwind.c: Sort headers.
10493 * frame-base.c: Sort headers.
10494 * fork-child.c: Sort headers.
10495 * findvar.c: Sort headers.
10496 * findcmd.c: Sort headers.
10497 * filesystem.c: Sort headers.
10498 * filename-seen-cache.h: Sort headers.
10499 * filename-seen-cache.c: Sort headers.
10500 * fbsd-tdep.c: Sort headers.
10501 * fbsd-nat.h: Sort headers.
10502 * fbsd-nat.c: Sort headers.
10503 * f-valprint.c: Sort headers.
10504 * f-typeprint.c: Sort headers.
10505 * f-lang.c: Sort headers.
10506 * extension.h: Sort headers.
10507 * extension.c: Sort headers.
10508 * extension-priv.h: Sort headers.
10509 * expprint.c: Sort headers.
10510 * exec.h: Sort headers.
10511 * exec.c: Sort headers.
10512 * exceptions.c: Sort headers.
10513 * event-top.c: Sort headers.
10514 * event-loop.c: Sort headers.
10515 * eval.c: Sort headers.
10516 * elfread.c: Sort headers.
10517 * dwarf2read.h: Sort headers.
10518 * dwarf2read.c: Sort headers.
10519 * dwarf2loc.c: Sort headers.
10520 * dwarf2expr.h: Sort headers.
10521 * dwarf2expr.c: Sort headers.
10522 * dwarf2-frame.c: Sort headers.
10523 * dwarf2-frame-tailcall.c: Sort headers.
10524 * dwarf-index-write.h: Sort headers.
10525 * dwarf-index-write.c: Sort headers.
10526 * dwarf-index-common.c: Sort headers.
10527 * dwarf-index-cache.h: Sort headers.
10528 * dwarf-index-cache.c: Sort headers.
10529 * dummy-frame.c: Sort headers.
10530 * dtrace-probe.c: Sort headers.
10531 * disasm.h: Sort headers.
10532 * disasm.c: Sort headers.
10533 * disasm-selftests.c: Sort headers.
10534 * dictionary.c: Sort headers.
10535 * dicos-tdep.c: Sort headers.
10536 * demangle.c: Sort headers.
10537 * dcache.h: Sort headers.
10538 * dcache.c: Sort headers.
10539 * darwin-nat.h: Sort headers.
10540 * darwin-nat.c: Sort headers.
10541 * darwin-nat-info.c: Sort headers.
10542 * d-valprint.c: Sort headers.
10543 * d-namespace.c: Sort headers.
10544 * d-lang.c: Sort headers.
10545 * ctf.c: Sort headers.
10546 * csky-tdep.c: Sort headers.
10547 * csky-linux-tdep.c: Sort headers.
10548 * cris-tdep.c: Sort headers.
10549 * cris-linux-tdep.c: Sort headers.
10550 * cp-valprint.c: Sort headers.
10551 * cp-support.c: Sort headers.
10552 * cp-namespace.c: Sort headers.
10553 * cp-abi.c: Sort headers.
10554 * corelow.c: Sort headers.
10555 * corefile.c: Sort headers.
10556 * continuations.c: Sort headers.
10557 * completer.h: Sort headers.
10558 * completer.c: Sort headers.
10559 * complaints.c: Sort headers.
10560 * coffread.c: Sort headers.
10561 * coff-pe-read.c: Sort headers.
10562 * cli-out.h: Sort headers.
10563 * cli-out.c: Sort headers.
10564 * charset.c: Sort headers.
10565 * c-varobj.c: Sort headers.
10566 * c-valprint.c: Sort headers.
10567 * c-typeprint.c: Sort headers.
10568 * c-lang.c: Sort headers.
10569 * buildsym.c: Sort headers.
10570 * buildsym-legacy.c: Sort headers.
10571 * build-id.h: Sort headers.
10572 * build-id.c: Sort headers.
10573 * btrace.c: Sort headers.
10574 * bsd-uthread.c: Sort headers.
10575 * breakpoint.h: Sort headers.
10576 * breakpoint.c: Sort headers.
10577 * break-catch-throw.c: Sort headers.
10578 * break-catch-syscall.c: Sort headers.
10579 * break-catch-sig.c: Sort headers.
10580 * blockframe.c: Sort headers.
10581 * block.c: Sort headers.
10582 * bfin-tdep.c: Sort headers.
10583 * bfin-linux-tdep.c: Sort headers.
10584 * bfd-target.c: Sort headers.
10585 * bcache.c: Sort headers.
10586 * ax-general.c: Sort headers.
10587 * ax-gdb.h: Sort headers.
10588 * ax-gdb.c: Sort headers.
10589 * avr-tdep.c: Sort headers.
10590 * auxv.c: Sort headers.
10591 * auto-load.c: Sort headers.
10592 * arm-wince-tdep.c: Sort headers.
10593 * arm-tdep.c: Sort headers.
10594 * arm-symbian-tdep.c: Sort headers.
10595 * arm-pikeos-tdep.c: Sort headers.
10596 * arm-obsd-tdep.c: Sort headers.
10597 * arm-nbsd-tdep.c: Sort headers.
10598 * arm-nbsd-nat.c: Sort headers.
10599 * arm-linux-tdep.c: Sort headers.
10600 * arm-linux-nat.c: Sort headers.
10601 * arm-fbsd-tdep.c: Sort headers.
10602 * arm-fbsd-nat.c: Sort headers.
10603 * arm-bsd-tdep.c: Sort headers.
10604 * arch-utils.c: Sort headers.
10605 * arc-tdep.c: Sort headers.
10606 * arc-newlib-tdep.c: Sort headers.
10607 * annotate.h: Sort headers.
10608 * annotate.c: Sort headers.
10609 * amd64-windows-tdep.c: Sort headers.
10610 * amd64-windows-nat.c: Sort headers.
10611 * amd64-tdep.c: Sort headers.
10612 * amd64-sol2-tdep.c: Sort headers.
10613 * amd64-obsd-tdep.c: Sort headers.
10614 * amd64-obsd-nat.c: Sort headers.
10615 * amd64-nbsd-tdep.c: Sort headers.
10616 * amd64-nbsd-nat.c: Sort headers.
10617 * amd64-nat.c: Sort headers.
10618 * amd64-linux-tdep.c: Sort headers.
10619 * amd64-linux-nat.c: Sort headers.
10620 * amd64-fbsd-tdep.c: Sort headers.
10621 * amd64-fbsd-nat.c: Sort headers.
10622 * amd64-dicos-tdep.c: Sort headers.
10623 * amd64-darwin-tdep.c: Sort headers.
10624 * amd64-bsd-nat.c: Sort headers.
10625 * alpha-tdep.c: Sort headers.
10626 * alpha-obsd-tdep.c: Sort headers.
10627 * alpha-nbsd-tdep.c: Sort headers.
10628 * alpha-mdebug-tdep.c: Sort headers.
10629 * alpha-linux-tdep.c: Sort headers.
10630 * alpha-linux-nat.c: Sort headers.
10631 * alpha-bsd-tdep.c: Sort headers.
10632 * alpha-bsd-nat.c: Sort headers.
10633 * aix-thread.c: Sort headers.
10634 * agent.c: Sort headers.
10635 * addrmap.c: Sort headers.
10636 * ada-varobj.c: Sort headers.
10637 * ada-valprint.c: Sort headers.
10638 * ada-typeprint.c: Sort headers.
10639 * ada-tasks.c: Sort headers.
10640 * ada-lang.c: Sort headers.
10641 * aarch64-tdep.c: Sort headers.
10642 * aarch64-ravenscar-thread.c: Sort headers.
10643 * aarch64-newlib-tdep.c: Sort headers.
10644 * aarch64-linux-tdep.c: Sort headers.
10645 * aarch64-linux-nat.c: Sort headers.
10646 * aarch64-fbsd-tdep.c: Sort headers.
10647 * aarch64-fbsd-nat.c: Sort headers.
10648 * aarch32-linux-nat.c: Sort headers.
10649
699bd4cf
TT
106502019-04-04 Tom Tromey <tom@tromey.com>
10651
10652 * varobj.c (varobj_create): Update.
10653 * rust-exp.y (struct rust_parser) <update_innermost_block,
10654 lookup_symbol>: New methods.
10655 (rust_parser::update_innermost_block, rust_parser::lookup_symbol):
10656 Rename.
10657 (rust_parser::rust_lookup_type)
10658 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
10659 * printcmd.c (display_command, do_one_display): Update.
10660 * parser-defs.h (struct parser_state) <parser_state>: Add
10661 "tracker" parameter.
10662 (block_tracker): New member.
10663 (class innermost_block_tracker) <innermost_block_tracker>: Add
10664 "types" parameter.
10665 <reset>: Remove method.
10666 (innermost_block): Don't declare.
10667 (null_post_parser): Update.
10668 * parse.c (innermost_block): Remove global.
10669 (write_dollar_variable): Update.
10670 (parse_exp_1, parse_exp_in_context): Add "tracker" parameter.
10671 Remove "tracker_types" parameter.
10672 (parse_expression): Add "tracker" parameter.
10673 (parse_expression_for_completion): Update.
10674 (null_post_parser): Add "tracker" parameter.
10675 * p-exp.y: Update rules.
10676 * m2-exp.y: Update rules.
10677 * language.h (struct language_defn) <la_post_parser>: Add
10678 "tracker" parameter.
10679 * go-exp.y: Update rules.
10680 * f-exp.y: Update rules.
10681 * expression.h (parse_expression, parse_exp_1): Add "tracker"
10682 parameter.
10683 * d-exp.y: Update rules.
10684 * c-exp.y: Update rules.
10685 * breakpoint.c (set_breakpoint_condition): Create an
10686 innermost_block_tracker.
10687 (watch_command_1): Likewise.
10688 * ada-lang.c (resolve): Add "tracker" parameter.
10689 (resolve_subexp): Likewise.
10690 * ada-exp.y (write_var_from_sym): Update.
10691
dac43e32
TT
106922019-04-04 Tom Tromey <tom@tromey.com>
10693
10694 * type-stack.h: New file.
10695 * type-stack.c: New file.
10696 * parser-defs.h (enum type_pieces, union type_stack_elt): Move to
10697 type-stack.h.
10698 (insert_into_type_stack, insert_type, push_type, push_type_int)
10699 (insert_type_address_space, pop_type, pop_type_int)
10700 (pop_typelist, pop_type_stack, append_type_stack)
10701 (push_type_stack, get_type_stack, push_typelist)
10702 (follow_type_instance_flags, follow_types): Don't declare.
10703 * parse.c (type_stack): Remove global.
10704 (parse_exp_in_context): Update.
10705 (insert_into_type_stack, insert_type, push_type, push_type_int)
10706 (insert_type_address_space, pop_type, pop_type_int)
10707 (pop_typelist, pop_type_stack, append_type_stack)
10708 (push_type_stack, get_type_stack, push_typelist)
10709 (follow_type_instance_flags, follow_types): Remove (moved to
10710 type-stack.c).
10711 * f-exp.y (type_stack): New global.
10712 Update rules.
10713 (push_kind_type, f_parse): Update.
10714 * d-exp.y (type_stack): New global.
10715 Update rules.
10716 (d_parse): Update.
10717 * c-exp.y (struct c_parse_state) <type_stack>: New member.
10718 Update rules.
10719 * Makefile.in (COMMON_SFILES): Add type-stack.c.
10720 (HFILES_NO_SRCDIR): Add type-stack.h.
10721
2a612529
TT
107222019-04-04 Tom Tromey <tom@tromey.com>
10723
10724 * rust-exp.y (rust_parser::lex_identifier, rustyylex)
10725 (rust_parser::convert_ast_to_expression, rust_parse)
10726 (rust_lex_test_completion, rust_lex_tests): Update.
10727 * parser-defs.h (struct expr_completion_state): New.
10728 (struct parser_state) <parser_state>: Add completion parameter.
10729 <mark_struct_expression, mark_completion_tag>: New methods.
10730 <parse_completion, m_completion_state>: New members.
10731 (prefixify_expression, null_post_parser): Update.
10732 (mark_struct_expression, mark_completion_tag): Don't declare.
10733 * parse.c (parse_completion, expout_last_struct)
10734 (expout_tag_completion_type, expout_completion_name): Remove
10735 globals.
10736 (parser_state::mark_struct_expression)
10737 (parser_state::mark_completion_tag): Now methods.
10738 (prefixify_expression): Add last_struct parameter.
10739 (prefixify_subexp): Likewise.
10740 (parse_exp_1): Update.
10741 (parse_exp_in_context): Add cstate parameter. Update.
10742 (parse_expression_for_completion): Create an
10743 expr_completion_state.
10744 (null_post_parser): Add "completion" parameter.
10745 * p-exp.y: Update rules.
10746 (yylex): Update.
10747 * language.h (struct language_defn) <la_post_parser>: Add
10748 "completing" parameter.
10749 * go-exp.y: Update rules.
10750 (lex_one_token): Update.
10751 * expression.h (parse_completion): Don't declare.
10752 * d-exp.y: Update rules.
10753 (lex_one_token): Update rules.
10754 * c-exp.y: Update rules.
10755 (lex_one_token): Update.
10756 * ada-lang.c (resolve): Add "parse_completion" parameter.
10757 (resolve_subexp): Likewise.
10758 (ada_resolve_function): Likewise.
10759
43476f0b
TT
107602019-04-04 Tom Tromey <tom@tromey.com>
10761
10762 * parser-defs.h (struct parser_state) <start_arglist,
10763 end_arglist>: New methods.
10764 <arglist_len, m_funcall_chain>: New members.
10765 (arglist_len, start_arglist, end_arglist): Don't declare.
10766 * parse.c (arglist_len, funcall_chain): Remove global.
10767 (start_arglist, end_arglist): Remove functions.
10768 (parse_exp_in_context): Update.
10769 * p-exp.y: Update rules.
10770 * m2-exp.y: Update rules.
10771 * go-exp.y: Update rules.
10772 * f-exp.y: Update rules.
10773 * d-exp.y: Update rules.
10774 * c-exp.y: Update rules.
10775
5776fca3
TT
107762019-04-04 Tom Tromey <tom@tromey.com>
10777
10778 * rust-exp.y (struct rust_parser) <lex_hex, lex_escape,
10779 lex_operator, push_back>: New methods.
10780 Update all rules.
10781 (rust_parser::lex_hex, lex_escape): Rename and update.
10782 (rust_parser::lex_string, rust_parser::lex_identifier): Update.
10783 (rust_parser::lex_operator): Rename and update.
10784 (rust_parser::lex_number, rustyylex, rustyyerror)
10785 (rust_lex_test_init, rust_lex_test_sequence)
10786 (rust_lex_test_push_back, rust_lex_tests): Update.
10787 * parser-defs.h (struct parser_state) <parser_state>: Add "input"
10788 parameter.
10789 <lexptr, prev_lexptr>: New members.
10790 (lexptr, prev_lexptr): Don't declare.
10791 * parse.c (lexptr, prev_lexptr): Remove globals.
10792 (parse_exp_in_context): Update.
10793 * p-exp.y (yylex, yyerror): Update.
10794 * m2-exp.y (parse_number, yylex, yyerror): Update.
10795 * go-exp.y (lex_one_token, yyerror): Update.
10796 * f-exp.y (match_string_literal, yylex, yyerror): Update.
10797 * d-exp.y (lex_one_token, yyerror): Update.
10798 * c-exp.y (scan_macro_expansion, finished_macro_expansion)
10799 (lex_one_token, yyerror): Update.
10800 * ada-lex.l (YY_INPUT): Update.
10801 (rewind_to_char): Update.
10802 * ada-exp.y (yyerror): Update.
10803
8621b685
TT
108042019-04-04 Tom Tromey <tom@tromey.com>
10805
10806 * rust-exp.y (rustyylex, rust_lex_tests): Update.
10807 * parser-defs.h (struct parser_state) <parser_state>: Add new
10808 parameter.
10809 <comma_terminates>: New member.
10810 (comma_terminates): Don't declare global.
10811 * parse.c (comma_terminates): Remove global.
10812 (parse_exp_in_context): Update.
10813 * p-exp.y (yylex): Update.
10814 * m2-exp.y (yylex): Update.
10815 * go-exp.y (lex_one_token): Update.
10816 * f-exp.y (yylex): Update.
10817 * d-exp.y (lex_one_token): Update.
10818 * c-exp.y (lex_one_token): Update.
10819 * ada-lex.l: Update.
10820
28aaf3fd
TT
108212019-04-04 Tom Tromey <tom@tromey.com>
10822
10823 * rust-exp.y (struct rust_parser) <paren_depth>: New member.
10824 (rustyylex, rust_lex_test_init, rust_lex_test_one)
10825 (rust_lex_test_sequence, rust_lex_test_push_back): Update.
10826 * parser-defs.h (paren_depth): Don't declare.
10827 * parse.c (paren_depth): Remove global.
10828 (parse_exp_in_context): Update.
10829 * p-exp.y (paren_depth): New global.
10830 (pascal_parse): Initialize it.
10831 * m2-exp.y (paren_depth): New global.
10832 (m2_parse): Initialize it.
10833 * go-exp.y (paren_depth): New global.
10834 (go_parse): Initialize it.
10835 * f-exp.y (paren_depth): New global.
10836 (f_parse): Initialize it.
10837 * d-exp.y (paren_depth): New global.
10838 (d_parse): Initialize it.
10839 * c-exp.y (paren_depth): New global.
10840 (c_parse): Initialize it.
10841 * ada-lex.l (paren_depth): New global.
10842 (lexer_init): Initialize it.
10843
1e58a4a4
TT
108442019-04-04 Tom Tromey <tom@tromey.com>
10845
10846 * rust-exp.y (rust_parser::crate_name, rust_parser::super_name)
10847 (rust_parser::convert_ast_to_type)
10848 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
10849 * parser-defs.h (struct parser_state) <parser_state>: Add
10850 parameters. Initialize new members.
10851 <expression_context_block, expression_context_pc>: New members.
10852 * parse.c (expression_context_block, expression_context_pc):
10853 Remove globals.
10854 (parse_exp_in_context): Update.
10855 * p-exp.y: Update all rules.
10856 (yylex): Update.
10857 * m2-exp.y: Update all rules.
10858 (yylex): Update.
10859 * go-exp.y (yylex): Update.
10860 * f-exp.y (yylex): Update.
10861 * d-exp.y: Update all rules.
10862 (yylex): Update.
10863 * c-exp.y: Update all rules.
10864 (lex_one_token, classify_name, yylex, c_parse): Update.
10865 * ada-exp.y (write_var_or_type, write_name_assoc): Update.
10866
37eedb39
TT
108672019-04-04 Tom Tromey <tom@tromey.com>
10868
10869 * gdbarch.h, gdbarch.c: Rebuild.
10870 * gdbarch.sh (dtrace_parse_probe_argument): Change type.
10871 * stap-probe.h:
10872 (struct stap_parse_info): Replace "parser_state" with
10873 "expr_builder".
10874 * parser-defs.h (struct expr_builder): Rename from "parser_state".
10875 (parser_state): New class.
10876 * parse.c (expr_builder): Rename.
10877 (expr_builder::release): Rename.
10878 (write_exp_elt, write_exp_elt_opcode, write_exp_elt_sym)
10879 (write_exp_elt_msym, write_exp_elt_block, write_exp_elt_objfile)
10880 (write_exp_elt_longcst, write_exp_elt_floatcst)
10881 (write_exp_elt_type, write_exp_elt_intern, write_exp_string)
10882 (write_exp_string_vector, write_exp_bitstring)
10883 (write_exp_msymbol, mark_struct_expression)
10884 (write_dollar_variable)
10885 (insert_type_address_space, increase_expout_size): Replace
10886 "parser_state" with "expr_builder".
10887 * dtrace-probe.c: Replace "parser_state" with "expr_builder".
10888 * amd64-linux-tdep.c (amd64_dtrace_parse_probe_argument): Replace
10889 "parser_state" with "expr_builder".
10890
73923d7e
TT
108912019-04-04 Tom Tromey <tom@tromey.com>
10892
10893 * rust-exp.y: Replace "parse_language" with method call.
10894 * p-exp.y:
10895 (yylex): Replace "parse_language" with method call.
10896 * m2-exp.y:
10897 (yylex): Replace "parse_language" with method call.
10898 * go-exp.y (classify_name): Replace "parse_language" with method
10899 call.
10900 * f-exp.y (yylex): Replace "parse_language" with method call.
10901 * d-exp.y (lex_one_token): Replace "parse_language" with method
10902 call.
10903 * c-exp.y:
10904 (lex_one_token, classify_name, yylex): Replace "parse_language"
10905 with method call.
10906 * ada-exp.y (find_primitive_type, type_char)
10907 (type_system_address): Replace "parse_language" with method call.
10908
fa9f5be6
TT
109092019-04-04 Tom Tromey <tom@tromey.com>
10910
10911 * rust-exp.y: Replace "parse_gdbarch" with method call.
10912 * parse.c (write_dollar_variable, insert_type_address_space):
10913 Replace "parse_gdbarch" with method call.
10914 * p-exp.y (parse_type, yylex): Replace "parse_gdbarch" with method
10915 call.
10916 * objc-lang.c (end_msglist): Replace "parse_gdbarch" with method
10917 call.
10918 * m2-exp.y (parse_type, parse_m2_type, yylex): Replace
10919 "parse_gdbarch" with method call.
10920 * go-exp.y (parse_type, classify_name): Replace "parse_gdbarch"
10921 with method call.
10922 * f-exp.y (parse_type, parse_f_type, yylex): Replace
10923 "parse_gdbarch" with method call.
10924 * d-exp.y (parse_type, parse_d_type, lex_one_token): Replace
10925 "parse_gdbarch" with method call.
10926 * c-exp.y (parse_type, parse_number, classify_name): Replace
10927 "parse_gdbarch" with method call.
10928 * ada-lex.l: Replace "parse_gdbarch" with method call.
10929 * ada-exp.y (parse_type, find_primitive_type, type_char)
10930 (type_system_address): Replace "parse_gdbarch" with method call.
10931
1201a264
TT
109322019-04-04 Tom Tromey <tom@tromey.com>
10933
10934 * dtrace-probe.c (dtrace_probe::build_arg_exprs): Update.
10935 * stap-probe.c (stap_parse_argument): Update.
10936 * stap-probe.h (struct stap_parse_info) <stap_parse_info>: Remove
10937 initial_size parameter.
10938 * rust-exp.y (rust_lex_tests): Update.
10939 * parse.c (parser_state): Update.
10940 (parse_exp_in_context): Update.
10941 * parser-defs.h (struct parser_state) <parser_state>: Remove
10942 "initial_size" parameter.
10943
e3980ce2
TT
109442019-04-04 Tom Tromey <tom@tromey.com>
10945
10946 * parser-defs.h (increase_expout_size): Don't declare.
10947 * parse.c (increase_expout_size): Now static.
10948
e9f8e3f1
TS
109492019-04-04 Thomas Schwinge <thomas@codesourcery.com>
10950
10951 * gnu-nat.c (gnu_nat_target::wait): Fix
10952 target_waitstatus_to_string call.
10953
d7df6549
AB
109542019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
10955
10956 * eval.c (evaluate_subexp_standard): Handle internal functions
10957 during Fortran function call handling.
10958
8bdc1658
AB
109592019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
10960
10961 * NEWS: Mention new internal functions.
10962 * dwarf2read.c (dwarf2_init_complex_target_type): New function.
10963 (read_base_type): Use dwarf2_init_complex_target_type.
10964 * value.c (creal_internal_fn): New function.
10965 (cimag_internal_fn): New function.
10966 (_initialize_values): Register new internal functions.
10967
c29705b7
PW
109682019-04-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10969
10970 * infrun.c (stop_all_threads): If debug_infrun, always
10971 trace the wait status after wait_one, using
10972 target_waitstatus_to_string and target_pid_to_str.
10973 (handle_inferior_event): Replace various trace of
10974 wait status kind by a single trace.
10975 * gdb/gnu-nat.c (gnu_nat_target::wait): Replace local
10976 wait status kind image by target_waitstatus_to_string.
10977 * target/waitstatus.c (target_waitstatus_to_string): Fix
10978 obsolete comment.
10979
05caa1d2
TT
109802019-04-01 Tom Tromey <tromey@adacore.com>
10981
10982 PR symtab/23331:
10983 * dwarf2read.c (partial_die_info::read): Handle DW_AT_ranges.
10984
9d1447e0
SDJ
109852019-04-01 Sergio Durigan Junior <sergiodj@redhat.com>
10986 Pedro Alves <palves@redhat.com>
10987
10988 * top.c (quit_force): Call 'finalize_values'.
10989 * value.c (finalize_values): New function.
10990 * value.h (finalize_values): Declare.
10991
7734102d
EZ
109922019-03-30 Eli Zaretskii <eliz@gnu.org>
10993
10994 * NEWS: Announce $_gdb_major and $_gdb_minor.
10995
10996 * top.c (init_gdb_version_vars): New function.
10997 (gdb_init): Call init_gdb_version_vars.
10998
188e1fa9
TT
109992019-03-29 Tom Tromey <tromey@adacore.com>
11000
11001 * printcmd.c (_initialize_printcmd): Add usage lines. Update some
11002 help text. Remove dead code.
11003
2880242d
KS
110042019-03-29 Keith Seitz <keiths@redhat.com>
11005
11006 From Siddhesh Poyarekar:
11007 * f-lang.h (f77_get_upperbound): Return LONGEST.
11008 (f77_get_lowerbound): Likewise.
11009 * f-typeprint.c (f_type_print_varspec_suffix): Expand
11010 UPPER_BOUND and LOWER_BOUND to LONGEST. Use plongest to format
11011 print them.
11012 (f_type_print_base): Expand UPPER_BOUND to LONGEST. Use
11013 plongest to format print it.
11014 * f-valprint.c (f77_get_lowerbound): Return LONGEST.
11015 (f77_get_upperbound): Likewise.
11016 (f77_get_dynamic_length_of_aggregate): Expand UPPER_BOUND,
11017 LOWER_BOUND to LONGEST.
11018 (f77_create_arrayprint_offset_tbl): Likewise.
11019
cc1defb1
KS
110202019-03-29 Keith Seitz <keiths@redhat.com>
11021
11022 * ada-lang.c (ada_template_to_fixed_record_type_1): Use
11023 %s/pulongest for TYPE_LENGTH instead of %d in format
11024 strings.
11025 * ada-typerint.c (ada_print_type): Likewise.
11026 * amd64-windows-tdep.c (amd64_windows_store_arg_in_reg): Likewise.
11027 * compile/compile-c-support.c (generate_register_struct): Likewise.
11028 * gdbtypes.c (recursive_dump_type): Likewise.
11029 * gdbtypes.h (struct type) <length>: Change type to ULONGEST.
11030 * m2-typeprint.c (m2_array): Use %s/pulongest for TYPE_LENGTH
11031 instead of %d in format strings.
11032 * riscv-tdep.c (riscv_type_alignment): Cast second argument
11033 to std::min to ULONGEST.
11034 * symmisc.c (print_symbol): Use %s/pulongest for TYPE_LENGTH
11035 instead of %d in format strings.
11036 * tracepoint.c (info_scope_command): Likewise.
11037 * typeprint.c (print_offset_data::update)
11038 (print_offset_data::finish): Likewise.
11039 * xtensa-tdep.c (xtensa_store_return_value)
11040 (xtensa_push_dummy_call): Likewise.
11041
e432ccf1
JT
110422019-03-28 Jon Turney <jon.turney@dronecode.org.uk>
11043
11044 * windows-nat.c (display_selector): Fixed format specifications
11045 for 64-bit Cygwin.
11046
65d2b333
PW
110472019-03-28 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11048
11049 * infrun.c (follow_exec): Call target_terminal::ours_for_output.
11050
f489207e
SL
110512019-03-28 Sandra Loosemore <sandra@codesourcery.com>
11052
11053 * nios2-tdep.h (struct gdbarch_tdep): Add is_kernel_helper.
11054 * nios2-tdep.c (nios2_get_next_pc): Skip over kernel helpers.
11055 * nios2-linux-tdep.c (nios2_linux_is_kernel_helper): New.
11056 (nios2_linux_init_abi): Install it.
11057
bffa1015
AH
110582019-03-28 Alan Hayward <alan.hayward@arm.com>
11059
11060 * aarch64-tdep.c (aarch64_vnv_type): Use vector types.
11061
fc96163a
AH
110622019-03-28 Alan Hayward <alan.hayward@arm.com>
11063
11064 * features/aarch64-sve.c (create_feature_aarch64_sve): Add q view.
11065
20dc7e9b
PW
110662019-03-24 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11067 Tom Tromey <tromey@adacore.com>
11068
11069 * minsyms.c (minimal_symbol_upper_bound): Fix buffer overflow.
11070
7f5331a8
JB
110712019-03-26 Joel Brobecker <brobecker@adacore.com>
11072
11073 * gdb-gdb.py.in (StructMainTypePrettyPrinter.bound_img): New method.
11074 (StructMainTypePrettyPrinter.bounds_img): Use new "bound_img"
11075 method to compute the bounds of range types. Also print "[evaluated]"
11076 if the bounds' values come from a dynamic evaluation.
11077
18c77628
AB
110782019-03-26 Andrew Burgess <andrew.burgess@embecosm.com>
11079
11080 * cp-valprint.c (cp_print_value_fields): Don't print trailing
11081 whitespace when pretty printing is on.
11082
53c973f2
AH
110832019-03-26 Alan Hayward <alan.hayward@arm.com>
11084
e79be6e5 11085 * ppc-linux-nat.c: Add include.
53c973f2 11086
d851aa71
AH
110872019-03-26 Alan Hayward <alan.hayward@arm.com>
11088
e79be6e5 11089 * NEWS: Mention AArch64 Pointer Authentication.
d851aa71 11090
2fe7bab7
AH
110912019-03-26 Alan Hayward <alan.hayward@arm.com>
11092
e79be6e5 11093 * arm-linux-nat.c: Add include.
2fe7bab7 11094
068ef30e
SM
110952019-03-25 Simon Marchi <simon.marchi@polymtl.ca>
11096
11097 * source-cache.c (source_cache::get_source_lines): Re-read
11098 fullname after calling open_source_file.
11099
81a24d04
JB
111002019-03-25 John Baldwin <jhb@FreeBSD.org>
11101
11102 * NEWS: Mention TLS support for FreeBSD.
11103
79e7ae11
TT
111042019-03-25 Tom Tromey <tromey@adacore.com>
11105
11106 * minsyms.c (BUNCH_SIZE): Update comment.
11107 (~minimal_symbol_reader): Remove old comment.
11108 (compact_minimal_symbols): Update comment.
11109 (minimal_symbol_reader::install): Remove old comment. Update
11110 other comments.
11111
d45963c2
AH
111122019-03-25 Alan Hayward <alan.hayward@arm.com>
11113
11114 * s390-linux-nat.c: Add include.
11115
0f83012e
AH
111162019-03-25 Alan Hayward <alan.hayward@arm.com>
11117
11118 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
11119 Call linux_get_hwcap.
11120 * aarch64-linux-tdep.c (aarch64_linux_core_read_description):
11121 Likewise.
11122 (aarch64_linux_get_hwcap): Remove function.
11123 * aarch64-linux-tdep.h (aarch64_linux_get_hwcap): Remove
11124 declaration.
11125 * arm-linux-nat.c (arm_linux_nat_target::read_description):Call
11126 linux_get_hwcap.
11127 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
11128 * linux-tdep.c (linux_get_hwcap): Add function.
11129 (linux_get_hwcap2): Likewise.
11130 * linux-tdep.h (linux_get_hwcap): Add declaration.
11131 (linux_get_hwcap2): Likewise.
11132 * ppc-linux-nat.c (ppc_linux_get_hwcap): Remove function.
11133 (ppc_linux_get_hwcap2): Likewise.
11134 (ppc_linux_nat_target::region_ok_for_hw_watchpoint): Call
11135 linux_get_hwcap.
11136 (ppc_linux_nat_target::insert_watchpoint): Likewise.
11137 (ppc_linux_nat_target::watchpoint_addr_within_range): Likewise.
11138 (ppc_linux_nat_target::read_description): Likewise.
11139 * ppc-linux-tdep.c (ppc_linux_core_read_description): Likewise.
11140 * s390-linux-nat.c: Likewise.
11141 * s390-linux-tdep.c (s390_core_read_description): Likewise.
11142
6640a367
TT
111432019-03-24 Tom Tromey <tom@tromey.com>
11144
11145 * ada-lang.c (standard_lookup): Simplify initialization.
11146 (ada_lookup_symbol_nonlocal): Simplify return.
11147 * solib-spu.c (spu_lookup_lib_symbol): Simplify return.
11148 * solib-darwin.c (darwin_lookup_lib_symbol): Simplify return.
11149 * solib-svr4.c (elf_lookup_lib_symbol): Simplify return.
11150 * rust-lang.c (rust_lookup_symbol_nonlocal): Simplify
11151 initialization.
11152 * solib.c (solib_global_lookup): Simplify.
11153 * symtab.c (null_block_symbol): Remove.
11154 (symbol_cache_lookup): Simplify returns.
11155 (lookup_language_this): Simplify returns.
11156 (lookup_symbol_aux): Simplify return.
11157 (lookup_local_symbol): Simplify returns.
11158 (lookup_global_symbol_from_objfile): Simplify return.
11159 (lookup_symbol_in_objfile_symtabs)
11160 (lookup_symbol_in_objfile_from_linkage_name): Simplify return.
11161 (lookup_symbol_via_quick_fns, lookup_symbol_in_static_block)
11162 (lookup_static_symbol, lookup_global_symbol): Simplify return.
11163 * cp-namespace.c (cp_lookup_bare_symbol)
11164 (cp_search_static_and_baseclasses, cp_lookup_symbol_via_imports)
11165 (cp_lookup_symbol_via_all_imports, cp_lookup_nested_symbol_1)
11166 (cp_lookup_nested_symbol): Don't use null_block_symbol.
11167 (cp_lookup_symbol_via_imports): Simplify initialization.
11168 (find_symbol_in_baseclass): Likewise.
11169 * symtab.h (null_block_symbol): Remove.
11170 * d-namespace.c (d_lookup_symbol): Don't use null_block_symbol.
11171 (d_lookup_nested_symbol, d_lookup_symbol_imports)
11172 (d_lookup_symbol_module): Likewise.
11173 (find_symbol_in_baseclass): Simplify initialization.
11174
a930ebcd
TT
111752019-03-24 Tom Tromey <tom@tromey.com>
11176
11177 * expression.h: Don't include symtab.h.
11178 (struct block): Forward declare.
11179
582942f4
TT
111802019-03-24 Tom Tromey <tom@tromey.com>
11181
11182 * c-exp.y (typebase): Remove casts.
11183 * gdbtypes.c (lookup_unsigned_typename, )
11184 (lookup_signed_typename): Remove cast.
11185 * eval.c (parse_to_comma_and_eval): Remove cast.
11186 * parse.c (write_dollar_variable): Remove cast.
11187 * block.h (struct block) <superblock>: Now const.
11188 * symfile-debug.c (debug_qf_map_matching_symbols): Update.
11189 * psymtab.c (psym_map_matching_symbols): Make "block" const.
11190 (map_block): Make "block" const.
11191 * symfile.h (struct quick_symbol_functions)
11192 <map_matching_symbols>: Constify block argument to "callback".
11193 * symtab.c (basic_lookup_transparent_type_quick): Make "block"
11194 const.
11195 (find_pc_sect_compunit_symtab): Make "b" const.
11196 (find_symbol_at_address): Likewise.
11197 (search_symbols): Likewise.
11198 * dwarf2read.c (dw2_lookup_symbol): Make "block" const.
11199 (dw2_debug_names_lookup_symbol): Likewise.
11200 (dw2_map_matching_symbols): Update.
11201 * p-valprint.c (pascal_val_print): Remove "block".
11202 * ada-lang.c (ada_add_global_exceptions): Make "b" const.
11203 (aux_add_nonlocal_symbols): Make "block" const.
11204 (resolve_subexp): Remove cast.
11205 * linespec.c (iterate_over_all_matching_symtabs): Make "block"
11206 const.
11207 (iterate_over_file_blocks): Likewise.
11208 * f-exp.y (%union) <bval>: Remove.
11209 * coffread.c (patch_opaque_types): Make "b" const.
11210 * spu-tdep.c (spu_catch_start): Make "block" const.
11211 * c-valprint.c (print_unpacked_pointer): Remove "block".
11212 * symmisc.c (dump_symtab_1): Make "b" const.
11213 (block_depth): Make "block" const.
11214 * d-exp.y (%union) <bval>: Remove.
11215 * cp-support.h (cp_lookup_rtti_type): Update.
11216 * cp-support.c (cp_lookup_rtti_type): Make "block" const.
11217 * psymtab.c (psym_lookup_symbol): Make "block" const.
11218 (maintenance_check_psymtabs): Make "b" const.
11219 * python/py-framefilter.c (extract_sym): Make "sym_block" const.
11220 (enumerate_locals, enumerate_args): Update.
11221 * python/py-symtab.c (stpy_global_block): Make "block" const.
11222 (stpy_static_block): Likewise.
11223 * inline-frame.c (block_starting_point_at): Make "new_block"
11224 const.
11225 * block.c (find_block_in_blockvector): Make return type const.
11226 (blockvector_for_pc_sect): Make "b" const.
11227 (find_block_in_blockvector): Make "b" const.
11228
7ad417dd
TT
112292019-03-23 Tom Tromey <tom@tromey.com>
11230
11231 * varobj.c (varobj_create): Update.
11232 * symfile.c (clear_symtab_users): Don't reset innermost_block.
11233 * printcmd.c (display_command, do_one_display): Don't reset
11234 innermost_block.
11235 * parser-defs.h (enum innermost_block_tracker_type): Move to
11236 expression.h.
11237 (innermost_block): Update comment.
11238 * parse.c (parse_exp_1): Add tracker_types parameter.
11239 (parse_exp_in_context): Rename from parse_exp_in_context_1. Add
11240 tracker_types parameter. Reset innermost_block.
11241 (parse_exp_in_context): Remove.
11242 (parse_expression_for_completion): Update.
11243 * objfiles.c (~objfile): Don't reset expression_context_block or
11244 innermost_block.
11245 * expression.h (enum innermost_block_tracker_type): Move from
11246 parser-defs.h.
11247 (parse_exp_1): Add tracker_types parameter.
11248 * breakpoint.c (set_breakpoint_condition, watch_command_1): Don't
11249 reset innermost_block.
11250
b366c208
TT
112512019-03-23 Tom Tromey <tom@tromey.com>
11252
11253 * objfiles.h: Include bcache.h.
11254
9bb9b2f9
TT
112552019-03-23 Tom Tromey <tom@tromey.com>
11256
11257 * linespec.c (get_current_search_block): Use
11258 scoped_restore_current_language.
11259 * symmisc.c (dump_symtab): Use scoped_restore_current_language.
11260
59c28372
AH
112612019-03-22 Alan Hayward <alan.hayward@arm.com>
11262 Jiong Wang <jiong.wang@arm.com>
11263
11264 * aarch64-linux-tdep.c
11265 (aarch64_linux_iterate_over_regset_sections): Check for pauth
11266 section.
11267 * aarch64-linux-tdep.h (AARCH64_LINUX_SIZEOF_PAUTH): New define.
11268
17e116a7
AH
112692019-03-22 Alan Hayward <alan.hayward@arm.com>
11270 Jiong Wang <jiong.wang@arm.com>
11271
11272 * aarch64-tdep.c (aarch64_analyze_prologue): Check for pauth
11273 instructions.
11274 (aarch64_analyze_prologue_test): Add PACIASP test.
11275 (aarch64_prologue_prev_register): Unmask PC value.
11276
11e1b75f
AH
112772019-03-22 Alan Hayward <alan.hayward@arm.com>
11278 Jiong Wang <jiong.wang@arm.com>
11279
11280 * aarch64-tdep.c (aarch64_frame_unmask_address): New function.
11281 (aarch64_dwarf2_prev_register): Unmask PC value.
11282 (aarch64_dwarf2_frame_init_reg): Init pauth registers.
11283 (aarch64_execute_dwarf_cfa_vendor_op): Check for
11284 DW_CFA_AARCH64_negate_ra_state.
11285 (aarch64_gdbarch_init): Add aarch64_execute_dwarf_cfa_vendor_op.
11286
34dcc7cf
AH
112872019-03-22 Alan Hayward <alan.hayward@arm.com>
11288 Jiong Wang <jiong.wang@arm.com>
11289
11290 * aarch64-tdep.c (aarch64_dwarf_reg_to_regnum): Check for pauth
11291 registers.
11292 (aarch64_pseudo_register_name): Likewise.
11293 (aarch64_pseudo_register_type): Likewise.
11294 (aarch64_pseudo_register_reggroup_p): Likewise.
11295 (aarch64_gdbarch_init): Add pauth registers.
11296 * aarch64-tdep.h (AARCH64_DWARF_PAUTH_RA_STATE): New define.
11297 (AARCH64_DWARF_PAUTH_DMASK): Likewise.
11298 (AARCH64_DWARF_PAUTH_CMASK): Likewise.
11299 (struct gdbarch_tdep): Add regnum for ra_state.
11300
1ef53e6b
AH
113012019-03-22 Alan Hayward <alan.hayward@arm.com>
11302 Jiong Wang <jiong.wang@arm.com>
11303
11304 * arch/aarch64.h (AARCH64_PAUTH_REGS_SIZE): New define.
11305
76bed0fd
AH
113062019-03-22 Alan Hayward <alan.hayward@arm.com>
11307 Jiong Wang <jiong.wang@arm.com>
11308
11309 * aarch64-linux-nat.c (fetch_pauth_masks_from_thread): New
11310 function.
11311 (aarch64_linux_nat_target::fetch_registers): Read pauth registers.
11312 * aarch64-tdep.c (aarch64_cannot_store_register): New function.
11313 (aarch64_gdbarch_init): Add puth registers.
11314 * aarch64-tdep.h (struct gdbarch_tdep): Add pauth features.
11315 * arch/aarch64.h (AARCH64_PAUTH_DMASK_REGNUM): New define.
11316 (AARCH64_PAUTH_CMASK_REGNUM): Likewise.
11317
ee4fbcfa
AH
113182019-03-22 Alan Hayward <alan.hayward@arm.com>
11319 Jiong Wang <jiong.wang@arm.com>
11320
11321 * aarch64-linux-nat.c
11322 (aarch64_linux_nat_target::read_description): Read PACA hwcap.
11323 * aarch64-linux-tdep.c
11324 (aarch64_linux_core_read_description): Likewise.
11325 (aarch64_linux_get_hwcap): New function.
11326 * aarch64-linux-tdep.h (AARCH64_HWCAP_PACA): New define.
11327 (aarch64_linux_get_hwcap): New declaration.
11328
6dc0ebde
AH
113292019-03-22 Alan Hayward <alan.hayward@arm.com>
11330 Jiong Wang <jiong.wang@arm.com>
11331
11332 * aarch64-linux-nat.c
11333 (aarch64_linux_nat_target::read_description): Add pauth param.
11334 * aarch64-linux-tdep.c
11335 (aarch64_linux_core_read_description): Likewise.
11336 * aarch64-tdep.c (struct target_desc): Add in pauth.
11337 (aarch64_read_description): Add pauth param.
11338 (aarch64_gdbarch_init): Likewise.
11339 * aarch64-tdep.h (aarch64_read_description): Likewise.
11340 * arch/aarch64.c (aarch64_create_target_description): Likewise.
11341 * arch/aarch64.h (aarch64_create_target_description): Likewise.
11342 * features/Makefile: Add new files.
11343 * features/aarch64-pauth.c: New file.
11344 * features/aarch64-pauth.xml: New file.
11345
595915c1
TT
113462019-03-20 Tom Tromey <tromey@adacore.com>
11347
11348 * infrun.c (handle_inferior_event): Rename from
11349 handle_inferior_event_1. Create a scoped_value_mark.
11350 (handle_inferior_event): Remove.
11351
4c7d57e7
TT
113522019-03-19 Tom Tromey <tromey@adacore.com>
11353
11354 * mi/mi-interp.c (mi_on_normal_stop_1): Only show displays once.
11355 * infrun.h (print_stop_event): Add "displays" parameter.
11356 * infrun.c (print_stop_event): Add "displays" parameter.
11357
cb246234
PA
113582019-03-19 Pedro Alves <palves@redhat.com>
11359
11360 * tui/tui-out.c (tui_ui_out::do_field_string): Simplify.
11361 (tui_ui_out::do_text): Add comments. Reset M_LINE to 0 instead of
11362 to -1. Fix TABs vs spaces.
11363 (tui_ui_out::tui_ui_out): Don't initialize fields here.
11364 * tui/tui-out.h (tui_ui_out) Add intro comments.
11365 <m_line, m_start_of_line>: In-class initialize, and add describing
11366 comment.
11367
3a0e45b2
AH
113682019-03-18 Alan Hayward <alan.hayward@arm.com>
11369
11370 * arm-linux-nat.c (arm_linux_insert_hw_breakpoint1): Fix
11371 variable names.
11372 (arm_linux_remove_hw_breakpoint1): Use a gdb::function_view.
11373
5371b850
PA
113742019-03-18 Pedro Alves <palves@redhat.com>
11375 Eli Zaretskii <eliz@gnu.org>
11376
11377 * tui/tui-out.c (tui_ui_out::tui_ui_out): Fix initialization of
11378 m_line and m_start_of_line.
11379
b17c4cd0
EZ
113802019-03-18 Eli Zaretskii <eliz@gnu.org>
11381
11382 * tui/tui-io.c (gdb_wgetch): Don't echo CR.
11383 (tui_getc): When gdb_wgetch returns a CR, behave the same as when
11384 it returns a newline. This fixes a regression in TU mode, whereby
11385 the next line is output on the same screen line as the user input.
11386
4bd56d18
TT
113872019-03-18 Tom Tromey <tromey@adacore.com>
11388
11389 * minsyms.c (minimal_symbol_reader::install): Remove call to
11390 obstack_blank.
11391
55c10aca
PA
113922019-03-18 Pedro Alves <palves@redhat.com>
11393
11394 * tui/tui-io.c (reverse_mode_p, reverse_save_bg, reverse_save_fg):
11395 New globals.
11396 (apply_style): New, factored out from ...
11397 (apply_ansi_escape): ... this. Handle reverse video mode.
11398 (tui_set_reverse_mode): New function.
11399 * tui/tui-io.h (tui_set_reverse_mode): New declaration.
11400 * tui/tui-winsource.c (tui_show_source_line): Use
11401 tui_set_reverse_mode instead of setting A_STANDOUT.
11402 * ui-style.h (struct ui_file_style) <set_reverse, set_fg, set_bg>:
11403 New setter methods.
11404
647bb750
HD
114052019-03-18 Hannes Domani <ssbssa@yahoo.de>
11406
11407 * tui/tui-source.c (copy_source_line): Fix handling of 'column'.
11408 Handle tabs.
11409
bff8c71f
TT
114102019-03-18 Tom Tromey <tromey@adacore.com>
11411
11412 * ada-lang.c (empty_array): Add "high" parameter.
11413 (ada_evaluate_subexp): Update.
11414
58785d98
ST
114152019-03-17 Sergei Trofimovich <siarheit@google.com>
11416
11417 * unittests/string_view-selftests.c: Define
11418 _initialize_string_view_selftests unconditionally.
11419
d4cbef22
ВМ
114202019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
11421
11422 PR gdb/24350
11423 * windows-nat.c (windows_make_so): Remove unused text_vma variable.
11424
fce4c071
ВМ
114252019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
11426
11427 PR gdb/24351
11428 * windows-nat.c (display_selector): Fix format specifiers.
11429
f7f0a123
EZ
114302019-03-17 Eli Zaretskii <eliz@gnu.org>
11431
11432 * tui/tui-winsource.c (tui_set_is_exec_point_at): Call
11433 tui_refill_source_window instead of tui_refresh_win, to update the
11434 current execution line. This fixes redisplay of the current line
11435 when stepping through the code with "next" or "step".
11436
ab42892f
EZ
114372019-03-16 Eli Zaretskii <eliz@gnu.org>
11438
11439 * source-cache.c (source_cache::get_source_lines): Call
11440 find_source_lines to initialize s->nlines. This fixes vertical
11441 scrolling of TUI source window when the DOWN arrow is pressed.
11442
8d8c087f
PW
114432019-03-16 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11444
11445 * auto-load.c (_initialize_auto_load): Fix 'This options has'.
11446 linux-thread-db.c (_initialize_thread_db): Likewise.
11447
798e1c30
EZ
114482019-03-16 Eli Zaretskii <eliz@gnu.org>
11449
11450 * tui/tui-winsource.c (tui_show_source_line): Revert "Use
11451 wclrtoeol in tui_show_source_line". This reverts changes made in
11452 commit 4a3045920bbe4e50a0f4920b0fdc4e88ef23015c.
11453
eefba3da
TT
114542019-03-15 Tom Tromey <tom@tromey.com>
11455
11456 * symtab.h (struct minimal_symbol): Derive from
11457 general_symbol_info.
11458 (MSYMBOL_VALUE, MSYMBOL_VALUE_RAW_ADDRESS)
11459 (MSYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_BYTES)
11460 (MSYMBOL_BLOCK_VALUE, MSYMBOL_VALUE_CHAIN, MSYMBOL_LANGUAGE)
11461 (MSYMBOL_SECTION, MSYMBOL_OBJ_SECTION, MSYMBOL_NATURAL_NAME)
11462 (MSYMBOL_LINKAGE_NAME, MSYMBOL_DEMANGLED_NAME)
11463 (MSYMBOL_SEARCH_NAME): Update.
11464 (MSYMBOL_SET_LANGUAGE, MSYMBOL_SET_NAMES): Remove.
11465 * solib.c (gdb_bfd_lookup_symbol_from_symtab): Don't use memset.
11466 * minsyms.c (minimal_symbol_reader::record_full): Update.
11467
0de2420c
TT
114682019-03-15 Tom Tromey <tom@tromey.com>
11469
11470 * minsyms.c (minimal_symbol_reader::install): Use memcpy.
11471
042d75e4
TT
114722019-03-15 Tom Tromey <tom@tromey.com>
11473
11474 * objfiles.h (struct objfile_per_bfd_storage) <msymbols>: Now a
11475 unique_xmalloc_ptr.
11476 (objfile::msymbols_range::begin, objfile::msymbols_range::end):
11477 Update.
11478 * minsyms.c (lookup_minimal_symbol_by_pc_section)
11479 (build_minimal_symbol_hash_tables)
11480 (minimal_symbol_reader::install): Update.
11481
db92718b
TT
114822019-03-15 Tom Tromey <tom@tromey.com>
11483
11484 * symtab.c (create_demangled_names_hash): Update.
11485 (symbol_set_names): Update.
11486 * objfiles.h (struct objfile_per_bfd_storage)
11487 <demangled_names_hash>: Now an htab_up.
11488 * objfiles.c (objfile_per_bfd_storage): Simplify.
11489
d6797f46
TT
114902019-03-15 Tom Tromey <tom@tromey.com>
11491
11492 * objfiles.h (struct objfile_per_bfd_storage): Declare
11493 destructor.
11494 * objfiles.c (objfile_per_bfd_storage::~objfile_per_bfd_storage):
11495 New.
11496 (get_objfile_bfd_data): Use new. Don't initialize
11497 language_of_main.
11498 (free_objfile_per_bfd_storage): Remove.
11499 (objfile_bfd_data_free, objfile::~objfile): Use delete.
11500
741d7538
TT
115012019-03-15 Tom Tromey <tom@tromey.com>
11502
11503 * symfile.c (reread_symbols): Update.
11504 * objfiles.c (objfile::objfile): Update.
11505 * minsyms.h (terminate_minimal_symbol_table): Don't declare.
11506 * minsyms.c (lookup_minimal_symbol_by_pc_section): Update
11507 comment.
11508 (minimal_symbol_reader::install): Update.
11509 (terminate_minimal_symbol_table): Remove.
11510 * jit.c (jit_object_close_impl): Update.
11511
788c80d1
TT
115122019-03-15 Tom Tromey <tom@tromey.com>
11513
11514 * minsyms.c (minimal_symbol_reader::record_full): Remove some
11515 initializations.
11516
1b7a07cb
TT
115172019-03-15 Tom Tromey <tom@tromey.com>
11518
11519 * objfiles.h (struct objfile_per_bfd_storage)
11520 <demangled_hash_languages>: Now a bitset.
11521 * minsyms.c (add_minsym_to_demangled_hash_table): Update.
11522 (lookup_minimal_symbol): Update.
11523
3db066bc
TT
115242019-03-15 Tom Tromey <tom@tromey.com>
11525
11526 * minsyms.h (class minimal_symbol_reader) <record_with_info>:
11527 Don't return the symbol.
11528 * coffread.c (record_minimal_symbol): Use record_full.
11529
3fff2c37
EZ
115302019-03-14 Eli Zaretskii <eliz@gnu.org>
11531
11532 The MS-Windows port of ncurses fails to switch to a color pair if
11533 one or both of the colors are the implicit default colors. This
11534 change records the default colors when TUI is initialized, and
11535 then specifies them explicitly when a color pair uses the default
11536 colors. This allows color styling in TUI mode on MS-Windows.
11537
11538 * tui/tui-io.c [__MINGW32__]: Include windows.h. Declare
11539 ncurses_norm_attr.
11540 (tui_initialize_io) [__MINGW32__]: Record the default terminal
11541 colors in ncurses_norm_attr.
11542 (apply_ansi_escape) [__MINGW32__]: If a color in a color pair is
11543 "none", replace it with the default color recorded in
11544 ncurses_norm_attr.
11545
3b336828
TT
115462019-03-14 Tom Tromey <tromey@adacore.com>
11547
11548 * source-cache.h (class source_cache) <get_source_lines>: Return
11549 std::string.
11550 * source-cache.c (source_cache::extract_lines): Handle case where
11551 first_pos==npos. Return std::string.
11552 (source_cache::get_source_lines): Update.
11553
d085f989
TT
115542019-03-14 Tom Tromey <tromey@adacore.com>
11555
11556 * NEWS: Add item for "style sources" commands.
11557 * source-cache.c (source_cache::get_source_lines): Check
11558 source_styling.
11559 * cli/cli-style.c (source_styling): New global.
11560 (_initialize_cli_style): Add "style sources" commands.
11561 (show_style_sources): New function.
11562 * cli/cli-style.h (source_styling): Declare.
11563
6f11e682
TT
115642019-03-14 Pedro Alves <palves@redhat.com>
11565 Tom Tromey <tromey@adacore.com>
11566
11567 * tui/tui-winsource.h (tui_refill_source_window): Declare.
11568 * tui/tui-winsource.c (tui_refill_source_window): New function,
11569 from...
11570 (tui_horizontal_source_scroll): ... here. Move some logic.
11571 * cli/cli-style.c (set_style_enabled): Notify new observable.
11572 * tui/tui-hooks.c (tui_redisplay_source): New function.
11573 (tui_attach_detach_observers): Attach or detach
11574 tui_redisplay_source.
11575 * observable.h (source_styling_changed): New observable.
11576 * observable.c: Define source_styling_changed observable.
11577
a068643d
TT
115782019-03-13 Tom Tromey <tromey@adacore.com>
11579
11580 * i386-gnu-nat.c (i386_gnu_nat_target::fetch_registers)
11581 (i386_gnu_nat_target::store_registers): Update.
11582 * target-debug.h (target_debug_print_std_string): New macro.
11583 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
11584 * windows-tdep.c (display_one_tib): Update.
11585 * tui/tui-stack.c (tui_make_status_line): Update.
11586 * top.c (print_inferior_quit_action): Update.
11587 * thread.c (thr_try_catch_cmd): Update.
11588 (add_thread_with_info): Update.
11589 (thread_target_id_str): Update.
11590 (thr_try_catch_cmd): Update.
11591 (thread_command): Update.
11592 (thread_find_command): Update.
11593 * record-btrace.c (record_btrace_target::info_record)
11594 (record_btrace_resume_thread, record_btrace_target::resume)
11595 (record_btrace_cancel_resume, record_btrace_step_thread)
11596 (record_btrace_target::wait, record_btrace_target::wait)
11597 (record_btrace_target::wait, record_btrace_target::stop): Update.
11598 * progspace.c (print_program_space): Update.
11599 * process-stratum-target.c
11600 (process_stratum_target::thread_address_space): Update.
11601 * linux-fork.c (linux_fork_mourn_inferior)
11602 (detach_checkpoint_command, info_checkpoints_command)
11603 (linux_fork_context): Update.
11604 (linux_fork_detach): Update.
11605 (class scoped_switch_fork_info): Update.
11606 (delete_checkpoint_command): Update.
11607 * infrun.c (follow_fork_inferior): Update.
11608 (follow_fork_inferior): Update.
11609 (proceed_after_vfork_done): Update.
11610 (handle_vfork_child_exec_or_exit): Update.
11611 (follow_exec): Update.
11612 (displaced_step_prepare_throw): Update.
11613 (displaced_step_restore): Update.
11614 (start_step_over): Update.
11615 (resume_1): Update.
11616 (clear_proceed_status_thread): Update.
11617 (proceed): Update.
11618 (print_target_wait_results): Update.
11619 (do_target_wait): Update.
11620 (context_switch): Update.
11621 (stop_all_threads): Update.
11622 (restart_threads): Update.
11623 (finish_step_over): Update.
11624 (handle_signal_stop): Update.
11625 (switch_back_to_stepped_thread): Update.
11626 (keep_going_pass_signal): Update.
11627 (print_exited_reason): Update.
11628 (normal_stop): Update.
11629 * inferior.c (inferior_pid_to_str): Change return type.
11630 (print_selected_inferior): Update.
11631 (add_inferior): Update.
11632 (detach_inferior): Update.
11633 * dummy-frame.c (fprint_dummy_frames): Update.
11634 * dcache.c (dcache_info_1): Update.
11635 * btrace.c (btrace_enable, btrace_disable, btrace_teardown)
11636 (btrace_fetch, btrace_clear): Update.
11637 * linux-tdep.c (linux_core_pid_to_str): Change return type.
11638 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): Change return
11639 type.
11640 * fbsd-tdep.c (fbsd_core_pid_to_str): Change return type.
11641 * sol2-tdep.h (sol2_core_pid_to_str): Change return type.
11642 * sol2-tdep.c (sol2_core_pid_to_str): Change return type.
11643 * gdbarch.c, gdbarch.h: Rebuild.
11644 * gdbarch.sh (core_pid_to_str): Change return type.
11645 * windows-nat.c (struct windows_nat_target) <pid_to_str>: Change
11646 return type.
11647 (windows_nat_target::pid_to_str): Change return type.
11648 (windows_delete_thread): Update.
11649 (windows_nat_target::attach): Update.
11650 (windows_nat_target::files_info): Update.
11651 * target-delegates.c: Rebuild.
11652 * sol-thread.c (class sol_thread_target) <pid_to_str>: Change
11653 return type.
11654 (sol_thread_target::pid_to_str): Change return type.
11655 * remote.c (class remote_target) <pid_to_str>: Change return
11656 type.
11657 (remote_target::pid_to_str): Change return type.
11658 (extended_remote_target::attach, remote_target::remote_stop_ns)
11659 (remote_target::remote_notif_remove_queued_reply)
11660 (remote_target::push_stop_reply, remote_target::disable_btrace):
11661 Update.
11662 (extended_remote_target::attach): Update.
11663 * remote-sim.c (struct gdbsim_target) <pid_to_str>: Change return
11664 type.
11665 (gdbsim_target::pid_to_str): Change return type.
11666 * ravenscar-thread.c (struct ravenscar_thread_target)
11667 <pid_to_str>: Change return type.
11668 (ravenscar_thread_target::pid_to_str): Change return type.
11669 * procfs.c (class procfs_target) <pid_to_str>: Change return
11670 type.
11671 (procfs_target::pid_to_str): Change return type.
11672 (procfs_target::attach): Update.
11673 (procfs_target::detach): Update.
11674 (procfs_target::fetch_registers): Update.
11675 (procfs_target::store_registers): Update.
11676 (procfs_target::wait): Update.
11677 (procfs_target::files_info): Update.
11678 * obsd-nat.c (obsd_nat_target::pid_to_str): Change return type.
11679 * nto-procfs.c (struct nto_procfs_target) <pid_to_str>: Change
11680 return type.
11681 (nto_procfs_target::pid_to_str): Change return type.
11682 (nto_procfs_target::files_info, nto_procfs_target::attach): Update.
11683 * linux-thread-db.c (class thread_db_target) <pid_to_str>: Change
11684 return type.
11685 * linux-nat.c (linux_nat_target::pid_to_str): Change return type.
11686 (exit_lwp): Update.
11687 (attach_proc_task_lwp_callback, get_detach_signal)
11688 (detach_one_lwp, resume_lwp, linux_nat_target::resume)
11689 (linux_nat_target::resume, wait_lwp, stop_callback)
11690 (maybe_clear_ignore_sigint, stop_wait_callback, status_callback)
11691 (save_stop_reason, select_event_lwp, linux_nat_filter_event)
11692 (linux_nat_wait_1, resume_stopped_resumed_lwps)
11693 (linux_nat_target::wait, linux_nat_stop_lwp): Update.
11694 * inf-ptrace.c (inf_ptrace_target::pid_to_str): Change return
11695 type.
11696 (inf_ptrace_target::attach): Update.
11697 (inf_ptrace_target::files_info): Update.
11698 * go32-nat.c (struct go32_nat_target) <pid_to_str>: Change return
11699 type.
11700 (go32_nat_target::pid_to_str): Change return type.
11701 * gnu-nat.c (gnu_nat_target::pid_to_str): Change return type.
11702 (gnu_nat_target::wait): Update.
11703 (gnu_nat_target::wait): Update.
11704 (gnu_nat_target::resume): Update.
11705 * fbsd-nat.c (fbsd_nat_target::pid_to_str): Change return type.
11706 (fbsd_nat_target::wait): Update.
11707 * darwin-nat.c (darwin_nat_target::pid_to_str): Change return
11708 type.
11709 (darwin_nat_target::attach): Update.
11710 * corelow.c (class core_target) <pid_to_str>: Change return type.
11711 (core_target::pid_to_str): Change return type.
11712 * target.c (normal_pid_to_str): Change return type.
11713 (default_pid_to_str): Likewise.
11714 (target_pid_to_str): Change return type.
11715 (target_translate_tls_address): Update.
11716 (target_announce_detach): Update.
11717 * bsd-uthread.c (struct bsd_uthread_target) <pid_to_str>: Change
11718 return type.
11719 (bsd_uthread_target::pid_to_str): Change return type.
11720 * bsd-kvm.c (class bsd_kvm_target) <pid_to_str>: Change return
11721 type.
11722 (bsd_kvm_target::pid_to_str): Change return type.
11723 * aix-thread.c (class aix_thread_target) <pid_to_str>: Change
11724 return type.
11725 (aix_thread_target::pid_to_str): Change return type.
11726 * target.h (struct target_ops) <pid_to_str>: Change return type.
11727 (target_pid_to_str, normal_pid_to_str): Likewise.
11728 * obsd-nat.h (class obsd_nat_target) <pid_to_str>: Change return
11729 type.
11730 * linux-nat.h (class linux_nat_target) <pid_to_str>: Change return
11731 type.
11732 * inf-ptrace.h (struct inf_ptrace_target) <pid_to_str>: Change
11733 return type.
11734 * gnu-nat.h (struct gnu_nat_target) <pid_to_str>: Change return
11735 type.
11736 * fbsd-nat.h (class fbsd_nat_target) <pid_to_str>: Change return
11737 type.
11738 * darwin-nat.h (class darwin_nat_target) <pid_to_str>: Change
11739 return type.
11740
b4be1b06
SM
117412019-03-13 Simon Marchi <simon.marchi@ericsson.com>
11742
11743 * NEWS: Mention that the new default MI version is 3. Mention
11744 changes to the output of commands and events that deal with
11745 multi-location breakpoints.
11746 * breakpoint.c: Include "mi/mi-out.h".
11747 (print_one_breakpoint): Change output syntax if using MI version
11748 >= 3.
11749 * mi/mi-main.h (mi_cmd_fix_multi_location_breakpoint_output):
11750 New.
11751 (mi_multi_location_breakpoint_output_fixed): New.
11752 * mi/mi-main.c (fix_multi_location_breakpoint_output): New.
11753 (mi_cmd_fix_multi_location_breakpoint_output): New.
11754 (mi_multi_location_breakpoint_output_fixed): New.
11755 * mi/mi-cmds.c (mi_cmds): Register command
11756 -fix-multi-location-breakpoint-output.
11757 * mi/mi-out.c (mi_out_new): Instantiate version 3 when using
11758 interpreter "mi".
11759
8e5e5494
SM
117602019-03-13 Simon Marchi <simon.marchi@polymtl.ca>
11761
11762 * mi/mi-out.h (mi_out_new): Change parameter to const char *.
11763 * mi/mi-out.c (mi_out_new): Change parameter to const char *,
11764 instantiate mi_ui_out based on interpreter name.
11765 * mi/mi-interp.c (mi_interp::init): Use the new mi_out_new.
11766 * mi/mi-main.c (mi_load_progress): Likewise.
11767
197df35e
JB
117682019-03-12 John Baldwin <jhb@FreeBSD.org>
11769
11770 * NEWS: Combine separate "New targets" sections for 8.3.
11771
8399425f
JB
117722019-03-12 John Baldwin <jhb@FreeBSD.org>
11773
11774 * ppc-fbsd-tdep.c (ppcfbsd_get_thread_local_address): New.
11775 (ppcfbsd_init_abi): Install gdbarch
11776 "fetch_tls_load_module_address" and "get_thread_local_address"
11777 methods.
11778
b0f87ed0
JB
117792019-03-12 John Baldwin <jhb@FreeBSD.org>
11780
11781 * riscv-fbsd-tdep.c (riscv_fbsd_get_thread_local_address): New.
11782 (riscv_fbsd_init_abi): Install gdbarch
11783 "fetch_tls_load_module_address" and "get_thread_local_address"
11784 methods.
11785
ce25aa57
JB
117862019-03-12 John Baldwin <jhb@FreeBSD.org>
11787
11788 * i386-fbsd-tdep.c (i386fbsd_get_thread_local_address): New.
11789 (i386fbsd_init_abi): Install gdbarch
11790 "fetch_tls_load_module_address" and "get_thread_local_address"
11791 methods.
11792
f5424cfa
JB
117932019-03-12 John Baldwin <jhb@FreeBSD.org>
11794
11795 * amd64-fbsd-tdep.c (amd64fbsd_get_thread_local_address): New.
11796 (amd64fbsd_init_abi): Install gdbarch
11797 "fetch_tls_load_module_address" and "get_thread_local_address"
11798 methods.
11799
945f3901
JB
118002019-03-12 John Baldwin <jhb@FreeBSD.org>
11801
11802 * fbsd-tdep.c (fbsd_pspace_data_handle): New variable.
11803 (struct fbsd_pspace_data): New type.
11804 (get_fbsd_pspace_data, fbsd_pspace_data_cleanup)
11805 (fbsd_read_integer_by_name, fbsd_fetch_rtld_offsets)
11806 (fbsd_get_tls_index, fbsd_get_thread_local_address): New function.
11807 (_initialize_fbsd_tdep): Initialize 'fbsd_pspace_data_handle'.
11808 * fbsd-tdep.c (fbsd_get_thread_local_address): New prototype.
11809
ef0bd204
JB
118102019-03-12 John Baldwin <jhb@FreeBSD.org>
11811
11812 * gdbtypes.c (lookup_struct_elt): New function.
11813 (lookup_struct_elt_type): Reimplement via lookup_struct_elt.
11814 * gdbtypes.h (struct struct_elt): New type.
11815 (lookup_struct_elt): New prototype.
11816
36c53a02
JB
118172019-03-12 John Baldwin <jhb@FreeBSD.org>
11818
11819 * gdbtypes.c (lookup_struct_elt_type): Update comment and
11820 remove disabled code block.
11821
6e056c81
JB
118222019-03-12 John Baldwin <jhb@FreeBSD.org>
11823
11824 * gdbarch.sh (get_thread_local_address): New method.
11825 * gdbarch.h, gdbarch.c: Regenerate.
11826 * target.c (target_translate_tls_address): Use
11827 gdbarch_get_thread_local_address if present instead of
11828 target::get_thread_local_address.
11829
cd250a18
JB
118302019-03-12 John Baldwin <jhb@FreeBSD.org>
11831
11832 * target.h (target::get_thread_local_address): Update comment.
11833
df22c1e5
JB
118342019-03-12 John Baldwin <jhb@FreeBSD.org>
11835
11836 * solib-svr4.c (svr4_fetch_objfile_link_map): Look for
11837 objfile->separate_debug_objfile_backlink if not NULL.
11838
dd6876c9
JB
118392019-03-12 John Baldwin <jhb@FreeBSD.org>
11840
11841 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
11842 tdep->fsbase_regnum instead of constants for fs_base and gs_base.
11843 (amd64bsd_store_inferior_registers): Likewise.
11844 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
11845 Enable segment base registers.
11846 * i386-bsd-nat.c (i386bsd_fetch_inferior_registers): Use
11847 PT_GETFSBASE and PT_GETGSBASE.
11848 (i386bsd_store_inferior_registers): Use PT_SETFSBASE and
11849 PT_SETGSBASE.
11850 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Enable
11851 segment base registers.
11852 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
11853
1163a4b7
JB
118542019-03-12 John Baldwin <jhb@FreeBSD.org>
11855
11856 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
11857 Update calls to i386_target_description to add 'segments'
11858 parameter.
11859 * amd64-tdep.c (amd64_init_abi): Set tdep->fsbase_regnum. Don't
11860 add segment base registers.
11861 * arch/i386.c (i386_create_target_description): Add 'segments'
11862 parameter to enable segment base registers.
11863 * arch/i386.h (i386_create_target_description): Likewise.
11864 * features/i386/32bit-segments.xml: New file.
11865 * features/i386/32bit-segments.c: Generate.
11866 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Update
11867 call to i386_target_description to add 'segments' parameter.
11868 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
11869 * i386-go32-tdep.c (i386_go32_init_abi): Likewise.
11870 * i386-linux-tdep.c (i386_linux_read_description): Likewise.
11871 * i386-tdep.c (i386_validate_tdesc_p): Add segment base registers
11872 if feature is present.
11873 (i386_gdbarch_init): Pass I386_NUM_REGS to set_gdbarch_num_regs.
11874 Add 'segments' parameter to call to i386_target_description.
11875 (i386_target_description): Add 'segments' parameter to enable
11876 segment base registers.
11877 (_initialize_i386_tdep) [GDB_SELF_TEST]: Add 'segments' parameter
11878 to call to i386_target_description.
11879 * i386-tdep.h (struct gdbarch_tdep): Add 'fsbase_regnum'.
11880 (enum i386_regnum): Add I386_FSBASE_REGNUM and I386_GSBASE_REGNUM.
11881 Define I386_NUM_REGS.
11882 (i386_target_description): Add 'segments' parameter to enable
11883 segment base registers.
11884
3a350822
EZ
118852019-03-12 Eli Zaretskii <eliz@gnu.org>
11886
11887 PR/24325
11888 * source-cache.c: #undef open and close, to avoid unresolved
11889 externals during linking.
11890
ffdd69cf
TT
118912019-03-12 Tom Tromey <tromey@adacore.com>
11892
11893 * remote.c (magic_null_ptid, not_sent_ptid, any_thread_ptid): Now
11894 const. Add initializers.
11895 (_initialize_remote): Don't initialize ptid globals.
11896
ec148c57
PA
118972019-03-12 Pedro Alves <palves@redhat.com>
11898
11899 * yy-remap.h [TEST_CPNAMES] (YYFPRINTF): Don't define.
11900
32764270
PA
119012019-03-12 Pedro Alves <palves@redhat.com>
11902
11903 * cp-name-parser.y (main): Remove unused 'len' variable.
11904
17547186
TT
119052019-03-12 Tom Tromey <tromey@adacore.com>
11906
11907 * common/ptid.c (null_ptid, minus_one_ptid): Now const.
11908 * common/ptid.h (null_ptid, minus_one_ptid): Now const.
11909
d3a70e03
TT
119102019-03-12 Tom Tromey <tromey@adacore.com>
11911
11912 * linux-nat.c (iterate_over_lwps): Update.
11913 (stop_callback): Remove parameter.
11914 (stop_wait_callback, detach_callback, resume_set_callback)
11915 (select_singlestep_lwp_callback, set_ignore_sigint)
11916 (status_callback, resumed_callback, resume_clear_callback)
11917 (kill_callback, kill_wait_callback, linux_nat_stop_lwp): Remove
11918 data parameter.
11919 (linux_nat_target::detach, linux_nat_target::resume)
11920 (linux_stop_and_wait_all_lwps, select_event_lwp)
11921 (linux_nat_filter_event, linux_nat_wait_1)
11922 (linux_nat_target::kill, linux_nat_target::stop)
11923 (linux_nat_target::stop): Update.
11924 (linux_nat_resume_callback): Change type.
11925 (resume_stopped_resumed_lwps, count_events_callback)
11926 (select_event_lwp_callback): Likewise.
11927 (linux_stop_lwp, linux_nat_stop_lwp): Update.
11928 * arm-linux-nat.c (struct update_registers_data): Remove.
11929 (update_registers_callback): Change type.
11930 (arm_linux_insert_hw_breakpoint1): Update.
11931 * nat/x86-linux-dregs.c (update_debug_registers_callback): Remove
11932 parameter.
11933 (x86_linux_dr_set_addr): Update.
11934 (x86_linux_dr_set_control): Update.
11935 * nat/linux-nat.h (iterate_over_lwps_ftype): Remove parameter.
11936 (iterate_over_lwps): Use gdb::function_view.
11937 * nat/aarch64-linux-hw-point.c (struct
11938 aarch64_dr_update_callback_param): Remove.
11939 (debug_reg_change_callback): Change type.
11940 (aarch64_notify_debug_reg_change): Update.
11941 * s390-linux-nat.c (s390_refresh_per_info): Update.
11942
82cb27ff
TT
119432019-03-11 Tom Tromey <tromey@adacore.com>
11944
11945 * dwarf2read.c (dwarf2_find_containing_comp_unit): Remove
11946 redundant assignment to "this_cu".
11947
568c0683
SM
119482019-03-08 Simon Marchi <simon.marchi@efficios.com>
11949
11950 * gdbtypes.c (rank_one_type): Remove unnecessary cases from switch.
11951
f09ce22d
SM
119522019-03-08 Simon Marchi <simon.marchi@efficios.com>
11953
11954 * gdbtypes.c (rank_one_type_parm_set): New function extracted
11955 from...
11956 (rank_one_type): ... this.
11957
595f96a9
SM
119582019-03-08 Simon Marchi <simon.marchi@efficios.com>
11959
11960 * gdbtypes.c (rank_one_type_parm_struct): New function extracted
11961 from...
11962 (rank_one_type): ... this.
11963
2598a94b
SM
119642019-03-08 Simon Marchi <simon.marchi@efficios.com>
11965
11966 * gdbtypes.c (rank_one_type_parm_complex): New function extracted
11967 from...
11968 (rank_one_type): ... this.
11969
7f17b20d
SM
119702019-03-08 Simon Marchi <simon.marchi@efficios.com>
11971
11972 * gdbtypes.c (rank_one_type_parm_float): New function extracted
11973 from...
11974 (rank_one_type): ... this.
11975
2c509035
SM
119762019-03-08 Simon Marchi <simon.marchi@efficios.com>
11977
11978 * gdbtypes.c (rank_one_type_parm_bool): New function extracted
11979 from...
11980 (rank_one_type): ... this.
11981
0dd322dc
SM
119822019-03-08 Simon Marchi <simon.marchi@efficios.com>
11983
11984 * gdbtypes.c (rank_one_type_parm_range): New function extracted
11985 from...
11986 (rank_one_type): ... this.
11987
41ea4728
SM
119882019-03-08 Simon Marchi <simon.marchi@efficios.com>
11989
11990 * gdbtypes.c (rank_one_type_parm_char): New function extracted
11991 from...
11992 (rank_one_type): ... this.
11993
793cd1d2
SM
119942019-03-08 Simon Marchi <simon.marchi@efficios.com>
11995
11996 * gdbtypes.c (rank_one_type_parm_enum): New function extracted
11997 from...
11998 (rank_one_type): ... this.
11999
34910087
SM
120002019-03-08 Simon Marchi <simon.marchi@efficios.com>
12001
12002 * gdbtypes.c (rank_one_type_parm_int): New function extracted
12003 from...
12004 (rank_one_type): ... this.
12005
f1f832d6
SM
120062019-03-08 Simon Marchi <simon.marchi@efficios.com>
12007
12008 * gdbtypes.c (rank_one_type_parm_func): New function extracted
12009 from...
12010 (rank_one_type): ... this.
12011
b9f4512f
SM
120122019-03-08 Simon Marchi <simon.marchi@efficios.com>
12013
12014 * gdbtypes.c (rank_one_type_parm_array): New function extracted
12015 from...
12016 (rank_one_type): ... this.
12017
9293fc63
SM
120182019-03-08 Simon Marchi <simon.marchi@efficios.com>
12019
12020 * gdbtypes.c (rank_one_type_parm_ptr): New function extracted
12021 from...
12022 (rank_one_type): ... this.
12023
e3abbe7e
PW
120242019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12025
12026 * inferior.c (initialize_inferiors): Ensure 'help set/show print
12027 inferior-events' shows the example events.
12028
e4adb939
EZ
120292019-03-08 Eli Zaretskii <eliz@gnu.org>
12030
12031 Support styling on native MS-Windows console
12032
12033 PR/24315
12034 * utils.c (can_emit_style_escape) [_WIN32]: Don't disable styling
12035 on MS-Windows if $TERM is not defined.
12036
12037 * cli/cli-style.c: Set cli_styling to 1 in the MinGW build.
12038
12039 * posix-hdep.c (gdb_console_fputs):
12040 * mingw-hdep.c (rgb_to_16colors, gdb_console_fputs): New
12041 functions.
12042 * ui-file.h (gdb_console_fputs): Add prototype.
12043
12044 * ui-file.c (stdio_file::puts): Call gdb_console_fputs, and fall
12045 back to fputs only if the former returns zero.
12046
25629dfd
TT
120472019-03-07 Tom Tromey <tom@tromey.com>
12048
12049 * symmisc.c (print_symbol_bcache_statistics): Update.
12050 (print_objfile_statistics): Update.
12051 * symfile.c (allocate_symtab): Update.
12052 * stabsread.c: Don't include bcache.h.
12053 * psymtab.h (struct psymbol_bcache): Don't declare.
12054 (class psymtab_storage) <psymbol_cache>: Now a bcache.
12055 (psymbol_bcache_init, psymbol_bcache_free)
12056 (psymbol_bcache_get_bcache): Don't declare.
12057 * psymtab.c (struct psymbol_bcache): Remove.
12058 (psymtab_storage::psymtab_storage): Update.
12059 (psymtab_storage::~psymtab_storage): Update.
12060 (psymbol_bcache_init, psymbol_bcache_free)
12061 (psymbol_bcache_get_bcache, psymbol_bcache_full): Remove.
12062 (add_psymbol_to_bcache): Update.
12063 (allocate_psymtab): Update.
12064 * objfiles.h (struct objfile_per_bfd_storage) <filename_cache,
12065 macro_cache>: No longer pointers.
12066 * objfiles.c (get_objfile_bfd_data): Don't call bcache_xmalloc.
12067 (free_objfile_per_bfd_storage): Don't call bcache_xfree.
12068 * macrotab.c (macro_bcache): Update.
12069 * macroexp.c: Don't include bcache.h.
12070 * gdbtypes.c (check_types_worklist): Update.
12071 (types_deeply_equal): Remove TRY/CATCH. Update.
12072 * elfread.c (elf_symtab_read): Update.
12073 * dwarf2read.c: Don't include bcache.h.
12074 * buildsym.c (buildsym_compunit::get_macro_table): Update.
12075 * bcache.h (bcache, bcache_full, bcache_xffree, bcache_xmalloc)
12076 (print_bcache_statistics, bcache_memory_used): Don't declare.
12077 (struct bcache): Move from bcache.c. Add constructor, destructor,
12078 methods. Rename all data members.
12079 * bcache.c (struct bcache): Move to bcache.h.
12080 (bcache::expand_hash_table): Rename from expand_hash_table.
12081 (bcache): Remove.
12082 (bcache::insert): Rename from bcache_full.
12083 (bcache::compare): Rename from bcache_compare.
12084 (bcache_xmalloc): Remove.
12085 (bcache::~bcache): Rename from bcache_xfree.
12086 (bcache::print_statistics): Rename from print_bcache_statistics.
12087 (bcache::memory_used): Rename from bcache_memory_used.
12088
fe726667
PA
120892019-03-07 Pedro Alves <palves@redhat.com>
12090
12091 * infrun.c (normal_stop): Also check for
12092 TARGET_WAITKIND_NO_RESUMED before referring to inferior_thread().
12093
7584bb30
AB
120942019-03-07 Andrew Burgess <andrew.burgess@embecosm.com>
12095
12096 * f-lang.c (value_from_host_double): Moved to...
12097 * value.c (value_from_host_double): ...here.
12098 * value.h (value_from_host_double): Declare.
12099 * guile/scm-math.c (vlscm_convert_typed_number): Use
12100 value_from_host_double.
12101 (vlscm_convert_number): Likewise.
12102 * guile/scm-value.c (gdbscm_value_to_real): Likewise.
12103 * python/py-value.c (convert_value_from_python): Likewise.
12104
a7b1986e
TT
121052019-03-06 Tom Tromey <tom@tromey.com>
12106
12107 * gcore.c (write_gcore_file): Use SCOPE_EXIT.
12108
0ccf4211
TT
121092019-03-06 Tom Tromey <tom@tromey.com>
12110
12111 * utils.h (free_current_contents): Don't declare.
12112 * utils.c (free_current_contents): Remove.
12113
fe7b42e5
TT
121142019-03-06 Tom Tromey <tom@tromey.com>
12115
12116 * top.c (quit_force): Update.
12117 * main.c (captured_command_loop): Update.
12118 * common/new-op.c (operator new): Update.
12119 * common/common-exceptions.c (struct catcher)
12120 <save_cleanup_chain>: Remove member.
12121 (exceptions_state_mc_init): Update.
12122 (exception_try_scope_entry): Return nullptr.
12123 (exception_try_scope_exit, exception_rethrow)
12124 (throw_exception_sjlj, throw_exception_cxx): Update.
12125 * common/cleanups.h (make_cleanup, make_cleanup_dtor)
12126 (all_cleanups, do_cleanups, discard_cleanups)
12127 (discard_final_cleanups, save_cleanups, save_final_cleanups)
12128 (restore_cleanups, restore_final_cleanups): Don't declare.
12129 (do_final_cleanups): Remove parameter.
12130 * common/cleanups.c (cleanup_chain, make_cleanup)
12131 (make_cleanup_dtor, all_cleanups, do_cleanups)
12132 (discard_my_cleanups, discard_cleanups)
12133 (discard_final_cleanups, save_my_cleanups, save_cleanups)
12134 (save_final_cleanups, restore_my_cleanups, restore_cleanups)
12135 (null_cleanup): Remove.
12136 (do_final_cleanups): Remove parameter.
12137
c6321f19
TT
121382019-03-06 Tom Tromey <tom@tromey.com>
12139
12140 * remote.c (remote_target::remote_parse_stop_reply): Use
12141 unique_xmalloc_ptr.
12142
61b30099
TT
121432019-03-06 Tom Tromey <tom@tromey.com>
12144
12145 * stabsread.c (struct stabs_field_info): Rename from field_info.
12146 <list, fnlist>: Add initializers.
12147 <obstack>: New member.
12148 (read_member_functions, read_struct_fields, read_baseclasses):
12149 Allocate on obstack. Don't use cleanups.
12150 (read_one_struct_field, read_member_functions, read_struct_fields)
12151 (read_baseclasses, read_tilde_fields, attach_fn_fields_to_type)
12152 (attach_fields_to_type, read_cpp_abbrev, read_member_functions)
12153 (read_struct_type): Update.
12154
6cceac94
TT
121552019-03-06 Tom Tromey <tom@tromey.com>
12156
12157 * nat/linux-namespaces.c (linux_mntns_access_fs): Use SCOPE_EXIT.
12158 * common/filestuff.h (make_cleanup_close): Don't declare.
12159 * common/filestuff.c (do_close_cleanup, make_cleanup_close):
12160 Remove.
12161
72412762
TT
121622019-03-06 Tom Tromey <tom@tromey.com>
12163
12164 * solib-aix.c: Use make_scope_exit.
12165
2b6ff1c0
TT
121662019-03-06 Tom Tromey <tom@tromey.com>
12167
12168 * solib-svr4.c (svr4_parse_libraries, svr4_current_sos_direct):
12169 Use make_scope_exit.
12170
d01c5877
TT
121712019-03-06 Tom Tromey <tom@tromey.com>
12172
12173 * solib-svr4.c (disable_probes_interface): Remove parameter.
12174 (svr4_handle_solib_event): Use make_scope_exit.
12175
32603266
TT
121762019-03-06 Tom Tromey <tom@tromey.com>
12177
12178 * remote.c (struct stop_reply_deleter): Remove.
12179 (stop_reply_up): Update.
12180 (struct stop_reply): Derive from notif_event. Don't typedef.
12181 <regcache>: Now a std::vector.
12182 (stop_reply_xfree): Remove.
12183 (stop_reply::~stop_reply): Rename from stop_reply_dtr.
12184 (remote_notif_stop_alloc_reply): Return a unique_ptr. Use new.
12185 (remote_target::discard_pending_stop_replies): Use delete.
12186 (remote_target::remote_parse_stop_reply): Update.
12187 (remote_target::process_stop_reply): Update.
12188 * remote-notif.h (struct notif_event): Add virtual destructor.
12189 Remove "dtr" member.
12190 (struct notif_client) <alloc_event>: Return a unique_ptr.
12191 (notif_event_xfree): Don't declare.
12192 (notif_event_up): New typedef.
12193 * remote-notif.c (remote_notif_ack, remote_notif_parse): Update.
12194 (notif_event_xfree, do_notif_event_xfree): Remove.
12195 (remote_notif_state_xfree): Update.
12196
9799571e
TT
121972019-03-06 Tom Tromey <tom@tromey.com>
12198
12199 * infrun.c (displaced_step_clear_cleanup): Now a
12200 forward_scope_exit type.
12201 (displaced_step_prepare_throw): Update.
12202 (displaced_step_fixup): Update.
12203
09e3c4ca
TT
122042019-03-06 Tom Tromey <tom@tromey.com>
12205
12206 * inferior.h (class inferior): Update comment.
12207 * gdbthread.h (class thread_info): Update comment.
12208
e2a03548
TT
122092019-03-06 Joel Brobecker <brobecker@adacore.com>
12210 Tom Tromey <tom@tromey.com>
12211
12212 * stabsread.h (struct stab_section_list): Remove.
12213 (coffstab_build_psymtabs): Update.
12214 * dbxread.c (symbuf_sections): Now a std::vector.
12215 (sect_idx): New global.
12216 (fill_symbuf): Update.
12217 (coffstab_build_psymtabs): Change type of stabsects parameter.
12218 Update.
12219 * coffread.c (struct coff_symfile_info) <stabsects>: Now a
12220 std::vector.
12221 (linetab, linetab_offset, linetab_size, stringtab): Move earlier.
12222 (coff_locate_sections): Update.
12223 (coff_symfile_read): Remove cleanups. Update.
12224 (init_stringtab): Add storage parameter.
12225 (free_stringtab, free_stringtab_cleanup): Remove.
12226 (init_lineno): Add storage parameter.
12227 (free_linetab, free_linetab_cleanup): Remove.
12228
b7e60d85
PA
122292019-03-06 Pedro Alves <palves@redhat.com>
12230
12231 * linux-fork.c (fork_info::clobber_regs): Delete.
12232 (fork_load_infrun_state): Remove reference to 'clobber_regs'.
12233 (fork_save_infrun_state): Remove 'clobber_regs' parameter. Update
12234 comment. Adjust.
12235 (scoped_switch_fork_info::scoped_switch_fork_info)
12236 (checkpoint_command, linux_fork_context): Adjust
12237 fork_save_infrun_state calls.
12238
e52c971f
PA
122392019-03-06 Pedro Alves <palves@redhat.com>
12240
12241 * linux-fork.c (inf_has_multiple_thread_cb): Delete.
12242 (inf_has_multiple_threads): Return 'bool' and rewrite using
12243 inferior_info::threads().
12244
06974e6c
PA
122452019-03-06 Pedro Alves <palves@redhat.com>
12246
12247 * linux-fork.c: Include <list>.
12248 (fork_list): Now a std::list instance.
12249 (fork_info): Add ctor, dtor, and in-class initialize all fields.
12250 (forks_exist_p, find_last_fork): Adjust.
12251 (new_fork): Delete.
12252 (one_fork_p): New.
12253 (add_fork): Adjust.
12254 (free_fork): Delete, folded into fork_info::~fork_info().
12255 (delete_fork, find_fork_ptid, find_fork_id, find_fork_pid):
12256 Adjust.
12257 (init_fork_list): Delete.
12258 (linux_fork_killall, linux_fork_mourn_inferior)
12259 (linux_fork_detach, info_checkpoints_command): Adjust.
12260 (_initialize_linux_fork): No longer call init_fork_list.
12261
72f31aea
PA
122622019-03-06 Pedro Alves <palves@redhat.com>
12263
12264 * linux-fork.c (new_fork): New, split out of ...
12265 (add_fork): ... this. Return void. Move "first fork" special
12266 case from here, to ...
12267 (checkpoint_command): ... here.
12268 * linux-linux.h (add_fork): Return void.
12269
efbecbc1
AB
122702019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12271
12272 * f-exp.y (direct_abs_decl): Handle TYPE*SIZE type names.
12273
0841c79a
AB
122742019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12275 Chris January <chris.january@arm.com>
12276 David Lecomber <david.lecomber@arm.com>
12277
12278 * f-exp.y: New token, UNOP_INTRINSIC.
12279 (exp): New pattern using UNOP_INTRINSIC token.
12280 (f77_keywords): Add 'abs' keyword.
12281 * f-lang.c: Add 'target-float.h' and 'math.h' includes.
12282 (value_from_host_double): New function.
12283 (evaluate_subexp_f): Support UNOP_ABS.
12284
4a270568
AB
122852019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12286
12287 * f-lang.c (build_fortran_types): Use TYPE_CODE_CHAR for character
12288 types.
12289
067630bd
AB
122902019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12291
12292 * f-exp.y (convert_to_kind_type): Handle integer (kind=8).
12293 * f-lang.c (build_fortran_types): Setup builtin_integer_s8.
12294 * f-lang.h (struct builtin_f_type): Add builtin_integer_s8 field.
12295
3be47f7a
AB
122962019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12297
12298 * f-exp.y (convert_to_kind_type): Handle more type kinds.
12299
4d00f5d8
AB
123002019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12301 Chris January <chris.january@arm.com>
12302
12303 * expprint.c (dump_subexp_body_standard): Support UNOP_KIND.
12304 * f-exp.y: Define 'KIND' token.
12305 (exp): New pattern for KIND expressions.
12306 (ptype): Handle types with a kind extension.
12307 (direct_abs_decl): Extend to spot kind extensions.
12308 (f77_keywords): Add 'kind' to the list.
12309 (push_kind_type): New function.
12310 (convert_to_kind_type): New function.
12311 * f-lang.c (evaluate_subexp_f): Support UNOP_KIND.
12312 * parse.c (operator_length_standard): Likewise.
12313 * parser-defs.h (enum type_pieces): Add tp_kind.
12314 * std-operator.def: Add UNOP_KIND.
12315
e454224f
AB
123162019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12317
12318 * f-exp.y (f_parse): Set yydebug.
12319
9dad4a58
AB
123202019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12321
12322 * f-lang.c (evaluate_subexp_f): New function.
12323 (exp_descriptor_f): New global.
12324 (f_language_defn): Use exp_descriptor_f instead of
12325 exp_descriptor_standard.
12326
c8f91604
AB
123272019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12328
12329 * f-exp.y (struct token): Add comments.
12330 (dot_ops): Remove uppercase versions and the end marker.
12331 (f77_keywords): Likewise.
12332 (yylex): Use ARRAY_SIZE to iterate over dot_ops, assert all
12333 entries in the dot_ops array are case insensitive, and use
12334 strncasecmp to compare strings. Also some whitespace cleanup in
12335 this area. Similar for the f77_keywords array, except entries in
12336 this list might be case sensitive.
12337
dd9f2c76
AB
123382019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12339
12340 * f-exp.y (struct f77_boolean_val): Add comments.
12341 (boolean_values): Remove uppercase versions, and end marker.
12342 (yylex): Use ARRAY_SIZE for iterating over boolean_values array,
12343 and use strncasecmp to achieve case insensitivity. Additionally,
12344 perform whitespace cleanup around this code.
12345
67a3048c
TT
123462019-03-06 Tom Tromey <tromey@adacore.com>
12347
12348 * remote-sim.c (gdbsim_target_open): Use result of
12349 gdb_argv::release.
12350
aa3cfbda
RB
123512019-03-06 Richard Bunt <richard.bunt@arm.com>
12352 Dirk Schubert <dirk.schubert@arm.com>
12353 Chris January <chris.january@arm.com>
12354
12355 * eval.c (evaluate_subexp_standard): Call Fortran argument
12356 wrapping logic.
12357 * f-lang.c (struct value): A value which can be passed into a
12358 Fortran function call.
12359 (fortran_argument_convert): Wrap Fortran arguments in a pointer
12360 where appropriate.
12361 (struct type): Value ready for a Fortran function call.
12362 (fortran_preserve_arg_pointer): Undo check_typedef, the pointer
12363 is needed.
12364 * f-lang.h (fortran_argument_convert): Declaration.
12365 (fortran_preserve_arg_pointer): Declaration.
12366 * infcall.c (value_arg_coerce): Call Fortran argument logic.
12367
ea38e5df
TT
123682019-03-05 Tom Tromey <tromey@adacore.com>
12369
12370 * python/py-prettyprint.c (print_string_repr): Remove #if.
12371 * python/py-utils.c (unicode_to_encoded_string): Remove #if.
12372
06b5b831
TT
123732019-03-05 Tom Tromey <tromey@adacore.com>
12374
12375 * target.c (the_dummy_target): Move later. Change type to
12376 "dummy_target".
12377 (initialize_targets): Don't initialize the_dummy_target.
12378
edbd9e45
TT
123792019-03-05 Tom Tromey <tromey@adacore.com>
12380
12381 * gdb_bfd.c (gdb_bfd_fdopenr): Remove.
12382 * gdb_bfd.h (gdb_bfd_fdopenr): Don't declare.
12383
c119e040
TT
123842019-03-05 Tom Tromey <tromey@adacore.com>
12385
12386 * windows-nat.c (windows_nat_target::attach)
12387 (windows_nat_target::detach): Don't call gdb_flush.
12388 * valprint.c (generic_val_print, val_print, val_print_string):
12389 Don't call gdb_flush.
12390 * utils.c (defaulted_query): Don't call gdb_flush.
12391 * typeprint.c (print_type_scalar): Don't call gdb_flush.
12392 * target.c (target_announce_detach): Don't call gdb_flush.
12393 * sparc64-tdep.c (adi_print_versions): Don't call gdb_flush.
12394 * remote.c (extended_remote_target::attach): Don't call
12395 gdb_flush.
12396 * procfs.c (procfs_target::detach): Don't call gdb_flush.
12397 * printcmd.c (do_examine): Don't call gdb_flush.
12398 (info_display_command): Don't call gdb_flush.
12399 * p-valprint.c (pascal_val_print): Don't call gdb_flush.
12400 * nto-procfs.c (nto_procfs_target::attach): Don't call gdb_flush.
12401 * memattr.c (info_mem_command): Don't call gdb_flush.
12402 * mdebugread.c (mdebug_build_psymtabs): Don't call gdb_flush.
12403 * m2-valprint.c (m2_val_print): Don't call gdb_flush.
12404 * infrun.c (follow_exec, handle_command): Don't call gdb_flush.
12405 * inf-ptrace.c (inf_ptrace_target::attach): Don't call gdb_flush.
12406 * hppa-tdep.c (unwind_command): Don't call gdb_flush.
12407 * gnu-nat.c (gnu_nat_target::attach): Don't call gdb_flush.
12408 (gnu_nat_target::detach): Don't call gdb_flush.
12409 * f-valprint.c (f_val_print): Don't call gdb_flush.
12410 * darwin-nat.c (darwin_nat_target::attach): Don't call gdb_flush.
12411 * cli/cli-script.c (read_command_lines): Don't call gdb_flush.
12412 * cli/cli-cmds.c (shell_escape, print_disassembly): Don't call
12413 gdb_flush.
12414 * c-valprint.c (c_val_print): Don't call gdb_flush.
12415 * ada-valprint.c (ada_print_scalar): Don't call gdb_flush.
12416
895dafa6
TT
124172019-03-05 Tom Tromey <tromey@adacore.com>
12418
12419 * varobj.c (update_dynamic_varobj_children): Update.
12420 (install_default_visualizer): Use reset, not release.
12421 * value.c (set_internalvar): Update.
12422 * dwarf2loc.c (value_of_dwarf_reg_entry): Update.
12423 * common/gdb_ref_ptr.h (class ref_ptr) <release>: Add
12424 ATTRIBUTE_UNUSED_RESULT.
12425
88a774b9
TT
124262019-03-05 Tom Tromey <tromey@adacore.com>
12427
12428 * remote.c (class scoped_remote_fd) <release>: Add
12429 ATTRIBUTE_UNUSED_RESULT.
12430
4e4a8b93
TT
124312019-03-05 Tom Tromey <tromey@adacore.com>
12432
12433 * macroexp.c (struct macro_buffer) <release>: Add
12434 ATTRIBUTE_UNUSED_RESULT.
12435
083eef1f
TT
124362019-03-05 Tom Tromey <tromey@adacore.com>
12437
12438 * nat/linux-btrace.c (linux_enable_bts, linux_enable_pt): Update.
12439 * common/scoped_mmap.h (class scoped_mmap) <release>: Add
12440 ATTRIBUTE_UNUSED_RESULT.
12441
3cabd438
TT
124422019-03-05 Tom Tromey <tromey@adacore.com>
12443
12444 * common/scoped_fd.h (class scoped_fd) <release>: Add
12445 ATTRIBUTE_UNUSED_RESULT.
12446
41e3300a
TT
124472019-03-05 Tom Tromey <tromey@adacore.com>
12448
12449 * parser-defs.h (struct parser_state) <release>: Add
12450 ATTRIBUTE_UNUSED_RESULT.
12451
18cb7c9f
TT
124522019-03-05 Tom Tromey <tromey@adacore.com>
12453
12454 * utils.h (class gdb_argv) <release>: Add
12455 ATTRIBUTE_UNUSED_RESULT.
12456 * common/common-defs.h (ATTRIBUTE_UNUSED_RESULT): Define.
12457
41fa577f
EZ
124582019-03-02 Eli Zaretskii <eliz@gnu.org>
12459
a6a4b2c6
EZ
12460 * xml-syscall.c (xml_list_syscalls_by_group): Drop 'struct' from
12461 for-loop range, to avoid compiler warnings.
12462
12463 * tui/tui.c (tui_enable) [__MINGW32__]: Don't declare 'cap', to
12464 avoid compiler warnings about unused variables.
12465
742a7df5
EZ
12466 * NEWS: Mention end of support for native debugging on MS-Windows
12467 before XP.
12468
41fa577f
EZ
12469 PR gdb/24292
12470 * common/netstuff.c:
12471 * gdbserver/gdbreplay.c
12472 * gdbserver/remote-utils.c:
12473 * ser-tcp.c:
12474 * unittests/parse-connection-spec-selftests.c [USE_WIN32API]:
12475 Include ws2tcpip.h instead of wsiapi.h and winsock2.h. Redefine
12476 _WIN32_WINNT to 0x0501 if defined to a smaller value, as
12477 'getaddrinfo' and 'freeaddrinfo' were not available before
12478 Windows XP, and mingw.org's MinGW headers by default define
12479 _WIN32_WINNT to 0x500.
12480
827f438f
GB
124812019-03-01 Gary Benson <gbenson@redhat.com>
12482
12483 * coffread.c (coff_start_symtab): Remove unnecessary xstrdup.
12484
92137da0
RO
124852019-02-28 Brian Vandenberg <phantall@gmail.com>
12486 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
12487
12488 PR gdb/8527
12489 * procfs.c (proc_wait_for_stop): Wrap write of PCWSTOP in
12490 set_sigint_trap, clear_sigint_trap.
12491
799efbe8
PW
124922019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12493
12494 * target.c (target_detach): Clear the regcache and the
12495 frame cache.
12496
8ed25214
PA
124972019-02-27 Pedro Alves <palves@redhat.com>
12498
12499 * utils.c (set_screen_size): When we cap the height/width sizes,
12500 tweak the corresponding command variable to show "unlimited":
12501
23031e31
SJ
125022019-02-27 Saagar Jha <saagar@saagarjha.com>
12503 Pedro Alves <palves@redhat.com>
12504
12505 * utils.c (set_screen_size): Reduce "infinite" rows and columns
12506 before calling rl_set_screen_size.
12507
6c28e44a
TT
125082019-02-27 Tom Tromey <tromey@adacore.com>
12509
12510 * configure.ac (HAVE_LIBPYTHON2_4, HAVE_LIBPYTHON2_5): Never
12511 define.
12512 * python/py-value.c: Remove Python 2.4 workaround.
12513 * python/py-utils.c (gdb_pymodule_addobject): Remove Python 2.4
12514 workaround.
12515 * python/py-type.c (convert_field, gdbpy_initialize_types): Remove
12516 Python 2.4 workaround.
12517 * python/python-internal.h: Remove Python 2.4 comment.
12518 (Py_ssize_t): Don't define.
12519 (PyVarObject_HEAD_INIT, Py_TYPE): Don't define.
12520 (gdb_Py_DECREF): Remove Python 2.4 workaround.
12521 (gdb_PyObject_GetAttrString, PyObject_GetAttrString): Remove.
12522 (gdb_PyObject_HasAttrString, PyObject_HasAttrString): Remove.
12523 * python/python.c (do_start_initialization): Remove Python 2.4
12524 workaround.
12525 * python/py-prettyprint.c (class dummy_python_frame): Remove.
12526 (print_children): Remove Python 2.4 workaround.
12527 * python/py-inferior.c (buffer_procs): Remove Python 2.4
12528 workaround.
12529 (CHARBUFFERPROC_NAME): Remove.
12530 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Remove
12531 Python 2.4 workaround.
12532
2c3fc25d 125332019-02-27 Kevin Buettner <kevinb@redhat.com>
799efbe8 12534
2c3fc25d
KB
12535 * NEWS: Note minimum Python version.
12536
6ca62222
KB
125372019-02-27 Kevin Buettner <kevinb@redhat.com>
12538
12539 * python/py-inferior.c (infpy_write_memory): Remove non-IS_PY3K
12540 code from these functions. Remove corresponding ifdefs. Use
12541 Py_buffer_up instead of explicit calls to PyBuffer_Release.
12542 Remove gotos and target of gotos.
12543 (infpy_search_memory): Likewise.
12544
f4bc7d2c
AB
125452019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12546
12547 * gdb/hppa-tdep.c (hppa_dummy_id): Delete.
12548 (hppa_gdbarch_init): Don't register deleted functions with
12549 gdbarch.
12550
9734a586
AB
125512019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12552
12553 * gdb/h8300-tdep.c (h8300_unwind_pc): Delete.
12554 (h8300_unwind_sp): Delete.
12555 (h8300_dummy_id): Delete.
12556 (h8300_gdbarch_init): Don't register deleted functions with
12557 gdbarch.
12558
68b867f3
AB
125592019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12560
12561 * gdb/ft32-tdep.c (ft32_dummy_id): Delete.
12562 (ft32_unwind_pc): Delete.
12563 (ft32_unwind_sp): Delete.
12564 (ft32_gdbarch_init): Don't register deleted functions with
12565 gdbarch.
12566
2fbe7ad0
AB
125672019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12568
12569 * gdb/frv-tdep.c (frv_dummy_id): Delete.
12570 (frv_unwind_pc): Delete.
12571 (frv_unwind_sp): Delete.
12572 (frv_gdbarch_init): Don't register deleted functions with
12573 gdbarch.
12574
76055cbe
AB
125752019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12576
12577 * gdb/riscv-tdep.c (riscv_dummy_id): Delete.
12578 (riscv_unwind_pc): Delete.
12579 (riscv_unwind_sp): Delete.
12580 (riscv_gdbarch_init): Don't register deleted functions with
12581 gdbarch.
12582
4133e5a1
AB
125832019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12584
12585 * gdb/csky-tdep.c (csky_dummy_id): Delete.
12586 (csky_unwind_pc): Delete.
12587 (csky_unwind_sp): Delete.
12588 (csky_gdbarch_init): Don't register deleted functions with
12589 gdbarch.
12590
8010f576
AB
125912019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12592
12593 * gdb/cris-tdep.c (cris_dummy_id): Delete.
12594 (cris_unwind_pc): Delete.
12595 (cris_unwind_sp): Delete.
12596 (cris_gdbarch_init): Don't register deleted functions with
12597 gdbarch.
12598
b56bf084
AB
125992019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12600
12601 * gdb/bfin-tdep.c (bfin_dummy_id): Delete.
12602 (bfin_unwind_pc): Delete.
12603 (bfin_gdbarch_init): Don't register deleted functions with gdbarch.
12604
a19a650f
AB
126052019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12606
12607 * gdb/arm-tdep.c (arm_dummy_id): Delete.
12608 (arm_unwind_pc): Delete.
12609 (arm_unwind_sp): Delete.
12610 (arm_gdbarch_init): Don't register deleted functions with gdbarch.
12611
f8278c3c
AB
126122019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12613
12614 * gdb/arc-tdep.c (arc_dummy_id): Delete.
12615 (arc_unwind_pc): Delete.
12616 (arc_unwind_sp): Delete.
12617 (arc_gdbarch_init): Don't register deleted functions with gdbarch.
12618
480e46cf
AB
126192019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12620
12621 * gdb/alpha-tdep.c (alpha_dummy_id): Delete.
12622 (alpha_unwind_pc): Delete.
12623 (alpha_gdbarch_init): Don't register deleted functions with
12624 gdbarch.
12625
7a995095
AB
126262019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12627
12628 * gdb/aarch64-tdep.c (aarch64_dummy_id): Delete.
12629 (aarch64_unwind_pc): Delete.
12630 (aarch64_unwind_sp): Delete.
12631 (aarch64_gdbarch_init): Don't register deleted functions with
12632 gdbarch.
12633
bf9a735e
AB
126342019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12635
12636 * gdbtypes.c (type_align): Don't consider static members when
12637 computing structure alignment.
12638
5561fc30
AB
126392019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12640
12641 * arc-tdep.c (arc_type_align): Provide alignment for basic types,
12642 return 0 for other types.
12643 * arch-utils.c (default_type_align): Always return 0.
12644 * gdbarch.h: Regenerate.
12645 * gdbarch.sh (type_align): Extend comment.
12646 * gdbtypes.c (type_align): Add additional comments, always call
12647 gdbarch_type_align before applying the default rules.
12648 * i386-tdep.c (i386_type_align): Return 0 as the default rule,
12649 generic code will then apply a suitable default.
12650 * nios2-tdep.c (nios2_type_align): Provide alignment for basic
12651 types, return 0 for other types.
12652
9335e75a
JB
126532019-02-27 Joel Brobecker <brobecker@adacore.com>
12654
12655 * NEWS: Create a new section for the next release branch.
12656 Rename the section of the current branch, now that it has
12657 been cut.
12658
3d34d8de
JB
126592019-02-27 Joel Brobecker <brobecker@adacore.com>
12660
12661 GDB 8.3 branch created (143420fb0d5ae54323ba9953f0818c194635228d):
12662 * version.in: Bump version to 8.3.50.DATE-git.
12663
143420fb
SM
126642019-02-26 Simon Marchi <simon.marchi@efficios.com>
12665
12666 * aix-thread.c (ptid_cmp): Remove unused variable.
12667 (get_signaled_thread): Likewise.
12668 (store_regs_user_thread): Likewise.
12669 (store_regs_kernel_thread): Likewise.
12670 (fetch_regs_kernel_thread): Remove shadowed variable.
12671
172fb711
AB
126722019-02-26 Andrew Burgess <andrew.burgess@embecosm.com>
12673
12674 * features/riscv/32bit-cpu.xml: Add register numbers.
12675 * features/riscv/32bit-fpu.c: Regenerate.
12676 * features/riscv/32bit-fpu.xml: Add register numbers.
12677 * features/riscv/64bit-cpu.xml: Add register numbers.
12678 * features/riscv/64bit-fpu.c: Regenerate.
12679 * features/riscv/64bit-fpu.xml: Add register numbers.
12680
26c89782
KB
126812019-02-26 Kevin Buettner <kevinb@redhat.com>
12682
af54ade9 12683 * NEWS: Mention two argument form of gdb.Value constructor.
fe07eca5
KB
12684 * python/py-value.c (convert_buffer_and_type_to_value): New
12685 function.
12686 (valpy_new): Parse arguments via gdb_PyArg_ParseTupleAndKeywords.
12687 Add support for handling an optional second argument. Call
12688 convert_buffer_and_type_to_value as appropriate.
26c89782
KB
12689 * python/python-internal.h (Py_buffer_deleter): New struct.
12690 (Py_buffer_up): New typedef.
12691
0f58c9e8
JB
126922019-02-25 John Baldwin <jhb@FreeBSD.org>
12693
12694 * dwarf2read.c (dwarf2_get_dwz_file): Reset dwz_bfd to nullptr
12695 instead of releasing ownership.
12696
0a0f4c01
JR
126972019-02-25 Jordan Rupprecht <rupprecht@google.com>
12698
12699 * dwarf2read.c (open_and_init_dwp_file): Call
12700 elf_numsections instead of bfd_count_sections to initialize
12701 dwp_file->num_sections.
12702
cd5a152c
TT
127032019-02-25 Tom Tromey <tromey@adacore.com>
12704
12705 * solib-darwin.c (darwin_get_dyld_bfd): Don't release dyld_bfd.
12706
8a6a8513
SDJ
127072019-02-23 Sergio Durigan Junior <sergiodj@redhat.com>
12708
12709 * gcore.in: Add '--readnever' option when invoking GDB.
12710
04dcda9c
SM
127112019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
12712
12713 * MAINTAINERS: Update my email address.
12714
07bc701d
SM
127152019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
12716
12717 * build-id.c (build_id_to_debug_bfd_1): New function.
12718 (build_id_to_debug_bfd): Look for separate debug file in
12719 sysroot.
12720
c6f4a5d0
AB
127212019-02-22 Andrew Burgess <andrew.burgess@embecosm.com>
12722
12723 * gdbarch.sh: Update the copyright year range that is placed into
12724 generated files.
12725
9600246d
KS
127262019-02-22 Keith Seitz <keiths@redhat.com>
12727
12728 PR symtab/23853
12729 * linespec.c (create_sals_line_offset): Search for the default
12730 symtab's filename instead of its fullname.
12731
7557a514
AH
127322019-02-21 Alan Hayward <alan.hayward@arm.com>
12733
12734 * NEWS: Update style defaults.
12735
ee2bcb0c
AH
127362019-02-21 Alan Hayward <alan.hayward@arm.com>
12737
12738 * main.c (captured_main_1): Disable styling in batch mode.
12739
0c95f9ed
TT
127402019-02-20 Tom Tromey <tom@tromey.com>
12741
12742 * symtab.c (symtab_symbol_info): Fix typos.
12743
c763b894
TT
127442019-02-20 Tom Tromey <tromey@adacore.com>
12745
12746 * findcmd.c (_initialize_mem_search): Use upper case for
12747 metasyntactic variables.
12748
0ef8a082
AH
127492019-02-20 Alan Hayward <alan.hayward@arm.com>
12750
12751 * aarch64-tdep.c (aarch64_add_reggroups): New function.
12752 (aarch64_gdbarch_init): Call aarch64_add_reggroups.
12753
6caa91b6
SM
127542019-02-19 Simon Marchi <simon.marchi@polymtl.ca>
12755
12756 * top.h (source_file_name): Change to std::string.
12757 * top.c (source_file_name): Likewise.
12758 (command_line_input): Adjust.
12759 * cli/cli-script.c (script_from_file): Adjust.
12760
98814c6c
TT
127612019-02-19 Tom Tromey <tromey@adacore.com>
12762
12763 * ravenscar-thread.c
12764 (ravenscar_thread_target::update_thread_list): Don't call
12765 ada_build_task_list.
12766 * ada-lang.h (ada_build_task_list): Don't declare.
12767 * ada-tasks.c (struct ada_tasks_inferior_data)
12768 <task_list_valid_p>: Now bool.
12769 (read_known_tasks, ada_task_list_changed)
12770 (ada_tasks_invalidate_inferior_data): Update.
12771 (read_known_tasks_array): Return bool.
12772 (read_known_tasks_list): Likewise.
12773 (read_known_tasks): Return void.
12774 (ada_build_task_list): Now static.
12775
70cd633e
AB
127762019-02-18 Andrew Burgess <andrew.burgess@embecosm.com>
12777
12778 * gdbtypes.c (type_align): Allow alignment of TYPE_CODE_METHODPTR
12779 and TYPE_CODE_MEMBERPTR to be overridden by the gdbarch.
12780
040b3e95
PW
127812019-02-18 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12782
12783 * ada-task.c (_initialize_tasks): Use 'with_cleanup' register
12784 variant for ada_tasks_pspace_data_handle and
12785 ada_tasks_inferior_data_handle.
12786 (ada_tasks_pspace_data_cleanup): New function.
12787 (ada_tasks_inferior_data_cleanup): New function.
12788
9409233b
TT
127892019-02-17 Tom Tromey <tom@tromey.com>
12790
12791 * macrotab.h (macro_source_fullname): Return a std::string.
12792 * macrotab.c (macro_include, check_for_redefinition)
12793 (macro_undef, macro_lookup_definition, foreach_macro)
12794 (foreach_macro_in_scope): Update.
12795 (macro_source_fullname): Return a std::string.
12796 * macrocmd.c (show_pp_source_pos): Update.
12797
6506371f
TT
127982019-02-17 Tom Tromey <tom@tromey.com>
12799
12800 * macrocmd.c (show_pp_source_pos): Style the file names.
12801
0c820d67
TT
128022019-02-17 Tom Tromey <tom@tromey.com>
12803
12804 PR tui/24197:
12805 * tui/tui-source.c (tui_set_source_content_nil): Rewrite.
12806
a0087920
TT
128072019-02-17 Tom Tromey <tom@tromey.com>
12808
12809 * ada-lang.c (user_select_syms): Use filtered printing.
12810 * utils.c (wrap_style): New global.
12811 (desired_style): Remove.
12812 (emit_style_escape): Add stream parameter.
12813 (set_output_style, reset_terminal_style, prompt_for_continue):
12814 Update.
12815 (flush_wrap_buffer): Only flush gdb_stdout.
12816 (wrap_here): Set wrap_style.
12817 (fputs_maybe_filtered): Clear the wrap buffer on exception. Don't
12818 treat escape sequences as a character. Change when wrap buffer is
12819 flushed.
12820 (fputs_styled): Do not set the output style when the default is
12821 requested.
12822 * ui-style.h (struct ui_file_style) <is_default>: New method.
12823 * source.c (print_source_lines_base): Emit escape sequences in one
12824 piece.
12825
75ba10dc
JB
128262019-02-17 Joel Brobecker <brobecker@adacore.com>
12827
12828 * gdbtypes.c (type_align): Handle TYPE_CODE_RANGE the same as
12829 integers and enumeration types.
12830
a2cd4f14
JB
128312019-02-17 Joel Brobecker <brobecker@adacore.com>
12832
12833 * ada-lang.c (standard_lookup): Use ada_lookup_encoded_symbol
12834 instead of lookup_symbol_in_language
12835 (do_exact_match): New function.
12836 (ada_get_symbol_name_matcher): Return do_exact_match when
12837 doing a verbatim match.
12838
485b851b
TT
128392019-02-15 Tom Tromey <tromey@adacore.com>
12840
12841 * ravenscar-thread.c (ravenscar_thread_target::resume)
12842 (ravenscar_thread_target::wait): Special case wildcard requests.
12843
0b790b1e
TT
128442019-02-15 Tom Tromey <tromey@adacore.com>
12845
12846 * ravenscar-thread.c (base_ptid): Remove.
12847 (struct ravenscar_thread_target) <close>: New method.
12848 <m_base_ptid>: New member.
12849 <update_inferior_ptid, active_task, task_is_currently_active,
12850 runtime_initialized>: Declare methods.
12851 <ravenscar_thread_target>: Add constructor.
12852 (ravenscar_thread_target::task_is_currently_active)
12853 (ravenscar_thread_target::update_inferior_ptid)
12854 (ravenscar_runtime_initialized): Rename. Now methods.
12855 (ravenscar_thread_target::resume, ravenscar_thread_target::wait)
12856 (ravenscar_thread_target::update_thread_list): Update.
12857 (ravenscar_thread_target::active_task): Now method.
12858 (ravenscar_thread_target::store_registers)
12859 (ravenscar_thread_target::prepare_to_store)
12860 (ravenscar_thread_target::prepare_to_store)
12861 (ravenscar_thread_target::mourn_inferior): Update.
12862 (ravenscar_inferior_created): Use "new" to create target.
12863 (ravenscar_thread_target::get_ada_task_ptid): Update.
12864 (_initialize_ravenscar): Don't initialize base_ptid.
12865 (ravenscar_ops): Remove global.
12866
dea57a62
TT
128672019-02-15 Tom Tromey <tromey@adacore.com>
12868
12869 * target.h (push_target): Declare new overload.
12870 * target.c (push_target): New overload, taking an rvalue reference.
12871 * remote.c (remote_target::open_1): Use push_target overload.
12872 * corelow.c (core_target_open): Use push_target overload.
12873
989f3c58
TT
128742019-02-15 Tom Tromey <tromey@adacore.com>
12875
12876 * ravenscar-thread.c (is_ravenscar_task)
12877 (ravenscar_task_is_currently_active): Return bool.
12878 (ravenscar_update_inferior_ptid, get_running_thread_msymbol)
12879 (_initialize_ravenscar): Remove "(void)".
12880 (has_ravenscar_runtime, ravenscar_runtime_initialized): Likewise.
12881 Return bool.
12882
6cbcc006
TT
128832019-02-15 Tom Tromey <tromey@adacore.com>
12884
12885 * ravenscar-thread.c (ravenscar_runtime_initializer)
12886 (has_ravenscar_runtime, get_running_thread_id)
12887 (ravenscar_thread_target::resume): Fix indentation.
12888
7657f14d
TT
128892019-02-15 Tom Tromey <tromey@adacore.com>
12890
12891 * sparc-ravenscar-thread.c (struct sparc_ravenscar_ops): Derive
12892 from ravenscar_arch_ops.
12893 (sparc_ravenscar_ops::fetch_registers)
12894 (sparc_ravenscar_ops::store_registers): Now methods.
12895 (sparc_ravenscar_prepare_to_store): Remove.
12896 (sparc_ravenscar_ops): Redefine.
12897 * ravenscar-thread.h (struct ravenscar_arch_ops): Add virtual
12898 methods and destructor. Remove members.
12899 * ravenscar-thread.c (ravenscar_thread_target::fetch_registers)
12900 (ravenscar_thread_target::store_registers)
12901 (ravenscar_thread_target::prepare_to_store): Update.
12902 * ppc-ravenscar-thread.c (ppc_ravenscar_generic_prepare_to_store):
12903 Remove.
12904 (struct ppc_ravenscar_powerpc_ops): Derive from
12905 ravenscar_arch_ops.
12906 (ppc_ravenscar_powerpc_ops::fetch_registers)
12907 (ppc_ravenscar_powerpc_ops::store_registers): Now methods.
12908 (ppc_ravenscar_powerpc_ops): Redefine.
12909 (struct ppc_ravenscar_e500_ops): Derive from ravenscar_arch_ops.
12910 (ppc_ravenscar_e500_ops::fetch_registers)
12911 (ppc_ravenscar_e500_ops::store_registers): Now methods.
12912 (ppc_ravenscar_e500_ops): Redefine.
12913 * aarch64-ravenscar-thread.c
12914 (aarch64_ravenscar_generic_prepare_to_store): Remove.
12915 (struct aarch64_ravenscar_ops): Derive from ravenscar_arch_ops.
12916 (aarch64_ravenscar_fetch_registers)
12917 (aarch64_ravenscar_store_registers): Now methods.
12918 (aarch64_ravenscar_ops): Redefine.
12919
5b6ea500
TT
129202019-02-15 Tom Tromey <tromey@adacore.com>
12921
12922 * ravenscar-thread.c (ravenscar_thread_target::stopped_by_sw_breakpoint)
12923 (ravenscar_thread_target::stopped_by_hw_breakpoint)
12924 (ravenscar_thread_target::stopped_by_watchpoint)
12925 (ravenscar_thread_target::stopped_data_address)
12926 (ravenscar_thread_target::core_of_thread): Use scoped_restore.
12927
e397fd39
TT
129282019-02-15 Tom Tromey <tromey@adacore.com>
12929
12930 * ravenscar-thread.c: Fix some typos.
12931
cc12f4a8
TT
129322019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12933 Tom Tromey <tromey@adacore.com>
12934
12935 * ada-lang.c (ada_exception_sal): Change addr_string to a
12936 std::string.
12937 (create_ada_exception_catchpoint): Update.
12938
5f486660
TT
129392019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12940 Tom Tromey <tromey@adacore.com>
12941
12942 * breakpoint.c (~bp_location): Rename from bp_location_dtor.
12943 (bp_location_ops): Remove.
12944 (base_breakpoint_allocate_location): Update.
12945 (free_bp_location): Update.
12946 * ada-lang.c (class ada_catchpoint_location)
12947 <ada_catchpoint_location>: Remove ops parameter.
12948 (ada_catchpoint_location_dtor): Remove.
12949 (ada_catchpoint_location_ops): Remove.
12950 (allocate_location_exception): Update.
12951 * breakpoint.h (struct bp_location_ops): Remove.
12952 (class bp_location) <bp_location>: Remove bp_location_ops
12953 parameter.
12954 <~bp_location>: Add destructor.
12955 <ops>: Remove.
12956
b671c7fb
TS
129572019-02-14 Thomas Schwinge <thomas@codesourcery.com>
12958 Pedro Alves <palves@redhat.com>
12959
12960 * remote.c (remote_target::remote_parse_stop_reply): Avoid using
12961 'PATH_MAX'.
12962
8071c5ce
DM
129632019-02-14 David Michael <fedora.dm0@gmail.com>
12964 Samuel Thibault <samuel.thibault@gnu.org>
12965 Thomas Schwinge <thomas@codesourcery.com>
12966
12967 * gnu-nat.c (S_proc_getmsgport_reply, S_proc_task2proc_reply)
12968 (S_proc_pid2proc_reply): Adjust to Hurd "proc" interface changes.
12969
b1041ae0
TS
129702019-02-14 Thomas Schwinge <thomas@codesourcery.com>
12971
924514e1
TS
12972 * gnu-nat.c (gnu_write_inferior, parse_int_arg, _parse_bool_arg)
12973 (check_empty): Use "const char *".
12974
c29ee8d4
TS
12975 * gnu-nat.c (gnu_nat_target::detach): Instead of
12976 'detach_inferior (pid)' call
12977 'detach_inferior (find_inferior_pid (pid))'.
12978
6c6ef69f
TS
12979 * configure.nat [gdb_host == i386gnu] (NATDEPFILES): Add
12980 'nat/fork-inferior.o'.
12981 * gnu-nat.c: #include "nat/fork-inferior.h".
12982
2d0a338c
TS
12983 * gnu-nat.c (gnu_nat_target::detach): Instead of
12984 'inf_child_maybe_unpush_target (ops)' call 'maybe_unpush_target'.
12985 * gnu-nat.h: #include "inf-child.h".
12986 * i386-gnu-nat.c (gnu_fetch_registers): Rename/move to
12987 'i386_gnu_nat_target::fetch_registers'.
12988 (gnu_store_registers): Rename/move to
12989 'i386_gnu_nat_target::store_registers'.
12990
cabb5f06
TS
12991 * config/i386/nm-i386gnu.h: Don't "#include" any files.
12992 * gnu-nat.h (mach_thread_info): New function.
12993 * gnu-nat.c (thread_takeover_sc_cmd): Use it.
12994
b1041ae0
TS
12995 * config/i386/nm-i386gnu.h (gnu_target_pid_to_str): Remove.
12996
2988d01e
KF
129972019-02-14 Frederic Konrad <konrad@adacore.com>
12998
12999 * riscv-rdep.c (riscv_type_alignment): Handle TYPE_CODE_RANGE.
13000
c559d709
JB
130012019-02-14 Joel Brobecker <brobecker@adacore.com>
13002
13003 * windows-nat.c (windows_add_thread): Add new parameter
13004 "main_thread_p" with default value set to false. Update
13005 function documentation as well as all callers.
13006 (windows_delete_thread): Likewise.
13007 (fake_create_process): Update call to windows_add_thread.
13008 (get_windows_debug_event) <CREATE_THREAD_DEBUG_EVENT>
13009 <CREATE_PROCESS_DEBUG_EVENT>: Likewise.
13010 <EXIT_THREAD_DEBUG_EVENT, EXIT_PROCESS_DEBUG_EVENT>: Update
13011 call to windows_delete_thread.
13012
007024cc
SM
130132019-02-13 Simon Marchi <simon.marchi@ericsson.com>
13014
13015 * MAINTAINERS: Add Andrew Burgess as global maintainer.
13016
f62318e9
JB
130172019-02-12 John Baldwin <jhb@FreeBSD.org>
13018
13019 * symfile.c (find_separate_debug_file): Use canonical path of
13020 sysroot with child_path instead of gdb_sysroot if it is valid.
13021
cd4b7848
JB
130222019-02-12 John Baldwin <jhb@FreeBSD.org>
13023
13024 * symfile.c (find_separate_debug_file): Use child_path to
13025 determine if an object file is under a sysroot.
13026
efac4bfe
JB
130272019-02-12 John Baldwin <jhb@FreeBSD.org>
13028
13029 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
13030 unittests/child-path-selftests.c.
13031 * common/pathstuff.c (child_path): New function.
13032 * common/pathstuff.h (child_path): New prototype.
13033 * unittests/child-path-selftests.c: New file.
13034
402d2bfe
JB
130352019-02-12 John Baldwin <jhb@FreeBSD.org>
13036
13037 * symfile.c (find_separate_debug_file): Look for separate debug
13038 files in debug directories under the sysroot.
13039
1ed9f74e
PW
130402019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13041
13042 * symtab.h (struct minimal_symbol data_p): New const method.
13043 (struct minimal_symbol text_p): Likewise.
13044 * symtab.c (output_source_filename): Use file name style
13045 to print file name.
13046 (print_symbol_info): Likewise.
13047 (print_msymbol_info): Use address style to print addresses.
13048 Use function name style to print executable text symbols.
13049 (expand_symtab_containing_pc): Use data_p.
13050 (find_pc_sect_compunit_symtab): Likewise.
13051
2636d81d
PW
130522019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13053
13054 * breakpoint.c (describe_other_breakpoints): Use address style
13055 to print addresses.
13056 (say_where): Likewise.
13057
ac8c53cc
PW
130582019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13059
13060 * ada-typeprint.c (print_func_type): Print function name
13061 style to print function name.
13062 * c-typeprint.c (c_print_type_1): Likewise.
13063
ea638c43
AH
130642019-02-11 Alan Hayward <alan.hayward@arm.com>
13065
13066 * aarch64-linux-tdep.c (aarch64_linux_get_syscall_number): Check
13067 for execve.
13068
ab759ca8
PW
130692019-02-10 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13070
13071 * c-exp.y (direct_abs_decl): Use emplace_back to record the
13072 type_stack.
13073
aff29d1c
JB
130742019-02-10 Joel Brobecker <brobecker@adacore.com>
13075
13076 * ada-varobj.c (ada_value_is_changeable_p): Add handling of
13077 TYPE_CODE_REF types.
13078
617126bc
JW
130792019-02-08 Jim Wilson <jimw@sifive.com>
13080
13081 * riscv-linux-tdep.c (riscv_linux_fregmap): New.
13082 (riscv_linux_fregset): New.
13083 (riscv_linux_iterate_over_regset_sections): Call cb for .reg2 section.
13084
46e3ed7f
TT
130852019-02-07 Tom Tromey <tom@tromey.com>
13086
13087 * thread.c (thread_cancel_execution_command): Update.
13088 * thread-fsm.h (struct thread_fsm): Add constructor, destructor,
13089 methods.
13090 (struct thread_fsm_ops): Remove.
13091 (thread_fsm_ctor, thread_fsm_delete, thread_fsm_clean_up)
13092 (thread_fsm_should_stop, thread_fsm_return_value)
13093 (thread_fsm_set_finished, thread_fsm_finished_p)
13094 (thread_fsm_async_reply_reason, thread_fsm_should_notify_stop):
13095 Don't declare.
13096 * mi/mi-interp.c (mi_on_normal_stop_1): Update.
13097 * infrun.c (clear_proceed_status_thread)
13098 (clean_up_just_stopped_threads_fsms, fetch_inferior_event)
13099 (print_stop_event): Update.
13100 * infcmd.c (struct step_command_fsm): Inherit from thread_fsm.
13101 Add constructor.
13102 (step_command_fsm_ops): Remove.
13103 (new_step_command_fsm): Remove.
13104 (step_1): Update.
13105 (step_command_fsm::should_stop): Rename from
13106 step_command_fsm_should_stop.
13107 (step_command_fsm::clean_up): Rename from
13108 step_command_fsm_clean_up.
13109 (step_command_fsm::do_async_reply_reason): Rename from
13110 step_command_fsm_async_reply_reason.
13111 (struct until_next_fsm): Inherit from thread_fsm. Add
13112 constructor.
13113 (until_next_fsm_ops): Remove.
13114 (new_until_next_fsm): Remove.
13115 (until_next_fsm::should_stop): Rename from
13116 until_next_fsm_should_stop.
13117 (until_next_fsm::clean_up): Rename from until_next_fsm_clean_up.
13118 (until_next_fsm::do_async_reply_reason): Rename from
13119 until_next_fsm_async_reply_reason.
13120 (struct finish_command_fsm): Inherit from thread_fsm. Add
13121 constructor. Change type of breakpoint.
13122 (finish_command_fsm_ops): Remove.
13123 (new_finish_command_fsm): Remove.
13124 (finish_command_fsm::should_stop): Rename from
13125 finish_command_fsm_should_stop.
13126 (finish_command_fsm::clean_up): Rename from
13127 finish_command_fsm_clean_up.
13128 (finish_command_fsm::return_value): Rename from
13129 finish_command_fsm_return_value.
13130 (finish_command_fsm::do_async_reply_reason): Rename from
13131 finish_command_fsm_async_reply_reason.
13132 (finish_command): Update.
13133 * infcall.c (struct call_thread_fsm): Inherit from thread_fsm.
13134 Add constructor.
13135 (call_thread_fsm_ops): Remove.
13136 (call_thread_fsm::call_thread_fsm): Rename from
13137 new_call_thread_fsm.
13138 (call_thread_fsm::should_stop): Rename from
13139 call_thread_fsm_should_stop.
13140 (call_thread_fsm::should_notify_stop): Rename from
13141 call_thread_fsm_should_notify_stop.
13142 (run_inferior_call, call_function_by_hand_dummy): Update.
13143 * cli/cli-interp.c (should_print_stop_to_console): Update.
13144 * breakpoint.c (struct until_break_fsm): Inherit from thread_fsm.
13145 Add constructor. Change type of location_breakpoint,
13146 caller_breakpoint.
13147 (until_break_fsm_ops): Remove.
13148 (new_until_break_fsm): Remove.
13149 (until_break_fsm::should_stop): Rename from
13150 until_break_fsm_should_stop.
13151 (until_break_fsm::clean_up): Rename from
13152 until_break_fsm_clean_up.
13153 (until_break_fsm::do_async_reply_reason): Rename from
13154 until_break_fsm_async_reply_reason.
13155 (until_break_command): Update.
13156 * thread-fsm.c: Remove.
13157 * Makefile.in (COMMON_SFILES): Remove thread-fsm.c.
13158
1a5c2598
TT
131592019-02-07 Tom Tromey <tom@tromey.com>
13160
13161 * yy-remap.h: Add include guard.
13162 * xtensa-tdep.h: Add include guard.
13163 * xcoffread.h: Rename include guard.
13164 * varobj-iter.h: Add include guard.
13165 * tui/tui.h: Rename include guard.
13166 * tui/tui-winsource.h: Rename include guard.
13167 * tui/tui-wingeneral.h: Rename include guard.
13168 * tui/tui-windata.h: Rename include guard.
13169 * tui/tui-win.h: Rename include guard.
13170 * tui/tui-stack.h: Rename include guard.
13171 * tui/tui-source.h: Rename include guard.
13172 * tui/tui-regs.h: Rename include guard.
13173 * tui/tui-out.h: Rename include guard.
13174 * tui/tui-layout.h: Rename include guard.
13175 * tui/tui-io.h: Rename include guard.
13176 * tui/tui-hooks.h: Rename include guard.
13177 * tui/tui-file.h: Rename include guard.
13178 * tui/tui-disasm.h: Rename include guard.
13179 * tui/tui-data.h: Rename include guard.
13180 * tui/tui-command.h: Rename include guard.
13181 * tic6x-tdep.h: Add include guard.
13182 * target/waitstatus.h: Rename include guard.
13183 * target/wait.h: Rename include guard.
13184 * target/target.h: Rename include guard.
13185 * target/resume.h: Rename include guard.
13186 * target-float.h: Rename include guard.
13187 * stabsread.h: Add include guard.
13188 * rs6000-tdep.h: Add include guard.
13189 * riscv-fbsd-tdep.h: Add include guard.
13190 * regformats/regdef.h: Rename include guard.
13191 * record.h: Rename include guard.
13192 * python/python.h: Rename include guard.
13193 * python/python-internal.h: Rename include guard.
13194 * python/py-stopevent.h: Rename include guard.
13195 * python/py-ref.h: Rename include guard.
13196 * python/py-record.h: Rename include guard.
13197 * python/py-record-full.h: Rename include guard.
13198 * python/py-record-btrace.h: Rename include guard.
13199 * python/py-instruction.h: Rename include guard.
13200 * python/py-events.h: Rename include guard.
13201 * python/py-event.h: Rename include guard.
13202 * procfs.h: Add include guard.
13203 * proc-utils.h: Add include guard.
13204 * p-lang.h: Add include guard.
13205 * or1k-tdep.h: Rename include guard.
13206 * observable.h: Rename include guard.
13207 * nto-tdep.h: Rename include guard.
13208 * nat/x86-linux.h: Rename include guard.
13209 * nat/x86-linux-dregs.h: Rename include guard.
13210 * nat/x86-gcc-cpuid.h: Add include guard.
13211 * nat/x86-dregs.h: Rename include guard.
13212 * nat/x86-cpuid.h: Rename include guard.
13213 * nat/ppc-linux.h: Rename include guard.
13214 * nat/mips-linux-watch.h: Rename include guard.
13215 * nat/linux-waitpid.h: Rename include guard.
13216 * nat/linux-ptrace.h: Rename include guard.
13217 * nat/linux-procfs.h: Rename include guard.
13218 * nat/linux-osdata.h: Rename include guard.
13219 * nat/linux-nat.h: Rename include guard.
13220 * nat/linux-namespaces.h: Rename include guard.
13221 * nat/linux-btrace.h: Rename include guard.
13222 * nat/glibc_thread_db.h: Rename include guard.
13223 * nat/gdb_thread_db.h: Rename include guard.
13224 * nat/gdb_ptrace.h: Rename include guard.
13225 * nat/fork-inferior.h: Rename include guard.
13226 * nat/amd64-linux-siginfo.h: Rename include guard.
13227 * nat/aarch64-sve-linux-sigcontext.h: Rename include guard.
13228 * nat/aarch64-sve-linux-ptrace.h: Rename include guard.
13229 * nat/aarch64-linux.h: Rename include guard.
13230 * nat/aarch64-linux-hw-point.h: Rename include guard.
13231 * mn10300-tdep.h: Add include guard.
13232 * mips-linux-tdep.h: Add include guard.
13233 * mi/mi-parse.h: Rename include guard.
13234 * mi/mi-out.h: Rename include guard.
13235 * mi/mi-main.h: Rename include guard.
13236 * mi/mi-interp.h: Rename include guard.
13237 * mi/mi-getopt.h: Rename include guard.
13238 * mi/mi-console.h: Rename include guard.
13239 * mi/mi-common.h: Rename include guard.
13240 * mi/mi-cmds.h: Rename include guard.
13241 * mi/mi-cmd-break.h: Rename include guard.
13242 * m2-lang.h: Add include guard.
13243 * location.h: Rename include guard.
13244 * linux-record.h: Rename include guard.
13245 * linux-nat.h: Add include guard.
13246 * linux-fork.h: Add include guard.
13247 * i386-darwin-tdep.h: Rename include guard.
13248 * hppa-linux-offsets.h: Add include guard.
13249 * guile/guile.h: Rename include guard.
13250 * guile/guile-internal.h: Rename include guard.
13251 * gnu-nat.h: Rename include guard.
13252 * gdb-stabs.h: Rename include guard.
13253 * frv-tdep.h: Add include guard.
13254 * f-lang.h: Add include guard.
13255 * event-loop.h: Add include guard.
13256 * darwin-nat.h: Rename include guard.
13257 * cp-abi.h: Rename include guard.
13258 * config/sparc/nm-sol2.h: Rename include guard.
13259 * config/nm-nto.h: Rename include guard.
13260 * config/nm-linux.h: Add include guard.
13261 * config/i386/nm-i386gnu.h: Rename include guard.
13262 * config/djgpp/nl_types.h: Rename include guard.
13263 * config/djgpp/langinfo.h: Rename include guard.
13264 * compile/gcc-cp-plugin.h: Add include guard.
13265 * compile/gcc-c-plugin.h: Add include guard.
13266 * compile/compile.h: Rename include guard.
13267 * compile/compile-object-run.h: Rename include guard.
13268 * compile/compile-object-load.h: Rename include guard.
13269 * compile/compile-internal.h: Rename include guard.
13270 * compile/compile-cplus.h: Rename include guard.
13271 * compile/compile-c.h: Rename include guard.
13272 * common/xml-utils.h: Rename include guard.
13273 * common/x86-xstate.h: Rename include guard.
13274 * common/version.h: Rename include guard.
13275 * common/vec.h: Rename include guard.
13276 * common/tdesc.h: Rename include guard.
13277 * common/selftest.h: Rename include guard.
13278 * common/scoped_restore.h: Rename include guard.
13279 * common/scoped_mmap.h: Rename include guard.
13280 * common/scoped_fd.h: Rename include guard.
13281 * common/safe-iterator.h: Rename include guard.
13282 * common/run-time-clock.h: Rename include guard.
13283 * common/refcounted-object.h: Rename include guard.
13284 * common/queue.h: Rename include guard.
13285 * common/ptid.h: Rename include guard.
13286 * common/print-utils.h: Rename include guard.
13287 * common/preprocessor.h: Rename include guard.
13288 * common/pathstuff.h: Rename include guard.
13289 * common/observable.h: Rename include guard.
13290 * common/netstuff.h: Rename include guard.
13291 * common/job-control.h: Rename include guard.
13292 * common/host-defs.h: Rename include guard.
13293 * common/gdb_wait.h: Rename include guard.
13294 * common/gdb_vecs.h: Rename include guard.
13295 * common/gdb_unlinker.h: Rename include guard.
13296 * common/gdb_unique_ptr.h: Rename include guard.
13297 * common/gdb_tilde_expand.h: Rename include guard.
13298 * common/gdb_sys_time.h: Rename include guard.
13299 * common/gdb_string_view.h: Rename include guard.
13300 * common/gdb_splay_tree.h: Rename include guard.
13301 * common/gdb_setjmp.h: Rename include guard.
13302 * common/gdb_ref_ptr.h: Rename include guard.
13303 * common/gdb_optional.h: Rename include guard.
13304 * common/gdb_locale.h: Rename include guard.
13305 * common/gdb_assert.h: Rename include guard.
13306 * common/filtered-iterator.h: Rename include guard.
13307 * common/filestuff.h: Rename include guard.
13308 * common/fileio.h: Rename include guard.
13309 * common/environ.h: Rename include guard.
13310 * common/common-utils.h: Rename include guard.
13311 * common/common-types.h: Rename include guard.
13312 * common/common-regcache.h: Rename include guard.
13313 * common/common-inferior.h: Rename include guard.
13314 * common/common-gdbthread.h: Rename include guard.
13315 * common/common-exceptions.h: Rename include guard.
13316 * common/common-defs.h: Rename include guard.
13317 * common/common-debug.h: Rename include guard.
13318 * common/cleanups.h: Rename include guard.
13319 * common/buffer.h: Rename include guard.
13320 * common/btrace-common.h: Rename include guard.
13321 * common/break-common.h: Rename include guard.
13322 * cli/cli-utils.h: Rename include guard.
13323 * cli/cli-style.h: Rename include guard.
13324 * cli/cli-setshow.h: Rename include guard.
13325 * cli/cli-script.h: Rename include guard.
13326 * cli/cli-interp.h: Rename include guard.
13327 * cli/cli-decode.h: Rename include guard.
13328 * cli/cli-cmds.h: Rename include guard.
13329 * charset-list.h: Add include guard.
13330 * buildsym-legacy.h: Rename include guard.
13331 * bfin-tdep.h: Add include guard.
13332 * ax.h: Rename include guard.
13333 * arm-linux-tdep.h: Add include guard.
13334 * arm-fbsd-tdep.h: Add include guard.
13335 * arch/xtensa.h: Rename include guard.
13336 * arch/tic6x.h: Add include guard.
13337 * arch/i386.h: Add include guard.
13338 * arch/arm.h: Rename include guard.
13339 * arch/arm-linux.h: Rename include guard.
13340 * arch/arm-get-next-pcs.h: Rename include guard.
13341 * arch/amd64.h: Add include guard.
13342 * arch/aarch64-insn.h: Rename include guard.
13343 * arch-utils.h: Rename include guard.
13344 * annotate.h: Add include guard.
13345 * amd64-darwin-tdep.h: Rename include guard.
13346 * aarch64-linux-tdep.h: Add include guard.
13347 * aarch64-fbsd-tdep.h: Add include guard.
13348 * aarch32-linux-nat.h: Add include guard.
13349
ab9268d2
PW
133502019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13351
13352 * macrotab.c (macro_define_internal): New function that
13353 factorizes macro_define_object_internal and macro_define_function
13354 code.
13355 (macro_define_object_internal): Use macro_define_internal.
13356 (macro_define_function): Likewise.
13357
bb0da2b4
PW
133582019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13359
13360 * macrocmd.c (extract_identifier): Return
13361 a gdb::unique_xmalloc_ptr<char> instead of a char *, and update
13362 callers.
13363
424eb552
JB
133642019-02-06 John Baldwin <jhb@FreeBSD.org>
13365
13366 * fbsd-nat.c (fbsd_fetch_cmdline): Join arguments with spaces.
13367
1688cb29
TT
133682019-02-05 Tom Tromey <tom@tromey.com>
13369
13370 * target.c (target_stack::unpush): Move assertion earlier.
13371
b5eba2d8
TT
133722019-01-30 Tom Tromey <tom@tromey.com>
13373
13374 PR python/23615:
13375 * python/python.c (execute_gdb_command): Use gdbpy_allow_threads.
13376 (gdbpy_parse_and_eval): Likewise.
13377 * python/python-internal.h (gdbpy_allow_threads): New class.
13378
7054e2ff
JB
133792019-01-28 John Baldwin <jhb@FreeBSD.org>
13380
13381 * aarch64-fbsd-tdep.c (aarch64_fbsd_gregmap)
13382 (aarch64_fbsd_fpregmap): Move earlier.
13383 (AARCH64_MCONTEXT_REG_SIZE, AARCH64_MCONTEXT_FPREG_SIZE): Delete.
13384 (aarch64_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
13385 instead of individual calls to trad_frame_set_reg_addr.
13386 * arm-fbsd-tdep.c (arm_fbsd_gregmap, arm_fbsd_vfpregmap): Move
13387 earlier.
13388 (ARM_MCONTEXT_REG_SIZE, ARM_MCONTEXT_VFP_REG_SIZE): Delete.
13389 (arm_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
13390 instead of individual calls to trad_frame_set_reg_addr.
13391
36c25ffa
AH
133922019-01-28 Alan Hayward <alan.hayward@arm.com>
13393
13394 * CONTRIBUTE: Replace contribution list with wiki link.
13395
a0707f3c
TT
133962019-01-25 Tom Tromey <tom@tromey.com>
13397
13398 * Makefile.in (GDB_CFLAGS): Don't add -I for common.
13399
0747795c
TT
134002019-01-25 Tom Tromey <tom@tromey.com>
13401
13402 * xtensa-linux-nat.c: Fix common/ includes.
13403 * xml-support.h: Fix common/ includes.
13404 * xml-support.c: Fix common/ includes.
13405 * x86-linux-nat.c: Fix common/ includes.
13406 * windows-nat.c: Fix common/ includes.
13407 * varobj.h: Fix common/ includes.
13408 * varobj.c: Fix common/ includes.
13409 * value.c: Fix common/ includes.
13410 * valops.c: Fix common/ includes.
13411 * utils.c: Fix common/ includes.
13412 * unittests/xml-utils-selftests.c: Fix common/ includes.
13413 * unittests/utils-selftests.c: Fix common/ includes.
13414 * unittests/unpack-selftests.c: Fix common/ includes.
13415 * unittests/tracepoint-selftests.c: Fix common/ includes.
13416 * unittests/style-selftests.c: Fix common/ includes.
13417 * unittests/string_view-selftests.c: Fix common/ includes.
13418 * unittests/scoped_restore-selftests.c: Fix common/ includes.
13419 * unittests/scoped_mmap-selftests.c: Fix common/ includes.
13420 * unittests/scoped_fd-selftests.c: Fix common/ includes.
13421 * unittests/rsp-low-selftests.c: Fix common/ includes.
13422 * unittests/parse-connection-spec-selftests.c: Fix common/
13423 includes.
13424 * unittests/optional-selftests.c: Fix common/ includes.
13425 * unittests/offset-type-selftests.c: Fix common/ includes.
13426 * unittests/observable-selftests.c: Fix common/ includes.
13427 * unittests/mkdir-recursive-selftests.c: Fix common/ includes.
13428 * unittests/memrange-selftests.c: Fix common/ includes.
13429 * unittests/memory-map-selftests.c: Fix common/ includes.
13430 * unittests/lookup_name_info-selftests.c: Fix common/ includes.
13431 * unittests/function-view-selftests.c: Fix common/ includes.
13432 * unittests/environ-selftests.c: Fix common/ includes.
13433 * unittests/copy_bitwise-selftests.c: Fix common/ includes.
13434 * unittests/common-utils-selftests.c: Fix common/ includes.
13435 * unittests/cli-utils-selftests.c: Fix common/ includes.
13436 * unittests/array-view-selftests.c: Fix common/ includes.
13437 * ui-file.c: Fix common/ includes.
13438 * tui/tui-io.c: Fix common/ includes.
13439 * tracepoint.h: Fix common/ includes.
13440 * tracepoint.c: Fix common/ includes.
13441 * tracefile-tfile.c: Fix common/ includes.
13442 * top.h: Fix common/ includes.
13443 * top.c: Fix common/ includes.
13444 * thread.c: Fix common/ includes.
13445 * target/waitstatus.h: Fix common/ includes.
13446 * target/waitstatus.c: Fix common/ includes.
13447 * target.h: Fix common/ includes.
13448 * target.c: Fix common/ includes.
13449 * target-memory.c: Fix common/ includes.
13450 * target-descriptions.c: Fix common/ includes.
13451 * symtab.h: Fix common/ includes.
13452 * symfile.c: Fix common/ includes.
13453 * stap-probe.c: Fix common/ includes.
13454 * spu-linux-nat.c: Fix common/ includes.
13455 * sparc-nat.c: Fix common/ includes.
13456 * source.c: Fix common/ includes.
13457 * solib.c: Fix common/ includes.
13458 * solib-target.c: Fix common/ includes.
13459 * ser-unix.c: Fix common/ includes.
13460 * ser-tcp.c: Fix common/ includes.
13461 * ser-pipe.c: Fix common/ includes.
13462 * ser-base.c: Fix common/ includes.
13463 * selftest-arch.c: Fix common/ includes.
13464 * s12z-tdep.c: Fix common/ includes.
13465 * rust-exp.y: Fix common/ includes.
13466 * rs6000-aix-tdep.c: Fix common/ includes.
13467 * riscv-tdep.c: Fix common/ includes.
13468 * remote.c: Fix common/ includes.
13469 * remote-notif.h: Fix common/ includes.
13470 * remote-fileio.h: Fix common/ includes.
13471 * remote-fileio.c: Fix common/ includes.
13472 * regcache.h: Fix common/ includes.
13473 * regcache.c: Fix common/ includes.
13474 * record-btrace.c: Fix common/ includes.
13475 * python/python.c: Fix common/ includes.
13476 * python/py-type.c: Fix common/ includes.
13477 * python/py-inferior.c: Fix common/ includes.
13478 * progspace.h: Fix common/ includes.
13479 * producer.c: Fix common/ includes.
13480 * procfs.c: Fix common/ includes.
13481 * proc-api.c: Fix common/ includes.
13482 * printcmd.c: Fix common/ includes.
13483 * ppc-linux-nat.c: Fix common/ includes.
13484 * parser-defs.h: Fix common/ includes.
13485 * osdata.c: Fix common/ includes.
13486 * obsd-nat.c: Fix common/ includes.
13487 * nat/x86-linux.c: Fix common/ includes.
13488 * nat/x86-linux-dregs.c: Fix common/ includes.
13489 * nat/x86-dregs.h: Fix common/ includes.
13490 * nat/x86-dregs.c: Fix common/ includes.
13491 * nat/ppc-linux.c: Fix common/ includes.
13492 * nat/mips-linux-watch.h: Fix common/ includes.
13493 * nat/mips-linux-watch.c: Fix common/ includes.
13494 * nat/linux-waitpid.c: Fix common/ includes.
13495 * nat/linux-ptrace.h: Fix common/ includes.
13496 * nat/linux-ptrace.c: Fix common/ includes.
13497 * nat/linux-procfs.c: Fix common/ includes.
13498 * nat/linux-personality.c: Fix common/ includes.
13499 * nat/linux-osdata.c: Fix common/ includes.
13500 * nat/linux-namespaces.c: Fix common/ includes.
13501 * nat/linux-btrace.h: Fix common/ includes.
13502 * nat/linux-btrace.c: Fix common/ includes.
13503 * nat/fork-inferior.c: Fix common/ includes.
13504 * nat/amd64-linux-siginfo.c: Fix common/ includes.
13505 * nat/aarch64-sve-linux-ptrace.c: Fix common/ includes.
13506 * nat/aarch64-linux.c: Fix common/ includes.
13507 * nat/aarch64-linux-hw-point.h: Fix common/ includes.
13508 * nat/aarch64-linux-hw-point.c: Fix common/ includes.
13509 * namespace.h: Fix common/ includes.
13510 * mips-linux-tdep.c: Fix common/ includes.
13511 * minsyms.c: Fix common/ includes.
13512 * mi/mi-parse.h: Fix common/ includes.
13513 * mi/mi-main.c: Fix common/ includes.
13514 * mi/mi-cmd-env.c: Fix common/ includes.
13515 * memrange.h: Fix common/ includes.
13516 * memattr.c: Fix common/ includes.
13517 * maint.h: Fix common/ includes.
13518 * maint.c: Fix common/ includes.
13519 * main.c: Fix common/ includes.
13520 * machoread.c: Fix common/ includes.
13521 * location.c: Fix common/ includes.
13522 * linux-thread-db.c: Fix common/ includes.
13523 * linux-nat.c: Fix common/ includes.
13524 * linux-fork.c: Fix common/ includes.
13525 * inline-frame.c: Fix common/ includes.
13526 * infrun.c: Fix common/ includes.
13527 * inflow.c: Fix common/ includes.
13528 * inferior.h: Fix common/ includes.
13529 * inferior.c: Fix common/ includes.
13530 * infcmd.c: Fix common/ includes.
13531 * inf-ptrace.c: Fix common/ includes.
13532 * inf-child.c: Fix common/ includes.
13533 * ia64-linux-nat.c: Fix common/ includes.
13534 * i387-tdep.c: Fix common/ includes.
13535 * i386-tdep.c: Fix common/ includes.
13536 * i386-linux-tdep.c: Fix common/ includes.
13537 * i386-linux-nat.c: Fix common/ includes.
13538 * i386-go32-tdep.c: Fix common/ includes.
13539 * i386-fbsd-tdep.c: Fix common/ includes.
13540 * i386-fbsd-nat.c: Fix common/ includes.
13541 * guile/scm-type.c: Fix common/ includes.
13542 * guile/guile.c: Fix common/ includes.
13543 * go32-nat.c: Fix common/ includes.
13544 * gnu-nat.c: Fix common/ includes.
13545 * gdbthread.h: Fix common/ includes.
13546 * gdbarch-selftests.c: Fix common/ includes.
13547 * gdb_usleep.c: Fix common/ includes.
13548 * gdb_select.h: Fix common/ includes.
13549 * gdb_bfd.c: Fix common/ includes.
13550 * gcore.c: Fix common/ includes.
13551 * fork-child.c: Fix common/ includes.
13552 * findvar.c: Fix common/ includes.
13553 * fbsd-nat.c: Fix common/ includes.
13554 * event-top.c: Fix common/ includes.
13555 * event-loop.c: Fix common/ includes.
13556 * dwarf2read.c: Fix common/ includes.
13557 * dwarf2loc.c: Fix common/ includes.
13558 * dwarf2-frame.c: Fix common/ includes.
13559 * dwarf-index-cache.c: Fix common/ includes.
13560 * dtrace-probe.c: Fix common/ includes.
13561 * disasm-selftests.c: Fix common/ includes.
13562 * defs.h: Fix common/ includes.
13563 * csky-tdep.c: Fix common/ includes.
13564 * cp-valprint.c: Fix common/ includes.
13565 * cp-support.h: Fix common/ includes.
13566 * cp-support.c: Fix common/ includes.
13567 * corelow.c: Fix common/ includes.
13568 * completer.h: Fix common/ includes.
13569 * completer.c: Fix common/ includes.
13570 * compile/compile.c: Fix common/ includes.
13571 * compile/compile-loc2c.c: Fix common/ includes.
13572 * compile/compile-cplus-types.c: Fix common/ includes.
13573 * compile/compile-cplus-symbols.c: Fix common/ includes.
13574 * command.h: Fix common/ includes.
13575 * cli/cli-dump.c: Fix common/ includes.
13576 * cli/cli-cmds.c: Fix common/ includes.
13577 * charset.c: Fix common/ includes.
13578 * build-id.c: Fix common/ includes.
13579 * btrace.h: Fix common/ includes.
13580 * btrace.c: Fix common/ includes.
13581 * breakpoint.h: Fix common/ includes.
13582 * breakpoint.c: Fix common/ includes.
13583 * ax.h:
13584 (enum agent_op): Fix common/ includes.
13585 * ax-general.c (struct aop_map): Fix common/ includes.
13586 * ax-gdb.c: Fix common/ includes.
13587 * auxv.c: Fix common/ includes.
13588 * auto-load.c: Fix common/ includes.
13589 * arm-tdep.c: Fix common/ includes.
13590 * arch/riscv.c: Fix common/ includes.
13591 * arch/ppc-linux-common.c: Fix common/ includes.
13592 * arch/i386.c: Fix common/ includes.
13593 * arch/arm.c: Fix common/ includes.
13594 * arch/arm-linux.c: Fix common/ includes.
13595 * arch/arm-get-next-pcs.c: Fix common/ includes.
13596 * arch/amd64.c: Fix common/ includes.
13597 * arch/aarch64.c: Fix common/ includes.
13598 * arch/aarch64-insn.c: Fix common/ includes.
13599 * arch-utils.c: Fix common/ includes.
13600 * amd64-windows-tdep.c: Fix common/ includes.
13601 * amd64-tdep.c: Fix common/ includes.
13602 * amd64-sol2-tdep.c: Fix common/ includes.
13603 * amd64-obsd-tdep.c: Fix common/ includes.
13604 * amd64-nbsd-tdep.c: Fix common/ includes.
13605 * amd64-linux-tdep.c: Fix common/ includes.
13606 * amd64-linux-nat.c: Fix common/ includes.
13607 * amd64-fbsd-tdep.c: Fix common/ includes.
13608 * amd64-fbsd-nat.c: Fix common/ includes.
13609 * amd64-dicos-tdep.c: Fix common/ includes.
13610 * amd64-darwin-tdep.c: Fix common/ includes.
13611 * agent.c: Fix common/ includes.
13612 * ada-lang.h: Fix common/ includes.
13613 * ada-lang.c: Fix common/ includes.
13614 * aarch64-tdep.c: Fix common/ includes.
13615
2f5c153e
TT
136162019-01-25 Tom Tromey <tom@tromey.com>
13617
13618 * common/create-version.sh: Use common/version.h.
13619
adc6a863
PA
136202019-01-24 Pedro Alves <palves@redhat.com>
13621
13622 * infrun.c (signal_stop, signal_print, signal_program)
13623 (signal_catch, signal_pass): Now arrays instead of pointers.
13624 (update_signals_program_target, do_target_resume)
13625 (signal_catch_update, handle_command, _initialize_infrun): Adjust.
13626 * linux-nat.c (linux_nat_target::pass_signals)
13627 (linux_nat_target::create_inferior, linux_nat_target::attach):
13628 Adjust.
13629 * linux-nat.h (linux_nat_target::pass_signals): Adjust.
13630 * nto-procfs.c (nto_procfs_target::pass_signals): Adjust.
13631 * procfs.c (procfs_target::pass_signals): Adjust.
13632 * record-full.c (record_full_target::resume): Adjust.
13633 * remote.c (remote_target::pass_signals)
13634 (remote_target::program_signals): Adjust.
13635 * target-debug.h (target_debug_print_signals): Now takes a
13636 gdb::array_view as parameter. Adjust.
13637 * target.h (target_ops) <pass_signals, program_signals>: Replace
13638 pointer and length parameters with gdb::array_view.
13639 (target_pass_signals, target_program_signals): Likewise.
13640 * target-delegates.c: Regenerate.
13641
3046d67a
PA
136422019-01-24 Pedro Alves <palves@redhat.com>
13643
13644 * common/forward-scope-exit.h
13645 (forward_scope_exit::forward_scope_exit): Pass arguments to
13646 m_bind_function directly, instead of creating a std::bind and
13647 copying that.
13648
353229bf
AH
136492019-01-24 Alan Hayward <alan.hayward@arm.com>
13650
13651 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
13652 for static members.
13653 (pass_in_v_vfp_candidate): Likewise.
13654
311dc83a
TT
136552019-01-23 Tom Tromey <tom@tromey.com>
13656 Pedro Alves <palves@redhat.com>
13657
13658 * regcache.c (class regcache_invalidator): Remove.
13659 (regcache::raw_write): Use make_scope_exit.
13660
296bd123
TT
136612019-01-23 Tom Tromey <tom@tromey.com>
13662
13663 * ui-out.h (class ui_out_emit_type): Update comment.
13664
979a0d13
TT
136652019-01-23 Tom Tromey <tom@tromey.com>
13666
13667 * infrun.c (fetch_inferior_event): Update comment.
13668
d238133d
TT
136692019-01-23 Tom Tromey <tom@tromey.com>
13670 Pedro Alves <palves@redhat.com>
13671
13672 * infrun.c (reinstall_readline_callback_handler_cleanup): Remove
13673 parameter.
13674 (fetch_inferior_event): Use SCOPE_EXIT.
13675
13676
9885e6bb
TT
136772019-01-23 Tom Tromey <tom@tromey.com>
13678 Pedro Alves <palves@redhat.com>
13679
13680 * infrun.c (disable_thread_events): Delete.
13681 (stop_all_threads): Use SCOPE_EXIT.
13682
286526c1
TT
136832019-01-23 Tom Tromey <tom@tromey.com>
13684 Pedro Alves <palves@redhat.com>
13685
13686 * symfile.c: Include forward-scope-exit.h.
13687 (clear_symtab_users_cleanup): Replace forward declaration with
13688 a FORWARD_SCOPE_EXIT.
13689 (syms_from_objfile_1): Use the forward_scope_exit and
13690 gdb::optional instead of cleanup_function.
13691 (reread_symbols): Use the forward_scope_exit instead of
13692 cleanup_function.
13693 (clear_symtab_users_cleanup): Remove function.
13694
1db93f14
TT
136952019-01-23 Tom Tromey <tom@tromey.com>
13696 Pedro Alves <palves@redhat.com>
13697
13698 * linux-nat.c: Include scope-exit.h.
13699 (cleanup_target_stop): Remove.
13700 (linux_nat_target::static_tracepoint_markers_by_strid): Use
13701 SCOPE_EXIT.
13702
2cc83d1e
TT
137032019-01-23 Tom Tromey <tom@tromey.com>
13704 Pedro Alves <palves@redhat.com>
13705
13706 * infcall.c (cleanup_delete_std_terminate_breakpoint): Remove.
13707 (call_function_by_hand_dummy): Use SCOPE_EXIT.
13708
694c6bf5
TT
137092019-01-23 Tom Tromey <tom@tromey.com>
13710 Andrew Burgess <andrew.burgess@embecosm.com>
13711 Pedro Alves <palves@redhat.com>
13712
13713 * infrun.c (fetch_inferior_event): Use scope_exit.
13714 * utils.h (make_bpstat_clear_actions_cleanup): Don't declare.
13715 * top.c (execute_command): Use scope_exit.
13716 * breakpoint.c (bpstat_do_actions): Use scope_exit.
13717 * utils.c (do_bpstat_clear_actions_cleanup)
13718 (make_bpstat_clear_actions_cleanup): Remove.
13719
4c41382a
TT
137202019-01-23 Tom Tromey <tom@tromey.com>
13721 Pedro Alves <palves@redhat.com>
13722
13723 * infrun.c: Include "common/scope-exit.h"
13724 (delete_just_stopped_threads_infrun_breakpoints_cleanup): Remove.
13725 (wait_for_inferior): Use SCOPE_EXIT.
13726 (fetch_inferior_event): Use scope_exit.
13727
89f8fb50
TT
137282019-01-23 Tom Tromey <tom@tromey.com>
13729 Pedro Alves <palves@redhat.com>
13730
13731 * breakpoint.c (create_breakpoint): Remove cleanup.
13732
5419bdae
TT
137332019-01-23 Tom Tromey <tom@tromey.com>
13734 Andrew Burgess <andrew.burgess@embecosm.com>
13735 Pedro Alves <palves@redhat.com>
13736
e587ef42
PA
137372019-01-23 Pedro Alves <palves@redhat.com>
13738
13739 * gdbarch-selftests.c (struct on_exit): Use SCOPE_EXIT.
13740
77f0e74c
PA
137412019-01-23 Pedro Alves <palves@redhat.com>
13742 Andrew Burgess <andrew.burgess@embecosm.com>
13743
13744 * gdbthread.h: Include "common/forward-scope-exit.h".
13745 (scoped_finish_thread_state): Redefine custom class in terms of
13746 forward_scope_exit.
13747
5b9b3e53
PA
137482019-01-23 Pedro Alves <palves@redhat.com>
13749 Andrew Burgess <andrew.burgess@embecosm.com>
13750
13751 * common/forward-scope-exit.h: New file.
13752
54b65c9b
PA
137532019-01-23 Pedro Alves <palves@redhat.com>
13754 Andrew Burgess <andrew.burgess@embecosm.com>
13755 Tom Tromey <tom@tromey.com>
13756
13757 * common/scope-exit.h: New file.
13758
cf08fb29
PA
137592019-01-23 Pedro Alves <palves@redhat.com>
13760
13761 * common/preprocessor.h (ESC): Rename to ...
13762 (ESC_PARENS): ... this.
13763 * common/valid-expr.h (CHECK_VALID_EXPR_1, CHECK_VALID_EXPR_2)
13764 (CHECK_VALID_EXPR_3, CHECK_VALID_EXPR_4): Adjust.
13765
ae73e2e2
TT
137662019-01-23 Tom Tromey <tom@tromey.com>
13767
13768 * language.h (class scoped_switch_to_sym_language_if_auto):
13769 Initialize m_lang in both cases.
13770
6594e122
AH
137712019-01-23 Alan Hayward <alan.hayward@arm.com>
13772
13773 * nat/aarch64-linux.c (aarch64_linux_new_thread): Replace XNEW
13774 with XCNEW.
13775
a7c9855d
TT
137762019-01-22 Tom Tromey <tom@tromey.com>
13777
13778 * corelow.c: Do not include sys/file.h.
13779
93cc1d53
TT
137802019-01-22 Tom Tromey <tom@tromey.com>
13781
13782 * tui/tui-wingeneral.h: Include gdb_curses.h.
13783
38561778
TT
137842019-01-22 Tom Tromey <tom@tromey.com>
13785
13786 * source-cache.h (class source_cache) <get_source_lines,
13787 get_plain_source_lines, extract_lines>: Rename "lines" parameter.
13788
37b3ab5b
TT
137892019-01-22 Tom Tromey <tom@tromey.com>
13790
13791 * remote-fileio.h (struct remote_target): Declare.
13792
3fabc016
TT
137932019-01-22 Tom Tromey <tom@tromey.com>
13794
13795 * python/py-arch.c: Do not include py-ref.h.
13796 * python/py-bpevent.c: Do not include py-ref.h.
13797 * python/py-cmd.c: Do not include py-ref.h.
13798 * python/py-continueevent.c: Do not include py-ref.h.
13799 * python/py-event.h: Do not include py-ref.h.
13800 * python/py-evtregistry.c: Do not include py-ref.h.
13801 * python/py-finishbreakpoint.c: Do not include py-ref.h.
13802 * python/py-frame.c: Do not include py-ref.h.
13803 * python/py-framefilter.c: Do not include py-ref.h.
13804 * python/py-function.c: Do not include py-ref.h.
13805 * python/py-infevents.c: Do not include py-ref.h.
13806 * python/py-linetable.c: Do not include py-ref.h.
13807 * python/py-objfile.c: Do not include py-ref.h.
13808 * python/py-param.c: Do not include py-ref.h.
13809 * python/py-prettyprint.c: Do not include py-ref.h.
13810 * python/py-progspace.c: Do not include py-ref.h.
13811 * python/py-symbol.c: Do not include py-ref.h.
13812 * python/py-symtab.c: Do not include py-ref.h.
13813 * python/py-type.c: Do not include py-ref.h.
13814 * python/py-unwind.c: Do not include py-ref.h.
13815 * python/py-utils.c: Do not include py-ref.h.
13816 * python/py-value.c: Do not include py-ref.h.
13817 * python/py-varobj.c: Do not include py-ref.h.
13818 * python/py-xmethods.c: Do not include py-ref.h.
13819 * python/python.c: Do not include py-ref.h.
13820 * varobj.c: Do not include py-ref.h.
13821
6b4d7774
TT
138222019-01-22 Tom Tromey <tom@tromey.com>
13823
13824 * objfiles.h (struct objfile_per_bfd_storage): Use "struct"
13825 keyword for bcache.
13826
7af7e9b5
TT
138272019-01-22 Tom Tromey <tom@tromey.com>
13828
13829 * compile/compile-cplus-types.c: Remove a comment by #include.
13830
951d1049
TT
138312019-01-22 Tom Tromey <tom@tromey.com>
13832
13833 * compile/gcc-c-plugin.h: Include compile-internal.h.
13834
d65d5705
TT
138352019-01-22 Tom Tromey <tom@tromey.com>
13836
13837 * stabsread.c (EXTERN): Do not define.
13838 (symnum, next_symbol_text_func, processing_gcc_compilation)
13839 (within_function, global_sym_chain, global_stabs)
13840 (previous_stab_code, this_object_header_files)
13841 (n_this_object_header_files)
13842 (n_allocated_this_object_header_files): Define.
13843 * stabsread.h (EXTERN): Never define. Use "extern".
13844
b6fb1ee5
PW
138452019-01-22 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13846
13847 * event-top.c (handle_line_of_input): use unique_xmalloc_ptr for
13848 history_value.
13849
be6d4f74
TT
138502019-01-21 Tom Tromey <tom@tromey.com>
13851
13852 * ui-out.c: Fix includes.
13853 * tui/tui-source.c: Fix includes.
13854 * target.c: Fix includes.
13855 * remote.c: Fix includes.
13856 * regcache.c: Fix includes.
13857 * python/py-block.c: Fix includes.
13858 * printcmd.c: Fix includes.
13859 * or1k-tdep.c: Fix includes.
13860 * mi/mi-main.c: Fix includes.
13861 * m32r-tdep.c: Fix includes.
13862 * csky-tdep.c: Fix includes.
13863 * compile/compile-cplus-types.c: Fix includes.
13864 * cli/cli-interp.c: Fix includes.
13865
73021deb
AH
138662019-01-21 Alan Hayward <alan.hayward@arm.com>
13867
13868 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
13869 for padding.
13870
7932255d
TT
138712019-01-16 Tom Tromey <tom@tromey.com>
13872
13873 * objfiles.h (struct minimal_symbol_iterator): Rename. Move
13874 earlier.
13875 (struct objfile) <msymbols_range>: Move from top level.
13876 <msymbols>: New method.
13877 (class objfile_msymbols): Remove.
13878 * symtab.c (default_collect_symbol_completion_matches_break_on):
13879 Update.
13880 * symmisc.c (dump_msymbols): Update.
13881 * stabsread.c (scan_file_globals): Update.
13882 * objc-lang.c (info_selectors_command, info_classes_command)
13883 (find_methods): Update.
13884 * minsyms.c (find_solib_trampoline_target): Update.
13885 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Update.
13886 * coffread.c (coff_symfile_read): Update.
13887 * ada-lang.c (ada_lookup_simple_minsym)
13888 (ada_collect_symbol_completion_matches): Update.
13889
604b1bfb
TT
138902019-01-16 Tom Tromey <tom@tromey.com>
13891
13892 * objfiles.h (class objfile_msymbols) <iterator>: Change argument
13893 type. Remove no-argument constructor.
13894 <iterator::operator++>: Simplify.
13895 <begin>: Update.
13896 <end>: Use minimal_symbol_count.
13897
f252c6d5
TT
138982019-01-16 Tom Tromey <tom@tromey.com>
13899
13900 * objfiles.h (struct objfile) <psymtabs>: New method.
13901 (class objfile_psymtabs): Remove.
13902 * psymtab.h (class psymtab_storage) <partial_symtab_range>: New
13903 typedef.
13904 <range>: New method.
13905 (require_partial_symbols): Change return type.
13906 * psymtab.c (require_partial_symbols)
13907 (psym_expand_symtabs_matching): Update.
13908 * mdebugread.c (parse_partial_symbols): Update.
13909 * dbxread.c (dbx_end_psymtab): Update.
13910
b669c953
TT
139112019-01-15 Tom Tromey <tom@tromey.com>
13912
13913 * symtab.c (lookup_objfile_from_block)
13914 (lookup_symbol_in_objfile_symtabs)
13915 (basic_lookup_transparent_type_1, find_pc_sect_compunit_symtab)
13916 (find_line_symtab, info_sources_command)
13917 (default_collect_symbol_completion_matches_break_on)
13918 (make_source_files_completion_list): Update.
13919 * symmisc.c (print_objfile_statistics, dump_objfile)
13920 (maintenance_print_symbols, maintenance_info_symtabs)
13921 (maintenance_check_symtabs, maintenance_info_line_tables):
13922 Update.
13923 * source.c (select_source_symtab)
13924 (forget_cached_source_info_for_objfile): Update.
13925 * objfiles.h (class objfile_compunits): Remove.
13926 (struct objfile) <compunits_range>: New typedef.
13927 (compunits): New method.
13928 * objfiles.c (objfile_relocate1): Update.
13929 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
13930 * maint.c (count_symtabs_and_blocks): Update.
13931 * linespec.c (iterate_over_all_matching_symtabs): Update.
13932 * cp-support.c (add_symbol_overload_list_qualified): Update.
13933 * coffread.c (coff_symtab_read): Update.
13934 * ada-lang.c (add_nonlocal_symbols)
13935 (ada_collect_symbol_completion_matches)
13936 (ada_add_global_exceptions): Update.
13937
7e955d83
TT
139382019-01-15 Tom Tromey <tom@tromey.com>
13939
13940 * progspace.h (program_space) <objfiles_safe_range>: New
13941 typedef.
13942 <objfiles_safe>: New method.
13943 * objfiles.h (class all_objfiles_safe): Remove.
13944 * objfiles.c (free_all_objfiles, objfile_purge_solibs): Update.
13945 * jit.c (jit_inferior_exit_hook): Update.
13946
2030c079
TT
139472019-01-17 Tom Tromey <tom@tromey.com>
13948
13949 * progspace.h (program_space) <objfiles_range>: New typedef.
13950 <objfiles>: New method.
13951 <objfiles_head>: Rename from objfiles.
13952 (object_files): Update.
13953 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Update.
13954 * guile/scm-pretty-print.c
13955 (ppscm_find_pretty_printer_from_objfiles): Update.
13956 * guile/scm-objfile.c (gdbscm_objfiles): Update.
13957 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers):
13958 Update.
13959 * python/py-progspace.c (pspy_get_objfiles): Update.
13960 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
13961 Update.
13962 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
13963 (objfpy_lookup_objfile_by_build_id): Update.
13964 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
13965 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
13966 Update.
13967 * symtab.c (iterate_over_symtabs, matching_obj_sections)
13968 (expand_symtab_containing_pc, lookup_objfile_from_block)
13969 (lookup_static_symbol, basic_lookup_transparent_type)
13970 (find_pc_sect_compunit_symtab, find_symbol_at_address)
13971 (find_line_symtab, info_sources_command)
13972 (default_collect_symbol_completion_matches_break_on)
13973 (make_source_files_completion_list, find_main_name): Update.
13974 * symmisc.c (print_symbol_bcache_statistics)
13975 (print_objfile_statistics, maintenance_print_symbols)
13976 (maintenance_print_msymbols, maintenance_print_objfiles)
13977 (maintenance_info_symtabs, maintenance_check_symtabs)
13978 (maintenance_expand_symtabs, maintenance_info_line_tables):
13979 Update.
13980 * symfile.c (remove_symbol_file_command, overlay_invalidate_all)
13981 (find_pc_overlay, find_pc_mapped_section, list_overlays_command)
13982 (map_overlay_command, unmap_overlay_command)
13983 (simple_overlay_update, expand_symtabs_matching)
13984 (map_symbol_filenames): Update.
13985 * symfile-debug.c (set_debug_symfile): Update.
13986 * spu-tdep.c (spu_overlay_update, spu_objfile_from_frame):
13987 Update.
13988 * source.c (select_source_symtab, forget_cached_source_info):
13989 Update.
13990 * solib.c (solib_read_symbols): Update.
13991 * solib-spu.c (append_ocl_sos): Update.
13992 * psymtab.c (maintenance_print_psymbols)
13993 (maintenance_info_psymtabs, maintenance_check_psymtabs): Update.
13994 * probe.c (parse_probes_in_pspace, find_probe_by_pc): Update.
13995 * printcmd.c (info_symbol_command): Update.
13996 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created):
13997 Update.
13998 * objfiles.h (class all_objfiles): Remove.
13999 * objfiles.c (have_partial_symbols, have_full_symbols)
14000 (have_minimal_symbols, qsort_cmp, update_section_map)
14001 (shared_objfile_contains_address_p)
14002 (default_iterate_over_objfiles_in_search_order): Update.
14003 * objc-lang.c (info_selectors_command, info_classes_command)
14004 (find_methods): Update.
14005 * minsyms.c (find_solib_trampoline_target): Update.
14006 * maint.c (maintenance_info_sections)
14007 (maintenance_translate_address, count_symtabs_and_blocks):
14008 Update.
14009 * main.c (captured_main_1): Update.
14010 * linux-thread-db.c (try_thread_db_load_from_pdir)
14011 (has_libpthread): Update.
14012 * linespec.c (iterate_over_all_matching_symtabs)
14013 (search_minsyms_for_name): Update.
14014 * jit.c (jit_find_objf_with_entry_addr): Update.
14015 * hppa-tdep.c (find_unwind_entry)
14016 (hppa_lookup_stub_minimal_symbol): Update.
14017 * gcore.c (gcore_create_callback, objfile_find_memory_regions):
14018 Update.
14019 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
14020 (elf_gnu_ifunc_resolve_by_got): Update.
14021 * dwarf2-frame.c (dwarf2_frame_find_fde): Update.
14022 * dwarf-index-write.c (save_gdb_index_command): Update.
14023 * cp-support.c (add_symbol_overload_list_qualified): Update.
14024 * breakpoint.c (create_overlay_event_breakpoint)
14025 (create_longjmp_master_breakpoint)
14026 (create_std_terminate_master_breakpoint)
14027 (create_exception_master_breakpoint): Update.
14028 * blockframe.c (find_pc_partial_function): Update.
14029 * ada-lang.c (ada_lookup_simple_minsym, add_nonlocal_symbols)
14030 (ada_collect_symbol_completion_matches)
14031 (ada_add_global_exceptions): Update.
14032
776489e0
TT
140332019-01-17 Tom Tromey <tom@tromey.com>
14034
14035 * solib-target.c (lm_info_target_p): Remove typedef. Don't
14036 declare VEC.
14037 (solib_target_parse_libraries): Change return type.
14038 (library_list_start_segment, library_list_start_section)
14039 (library_list_end_library, library_list_start_library); Update.
14040 (solib_target_free_library_list): Remove.
14041 (solib_target_parse_libraries): Remove cleanup. Change return
14042 type.
14043 (solib_target_current_sos): Update.
14044
6471e7d2
TT
140452019-01-17 Tom Tromey <tromey@bapiya>
14046
14047 * valprint.c: Replace "the the" with "the".
14048 * symtab.c: Replace "the the" with "the".
14049 * solib.c: Replace "the the" with "the".
14050 * solib-dsbt.c: Replace "the the" with "the".
14051 * linespec.c: Replace "the the" with "the".
14052 * dwarf2loc.h: Replace "the the" with "the".
14053 * amd64-windows-tdep.c: Replace "the the" with "the".
14054 * aarch64-tdep.c: Replace "the the" with "the".
14055
c24bdb02
KS
140562019-01-16 Keith Seitz <keiths@redhat.com>
14057
14058 PR gdb/23773
14059 * dwarf2read.c (dwarf2_cu) <ancestor>: New field.
14060 <builder>: Rename to ..
14061 <m_builder>: ... this and make private.
14062 (dwarf2_cu::get_builder): New method. Change all users of
14063 `builder' to use this method.
14064 (dwarf2_start_symtab): Move to ...
14065 (dwarf2_cu::start_symtab): ... here. Update all callers
14066 (setup_type_unit_groups): Move to ...
14067 (dwarf2_cu::setup_type_unit_groups): ... here. Update all
14068 callers.
14069 (dwarf2_cu::reset_builder): New method.
14070 (process_full_compunit, process_full_type_unit): Use
14071 dwarf2_cu::reset_builder.
14072 (follow_die_offset): Record the ancestor CU if it is different
14073 from the followed DIE's CU.
14074 (follow_die_sig_1): Likewise.
14075
8d64371b
TT
140762019-01-15 Tom Tromey <tom@tromey.com>
14077
14078 * remote.c (class remote_state) <buf>: Now a char_vector.
14079 <buf_size>: Remove.
14080 (remote_target::getpkt): Change type of buf. Remove sizeof_buf
14081 parameter.
14082 (remote_target::getpkt_or_notif_sane_1)
14083 (remote_target::getpkt_sane)
14084 (remote_target::getpkt_or_notif_sane): Likewise.
14085 (class remote_target) <putpkt>: New overload.
14086 (remote_target::read_frame): Change type of "buf_p". Remove
14087 sizeof_p parameter.
14088 (packet_ok): New overload.
14089 (packet_check_result): New overload.
14090 Update all uses.
14091
bb277751
TT
140922019-01-14 Tom Tromey <tom@tromey.com>
14093
14094 * remote-notif.c (handle_notification, remote_notif_ack)
14095 (remote_notif_parse): Make "buf" const.
14096 * remote-notif.h (struct notif_client) <parse, ack>: Make "buf"
14097 const.
14098 (remote_notif_parse, remote_notif_ack, handle_notification):
14099 Likewise.
14100 * remote.c (remote_notif_stop_parse): Make "buf" const.
14101 (remote_target::remote_parse_stop_reply): Make "buf" const.
14102 (remote_notif_stop_ack): Make "buf" const.
14103
05be00a8
TT
141042019-01-14 Tom Tromey <tom@tromey.com>
14105
14106 * remote.c (remote_console_output): Make parameter const.
14107
491adeca
TT
141082019-01-14 Tom Tromey <tom@tromey.com>
14109
14110 * target-debug.h (target_debug_print_signals): Constify.
14111 * nto-procfs.c (nto_procfs_target::pass_signals): Update.
14112 * procfs.c (procfs_target::pass_signals): Update.
14113 * linux-nat.c (linux_nat_target::pass_signals): Update.
14114 * linux-nat.h (class linux_nat_target) <pass_signals>: Update.
14115 * target-delegates.c: Rebuild.
14116 * remote.c (remote_target::program_signals): Update.
14117 (remote_target::pass_signals): Update.
14118 * target.c (target_pass_signals): Constify argument.
14119 (target_program_signals): Likewise.
14120 * target.h (struct target_ops) <pass_signals, program_signals>:
14121 Constify argument.
14122 (target_pass_signals, target_program_signals): Constify argument.
14123
bbd94648
TT
141242019-01-14 Tom Tromey <tom@tromey.com>
14125
14126 PR tui/28819:
14127 * tui/tui-io.c (gdb_wgetch): Print \r when needed.
14128
6f072a10
PFC
141292019-01-14 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
14130
14131 * ppc-tdep.h (struct gdbarch_tdep) <ppc_v0_alias_regnum>: New
14132 field.
14133 * rs6000-tdep.c: Include reggroups.h.
14134 (IS_V_ALIAS_PSEUDOREG): Define.
14135 (rs6000_register_name): Return names for the "vX" aliases.
14136 (rs6000_pseudo_register_type): Return type for the "vX" aliases.
14137 (rs6000_pseudo_register_reggroup_p): Restore. Handle "vX"
14138 aliases. Call default_register_reggroup_p for all other
14139 pseudo-registers.
14140 (v_alias_pseudo_register_read, v_alias_pseudo_register_write):
14141 New functions.
14142 (rs6000_pseudo_register_read, rs6000_pseudo_register_write):
14143 Handle "vX" aliases.
14144 (v_alias_pseudo_register_collect): New function.
14145 (rs6000_ax_pseudo_register_collect): Handle "vX" aliases.
14146 (rs6000_gdbarch_init): Initialize "vX" aliases as
14147 pseudo-registers. Restore registration of
14148 rs6000_pseudo_register_reggroup_p with
14149 set_tdesc_pseudo_register_reggroup_p.
14150
1a782351
MF
141512019-01-13 Max Filippov <jcmvbkbc@gmail.com>
14152
14153 * xtensa-linux-tdep.c (xtensa_linux_init_abi): Update
14154 tdep->num_pseudo_regs. Add calls to set_gdbarch_num_regs and
14155 set_gdbarch_num_pseudo_regs.
14156
d73cff18
PW
141572019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14158
14159 * cli/cli-style.h (class cli_style_option): <add_setshow_commands>
14160 Remove arg prefixname, add do_set and do_show.
14161 Add member functions set_list and show_list.
14162 * cli/cli-style.c (class cli_style_option): Update accordingly.
14163 (style_set_list): Move to file scope.
14164 (style_show_list): Likewise.
14165 (set_style): Call help_list.
14166 (show_style): Call cmd_show_list.
14167 (_initialize_cli_style): New macro STYLE_ADD_SETSHOW_COMMANDS.
14168 Update to use the new macro.
14169
60a90376
JB
141702019-10-12 Joel Brobecker <brobecker@adacore.com>
14171
14172 * ada-lang.c (_initialize_ada_language): Expand the help text
14173 for the "catch exception" command.
14174
9d7c67bf
PW
141752019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14176
14177 * symtab.c (matching_obj_sections): Initialize obj,
14178 declare it closer to its usage.
14179
7cf47dc4
TT
141802019-01-10 Tom Tromey <tom@tromey.com>
14181
14182 * thread-iter.h (inf_threads_iterator): Use next_iterator.
14183 (basic_inf_threads_range): Remove.
14184 (inf_threads_range, inf_non_exited_threads_range)
14185 (safe_inf_threads_range): Use next_adapter.
14186
d3cb6808
KS
141872019-01-10 Keith Seitz <keiths@redhat.com>
14188
14189 PR gdb/23712
14190 PR symtab/23010
14191 * dwarf2read.c (dw2_add_symbol_to_list): Remove.
14192 (fixup_go_packaging, new_symbol): Use add_symbol_to_list.
14193
63a20375
KS
141942019-01-10 Keith Seitz <keiths@redhat.com>
14195
14196 PR gdb/23712
14197 PR symtab/23010
14198 * dictionary.c (pending_to_vector): Remove.
14199 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
14200 Remove _1 suffix, replacing functions of the same name. Update
14201 all callers.
14202 (dict_create_hashed, dict_create_hashed_expandable)
14203 (dict_create_linear, dict_create_linear_expandable, dict_free)
14204 (dict_add_symbol, dict_add_pending, dict_size, dict_empty):
14205 Make functions static.
14206
b026f593
KS
142072019-01-10 Keith Seitz <keiths@redhat.com>
14208
14209 PR gdb/23712
14210 PR symtab/23010
14211 * dictionary.h (struct dictionary): Replace declaration with
14212 multidictionary.
14213 (dict_create_hashed, dict_create_hashed_expandable)
14214 (dict_create_linear, dict_create_linear_expandable)
14215 (dict_free, dict_add_symbol, dict_add_pending, dict_empty)
14216 (dict_iterator_first, dict_iterator_next, dict_iter_match_first)
14217 (dict_iter_match_next, dict_size): Rename to "mdict_" versions
14218 taking multidictionary argument.
14219 [ALL_DICT_SYMBOLS]: Update for multidictionary.
14220 * block.h (struct block) <dict>: Change to multidictionary
14221 and rename `multidict'.
14222 * block.c, buildsym.c, jit.c, mdebugread.c, objfiles.c,
14223 symmisc.c: Update all dictionary references to multidictionary.
14224
c7748ee9
KS
142252019-01-10 Keith Seitz <keiths@redhat.com>
14226
14227 PR gdb/23712
14228 PR symtab/23010
14229 * dictionary.c: Include unordered_map.
14230 (pending_to_vector): New function.
14231 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
14232 Rewrite the non-"_1" functions to take vector instead
14233 of linked list.
14234 (dict_create_hashed, dict_create_linear, dict_add_pending): Use the
14235 "new" _1 versions of the same name.
14236 (multidictionary): Define.
14237 (std::hash<enum language): New definition.
14238 (collate_pending_symbols_by_language, mdict_create_hashed)
14239 (mdict_create_hashed_expandable, mdict_create_linear)
14240 (mdict_create_linear_expandable, mdict_free)
14241 (find_language_dictionary, create_new_language_dictionary)
14242 (mdict_add_symbol, mdict_add_pending, mdict_iterator_first)
14243 (mdict_iterator_next, mdict_iter_match_first, mdict_iter_match_next)
14244 (mdict_size, mdict_empty): New functions.
14245 * dictionary.h (mdict_iterator): Define.
14246
67aa1f3c
PA
142472019-01-10 Pedro Alves <palves@redhat.com>
14248
14249 * breakpoint.c (read_uploaded_action)
14250 (create_tracepoint_from_upload): Adjust to use
14251 gdb::unique_xmalloc_ptr.
14252 * ctf.c (ctf_write_uploaded_tp):
14253 (SET_ARRAY_FIELD): Use emplace_back.
14254 (SET_STRING_FIELD): Adjust to use gdb::unique_xmalloc_ptr.
14255 * tracefile-tfile.c (tfile_write_uploaded_tp):
14256 * tracepoint.c (parse_tracepoint_definition): Adjust to use
14257 gdb::unique_xmalloc_ptr.
14258 * tracepoint.h (struct uploaded_tp) <cond, actions, step_actions,
14259 at_string, cond_string, cmd_strings>: Replace char pointers
14260 with gdb::unique_xmalloc_ptr.
14261
2f667667
PA
142622019-01-10 Pedro Alves <palves@redhat.com>
14263
14264 * solib-target.c (library_list_start_library): Don't xstrdup name.
14265
36cb7237
PA
142662019-01-10 Pedro Alves <palves@redhat.com>
14267
14268 * mdebugread.c (parse_partial_symbols): Use
14269 gdb::unique_xmalloc_ptr to manage heap-allocated 'stabsstring'.
14270
da584958
AB
142712019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
14272
14273 * linux-fork.c (scoped_switch_fork_info)
14274 <~scoped_switch_fork_info>: Fix incorrect variable name.
14275
1ef8573c
AB
142762019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
14277
14278 * linux-fork.c (scoped_switch_fork_info)
14279 <scoped_switch_fork_info>: Make explicit.
14280 <~scoped_switch_fork_info>: Wrap core in TRY/CATCH.
14281
8d7bcccb
TT
142822019-01-10 Tom Tromey <tom@tromey.com>
14283
14284 * objfiles.h (objfile::reset_psymtabs): Update.
14285 * objfiles.c (objfile::objfile): Update.
14286 * psymtab.h (psymtab_storage::obstack): Update.
14287 (psymtab_storage::m_obstack): Use gdb::optional.
14288 (class psymtab_storage): Update comment. Remove objfile
14289 parameter.
14290 * psymtab.c (psymtab_storage::psymtab_storage): Update.
14291
b596a3c7
TT
142922019-01-10 Tom Tromey <tom@tromey.com>
14293
14294 * psymtab.h (psymtab_storage::allocate_psymtab): New method.
14295 <free_psymtabs>: Now private.
14296 * psymtab.c (psymtab_storage::allocate_psymtab): Implement.
14297 (allocate_psymtab): Use new method.
14298
a9342b62
TT
142992019-01-10 Tom Tromey <tom@tromey.com>
14300
14301 * xcoffread.c (xcoff_end_psymtab): Use allocate_dependencies.
14302 * psymtab.h (psymtab_storage::allocate_dependencies): New method.
14303 * mdebugread.c (parse_partial_symbols): Use
14304 allocate_dependencies.
14305 * dwarf2read.c (dwarf2_create_include_psymtab): Use
14306 allocate_dependencies.
14307 (process_psymtab_comp_unit_reader)
14308 (build_type_psymtab_dependencies): Likewise.
14309 * dbxread.c (dbx_end_psymtab): Use allocate_dependencies.
14310
5af70966
TT
143112019-01-10 Tom Tromey <tom@tromey.com>
14312
14313 * psymtab.c (add_psymbol_to_bcache): Pass psymtab obstack to
14314 PSYMBOL_SET_LANGUAGE.
14315 (allocate_psymtab): Allocate psymtab on the psymtab obstack.
14316
5923a04c
TT
143172019-01-10 Tom Tromey <tom@tromey.com>
14318
14319 * psymtab.h (psymtab_storage::obstack): New method.
14320 <m_obstack>: Rename from obstack; now private.
14321 * psymtab.c (psymtab_storage): Update.
14322 * dwarf2read.c (create_addrmap_from_index)
14323 (create_addrmap_from_aranges, dwarf2_build_psymtabs_hard):
14324 Update.
14325
6d6a12bf
TT
143262019-01-10 Tom Tromey <tom@tromey.com>
14327
14328 * symfile.c (reread_symbols): Call objfile->reset_psymtabs.
14329 * objfiles.h (objfile::reset_psymtabs): New method.
14330
d320c2b5
TT
143312019-01-10 Tom Tromey <tom@tromey.com>
14332
14333 * symmisc.c (print_symbol_bcache_statistics): Update.
14334 (print_objfile_statistics): Update.
14335 * symfile.c (reread_symbols): Update.
14336 * psymtab.h (class psymtab_storage): New.
14337 * psymtab.c (psymtab_storage): New constructor.
14338 (~psymtab_storage): New destructor.
14339 (require_partial_symbols): Update.
14340 (ALL_OBJFILE_PSYMTABS_REQUIRED): Rewrite.
14341 (find_pc_sect_psymtab, find_pc_sect_psymbol)
14342 (match_partial_symbol, lookup_partial_symbol, dump_psymtab)
14343 (psym_dump, recursively_search_psymtabs, psym_has_symbols)
14344 (psym_find_compunit_symtab_by_address, sort_pst_symbols)
14345 (start_psymtab_common, end_psymtab_common)
14346 (add_psymbol_to_bcache, add_psymbol_to_list, init_psymbol_list)
14347 (allocate_psymtab): Update.
14348 (psymtab_storage::discard_psymtab): Rename from discard_psymtab.
14349 Update.
14350 (dump_psymtab_addrmap, maintenance_print_psymbols)
14351 (maintenance_check_psymtabs): Update.
14352 (class objfile_psymtabs): Move to objfiles.h.
14353 * psympriv.h (discard_psymtab): Now inline.
14354 (psymtab_discarder::psymtab_discarder): Update.
14355 (psymtab_discarder::~psymtab_discarder): Update.
14356 (ALL_OBJFILE_PSYMTABS): Rewrite.
14357 * objfiles.h (struct objfile) <psymtabs, psymtabs_addrmap,
14358 free_psymtabs, psymbol_cache, global_psymbols, static_psymbols>:
14359 Remove fields.
14360 <partial_symtabs>: New field.
14361 (class objfile_psymtabs): Move from psymtab.h. Update.
14362 * objfiles.c (objfile::objfile): Initialize partial_symtabs, not
14363 psymbol_cache.
14364 (objfile::~objfile): Don't destroy psymbol_cache.
14365 * mdebugread.c (parse_partial_symbols): Update.
14366 * dwarf2read.c (create_addrmap_from_index)
14367 (create_addrmap_from_aranges, dw2_find_pc_sect_compunit_symtab)
14368 (process_psymtab_comp_unit_reader, dwarf2_build_psymtabs_hard)
14369 (add_partial_subprogram, dwarf2_ranges_read): Update.
14370 * dwarf-index-write.c (write_address_map)
14371 (write_one_signatured_type, recursively_write_psymbols)
14372 (class debug_names, class debug_names, write_psymtabs_to_index):
14373 Update.
14374
1d94a5a3
TT
143752019-01-10 Tom Tromey <tom@tromey.com>
14376
14377 * symtab.h (SYMBOL_SET_NAMES): Update.
14378 (symbol_set_names): Update.
14379 (MSYMBOL_SET_NAMES): Update.
14380 * symtab.c (symbol_set_names): Change argument to be an
14381 objfile_per_bfd_storage.
14382 * psymtab.c (add_psymbol_to_bcache): Update.
14383 * psympriv.h (PSYMBOL_SET_NAMES): Take per_bfd argument.
14384
0f14768a
TT
143852019-01-10 Tom Tromey <tom@tromey.com>
14386
14387 * symtab.c (create_demangled_names_hash): Change argument to be an
14388 objfile_per_bfd_storage.
14389 (symbol_set_names): Update.
14390
6eee24ce
TT
143912019-01-10 Tom Tromey <tom@tromey.com>
14392
14393 * xcoffread.c (xcoff_initial_scan): Unconditionally call
14394 init_psymbol_list.
14395 * psymtab.c (init_psymbol_list): Do nothing if already called.
14396 * psympriv.h (init_psymbol_list): Add comment.
14397 * dwarf2read.c (dwarf2_build_psymtabs): Unconditionally call
14398 init_psymbol_list.
14399 * dbxread.c (dbx_symfile_read): Unconditionally call
14400 init_psymbol_list.
14401
75aedd27
TT
144022019-01-10 Tom Tromey <tom@tromey.com>
14403
14404 * xcoffread.c (scan_xcoff_symtab): Update.
14405 * psymtab.c (add_psymbol_to_list): Replace "list" parameter with
14406 "where".
14407 * mdebugread.c (parse_partial_symbols)
14408 (handle_psymbol_enumerators): Update.
14409 * dwarf2read.c (add_partial_symbol, load_partial_dies): Update.
14410 * dbxread.c (read_dbx_symtab): Update.
14411 * psympriv.h (psymbol_placement): New enum.
14412 (add_psymbol_to_list): Update.
14413
939652a5
TT
144142019-01-10 Tom Tromey <tom@tromey.com>
14415
14416 * xcoffread.c (xcoff_start_psymtab): Remove global_psymbols and
14417 static_psymbols parameters.
14418 (scan_xcoff_symtab): Update.
14419 * psymtab.c (start_psymtab_common): Remove global_psymbols and
14420 static_psymbols parameters.
14421 * psympriv.h (start_psymtab_common): Update.
14422 * mdebugread.c (parse_partial_symbols): Update.
14423 * dwarf2read.c (create_partial_symtab): Update.
14424 * dbxread.c (read_dbx_symtab): Update.
14425 (start_psymtab): Remove global_psymbols and static_psymbols
14426 parameters.
14427
baa62830
TT
144282019-01-10 Tom Tromey <tom@tromey.com>
14429
14430 * xcoffread.c (xcoff_end_psymtab): Remove some initializations.
14431 * psymtab.c (allocate_psymtab): Add comment.
14432 * psympriv.h (allocate_psymtab): Add comment.
14433 * dwarf2read.c (dwarf2_create_include_psymtab): Remove some
14434 initializations.
14435 * dbxread.c (dbx_end_psymtab): Remove some initializations.
14436
0e8f53ba
TT
144372019-01-10 Tom Tromey <tom@tromey.com>
14438
14439 * symfile.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
14440 Don't declare.
14441 * mipsread.c: Include mdebugread.h.
14442 * mdebugread.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
14443 Declare.
14444 * elfread.c: Include mdebugread.h.
14445
b22a7c6a
TT
144462019-01-09 Tom Tromey <tom@tromey.com>
14447
14448 * dbxread.c (dbx_end_psymtab): Use objfile_psymtabs.
14449 * mdebugread.c (parse_partial_symbols): Use objfile_psymtabs.
14450 * psymtab.c (ALL_OBJFILE_PSYMTABS_REQUIRED): Remove.
14451 (psym_map_symtabs_matching_filename, find_pc_sect_psymtab)
14452 (psym_lookup_symbol, psym_find_last_source_symtab)
14453 (psym_forget_cached_source_info, psym_print_stats)
14454 (psym_expand_symtabs_for_function, psym_expand_all_symtabs)
14455 (psym_expand_symtabs_with_fullname, psym_map_symbol_filenames)
14456 (psym_map_matching_symbols, psym_expand_symtabs_matching)
14457 (psym_find_compunit_symtab_by_address)
14458 (maintenance_print_psymbols, maintenance_info_psymtabs)
14459 (maintenance_check_psymtabs): Use ranged for.
14460 * psymtab.h (class objfile_psymtabs): New.
14461 (require_partial_symbols): Return objfile_psymtabs.
14462 * psympriv.h (ALL_OBJFILE_PSYMTABS): Remove.
14463
3b9d3ac2
TT
144642019-01-09 Tom Tromey <tom@tromey.com>
14465
14466 * symfile.c (overlay_invalidate_all, find_pc_overlay)
14467 (find_pc_mapped_section, list_overlays_command)
14468 (map_overlay_command, unmap_overlay_command)
14469 (simple_overlay_update): Use all_objfiles.
14470 * spu-tdep.c (spu_overlay_update): Use all_objfiles.
14471 * printcmd.c (info_symbol_command): Use all_objfiles.
14472 * objfiles.h (ALL_OBJSECTIONS): Remove.
14473 * maint.c (maintenance_translate_address): Use all_objfiles.
14474 * gcore.c (gcore_create_callback): Use all_objfiles.
14475 (objfile_find_memory_regions): Likewise.
14476
8b31193a
TT
144772019-01-09 Tom Tromey <tom@tromey.com>
14478
14479 * symtab.c (find_line_symtab, info_sources_command)
14480 (make_source_files_completion_list): Use objfile_compunits.
14481 * source.c (select_source_symtab): Use objfile_compunits.
14482 * objfiles.h (struct objfile): Update comment.
14483 (ALL_OBJFILES): Remove.
14484 (ALL_FILETABS): Remove.
14485 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Use
14486 objfile_compunits.
14487
d5da8b3c
TT
144882019-01-09 Tom Tromey <tom@tromey.com>
14489
14490 * symmisc.c (print_objfile_statistics, dump_objfile)
14491 (maintenance_print_symbols): Use compunit_filetabs.
14492 * source.c (forget_cached_source_info_for_objfile): Use
14493 compunit_filetabs.
14494 * objfiles.h (ALL_OBJFILE_FILETABS): Remove.
14495 (ALL_FILETABS): Use compunit_filetabs.
14496 * objfiles.c (objfile_relocate1): Use compunit_filetabs.
14497 * coffread.c (coff_symtab_read): Use compunit_filetabs.
14498
5accd1a0
TT
144992019-01-09 Tom Tromey <tom@tromey.com>
14500
14501 * symtab.h (ALL_COMPUNIT_FILETABS): Remove.
14502 (compunit_filetabs): New.
14503 * symtab.c (iterate_over_some_symtabs, find_pc_sect_line): Use
14504 compunit_filetabs.
14505 (info_sources_command, make_source_files_completion_list): Remove
14506 declaration.
14507 * symmisc.c (print_objfile_statistics, dump_objfile)
14508 (maintenance_print_symbols): Remove declaration.
14509 (maintenance_info_symtabs): Use compunit_filetabs.
14510 (maintenance_info_line_tables): Likewise.
14511 * source.c (select_source_symtab): Change local variable name.
14512 (forget_cached_source_info_for_objfile): Remove declaration.
14513 * objfiles.h (ALL_OBJFILE_FILETABS): Use compunit_filetabs.
14514 * objfiles.c (objfile_relocate1): Remove declaration.
14515 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
14516 declaration.
14517 * maint.c (count_symtabs_and_blocks): Use compunit_filetabs.
14518 * coffread.c (coff_symtab_read): Remove declaration.
14519 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
14520 compunit_filetabs.
14521
d8aeb77f
TT
145222019-01-09 Tom Tromey <tom@tromey.com>
14523
14524 * symtab.c (lookup_objfile_from_block)
14525 (find_pc_sect_compunit_symtab, search_symbols)
14526 (default_collect_symbol_completion_matches_break_on): Use
14527 objfile_compunits.
14528 * objfiles.h (ALL_COMPUNITS): Remove.
14529 * maint.c (count_symtabs_and_blocks): Use objfile_compunits.
14530 * cp-support.c (add_symbol_overload_list_qualified): Use
14531 objfile_compunits.
14532 * ada-lang.c (ada_collect_symbol_completion_matches)
14533 (ada_add_global_exceptions): Use objfile_compunits.
14534
592553c4
TT
145352019-01-09 Tom Tromey <tom@tromey.com>
14536
14537 * source.c (select_source_symtab)
14538 (forget_cached_source_info_for_objfile): Remove declaration.
14539 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
14540 declaration.
14541 * maint.c (count_symtabs_and_blocks): Remove declaration.
14542 * cp-support.c (add_symbol_overload_list_qualified): Remove
14543 declaration.
14544 * coffread.c (coff_symtab_read): Remove declaration.
14545 * symtab.c (lookup_symbol_in_objfile_symtabs)
14546 (basic_lookup_transparent_type_1): Use objfile_compunits.
14547 (lookup_objfile_from_block, find_pc_sect_compunit_symtab)
14548 (info_sources_command, search_symbols)
14549 (default_collect_symbol_completion_matches_break_on)
14550 (make_source_files_completion_list): Remove declaration.
14551 * ada-lang.c (add_nonlocal_symbols): Use objfile_compunits.
14552 (ada_collect_symbol_completion_matches)
14553 (ada_add_global_exceptions): Remove declaration.
14554 * linespec.c (iterate_over_all_matching_symtabs): Use
14555 objfile_compunits.
14556 * objfiles.h (ALL_OBJFILE_COMPUNITS): Remove.
14557 (class objfile_compunits): New.
14558 (ALL_COMPUNITS): Use objfile_compunits.
14559 * symmisc.c (print_objfile_statistics, maintenance_info_symtabs)
14560 (maintenance_check_symtabs, maintenance_info_line_tables): Use
14561 objfile_compunits.
14562 * objfiles.c (objfile_relocate1): Use objfile_compunits.
14563
5325b9bf
TT
145642019-01-09 Tom Tromey <tom@tromey.com>
14565
14566 * symtab.c (search_symbols)
14567 (default_collect_symbol_completion_matches_break_on): Use
14568 objfile_msymbols.
14569 * ada-lang.c (ada_lookup_simple_minsym)
14570 (ada_collect_symbol_completion_matches): Use objfile_msymbols.
14571 * minsyms.c (find_solib_trampoline_target): Use objfile_msymbols.
14572 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Use
14573 objfile_msymbols.
14574 * coffread.c (coff_symfile_read): Use objfile_msymbols.
14575 * symmisc.c (dump_msymbols): Use objfile_msymbols.
14576 * objc-lang.c (find_methods): Use objfile_msymbols.
14577 (info_selectors_command, info_classes_command): Likewise.
14578 * stabsread.c (scan_file_globals): Use objfile_msymbols.
14579 * objfiles.h (class objfile_msymbols): New.
14580 (ALL_OBJFILE_MSYMBOLS): Remove.
14581 (ALL_MSYMBOLS): Remove.
14582
cac85af2
TT
145832019-01-09 Tom Tromey <tom@tromey.com>
14584
14585 * common/next-iterator.h (next_adapter): Add Iterator template
14586 parameter.
14587 * objfiles.h (ALL_OBJFILES_SAFE): Remove.
14588 (class all_objfiles_safe): New.
14589 * jit.c (jit_inferior_exit_hook): Use all_objfiles_safe.
14590 * objfiles.c (put_objfile_before): Update comment.
14591 (add_separate_debug_objfile): Likewise.
14592 (free_all_objfiles): Use all_objfiles_safe.
14593 (objfile_purge_solibs): Likewise.
14594
aed57c53
TT
145952019-01-09 Tom Tromey <tom@tromey.com>
14596
14597 * symtab.c (iterate_over_symtabs, matching_obj_sections)
14598 (expand_symtab_containing_pc, lookup_static_symbol)
14599 (basic_lookup_transparent_type, find_pc_sect_compunit_symtab)
14600 (find_symbol_at_address, find_line_symtab, find_main_name): Use
14601 all_objfiles.
14602 * probe.c (find_probe_by_pc, collect_probes): Use all_objfiles.
14603 * breakpoint.c (create_overlay_event_breakpoint)
14604 (create_longjmp_master_breakpoint)
14605 (create_std_terminate_master_breakpoint)
14606 (create_exception_master_breakpoint): Use all_objfiles.
14607 * linux-thread-db.c (try_thread_db_load_from_pdir)
14608 (has_libpthread): Use all_objfiles.
14609 * ada-lang.c (add_nonlocal_symbols): Use all_objfiles.
14610 * linespec.c (iterate_over_all_matching_symtabs)
14611 (search_minsyms_for_name): Use all_objfiles.
14612 * maint.c (maintenance_info_sections): Use all_objfiles.
14613 * main.c (captured_main_1): Use all_objfiles.
14614 * spu-tdep.c (spu_objfile_from_frame): Use all_objfiles.
14615 * guile/scm-objfile.c (gdbscm_objfiles): Use all_objfiles.
14616 * guile/scm-pretty-print.c
14617 (ppscm_find_pretty_printer_from_objfiles): Use all_objfiles.
14618 * solib-spu.c (append_ocl_sos): Use all_objfiles.
14619 * symmisc.c (maintenance_print_symbols): Use all_objfiles.
14620 (maintenance_print_msymbols): Use all_objfiles.
14621 * source.c (select_source_symtab): Use all_objfiles.
14622 * jit.c (jit_find_objf_with_entry_addr): Use all_objfiles.
14623 * symfile.c (remove_symbol_file_command)
14624 (expand_symtabs_matching, map_symbol_filenames): Use
14625 all_objfiles.
14626 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created): Use
14627 all_objfiles.
14628 * dwarf2-frame.c (dwarf2_frame_find_fde): Use all_objfiles.
14629 * objc-lang.c (find_methods): Use all_objfiles.
14630 * objfiles.c (have_partial_symbols, have_full_symbols)
14631 (have_minimal_symbols, qsort_cmp)
14632 (default_iterate_over_objfiles_in_search_order): Use
14633 all_objfiles.
14634 * hppa-tdep.c (find_unwind_entry): Use all_objfiles.
14635 * psymtab.c (maintenance_print_psymbols): Use all_objfiles.
14636 (maintenance_check_psymtabs): Use all_objfiles.
14637 (ALL_PSYMTABS): Remove.
14638 * compile/compile-object-run.c (do_module_cleanup): Use
14639 all_objfiles.
14640 * blockframe.c (find_pc_partial_function): Use all_objfiles.
14641 * cp-support.c (add_symbol_overload_list_qualified): Use
14642 all_objfiles.
14643 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
14644 Use all_objfiles.
14645 * dwarf-index-write.c (save_gdb_index_command): Use all_objfiles.
14646 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): Use
14647 all_objfiles.
14648 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
14649 (objfpy_lookup_objfile_by_build_id): Use all_objfiles.
14650 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
14651 Uses all_objfiles.
14652 * solib.c (solib_read_symbols): Use all_objfiles
14653
99d89cde
TT
146542019-01-09 Tom Tromey <tom@tromey.com>
14655
14656 * probe.c (parse_probes_in_pspace): Use all_objfiles.
14657 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Use
14658 all_objfiles.
14659 * objfiles.h (ALL_PSPACE_OBJFILES): Remove.
14660 * symmisc.c (print_symbol_bcache_statistics)
14661 (print_objfile_statistics, maintenance_print_objfiles)
14662 (maintenance_info_symtabs, maintenance_check_symtabs)
14663 (maintenance_expand_symtabs, maintenance_info_line_tables): Use
14664 all_objfiles.
14665 * source.c (forget_cached_source_info): Use all_objfiles.
14666 * symfile-debug.c (set_debug_symfile): Use all_objfiles.
14667 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
14668 (elf_gnu_ifunc_resolve_by_got): Use all_objfiles.
14669 * objfiles.c (update_section_map): Use all_objfiles.
14670 (shared_objfile_contains_address_p): Likewise.
14671 * psymtab.c (maintenance_info_psymtabs): Use all_objfiles.
14672 * python/py-progspace.c (pspy_get_objfiles): Use all_objfiles.
14673
21708325
TT
146742019-01-09 Tom Tromey <tom@tromey.com>
14675
14676 * common/next-iterator.h: New file.
14677 * objfiles.h (class all_objfiles): New.
14678 (struct objfile_iterator): New.
14679
669e09f6
PW
146802019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14681
14682 * NEWS: Move the description of the changed "frame", "select-frame",
14683 and "info frame" commands to the Changed commands section.
14684
041be526
SM
146852019-01-09 Simon Marchi <simon.marchi@ericsson.com>
14686
14687 * gdbtypes.c (check_stub_method_group): Remove handling of old
14688 mangling schemes.
14689 * linespec.c (find_methods): Likewise.
14690 * stabsread.c (read_member_functions): Likewise.
14691 * valops.c (search_struct_method): Likewise.
14692 (value_struct_elt_for_reference): Likewise.
14693 * NEWS: Mention this change.
14694
0e2a2133
AB
146952019-01-09 Andrew Burgess <andrew.burgess@embecosm.com>
14696
14697 * cli/cli-cmds.c (list_command): Pass a source_lines_range to
14698 print_source_lines.
14699 * source.c (print_source_lines_base): Update line number check.
14700 (print_source_lines): New function.
14701 (source_lines_range::source_lines_range): New function.
14702 * source.h (class source_lines_range): New class.
14703 (print_source_lines): New declaration.
14704
1055a3b4
PW
147052019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14706
14707 * linespec.c (linespec_state_destructor): Free self->canonical_names.
14708
cfeadda5
TT
147092019-01-08 Tom Tromey <tom@tromey.com>
14710 Simon Marchi <simon.marchi@ericsson.com>
14711
14712 PR gdb/24060
14713 * ada-exp.y (DOLLAR_VARIABLE): Rename from SPECIAL_VARIABLE.
14714 * ada-lex.l (DOLLAR_VARIABLE): Likewise.
14715 * c-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
14716 * f-exp.y (DOLLAR_VARIABLE): Likewise.
14717 * m2-exp.y (DOLLAR_VARIABLE): Rename from INTERNAL_VAR.
14718 * p-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
14719
583068ca
AB
147202019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
14721
14722 * source.c (select_source_symtab): Move header comment to
14723 declaration in source.h.
14724 (forget_cached_source_info_for_objfile): Likewise.
14725 (forget_cached_source_info): Likewise.
14726 (identify_source_line): Likewise.
14727 * source.h (identify_source_line): Move declaration from symtab.h
14728 and add comment from source.c
14729 (print_source_lines): Likewise.
14730 (forget_cached_source_info_for_objfile): Likewise.
14731 (forget_cached_source_info): Likewise.
14732 (select_source_symtab): Likewise.
14733 (enum print_source_lines_flag): Move definition from symtab.h.
14734 * symtab.h (identify_source_line): Move declaration to source.h.
14735 (print_source_lines): Likewise.
14736 (forget_cached_source_info_for_objfile): Likewise.
14737 (forget_cached_source_info): Likewise.
14738 (select_source_symtab): Likewise.
14739 (enum print_source_lines_flag): Move definition to source.h.
14740 * tui/tui-hooks.c: Add 'source.h' include.
14741
ec98a4ad
AB
147422019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
14743
14744 * source.c (print_source_lines_base): Handle requests to print
14745 reverse line number sequences, and guard against empty lines
14746 string.
14747
62ea19c1
AB
147482019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
14749
14750 * source.c (print_source_lines_base): Fix skip of '\r' if next
14751 character is '\n'.
14752
9d30e1fd
TT
147532019-01-06 Tom Tromey <tom@tromey.com>
14754
14755 * c-exp.y (struct c_parse_state) <macro_original_text,
14756 expansion_obstack>: New member.
14757 (macro_original_text, expansion_obstack): Remove globals.
14758 (scan_macro_expansion, scanning_macro_expansion)
14759 (finished_macro_expansion): Update.
14760 (scan_macro_cleanup): Remove.
14761 (yylex, c_parse): Update.
14762
c65bac38
TT
147632019-01-06 Tom Tromey <tom@tromey.com>
14764
14765 * c-exp.y (struct c_parse_state) <strings>: New member.
14766 (operator_stoken): Update.
14767
02e12e38
TT
147682019-01-06 Tom Tromey <tom@tromey.com>
14769
14770 * parser-defs.h (type_ptr): Remove typedef. Don't declare VEC.
14771 (union type_stack_elt) <typelist_val>: Now a pointer to
14772 std::vector.
14773 (type_stack_cleanup): Don't declare.
14774 (push_typelist): Update.
14775 * parse.c (pop_typelist): Return a std::vector.
14776 (push_typelist): Take a std::vector.
14777 (follow_types): Update. Do not free args.
14778 (type_stack_cleanup): Remove.
14779 * c-exp.y (struct c_parse_state): New.
14780 (cpstate): New global.
14781 (type_aggregate_p, exp, ptr_operator, parameter_typelist)
14782 (nonempty_typelist): Update.
14783 (func_mod): Create a new vector.
14784 (c_parse): Create a c_parse_state.
14785 (check_parameter_typelist): Do not delete params.
14786 (function_method): Update. Do not delete type_list.
14787
f097f5ad
TT
147882019-01-06 Tom Tromey <tom@tromey.com>
14789
14790 PR gdb/28155:
14791 * python/py-finishbreakpoint.c (bpfinishpy_init): Use
14792 check_typedef.
14793 * infcmd.c (finish_command_fsm_should_stop): Use check_typedef.
14794 (print_return_value): Likewise.
14795
d2adf9f1
TT
147962019-01-05 Tom Tromey <tom@tromey.com>
14797
14798 * contrib/cleanup_check.py: Remove.
14799 * contrib/gcc-with-excheck: Remove.
14800 * contrib/exsummary.py: Remove.
14801 * contrib/excheck.py: Remove.
14802
2eab46b1
JB
148032019-01-05 Joel Brobecker <brobecker@adacore.com>
14804
14805 * thread.c (delete_thread_1): Add gdb_assert that THR is not
14806 NULL. Initialize tpprev to NULL instead of assigning it
14807 to NULL on the next statement.
14808 * windows-nat.c (windows_delete_thread): Remove check for
14809 main_thread_id before printing thread exit notifications.
14810 (get_windows_debug_event) <EXIT_THREAD_DEBUG_EVENT>:
14811 Remove thread ID check against main_thread_id.
14812 <CREATE_PROCESS_DEBUG_EVENT>: Remove call to
14813 windows_delete_thread.
14814 <EXIT_PROCESS_DEBUG_EVENT>: Add call to windows_delete_thread.
14815
48c5e7e2
TT
148162019-01-04 Tom Tromey <tom@tromey.com>
14817
14818 * compile/compile.c (_initialize_compile): Use upper case for
14819 metasyntactic variables.
14820 * symmisc.c (_initialize_symmisc): Use upper case for
14821 metasyntactic variables.
14822 * psymtab.c (_initialize_psymtab): Use upper case for
14823 metasyntactic variables.
14824 * demangle.c (demangle_command): Use upper case for metasyntactic
14825 variables.
14826 (_initialize_demangler): Likewise.
14827 * ax-gdb.c (_initialize_ax_gdb): Use upper case for metasyntactic
14828 variables.
14829
986041cd
TT
148302019-01-03 Tom Tromey <tom@tromey.com>
14831
14832 * tui/tui-source.c (tui_set_source_content): Use xstrdup.
14833
7c711119
TT
148342019-01-03 Tom Tromey <tom@tromey.com>
14835
14836 * python/py-symtab.c (salpy_str): Update.
14837 (struct salpy_sal_object) <symtab>: Now a PyObject.
14838 (salpy_dealloc): Update.
14839 (del_objfile_sal): Use gdbpy_ref.
14840
1b20edf0
TT
148412019-01-03 Tom Tromey <tom@tromey.com>
14842
14843 * python/py-type.c (convert_field): Use new_reference. Return
14844 gdbpy_ref.
14845 (make_fielditem): Return gdbpy_ref.
14846 (typy_fields): Update.
14847 (typy_getitem): Update.
14848 (field_name): Return gdbpy_ref. Use new_reference.
14849 (typy_iterator_iternext): Update.
14850
ea41325b
TT
148512019-01-03 Tom Tromey <tom@tromey.com>
14852
14853 * python/py-record.c (gdbpy_stop_recording): Use Py_RETURN_NONE.
14854
2a3c71d6
TT
148552019-01-03 Tom Tromey <tom@tromey.com>
14856
14857 * python/py-value.c (valpy_dealloc): Use Py_XDECREF.
14858 * python/py-type.c (typy_fields_items): Use gdbpy_ref.
14859 * python/py-progspace.c (pspy_set_printers): Use gdbpy_ref.
14860 (pspy_set_frame_filters, pspy_set_frame_unwinders)
14861 (pspy_set_type_printers): Likewise.
14862 * python/py-function.c (fnpy_init): Use gdbpy_ref.
14863 * python/py-cmd.c (cmdpy_init): Use gdbpy_ref.
14864 * python/py-objfile.c (objfpy_set_printers): Use gdbpy_ref.
14865 (objfpy_set_frame_filters, objfpy_set_frame_unwinders)
14866 (objfpy_set_type_printers): Likewise.
14867
5c329e6a
TT
148682019-01-03 Tom Tromey <tom@tromey.com>
14869
14870 * python/python.c (gdbpy_enter, ~gdbpy_enter): Update.
14871 (gdbpy_print_stack): Use gdbpy_err_fetch.
14872 * python/python-internal.h (class gdbpy_err_fetch): New class.
14873 (class gdbpy_enter) <m_error_type, m_error_value,
14874 m_error_traceback>: Remove.
14875 <m_error>: New member.
14876 (gdbpy_exception_to_string): Don't declare.
14877 * python/py-varobj.c (py_varobj_iter_next): Use gdbpy_err_fetch.
14878 * python/py-value.c (convert_value_from_python): Use
14879 gdbpy_err_fetch.
14880 * python/py-utils.c (gdbpy_err_fetch::to_string): Rename from
14881 gdbpy_exception_to_string.
14882 (gdbpy_handle_exception): Use gdbpy_err_fetch.
14883 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
14884 gdbpy_err_fetch.
14885
169bb27b
AB
148862019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14887
14888 * linux-nat.c (delete_lwp_cleanup): Delete.
14889 (struct lwp_deleter): New struct.
14890 (lwp_info_up): New typedef.
14891 (linux_nat_target::follow_fork): Delete cleanup, and make use of
14892 lwp_info_up.
14893
a07c8880
AB
148942019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14895
14896 * linux-fork.c (class scoped_switch_fork_info): New class.
14897 (inferior_call_waitpid): Update to use scoped_switch_fork_info.
14898
26089c49
AB
148992019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14900
14901 * valops.c (find_overload_match): Remove use of null_cleanup, and
14902 calls to do_cleanups.
14903
06d3e5b0
AB
149042019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14905
14906 * compile/compile-cplus-types.c
14907 (compile_cplus_instance::decl_name): Handle changes to
14908 cp_func_name.
14909 * cp-support.c (cp_func_name): Update header comment, update
14910 return type.
14911 * cp-support.h (cp_func_name): Update return type in declaration.
14912 * valops.c (find_overload_match): Move temp_func local to top
14913 level of function and change its type. Use temp_func to hold and
14914 delete temporary string obtained from cp_func_name.
14915
66644cd3
AB
149162019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14917
14918 * remote.c (remote_target::remote_check_symbols): Convert `msg` to
14919 gdb::char_vector, remove cleanup, and update uses of `msg`.
14920
592d8c0a
JW
149212019-01-03 Jim Wilson <jimw@sifive.com>
14922
14923 * riscv-tdep.c (riscv_freg_feature): Drop s0 name from f8.
14924
c55d06ec
TT
149252019-01-02 Tom Tromey <tom@tromey.com>
14926
14927 * xml-tdesc.c (xml_cache): Hold a target_desc_up.
14928 (tdesc_parse_xml): Remove cleanups.
14929 * target-descriptions.h (make_cleanup_free_target_description):
14930 Don't declare.
14931 (target_desc_deleter): New struct.
14932 (target_desc_up): New typedef.
14933 * target-descriptions.c (target_desc_deleter::operator()): Rename
14934 from free_target_description.
14935 (make_cleanup_free_target_description): Remove.
14936
3a6ae42d
TT
149372019-01-02 Tom Tromey <tom@tromey.com>
14938
14939 * linespec.c (struct linespec_parser): Rename from ls_parser. Add
14940 constructor, destructor.
14941 (linespec_parser): Remove typedef.
14942 (~linespec_parser): Rename from linespec_parser_delete.
14943 (linespec_lex_to_end, linespec_complete_label)
14944 (linespec_complete): Update.
14945 (decode_line_full): Remove cleanups.
14946 (decode_line_1): Update.
14947
61fd3e73
TT
149482019-01-02 Tom Tromey <tom@tromey.com>
14949
14950 * python/python-internal.h (inferior_to_inferior_object): Change
14951 return type.
14952 * python/py-exitedevent.c (create_exited_event_object): Update.
14953 * python/py-inferior.c (inferior_to_inferior_object): Return
14954 gdbpy_ref.
14955 (python_new_inferior, python_inferior_deleted)
14956 (thread_to_thread_object, delete_thread_object)
14957 (build_inferior_list, gdbpy_selected_inferior): Update.
14958 * python/py-infthread.c (create_thread_object): Update. Also fail
14959 if inferior_to_inferior_object fails.
14960
d20172fc
SM
149612019-01-02 Simon Marchi <simon.marchi@ericsson.com>
14962
14963 * inferior.h (class inferior) <displaced_step_state>: New field.
14964 * infrun.h (struct displaced_step_state): Move here from
14965 infrun.c. Initialize fields, add constructor.
14966 <inf>: Remove field.
14967 <reset>: New method.
14968 * infrun.c (struct displaced_step_inferior_state): Move to
14969 infrun.h.
14970 (displaced_step_inferior_states): Remove.
14971 (get_displaced_stepping_state): Adust.
14972 (displaced_step_in_progress_any_inferior): Adjust.
14973 (displaced_step_in_progress_thread): Adjust.
14974 (displaced_step_in_progress): Adjust.
14975 (add_displaced_stepping_state): Remove.
14976 (get_displaced_step_closure_by_addr): Adjust.
14977 (remove_displaced_stepping_state): Remove.
14978 (infrun_inferior_exit): Call displaced_step_state.reset.
14979 (use_displaced_stepping): Don't check for NULL.
14980 (displaced_step_prepare_throw): Call
14981 get_displaced_stepping_state.
14982 (displaced_step_fixup): Don't check for NULL.
14983 (prepare_for_detach): Don't check for NULL.
14984
e3319240
PW
149852019-01-02 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14986
14987 * infcall.c (call_function_by_hand_dummy): cleanup/destroy sm
14988 in case of call that did not complete.
14989
5d36dfb9
AU
149902019-01-02 Andrey Utkin <autkin@undo.io>
14991
14992 * symfile.c (find_separate_debug_file): Fix search of debug files for
14993 remote debuggee.
14994
8833fbf0
TT
149952019-01-02 Tom Tromey <tom@tromey.com>
14996
14997 * python/py-inferior.c (gdbpy_initialize_inferior): Fix
14998 indentation.
14999 * python/py-frame.c (frapy_older): Remove cast.
15000 (frapy_newer): Likewise.
15001 * python/py-breakpoint.c (local_setattro): Remove cast.
15002 * python/py-arch.c (archpy_name): Remove local variable.
15003 * python/py-type.c (gdbpy_lookup_type): Remove cast.
15004
4ada3dfd
JB
150052019-01-02 Joel Brobecker <brobecker@adacore.com>
15006
15007 * unittests/basic_string_view/element_access/char/empty.cc:
15008 Fix year range in copyright header.
15009
113b7b81
AB
150102019-01-01 Andrew Burgess <andrew.burgess@embecosm.com>
15011
15012 * arch/riscv.h (struct riscv_gdbarch_features) <hw_float_abi>:
15013 Delete.
15014 <operator==>: Update with for removed field.
15015 <hash>: Likewise.
15016 * riscv-tdep.h (struct gdbarch_tdep) <features>: Renamed to...
15017 <isa_features>: ...this.
15018 <abi_features>: New field.
15019 (riscv_isa_flen): Update comment.
15020 (riscv_abi_xlen): New declaration.
15021 (riscv_abi_flen): New declaration.
15022 * riscv-tdep.c (riscv_isa_xlen): Update to get answer from
15023 isa_features.
15024 (riscv_abi_xlen): New function.
15025 (riscv_isa_flen): Update to get answer from isa_features.
15026 (riscv_abi_flen): New function.
15027 (riscv_has_fp_abi): Update to get answer from abi_features.
15028 (riscv_call_info::riscv_call_info): Use abi xlen and flen, not isa
15029 xlen and flen.
15030 (riscv_call_info) <xlen, flen>: Update comment.
15031 (riscv_call_arg_struct): Remove invalid assertions
15032 (riscv_features_from_gdbarch_info): Update now hw_float_abi field
15033 is removed.
15034 (riscv_gdbarch_init): Gather isa features and abi features
15035 separately, ensure both match on the gdbarch when reusing an old
15036 gdbarch. Relax an error check to allow 32-bit abi float to run on
15037 a target with 64-bit float hardware.
15038
b18ca514
PW
150392019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
15040
15041 * source.c (search_command_helper): Stop reverse search
15042 when line 1 has been searched.
15043
ec70d8db
PW
150442019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
15045
15046 * record-full.c (record_full_base_target::close): Rewrite
15047 record_full_core_buf_list free logic.
15048
5b38f9c1
PW
150492019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
15050
15051 * break-catch-syscall.c (print_one_catch_syscall): xfree
15052 the last text.
15053
66d91b39
JB
150542019-01-01 Joel Brobecker <brobecker@adacore.com>
15055
15056 * top.c (print_gdb_version): Update Copyright year in version
15057 message.
15058
42a4f53d
JB
150592019-01-01 Joel Brobecker <brobecker@adacore.com>
15060
15061 Update copyright year range in all GDB files.
15062
7e955d83 150632019-01-01, 19 Joel Brobecker <brobecker@adacore.com>
2139e8dc 15064
5bbd631d 15065 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2018.
2139e8dc 15066
5bbd631d 15067For older changes see ChangeLog-2018.
c906108c
SS
15068\f
15069Local Variables:
15070mode: change-log
15071left-margin: 8
15072fill-column: 74
15073version-control: never
57da7796 15074coding: utf-8
c906108c 15075End:
5bbd631d 15076
This page took 3.996283 seconds and 4 git commands to generate.