Don't use class-initialization for the owner union
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
6edc43ec
CB
12019-11-18 Christian Biesinger <cbiesinger@google.com>
2
3 * symtab.h (struct symbol) <owner>: Initialize explicitly in the
4 constructor instead of using a class initializer.
5
cd850b40
CB
62019-11-15 Christian Biesinger <cbiesinger@google.com>
7
8 * Makefile.in: Replace {posix,mingw}-strerror.c with safe-strerror.c.
9 * configure: Regenerate.
10 * configure.ac: Don't source common.host.
11 * gdbsupport/common.host: Remove.
12 * gdbsupport/mingw-strerror.c: Remove.
13 * gdbsupport/posix-strerror.c: Rename to...
14 * gdbsupport/safe-strerror.c: ...this.
15
53fea9c7
CB
162019-11-15 Christian Biesinger <cbiesinger@google.com>
17
18 * maint.c (scoped_command_stats::print_time): Use localtime_r
19 instead of localtime (provided through gnulib if necessary).
20 * nat/linux-osdata.c (time_from_time_t): Use ctime_r instead
21 of ctime.
22
f8e27d88
CB
232019-11-15 Christian Biesinger <cbiesinger@google.com>
24
25 * gdbsupport/common-defs.h: Include time.h before pathmax.h to
26 avoid compile errors.
27
5abebf3c
CB
282019-11-15 Christian Biesinger <cbiesinger@google.com>
29
30 * config.in: Regenerate.
31 * configure: Regenerate.
32 * gdbsupport/common.m4: No longer check for strerror_r.
33 * gdbsupport/posix-strerror.c (safe_strerror): Always call the
34 POSIX version of strerror_r, now that gnulib provides it if
35 necessary.
36
9a351667
CB
372019-11-14 Christian Biesinger <cbiesinger@google.com>
38
39 * README (`configure' options): Update.
40
55708e99
TT
412019-11-14 Tom Tromey <tromey@adacore.com>
42
43 * eval.c (evaluate_subexp_standard) <BINOP_ASSIGN>: Do not pass an
44 expected type for the RHS if the LHS is a convenience variable.
45
4b09bb2e
SM
462019-11-14 Simon Marchi <simon.marchi@polymtl.ca>
47
48 * unittests/vec-utils-selftests.c (unordered_remove_tests::obj):
49 Provide explicit default and copy constructor.
50
bd454f8b
PW
512019-11-14 Philippe Waroquiers <philippe.waroquiers@skynet.be>
52
53 * python/py-finishbreakpoint.c (gdbpy_breakpoint_created):
54 only call Py_INCREF (newbp) in the bppy_pending_object case.
55
d1aa3cf0
TT
562019-11-13 Tom Tromey <tromey@adacore.com>
57
58 PR build/25182:
59 * psympriv.h (partial_symbol): Remove static assert.
60 * symtab.h (general_symbol_info, symbol): Remove static assert.
61
e06f3d6e
AB
622019-11-12 Andrew Burgess <andrew.burgess@embecosm.com>
63
64 * gdbsupport/format.c (format_pieces::format_pieces): Support
65 printf 'z' size modifier.
66 * gdbsupport/format.h (enum argclass): Add size_t_arg.
67 * printcmd.c (ui_printf): Handle size_t_arg.
68 * ui-out.c (ui_out::vmessage): Likewise.
69 * unittests/format_pieces-selftests.c (test_format_int_sizes): New
70 function.
71 (run_tests): Call test_format_int_sizes.
72
468c0cbb
CB
732019-11-12 Christian Biesinger <cbiesinger@google.com>
74
75 * ada-exp.y (write_ambiguous_var): Update.
76 * buildsym.c (add_symbol_to_list): Update.
77 * dwarf2read.c (read_variable): Update.
78 (new_symbol): Update.
79 * jit.c (finalize_symtab): Update.
80 * language.c (language_alloc_type_symbol): Update.
81 * symtab.c (fixup_symbol_section): Update.
82 (initialize_objfile_symbol_1): Move code to...
83 (initialize_objfile_symbol): ...here. Remove now-unnecessary memset.
84 (allocate_symbol): Update.
85 (allocate_template_symbol): Update.
86 (get_symbol_address): Update.
87 * symtab.h (struct symbol): Inherit from general_symbol_info instead
88 of having as a field, and add a constructor.
89 (SYMBOL_VALUE): Update.
90 (SYMBOL_VALUE_ADDRESS): Update.
91 (SET_SYMBOL_VALUE_ADDRESS): Update.
92 (SYMBOL_VALUE_BYTES): Update.
93 (SYMBOL_VALUE_COMMON_BLOCK): Update.
94 (SYMBOL_BLOCK_VALUE): Update.
95 (SYMBOL_VALUE_CHAIN): Update.
96 (SYMBOL_LANGUAGE): Update.
97 (SYMBOL_SECTION): Update.
98 (SYMBOL_OBJ_SECTION): Update.
99 (SYMBOL_SET_LANGUAGE): Update.
100 (SYMBOL_SET_LINKAGE_NAME): Update.
101 (SYMBOL_SET_NAMES): Update.
102 (SYMBOL_NATURAL_NAME): Update.
103 (SYMBOL_LINKAGE_NAME): Update.
104 (SYMBOL_DEMANGLED_NAME): Update.
105 (SYMBOL_SEARCH_NAME): Update.
106 (SYMBOL_MATCHES_SEARCH_NAME): Update.
107 (struct symbol): Update.
108 (struct template_symbol): Update.
109 (struct rust_vtable_symbol): Update.
110 * xcoffread.c (SYMBOL_DUP): Update.
111
ed2c82c3
TT
1122019-11-12 Tom Tromey <tom@tromey.com>
113
114 * tui/tui-layout.c (show_layout): Set current_layout.
115 (show_source_disasm_command, show_data)
116 (show_source_or_disasm_and_command): Don't set current_layout.
117
d9fcefd5
TT
1182019-11-12 Tom Tromey <tom@tromey.com>
119
120 * tui/tui-layout.c (_initialize_tui_layout): Move to end.
121
45e42163
TT
1222019-11-12 Tom Tromey <tom@tromey.com>
123
124 * tui/tui-win.c (resize_message): New global.
125 (show_tui_resize_message): New function.
126 (tui_async_resize_screen): Print message if requested.
127 (_initialize_tui_win): Add tui-resize-message setting.
128 * NEWS: Add entry for new commands.
129
c86d74cc
TT
1302019-11-11 Tom Tromey <tom@tromey.com>
131
132 * tui/tui.c (tui_initialize_readline): Add new bindable readline
133 functions.
134
7b7b9424
CB
1352019-11-11 Christian Biesinger <cbiesinger@google.com>
136
137 * nat/linux-osdata.c (user_from_uid): Use getpwuid_r.
138
086baaf1
AB
1392019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
140
141 * python/py-symbol.c (gdbpy_lookup_static_symbols): New
142 function.
143 * python/python-internal.h (gdbpy_lookup_static_symbols):
144 Declare new function.
145 * python/python.c (python_GdbMethods): Add
146 gdb.lookup_static_symbols method.
147 * NEWS: Mention gdb.lookup_static_symbols.
148
09ff83af
AB
1492019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
150
151 * python/py-symbol.c (gdbpy_lookup_static_symbol): Lookup in
152 static block of current object file first. Also fix typo in
153 header comment.
154
eb2dd8df
AB
1552019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
156
157 * stack.c (set_last_displayed_sal): Delete.
158 (last_displayed_sal_valid): Delete.
159 (last_displayed_pspace): Delete.
160 (last_displayed_addr): Delete.
161 (last_displayed_symtab): Delete.
162 (last_displayed_line): Delete.
163 (class last_displayed_symtab_info_type): New.
164 (last_displayed_symtab_info): New static global variable.
165 (print_frame_info): Call methods on last_displayed_symtab_info.
166 (clear_last_displayed_sal): Update header comment, and make use of
167 last_displayed_symtab_info.
168 (last_displayed_sal_is_valid): Likewise.
169 (get_last_displayed_pspace): Likewise.
170 (get_last_displayed_addr): Likewise.
171 (get_last_displayed_symtab): Likewise.
172 (get_last_displayed_line): Likewise.
173 (get_last_displayed_sal): Likewise.
174 * stack.h (clear_last_displayed_sal): Update header comment.
175 (last_displayed_sal_is_valid): Likewise.
176 (get_last_displayed_pspace): Likewise.
177 (get_last_displayed_addr): Likewise.
178 (get_last_displayed_symtab): Likewise.
179 (get_last_displayed_line): Likewise.
180 (get_last_displayed_sal): Likewise.
181
62137775
AB
1822019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
183
184 * stack.c (frame_show_address): Convert return type to bool.
185 * stack.h (frame_show_address): Likewise, and update header
186 comment.
187
cf57ad6d
AB
1882019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
189
190 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add new file to the list.
191 * unittests/vec-utils-selftests.c: New file.
192 * gdbsupport/gdb_vecs.h (unordered_remove): Avoid self move assign.
193
0b026263
TT
1942019-11-10 Tom Tromey <tom@tromey.com>
195
196 * tui/tui-wingeneral.c (tui_unhighlight_win): Use can_box.
197 (tui_highlight_win): Likewise.
198 (tui_win_info::check_and_display_highlight_if_needed): Likewise.
199 * tui/tui-data.h (struct tui_win_info) <can_highlight>: Remove.
200 * tui/tui-command.h (struct tui_cmd_window) <tui_cmd_window>:
201 Don't set can_highlight.
202
b049ce2d
TT
2032019-11-10 Tom Tromey <tom@tromey.com>
204
205 * cli/cli-style.h (class cli_style_option) <cli_style_option>:
206 Remove unused declaration.
207
992a7040
TT
2082019-11-08 Tom Tromey <tromey@adacore.com>
209
210 * top.c (read_command_file): Update.
211 (command_line_input): Make return type const.
212 * python/py-gdb-readline.c: Update.
213 * linespec.c (decode_line_2): Update.
214 * defs.h (command_line_input): Make return type const.
215 * cli/cli-script.c (read_next_line): Make return type const.
216 * ada-lang.c (get_selections): Update.
217
ca3a04f6
CB
2182019-11-06 Christian Biesinger <cbiesinger@google.com>
219
220 * linux-tdep.c (linux_info_proc): Use strtok_r instead of strtok.
221 * mi/mi-main.c (output_cores): Likewise.
222 * nat/linux-osdata.c (linux_xfer_osdata_cpus): Likewise.
223 (linux_xfer_osdata_modules): Likewise.
224 * remote.c (register_remote_support_xml): Likewise.
225 * sparc64-tdep.c (adi_is_addr_mapped): Likewise.
226 * xml-syscall.c (syscall_create_syscall_desc): Likewise.
227
e0eac551
TT
2282019-11-06 Tom Tromey <tom@tromey.com>
229
230 * tui/tui-interp.c: Don't include readline.h.
231 * tui/tui-hooks.c: Don't include readline.h.
232 * symmisc.c: Include tilde.h, not readline.h.
233 * symfile.c: Include tilde.h, not readline.h.
234 * source.c: Include tilde.h, not readline.h.
235 * solib.c: Include tilde.h, not readline.h.
236 * psymtab.c: Include tilde.h, not readline.h.
237 * exec.c: Include tilde.h, not readline.h.
238 * corelow.c: Include tilde.h, not readline.h.
239 * cli/cli-dump.c: Include tilde.h, not readline.h.
240 * cli/cli-cmds.c: Don't include readline.h.
241
825165c5
TT
2422019-11-05 Tom Tromey <tom@tromey.com>
243
244 * tui/tui-disasm.c (struct tui_asm_line) <addr_size>: New member.
245 (tui_disassemble): Set addr_size.
246 (tui_disasm_window::set_contents): Use addr_size.
247
91ae903f
TT
2482019-11-05 Tom Tromey <tom@tromey.com>
249
250 * rust-lang.c (rust_language_defn): Update.
251 * python/py-value.c (valpy_string): Call c_get_string.
252 * p-lang.c (pascal_language_defn): Update.
253 * opencl-lang.c (opencl_language_defn): Update.
254 * objc-lang.c (objc_language_defn): Update.
255 * m2-lang.c (m2_language_defn): Update.
256 * language.c (unknown_language_defn, auto_language_defn): Update.
257 (default_get_string): Remove.
258 * guile/scm-value.c (gdbscm_value_to_string): Use c_get_string.
259 * go-lang.c (go_language_defn): Update.
260 * f-lang.c (f_language_defn): Update.
261 * d-lang.c (d_language_defn): Update.
262 * c-lang.c (c_language_defn, cplus_language_defn)
263 (asm_language_defn, minimal_language_defn): Update.
264 * ada-lang.c (ada_language_defn): Update.
265 * language.h (struct language_defn) <la_get_string>: Remove.
266 (LA_GET_STRING): Remove.
267 (default_get_string): Don't declare.
268
1df2f9ef
TT
2692019-11-05 Tom Tromey <tom@tromey.com>
270
271 * tui/tui-source.h (struct tui_source_window): Inline
272 constructor. Remove destructor.
273 <style_changed, m_observable>: Move to superclass.
274 * tui/tui-winsource.h (tui_copy_source_line): Declare.
275 (struct tui_source_window_base): Move private members to end.
276 <style_changed, m_observable>: Move from tui_source_window.
277 * tui/tui-winsource.c (tui_copy_source_line): Move from
278 tui-source.c. Rename from copy_source_line. Add special handling
279 for negative line number.
280 (tui_source_window_base::style_changed): Move from
281 tui_source_window.
282 (tui_source_window_base): Register observer.
283 (~tui_source_window_base): New.
284 * tui/tui-source.c (copy_source_line): Move to tui-winsource.c;
285 rename.
286 (tui_source_window::set_contents): Use tui_copy_source_line.
287 (tui_source_window::tui_source_window): Move to tui-source.h.
288 (tui_source_window::~tui_source_window): Remove.
289 (tui_source_window::style_changed): Move to superclass.
290 * tui/tui-disasm.c (tui_disassemble): Create string file with
291 styling, when possible. Add "addr_size" parameter.
292 (tui_disasm_window::set_contents): Use tui_copy_source_line.
293 Don't compute maximum size.
294 (len_without_escapes): New function
295
5d051055
TT
2962019-11-05 Tom Tromey <tom@tromey.com>
297
298 * tui/tui-winsource.h (struct tui_source_element) <line>: Now a
299 std::string.
300 * tui/tui-winsource.c (tui_show_source_line): Update.
301 * tui/tui-source.c (tui_source_window::set_contents): Update.
302 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
303
ade7beea
CB
3042019-11-05 Christian Biesinger <cbiesinger@google.com>
305
306 * symtab.h (gdb_static_assert): Put && operator at the beginning
307 of the line instead of the end.
308
3573abe1
CB
3092019-11-04 Christian Biesinger <cbiesinger@google.com>
310
311 * psympriv.h: Add static_asserts for sizeof (general_symbol_info)
312 and sizeof (symbol).
313 * symtab.h: Add a static_assert for sizeof (partial_symbol).
314
dae8b3eb
RO
3152019-11-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
316
317 * NEWS (Changes since GDB 8.3): Document Solaris 10 removal.
318 * configure.host: Mark *-*-solaris2.10* obsolete.
319 * configure.tgt: Mark Solaris < 11 obsolete.
320 * MAINTAINERS (Target Instruction Set Architectures) <sparc>:
321 Update target triplet.
322
5df96a4e
TT
3232019-11-01 Tom Tromey <tromey@adacore.com>
324
325 * utils.c (print_sys_errmsg): Simplify.
326
b7481649
TT
3272019-11-01 Tom Tromey <tromey@adacore.com>
328
329 * gdbsupport/mingw-strerror.c (safe_strerror): Constify result.
330
e48f6033
CB
3312019-11-01 Christian Biesinger <cbiesinger@google.com>
332
333 * configure: Regenerate.
334 * configure.ac: Remove check for strerror_r.
335 * gdbsupport/common.m4: Check for strerror_r.
336
bd5766ec
LM
3372019-11-01 Luis Machado <luis.machado@linaro.org>
338
339 PR gdb/25124
340
341 * arm-tdep.c (arm_per_objfile): Rename to ...
342 (arm_per_bfd): ... this.
343 (arm_objfile_data_key): Rename to ...
344 (arm_bfd_data_key): ... this.
345 (arm_find_mapping_symbol): Adjust access to new bfd_key-based
346 data.
347 (arm_record_special_symbol): Likewise.
348
e1709896
AB
3492019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
350
351 * ada-typeprint.c (ada_print_typedef): Don't print newline at the
352 end.
353 * c-typeprint.c (c_print_typedef): Likewise.
354 * f-typeprint.c (f_print_typedef): Likewise.
355 * m2-typeprint.c (m2_print_typedef): Likewise.
356 * p-typeprint.c (pascal_print_typedef): Likewise.
357 * rust-lang.c (rust_print_typedef): Likewise.
358 * symtab.c (print_symbol_info): Print a newline after calling
359 typedef_print.
360
165f8965
AB
3612019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
362
363 * symtab.c (info_module_cmdlist): New variable.
364 (info_module_command): New function.
365 (search_module_symbols): New function.
366 (info_module_subcommand): New function.
367 (struct info_modules_var_func_options): New struct.
368 (info_modules_var_func_options_defs): New variable.
369 (make_info_modules_var_func_options_def_group): New function.
370 (info_module_functions_command): New function.
371 (info_module_variables_command): New function.
372 (info_module_var_func_command_completer): New function.
373 (_initialize_symtab): Register new 'info module functions' and
374 'info module variables' commands.
375 * symtab.h (typedef symbol_search_in_module): New typedef.
376 (search_module_symbols): Declare new function.
377 * NEWS: Mention new commands.
378
59c35742
AB
3792019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
380
381 * dwarf2read.c (dw2_symtab_iter_next): Handle MODULE_DOMAIN.
382 (dw2_expand_marked_cus): Handle MODULES_DOMAIN.
383 (dw2_debug_names_iterator::next): Handle MODULE_DOMAIN and
384 MODULES_DOMAIN.
385 (scan_partial_symbols): Only create partial module symbols for non
386 declarations.
387 * psymtab.c (recursively_search_psymtabs): Handle MODULE_DOMAIN
388 and MODULES_DOMAIN.
389 * symtab.c (search_domain_name): Likewise.
390 (search_symbols): Likewise.
391 (print_symbol_info): Likewise.
392 (symtab_symbol_info): Likewise.
393 (info_modules_command): New function.
394 (_initialize_symtab): Register 'info modules' command.
395 * symtab.h (enum search_domain): Add MODULES_DOMAIN.
396 * NEWS: Mention new 'info modules' command.
397
aed61d02
PW
3982019-10-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
399
400 * NEWS: Mention $_gdb_setting, $_gdb_setting_str, $_gdb_maint_setting
401 and $_gdb_maint_setting_str.
402
9ad9b77d
PW
4032019-10-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
404
405 * cli/cli-cmds.c (setting_cmd, value_from_setting)
406 (gdb_setting_internal_fn, gdb_maint_setting_internal_fn)
407 (str_value_from_setting, gdb_setting_str_internal_fn)
408 (gdb_maint_setting_str_internal_fn): New functions.
409 (_initialize_cli_cmds): Define the new convenience functions.
410 * gdb/cli/cli-setshow.h (get_setshow_command_value_string): Constify.
411 * gdb/cli/cli-setshow.c (get_setshow_command_value_string): Constify.
412
8d6efaa2
CB
4132019-10-31 Christian Biesinger <cbiesinger@google.com>
414
415 * agent.c (set_can_use_agent): When the setting is turned on,
416 look up agent symbols if we don't have them yet.
417 (agent_new_objfile): Don't look up agent symbols when the agent
418 setting is off.
419
33cb1647
CB
4202019-10-31 Christian Biesinger <cbiesinger@google.com>
421
422 * config.in: Regenerate.
423
b231e86a
CB
4242019-10-31 Christian Biesinger <cbiesinger@google.com>
425
426 * configure: Regenerate.
427 * configure.ac: Check for strerror_r.
428 * gdbsupport/common-utils.h (safe_strerror): Change return value
429 to const char * and document that this function is now threadsafe.
430 * gdbsupport/posix-strerror.c (safe_strerror): Make buf
431 thread_local and call strerror_r, if available.
432 * utils.c (perror_string): Update.
433 (print_sys_errmsg): Update.
434
a2726d4f
LM
4352019-10-31 Luis Machado <luis.machado@linaro.org>
436
437 * arm-tdep.c (arm_exidx_data_key): Use bfd_key instead of
438 objfile_key.
439 (arm_exidx_new_objfile): Adjust to use objfile->obfd instead of
440 objfile to fetch per-bfd data.
441 (arm_find_exidx_entry): Likewise.
442
75cafaa6
CB
4432019-10-31 Christian Biesinger <cbiesinger@google.com>
444
445 * gdbsupport/agent.c (debug_agent): Change type to bool.
446 (use_agent): Likewise.
447 (all_agent_symbols_look_up): Likewise.
448 (agent_loaded_p): Change return value to bool.
449 (agent_look_up_symbols): Update.
450 (agent_capability_check): Change return value to bool.
451 * gdbsupport/agent.h (agent_loaded_p): Likewise.
452 (debug_agent): Change type to bool.
453 (use_agent): Likewise.
454 (agent_capability_check): Change return value to bool.
455
808590ec
CB
4562019-10-30 Christian Biesinger <cbiesinger@google.com>
457
458 * minsyms.c (clear_minimal_symbol_hash_tables): New function.
459 (build_minimal_symbol_hash_tables): Code to clear the table moved
460 to clear_minimal_symbol_hash_tables.
461 (minimal_symbol_reader::install): Call clear_minimal_symbol_hash_tables
462 when needed.
463
f18ad8a1
SM
4642019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
465
466 * infcmd.c: Remove includes.
467 * infrun.c: Remove includes.
468
de93309a
SM
4692019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
470
471 * ada-lang.h (GROW_VECT): Move to ada-lang.c.
472 (grow_vect): Remove declaration.
473 (ada_type_of_array): Remove declaration.
474 (ada_update_initial_language): Remove declaration.
475 (ada_fold_name): Remove declaration.
476 (ada_fill_in_ada_prototype): Remove declaration.
477 (user_select_syms): Remove declaration.
478 (get_selections): Remove declaration.
479 (ada_tag_type): Remove declaration.
480 (ada_value_tag): Remove declaration.
481 (ada_is_others_clause): Remove declaration.
482 (ada_in_variant): Remove declaration.
483 (ada_value_struct_elt): Remove declaration.
484 (ada_attribute_name): Remove declaration.
485 (ada_system_address_type): Remove declaration.
486 * ada-lang.c (ada_watch_location_expression): Make static.
487 (GROW_VECT): Move here from ada-lang.h.
488 (grow_vect): Make static.
489 (ada_update_initial_language): Make static.
490 (ada_fold_name): Make static.
491 (ada_type_of_array): Make static.
492 (encoded_ordered_before): Move up.
493 (sort_choices): Move up.
494 (print_signatures): Move up.
495 (ada_print_symbol_signature): Move up.
496 (get_selections): Move up and make static.
497 (user_select_syms): Move up and make static.
498 (ada_value_struct_elt): Move up and make static.
499 (ada_tag_type): Make static.
500 (ada_value_tag): Make static.
501 (ada_is_others_clause): Make static.
502 (ada_in_variant): Make static.
503 (ada_attribute_name): Make static.
504
cdc46a9f
SM
5052019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
506
507 * ada-lang.c: Remove includes.
508 * ada-typeprint.c: Remove includes.
509 * ada-valprint.c: Remove includes.
510
90421c56
SM
5112019-10-29 Simon Marchi <simon.marchi@efficios.com>
512
513 * addrmap.c: Add static assertions of type size, moved from
514 _initialize_addrmap.
515 (_initialize_addrmap): Remove.
516
31edb802
CB
5172019-10-29 Christian Biesinger <cbiesinger@google.com>
518
519 * coffread.c (record_minimal_symbol): Update.
520 (process_coff_symbol): Update.
521 * dbxread.c (read_dbx_symtab): Update.
522 * dwarf2read.c (add_partial_symbol): Update.
523 (fixup_go_packaging): Update.
524 (load_partial_dies): Update.
525 (new_symbol): Update.
526 * elfread.c (record_minimal_symbol): Change signature to use
527 gdb::string_view instead of name+len.
528 (elf_symtab_read): Update.
529 (elf_rel_plt_read): Update.
530 * mdebugread.c (parse_partial_symbols): Update.
531 (handle_psymbol_enumerators): Update.
532 (new_symbol): Update.
533 * minsyms.c (minimal_symbol_reader::record_full): Change signature
534 to use gdb::string_view instead of name+len.
535 * minsyms.h (class minimal_symbol_reader) <record_full>: Likewise.
536 * psympriv.h (add_psymbol_to_list): Likewise.
537 * psymtab.c (add_psymbol_to_bcache): Likewise.
538 (add_psymbol_to_list): Likewise.
539 * stabsread.c (define_symbol): Update.
540 * symtab.c (symbol_set_names): Change signature to use gdb::string_view.
541 * symtab.h (SYMBOL_SET_NAMES): Likewise.
542 (symbol_set_names): Likewise.
543 * xcoffread.c (scan_xcoff_symtab): Update.
544
0c921b21
CB
5452019-10-29 Christian Biesinger <cbiesinger@google.com>
546
547 * symtab.h (symbol_set_names): Document that copy_name must be
548 set to true for non-nullterminated strings.
549 * symtab.c (symbol_set_names): Only make a nullterminated copy of
550 linkage_name if the entry was not found and we need to demangle.
551
35e65c49
CB
5522019-10-29 Christian Biesinger <cbiesinger@google.com>
553
554 * Makefile.in (HFILES_NO_SRCDIR): Add gdb_binary_search.h.
555 * dwarf2-frame.c (bsearch_fde_cmp): Update.
556 (dwarf2_frame_find_fde): Replace bsearch with gdb::binary_search.
557 * gdbsupport/gdb_binary_search.h: New file.
558
ed2a2229
CB
5592019-10-29 Christian Biesinger <cbiesinger@google.com>
560
561 * NEWS: Mention new --with-system-gdbinit-dir option.
562 * config.in: Regenerate.
563 * configure: Regenerate.
564 * configure.ac: Add new option --with-system-gdbinit-dir.
565 * extension.c (get_ext_lang_of_file): Return extension_language_gdb
566 for a ".gdb" suffix.
567 * main.c (get_init_files): Change system_gdbinit argument to
568 a vector and return the files in SYSTEM_GDBINIT_DIR in
569 addition to SYSTEM_GDBINIT.
570 (captured_main_1): Update.
571 (print_gdb_help): Update.
572 * top.c (print_gdb_configuration): Also print the value of
573 SYSTEM_GDBINIT_DIR.
574
87f34879
CB
5752019-10-28 Christian Biesinger <cbiesinger@google.com>
576
577 * gdbsupport/common-utils.h (startswith): Add an overloaded version
578 that takes gdb::string_view arguments.
579
30baf67b
TV
5802019-10-26 Tom de Vries <tdevries@suse.de>
581
582 * aarch64-linux-tdep.c: Fix typos in comments.
583 * aarch64-tdep.c: Same.
584 * ada-lang.c: Same.
585 * amd64-nat.c: Same.
586 * arc-tdep.c: Same.
587 * arch/aarch64-insn.c: Same.
588 * block.c: Same.
589 * breakpoint.h: Same.
590 * btrace.h: Same.
591 * c-varobj.c: Same.
592 * cli/cli-decode.c: Same.
593 * cli/cli-script.c: Same.
594 * cli/cli-utils.h: Same.
595 * coff-pe-read.c: Same.
596 * coffread.c: Same.
597 * compile/compile-cplus-symbols.c: Same.
598 * compile/compile-object-run.c: Same.
599 * completer.c: Same.
600 * corelow.c: Same.
601 * cp-support.c: Same.
602 * demangle.c: Same.
603 * dwarf-index-write.c: Same.
604 * dwarf2-frame.c: Same.
605 * dwarf2-frame.h: Same.
606 * eval.c: Same.
607 * frame-base.h: Same.
608 * frame.h: Same.
609 * gdbcmd.h: Same.
610 * gdbtypes.h: Same.
611 * gnu-nat.c: Same.
612 * guile/scm-objfile.c: Same.
613 * i386-tdep.c: Same.
614 * i386-tdep.h: Same.
615 * infcall.c: Same.
616 * infcall.h: Same.
617 * linux-nat.c: Same.
618 * m68k-tdep.c: Same.
619 * macroexp.c: Same.
620 * memattr.c: Same.
621 * mi/mi-cmd-disas.c: Same.
622 * mi/mi-getopt.h: Same.
623 * mi/mi-main.c: Same.
624 * minsyms.c: Same.
625 * nat/aarch64-sve-linux-sigcontext.h: Same.
626 * objfiles.h: Same.
627 * ppc-linux-nat.c: Same.
628 * ppc-linux-tdep.c: Same.
629 * ppc-tdep.h: Same.
630 * progspace.h: Same.
631 * prologue-value.h: Same.
632 * python/py-evtregistry.c: Same.
633 * python/py-instruction.h: Same.
634 * record-btrace.c: Same.
635 * record-full.c: Same.
636 * remote.c: Same.
637 * rs6000-tdep.c: Same.
638 * ser-tcp.c: Same.
639 * sol-thread.c: Same.
640 * sparc-sol2-tdep.c: Same.
641 * sparc64-tdep.c: Same.
642 * stabsread.c: Same.
643 * symfile.c: Same.
644 * symtab.h: Same.
645 * target.c: Same.
646 * tracepoint.c: Same.
647 * tui/tui-data.h: Same.
648 * tui/tui-io.c: Same.
649 * tui/tui-win.c: Same.
650 * tui/tui.c: Same.
651 * unittests/rsp-low-selftests.c: Same.
652 * user-regs.h: Same.
653 * utils.c: Same.
654 * utils.h: Same.
655 * valarith.c: Same.
656 * valops.c: Same.
657 * valprint.c: Same.
658 * valprint.h: Same.
659 * value.c: Same.
660 * value.h: Same.
661 * varobj.c: Same.
662 * x86-nat.h: Same.
663 * xtensa-tdep.c: Same.
664
1834d45f
AT
6652019-10-25 Ali Tamur <tamur@google.com>
666
667 * charset.c (find_charset_names): Reflect API change.
668
5396ae17
CB
6692019-10-25 Christian Biesinger <cbiesinger@google.com>
670
671 * symtab.c (struct demangled_name_entry): Change demangled name
672 to a unique_xmalloc_ptr<char>, now that we don't allocate it as
673 part of the struct anymore.
674 (symbol_set_names): No longer obstack allocate + copy the demangled
675 name, just store the allocated name from bfd.
676
93878f47
TT
6772019-10-25 Tom Tromey <tromey@adacore.com>
678
679 * dwarf2-frame.c (dwarf2_cie_table): Now a typedef.
680 (bsearch_cie_cmp, add_cie): Remove.
681 (find_cie): Reimplement.
682 (decode_frame_entry_1, decode_frame_entry): Change type. Update.
683 (dwarf2_build_frame_info): Update.
684
7b71fc97
L
6852019-10-24 H.J. Lu <hongjiu.lu@intel.com>
686
687 PR gdb/25126
688 * symfile.c (reread_symbols): Call forget_cached_source_info to
689 clear the stale source cache.
690
cbb5a2ea
CB
6912019-10-24 Christian Biesinger <cbiesinger@google.com>
692
693 * configure: Regenerate.
694 * configure.ac: Remove code that sets python_has_threads.
695
71737c43
CB
6962019-10-24 Christian Biesinger <cbiesinger@google.com>
697
698 * config.in: Regenerate.
699 * configure: Regenerate.
700 * configure.ac: Remove the code that uses sed to get the python
701 version and defines HAVE_LIBPYTHON2_6 / HAVE_LIBPYTHON2_7.
702
33d569b7
AB
7032019-10-24 Andrew Burgess <andrew.burgess@embecosm.com>
704
705 * python/py-progspace.c (pspy_block_for_pc): Return None for all
706 error paths.
707
f16f7b7c
TT
7082019-10-23 Tom Tromey <tom@tromey.com>
709
710 * arc-tdep.c: Remove ".." from include.
711 * frv-tdep.c: Remove ".." from include.
712 * lm32-tdep.c: Remove ".." from include.
713 * microblaze-tdep.c: Remove ".." from include.
714 * or1k-tdep.h: Remove ".." from include.
715 * s12z-tdep.c: Remove ".." from include.
716 * Makefile.in (OPCODES_CFLAGS): Add comment.
717 (TOP_CFLAGS): New variable.
718 (INTERNAL_CFLAGS_BASE): Add TOP_CFLAGS.
719
6999161a
TT
7202019-10-23 Tom Tromey <tom@tromey.com>
721
722 * Makefile.in (READLINE_DIR): Update.
723
12e7c35e
TBA
7242019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
725
726 * infcall.c (call_function_by_hand_dummy): Fix the function
727 comment. And extract out a code section into...
728 (reserve_stack_space): ...this new function.
729
37055cad
TBA
7302019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
731
732 * infcall.c (value_arg_coerce): Remove an unused parameter.
733 (call_function_by_hand_dummy): Update the call to
734 'value_arg_coerce'.
735
39bcc47c
TBA
7362019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
737
738 * infcall.c (call_function_by_hand_dummy): Refactor.
739
bd888c0f
TBA
7402019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
741
742 * MAINTAINERS (Write After Approval): Add Tankut Baris Aktemur.
743
c12d372d
TT
7442019-10-23 Tom Tromey <tom@tromey.com>
745
746 * configure: Rebuild.
747 * configure.ac: Don't check for sigprocmask.
748 * gdbsupport/common.m4 (GDB_AC_COMMON): Check for sigprocmask.
749
4d0b984b
TT
7502019-10-23 Tom Tromey <tom@tromey.com>
751
752 * configure: Rebuild.
753 * acinclude.m4: Use m4_include, not sinclude.
754
7e785608
TV
7552019-10-23 Tom de Vries <tdevries@suse.de>
756
757 PR breakpoints/24687
758 * symtab.c (iterate_over_some_symtabs): Apply gdb_realpath on fullname.
759
403772ef
CB
7602019-10-22 Christian Biesinger <cbiesinger@google.com>
761
762 * symtab.c (struct demangled_name_entry) <language>: Change from
763 bitfield to regular variable.
764
3a494279
CB
7652019-10-22 Christian Biesinger <cbiesinger@google.com>
766
767 * symtab.c (struct demangled_name_entry): Add a constructor.
768 (free_demangled_name_entry): New function to call the destructor
769 for demangled_name_entry.
770 (create_demangled_names_hash): Pass free_demangled_name_entry to
771 htab_create_alloc.
772 (symbol_set_names): Call placement new for demangled_name_entry.
773 * utils.c: No longer include xxhash.h here, now that fast_hash
774 is inlined in the header.
775 * utils.h: Instead, include it here.
776
ccb1ba62
CB
7772019-10-22 Christian Biesinger <cbiesinger@google.com>
778
779 * Makefile.in: Link with libxxhash.
780 * config.in: Regenerate.
781 * configure: Regenerate.
782 * configure.ac: Search for libxxhash.
783 * utils.c (fast_hash): Use xxhash if present.
784
1a6ff1a9
CB
7852019-10-22 Christian Biesinger <cbiesinger@google.com>
786
787 * utils.h (fast_hash): New function.
788 * symtab.c (hash_demangled_name_entry): Call new function
789 fast_hash.
790
7bb43059
CB
7912019-10-22 Christian Biesinger <cbiesinger@google.com>
792
793 * symtab.c (struct demangled_name_entry): Change type of mangled
794 to gdb::string_view. Also adds a constructor that takes the
795 mangled name.
796 (hash_demangled_name_entry): Update.
797 (eq_demangled_name_entry): Update.
798 (free_demangled_name_entry): New function to call the destructor
799 now that this is not a POD anymore.
800 (create_demangled_names_hash): Pass free_demangled_name_entry to
801 htab_create_alloc.
802 (symbol_set_names): Update.
803
7ba99d21
AT
8042019-10-21 Ali Tamur <tamu@google.com>
805
806 * dwarf2read.c (dir_index): Change type.
807 (file_name_index): Likewise.
808 (line_header::include_dir_at): Change comment and implementation on
809 whether it is DWARF 5.
810 (line_header::is_valid_file_index): New function.
811 (line_header::file_name_at): Change comment and implementation on
812 whether it is DWARF 5.
813 (line_header::file_names): Change to private field renamed as
814 m_file_names and introduce a new accessor method.
815 (line_header::file_names_size): New method.
816 (line_header::include_dirs): Change to private field and rename as
817 m_include_dirs.
818 (dw2_get_file_names_reader): Define local var at a smaller scope and
819 reflect API change.
820 (dwarf2_cu::setup_type_unit_groups): Reflect API change.
821 (process_structure_scope): Likewise.
822 (line_header::add_include_dir): Change message and reflect renaming.
823 (line_header::add_file_name): Likewise.
824 (read_formatted_entries): Handle DW_FORM_data16.
825 (dwarf_decode_line_header): Fix line header length calculation.
826 (psymtab_include_file_name): Change comment and API.
827 (lnp_state_machine::m_file): Update comment and reflect type change.
828 (lnp_state_machine::record_line): Reflect type change.
829 (dwarf_decode_lines): Reflect API change.
830 (file_file_name): Likewise.
831 (file_full_name): Likewise.
832
45f47c3a
AB
8332019-10-21 Andrew Burgess <andrew.burgess@embecosm.com>
834
835 * objfiles.c (sort_cmp): Ensure that !(a < a) holds true.
836
e5f3c0e3
TT
8372019-10-21 Tom Tromey <tom@tromey.com>
838
839 * tui/tui-winsource.h (tui_exec_info_content): Remove typedef.
840
a0a461e5
TT
8412019-10-21 Tom Tromey <tom@tromey.com>
842
843 * configure.ac (nm.h): Conditionally create nm.h link. Subst
844 NM_H. Use AC_CONFIG_LINKS.
845 * configure: Rebuild.
846 * Makefile.in (NM_H): New variable.
847 (generated_files): Add NM_H. Remove gcore.
848 (nm.h, stamp-nmh): New targets.
849
54d83b8d
TT
8502019-10-20 Tom Tromey <tom@tromey.com>
851
852 * objfiles.h (unlink_objfile, put_objfile_before): Don't declare.
853 * objfiles.c (unlink_objfile): Move earlier. Now static. Remove
854 obsolete comment.
855 (put_objfile_before): Now static.
856
23771117
SM
8572019-10-19 Simon Marchi <simon.marchi@polymtl.ca>
858
859 * gdbsupport/common-utils.h (startswith): Change return type to
860 bool.
861
39ef2f62
CB
8622019-10-19 Christian Biesinger <cbiesinger@google.com>
863
864 * bcache.c (bcache::print_statistics): Use std::sort instead of qsort.
865 * breakpoint.c (bp_locations_compare): Rename to...
866 (bp_location_is_less_than): ...this, and change to std::sort semantics.
867 (update_global_location_list): Use std::sort instead of qsort.
868 * buildsym.c (compare_line_numbers): Rename to...
869 (lte_is_less_than): ...this, and change to std::sort semantics.
870 (buildsym_compunit::end_symtab_with_blockvector): Use std::sort
871 instead of qsort.
872 * disasm.c (compare_lines): Rename to...
873 (line_is_less_than): ...this, and change to std::sort semantics.
874 (do_mixed_source_and_assembly_deprecated): Call std::sort instead
875 of qsort.
876 * dwarf2-frame.c (qsort_fde_cmp): Rename to...
877 (fde_is_less_than): ...this, and change to std::sort semantics.
878 (dwarf2_build_frame_info): Call std::sort instead of qsort.
879 * mdebugread.c (compare_blocks):
880 (block_is_less_than): ...this, and change to std::sort semantics.
881 (sort_blocks): Call std::sort instead of qsort.
882 * objfiles.c (qsort_cmp): Rename to...
883 (sort_cmp): ...this, and change to std::sort semantics.
884 (update_section_map): Call std::sort instead of qsort.
885 * remote.c (compare_pnums): Remove.
886 (map_regcache_remote_table): Call std::sort instead of qsort.
887 * utils.c (compare_positive_ints): Remove.
888 * utils.h (compare_positive_ints): Remove.
889 * xcoffread.c (compare_lte): Remove.
890 (arrange_linetable): Call std::sort instead of qsort.
891
f71433ee
SDJ
8922019-10-19 Sergio Durigan Junior <sergiodj@redhat.com>
893
894 * symfile.c (init_entry_point_info): Fix typo.
895 * i386-darwin-tdep.c (darwin_dwarf_signal_frame_p): Fix typo.
896
85102364
TV
8972019-10-18 Tom de Vries <tdevries@suse.de>
898
899 * aarch64-tdep.c: Fix typos in comments.
900 * ada-lang.c: Same.
901 * ada-tasks.c: Same.
902 * alpha-tdep.c: Same.
903 * alpha-tdep.h: Same.
904 * amd64-nat.c: Same.
905 * amd64-windows-tdep.c: Same.
906 * arc-tdep.c: Same.
907 * arc-tdep.h: Same.
908 * arch-utils.c: Same.
909 * arm-nbsd-tdep.c: Same.
910 * arm-tdep.c: Same.
911 * ax-gdb.c: Same.
912 * blockframe.c: Same.
913 * btrace.c: Same.
914 * c-varobj.c: Same.
915 * coff-pe-read.c: Same.
916 * coffread.c: Same.
917 * cris-tdep.c: Same.
918 * darwin-nat.c: Same.
919 * dbxread.c: Same.
920 * dcache.c: Same.
921 * disasm.c: Same.
922 * dtrace-probe.c: Same.
923 * dwarf-index-write.c: Same.
924 * dwarf2-frame-tailcall.c: Same.
925 * dwarf2-frame.c: Same.
926 * dwarf2read.c: Same.
927 * eval.c: Same.
928 * exceptions.c: Same.
929 * fbsd-tdep.c: Same.
930 * findvar.c: Same.
931 * frame.c: Same.
932 * frv-tdep.c: Same.
933 * gnu-v3-abi.c: Same.
934 * go32-nat.c: Same.
935 * h8300-tdep.c: Same.
936 * hppa-tdep.c: Same.
937 * i386-linux-tdep.c: Same.
938 * i386-tdep.c: Same.
939 * ia64-libunwind-tdep.c: Same.
940 * ia64-tdep.c: Same.
941 * infcmd.c: Same.
942 * infrun.c: Same.
943 * linespec.c: Same.
944 * linux-nat.c: Same.
945 * linux-thread-db.c: Same.
946 * machoread.c: Same.
947 * mdebugread.c: Same.
948 * mep-tdep.c: Same.
949 * mn10300-tdep.c: Same.
950 * namespace.c: Same.
951 * objfiles.c: Same.
952 * opencl-lang.c: Same.
953 * or1k-tdep.c: Same.
954 * osabi.c: Same.
955 * ppc-linux-nat.c: Same.
956 * ppc-linux-tdep.c: Same.
957 * ppc-sysv-tdep.c: Same.
958 * printcmd.c: Same.
959 * procfs.c: Same.
960 * record-btrace.c: Same.
961 * record-full.c: Same.
962 * remote-fileio.c: Same.
963 * remote.c: Same.
964 * rs6000-tdep.c: Same.
965 * s12z-tdep.c: Same.
966 * score-tdep.c: Same.
967 * ser-base.c: Same.
968 * ser-go32.c: Same.
969 * skip.c: Same.
970 * sol-thread.c: Same.
971 * solib-svr4.c: Same.
972 * solib.c: Same.
973 * source.c: Same.
974 * sparc-nat.c: Same.
975 * sparc-sol2-tdep.c: Same.
976 * sparc-tdep.c: Same.
977 * sparc64-tdep.c: Same.
978 * stabsread.c: Same.
979 * stack.c: Same.
980 * symfile.c: Same.
981 * symtab.c: Same.
982 * target-descriptions.c: Same.
983 * target-float.c: Same.
984 * thread.c: Same.
985 * utils.c: Same.
986 * valops.c: Same.
987 * valprint.c: Same.
988 * value.c: Same.
989 * varobj.c: Same.
990 * windows-nat.c: Same.
991 * xcoffread.c: Same.
992 * xstormy16-tdep.c: Same.
993 * xtensa-tdep.c: Same.
994
c5adaa19
TT
9952019-10-17 Tom Tromey <tromey@adacore.com>
996
997 * configure: Rebuild.
998 * configure.ac: Use AC_CONFIG_HEADERS. Create stamp-h there, not
999 in AC_CONFIG_FILES invocation.
1000 * Makefile.in (Makefile, data-directory/Makefile, stamp-h): Use
1001 new-style config.status invocation.
1002
405feb71
TV
10032019-10-17 Tom de Vries <tdevries@suse.de>
1004
1005 * arm-nbsd-nat.c: Fix typos in comments.
1006 * arm-tdep.c: Same.
1007 * darwin-nat-info.c: Same.
1008 * dwarf2read.c: Same.
1009 * elfread.c: Same.
1010 * event-top.c: Same.
1011 * findvar.c: Same.
1012 * gdbtypes.c: Same.
1013 * hppa-tdep.c: Same.
1014 * i386-tdep.c: Same.
1015 * jit.c: Same.
1016 * main.c: Same.
1017 * mdebugread.c: Same.
1018 * moxie-tdep.c: Same.
1019 * nto-procfs.c: Same.
1020 * osabi.c: Same.
1021 * ppc-linux-tdep.c: Same.
1022 * remote.c: Same.
1023 * riscv-tdep.c: Same.
1024 * s390-tdep.c: Same.
1025 * sh-tdep.c: Same.
1026 * sparc-linux-tdep.c: Same.
1027 * sparc-nat.c: Same.
1028 * stack.c: Same.
1029 * target-descriptions.c: Same.
1030 * top.c: Same.
1031 * varobj.c: Same.
1032
befcd486
TT
10332019-10-16 Tom Tromey <tom@tromey.com>
1034
1035 * objfiles.h (struct objfile) <original_name>: Now const.
1036
17bfe554
CB
10372019-10-16 Christian Biesinger <cbiesinger@google.com>
1038
1039 * gdbsupport/gdb_setjmp.h (SIGSETJMP): Allow passing in the value to
1040 pass on to sigsetjmp's second argument.
1041 * cp-support.c (gdb_demangle): Unblock SIGSEGV if we caught a crash.
1042
950b7495
KS
10432019-10-16 Keith Seitz <keiths@redhat.com>
1044
1045 PR gdb/23567
1046 * dwarf2read.c (dwarf2_per_objfile::locate_sections): Discard
1047 sections whose size is greater than the file size.
1048
ff371ec9
JW
10492019-10-16 Jim Wilson <jimw@sifive.com>
1050
1051 * riscv-tdep.c (riscv_gcc_target_options): New.
1052 (riscv_gnu_triplet_regexp): New.
1053 (riscv_gdbarch_init): Call set_gdbarch_gcc_triplet_options and
1054 set_gdbarch_gnu_triplet_regexp.
1055
fec4e896
CB
10562019-10-16 Christian Biesinger <cbiesinger@google.com>
1057
1058 * Makefile.in: Add xml-builtin.h.
1059 * features/feature_to_c.sh: Add an include for xml-builtin.h
1060 to ensure that the compiler checks that the types match.
1061 * xml-builtin.h: New file.
1062 * xml-support.c (fetch_xml_builtin): Add missing const.
1063 * xml-support.h: Remove declaration of xml_builtins.
1064
d10eccaa
TV
10652019-10-16 Tom de Vries <tdevries@suse.de>
1066
1067 PR tdep/25096
1068 * amd64-tdep.c (amd64_classify_aggregate_field): Factor out of ...
1069 (amd64_classify_aggregate): ... here.
1070 (amd64_classify_aggregate_field): Handled fiels of nested structs
1071 recursively.
1072
745ff14e
TV
10732019-10-16 Tom de Vries <tdevries@suse.de>
1074
1075 PR tdep/24104
1076 * amd64-tdep.c (amd64_push_arguments): Handle AMD64_NO_CLASS in loop
1077 that handles 'theclass'.
1078
791b7405
AB
10792019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
1080
1081 * linespec.c (decode_digits_ordinary): Update comment.
1082 * make-target-delegates: No longer need to handle VEC case.
1083 * memrange.c (normalize_mem_ranges): Update comment.
1084 * namespace.c (add_using_directive): Update comment.
1085 * objc-lang.c (uniquify_strings): Update comment.
1086 * ppc-linux-nat.c (struct thread_points): Update comment.
1087 * probe.h (find_probes_in_objfile): Update comment.
1088 * target.h (enum flash_preserve_mode): Update comment.
1089 * varobj.c (varobj_restrict_range): Update comment.
1090 * varobj.h (varobj_list_children): Update comment.
1091
0dc32745
AB
10922019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
1093
1094 * Makefile.in: Remove references to vec.h and vec.c.
1095 * aarch64-tdep.c: No longer include vec.h.
1096 * ada-lang.c: Likewise.
1097 * ada-lang.h: Likewise.
1098 * arm-tdep.c: Likewise.
1099 * ax.h: Likewise.
1100 * breakpoint.h: Likewise.
1101 * charset.c: Likewise.
1102 * cp-support.h: Likewise.
1103 * dtrace-probe.c: Likewise.
1104 * dwarf2read.c: Likewise.
1105 * extension.h: Likewise.
1106 * gdb_bfd.c: Likewise.
1107 * gdbsupport/gdb_vecs.h: Likewise.
1108 * gdbsupport/vec.c: Remove.
1109 * gdbsupport/vec.h: Remove.
1110 * gdbthread.h: Likewise.
1111 * guile/scm-type.c: Likewise.
1112 * inline-frame.c: Likewise.
1113 * machoread.c: Likewise.
1114 * memattr.c: Likewise.
1115 * memrange.h: Likewise.
1116 * namespace.h: Likewise.
1117 * nat/linux-btrace.h: Likewise.
1118 * osdata.c: Likewise.
1119 * parser-defs.h: Likewise.
1120 * progspace.h: Likewise.
1121 * python/py-type.c: Likewise.
1122 * record-btrace.c: Likewise.
1123 * rust-exp.y: Likewise.
1124 * solib-target.c: Likewise.
1125 * stap-probe.c: Likewise.
1126 * target-descriptions.c: Likewise.
1127 * target-memory.c: Likewise.
1128 * target.h: Likewise.
1129 * varobj.c: Likewise.
1130 * varobj.h: Likewise.
1131 * xml-support.h: Likewise.
1132
ae640021
AB
11332019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
1134
1135 * gdb/dwarf2read.c (dwarf2_per_objfile::~dwarf2_per_objfile):
1136 Update for new std::vector based implementation.
1137 (process_psymtab_comp_unit_reader): Likewise.
1138 (scan_partial_symbols): Likewise.
1139 (recursively_compute_inclusions): Likewise.
1140 (compute_compunit_symtab_includes): Likewise.
1141 (process_imported_unit_die): Likewise.
1142 (queue_and_load_dwo_tu): Likewise.
1143 (follow_die_sig_1): Likewise.
1144 * gdb/dwarf2read.h: Remove DEF_VEC_P.
1145 (typedef dwarf2_per_cu_ptr): Remove.
1146 (struct dwarf2_per_cu_data) <imported_symtabs_empty>: New
1147 function.
1148 (struct dwarf2_per_cu_data) <imported_symtabs_push>: New function.
1149 (struct dwarf2_per_cu_data) <imported_symtabs_size>: New function.
1150 (struct dwarf2_per_cu_data) <imported_symtabs_free>: New function.
1151 (struct dwarf2_per_cu_data) <imported_symtabs>: Change to
1152 std::vector.
1153
55dfc88f
TT
11542019-10-15 Tom Tromey <tromey@adacore.com>
1155
1156 * windows-nat.c (windows_nat_target::resume): Use %x when logging
1157 TID.
1158
96b49c5e
TT
11592019-10-15 Tom Tromey <tromey@adacore.com>
1160
1161 * windows-nat.c (windows_nat_target::fetch_registers)
1162 (windows_nat_target::store_registers): Rename "pid" to "tid".
1163
953cff56
TT
11642019-10-15 Tom Tromey <tromey@adacore.com>
1165
1166 * gdbarch.h, gdbarch.c: Rebuild.
1167 * gdbarch.sh (gcc_target_options): Change return type to
1168 std::string.
1169 * compile/compile.c (get_args): Update.
1170 * nios2-tdep.c (nios2_gcc_target_options): Return std::string.
1171 * arm-linux-tdep.c (arm_linux_gcc_target_options): Return
1172 std::string.
1173 * aarch64-linux-tdep.c (aarch64_linux_gcc_target_options): Return
1174 std::string.
1175 * arch-utils.c (default_gcc_target_options): Return std::string.
1176 * arch-utils.h (default_gcc_target_options): Return std::string.
1177 * s390-tdep.c (s390_gcc_target_options): Return std::string.
1178
81e6b8eb
CB
11792019-10-15 Christian Biesinger <cbiesinger@google.com>
1180
1181 * breakpoint.c (breakpoint_chain): Make static.
1182 * tui/tui-winsource.c: Call iterate_over_breakpoints instead
1183 of accessing breakpoint_chain.
1184
95da600f
CB
11852019-10-15 Christian Biesinger <cbiesinger@google.com>
1186
1187 * breakpoint.c (iterate_over_breakpoints): Change function pointer
1188 to a gdb::function_view and return value to bool.
1189 * breakpoint.h (iterate_over_breakpoints): Likewise.
1190 * dummy-frame.c (pop_dummy_frame_bpt): Update.
1191 (pop_dummy_frame): Update.
1192 * guile/scm-breakpoint.c (bpscm_build_bp_list): Update.
1193 (gdbscm_breakpoints): Update.
1194 * python/py-breakpoint.c (build_bp_list): Update.
1195 (gdbpy_breakpoints): Update.
1196 * python/py-finishbreakpoint.c (bpfinishpy_detect_out_scope_cb):
1197 Update.
1198 (bpfinishpy_handle_stop): Update.
1199 (bpfinishpy_handle_exit): Update.
1200 * solib-svr4.c (svr4_update_solib_event_breakpoint): Update.
1201 (svr4_update_solib_event_breakpoints): Update.
1202
ba18312d
AA
12032019-10-15 Andreas Arnez <arnez@linux.ibm.com>
1204
1205 * s390-tdep.c (s390_effective_inner_type): Ignore static fields
1206 when unwrapping single-field structs.
1207
6acc1a0b
SM
12082019-10-14 Simon Marchi <simon.marchi@polymtl.ca>
1209
1210 * dwarf2read.c: Remove includes.
1211
284782de
SM
12122019-10-13 Simon Marchi <simon.marchi@polymtl.ca>
1213
1214 * ui-out.c (ui_out::call_do_message): Silence
1215 -Wformat-nonliteral warning.
1216
073bbbb0
SM
12172019-10-12 Simon Marchi <simon.marchi@polymtl.ca>
1218
1219 * breakpoint.c: Remove some includes: continuations.h, skip.h,
1220 mi/mi-main.h, readline/readline.h, readline/history.h. Add
1221 include: readline/tilde.h.
1222
7b9a15e1
CB
12232019-10-12 Christian Biesinger <cbiesinger@google.com>
1224
1225 * remote.c (remote_target::get_trace_status): Remove declaration of
1226 trace_regblock_size.
1227
cc8dee1f
CB
12282019-10-12 Christian Biesinger <cbiesinger@google.com>
1229
1230 * cli/cli-cmds.c (max_user_call_depth): Move comment to header.
1231 (show_user): Remove declaration of cmdlist.
1232 * cli/cli-cmds.h (max_user_call_depth): Declare.
1233 * cli/cli-script.c (execute_user_command): Remove declaration
1234 of max_user_call_depth.
1235
a83d4ef6
JW
12362019-10-11 Jim Wilson <jimw@sifive.com>
1237
5f93c5a6
JW
1238 * gdbsupport/print-utils.h (pulongest): Fix comment.
1239 (plongest): Likewise.
1240 (phex): Add missing comment, mention leading zeros.
1241 (phex_nz): Add mention of no leading zeros to comment.
1242
a83d4ef6
JW
1243 * riscv-tdep.c (riscv_push_dummy_code): Change %lld to %s and use
1244 plongest instead of unsigned long long cast.
1245
26344e0c
CB
12462019-10-10 Christian Biesinger <cbiesinger@google.com>
1247
1248 * main.c (captured_main_1): Include gdbtk.h and remove declarations
1249 for external_editor_command and gdbtk_test.
1250
c2c440a9
CB
12512019-10-10 Christian Biesinger <cbiesinger@google.com>
1252
1253 * mi/mi-cmd-var.c (varobjdebug): Remove declaration.
1254 * varobj.c (varobjdebug): Move comment to...
1255 * varobj.h (varobjdebug): ...here, and declare.
1256
a31bff9d
TT
12572019-10-09 Tom Tromey <tom@tromey.com>
1258
1259 * tui/tui-regs.c (tui_data_window::show_registers): Don't call
1260 erase_data_content.
1261
7523da63
TT
12622019-10-09 Tom Tromey <tom@tromey.com>
1263
1264 * tui/tui-wingeneral.h (tui_delete_win): Don't declare.
1265 * tui/tui-stack.c (tui_locator_window::rerender): Update.
1266 * tui/tui-command.c (tui_cmd_window::resize)
1267 (tui_refresh_cmd_win): Update.
1268 * tui/tui-win.c (tui_resize_all, tui_set_focus_command): Update.
1269 * tui/tui.c (tui_rl_other_window, tui_enable): Update.
1270 * tui/tui-data.c (~tui_gen_win_info): Remove.
1271 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
1272 * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts)
1273 (tui_redisplay_readline, tui_mld_flush)
1274 (tui_mld_erase_entire_line, tui_mld_getc, tui_getc): Update.
1275 * tui/tui-regs.c (tui_data_window::delete_data_content_windows)
1276 (tui_data_window::erase_data_content)
1277 (tui_data_item_window::rerender)
1278 (tui_data_item_window::refresh_window): Update.
1279 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window)
1280 (box_win, tui_gen_win_info::make_window)
1281 (tui_gen_win_info::make_visible): Update.
1282 (tui_delete_win): Remove.
1283 * tui/tui-winsource.c
1284 (tui_source_window_base::do_erase_source_content): Update.
1285 (tui_show_source_line, tui_source_window_base::update_tab_width)
1286 (tui_source_window_base::update_exec_info): Update.
1287 * tui/tui-data.h (struct curses_deleter): New.
1288 (struct tui_gen_win_info) <handle>: Now a unique_ptr.
1289 (struct tui_gen_win_info) <~tui_gen_win_info>: Define.
1290
a7798e7f
TT
12912019-10-09 Tom Tromey <tom@tromey.com>
1292
1293 * tui/tui-wingeneral.h (struct tui_gen_win_info): Don't declare.
1294
5c45899e
TT
12952019-10-09 Tom Tromey <tom@tromey.com>
1296
1297 * tui/tui-data.c (tui_win_is_auxiliary): Remove.
1298 * tui/tui-data.h (tui_win_is_auxiliary): Don't declare.
1299
6d7fd9aa
TT
13002019-10-09 Tom Tromey <tom@tromey.com>
1301
1302 * tui/tui-disasm.c (tui_get_low_disassembly_address): Compute
1303 window height directly.
1304 * tui/tui-layout.h (tui_default_win_viewport_height): Don't
1305 declare.
1306 * tui/tui-layout.c (tui_default_win_height): Remove.
1307 (tui_default_win_viewport_height): Remove.
1308
d2dd1084
TT
13092019-10-09 Tom Tromey <tom@tromey.com>
1310
1311 * tui/tui.h: Remove comments.
1312
cff32449
TV
13132019-10-09 Tom de Vries <tdevries@suse.de>
1314
1315 * python/lib/gdb/printer/bound_registers.py: Use
1316 '^builtin_type_bound128' as regexp argument for
1317 add_builtin_pretty_printer.
1318
6a25e8a2
CB
13192019-10-09 Christian Biesinger <cbiesinger@google.com>
1320
1321 * guile/guile.c (guile_extension_script_ops): Remove forward
1322 declaration and mark as static.
1323 (guile_script_ops): Likewise.
1324 (extension_language_guile): Move further down in the file so
1325 it can reference the definitions for guile_{extension_,}script_ops.
1326
6d9d6da4
AA
13272019-10-09 Andreas Arnez <arnez@linux.ibm.com>
1328
1329 * s390-tdep.c (390_process_record): Handle new arch13 instructions
1330 except SORTL, DFLTCC, and KDSA.
1331
3abea05d
TT
13322019-10-08 Tom Tromey <tromey@adacore.com>
1333
1334 * windows-nat.c (struct windows_thread_info_struct) <sf>: Remove.
1335 (struct safe_symbol_file_add_args): Remove.
1336
dde996e2
TT
13372019-10-08 Tom Tromey <tromey@adacore.com>
1338
1339 * windows-nat.c: Don't include buildsym-legacy.h.
1340
cd6fdaa1
TT
13412019-10-08 Tom Tromey <tromey@adacore.com>
1342
1343 * contrib/ari/gdb_ari.sh (%p): Allow gdb-specific %p extensions.
1344
79bb1944
CB
13452019-10-08 Christian Biesinger <cbiesinger@google.com>
1346
1347 * gdbtypes.c (overload_debug): Move comment to header.
1348 * gdbtypes.h (overload_debug): Declare.
1349 * valops.c: Remove declaration of overload_debug, instead
1350 include gdbtypes.h.
1351
34916edc
CB
13522019-10-08 Christian Biesinger <cbiesinger@google.com>
1353
1354 * language.c (show_language_command): Pass lang_frame_mismatch_warn
1355 through _().
1356 (lang_frame_mismatch_warn): Make const, mark with N_(), and
1357 move comment...
1358 * language.h (lang_frame_mismatch_warn): ... here. Also add
1359 declaration.
1360 * top.c (lang_frame_mismatch_warn): Remove declaration.
1361 (check_frame_language_change): Pass lang_frame_mismatch_warn
1362 through _().
1363
bad5c026
CB
13642019-10-07 Christian Biesinger <cbiesinger@google.com>
1365
1366 * c-lang.h (vtbl_ptr_name): Declare.
1367 * cp-valprint.c (vtbl_ptr_name): Remove "extern" now that we get
1368 it from the header.
1369 * stabsread.c (define_symbol): Remove declaration of vtbl_ptr_name.
1370
51f1fdc3
CB
13712019-10-07 Christian Biesinger <cbiesinger@google.com>
1372
1373 * charset.c (your_gdb_wchar_t_is_bogus): Replace with a
1374 gdb_static_assert.
1375
30d1f018
WP
13762019-10-07 Weimin Pan <weimin.pan@oracle.com>
1377
606813d5
WP
1378 * ../Makefile.def (dependencies): Add all-libctf to all-gdb
1379 * ../Makefile.in: Add "all-gdb: maybe-all-libctf"
30d1f018
WP
1380 * ctfread.c: New file.
1381 * ctfread.h: New file.
1382 * elfread.c: Include ctfread.h.
1383 (struct elfinfo text_p): New member ctfsect.
1384 (elf_locate_sections): Mark CTF section.
1385 (elf_symfile_read): Call elfctf_build_psymtabs.
1386 * Makefile.in (LIBCTF): Add.
1387 (CLIBS): Use it.
1388 (CDEPS): Likewise.
1389 (DIST): Add ctfread.c.
606813d5
WP
1390
13912019-10-07 Andrew Burgess <andrew.burgess@embecosm.com>
1392
1393 * ctfread.c (struct nextfield): Renamed to ...
1394 (struct ctf_nextfield): ... this.
1395 (struct field_info): Renamed to ...
1396 (strut ctf_field_info): ... this.
1397 (attach_fields_to_type): Update for renamed structures.
1398 (ctf_add_member_cb): Likewise.
1399 (ctf_add_enum_member_cb): Likewise.
1400 (process_struct_members): Likewise.
1401 (process_enum_type): Likewise.
30d1f018 1402
518fe38c
WP
14032019-10-07 Weimin Pan <weimin.pan@oracle.com>
1404
1405 * tracectf.h: Rename, was ctf.h.
1406 * tracectf.c: Rename, was ctf.c, replace ctf.h with tracectf.h.
1407 * tracefile.c: Likewise.
1408 * tracepoint.c: Remove unused include ctf.h.
1409 * mi/mi-main.c: Likewise.
1410 * Makefile.in Replace ctf.c with tracectf.c.
1411
225f296a
JB
14122019-10-06 Joel Brobecker <brobecker@adacore.com>
1413
1414 * version.in: Change version number to "9.0.50.DATE-git".
1415
77c2dba3
TT
14162019-10-03 Tom Tromey <tom@tromey.com>
1417
1418 PR rust/24976:
1419 * dwarf2read.c (quirk_rust_enum): Handle single-element unions.
1420
179aed7f
AB
14212019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
1422
1423 * f-lang.c (f_language_defn): Use cp_get_symbol_name_matcher and
1424 cp_search_name_hash.
1425 * NEWS: Add entry about nested function support.
1426
0a4b0913
AB
14272019-10-03 Bernhard Heckel <bernhard.heckel@intel.com>
1428 Andrew Burgess <andrew.burgess@embecosm.com>
1429
1430 * cp-namespace.c (cp_search_static_and_baseclasses): Only search
1431 for nested static variables when searchin VAR_DOMAIN.
1432 * dwarf2read.c (add_partial_symbol): Add nested subroutines to the
1433 global scope, update comment.
1434 (add_partial_subprogram): Call add_partial_subprogram recursively
1435 for nested subroutines when processinng Fortran.
1436 (load_partial_dies): Process the child entities of a subprogram
1437 when processing Fortran.
1438 (partial_die_parent_scope): Handle building scope
1439 for Fortran nested functions.
1440 (process_die): Record that nested functions have a scope.
1441 (new_symbol): Always record Fortran subprograms on the global
1442 symbol list.
1443 (determine_prefix): How to build the prefix for Fortran
1444 subprograms.
1445
d8c06f22
AB
14462019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
1447
1448 * linux-nat.c (linux_nat_filter_event): Don't ignore SIGSTOP if we
1449 have just sent the thread a SIGSTOP and are waiting for it to
1450 arrive.
1451
a8b3b8e9
AB
14522019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
1453
1454 * btrace.c (btrace_add_pc): Remove whitespace before the template
1455 parameter in 'std::vector <...>'.
1456 (parse_xml_btrace_block): Likewise.
1457 (btrace_maint_decode_pt): Likewise.
1458 (btrace_maint_update_packets): Likewise.
1459 (btrace_maint_print_packets): Likewise.
1460 * btrace.h (struct btrace_maint_info): Likewise.
1461 * dwarf2read.c (struct type_unit_group): Likewise.
1462 (build_type_psymtabs_reader): Likewise.
1463 * gdbsupport/btrace-common.c (btrace_data_append): Likewise.
1464 * gdbsupport/btrace-common.h (struct btrace_data_bts): Likewise.
1465 * nat/linux-btrace.c (perf_event_read_bts): Likewise.
1466
4d825eab
TV
14672019-10-03 Tom de Vries <tdevries@suse.de>
1468
1469 * cli/cli-style.c (_initialize_cli_style): Adding a '.' at the end of
1470 the first line of the help text for set/show style metadata.
1471
80fd2826
TT
14722019-10-02 Tom Tromey <tromey@adacore.com>
1473
1474 * Makefile.in (COMMON_SFILES): Add common-inferior.c.
1475 * gdbsupport/common-inferior.c: New file.
1476 * infcmd.c (startup_with_shell): Don't define.
1477 * nat/fork-inferior.h (startup_with_shell): Don't declare.
1478 * gdbsupport/common-inferior.h (startup_with_shell): Declare.
1479 * inferior.h (startup_with_shell): Don't declare.
1480
70054538
CB
14812019-10-02 Christian Biesinger <cbiesinger@google.com>
1482
1483 * gdbsupport/gdb_assert.h: Include errors.h.
1484 * gdbsupport/gdb_string_view.h: Include gdb_assert.h.
1485
37f6a7f4
TT
14862019-10-02 Tom Tromey <tromey@adacore.com>
1487
1488 * NEWS: Add $_ada_exception entry.
1489 * ada-lang.c (struct ada_catchpoint): Add constructor.
1490 <m_kind>: New member.
1491 (allocate_location_exception, re_set_exception): Remove
1492 "ex" parameter.
1493 (should_stop_exception): Compute $_ada_exception.
1494 (check_status_exception, print_it_exception)
1495 (print_one_exception, print_mention_exception): Remove
1496 "ex" parameter.
1497 (allocate_location_catch_exception, re_set_catch_exception)
1498 (check_status_exception, print_it_catch_exception)
1499 (print_one_catch_exception, print_mention_catch_exception)
1500 (print_recreate_catch_exception)
1501 (allocate_location_catch_exception_unhandled)
1502 (re_set_catch_exception_unhandled)
1503 (check_status_exception, print_it_catch_exception_unhandled)
1504 (print_one_catch_exception_unhandled)
1505 (print_mention_catch_exception_unhandled)
1506 (print_recreate_catch_exception_unhandled)
1507 (allocate_location_catch_assert, re_set_catch_assert)
1508 (check_status_assert, print_it_catch_assert)
1509 (print_one_catch_assert, print_mention_catch_assert)
1510 (print_recreate_catch_assert)
1511 (allocate_location_catch_handlers, re_set_catch_handlers)
1512 (check_status_handlers, print_it_catch_handlers)
1513 (print_one_catch_handlers, print_mention_catch_handlers)
1514 (print_recreate_catch_handlers): Remove.
1515 (create_ada_exception_catchpoint): Update.
1516 (initialize_ada_catchpoint_ops): Update.
1517
fccf9de1
TT
15182019-10-02 Tom Tromey <tromey@adacore.com>
1519
1520 * ada-lang.c (ada_lookup_simple_minsyms): Remove.
1521 (create_excep_cond_exprs): Simplify exception string computation.
1522 (ada_exception_catchpoint_cond_string): Likewise.
1523
4b610737
TT
15242019-10-02 Tom Tromey <tromey@adacore.com>
1525
1526 * symmisc.c (dump_msymbols): Don't use MSYMBOL_VALUE_ADDRESS.
1527 * ada-lang.c (lesseq_defined_than): Handle
1528 LOC_STATIC.
1529 * dwarf2read.c (dwarf2_per_objfile): Add can_copy
1530 parameter.
1531 (dwarf2_has_info): Likewise.
1532 (new_symbol): Set maybe_copied on symbol when
1533 appropriate.
1534 * dwarf2read.h (dwarf2_per_objfile): Add can_copy
1535 parameter.
1536 <can_copy>: New member.
1537 * elfread.c (record_minimal_symbol): Set maybe_copied
1538 on symbol when appropriate.
1539 (elf_symfile_read): Update call to dwarf2_has_info.
1540 * minsyms.c (lookup_minimal_symbol_linkage): New
1541 function.
1542 * minsyms.h (lookup_minimal_symbol_linkage): Declare.
1543 * symtab.c (get_symbol_address, get_msymbol_address):
1544 New functions.
1545 * symtab.h (get_symbol_address, get_msymbol_address):
1546 Declare.
1547 (SYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_ADDRESS): Handle
1548 maybe_copied.
1549 (struct symbol, struct minimal_symbol) <maybe_copied>:
1550 New member.
1551
1dd58850
TT
15522019-10-02 Tom Tromey <tromey@adacore.com>
1553
1554 * source.c (struct current_source_location): New.
1555 (current_source_key): New global.
1556 (current_source_symtab, current_source_line)
1557 (current_source_pspace): Remove.
1558 (get_source_location): New function.
1559 (get_current_source_symtab_and_line)
1560 (set_default_source_symtab_and_line)
1561 (set_current_source_symtab_and_line)
1562 (clear_current_source_symtab_and_line, select_source_symtab)
1563 (info_source_command, print_source_lines_base)
1564 (info_line_command, search_command_helper, _initialize_source):
1565 Update.
1566
5c281dbb
TT
15672019-10-02 Tom Tromey <tromey@adacore.com>
1568
1569 * source.c (select_source_symtab): Don't call
1570 decode_line_with_current_source.
1571
d3d32391
AB
15722019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
1573
1574 * symtab.c (lookup_global_symbol): Search global block.
1575
38583298
TT
15762019-10-02 Tom Tromey <tromey@adacore.com>
1577
1578 * coffread.c (process_coff_symbol): Update.
1579 * dwarf2read.c (var_decode_location, new_symbol): Update.
1580 * mdebugread.c (parse_symbol): Update.
1581 * objfiles.c (relocate_one_symbol): Update.
1582 * stabsread.c (define_symbol, fix_common_block)
1583 (scan_file_globals): Update.
1584 * symtab.h (SYMBOL_VALUE_ADDRESS): Expand to an rvalue.
1585 (SET_SYMBOL_VALUE_ADDRESS): New macro.
1586 * xcoffread.c (process_xcoff_symbol): Update.
1587
9344c18f
AA
15882019-10-02 Andreas Arnez <arnez@linux.ibm.com>
1589
1590 * MAINTAINERS: Update my email address.
1591
df07e2c7
AB
15922019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
1593
1594 * dwarf2read.c (struct type_unit_group) <tus>: Convert to
1595 std::vector.
1596 (build_type_psymtabs_reader): Update for std::vector.
1597 (build_type_psymtab_dependencies): Likewise.
1598 * dwarf2read.h: Remove use of DEF_VEC_P.
1599 (typedef sig_type_ptr): Delete.
1600
554ac434
AB
16012019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
1602
1603 * btrace.c (btrace_maint_clear): Update to handle change from VEC
1604 to std::vector.
1605 (btrace_maint_decode_pt): Likewise, and move allocation of the
1606 vector outside of the loop.
1607 (btrace_maint_update_packets): Update to handle change from VEC to
1608 std::vector.
1609 (btrace_maint_print_packets): Likewise.
1610 (maint_info_btrace_cmd): Likewise.
1611 * btrace.h: Remove use of DEF_VEC_O.
1612 (typedef btrace_pt_packet_s): Delete.
1613 (struct btrace_maint_info) <packets>: Change fromm VEC to
1614 std::vector.
1615 * gdbsupport/btrace-common.h: Remove 'vec.h' include.
1616
46f29a9a
AB
16172019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
1618
1619 * btrace.c (btrace_compute_ftrace_bts): Update for std::vector,
1620 make accesses into the vector constant references.
1621 (btrace_add_pc): Update for std::vector.
1622 (btrace_stitch_bts): Likewise.
1623 (parse_xml_btrace_block): Likewise.
1624 (btrace_maint_update_packets): Likewise.
1625 (btrace_maint_print_packets): Likewise.
1626 (maint_info_btrace_cmd): Likewise.
1627 * gdbsupport/btrace-common.c (btrace_data::fini): Update for
1628 std::vector.
1629 (btrace_data::empty): Likewise.
1630 (btrace_data_append): Likewise.
1631 * gdbsupport/btrace-common.h: Remove use of DEF_VEC_O.
1632 (typedef btrace_block_s): Delete.
1633 (struct btrace_block): Add constructor.
1634 (struct btrace_data_bts) <blocks>: Change to std::vector.
1635 * nat/linux-btrace.c (perf_event_read_bts): Update for
1636 std::vector.
1637 (linux_read_bts): Likewise.
1638
d770d56f
TT
16392019-10-01 Tom Tromey <tom@tromey.com>
1640
1641 * cli/cli-logging.c (show_logging_filename): Use styled_string.
1642
9d636d67
TT
16432019-10-01 Tom Tromey <tom@tromey.com>
1644
1645 * stack.c (print_frame, info_frame_command_core): Use
1646 styled_string.
1647 * linux-thread-db.c (try_thread_db_load_1)
1648 (try_thread_db_load_from_pdir_1): Use styled_string.
1649 * auto-load.c (file_is_auto_load_safe, execute_script_contents)
1650 (auto_load_section_scripts, info_auto_load_local_gdbinit)
1651 (maybe_print_unsupported_script_warning)
1652 (maybe_print_script_not_found_warning): Use styled_string.
1653 * ada-lang.c (user_select_syms): Use styled_string.
1654
7f6aba03
TT
16552019-10-01 Tom Tromey <tom@tromey.com>
1656
1657 * p-lang.c (pascal_printstr): Use metadata style.
1658 * value.c (show_convenience): Use metadata style.
1659 * valprint.c (valprint_check_validity, val_print_optimized_out)
1660 (val_print_not_saved, val_print_unavailable)
1661 (val_print_invalid_address, generic_val_print, val_print)
1662 (value_check_printable, val_print_array_elements): Use metadata
1663 style.
1664 * ui-out.h (class ui_out) <field_fmt>: New overload.
1665 <do_field_fmt>: Add style parameter.
1666 * ui-out.c (ui_out::field_fmt): New overload.
1667 * typeprint.c (type_print_unknown_return_type)
1668 (val_print_not_allocated, val_print_not_associated): Use metadata
1669 style.
1670 * tui/tui-out.h (class tui_ui_out) <do_field_fmt>: Add style
1671 parameter.
1672 * tui/tui-out.c (tui_ui_out::do_field_fmt): Update.
1673 * tracepoint.c (tvariables_info_1): Use metadata style.
1674 * stack.c (print_frame_arg, print_frame_info, print_frame)
1675 (info_frame_command_core): Use metadata style.
1676 * skip.c (info_skip_command): Use metadata style.
1677 * rust-lang.c (rust_print_enum): Use metadata style.
1678 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
1679 metadata style.
1680 * python/py-framefilter.c (py_print_single_arg): Use metadata
1681 style.
1682 * printcmd.c (do_one_display, print_variable_and_value): Use
1683 metadata style.
1684 * p-valprint.c (pascal_val_print)
1685 (pascal_object_print_value_fields): Use metadata style.
1686 * p-typeprint.c (pascal_type_print_base): Use metadata style.
1687 * mi/mi-out.h (class mi_ui_out) <do_field_fmt>: Add style
1688 parameter.
1689 * mi/mi-out.c (mi_ui_out::do_field_fmt): Update.
1690 * m2-valprint.c (m2_print_long_set): Use metadata style.
1691 * m2-typeprint.c (m2_print_type): Use metadata style.
1692 * infcmd.c (print_return_value_1): Use metadata style.
1693 * gnu-v3-abi.c (print_one_vtable): Use metadata style.
1694 * f-valprint.c (info_common_command_for_block): Use metadata
1695 style.
1696 * f-typeprint.c (f_type_print_base): Use metadata style.
1697 * expprint.c (print_subexp_standard): Use metadata style.
1698 * cp-valprint.c (cp_print_value_fields): Use metadata style.
1699 * cli/cli-style.h (class cli_style_option): Add constructor.
1700 (metadata_style): Declare.
1701 * cli/cli-style.c (metadata_style): New global.
1702 (_initialize_cli_style): Register metadata style.
1703 * cli-out.h (class cli_ui_out) <do_field_fmt>: Add style
1704 parameter.
1705 * cli-out.c (cli_ui_out::do_field_fmt): Update.
1706 * c-typeprint.c (c_type_print_base_struct_union)
1707 (c_type_print_base_1): Use metadata style.
1708 * breakpoint.c (watchpoint_value_print)
1709 (print_one_breakpoint_location): Use metadata style.
1710 * break-catch-syscall.c (print_one_catch_syscall): Use metadata
1711 style.
1712 * break-catch-sig.c (signal_catchpoint_print_one): Use metadata
1713 style.
1714 * ada-valprint.c (val_print_packed_array_elements, printstr)
1715 (print_field_values, ada_val_print_ref, ada_val_print): Use
1716 metadata style.
1717 * ada-typeprint.c (print_array_type, ada_print_type): Use metadata
1718 style.
1719 * ada-tasks.c (print_ada_task_info, info_task): Use metadata
1720 style.
1721 * ada-lang.c (user_select_syms): Use metadata style.
1722
14309bb6
TT
17232019-10-01 Tom Tromey <tom@tromey.com>
1724
1725 * cli/cli-cmds.c (pwd_command): Style output.
1726
6a831f06
PA
17272019-10-01 Pedro Alves <palves@redhat.com>
1728 Tom Tromey <tom@tromey.com>
1729
1730 * symtab.c (print_symbol_info): Use %ps.
1731 (print_msymbol_info): Use %ps.
1732 * symfile.c (symbol_file_add_with_addrs): Use %ps.
1733 * printcmd.c (print_variable_and_value): Use %ps.
1734 * macrocmd.c (show_pp_source_pos): Use %ps.
1735 * infrun.c (print_exited_reason): Use ui_out::message.
1736 * breakpoint.c (watchpoint_check, print_one_breakpoint_location)
1737 (describe_other_breakpoints): Use ui_out::message and new
1738 formats.
1739 (say_where): Use new formats.
1740 (bkpt_print_it, tracepoint_print_one_detail): Use ui_out::message
1741 and new formats.
1742
2a3c1174
PA
17432019-10-01 Pedro Alves <palves@redhat.com>
1744 Tom Tromey <tom@tromey.com>
1745
1746 * unittests/format_pieces-selftests.c: Add gdb_format parameter.
1747 (test_gdb_formats): New function.
1748 (run_tests): Call it.
1749 (test_format_specifier): Update.
1750 * utils.h (fputs_filtered): Update comment.
1751 (vfprintf_styled, vfprintf_styled_no_gdbfmt)
1752 (fputs_styled_unfiltered): Declare.
1753 * utils.c (fputs_styled_unfiltered): New function.
1754 (vfprintf_maybe_filtered): Add gdbfmt parameter.
1755 (vfprintf_filtered): Update.
1756 (vfprintf_unfiltered, vprintf_filtered): Update.
1757 (vfprintf_styled, vfprintf_styled_no_gdbfmt): New functions.
1758 * ui-out.h (enum ui_out_flag) <unfiltered_output,
1759 disallow_ui_out_field>: New constants.
1760 (enum class field_kind): New.
1761 (struct base_field_s, struct signed_field_s): New.
1762 (signed_field): New function.
1763 (struct string_field_s): New.
1764 (string_field): New function.
1765 (struct styled_string_s): New.
1766 (styled_string): New function.
1767 (class ui_out) <message>: Add comment.
1768 <vmessage, call_do_message>: New methods.
1769 <do_message>: Add style parameter.
1770 * ui-out.c (ui_out::call_do_message, ui_out::vmessage): New
1771 methods.
1772 (ui_out::message): Rewrite.
1773 * mi/mi-out.h (class mi_ui_out) <do_message>: Add style
1774 parameter.
1775 * mi/mi-out.c (mi_ui_out::do_message): Add style parameter.
1776 * gdbsupport/format.h (class format_pieces) <format_pieces>: Add
1777 gdb_extensions parameter.
1778 (class format_piece): Add parameter to constructor.
1779 (n_int_args): New field.
1780 * gdbsupport/format.c (format_pieces::format_pieces): Add
1781 gdb_extensions parameter. Handle '*'.
1782 * cli-out.h (class cli_ui_out) <do_message>: Add style parameter.
1783 * cli-out.c (cli_ui_out::do_message): Add style parameter. Call
1784 vfprintf_styled_no_gdbfmt.
1785 (cli_ui_out::do_field_string, cli_ui_out::do_spaces)
1786 (cli_ui_out::do_text, cli_ui_out::field_separator): Allow
1787 unfiltered output.
1788 * ui-style.h (struct ui_file_style) <ptr>: New method.
1789
0dfe5bfb
TT
17902019-10-01 Tom Tromey <tom@tromey.com>
1791
1792 * unittests/format_pieces-selftests.c: Update. Add final format.
1793 * gdbsupport/format.c (format_pieces::format_pieces): Don't add
1794 empty literal pieces.
1795
e43b10e1
TT
17962019-10-01 Tom Tromey <tom@tromey.com>
1797
1798 * ui-out.h (enum class ui_out_style_kind): Remove.
1799 (class ui_out) <field_string, field_stsream, do_field_string>:
1800 Change type of "style".
1801 * ui-out.c (ui_out::field_core_addr, ui_out::field_stream)
1802 (ui_out::field_string): Update.
1803 * tui/tui-out.h (class tui_ui_out) <do_field_string>: Change type
1804 of "style".
1805 * tui/tui-out.c (tui_ui_out::do_field_string): Update.
1806 * tracepoint.c (print_one_static_tracepoint_marker): Update.
1807 * stack.c (print_frame_arg, print_frame_info, print_frame):
1808 Update.
1809 * source.c (print_source_lines_base): Update.
1810 * solib.c (info_sharedlibrary_command): Update.
1811 * skip.c (info_skip_command): Update.
1812 * record-btrace.c (btrace_call_history_src_line)
1813 (btrace_call_history): Update.
1814 * python/py-framefilter.c (py_print_frame): Update.
1815 * mi/mi-out.h (class mi_ui_out) <do_field_string>: Change type of
1816 "style".
1817 * mi/mi-out.c (mi_ui_out::do_table_header)
1818 (mi_ui_out::do_field_signed, mi_ui_out::do_field_unsigned)
1819 (mi_ui_out::do_field_string): Update.
1820 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
1821 Update.
1822 * cli-out.h (class cli_ui_out) <do_field_string>: Change type of
1823 "style".
1824 * cli-out.c (cli_ui_out::do_table_header)
1825 (cli_ui_out::do_field_signed, cli_ui_out::do_field_unsigned)
1826 (cli_ui_out::do_field_skip, cli_ui_out::do_field_string)
1827 (cli_ui_out::do_field_fmt): Update.
1828 * breakpoint.c (print_breakpoint_location): Update.
1829 (update_static_tracepoint): Update.
1830
cd7c32c3
PW
18312019-10-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1832
1833 * main.c (relocate_gdbinit_path_maybe_in_datadir): Remove std::string
1834 conversion of gdb_datadir.
1835 (captured_main_1): Remove xstrdup when assigning to gdb_datadir,
1836 remove not needed c_str ().
1837
8fe0f950
AT
18382019-09-30 Ali Tamur <tamur@google.com>
1839
1840 * dwarf2read.c (skip_one_die): Handle DW_FORM_strx forms.
1841 (dwarf2_string_attr): Likewise.
1842
5f48f8f3
AT
18432019-09-30 Ali Tamur <tamur@google.com>
1844
1845 * dwarf2read.c (process_full_comp_unit): Remove whitespace at the EOL.
1846 (process_full_type_unit): Likewise.
1847 (dump_die_shallow): Likewise.
1848 (cu_debug_loc_section): Likewise.
1849
6fb08628
CB
18502019-09-28 Christian Biesinger <cbiesinger@google.com>
1851
1852 * minsyms.c (compare_minimal_symbols): Rename to...
1853 (minimal_symbol_is_less_than): ...this, and adjust to STL
1854 conventions (return bool, take arguments as references)
1855 (minimal_symbol_reader::install): Call std::sort instead
1856 of qsort.
1857
c7ee338a
CB
18582019-09-29 Christian Biesinger <cbiesinger@google.com>
1859
1860 * minsyms.h (msymbol_hash): Document that this is a case-insensitive
1861 hash and why.
1862 * objfiles.h (struct objfile_per_bfd_storage) <demangled_names_hash,
1863 msymbol_hash, msymbol_demangled_hash>: Improve comments.
1864
703a86c2
SM
18652019-09-30 Simon Marchi <simon.marchi@polymtl.ca>
1866
1867 * psymtab.c (add_psymbol_to_list): Move comment to psympriv.h.
1868 * psympriv.h (add_psymbol_to_list): Move comment here and update
1869 it.
1870
0df0352a
TV
18712019-09-29 Tom de Vries <tdevries@suse.de>
1872
1873 * contrib/cc-with-tweaks.sh (get_tmpdir): New function.
1874 Use $tmpdir/$(basename "$output_file").dwz instead of
1875 "${output_file}.dwz".
1876
ad75efa6
SM
18772019-09-28 Simon Marchi <simon.marchi@polymtl.ca>
1878
1879 PR gdb/25045
1880 * hppa-linux-nat.c: Include gdbarch.h.
1881
ececd218
CB
18822019-09-26 Christian Biesinger <cbiesinger@google.com>
1883
1884 * blockframe.c (find_pc_partial_function): Change return type to bool.
1885 * elfread.c (elf_gnu_ifunc_resolve_name): Likewise.
1886 * minsyms.c (in_gnu_ifunc_stub): Likewise.
1887 (stub_gnu_ifunc_resolve_name): Likewise.
1888 * symtab.c (compare_filenames_for_search): Likewise.
1889 (compare_glob_filenames_for_search): Likewise.
1890 (matching_obj_sections): Likewise.
1891 (symbol_matches_domain): Likewise.
1892 (find_line_symtab): Change out param EXACT_MATCH to bool *.
1893 (find_line_pc): Change return type to bool.
1894 (find_line_pc_range): Likewise.
1895 (producer_is_realview): Likewise.
1896 * symtab.h (symbol_matches_domain): Likewise.
1897 (find_pc_partial_function): Likewise.
1898 (find_pc_line_pc_range): Likewise.
1899 (in_gnu_ifunc_stub): Likewise.
1900 (struct gnu_ifunc_fns) <gnu_ifunc_resolve_name>: Likewise.
1901 (find_line_pc): Likewise.
1902 (find_line_pc_range): Likewise.
1903 (matching_obj_sections): Likewise.
1904 (find_line_symtab): Change out parameter to bool.
1905 (producer_is_realview): Change return type to bool.
1906 (compare_filenames_for_search): Likewise.
1907 (compare_glob_filenames_for_search): Likewise.
1908
27a900b8
TT
19092019-09-26 Tom Tromey <tom@tromey.com>
1910
1911 * Makefile.in (COMMON_SFILES): Remove gdb_usleep.c.
1912 (HFILES_NO_SRCDIR): Remove gdb_usleep.h.
1913 * gdb_usleep.h: Remove.
1914 * gdb_usleep.c: Remove.
1915 * utils.c: Don't include gdb_usleep.h.
1916
5d63b30a
TT
19172019-09-26 Tom Tromey <tromey@adacore.com>
1918
1919 * python/py-type.c (type_to_type_object): Call check_typedef
1920 for stub types.
1921
12904d37
TT
19222019-09-26 Tom Tromey <tom@tromey.com>
1923
1924 * utils.h (initialize_utils): Don't declare.
1925 * top.c (gdb_init): Don't call initialize_utils.
1926 * utils.c (initialize_utils): Remove. Move contents...
1927 (_initialize_utils): ... here.
1928
858f25f0
TT
19292019-09-25 Tom Tromey <tom@tromey.com>
1930
1931 * python/py-objfile.c (objfpy_get_build_id): Use bin2hex.
1932 * utils.h (make_hex_string): Don't declare.
1933 * utils.c (make_hex_string): Remove.
1934
3d435220
TV
19352019-09-24 Tom de Vries <tdevries@suse.de>
1936
1937 PR gdb/23815
1938 * amd64-linux-nat.c (amd64_linux_nat_target::fetch_registers):
1939 Initialize xstateregs before ptrace PTRACE_GETREGSET call.
1940
ddd44b70
DD
19412019-09-23 Dimitar Dimitrov <dimitar@dinux.eu>
1942
1943 * NEWS: Mention new simulator port for PRU.
1944
f945dedf
CB
19452019-09-23 Christian Biesinger <cbiesinger@google.com>
1946
1947 * ada-exp.y (write_object_remaining): Update.
1948 * ada-lang.c (ada_decode): Return a std::string instead of a char*
1949 and eliminate the static buffer.
1950 (ada_decode_symbol): Update.
1951 (ada_la_decode): Update.
1952 (ada_sniff_from_mangled_name): Update.
1953 (is_valid_name_for_wild_match): Update.
1954 (ada_lookup_name_info::matches): Update and simplify.
1955 (name_matches_regex): Update.
1956 (ada_add_global_exceptions): Update.
1957 * ada-lang.h (ada_decode): Update signature.
1958 * ada-varobj.c (ada_varobj_describe_simple_array_child): Update.
1959 * dwarf-index-write.c (debug_names::insert): Update.
1960
7ab78ccb
SM
19612019-09-21 Simon Marchi <simon.marchi@polymtl.ca>
1962
1963 * solib-svr4.c (svr4_iterate_over_objfiles_in_search_order): Fix
1964 formatting.
1965
9252448b
SM
19662019-09-21 Simon Marchi <simon.marchi@polymtl.ca>
1967
1968 * breakpoint.h (bp_location) <inserted, permanent, duplicate>:
1969 Change "nonzero" to "true" in documentation.
1970
626ca2c0
CB
19712019-09-20 Christian Biesinger <cbiesinger@google.com>
1972
1973 * solib-darwin.c (darwin_lookup_lib_symbol): Remove.
1974 (_initialize_darwin_solib): Don't set
1975 darwin_so_ops.lookup_lib_global_symbol.
1976 * solib-svr4.c (set_solib_svr4_fetch_link_map_offsets): Call
1977 set_gdbarch_iterate_over_objfiles_in_search_order.
1978 (elf_lookup_lib_symbol): Rename to...
1979 (svr4_iterate_over_objfiles_in_search_order): this, and update
1980 to iterate semantics.
1981 (_initialize_svr4_solib): Don't set lookup_lib_global_symbol.
1982 * solib.c (solib_global_lookup): Remove.
1983 * solist.h (struct target_so_ops): Remove lookup_lib_global_symbol.
1984 (solib_global_lookup): Remove.
1985 * symtab.c (lookup_global_or_static_symbol): Remove call to
1986 solib_global_lookup.
1987
5a3a0d63
JB
19882019-09-20 Joel Brobecker <brobecker@adacore.com>
1989
1990 * NEWS: Move entries about default MI version now being
1991 version 3, and about the GDB/MI fix for multi-location
1992 breakpoints to the "since GDB 8.3" section.
1993
ffea1427
JB
19942019-09-20 Joel Brobecker <brobecker@adacore.com>
1995
1996 GDB 8.3.1 released.
1997
abf516c6
UW
19982019-09-20 Ulrich Weigand <uweigand@de.ibm.com>
1999
2000 * NEWS: Mention that Cell/B.E. debugging support was removed.
2001 * MAINTAINERS: Remove spu target.
2002
2003 * config/djgpp/fnchange.lst: Remove entries for removed files.
2004
2005 * Makefile.in (ALL_TARGET_OBS): Remove solib-spu.o,
2006 spu-multiarch.o, and spu-tdep.o.
2007 (HFILES_NO_SRCDIR): Remove solib-spu.h and spu-tdep.h.
2008 (ALLDEPFILES): Remove solib-spu.c, spu-linux-nat.c,
2009 spu-multiarch.c, and spu-tdep.c.
2010 * spu-linux-nat.c: Remove file.
2011 * spu-multiarch.c: Remove file.
2012 * spu-tdep.c: Remove file.
2013 * spu-tdep.h: Remove file.
2014 * solib-spu.c: Remove file.
2015 * solib-spu.h: Remove file.
2016
2017 * configure.host (powerpc64*-*-linux*): Remove Cell/B.E. support.
2018 * configure.nat (spu-linux): Remove.
2019 * configure.tgt (powerpc*-*-linux*): Remove solib-spu.o and
2020 solib-multiarch.o from gdb_target_obs.
2021 (spu*-*-*): Remove.
2022
2023 * arch/ppc-linux-common.h (struct ppc_linux_features): Remove "cell"
2024 feature flag.
2025 (ppc_linux_no_features): Update.
2026 * arch/ppc-linux-common.c (ppc_linux_match_description): Remove
2027 Cell/B.E. support.
2028 * arch/ppc-linux-tdesc.h (tdesc_powerpc_cell32l): Remove declaration.
2029 (tdesc_powerpc_cell64l): Likewise.
2030 * nat/ppc-linux.h (PPC_FEATURE_CELL): Remove.
2031 * ppc-linux-nat.c (ppc_linux_nat_target::read_description): Remove
2032 Cell/B.E. support.
2033 * ppc-linux-tdep.h: Do not include "solib-spu.h" or "spu-tdep.h".
2034 Do not include "features/rs6000/powerpc-cell32l.c" or
2035 "features/rs6000/powerpc-cell64l.c".
2036 (ppc_linux_spu_section): Remove.
2037 (ppc_linux_core_read_description): Remove Cell/B.E. support.
2038 (spe_context_objfile, spe_context_lm_addr, spe_context_offset,
2039 spe_context_cache_ptid, spe_context_cache_ptid): Remove.
2040 (ppc_linux_spe_context_lookup): Remove.
2041 (ppc_linux_spe_context_inferior_created): Remove.
2042 (ppc_linux_spe_context_solib_loaded): Remove.
2043 (ppc_linux_spe_context_solib_unloaded): Remove.
2044 (ppc_linux_spe_context): Remove.
2045 (struct ppu2spu_cache): Remove.
2046 (ppu2spu_prev_arch, ppu2spu_this_id, ppu2spu_prev_register): Remove.
2047 (struct ppu2spu_data): Remove.
2048 (ppu2spu_unwind_register, ppu2spu_sniffer, ppu2spu_dealloc_cache,
2049 ppu2spu_unwind): Remove.
2050 (ppc_linux_init_abi): Remove Cell/B.E. support.
2051 * rs6000-tdep.h (rs6000_gdbarch_init): Remove Cell/B.E. support.
2052
2053 * features/Makefile (rs6000/powerpc-cell32l-expedite): Remove.
2054 (rs6000/powerpc-cell64l-expedite): Likewise
2055 (WHICH): Remove rs6000/powerpc-cell32l and rs6000/powerpc-cell64l.
2056 (XMLTOC): Remove rs6000/powerpc-cell32l.xml and
2057 rs6000/powerpc-cell64l.xml.
2058 * features/rs6000/powerpc-cell32l.xml: Remove.
2059 * features/rs6000/powerpc-cell64l.xml: Likewise.
2060 * features/rs6000/powerpc-cell32l.c: Remove generated file.
2061 * features/rs6000/powerpc-cell64l.c: Likewise.
2062 * regformats/rs6000/powerpc-cell32l.dat: Remove generated file.
2063 * regformats/rs6000/powerpc-cell64l.dat: Likewise.
2064 * regformats/reg-spu.dat: Remove.
2065
2066 * target.h (enum target_object): Remove TARGET_OBJECT_SPU.
2067 * corelow.c (struct spuid_list): Remove.
2068 (add_to_spuid_list): Remove.
2069 (core_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
2070 * remote.c (PACKET_qXfer_spu_read, PACKET_qXfer_spu_write): Remove.
2071 (remote_protocol_features): Remove associated entries.
2072 (_initialize_remote): No longer initialize them.
2073 (remote_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
2074 * linux-nat.c (SPUFS_MAGIC): Remove.
2075 (linux_proc_xfer_spu): Remove.
2076 (spu_enumerate_spu_ids): Remove.
2077 (linux_nat_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
2078 * linux-tdep.c (-linux_spu_make_corefile_notes): Remove.
2079 (linux_make_corefile_notes): No longer call it.
2080
2081 * regcache.c (cooked_read_test): Remove bfd_arch_spu special case.
2082 (cooked_write_test): Likewise.
2083
78e8cb91
TT
20842019-09-20 Tom Tromey <tom@tromey.com>
2085
2086 * NEWS: Mention case-sensitivity of TUI commands.
2087 * tui/tui-win.c (tui_set_focus_command): Now case-sensitive.
2088 (tui_set_win_height_command, parse_scrolling_args): Likewise.
2089 * tui/tui-layout.c (tui_layout_command): Now case-sensitive.
2090
f074b67e
TT
20912019-09-20 Tom Tromey <tom@tromey.com>
2092
2093 * tui/tui-source.c (tui_source_window::set_contents): Use
2094 make_unique_xstrdup.
2095 * tui/tui-disasm.c (tui_disasm_window::set_contents): Use
2096 make_unique_xstrdup.
2097
63c4bf19
TT
20982019-09-20 Tom Tromey <tom@tromey.com>
2099
2100 * tui/tui-data.c: Remove separator comments.
2101 * tui/tui-layout.c: Remove separator comments.
2102 * tui/tui-win.c: Remove separator comments.
2103 * tui/tui-wingeneral.c: Remove separator comments.
2104
43df9b2f
TT
21052019-09-20 Tom Tromey <tom@tromey.com>
2106
2107 * tui/tui.h (strcat_to_buf): Don't declare.
2108 * tui/tui.c (strcat_to_buf): Remove.
2109
7226433c
TT
21102019-09-20 Tom Tromey <tom@tromey.com>
2111
2112 * tui/tui-source.h (struct tui_source_window) <m_fullname>: Rename
2113 from "fullname".
2114 * tui/tui-source.c (tui_source_window::set_contents)
2115 (tui_source_window::location_matches_p)
2116 (tui_source_window::maybe_update): Update.
2117
80df3337
TT
21182019-09-20 Tom Tromey <tom@tromey.com>
2119
2120 * tui/tui-regs.h (struct tui_data_window) <get_current_group>:
2121 Update.
2122 <m_regs_content, m_regs_column_count, m_current_group>: Add "m_"
2123 prefix.
2124 * tui/tui-regs.c (tui_data_window::last_regs_line_no)
2125 (tui_data_window::line_from_reg_element_no)
2126 (tui_data_window::first_reg_element_no_inline)
2127 (tui_data_window::show_registers)
2128 (tui_data_window::show_register_group)
2129 (tui_data_window::display_registers_from)
2130 (tui_data_window::display_registers_from_line)
2131 (tui_data_window::first_data_item_displayed)
2132 (tui_data_window::delete_data_content_windows)
2133 (tui_data_window::erase_data_content)
2134 (tui_data_window::do_scroll_vertical)
2135 (tui_data_window::refresh_window)
2136 (tui_data_window::check_register_values): Update.
2137
9923f347
TT
21382019-09-20 Tom Tromey <tom@tromey.com>
2139
2140 * tui/tui-stack.h (MAX_LOCATOR_ELEMENT_LEN): Remove define.
2141 (struct tui_locator_window) <full_name, proc_name>: Now
2142 std::string.
2143 * tui/tui-stack.c (tui_locator_window::make_status_line)
2144 (tui_locator_window::set_locator_fullname)
2145 (tui_locator_window::set_locator_info): Update.
2146 * tui/tui-source.c (tui_source_window::set_contents)
2147 (tui_source_window::showing_source_p): Update.
2148
b76251ab
TT
21492019-09-20 Tom Tromey <tom@tromey.com>
2150
2151 * tui/tui-stack.c (tui_locator_window::set_locator_fullname):
2152 Don't call tui_locator_win_info_ptr.
2153
0891be08
TT
21542019-09-20 Tom Tromey <tom@tromey.com>
2155
2156 * tui/tui-win.c (tui_resize_all): Don't call refresh.
2157
1b935acf
TT
21582019-09-20 Tom Tromey <tom@tromey.com>
2159
2160 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Use 1 as
2161 height for locator.
2162 * tui/tui-stack.c (tui_locator_window::rerender): Call scrollok.
2163 * tui/tui-layout.c (show_source_disasm_command, show_data)
2164 (show_source_or_disasm_and_command): Use 1 as height for locator.
2165
9abd8a65
TT
21662019-09-20 Tom Tromey <tom@tromey.com>
2167
2168 * tui/tui.c (tui_enable): Update.
2169 * tui/tui-win.c (tui_sigwinch_handler, tui_async_resize_screen):
2170 Update.
2171 * tui/tui-data.h (tui_win_resized, tui_set_win_resized_to):
2172 Update.
2173 * tui/tui-data.c (win_resized): Now bool.
2174 (tui_win_resized): Return bool.
2175 (tui_set_win_resized_to): Accept a bool.
2176
b5457826
TT
21772019-09-20 Tom Tromey <tom@tromey.com>
2178
2179 * tui/tui-regs.h (struct tui_data_window) <show_register_group>:
2180 Change type of "refresh_values_only".
2181 * tui/tui-regs.c (tui_data_window::show_register_group): Change
2182 type of "refresh_values_only".
2183
6b915f7d
TT
21842019-09-20 Tom Tromey <tom@tromey.com>
2185
2186 * tui/tui-disasm.c (struct tui_asm_line) <addr_string, insn>: Now
2187 std::string.
2188 (tui_disassemble): Add "pos" parameter.
2189 (tui_disasm_window::set_contents): Simplify.
2190
2ad52f6f
TT
21912019-09-20 Tom Tromey <tom@tromey.com>
2192
2193 * tui/tui-winsource.h (struct tui_source_window_base)
2194 <show_source_content>: Now private.
2195 * tui/tui-winsource.c
2196 (tui_source_window_base::show_source_content): Don't handle empty
2197 content case.
2198
b3b1bde6
TT
21992019-09-20 Tom Tromey <tom@tromey.com>
2200
2201 * tui/tui-layout.c (show_source_disasm_command)
2202 (show_source_or_disasm_and_command): Don't call
2203 show_source_content.
2204
71a25ed2
TT
22052019-09-20 Tom Tromey <tom@tromey.com>
2206
2207 * tui/tui-stack.h (struct tui_locator_window) <make_status_line>:
2208 Declare.
2209 * tui/tui-stack.c (tui_locator_window::make_status_line): Rename
2210 from tui_make_status_line.
2211 (tui_locator_window::rerender): Update.
2212
f8532154
TT
22132019-09-20 Tom Tromey <tom@tromey.com>
2214
2215 * tui/tui-stack.c (tui_make_status_line): Return std::string.
2216 (tui_locator_window::rerender): Update.
2217
2d81b349
TT
22182019-09-20 Tom Tromey <tom@tromey.com>
2219
2220 * tui/tui-winsource.h (struct tui_source_window_base)
2221 <~tui_source_window_base>: Don't declare.
2222 <fullname>: Remove.
2223 * tui/tui-winsource.c (~tui_source_window_base): Remove.
2224 * tui/tui-source.h (struct tui_source_window) <fullname>: New
2225 member.
2226 * tui/tui-source.c (tui_source_window::set_contents): Update.
2227 (tui_source_window::location_matches_p)
2228 (tui_source_window::maybe_update): Update.
2229
f14bec58
TT
22302019-09-20 Tom Tromey <tom@tromey.com>
2231
2232 * tui/tui-winsource.h (~tui_source_element): Remove.
2233 (tui_source_element): Update.
2234 (struct tui_source_element) <line>: Now a unique_xmalloc_ptr.
2235 * tui/tui-winsource.c (tui_show_source_line): Update.
2236 * tui/tui-source.c (tui_source_window::set_contents): Update.
2237 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
2238
78d5933a
TT
22392019-09-20 Tom Tromey <tom@tromey.com>
2240
2241 * tui/tui-data.h (tui_clear_source_windows_detail): Don't
2242 declare.
2243 * tui/tui-layout.c (tui_add_win_to_layout): Don't call
2244 tui_clear_source_windows_detail.
2245 * tui/tui-winsource.h (struct tui_source_window_base)
2246 <clear_detail>: Don't declare.
2247 * tui/tui-winsource.c (tui_source_window_base::clear_detail):
2248 Remove.
2249 * tui/tui-data.c (tui_clear_source_windows_detail): Remove.
2250
d4207696
TT
22512019-09-20 Tom Tromey <tromey@adacore.com>
2252
2253 PR ada/24919:
2254 * block.c (contained_in): Fix final return value.
2255
00f93c44
AM
22562019-09-20 Alan Modra <amodra@gmail.com>
2257
2258 * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Use bfd_set_usrdata.
2259 * dwarf2read.c (dwarf2_read_gdb_index, dwarf2_read_debug_names),
2260 (read_indirect_string_from_dwz): Use bfd accessor.
2261 * dwarf2read.h (struct dwz_file <filename>): Likewise.
2262 * machoread.c (macho_symfile_read_all_oso): Likewise.
2263 * solib.c (solib_bfd_open): Likewise.
2264
e4153ae6
CB
22652019-09-19 Christian Biesinger <cbiesinger@google.com>
2266
2267 * eval.c: Move declaration of overload_resolution to...
2268 * value.h: ...here.
2269
c7ae7675
CB
22702019-09-19 Christian Biesinger <cbiesinger@google.com>
2271
2272 * arm-linux-nat.c: Remove extern declaration for arm_apcs_32.
2273 * arm-linux-tdep.c: Likewise.
2274 * arm-nbsd-nat.c: Likewise.
2275 * arm-tdep.h: Declare arm_apcs_32.
2276 * arm-tdep.c: Move documentation for arm_apcs_32 to arm-tdep.h.
2277
e86f08d2
CB
22782019-09-19 Christian Biesinger <cbiesinger@google.com>
2279
2280 * dwarf2loc.c: Remove extern declaration of dwarf_always_disassemble.
2281 * dwarf2read.h: Declare dwarf_always_disassemble.
2282
f64e2f40
TV
22832019-09-19 Tom de Vries <tdevries@suse.de>
2284
2285 PR gdb/25009
2286 * source-cache.c (source_cache::ensure): Catch exception thrown during
2287 construction of the highlighter.
2288
fd361982
AM
22892019-09-18 Alan Modra <amodra@gmail.com>
2290
2291 * aarch64-linux-tdep.c, * arm-tdep.c, * auto-load.c,
2292 * coff-pe-read.c, * coffread.c, * corelow.c, * dbxread.c,
2293 * dicos-tdep.c, * dwarf2-frame.c, * dwarf2read.c, * elfread.c,
2294 * exec.c, * fbsd-tdep.c, * gcore.c, * gdb_bfd.c, * gdb_bfd.h,
2295 * hppa-tdep.c, * i386-cygwin-tdep.c, * i386-fbsd-tdep.c,
2296 * i386-linux-tdep.c, * jit.c, * linux-tdep.c, * machoread.c,
2297 * maint.c, * mdebugread.c, * minidebug.c, * mips-linux-tdep.c,
2298 * mips-sde-tdep.c, * mips-tdep.c, * mipsread.c, * nto-tdep.c,
2299 * objfiles.c, * objfiles.h, * osabi.c, * ppc-linux-tdep.c,
2300 * ppc64-tdep.c, * record-btrace.c, * record-full.c, * remote.c,
2301 * rs6000-aix-tdep.c, * rs6000-tdep.c, * s390-linux-tdep.c,
2302 * s390-tdep.c, * solib-aix.c, * solib-dsbt.c, * solib-frv.c,
2303 * solib-spu.c, * solib-svr4.c, * solib-target.c,
2304 * spu-linux-nat.c, * spu-tdep.c, * symfile-mem.c, * symfile.c,
2305 * symmisc.c, * symtab.c, * target.c, * windows-nat.c,
2306 * xcoffread.c, * cli/cli-dump.c, * compile/compile-object-load.c,
2307 * mi/mi-interp.c: Update throughout for bfd section macro and
2308 function changes.
2309 * gcore (gcore_create_callback): Use bfd_set_section_lma.
2310 * spu-tdep.c (spu_overlay_new_objfile): Likewise.
2311
11061048
TT
23122019-09-18 Tom Tromey <tom@tromey.com>
2313
2314 * NEWS: Add entry.
2315 * tui/tui.c (tui_initialize_readline): Set name of keymap. Do not
2316 call rl_initialize.
2317 (tui_enable): Do not call rl_initialize.
2318
7a27b85f
CG
23192019-09-18 Christian Groessler <chris@groessler.org>
2320
2321 * alpha-linux-nat.c: Include gdbarch.h.
2322
f64eea3a
SM
23232019-09-18 Simon Marchi <simon.marchi@polymtl.ca>
2324
2325 * ui-file.c: Include cli/cli-style.h.
2326 (term_cli_styling): Remove cli_styling declaration.
2327
e6f7f6d1
AM
23282019-09-18 Alan Modra <amodra@gmail.com>
2329
2330 * arm-tdep.c (arm_record_special_symbol): Update bfd_get_section
2331 to bfd_asymbol_section.
2332
1d38e9d1
AM
23332019-09-18 Alan Modra <amodra@gmail.com>
2334
2335 * amd64-dicos-tdep.c (amd64_dicos_osabi_sniffer): Constify target.
2336 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
2337 * i386-dicos-tdep.c (i386_dicos_osabi_sniffer): Likewise.
2338
90d92a63
AM
23392019-09-18 Alan Modra <amodra@gmail.com>
2340
2341 * solib-spu.c (spu_bfd_open): Use bfd_set_filename.
2342 * spu-linux-nat.c (spu_bfd_open): Likewise.
2343
a3d181d2
CB
23442019-09-18 Christian Biesinger <cbiesinger@google.com>
2345
2346 * dwarf2loc.c: Change extern declaration of dwarf_always_disassemble
2347 to bool to match definition in dwarf2read.c.
2348
491144b5
CB
23492019-09-17 Christian Biesinger <cbiesinger@google.com>
2350
2351 * ada-lang.c (ada_ignore_descriptive_types_p): Change to bool.
2352 (print_signatures): Likewise.
2353 (trust_pad_over_xvs): Likewise.
2354 * arch/aarch64-insn.c (aarch64_debug): Likewise.
2355 * arch/aarch64-insn.h (aarch64_debug): Likewise.
2356 * arm-linux-nat.c (arm_apcs_32): Likewise.
2357 * arm-linux-tdep.c (arm_apcs_32): Likewise.
2358 * arm-nbsd-nat.c (arm_apcs_32): Likewise.
2359 * arm-tdep.c (arm_debug): Likewise.
2360 (arm_apcs_32): Likewise.
2361 * auto-load.c (debug_auto_load): Likewise.
2362 (auto_load_gdb_scripts): Likewise.
2363 (global_auto_load): Likewise.
2364 (auto_load_local_gdbinit): Likewise.
2365 (auto_load_local_gdbinit_loaded): Likewise.
2366 * auto-load.h (global_auto_load): Likewise.
2367 (auto_load_local_gdbinit): Likewise.
2368 (auto_load_local_gdbinit_loaded): Likewise.
2369 * breakpoint.c (disconnected_dprintf): Likewise.
2370 (breakpoint_proceeded): Likewise.
2371 (automatic_hardware_breakpoints): Likewise.
2372 (always_inserted_mode): Likewise.
2373 (target_exact_watchpoints): Likewise.
2374 (_initialize_breakpoint): Update.
2375 * breakpoint.h (target_exact_watchpoints): Change to bool.
2376 * btrace.c (maint_btrace_pt_skip_pad): Likewise.
2377 * cli/cli-cmds.c (trace_commands): Likewise.
2378 * cli/cli-cmds.h (trace_commands): Likewise.
2379 * cli/cli-decode.c (add_setshow_boolean_cmd): Change int* argument
2380 to bool*.
2381 * cli/cli-logging.c (logging_overwrite): Change to bool.
2382 (logging_redirect): Likewise.
2383 (debug_redirect): Likewise.
2384 * cli/cli-option.h (option_def) <boolean>: Change return type to bool*.
2385 (struct boolean_option_def) <get_var_address_cb_>: Change return type
2386 to bool.
2387 <boolean_option_def>: Update.
2388 (struct flag_option_def): Change default type of Context to bool
2389 from int.
2390 <flag_option_def>: Change return type of var_address_cb_ to bool*.
2391 * cli/cli-setshow.c (do_set_command): Cast to bool* instead of int*.
2392 (get_setshow_command_value_string): Likewise.
2393 * cli/cli-style.c (cli_styling): Change to bool.
2394 (source_styling): Likewise.
2395 * cli/cli-style.h (source_styling): Likewise.
2396 (cli_styling): Likewise.
2397 * cli/cli-utils.h (struct qcs_flags) <quiet, cont, silent>: Change
2398 to bool.
2399 * command.h (var_types): Update comment.
2400 (add_setshow_boolean_cmd): Change int* var argument to bool*.
2401 * compile/compile-cplus-types.c (debug_compile_cplus_types): Change to
2402 bool.
2403 (debug_compile_cplus_scopes): Likewise.
2404 * compile/compile-internal.h (compile_debug): Likewise.
2405 * compile/compile.c (compile_debug): Likewise.
2406 (struct compile_options) <raw>: Likewise.
2407 * cp-support.c (catch_demangler_crashes): Likewise.
2408 * cris-tdep.c (usr_cmd_cris_version_valid): Likewise.
2409 (usr_cmd_cris_dwarf2_cfi): Likewise.
2410 * csky-tdep.c (csky_debug): Likewise.
2411 * darwin-nat.c (enable_mach_exceptions): Likewise.
2412 * dcache.c (dcache_enabled_p): Likewise.
2413 * defs.h (info_verbose): Likewise.
2414 * demangle.c (demangle): Likewise.
2415 (asm_demangle): Likewise.
2416 * dwarf-index-cache.c (debug_index_cache): Likewise.
2417 * dwarf2-frame.c (dwarf2_frame_unwinders_enabled_p): Likewise.
2418 * dwarf2-frame.h (dwarf2_frame_unwinders_enabled_p): Likewise.
2419 * dwarf2read.c (check_physname): Likewise.
2420 (use_deprecated_index_sections): Likewise.
2421 (dwarf_always_disassemble): Likewise.
2422 * eval.c (overload_resolution): Likewise.
2423 * event-top.c (set_editing_cmd_var): Likewise.
2424 (exec_done_display_p): Likewise.
2425 * event-top.h (set_editing_cmd_var): Likewise.
2426 (exec_done_display_p): Likewise.
2427 * exec.c (write_files): Likewise.
2428 * fbsd-nat.c (debug_fbsd_lwp): Likewise
2429 (debug_fbsd_nat): Likewise.
2430 * frame.h (struct frame_print_options) <print_raw_frame_arguments>:
2431 Likewise.
2432 (struct set_backtrace_options) <backtrace_past_main>: Likewise.
2433 <backtrace_past_entry> Likewise.
2434 * gdb-demangle.h (demangle): Likewise.
2435 (asm_demangle): Likewise.
2436 * gdb_bfd.c (bfd_sharing): Likewise.
2437 * gdbcore.h (write_files): Likewise.
2438 * gdbsupport/common-debug.c (show_debug_regs): Likewise.
2439 * gdbsupport/common-debug.h (show_debug_regs): Likewise.
2440 * gdbthread.h (print_thread_events): Likewise.
2441 * gdbtypes.c (opaque_type_resolution): Likewise.
2442 (strict_type_checking): Likewise.
2443 * gnu-nat.c (gnu_debug_flag): Likewise.
2444 * guile/scm-auto-load.c (auto_load_guile_scripts): Likewise.
2445 * guile/scm-param.c (pascm_variable): Add boolval.
2446 (add_setshow_generic): Update.
2447 (pascm_param_value): Update.
2448 (pascm_set_param_value_x): Update.
2449 * hppa-tdep.c (hppa_debug): Change to bool..
2450 * infcall.c (may_call_functions_p): Likewise.
2451 (coerce_float_to_double_p): Likewise.
2452 (unwind_on_signal_p): Likewise.
2453 (unwind_on_terminating_exception_p): Likewise.
2454 * infcmd.c (startup_with_shell): Likewise.
2455 * inferior.c (print_inferior_events): Likewise.
2456 * inferior.h (startup_with_shell): Likewise.
2457 (print_inferior_events): Likewise.
2458 * infrun.c (step_stop_if_no_debug): Likewise.
2459 (detach_fork): Likewise.
2460 (debug_displaced): Likewise.
2461 (disable_randomization): Likewise.
2462 (non_stop): Likewise.
2463 (non_stop_1): Likewise.
2464 (observer_mode): Likewise.
2465 (observer_mode_1): Likewise.
2466 (set_observer_mode): Update.
2467 (sched_multi): Change to bool.
2468 * infrun.h (debug_displaced): Likewise.
2469 (sched_multi): Likewise.
2470 (step_stop_if_no_debug): Likewise.
2471 (non_stop): Likewise.
2472 (disable_randomization): Likewise.
2473 * linux-tdep.c (use_coredump_filter): Likewise.
2474 (dump_excluded_mappings): Likewise.
2475 * linux-thread-db.c (auto_load_thread_db): Likewise.
2476 (check_thread_db_on_load): Likewise.
2477 * main.c (captured_main_1): Update.
2478 * maint-test-options.c (struct test_options_opts) <flag_opt, xx1_opt,
2479 xx2_opt, boolean_opt>: Change to bool.
2480 * maint-test-settings.c (maintenance_test_settings_boolean): Likewise.
2481 * maint.c (maintenance_profile_p): Likewise.
2482 (per_command_time): Likewise.
2483 (per_command_space): Likewise.
2484 (per_command_symtab): Likewise.
2485 * memattr.c (inaccessible_by_default): Likewise.
2486 * mi/mi-main.c (mi_async): Likewise.
2487 (mi_async_1): Likewise.
2488 * mips-tdep.c (mips64_transfers_32bit_regs_p): Likewise.
2489 * nat/fork-inferior.h (startup_with_shell): Likewise.
2490 * nat/linux-namespaces.c (debug_linux_namespaces): Likewise.
2491 * nat/linux-namespaces.h (debug_linux_namespaces): Likewise.
2492 * nios2-tdep.c (nios2_debug): Likewise.
2493 * or1k-tdep.c (or1k_debug): Likewise.
2494 * parse.c (parser_debug): Likewise.
2495 * parser-defs.h (parser_debug): Likewise.
2496 * printcmd.c (print_symbol_filename): Likewise.
2497 * proc-api.c (procfs_trace): Likewise.
2498 * python/py-auto-load.c (auto_load_python_scripts): Likewise.
2499 * python/py-param.c (union parmpy_variable): Add "bool boolval" field.
2500 (set_parameter_value): Update.
2501 (add_setshow_generic): Update.
2502 * python/py-value.c (copy_py_bool_obj): Change argument from int*
2503 to bool*.
2504 * python/python.c (gdbpy_parameter_value): Cast to bool* instead of
2505 int*.
2506 * ravenscar-thread.c (ravenscar_task_support): Change to bool.
2507 * record-btrace.c (record_btrace_target::store_registers): Update.
2508 * record-full.c (record_full_memory_query): Change to bool.
2509 (record_full_stop_at_limit): Likewise.
2510 * record-full.h (record_full_memory_query): Likewise.
2511 * remote-notif.c (notif_debug): Likewise.
2512 * remote-notif.h (notif_debug): Likewise.
2513 * remote.c (use_range_stepping): Likewise.
2514 (interrupt_on_connect): Likewise.
2515 (remote_break): Likewise.
2516 * ser-tcp.c (tcp_auto_retry): Likewise.
2517 * ser-unix.c (serial_hwflow): Likewise.
2518 * skip.c (debug_skip): Likewise.
2519 * solib-aix.c (solib_aix_debug): Likewise.
2520 * spu-tdep.c (spu_stop_on_load_p): Likewise.
2521 (spu_auto_flush_cache_p): Likewise.
2522 * stack.c (struct backtrace_cmd_options) <full, no_filters, hide>:
2523 Likewise.
2524 (struct info_print_options) <quiet>: Likewise.
2525 * symfile-debug.c (debug_symfile): Likewise.
2526 * symfile.c (auto_solib_add): Likewise.
2527 (separate_debug_file_debug): Likewise.
2528 * symfile.h (auto_solib_add): Likewise.
2529 (separate_debug_file_debug): Likewise.
2530 * symtab.c (basenames_may_differ): Likewise.
2531 (struct filename_partial_match_opts) <dirname, basename>: Likewise.
2532 (struct info_print_options) <quiet, exclude_minsyms>: Likewise.
2533 (struct info_types_options) <quiet>: Likewise.
2534 * symtab.h (demangle): Likewise.
2535 (basenames_may_differ): Likewise.
2536 * target-dcache.c (stack_cache_enabled_1): Likewise.
2537 (code_cache_enabled_1): Likewise.
2538 * target.c (trust_readonly): Likewise.
2539 (may_write_registers): Likewise.
2540 (may_write_memory): Likewise.
2541 (may_insert_breakpoints): Likewise.
2542 (may_insert_tracepoints): Likewise.
2543 (may_insert_fast_tracepoints): Likewise.
2544 (may_stop): Likewise.
2545 (auto_connect_native_target): Likewise.
2546 (target_stop_and_wait): Update.
2547 (target_async_permitted): Change to bool.
2548 (target_async_permitted_1): Likewise.
2549 (may_write_registers_1): Likewise.
2550 (may_write_memory_1): Likewise.
2551 (may_insert_breakpoints_1): Likewise.
2552 (may_insert_tracepoints_1): Likewise.
2553 (may_insert_fast_tracepoints_1): Likewise.
2554 (may_stop_1): Likewise.
2555 * target.h (target_async_permitted): Likewise.
2556 (may_write_registers): Likewise.
2557 (may_write_memory): Likewise.
2558 (may_insert_breakpoints): Likewise.
2559 (may_insert_tracepoints): Likewise.
2560 (may_insert_fast_tracepoints): Likewise.
2561 (may_stop): Likewise.
2562 * thread.c (struct info_threads_opts) <show_global_ids>: Likewise.
2563 (make_thread_apply_all_options_def_group): Change argument from int*
2564 to bool*.
2565 (thread_apply_all_command): Update.
2566 (print_thread_events): Change to bool.
2567 * top.c (confirm): Likewise.
2568 (command_editing_p): Likewise.
2569 (history_expansion_p): Likewise.
2570 (write_history_p): Likewise.
2571 (info_verbose): Likewise.
2572 * top.h (confirm): Likewise.
2573 (history_expansion_p): Likewise.
2574 * tracepoint.c (disconnected_tracing): Likewise.
2575 (circular_trace_buffer): Likewise.
2576 * typeprint.c (print_methods): Likewise.
2577 (print_typedefs): Likewise.
2578 * utils.c (debug_timestamp): Likewise.
2579 (sevenbit_strings): Likewise.
2580 (pagination_enabled): Likewise.
2581 * utils.h (sevenbit_strings): Likewise.
2582 (pagination_enabled): Likewise.
2583 * valops.c (overload_resolution): Likewise.
2584 * valprint.h (struct value_print_options) <prettyformat_arrays,
2585 prettyformat_structs, vtblprint, unionprint, addressprint, objectprint,
2586 stop_print_at_null, print_array_indexes, deref_ref, static_field_print,
2587 pascal_static_field_print, raw, summary, symbol_print, finish_print>:
2588 Likewise.
2589 * windows-nat.c (new_console): Likewise.
2590 (cygwin_exceptions): Likewise.
2591 (new_group): Likewise.
2592 (debug_exec): Likewise.
2593 (debug_events): Likewise.
2594 (debug_memory): Likewise.
2595 (debug_exceptions): Likewise.
2596 (useshell): Likewise.
2597 * windows-tdep.c (maint_display_all_tib): Likewise.
2598 * xml-support.c (debug_xml): Likewise.
2599
f1b620e9
MG
26002019-09-17 Mike Gulick <mgulick@mathworks.com>
2601
2602 * source.c (prepare_path_for_appending): New function.
2603 (openp): Make use of new function.
2604 (find_and_open_source): Search for the compilation directory and
2605 source file as a relative path beneath the directory search path.
2606
67f3ed6a
AB
26072019-09-17 Andrew Burgess <andrew.burgess@embecosm.com>
2608
2609 * source-cache.c (source_cache::get_line_charpos): Catch
2610 exceptions and return false, this matches the behaviour documented
2611 in the header file.
2612
74332189
JB
26132019-09-17 Joel Brobecker <brobecker@adacore.com>
2614
2615 * ada-tasks.c (info_task): Remove quoting of the task's name.
2616
f2f24aa9
CB
26172019-09-16 Christian Biesinger <cbiesinger@google.com>
2618
2619 * symfile.c (auto_solib_add): Replace comment with a reference
2620 to the header file.
2621
6a062a93
CB
26222019-09-14 Christian Biesinger <cbiesinger@google.com>
2623
2624 * NEWS: Mention that gdb can now be compiled with Python 3
2625 on Windows.
2626
ec6c8338
AB
26272019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
2628
2629 * maint.c (maint_print_section_data::maint_print_section_data):
2630 Force use of 'float log10 (float)' by casting the argument to
2631 float.
2632
aa17805f
AB
26332019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
2634
2635 * maint.c: Add 'cmath' include.
2636 (struct maint_print_section_data): New structure.
2637 (print_section_index): New function.
2638 (print_bfd_section_info): Add header comment, small whitespace
2639 cleanup, and update to call new print_section_index function.
2640 (print_objfile_section_info): Likewise.
2641 (maint_obj_section_from_bfd_section): New function.
2642 (print_bfd_section_info_maybe_relocated): New function.
2643 (maintenance_info_sections): Add header comment, always use
2644 bfd_map_over_sections instead of ALL_OBJFILE_OSECTIONS.
2645
3dd9bb46
AB
26462019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
2647
2648 * psymtab.c (find_pc_sect_psymtab): Move baseaddr local into more
2649 inner scope, add check that the objfile has psymtabs before
2650 checking psymtabs_addrmap.
2651 * psymtab.h (psymtab_storage) <psymtabs_addrmap>: Extend comment.
2652
4993045d
PW
26532019-09-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2654
2655 * NEWS: Announce that Ada task names are now shown at more places,
2656 and between quotes (except in info task output).
2657 * gdb/ada-tasks.c (task_to_str): New function.
2658 (display_current_task_id): Call task_to_str.
2659 (task_command_1): Likewise.
2660 (print_ada_task_info): In non-mi mode, Properly align headers and data
2661 when task-id length is > 9 (9 is the default for a 32 bits CORE_ADDR).
2662
7a289707
RO
26632019-09-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2664
2665 * procfs.c (procfs_target::wait) <PR_FAULTED>: Get signal from
2666 prstatus.pr_lwp.pr_info instead of making it up.
2667
f2aec7f6
CB
26682019-09-11 Christian Biesinger <cbiesinger@google.com>
2669
2670 * auto-load.c (auto_load_expand_dir_vars): Update.
2671 * defs.h (gdb_datadir): Change to std::string.
2672 (python_libdir): Likewise.
2673 (relocate_gdb_directory): Change return type to std::string.
2674 * guile/guile.c (gdbscm_data_directory): Update.
2675 (initialize_scheme_side): Update.
2676 * jit.c (jit_reader_dir): Change to std::string.
2677 (jit_reader_load_command): Update.
2678 * main.c (gdb_datadir): Change to std::string.
2679 (python_libdir): Likewise.
2680 (set_gdb_data_directory): Update.
2681 (relocate_path): Change to return std::string.
2682 (relocate_gdb_directory): Change to return std::string.
2683 (relocate_gdbinit_path_maybe_in_datadir): Update.
2684 (captured_main_1): Update.
2685 * python/python.c (do_start_initialization): Update.
2686 * top.c (show_gdb_datadir): Update.
2687 * xml-syscall.c (xml_init_syscalls_info): Update.
2688 (init_syscalls_info): Update.
2689
9224a013
CB
26902019-09-11 Christian Biesinger <cbiesinger@google.com>
2691
2692 * main.c (relocate_gdbinit_path_maybe_in_datadir): Factor this code
2693 out of get_init_files.
2694 (get_init_files): Update.
2695
f48cd836
CB
26962019-09-11 Christian Biesinger <cbiesinger@google.com>
2697
2698 * main.c (get_init_files): Change to use std::string.
2699 (captured_main_1): Update.
2700 (print_gdb_help): Update.
2701
9cab7ecd
AT
27022019-09-11 Ali Tamur <tamur@google.com>
2703
2704 *gdb/target-float.c (host_float_ops<T>::to_longest): Update
2705 implementation.
2706
67547d89
CB
27072019-09-11 Christian Biesinger <cbiesinger@google.com>
2708
2709 * dbxread.c (read_dbx_symtab): Update.
2710 * dwarf2read.c (load_partial_dies): Update.
2711 * mdebugread.c (parse_partial_symbols): Update.
2712 (handle_psymbol_enumerators): Update.
2713 * psympriv.h (add_psymbol_to_list): Change type of copy_names to bool.
2714 * psymtab.c (add_psymbol_to_bcache): Likewise.
2715 (add_psymbol_to_list): Likewise.
2716 * symtab.c (symbol_set_names): Likewise.
2717 * symtab.h (symbol_set_names): Likewise.
2718 * xcoffread.c (scan_xcoff_symtab): Update.
2719
64b2d4a0
TT
27202019-09-11 Tom Tromey <tom@tromey.com>
2721
2722 * symfile-mem.c (symbol_file_add_from_memory): Use
2723 bfd_set_filename.
2724 * solib-darwin.c (darwin_bfd_open): Use bfd_set_filename.
2725 * solib-aix.c (solib_aix_bfd_open): Use bfd_set_filename.
2726
3b00ef10
TT
27272019-09-10 Tom Tromey <tromey@adacore.com>
2728
2729 * dwarf-index-write.c (write_psymbols): Extend error message.
2730 (debug_names::insert): Add Ada code.
2731 (debug_names::write_psymbols): Remove Ada check.
2732 (debug_names) <m_string_obstack>: New member.
2733 * dwarf2read.c (gdb_index_symbol_name_matcher): Remove.
2734 (gdb_index_symbol_name_matcher::matches): Remove.
2735 (mapped_index_base::find_name_components_bounds): Add "lang"
2736 parameter.
2737 (mapped_index_base::build_name_components): Also split names
2738 according to Ada syntax.
2739 (dw2_expand_symtabs_matching_symbol): Loop over languages. Change
2740 type of "match_callback".
2741 (check_match, check_find_bounds_finds)
2742 (dw2_expand_symtabs_matching): Update.
2743 (dw2_debug_names_iterator): Add new constructor.
2744 (dw2_debug_names_map_matching_symbols): New function.
2745 (dw2_debug_names_expand_symtabs_matching): Update.
2746 (dwarf2_debug_names_functions): Use
2747 dw2_debug_names_map_matching_symbols.
2748
aa391654
TT
27492019-09-10 Tom Tromey <tromey@adacore.com>
2750
2751 * dwarf2read.c (dw2_get_file_names_reader): Add the
2752 CU's file name to the results.
2753
b054970d
TT
27542019-09-10 Tom Tromey <tromey@adacore.com>
2755
2756 * ada-lang.c (add_nonlocal_symbols): Combine calls to
2757 map_matching_symbols. Update.
2758 * dwarf2read.c (dw2_map_matching_symbols): Update.
2759 * psymtab.c (match_partial_symbol): Change type; update.
2760 (psym_map_matching_symbols): Likewise.
2761 * symfile-debug.c (debug_qf_map_matching_symbols): Change
2762 type; update.
2763 * symfile.h (struct quick_symbol_functions)
2764 <map_matching_symbols>: Change "name" to be a lookup_name_info.
2765 Remove "match".
2766
6a3dbf1b
TT
27672019-09-10 Tom Tromey <tromey@adacore.com>
2768
2769 * psymtab.c (map_block): Remove.
2770 (psym_map_matching_symbols): Use iterate_over_symbols_terminated.
2771 * symtab.c (iterate_over_symbols_terminated): New function.
2772 * symtab.c (iterate_over_symbols_terminated): Declare.
2773
6969f124
TT
27742019-09-10 Tom Tromey <tromey@adacore.com>
2775
2776 * ada-lang.c (ada_iterate_over_symbols): Return bool.
2777 * language.h (struct language_defn) <la_iterate_over_symbols>:
2778 Return bool.
2779 * symtab.c (iterate_over_symbols): Return bool.
2780 * symtab.h (iterate_over_symbols): Return bool.
2781
199b4314
TT
27822019-09-10 Tom Tromey <tromey@adacore.com>
2783
2784 * ada-lang.c (aux_add_nonlocal_symbols): Change type.
2785 (add_nonlocal_symbols): Update.
2786 * dwarf2read.c (dw2_map_matching_symbols): Change type.
2787 * psymtab.c (map_block, psym_map_matching_symbols): Change type.
2788 * symfile-debug.c (debug_qf_map_matching_symbols): Change type.
2789 * symfile.h (struct quick_symbol_functions) <map_matching_symbols>:
2790 Change type of "callback". Remove "data".
2791
a084a2a6
AT
2792
27932019-09-09 Ali Tamur <tamur@google.com>
2794
2795 * dwarf2read.c (comp_unit_head): Update comment.
2796 (dwarf2_dwo_name): New function declaration.
2797 (dwarf_unit_type_name): New function declaration.
2798 (read_comp_unit_head): Add support for new compilation units,
2799 DW_UT_partial, DW_UT_skeleton, DW_UT_split_compile, DW_UT_split_type.
2800 Particularly, DW_UT_skeleton and DW_UT_split_compile have dwo_id
2801 (currently named as "signature") in their header. Also clarify error
2802 messages.
2803 (lookup_dwo_id): New function. Returns the dwo id of the given
2804 compile unit.
2805 (lookup_dwo_unit): Use the new lookup_dwo_id function.
2806 (init_cutu_and_read_dies): Use the new dwarf2_dwo_name and lookup_dwo_id
2807 functions.
2808 (create_dwo_cu_reader): Use the added lookup_dwo_id function.
2809 (dwarf2_dwo_name): Get the dwo name if present.
2810 (dwarf_unit_type_name): Convert DW_UT_* types to string for diagnostic
2811 purposes.
2812
25a2915e
TT
28132019-09-09 Tom Tromey <tom@tromey.com>
2814
2815 * tui/tui-win.c (tui_all_windows_info): Use ui_out.
2816
e4df0874
PW
28172019-09-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2818
2819 * python/python.c (do_start_initialization): Make progname_copy static,
2820 to avoid a leak report.
2821
8634b462
TT
28222019-09-08 Tom Tromey <tom@tromey.com>
2823
2824 * tui/tui-wingeneral.c (box_win): Truncate long window titles.
2825
c7f839cb
SM
28262019-09-07 Simon Marchi <simon.marchi@efficios.com>
2827
2828 * dwarf2read.c (struct dw2_symtab_iterator) <block_index>:
2829 Change type to gdb::optional<block_enum>.
2830 (dw2_symtab_iter_init): Change block_index parameter type
2831 to gdb::optional<block_enum>.
2832 (dw2_lookup_symbol): Change block_index parameter
2833 type to block_enum.c
2834 (dw2_debug_names_lookup_symbol): Likewise.
2835 * psymtab.c (psym_lookup_symbol): Likewise.
2836 * symfile-debug.c (debug_qf_lookup_symbol): Likewise.
2837 * symfile.h (struct quick_symbol_functions) <lookup_symbol>:
2838 Likewise.
2839
ead0e69a
CB
28402019-09-06 Christian Biesinger <cbiesinger@google.com>
2841
2842 * defs.h (relocate_gdb_directory): Change int to bool in
2843 signature and rename flag to relocatable.
2844 * main.c (relocate_path): Likewise.
2845 (relocate_gdb_directory): Likewise.
2846
b16c44de
AM
28472019-09-06 Alan Modra <amodra@gmail.com>
2848
2849 * coffread.c (coff_symfile_read): Constify filename variable.
2850 * dbxread.c (dbx_symfile_init, coffstab_build_psymtabs),
2851 (elfstab_build_psymtabs, stabsect_build_psymtabs): Likewise.
2852 * gdb_bfd.c (gdb_bfd_close_or_warn): Likewise.
2853 * solib.c (reload_shared_libraries_1): Likewise.
2854 * symfile.c (reread_symbols): Likewise.
2855 * solib-aix.c (solib_aix_bfd_open): Add cast for xfree of filename.
2856 * solib-darwin.c (darwin_bfd_open): Likewise.
2857 * symfile-mem.c (symbol_file_add_from_memory): Likewise.
2858
06ff036e
AB
28592019-09-03 Andrew Burgess <andrew.burgess@embecosm.com>
2860
2861 * psymtab.c (print_partial_symbols): Handle missing domain_enum
2862 values MODULE_DOMAIN and COMMON_BLOCK_DOMAIN.
2863
4e962e74
TT
28642019-09-03 Tom Tromey <tromey@adacore.com>
2865
2866 * ada-valprint.c (ada_val_print_num): Don't recurse for range
2867 types.
2868 (has_negatives): Unbias a range type bound.
2869 * dwarf2read.c (read_subrange_type): Handle DW_AT_GNU_bias.
2870 * gdbtypes.c (operator==): Handle new field.
2871 (create_range_type): Add "bias" parameter.
2872 (create_static_range_type, resolve_dynamic_range): Update.
2873 * gdbtypes.h (struct range_bounds) <bias>: New member.
2874 (create_range_type): Add bias parameter.
2875 * printcmd.c (print_scalar_formatted): Unbias range types.
2876 * value.c (unpack_long): Unbias range types.
2877 (pack_long): Bias range types.
2878
d90b8f26
AH
28792019-09-02 Alan Hayward <alan.hayward@arm.com>
2880
2881 * solib-svr4.c (svr4_find_and_create_probe_breakpoints): Check all
2882 probe arguments.
2883
fe01123e
AH
28842019-09-02 Alan Hayward <alan.hayward@arm.com>
2885
2886 * break-catch-throw.c (fetch_probe_arguments): Use gdbarch.
2887 * dtrace-probe.c (dtrace_probe::get_argument_count): Likewise.
2888 * probe.c (probe_safe_evaluate_at_pc) (compute_probe_arg)
2889 (compile_probe_arg): Likewise.
2890 * probe.h (get_argument_count): Likewise.
2891 * solib-svr4.c (solib_event_probe_action): Likewise.
2892 * stap-probe.c (stap_probe::get_argument_count): Likewise.
2893
e661ef01
AH
28942019-09-02 Alan Hayward <alan.hayward@arm.com>
2895
2896 * solib-svr4.c (svr4_find_and_create_probe_breakpoints): Move
2897 code to here...
2898 (svr4_create_solib_event_breakpoints): ...from here.
2899
47a536d9
SDJ
29002019-08-30 Sergio Durigan Junior <sergiodj@redhat.com>
2901
2902 * nat/fork-inferior.c (trace_start_error): Remove "\nError: "
2903 suffix from warning message.
2904
d6a00eba
TT
29052019-08-30 Tom Tromey <tom@tromey.com>
2906
2907 * tui/tui-winsource.h (struct tui_source_window_base)
2908 <refresh_all>: Don't declare.
2909 * tui/tui-winsource.c (tui_source_window_base::refresh_all):
2910 Remove.
2911 * tui/tui-win.c (tui_refresh_all_win): Don't call refresh_all or
2912 tui_show_locator_content.
2913 * tui/tui-regs.h (struct tui_data_window) <refresh_all>: Don't
2914 declare.
2915 * tui/tui-regs.c (tui_data_window::refresh_all): Remove.
2916 * tui/tui-data.h (struct tui_win_info) <refresh_all>: Don't
2917 declare.
2918
55b2657b
TT
29192019-08-30 Tom Tromey <tom@tromey.com>
2920
2921 * tui/tui-io.c (tui_cont_sig): Don't call wrefresh.
2922
12a8555a
TT
29232019-08-30 Tom Tromey <tom@tromey.com>
2924
2925 * tui/tui-stack.c (_initialize_tui_stack): Move later.
2926 Remove unnecessary forward declarations.
2927
900ac242
TT
29282019-08-30 Tom Tromey <tom@tromey.com>
2929
2930 * tui/tui-stack.c (tui_locator_window::set_locator_fullname): Call
2931 rerender.
2932 (tui_update_locator_fullname, tui_show_frame_info): Don't call
2933 tui_show_locator_content.
2934
99ab33fb
TT
29352019-08-30 Tom Tromey <tom@tromey.com>
2936
2937 * tui/tui-stack.c (tui_show_locator_content): Move lower. Rewrite.
2938 (tui_locator_window::rerender): Rewrite using body of previous
2939 tui_show_locator_content.
2940
e594a5d1
TT
29412019-08-30 Tom Tromey <tom@tromey.com>
2942
2943 * tui/tui-stack.h (struct tui_locator_window) <set_locator_info,
2944 set_locator_fullname>: New methods.
2945 * tui/tui-stack.c (tui_locator_window::set_locator_fullname):
2946 Rename from tui_set_locator_fullname.
2947 (tui_locator_window::set_locator_info): Rename from
2948 tui_set_locator_info. Return bool.
2949 (tui_update_locator_fullname, tui_show_frame_info): Update.
2950
715bb467
TT
29512019-08-30 Tom Tromey <tom@tromey.com>
2952
2953 * tui/tui-layout.c (show_layout): Don't call tui_refresh_all.
2954
772f3f03
TT
29552019-08-30 Tom Tromey <tom@tromey.com>
2956
2957 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Don't
2958 call touchwin.
2959
108e13ab
TT
29602019-08-30 Tom Tromey <tom@tromey.com>
2961
2962 * tui/tui-wingeneral.c (box_win): Assume win_info and
2963 win_info->handle cannot be NULL.
2964
cdaa6eb4
TT
29652019-08-30 Tom Tromey <tom@tromey.com>
2966
2967 * tui/tui-regs.h (struct tui_data_item_window) <rerender,
2968 refresh_window>: Declare.
2969 * tui/tui-regs.c (tui_data_window::display_registers_from): Call
2970 resize.
2971 (tui_data_item_window::rerender): Rename from
2972 tui_display_register.
2973 (tui_data_item_window::refresh_window): New method.
2974 * tui/tui-layout.c (tui_gen_win_info::resize): Do nothing on
2975 no-op.
2976
89df7f90
TT
29772019-08-30 Tom Tromey <tom@tromey.com>
2978
2979 * tui/tui-regs.h (struct tui_data_window) <regs_content,
2980 regs_column_count, current_group>: Move later. Now private.
2981 <get_current_group>: New method.
2982 * tui/tui-regs.c (tui_reg_command): Update.
2983 * tui/tui-layout.c (tui_set_layout): Update.
2984
1bf2866a
TT
29852019-08-30 Tom Tromey <tom@tromey.com>
2986
2987 * tui/tui-regs.c (tui_data_window::display_registers_from_line)
2988 (tui_data_window::rerender): Don't call
2989 check_and_display_highlight_if_needed.
2990 (tui_data_window::refresh_all): Remove call to
2991 erase_data_content.
2992
0670413d
TT
29932019-08-30 Tom Tromey <tom@tromey.com>
2994
2995 * tui/tui-regs.c (tui_data_window::last_regs_line_no)
2996 (tui_data_window::display_registers_from)
2997 (tui_data_window::display_reg_element_at_line)
2998 (tui_data_window::display_registers_from_line): Remove checks of
2999 "empty".
3000
18bb55c7
TT
30012019-08-30 Tom Tromey <tom@tromey.com>
3002
3003 * tui/tui-regs.h (struct tui_data_window) <display_all_data>:
3004 Don't declare.
3005 * tui/tui-regs.c (tui_data_window::show_registers): Call
3006 rerender.
3007 (tui_data_window::rerender): Rename from display_all_data.
3008 (tui_data_window::rerender): Remove old implementation.
3009
1f6d2f10
TT
30102019-08-30 Tom Tromey <tom@tromey.com>
3011
3012 * tui/tui-regs.c (tui_data_window::display_all_data): Change
3013 text.
3014 * tui/tui-data.h (NO_DATA_STRING): Remove define.
3015
16d01f9c
BW
30162019-08-29 Bernhard Wodok <barto@gmx.net>
3017 Sergio Durigan Junior <sergiodj@redhat.com>
3018
3019 PR win32/24284
3020 * mingw-hdep.c (gdb_select): Handle case when 'n' is zero.
3021
d8f27c60
AB
30222019-08-28 Andrew Burgess <andrew.burgess@embecosm.com>
3023
3024 * symtab.c (search_symbols): Don't include MODULE_DOMAIN symbols
3025 when searching for types.
3026
1f20c35e
AB
30272019-08-28 Andrew Burgess <andrew.burgess@embecosm.com>
3028
3029 * f-lang.c (f_language_defn): Use f_print_typedef.
3030 * f-lang.h (f_print_typedef): Declare.
3031 * f-typeprint.c (f_print_typedef): Define.
3032
550105b7
CB
30332019-08-27 Christian Biesinger <cbiesinger@google.com>
3034
3035 * nat/linux-namespaces.c (mnsh_main): Initialize fd (to -1).
3036
4acfdd20
AB
30372019-08-27 Andrew Burgess <andrew.burgess@embecosm.com>
3038
3039 * cli/cli-utils.c (info_print_options_defs): Delete.
3040 (make_info_print_options_def_group): Delete.
3041 (extract_info_print_options): Delete.
3042 (info_print_command_completer): Delete.
3043 (info_print_args_help): Add extra parameter, and optionally
3044 include text about -n flag.
3045 * cli/cli-utils.h (struct info_print_options): Delete.
3046 (extract_info_print_options): Delete declaration.
3047 (info_print_command_completer): Delete declaration.
3048 (info_print_args_help): Add extra parameter, extend header
3049 comment.
3050 * python/python.c (gdbpy_rbreak): Pass additional parameter to
3051 search_symbols.
3052 * stack.c (struct info_print_options): New type.
3053 (info_print_options_defs): New file scoped variable.
3054 (make_info_print_options_def_group): New static function.
3055 (info_print_command_completer): New static function.
3056 (info_locals_command): Update to use new local functions.
3057 (info_args_command): Likewise.
3058 (_initialize_stack): Add extra parameter to calls to
3059 info_print_args_help.
3060 * symtab.c (search_symbols): Add extra parameter, use this to
3061 possibly excluse non-debug symbols.
3062 (symtab_symbol_info): Add extra parameter, which is passed on to
3063 search_symbols.
3064 (struct info_print_options): New type.
3065 (info_print_options_defs): New file scoped variable.
3066 (make_info_print_options_def_group): New static function.
3067 (info_print_command_completer): New static function.
3068 (info_variables_command): Update to use local functions, and pass
3069 extra parameter through to symtab_symbol_info.
3070 (info_functions_command): Likewise.
3071 (info_types_command): Pass additional argument through to
3072 symtab_symbol_info.
3073 (rbreak_command): Pass extra argument to search_symbols.
3074 (_initialize_symtab): Add extra arguments for calls to
3075 info_print_args_help, and update help text for 'info variables',
3076 'whereis', and 'info functions' commands.
3077 * symtab.h (search_symbols): Add extra argument to declaration.
3078 * NEWS: Mention new flags.
3079
9aa55206
CB
30802019-08-26 Christian Biesinger <cbiesinger@google.com>
3081
3082 * symtab.c (lookup_static_symbol): Call the new function (and move
3083 it down to be next to lookup_global_symbol).
3084 (struct global_sym_lookup_data): Add block_enum member and rename to...
3085 (struct global_or_static_sym_lookup_data): ...this.
3086 (lookup_symbol_global_iterator_cb): Pass block_index instead of
3087 GLOBAL_BLOCK to lookup_symbol_in_objfile and rename to...
3088 (lookup_symbol_global_or_static_iterator_cb): ...this.
3089 (lookup_global_or_static_symbol): New function.
3090 (lookup_global_symbol): Call new function.
3091
5c31b358
TV
30922019-08-26 Tom de Vries <tdevries@suse.de>
3093
3094 PR c++/24852
3095 * break-catch-throw.c (fetch_probe_arguments): Improve error mesage
3096 when pc_probe.prob == NULL.
3097
23c13d42
SM
30982019-08-25 Simon Marchi <simon.marchi@efficios.com>
3099
3100 * dwarf2read.c (dw2_debug_names_iterator::next): Rename local
3101 variable symbol_linkage to symbol_linkage_.
3102
beadd3e8
SM
31032019-08-25 Simon Marchi <simon.marchi@efficios.com>
3104
3105 * dwarf2read.c (dw2_debug_names_iterator::next): Use enum to
3106 represent whether the symbol is static, dynamic, or we don't
3107 know.
3108
e3ec872f
YS
31092019-08-25 Yoshinori Sato <ysato@users.sourceforge.jp>
3110
3111 * gdb/rx-tdep.c (rx_register_names): New.
3112 (rx_register_name): Delete.
3113 (rx_psw_type): Delete.
3114 (rx_fpsw_type): Delete.
3115 (rx_register_type): Delete.
3116 (rx_gdbarch_init): Convert target-descriptions.
3117 (_initialize_rx_tdep): Add initialize_tdesc_rx.
3118 * gdb/features/Makefile: Add rx.xml.
3119 * gdb/features/rx.xml: New.
3120 * gdb/features/rx.c: Generated.
3121 * gdb/NEWS: Mention target description support.
3122
d0509ba4
CB
31232019-08-22 Christian Biesinger <cbiesinger@google.com>
3124
3125 * symtab.c (symbol_cache_lookup): Always initialize *bsc_ptr and
3126 *slot_ptr.
3127
2d41fa11
SDJ
31282019-08-23 Sergio Durigan Junior <sergiodj@redhat.com>
3129
3130 * configure.ac: Don't check for 'dlfcn.h' (moved to
3131 gdbsupport/common.m4).
3132 * Makefile.in (COMMON_SFILES): Move 'gdb-dlfcn.c' to
3133 'gdbsupport/'.
3134 (HFILES_NO_SRCDIR): Likewise, for 'gdb-dlfcn.h'.
3135 * compile/compile-c-support.c: Include
3136 'gdbsupport/gdb-dlfcn.h'.
3137 * gdbsupport/common.m4: Check for 'dlfcn.h'.
3138 * gdb-dlfcn.c: Move to...
3139 * gdbsupport/gdb-dlfcn.c: ... here.
3140 * gdb-dlfcn.h: Move to...
3141 * gdbsupport/gdb-dlfcn.h: ... here.
3142
de8af808
SL
31432019-08-23 Sandra Loosemore <sandra@codesourcery.com>
3144
3145 * nios2-tdep.c (struct reg_value): Improve comments. Make
3146 the offset field signed.
3147
27204489
CB
31482019-08-22 Christian Biesinger <cbiesinger@google.com>
3149
3150 * python/lib/gdb/__init__.py (_execute_file): New function.
3151 * python/python.c (python_run_simple_file): Call gdb._execute_file
3152 on Windows.
3153
43771869
AB
31542019-08-22 Andrew Burgess <andrew.burgess@embecosm.com>
3155
3156 * f-exp.y (yylex): Remove is_a_field_of_this local variable, and
3157 all uses as this was never set to anything but a zero value.
3158
26c957f1
PA
31592019-08-21 Bogdan Harjoc <harjoc@gmail.com>
3160
3161 * cli/cli-cmds.c (with_command_1): Error out if no arguments.
3162
c07aae6e
CB
31632019-08-21 Christian Biesinger <cbiesinger@google.com>
3164
3165 * tui/tui-data.h (tui_gen_win_info): Add an =default
3166 move constructor, required by some GCC versions.
3167
3960cb7a
JF
31682019-08-21 Jinke Fan <fanjinke51@yeah.net>
3169
3170 * go32-nat.c (go32_sysinfo): Add hygon_p.
3171
04c72a68
TT
31722019-08-20 Tom Tromey <tom@tromey.com>
3173
3174 * tui/tui-regs.h (struct tui_data_window) <last_regs_line_no,
3175 line_from_reg_element_no, first_reg_element_no_inline,
3176 display_all_data, delete_data_content_windows,
3177 erase_data_content>: Now private.
3178
072272ce
TT
31792019-08-20 Tom Tromey <tom@tromey.com>
3180
3181 * tui/tui-wingeneral.c (box_win): Change type of highlight_flag.
3182 (tui_unhighlight_win, tui_highlight_win)
3183 (tui_win_info::make_window): Update.
3184 * tui/tui-data.h (HILITE, NO_HILITE): Remove.
3185
973961bd
TT
31862019-08-20 Tom Tromey <tom@tromey.com>
3187
3188 * tui/tui-data.h (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
3189 (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
3190 (MAX_PID_WIDTH): Move to tui-stack.c.
3191 * tui/tui-stack.c (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
3192 (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
3193 (MAX_PID_WIDTH): Move from tui-data.h.
3194
ab0e1f1a
TT
31952019-08-20 Tom Tromey <tom@tromey.com>
3196
3197 * tui/tui-wingeneral.h (tui_make_window): Don't declare.
3198 * tui/tui-wingeneral.c (box_win): Change type of win_info.
3199 (box_win): Update.
3200 (tui_gen_win_info::make_window): Rename from tui_make_window.
3201 (tui_win_info::make_window): New method.
3202 (tui_gen_win_info::make_visible): Update.
3203 * tui/tui-source.c (tui_source_window::set_contents): Update.
3204 * tui/tui-regs.c (tui_data_window::show_register_group): Update.
3205 (tui_data_window::display_registers_from): Update.
3206 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
3207 * tui/tui-data.h (struct tui_gen_win_info) <make_window>:
3208 Declare.
3209 <can_box>: Remove.
3210 <title>: Remove.
3211 (struct tui_win_info) <make_window>: Declare.
3212 <can_box>: Now virtual.
3213 <title>: New member.
3214 * tui/tui-data.c (~tui_gen_win_info): Don't free title.
3215 * tui/tui-command.c (tui_cmd_window::resize): Update.
3216
100c2bf3
TT
32172019-08-20 Tom Tromey <tom@tromey.com>
3218
3219 * tui/tui-regs.h (struct tui_data_window) <display_regs>: Remove.
3220 * tui/tui-regs.c (tui_data_window::show_registers): Update.
3221 (tui_data_window::check_register_values): Update.
3222
fa4dc567
TT
32232019-08-20 Tom Tromey <tom@tromey.com>
3224
3225 * tui/tui-regs.h (struct tui_data_window): Use
3226 DISABLE_COPY_AND_ASSIGN.
3227 <regs_content>: Change type, removing unique_ptr.
3228 <tui_data_window>: Add move constructor.
3229 * tui/tui-regs.c (tui_data_window::show_registers)
3230 (tui_data_window::show_register_group)
3231 (tui_data_window::display_registers_from)
3232 (tui_data_window::display_registers_from)
3233 (tui_data_window::first_data_item_displayed)
3234 (tui_data_window::delete_data_content_windows)
3235 (tui_data_window::rerender, tui_data_window::refresh_window)
3236 (tui_data_window::check_register_values): Update.
3237
ca02d7c8
TT
32382019-08-20 Tom Tromey <tom@tromey.com>
3239
3240 * tui/tui-regs.h (struct tui_data_window) <show_registers,
3241 show_register_group>: Declare.
3242 (tui_show_register_group): Don't declare.
3243 * tui/tui-regs.c (tui_data_window::show_registers): Rename from
3244 tui_show_registers.
3245 (tui_data_window::show_register_group): Rename from
3246 tui_show_register_group.
3247 (tui_data_window::check_register_values, tui_reg_command):
3248 Update.
3249 * tui/tui-layout.c (tui_set_layout): Update.
3250
63356bfd
TT
32512019-08-20 Tom Tromey <tom@tromey.com>
3252
3253 * tui/tui-regs.h (struct tui_data_window) <check_register_values>:
3254 Declare.
3255 (tui_check_register_values): Don't declare.
3256 * tui/tui-regs.c (tui_data_window::check_register_values): Rename
3257 from tui_check_register_values.
3258 * tui/tui-hooks.c (tui_register_changed): Update.
3259
42cc14a7
TT
32602019-08-20 Tom Tromey <tom@tromey.com>
3261
3262 * tui/tui-regs.c (tui_reg_layout): Move later.
3263 (tui_show_registers): Don't enable TUI mode or change layout.
3264
b9ad3686
TT
32652019-08-20 Tom Tromey <tom@tromey.com>
3266
3267 * tui/tui-regs.h (struct tui_data_item_window)
3268 <~tui_data_item_window>: Remove.
3269 <content>: Now a unique_xmalloc_ptr.
3270 * tui/tui-regs.c (tui_register_format): Return a
3271 unique_xmalloc_ptr.
3272 (tui_get_register): Update.
3273 (~tui_data_item_window): Remove.
3274 (tui_data_window::display_registers_from, tui_display_register):
3275 Update.
3276 * tui/tui-io.h (tui_expand_tabs): Update.
3277 * tui/tui-io.c (tui_expand_tabs): Return a unique_xmalloc_ptr.
3278 Remove "col" parameter.
3279
8e114aab
TT
32802019-08-20 Tom Tromey <tom@tromey.com>
3281
3282 * tui/tui-regs.h (struct tui_data_item_window) <value>: Remove
3283 field.
3284 * tui/tui-regs.c (~tui_data_item_window): Update.
3285
1a4f81dd
TT
32862019-08-20 Tom Tromey <tom@tromey.com>
3287
3288 * tui/tui-regs.c (tui_register_format, tui_get_register): Move
3289 earlier.
3290
0f8d8876
TT
32912019-08-20 Tom Tromey <tom@tromey.com>
3292
3293 * tui/tui-regs.c (tui_reg_command): Remove NULL check.
3294
605dc2c2
TT
32952019-08-20 Tom Tromey <tom@tromey.com>
3296
3297 * tui/tui-source.h (struct tui_source_window): Update.
3298 * tui/tui-regs.c (tui_show_registers): Update.
3299 * tui/tui-disasm.h (struct tui_disasm_window): Update.
3300 * tui/tui-data.h (NO_SRC_STRING, NO_DISASSEM_STRING)
3301 (NO_REGS_STRING): Remove defines.
3302
aedbe3bb
CM
33032019-08-20 Conrad Meyer <cem@FreeBSD.org>
3304
3305 * remote.c (remote_target::remote_btrace_maybe_reopen): Avoid
3306 unnecessary thread walk if remote doesn't support the packet.
3307
7ce8f214
TT
33082019-08-19 Tom Tromey <tromey@adacore.com>
3309
3310 * python/py-value.c (value_has_field): Fix indentation.
3311
f21c2bd7
TT
33122019-08-19 Tom Tromey <tromey@adacore.com>
3313
3314 * printcmd.c (do_one_display, info_display_command): Update.
3315 * block.h (contained_in): Return bool. Add allow_nested
3316 parameter.
3317 * block.c (contained_in): Return bool. Add allow_nested
3318 parameter.
3319
d806ea2d
TT
33202019-08-19 Tom Tromey <tom@tromey.com>
3321
3322 * configure: Rebuild.
3323 * configure.ac: Disallow the combination of -static-libstdc++ and
3324 source highlight.
3325 * source-cache.c (get_language_name): Handle rust.
3326 (source_cache::get_source_lines): Ignore highlighting exceptions.
3327
398fdd60
TT
33282019-08-16 Tom Tromey <tom@tromey.com>
3329
3330 * tui/tui.h (enum tui_win_type) <EXEC_INFO_WIN>: Remove.
3331 * tui/tui-winsource.h (struct tui_exec_info_window): Remove.
3332 (struct tui_source_window_base) <make_visible, refresh_window,
3333 resize>: Remove methods.
3334 <execution_info>: Remove field.
3335 * tui/tui-winsource.c (tui_source_window_base::do_erase_source_content)
3336 (tui_show_source_line, tui_source_window_base)
3337 (~tui_source_window_base): Update.
3338 (tui_source_window_base::resize)
3339 (tui_source_window_base::make_visible)
3340 (tui_source_window_base::refresh_window): Remove.
3341 (tui_source_window_base::update_exec_info): Update.
3342 * tui/tui-source.c (tui_source_window::set_contents): Update.
3343 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
3344
e699d331
TT
33452019-08-16 Tom Tromey <tom@tromey.com>
3346
3347 * tui/tui-hooks.c (tui_remove_hooks): Don't set
3348 deprecated_query_hook.
3349
bb01dbfc
TT
33502019-08-16 Tom Tromey <tom@tromey.com>
3351
3352 * tui/tui-winsource.c (tui_update_source_windows_with_addr)
3353 (tui_update_source_windows_with_line): Update.
3354 * tui/tui-source.h (struct tui_source_window)
3355 <show_symtab_source>: Declare.
3356 (tui_show_symtab_source): Don't declare.
3357 * tui/tui-source.c (tui_show_symtab_source): Rename from
3358 tui_show_symtab_source.
3359
81c82c4b
TT
33602019-08-16 Tom Tromey <tom@tromey.com>
3361
3362 * tui/tui-winsource.h (struct tui_source_window_base)
3363 <set_contents>: Declare.
3364 * tui/tui-winsource.c
3365 (tui_source_window_base::update_source_window_as_is): Update.
3366 * tui/tui-source.h (struct tui_source_window) <set_contents>:
3367 Declare.
3368 (tui_set_source_content): Don't declare.
3369 * tui/tui-source.c (tui_source_window::set_contents): Rename from
3370 tui_set_source_content.
3371 * tui/tui-disasm.h (struct tui_disasm_window) <set_contents>:
3372 Declare.
3373 (tui_set_disassem_content): Don't declare.
3374 * tui/tui-disasm.c (tui_disasm_window::set_contents): Rename from
3375 tui_set_disassem_content.
3376
2ddaf614
TT
33772019-08-16 Tom Tromey <tom@tromey.com>
3378
3379 * tui/tui-winsource.h (struct tui_source_window_base)
3380 <update_breakpoint_info>: Declare.
3381 (tui_update_breakpoint_info): Don't declare.
3382 * tui/tui-winsource.c (tui_source_window_base::update_source_window_as_is)
3383 (tui_update_all_breakpoint_info): Update.
3384 (tui_source_window_base::update_breakpoint_info): Rename from
3385 tui_update_breakpoint_info.
3386 (tui_source_window_base::update_exec_info): Update.
3387
017f9828
TT
33882019-08-16 Tom Tromey <tom@tromey.com>
3389
3390 * tui/tui-winsource.h (struct tui_source_window_base)
3391 <update_source_window>: Declare.
3392 (tui_update_source_window): Don't declare.
3393 * tui/tui-winsource.c
3394 (tui_source_window_base::update_source_window): Rename from
3395 tui_update_source_window.
3396 (tui_source_window_base::rerender): Update.
3397 * tui/tui-source.c (tui_source_window::maybe_update): Update.
3398 * tui/tui-disasm.c (tui_show_disassem)
3399 (tui_show_disassem_and_update_source)
3400 (tui_disasm_window::maybe_update): Update.
3401
ed8358e9
TT
34022019-08-16 Tom Tromey <tom@tromey.com>
3403
3404 * tui/tui-winsource.h (struct tui_source_window_base)
3405 <update_source_window_as_is>: Declare.
3406 (tui_update_source_window_as_is): Don't declare.
3407 * tui/tui-winsource.c (tui_update_source_window): Update
3408 (tui_source_window_base::update_source_window_as_is): Rename from
3409 tui_update_source_window_as_is.
3410 (tui_source_window_base::refill): Update.
3411 * tui/tui-source.c (tui_show_symtab_source): Update.
3412 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical):
3413 Update.
3414
20149b6b
TT
34152019-08-16 Tom Tromey <tom@tromey.com>
3416
3417 * tui/tui-winsource.h (tui_update_source_window)
3418 (tui_update_source_window_as_is): Remove "noerror" parameter.
3419 * tui/tui-winsource.c (tui_update_source_window)
3420 (tui_update_source_window_as_is): Remove "noerror" parameter.
3421 (tui_update_source_windows_with_addr)
3422 (tui_update_source_windows_with_line)
3423 (tui_source_window_base::rerender)
3424 (tui_source_window_base::refill): Update.
3425 * tui/tui-source.h (tui_set_source_content)
3426 (tui_show_symtab_source): Remove "noerror" parameter.
3427 * tui/tui-source.c (tui_set_source_content): Remove "noerror"
3428 parameter.
3429 (tui_show_symtab_source): Likewise.
3430 (tui_source_window::maybe_update): Update.
3431 * tui/tui-disasm.c (tui_show_disassem)
3432 (tui_show_disassem_and_update_source)
3433 (tui_disasm_window::do_scroll_vertical)
3434 (tui_disasm_window::maybe_update): Update.
3435
2d83e710
TT
34362019-08-16 Tom Tromey <tom@tromey.com>
3437
3438 * tui/tui.c (tui_is_window_visible): Update.
3439 * tui/tui-wingeneral.c (tui_make_window)
3440 (tui_gen_win_info::make_visible, tui_refresh_all): Update.
3441 * tui/tui-win.c (window_name_completer, tui_refresh_all_win)
3442 (tui_set_focus_command, tui_all_windows_info, update_tab_width)
3443 (tui_set_win_height_command, parse_scrolling_args): Update.
3444 * tui/tui-source.c (tui_source_window::style_changed): Update.
3445 * tui/tui-regs.c (tui_show_registers)
3446 (tui_data_window::first_data_item_displayed)
3447 (tui_data_window::delete_data_content_windows)
3448 (tui_check_register_values, tui_reg_command): Update.
3449 * tui/tui-disasm.c (tui_show_disassem): Update.
3450 * tui/tui-data.h (struct tui_gen_win_info) <is_visible>: New
3451 method.
3452 <is_visible>: Remove field.
3453 * tui/tui-data.c (tui_next_win, tui_prev_win)
3454 (tui_delete_invisible_windows): Update.
3455
d4ab829a
TT
34562019-08-16 Tom Tromey <tom@tromey.com>
3457
3458 * tui/tui-winsource.h (struct tui_source_window_base)
3459 <m_has_locator>: Remove.
3460 * tui/tui-layout.c (show_source_disasm_command, show_data)
3461 (show_source_or_disasm_and_command): Update.
3462
aa7ca1bb
AH
34632019-08-16 Alan Hayward <alan.hayward@arm.com>
3464
3465 * NEWS (Other MI changes): New subsection.
3466 * aarch64-tdep.c (aarch64_get_pc_address_flags): New function.
3467 (aarch64_gdbarch_init): Add aarch64_get_pc_address_flags.
3468 * arch-utils.c (default_get_pc_address_flags): New function.
3469 * arch-utils.h (default_get_pc_address_flags): New declaration.
3470 * gdbarch.sh: Add get_pc_address_flags.
3471 * gdbarch.c: Regenerate.
3472 * gdbarch.h: Likewise.
3473 * stack.c (print_pc): New function.
3474 (print_frame_info) (print_frame): Call print_pc.
3475
6eac171f
TV
34762019-08-16 Tom de Vries <tdevries@suse.de>
3477
3478 * maint.c (maintenance_info_sections): Also handle !ALLOBJ case using
3479 print_objfile_section_info.
3480
3df505f6
TT
34812019-08-15 Tom Tromey <tom@tromey.com>
3482
3483 * tui/tui-io.c (tui_puts_internal): Check TUI_CMD_WIN before
3484 calling update_cmdwin_start_line.
3485 * tui/tui-winsource.h (struct tui_source_window_base)
3486 <do_make_visible_with_new_height, set_new_height>: Don't declare.
3487 <rerender>: Declare.
3488 * tui/tui-winsource.c (tui_source_window_base::update_tab_width):
3489 Call rerender.
3490 (tui_source_window_base::set_new_height): Remove.
3491 (tui_source_window_base::rerender): Rename from
3492 do_make_visible_with_new_height.
3493 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Use
3494 resize method.
3495 (tui_win_info::make_invisible_and_set_new_height)
3496 (tui_win_info::make_visible_with_new_height): Remove.
3497 * tui/tui-stack.h (struct tui_locator_window) <rerender>:
3498 Declare.
3499 * tui/tui-stack.c (tui_locator_window::rerender): New method.
3500 * tui/tui-regs.h (struct tui_data_window) <set_new_height,
3501 do_make_visible_with_new_height>: Don't declare.
3502 <rerender>: Declare.
3503 * tui/tui-regs.c (tui_data_window::rerender): Rename from
3504 set_new_height.
3505 (tui_data_window::do_make_visible_with_new_height): Remove.
3506 * tui/tui-layout.c (show_source_disasm_command, show_data): Don't
3507 call tui_show_locator_content.
3508 (tui_gen_win_info::resize): Call rerender.
3509 (show_source_or_disasm_and_command): Don't call
3510 tui_show_locator_content.
3511 * tui/tui-data.h (struct tui_gen_win_info) <rerender>: New
3512 method.
3513 (struct tui_win_info) <rerender>: Declare.
3514 <set_new_height, make_invisible_and_set_new_height,
3515 make_visible_with_new_height>: Don't declare.
3516 * tui/tui-data.c (tui_win_list::rerender): New method.
3517 * tui/tui-command.h (struct tui_cmd_window)
3518 <do_make_visible_with_new_height>: Don't declare.
3519 * tui/tui-command.c
3520 (tui_cmd_window::do_make_visible_with_new_height): Remove.
3521
272560b5
TT
35222019-08-15 Tom Tromey <tromey@adacore.com>
3523
3524 * ada-exp.y (convert_char_literal): Handle "Q%c" encoding.
3525 * ada-lang.c (ada_enum_name): Likewise.
3526
08235187
CB
35272019-08-15 Christian Biesinger <cbiesinger@google.com>
3528
3529 * python/lib/gdb/__init__.py (GdbOutputFile): Rename to have a
3530 leading underscore.
3531 (GdbOutputErrorFile): Likewise.
3532 (global scope): Adjust constructor calls to GdbOutput{,Error}File
3533 accordingly.
3534 (execute_unwinders): Rename to have a leading underscore.
3535 (auto_load_packages): Likewise.
3536 (global scope): Adjust call to auto_load_packages accordingly.
3537 (GdbSetPythonDirectory): Likewise.
3538 * python/py-unwind.c (pyuw_sniffer): Call _execute_unwinders
3539 instead of execute_unwinders.
3540
db502012
TT
35412019-08-15 Tom Tromey <tom@tromey.com>
3542
3543 * tui/tui-layout.c (show_layout, show_source_disasm_command)
3544 (show_data): Don't change window visibility.
3545 (tui_gen_win_info::resize): Remove special case for command
3546 window. Use wresize, when available.
3547 (show_source_or_disasm_and_command): Don't change window
3548 visibility.
3549 * tui/tui-command.h (struct tui_cmd_window) <resize>: Declare.
3550 <make_visible>: New method.
3551 * tui/tui-command.c (tui_cmd_window::resize): New method.
3552
3891b65e
TT
35532019-08-15 Tom Tromey <tom@tromey.com>
3554
3555 * tui/tui-winsource.h (struct tui_source_window_iterator): New.
3556 (struct tui_source_windows): New.
3557 * tui/tui-winsource.c (tui_display_main): Update.
3558 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
3559 (new_height_ok, parse_scrolling_args): Update.
3560 * tui/tui-layout.c (show_layout, show_data): Update.
3561 * tui/tui-data.h (tui_source_windows, tui_clear_source_windows)
3562 (tui_add_to_source_windows): Don't declare.
3563 * tui/tui-data.c (source_windows, tui_source_windows)
3564 (tui_clear_source_windows, tui_add_to_source_windows): Remove.
3565
ee556432
TT
35662019-08-15 Tom Tromey <tom@tromey.com>
3567
3568 * tui/tui-winsource.h (struct tui_source_window_base) <resize>:
3569 Rename from reset.
3570 * tui/tui-winsource.c (tui_source_window_base::resize): Rename.
3571 * tui/tui-layout.c (show_source_disasm_command, show_data):
3572 Update.
3573 (tui_gen_win_info::resize): Rename.
3574 (show_source_or_disasm_and_command): Update.
3575 * tui/tui-data.h (struct tui_gen_win_info) <resize>: Rename from
3576 reset.
3577
46f438e3
TT
35782019-08-15 Tom Tromey <tom@tromey.com>
3579
3580 * tui/tui-stack.c (tui_initialize_static_data): Remove.
3581 * tui/tui-interp.c (tui_interp::init): Don't call
3582 tui_initialize_static_data.
3583 * tui/tui-data.h (tui_initialize_static_data): Don't declare.
3584
f4ce562c
TT
35852019-08-15 Tom Tromey <tom@tromey.com>
3586
3587 * tui/tui-layout.c (tui_default_win_viewport_height): Don't
3588 examine tui_win_list.
3589
c398c3d0
TT
35902019-08-15 Tom Tromey <tom@tromey.com>
3591
3592 * tui/tui-winsource.h (tui_clear_source_content): Don't declare.
3593 * tui/tui-winsource.c (tui_update_source_window_as_is): Don't call
3594 tui_clear_source_content.
3595 (tui_clear_source_content): Remove.
3596 (tui_source_window_base::do_erase_source_content): Hoist call to
3597 content.clear().
3598 * tui/tui-stack.c (tui_show_frame_info): Don't call
3599 tui_clear_source_content.
3600
e25d2004
TT
36012019-08-15 Tom Tromey <tom@tromey.com>
3602
3603 * tui/tui-winsource.h (struct tui_source_window_base)
3604 <do_erase_source_content>: New method.
3605 <erase_source_content>: New method.
3606 (tui_erase_source_content): Don't declare.
3607 * tui/tui-winsource.c (tui_clear_source_content): Update.
3608 (tui_source_window_base::do_erase_source_content): Rename from
3609 tui_erase_source_content.
3610 (tui_source_window_base::show_source_content): Update.
3611 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
3612 * tui/tui-source.h (struct tui_source_window)
3613 <erase_source_content>: New method.
3614 * tui/tui-disasm.h (struct tui_disasm_window)
3615 <erase_source_content>: New method.
3616
002f15c2
TT
36172019-08-15 Tom Tromey <tom@tromey.com>
3618
3619 * tui/tui-winsource.h (tui_alloc_source_buffer): Don't declare.
3620 (struct tui_source_element): Add DISABLE_COPY_AND_ASSIGN, and move
3621 constructor.
3622 * tui/tui-winsource.c (tui_alloc_source_buffer): Remove.
3623 * tui/tui-source.c (tui_set_source_content): Update.
3624 * tui/tui-disasm.c (tui_set_disassem_content): Update.
3625
c9033fe8
TT
36262019-08-15 Tom Tromey <tom@tromey.com>
3627
3628 * tui/tui-winsource.h (tui_line_is_displayed): Don't declare.
3629 * tui/tui-winsource.c (tui_line_is_displayed): Move to
3630 tui-source.c.
3631 * tui/tui-source.h (struct tui_source_window) <line_is_displayed>:
3632 Declare.
3633 * tui/tui-source.c (tui_source_window::line_is_displayed): New
3634 method.
3635 (tui_source_window::maybe_update): Update.
3636
088f37dd
TT
36372019-08-15 Tom Tromey <tom@tromey.com>
3638
3639 * tui/tui-winsource.h (tui_addr_is_displayed): Don't declare.
3640 * tui/tui-winsource.c (tui_addr_is_displayed): Move to
3641 tui-disasm.c.
3642 * tui/tui-disasm.h (struct tui_disasm_window) <addr_is_displayed>:
3643 Declare.
3644 * tui/tui-disasm.c (tui_disasm_window::addr_is_displayed): New
3645 method.
3646 (tui_disasm_window::maybe_update): Update.
3647
a54700c6
TT
36482019-08-15 Tom Tromey <tom@tromey.com>
3649
3650 * tui/tui-winsource.h (struct tui_source_window_base)
3651 <maybe_update>: Declare.
3652 * tui/tui-stack.c (tui_show_frame_info): Call maybe_update
3653 method.
3654 * tui/tui-source.h (struct tui_source_window) <maybe_update>:
3655 Declare.
3656 * tui/tui-source.c (tui_source_window::maybe_update): New method.
3657 * tui/tui-disasm.h (struct tui_disasm_window) <maybe_update>:
3658 Declare.
3659 * tui/tui-disasm.c (tui_disasm_window::maybe_update): New method.
3660
e2a678a5
TT
36612019-08-15 Tom Tromey <tom@tromey.com>
3662
3663 * tui/tui-stack.c (tui_make_status_line): Use string constructor.
3664
f2dda477
TT
36652019-08-15 Tom Tromey <tom@tromey.com>
3666
3667 * tui/tui-wingeneral.c: Include tui-stack.h.
3668 * tui/tui-stack.h (MAX_LOCATOR_ELEMENT_LEN)
3669 (struct tui_locator_window): Move from tui-data.h.
3670 * tui/tui-stack.c (_locator, tui_locator_win_info_ptr)
3671 (tui_initialize_static_data): Move from tui-data.c.
3672 * tui/tui-data.h (MAX_LOCATOR_ELEMENT_LEN)
3673 (struct tui_locator_window): Move to tui-stack.c.
3674 * tui/tui-data.c (_locator, tui_locator_win_info_ptr)
3675 (tui_initialize_static_data): Move to tui-stack.c.
3676
ed4a1084
TT
36772019-08-15 Tom Tromey <tom@tromey.com>
3678
3679 * tui/tui-layout.c (show_source_disasm_command)
3680 (show_source_or_disasm_and_command): Use make_visible method, not
3681 tui_make_window.
3682 * tui/tui-command.h (struct tui_cmd_window) <make_visible>:
3683 Remove.
3684
65962b20
TT
36852019-08-15 Tom Tromey <tom@tromey.com>
3686
3687 * tui/tui-wingeneral.h (tui_make_window): Update.
3688 * tui/tui-wingeneral.c (tui_make_window): Remove "box_it"
3689 parameter.
3690 (tui_gen_win_info::make_visible): Update.
3691 * tui/tui-regs.c (tui_data_window::display_registers_from):
3692 Update.
3693 * tui/tui-layout.c (show_source_disasm_command)
3694 (show_source_or_disasm_and_command): Update.
3695 * tui/tui-data.h (struct tui_gen_win_info) <can_box>: New method.
3696 (enum tui_box): Remove.
3697 (struct tui_win_info) <can_box>: New method.
3698 * tui/tui-command.h (struct tui_cmd_window) <can_box>: New
3699 method.
3700
2208ee91
TV
37012019-08-15 Tom de Vries <tdevries@suse.de>
3702
3703 * linux-nat-trad.c: Include gdbarch.h.
3704
75faf5c4
AH
37052019-08-14 Alan Hayward <alan.hayward@arm.com>
3706
3707 * aarch64-tdep.c (aarch64_analyze_prologue): Allow any valid
3708 register sizes.
3709
b1c896b3
TT
37102019-08-14 Tom Tromey <tromey@adacore.com>
3711
3712 * darwin-nat.c: Include gdbarch.h.
3713 * darwin-nat-info.c: Include gdbarch.h.
3714
6405cd73
TT
37152019-08-13 Tom Tromey <tom@tromey.com>
3716
3717 * tui/tui-data.h (struct tui_gen_win_info) <last_visible_line>:
3718 Remove.
3719 * tui/tui-data.c (tui_initialize_static_data): Update.
3720
5216580d
TT
37212019-08-13 Tom Tromey <tom@tromey.com>
3722
3723 * tui/tui-winsource.h (struct tui_exec_info_window)
3724 <~tui_exec_info_window, maybe_allocate_content, get_content,
3725 m_content>: Remove.
3726 (struct tui_source_window_base) <set_exec_info_content,
3727 show_exec_info_content>: Don't declare.
3728 * tui/tui-winsource.c
3729 (tui_exec_info_window::maybe_allocate_content): Remove.
3730 (tui_source_window_base::update_exec_info): Rename from
3731 set_exec_info_content.
3732 (tui_source_window_base::show_exec_info_content)
3733 (tui_source_window_base::update_exec_info): Remove.
3734
93858ad3
TT
37352019-08-13 Tom Tromey <tom@tromey.com>
3736
3737 * tui/tui-winsource.h (tui_clear_exec_info_content): Don't
3738 declare.
3739 * tui/tui-winsource.c (tui_update_source_window_as_is)
3740 (tui_update_source_windows_with_addr, tui_erase_source_content):
3741 Update.
3742 (tui_clear_exec_info_content): Remove.
3743
e321e7ce
TT
37442019-08-13 Tom Tromey <tom@tromey.com>
3745
3746 * tui/tui-winsource.h (tui_erase_exec_info_content): Don't
3747 declare.
3748 * tui/tui-winsource.c (tui_source_window_base::refresh_all): Don't
3749 call tui_erase_exec_info_content.
3750 (tui_clear_exec_info_content): Rename from
3751 tui_erase_exec_info_content.
3752 (tui_clear_exec_info_content): Delete.
3753
8270ac62
TT
37542019-08-13 Tom Tromey <tom@tromey.com>
3755
3756 * tui/tui-winsource.h (struct tui_source_window_base)
3757 <show_exec_info_content>: Declare.
3758 (tui_show_exec_info_content): Don't declare.
3759 * tui/tui-winsource.c
3760 (tui_source_window_base::show_exec_info_content): Rename from
3761 tui_show_exec_info_content.
3762 (tui_source_window_base::update_exec_info): Update.
3763
7b56485d
TT
37642019-08-13 Tom Tromey <tom@tromey.com>
3765
3766 * tui/tui-data.h (enum tui_bp_flag, tui_bp_flags, struct tui_source_element)
3767 (TUI_BP_HIT_POS, TUI_BP_BREAK_POS, TUI_EXEC_POS)
3768 (TUI_EXECINFO_SIZE, tui_exec_info_content): Move ...
3769 * tui/tui-winsource.h (enum tui_bp_flag, tui_bp_flags, struct
3770 tui_source_element, TUI_BP_HIT_POS, TUI_BP_BREAK_POS)
3771 (TUI_EXEC_POS, TUI_EXECINFO_SIZE, tui_exec_info_content):
3772 ... here.
3773
7ba913dc
TT
37742019-08-13 Tom Tromey <tom@tromey.com>
3775
3776 * tui/tui-winsource.h (struct tui_source_window_base)
3777 <update_exec_info>: Declare.
3778 (tui_update_exec_info): Don't declare.
3779 * tui/tui-winsource.c (tui_update_source_window_as_is)
3780 (tui_source_window_base::refresh_all)
3781 (tui_update_all_breakpoint_info): Update.
3782 (tui_source_window_base::update_exec_info): Rename from
3783 tui_update_exec_info.
3784 * tui/tui-stack.c (tui_show_frame_info): Update.
3785
37a4a131
TT
37862019-08-13 Tom Tromey <tom@tromey.com>
3787
3788 * tui/tui-winsource.h (struct tui_source_window_base)
3789 <set_exec_info_content>: Declare.
3790 (tui_set_exec_info_content): Don't declare.
3791 * tui/tui-winsource.c
3792 (tui_source_window_base::set_exec_info_content): Rename from
3793 tui_set_exec_info_content.
3794 (tui_update_exec_info): Update.
3795
0bd27e07
TT
37962019-08-13 Tom Tromey <tom@tromey.com>
3797
3798 * tui/tui-winsource.h (struct tui_source_window_base)
3799 <show_source_content>: Declare.
3800 (tui_show_source_content): Don't declare.
3801 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
3802 (tui_source_window_base::show_source_content): Rename from
3803 tui_show_source_content.
3804 (tui_source_window_base::refresh_all): Update.
3805 * tui/tui-layout.c (show_source_disasm_command)
3806 (show_source_or_disasm_and_command): Update.
3807
b4ef5aeb
TT
38082019-08-13 Tom Tromey <tom@tromey.com>
3809
3810 * tui/tui-winsource.c (tui_erase_source_content)
3811 (tui_show_source_content, tui_source_window_base::refresh_all):
3812 Update.
3813 * tui/tui-wingeneral.h
3814 (tui_check_and_display_highlight_if_needed): Don't declare.
3815 * tui/tui-wingeneral.c
3816 (tui_win_info::check_and_display_highlight_if_needed): Rename from
3817 check_and_display_highlight_if_needed.
3818 * tui/tui-win.c (tui_rehighlight_all)
3819 (tui_win_info::make_visible_with_new_height): Update.
3820 * tui/tui-regs.c (tui_data_window::display_registers_from_line)
3821 (tui_data_window::erase_data_content)
3822 (tui_data_window::display_all_data): Update.
3823 * tui/tui-data.h (struct tui_win_info)
3824 <check_and_display_highlight_if_needed>: Declare.
3825
fede5273
TT
38262019-08-13 Tom Tromey <tom@tromey.com>
3827
3828 * tui/tui-win.c (tui_resize_all): Call
3829 tui_delete_invisible_windows.
3830 * tui/tui-layout.c (show_layout): Call
3831 tui_delete_invisible_windows.
3832 * tui/tui-data.h (tui_delete_invisible_windows): Declare.
3833 * tui/tui-data.c (tui_delete_invisible_windows): New function.
3834
22c3f490
TT
38352019-08-13 Tom Tromey <tom@tromey.com>
3836
3837 * tui/tui-disasm.c (tui_show_disassem): Add assertion. Don't call
3838 tui_add_win_to_layout.
3839
16cb7910
TT
38402019-08-13 Tom Tromey <tom@tromey.com>
3841
3842 * tui/tui-layout.h (tui_default_win_height): Don't declare.
3843 * tui/tui-layout.c (tui_default_win_height): Now static.
3844
cc0c3ffb
TT
38452019-08-13 Tom Tromey <tom@tromey.com>
3846
3847 * tui/tui-layout.c (show_layout): Unify all layout cases into a
3848 single switch.
3849 (show_source_disasm_command, show_source_or_disasm_and_command):
3850 Don't check current layout.
3851
3f3ffe54
TT
38522019-08-13 Tom Tromey <tom@tromey.com>
3853
3854 * tui/tui-wingeneral.c (make_all_visible): Remove.
3855 (tui_make_all_invisible): Simplify.
3856 * tui/tui-layout.c (tui_make_all_invisible): Move from
3857 tui-wingeneral.c; simplify.
3858 (show_layout): Hoist call to tui_make_all_invisible.
3859 (show_data): Don't call tui_make_all_invisible.
3860
69258091
TT
38612019-08-13 Tom Tromey <tom@tromey.com>
3862
3863 * tui/tui-wingeneral.h (tui_make_all_visible): Don't declare.
3864 * tui/tui-wingeneral.c (tui_make_all_visible): Remove.
3865
62cf57fe
TT
38662019-08-13 Tom Tromey <tom@tromey.com>
3867
3868 * tui/tui-layout.c (current_layout, tui_current_layout): Move from
3869 tui-data.c.
3870 (show_source_disasm_command, show_data)
3871 (show_source_or_disasm_and_command): Don't use
3872 tui_set_current_layout_to.
3873 * tui/tui-data.h (tui_set_current_layout_to): Don't declare.
3874 * tui/tui-data.c (current_layout, tui_current_layout): Move to
3875 tui-layout.c.
3876 (tui_set_current_layout_to): Remove.
3877
2afade5d
TT
38782019-08-13 Tom Tromey <tom@tromey.com>
3879
3880 * tui/tui-layout.c (tui_set_layout): Update.
3881 * tui/tui-data.h (struct tui_layout_def): Remove.
3882 (tui_layout_def): Don't declare.
3883 * tui/tui-data.c (layout_def): Remove.
3884 (tui_layout_def): Remove.
3885
a3504e96
TT
38862019-08-13 Tom Tromey <tom@tromey.com>
3887
3888 * tui/tui-winsource.h (struct tui_source_window_base)
3889 <clear_detail>: No longer "override".
3890 * tui/tui-regs.h (struct tui_data_window) <clear_detail>: Remove.
3891 * tui/tui-regs.c (tui_data_window::clear_detail): Remove.
3892 * tui/tui-data.h (struct tui_win_info) <clear_detail>: Remove.
3893 * tui/tui-command.h (struct tui_cmd_window) <clear_detail>:
3894 Remove.
3895 * tui/tui-command.c (tui_cmd_window::clear_detail): Remove.
3896
29c92911
TT
38972019-08-13 Tom Tromey <tromey@adacore.com>
3898
3899 * tracepoint.c: Don't include readline.h or history.h.
3900
86c6b807
TT
39012019-08-12 Tom Tromey <tom@tromey.com>
3902
3903 * configure: Rebuild.
3904 * configure.ac: Check for readline 7.
3905 * NEWS: Mention readline 7 requirement.
3906 * README: Update.
3907
5db2718c
TT
39082019-08-12 Tom Tromey <tom@tromey.com>
3909
3910 * mingw-hdep.c (gdb_select): Remove readline hack.
3911
dac36daf
PFC
39122019-08-09 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
3913
3914 * blockframe.c (find_pc_partial_function): Set *block to nullptr
3915 when the function fails.
3916
1022c627
AA
39172019-08-09 Andreas Arnez <arnez@linux.ibm.com>
3918
3919 * s390-tdep.c (s390_type_align): New function.
3920 (s390_gdbarch_init): Set it as type_align gdbarch method.
3921
eba4caf2
TV
39222019-08-09 Tom de Vries <tdevries@suse.de>
3923
3924 PR gdb/24591
3925 * dwarf2read.c (dwarf2_fetch_die_loc_sect_off): Adjust pc_high and
3926 pc_low with relocation offset.
3927
123cd851
TT
39282019-08-07 Tom Tromey <tromey@adacore.com>
3929
3930 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
3931 (print_frame_args): Update.
3932 * python/py-framefilter.c (py_print_single_arg, enumerate_args):
3933 Update.
3934 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
3935 * frame.h (struct frame_arg): Add initializers.
3936 <error>: Now a unique_xmalloc_ptr.
3937
3d31bc39
AH
39382019-08-07 Alan Hayward <alan.hayward@arm.com>
3939
3940 * NEWS: Expand the Pointer Authentication entry.
3941 * aarch64-tdep.c (aarch64_frame_unmask_address): Rename from this.
3942 (aarch64_frame_unmask_lr): ... to this.
3943 (aarch64_prologue_prev_register, aarch64_dwarf2_prev_register):
3944 Call aarch64_frame_unmask_lr.
3945 * frame.c (struct frame_info): Add "masked" variable.
3946 (frame_set_previous_pc_masked) (frame_get_pc_masked): New functions.
3947 (fprint_frame): Check for masked pc.
3948 * frame.h (frame_set_previous_pc_masked) (frame_get_pc_masked): New
3949 declarations.
3950 * python/py-framefilter.c (py_print_frame): Check for masked pc.
3951 * stack.c (print_frame): Check for masked pc.
3952
0cf9feb9
TT
39532019-08-06 Tom Tromey <tom@tromey.com>
3954
3955 * stabsread.c (patch_block_stabs, read_one_struct_field)
3956 (read_enum_type): Use obstack_strndup.
3957 * rust-exp.y (rust_parser::copy_name): Use obstack_strndup.
3958 * gdb_obstack.h (obstack_strndup): Use obstack_strndup.
3959 * dwarf2read.c (guess_full_die_structure_name)
3960 (anonymous_struct_prefix): Use obstack_strndup.
3961 * dbxread.c (cp_set_block_scope): Use obstack_strndup.
3962 * c-exp.y (yylex): Use obstack_strndup.
3963 * ada-exp.y (write_object_renaming, write_ambiguous_var)
3964 (write_var_or_type): Use obstack_strndup.
3965
efba19b0
TT
39662019-08-06 Tom Tromey <tom@tromey.com>
3967
3968 * symfile.c (reread_symbols): Use obstack_strdup.
3969 * stabsread.c (read_type): Use obstack_strdup.
3970 * gdb_obstack.h (obstack_strdup): New overload.
3971 * dwarf2read.c (dwarf2_compute_name, create_dwo_unit_in_dwp_v1)
3972 (create_dwo_unit_in_dwp_v2, build_error_marker_type)
3973 (dwarf2_canonicalize_name): Use obstack_strdup.
3974 * dbxread.c (read_dbx_symtab): Use obstack_strdup.
3975 * cp-support.c (inspect_type, replace_typedefs_qualified_name):
3976 Use obstack_strdup.
3977
f25102f7
TT
39782019-08-06 Tom Tromey <tom@tromey.com>
3979
3980 * gdb_obstack.h (obstack_strdup): Define.
3981 * gdb_obstack.c (obstack_strdup): Don't define.
3982
021887d8
TT
39832019-08-06 Tom Tromey <tom@tromey.com>
3984
3985 * xcoffread.c (SYMNAME_ALLOC, process_xcoff_symbol): Use
3986 obstack_strdup.
3987 * typeprint.c (typedef_hash_table::find_global_typedef): Use
3988 obstack_strdup.
3989 * symfile.c (allocate_compunit_symtab): Use obstack_strdup.
3990 * stabsread.c (common_block_start): Use obstack_strdup.
3991 * objfiles.c (set_objfile_main_name, objfile): Use
3992 obstack_strdup.
3993 * namespace.c (add_using_directive): Use obstack_strdup.
3994 * mdebugread.c (parse_symbol, parse_type): Use obstack_strdup.
3995 * jit.c (finalize_symtab): Use obstack_strdup.
3996 * dwarf2read.c (fixup_go_packaging, dwarf2_physname)
3997 (guess_partial_die_structure_name, partial_die_info::fixup)
3998 (dwarf2_name): Use obstack_strdup.
3999 * coffread.c (coff_read_struct_type, coff_read_enum_type): Use
4000 obstack_strdup.
4001 * c-exp.y (scan_macro_expansion): Use obstack_strdup.
4002 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
4003 obstack_strdup.
4004 * ada-lang.c (ada_decode_symbol): Use obstack_strdup.
4005
d2834edc
PW
40062019-08-07 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4007
4008 * unittests/help-doc-selftests.c: New file.
4009 * Makefile.in: Add the new file.
4010
590042fc
PW
40112019-08-07 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4012
4013 * cli/cli-decode.h (print_doc_line): Add for_value_prefix argument.
4014 * cli/cli-decode.c (print_doc_line): Likewise. It now prints
4015 the full first line, except when FOR_VALUE_PREFIX. In this case,
4016 the trailing '.' is not output, and the first character is uppercased.
4017 (print_help_for_command): Update call to print_doc_line.
4018 (print_doc_of_command): Likewise.
4019 * cli/cli-setshow.c (deprecated_show_value_hack): Likewise.
4020 * cli/cli-option.c (append_indented_doc): Do not append newline.
4021 (build_help_option): Append newline after first appended_indented_doc
4022 only if a second call is done.
4023 (build_help): Append 2 new lines before each option, except the first
4024 one.
4025 * compile/compile.c (_initialize_compile): Add new lines after
4026 %OPTIONS%, when not at the end of the help.
4027 Change help doc or code
4028 producing the help doc to respect the invariants.
4029 * maint-test-options.c (_initialize_maint_test_options): Likewise.
4030 Also removed the new line after 'Options:', as all other commands
4031 do not put an empty line between 'Options:' and the first option.
4032 * printcmd.c (_initialize_printcmd): Likewise.
4033 * stack.c (_initialize_stack): Likewise.
4034 * interps.c (interpreter_exec_cmd): Fix "Usage:" line that was
4035 incorrectly telling COMMAND is optional.
4036 * ada-lang.c (_initialize_ada_language): Change help doc or code
4037 producing the help doc to respect the invariants.
4038 * ada-tasks.c (_initialize_ada_tasks): Likewise.
4039 * breakpoint.c (_initialize_breakpoint): Likewise.
4040 * cli/cli-cmds.c (_initialize_cli_cmds): Likewise.
4041 * cli/cli-logging.c (_initialize_cli_logging): Likewise.
4042 * cli/cli-setshow.c (_initialize_cli_setshow): Likewise.
4043 * cli/cli-style.c (cli_style_option::add_setshow_commands,
4044 _initialize_cli_style): Likewise.
4045 * corelow.c (core_target_info): Likewise.
4046 * dwarf-index-cache.c (_initialize_index_cache): Likewise.
4047 * dwarf2read.c (_initialize_dwarf2_read): Likewise.
4048 * filesystem.c (_initialize_filesystem): Likewise.
4049 * frame.c (_initialize_frame): Likewise.
4050 * gnu-nat.c (add_task_commands): Likewise.
4051 * infcall.c (_initialize_infcall): Likewise.
4052 * infcmd.c (_initialize_infcmd): Likewise.
4053 * interps.c (_initialize_interpreter): Likewise.
4054 * language.c (_initialize_language): Likewise.
4055 * linux-fork.c (_initialize_linux_fork): Likewise.
4056 * maint-test-settings.c (_initialize_maint_test_settings): Likewise.
4057 * maint.c (_initialize_maint_cmds): Likewise.
4058 * memattr.c (_initialize_mem): Likewise.
4059 * printcmd.c (_initialize_printcmd): Likewise.
4060 * python/lib/gdb/function/strfns.py (_MemEq, _StrLen, _StrEq,
4061 _RegEx): Likewise.
4062 * ravenscar-thread.c (_initialize_ravenscar): Likewise.
4063 * record-btrace.c (_initialize_record_btrace): Likewise.
4064 * record-full.c (_initialize_record_full): Likewise.
4065 * record.c (_initialize_record): Likewise.
4066 * regcache-dump.c (_initialize_regcache_dump): Likewise.
4067 * regcache.c (_initialize_regcache): Likewise.
4068 * remote.c (add_packet_config_cmd, init_remote_threadtests,
4069 _initialize_remote): Likewise.
4070 * ser-tcp.c (_initialize_ser_tcp): Likewise.
4071 * serial.c (_initialize_serial): Likewise.
4072 * skip.c (_initialize_step_skip): Likewise.
4073 * source.c (_initialize_source): Likewise.
4074 * stack.c (_initialize_stack): Likewise.
4075 * symfile.c (_initialize_symfile): Likewise.
4076 * symtab.c (_initialize_symtab): Likewise.
4077 * target-descriptions.c (_initialize_target_descriptions): Likewise.
4078 * top.c (init_main): Likewise.
4079 * tracefile-tfile.c (tfile_target_info): Likewise.
4080 * tracepoint.c (_initialize_tracepoint): Likewise.
4081 * tui/tui-win.c (_initialize_tui_win): Likewise.
4082 * utils.c (add_internal_problem_command): Likewise.
4083 * valprint.c (value_print_option_defs): Likewise.
4084
404f2902
FCE
40852019-08-06 Frank Ch. Eigler <fche@redhat.com>
4086
4087 PR build/24886
4088 * configure.ac: Drop enable-libmcheck support.
4089 * configure, config.in: Rebuild.
4090 * libmcheck.m4: Remove.
4091 * acinclude.m4: Don't include it.
4092 * Makefile.in: Don't distribute it.
4093 * top.c (print_gdb_configuration): Don't mention it.
4094
046bebe1
TT
40952019-08-06 Tom Tromey <tom@tromey.com>
4096
4097 * utils.c (set_output_style): Sometimes pass stream to
4098 emit_style_escape.
4099 * ui-out.h (class ui_out) <can_emit_style_escape>: Declare.
4100 * record-btrace.c (btrace_insn_history): Update.
4101 * mi/mi-out.h (class mi_ui_out) <can_emit_style_escape>: New
4102 method.
4103 * disasm.h (gdb_pretty_print_disassembler): Add uiout parameter.
4104 Update initializers.
4105 <m_uiout>: New field.
4106 <m_di>: Move lower.
4107 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
4108 Remove "uiout" parameter.
4109 (dump_insns): Update.
4110 * cli-out.h (class cli_ui_out) <can_emit_style_escape>: Declare.
4111 * cli-out.c (cli_ui_out::can_emit_style_escape): New method.
4112
ddbcedf5
CB
41132019-08-06 Christian Biesinger <cbiesinger@google.com>
4114
4115 * symtab.c (symbol_cache_lookup): Change int to enum block_enum.
4116 (error_in_psymtab_expansion): Likewise.
4117 (lookup_symbol_via_quick_fns): Likewise.
4118 (basic_lookup_transparent_type_quick): Likewise.
4119 (basic_lookup_transparent_type_1): Likewise.
4120
b08b16c8
TT
41212019-08-06 Tom Tromey <tromey@adacore.com>
4122
4123 * source.c (last_source_error): Now bool.
4124 (print_source_lines_base): Make "noprint" bool. Only open
4125 source file when last_source_visited changes.
4126
cb44333d
TT
41272019-08-06 Tom Tromey <tromey@adacore.com>
4128
4129 * annotate.c (annotate_source_line): Use g_source_cache.
4130 * source-cache.c (source_cache::get_plain_source_lines): Change
4131 parameters. Populate m_offset_cache.
4132 (source_cache::ensure): New method.
4133 (source_cache::get_line_charpos): New method.
4134 (extract_lines): Move lower. Change parameters.
4135 (source_cache::get_source_lines): Move lower.
4136 * source-cache.h (class source_cache): Update comment.
4137 <get_line_charpos>: New method.
4138 <get_source_lines>: Update comment.
4139 <clear>: Clear m_offset_cache.
4140 <get_plain_source_lines>: Change parameters.
4141 <ensure>: New method
4142 <m_offset_cache>: New member.
4143 * source.c (forget_cached_source_info_for_objfile): Update.
4144 (info_source_command): Use g_source_cache.
4145 (find_source_lines, open_source_file_with_line_charpos): Remove.
4146 (print_source_lines_base, search_command_helper): Use g_source_cache.
4147 * source.h (open_source_file_with_line_charpos): Don't declare.
4148 * symtab.h (struct symtab) <nlines, line_charpos>: Remove.
4149 * tui/tui-source.c (tui_source_window::do_scroll_vertical):
4150 Use g_source_cache.
4151
872dceaa
TT
41522019-08-06 Tom Tromey <tromey@adacore.com>
4153
4154 * source-cache.c (source_cache::get_plain_source_lines):
4155 Remove "first_line" and "last_line" parameters.
4156 (source_cache::get_source_lines): Cache plain text.
4157 * source-cache.h (class source_cache)
4158 <get_plain_source_lines>: Update.
4159
269249d9
TT
41602019-08-06 Tom Tromey <tromey@adacore.com>
4161
4162 * source-cache.c (extract_lines): No longer a method.
4163 Changed type of parameter. Include final newline.
4164 (selftests::extract_lines_test): New function.
4165 (_initialize_source_cache): Likewise.
4166 * source-cache.h (class source_cache)
4167 <extract_lines>: Don't declare.
4168
c0e8dcd8
TT
41692019-08-06 Tom Tromey <tromey@adacore.com>
4170
4171 * breakpoint.c (init_breakpoint_sal): Update.
4172 (breakpoint): Update.
4173 * breakpoint.h (struct breakpoint) <filter>: Now a
4174 unique_xmalloc_ptr.
4175
0b27c27d
CB
41762019-08-05 Christian Biesinger <cbiesinger@google.com>
4177
4178 * NEWS: Mention dictionary access on blocks.
4179 * python/py-block.c (blpy_getitem): New function.
4180 (block_object_as_mapping): New struct.
4181 (block_object_type): Use new struct for tp_as_mapping field.
4182
4ee94178
CB
41832019-08-05 Christian Biesinger <cbiesinger@google.com>
4184
4185 * objfiles.h (objfile): Add a comment describing partial symbols.
4186
8abfcabc
TT
41872019-08-05 Tom Tromey <tromey@adacore.com>
4188
4189 * compile/compile.c (_initialize_compile): Use _(), not N_().
4190 * thread.c (_initialize_thread): Use _(), not N_().
4191 * stack.c (_initialize_stack): Use _(), not N_().
4192 * printcmd.c (_initialize_printcmd): Use _(), not N_().
4193
2b79f376
SM
41942019-08-04 Simon Marchi <simon.marchi@polymtl.ca>
4195
4196 * dwarf2read.c (struct dw2_symtab_iterator):
4197 <want_specific_block>: Remove.
4198 <block_index>: Change type to gdb::optional.
4199 (dw2_symtab_iter_init): Remove WANT_SPECIFIC_BLOCK parameter,
4200 change type of BLOCK_INDEX parameter to gdb::optional.
4201 (dw2_symtab_iter_next): Re-write in function of gdb::optional.
4202 (dw2_lookup_symbol): Don't pass argument for
4203 WANT_SPECIFIC_BLOCK.
4204 (dw2_expand_symtabs_for_function): Don't pass argument for
4205 WANT_SPECIFIC_BLOCK, pass empty optional for BLOCK_INDEX.
4206 (class dw2_debug_names_iterator)
4207 <dw2_debug_names_iterator>: Remove WANT_SPECIFIC_BLOCK
4208 parameter, change BLOCK_INDEX type to gdb::optional.
4209 <m_want_specific_block>: Remove.
4210 <m_block_index>: Change type to gdb::optional.
4211 (dw2_debug_names_iterator::next): Change type of IS_STATIC to
4212 gdb::optional. Re-write in function of gdb::optional.
4213 (dw2_debug_names_lookup_symbol): Don't pass argument for
4214 WANT_SPECIFIC_BLOCK.
4215 (dw2_debug_names_expand_symtabs_for_function): Don't pass
4216 argument for WANT_SPECIFIC_BLOCK, pass empty optional for
4217 BLOCK_INDEX.
4218
ae60f04e
PW
42192019-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4220
4221 * NEWS: Mention changes to "info sources" command.
4222
28cd9371
PW
42232019-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4224
4225 * symtab.c (filename_partial_match_opts): New struct type.
4226 (struct output_source_filename_data): New members
4227 regexp, c_regexp, partial_match.
4228 (output_source_filename): Use new members to decide to print file.
4229 (info_sources_option_defs): New variable.
4230 (make_info_sources_options_def_group, print_info_sources_header,
4231 info_sources_command_completer):
4232 New functions.
4233 (info_sources_command): Read new optional arguments.
4234 (_initialize_symtab): Update info sources help.
4235
ca683e3a
AO
42362019-08-02 Alexandre Oliva <oliva@adacore.com>
4237
4238 * ada-lang.c (exception_support_info_v0): Renamed from...
4239 (default_exception_support_info): ... this. Create new
4240 definition for v1.
4241 (ada_has_this_exception_support): Look up catch_handlers_sym.
4242 (ada_exception_support_info_sniffer): Try v0 after default.
4243
f1264162
TT
42442019-08-01 Tom Tromey <tromey@adacore.com>
4245
4246 * ia64-libunwind-tdep.h (struct libunwind_descr): Include
4247 gdbarch.h.
4248
0a7b2485
CB
42492019-08-01 Christian Biesinger <cbiesinger@google.com>
4250
4251 * s12z-tdep.c: Fix include path for s12z-opc.h.
4252
c6bdbeb7
AH
42532019-08-01 Alan Hayward <alan.hayward@arm.com>
4254
4255 * NEWS: Require GNU make 3.82.
4256
a2bd7b82
TT
42572019-07-16 Tom Tromey <tom@tromey.com>
4258
4259 * tui/tui-wingeneral.h (tui_copy_win, tui_box_win): Don't
4260 declare.
4261
aa3b6533
TT
42622019-07-30 Tom Tromey <tromey@adacore.com>
4263
4264 * block.c (contained_in): Remove BLOCK_FUNCTION check.
4265
a1530dc7
KB
42662019-07-30 Kevin Buettner <kevinb@redhat.com>
4267
4268 * printcmd.c (print_address_symbolic): Print negative offsets.
4269 (build_address_symbolic): Force signed arithmetic when computing
4270 offset.
4271
2906593f
CB
42722019-07-30 Christian Biesinger <cbiesinger@google.com>
4273
4274 PR/24474: Add a function to lookup static variables.
4275 * NEWS: Mention this new function.
4276 * python/py-symbol.c (gdbpy_lookup_static_symbol): New function.
4277 * python/python-internal.h (gdbpy_lookup_static_symbol): New function.
4278 * python/python.c (python_GdbMethods): Add new function.
4279
c620ed88
CB
42802019-07-29 Christian Biesinger <cbiesinger@google.com>
4281
4282 * NEWS: Mention new functions Objfile.lookup_{global,static}_symbol.
4283 * python/py-objfile.c (objfpy_lookup_global_symbol): New function.
4284 (objfpy_lookup_static_symbol): New function.
4285 (objfile_object_methods): Add new functions.
4286
bc4268a5
PW
42872019-07-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4288
4289 * NEWS: Mention 'set|show print frame-info'. Mention new
4290 'presence' value for 'frame-arguments'. Mention new '-frame-info'
4291 backtrace argument. Mention that python frame filtering code
4292 is now consistent with what 'backtrace' command prints.
4293
4b5e8d19
PW
42942019-07-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4295
4296 * frame.h (enum print_what): New value 'SHORT_LOCATION', update
4297 comments.
4298 (print_frame_info_auto, print_frame_info_source_line,
4299 print_frame_info_location, print_frame_info_source_and_location,
4300 print_frame_info_location_and_address, print_frame_info_short_location):
4301 New declarations.
4302 (struct frame_print_options): New member print_frame_info.
4303 * extension.h (enum ext_lang_frame_args): New value CLI_PRESENCE.
4304 * stack.h (get_user_print_what_frame_info): New declaration.
4305 (frame_show_address): New declaration.
4306 * stack.c (print_frame_arguments_choices): New value 'presence'.
4307 (print_frame_info_auto, print_frame_info_source_line,
4308 print_frame_info_location, print_frame_info_source_and_location,
4309 print_frame_info_location_and_address, print_frame_info_short_location,
4310 print_frame_info_choices, print_frame_info_print_what): New definitions.
4311 (print_frame_args): Only print dots for args if print frame-arguments
4312 is 'presence'.
4313 (frame_print_option_defs): New element for "frame-info".
4314 (get_user_print_what_frame_info): New function.
4315 (frame_show_address): Make non static. Move comment to stack.h.
4316 (print_frame_info_to_print_what): New function.
4317 (print_frame_info): Update comment. Use fp_opts.print_frame_info
4318 to decide what to print.
4319 (backtrace_command_1): Handle the new print_frame_arguments_presence
4320 value.
4321 (_initialize_stack): Call add_setshow_enum_cmd for frame-info.
4322 * python/py-framefilter.c (py_print_args): Handle CLI_PRESENCE.
4323 (py_print_frame): In non-mi mode, use LOCATION as default for
4324 print_what, similarly to frame information printed directly by
4325 backtrace command. Handle frame-info user option in non MI mode.
4326
6bdfee81
KB
43272019-07-27 Kevin Buettner <kevinb@redhat.com>
4328
4329 * linux-thread-db.c (thread_db_target::thread_handle_to_thread_info):
4330 Add case for debugging 32-bit target on 64-bit host. Revise
4331 comment.
4332
98a617f8
KB
43332019-07-27 Kevin Buettner <kevinb@redhat.com>
4334
4335 * infrun.c (fill_in_stop_func): Use find_pc_partial_function
4336 instead of find_function_entry_range_from_pc.
4337
567238c9
KB
43382019-07-27 Kevin Buettner <kevinb@redhat.com>
4339
4340 * stack.c (find_frame_funname): Remove code which preferred
4341 minsym over symtab sym in "certain pathological cases".
4342
2dc80cf8
KB
4343 * valprint.h (build_address_symbolic): Add "prefer_sym_over_minsym"
4344 parameter. Change type of "do_demangle" to bool.
4345 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
4346 Pass suitable "prefer_sym_over_minsym" flag to
4347 build_address_symbolic(). Don't output "+" for negative offsets.
4348 * printcmd.c (print_address_symbolic): Update invocation of
4349 build_address_symbolic to include a "prefer_sym_over_minsym"
4350 flag.
4351 (build_address_symbolic): Add "prefer_sym_over_minsym" parameter.
4352 Restrict cases in which use of minimal symbol is preferred to that
4353 of a found symbol. Update comments.
4354
1aff7173
KB
4355 * dwarf2-frame.c (dwarf2_frame_cache): Don't decode FDE instructions
4356 for entry pc when entry pc is out of range for that FDE.
4357
89b085ac
BC
43582019-07-26 Brian Callahan <bcallah@openbsd.org>
4359
4360 PR gdb/24839:
4361 * gdb/obsd-nat.c (obsd_nat_target::pid_to_str): Fix typo in return
4362 type.
4363
f32feb4a
CB
43642019-07-25 Christian Biesinger <cbiesinger@google.com>
4365
4366 * python/py-objfile.c (add_separate_debug_file): Fix comment about
4367 this function's Python signature.
4368
4369
43702019-07-24 Christian Biesinger <cbiesinger@google.com>
442853af
CB
4371
4372 * compile/compile-object-load.c (compile_object_load): Pass GLOBAL_SCOPE.
4373 * solib-spu.c (spu_lookup_lib_symbol): Pass GLOBAL_SCOPE.
4374 * solib-svr4.c (elf_lookup_lib_symbol): Pass GLOBAL_SCOPE.
4375 * symtab.c (lookup_global_symbol_from_objfile): Add a scope parameter.
4376 * symtab.h (lookup_global_symbol_from_objfile): Likewise.
4377
4378
c54e4253
YS
43792019-07-24 Yoshinori Sato <ysato@users.sourceforge.jp>
4380
4381 * h8300-tdep.c (h8300_register_name_common): New.
4382 h8300_register_name): Use h8300_register_name_common.
4383 (h8300s_register_name): Likewise.
4384 (h8300sx_register_name): Likewise.
4385 (h8300h_register_nam): New.
4386 (h8300_gdbarch_init): Use h8300h_register_name in h8300h machine.
4387
4388
40eadf04
SP
43892019-07-23 Srinath Parvathaneni <srinath.parvathaneni@arm.com>
4390
4391 * arm-tdep.c (arm_skip_cmse_entry): New function.
4392 (arm_is_sgstubs_section): New function.
4393 (arm_skip_stub): Add call to arm_skip_cmse_entry function.
4394
bfa2a36d
TT
43952019-07-22 Tom Tromey <tom@tromey.com>
4396
4397 * tui/tui-win.c (tui_win_info::make_invisible_and_set_new_height):
4398 Don't self-assign.
4399
a8e9d247
AB
44002019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
4401
4402 * c-typeprint.c (c_print_typedef): Pass -1 instead of 0 to
4403 type_print.
4404
eb86c5e2
AB
44052019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
4406
4407 * symtab.c (search_symbols): Adjust msymbol matching type arrays
4408 so that GDB doesn't match any msymbols when searching in the
4409 TYPES_DOMAIN.
4410 (print_symbol_info): Print using typedef_print or type_print based
4411 on the type of the symbol. Add updated FIXME comment moved from...
4412 (_initialize_symtab): ... move and update FIXME comment to above.
4413
a8eab7c6
AB
44142019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
4415
4416 * NEWS: Mention adding -q option to "info types".
4417 * symtab.c (struct info_types_options): New struct.
4418 (info_types_options_defs): New variable.
4419 (make_info_types_options_def_group): New function.
4420 (info_types_command): Use gdb::option framework to parse options.
4421 (info_types_command_completer): New function.
4422 (_initialize_symtab): Extend the help text on "info types" and
4423 register command completer.
4424
b4603c34
CB
44252019-07-21 Christian Biesinger <cbiesinger@google.com>
4426
4427 * symtab.c (lookup_symbol_in_objfile_symtabs): Change int to block_enum.
4428 (lookup_symbol_in_objfile): Change int to block_enum and add a
4429 gdb_assert to make sure block_index is GLOBAL_BLOCK or STATIC_BLOCK.
4430
c8cdc1e0
CB
44312019-07-20 Christian Biesinger <cbiesinger@google.com>
4432
4433 * MAINTAINERS (Write After Approval): Add self.
4434
01e175fe
AB
44352019-07-19 Andrew Burgess <andrew.burgess@embecosm.com>
4436
4437 * riscv-tdep.c (riscv_push_dummy_code): Write a 4-byte nop
4438 instruction to the dummy code region.
4439
56f79b63
TT
44402019-07-19 Tom Tromey <tromey@adacore.com>
4441
4442 * contrib/ari/gdb_ari.sh: Mention C++11, not ISO C 90.
4443 (ARGSUSED, PARAMS, __func__): Remove rules.
4444
4c5aa8e0
AH
44452019-07-19 Alan Hayward <alan.hayward@arm.com>
4446
4447 * arm-tdep.c (_initialize_arm_tdep): Remove xml tests.
4448 * features/arm/arm-with-iwmmxt.c: Remove.
4449 * features/arm/arm-with-iwmmxt.xml: Remove.
4450 * features/arm/arm-with-m-fpa-layout.c: Remove.
4451 * features/arm/arm-with-m-fpa-layout.xml: Remove.
4452 * features/arm/arm-with-m-vfp-d16.c: Remove.
4453 * features/arm/arm-with-m-vfp-d16.xml: Remove.
4454 * features/arm/arm-with-m.c: Remove.
4455 * features/arm/arm-with-m.xml: Remove.
4456 * features/arm/arm-with-neon.c: Remove.
4457 * features/arm/arm-with-neon.xml: Remove.
4458 * features/arm/arm-with-vfpv2.c: Remove.
4459 * features/arm/arm-with-vfpv2.xml: Remove.
4460 * features/arm/arm-with-vfpv3.c: Remove.
4461 * features/arm/arm-with-vfpv3.xml: Remove.
4462
f42b2617
AH
44632019-07-19 Alan Hayward <alan.hayward@arm.com>
4464
4465 * arm-tdep.c (_initialize_arm_tdep): Add xml regression tests.
4466
f29ec966
AH
44672019-07-19 Alan Hayward <alan.hayward@arm.com>
4468
4469 * arch/aarch32.c (aarch32_create_target_description): Create
4470 target descriptions using features.
4471 * arch/arm.c (arm_create_target_description)
4472 (arm_create_mprofile_target_description): Likewise.
4473 * arm-tdep.c (_initialize_arm_tdep): Remove tdesc init calls.
4474
d105cce5
AH
44752019-07-19 Alan Hayward <alan.hayward@arm.com>
4476
4477 * Makefile.in: Add new files.
4478 * aarch32-tdep.c: New file.
4479 * aarch32-tdep.h: New file.
4480 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
4481 Call aarch32_read_description.
4482 * arch/aarch32.c: New file.
4483 * arch/aarch32.h: New file.
4484 * arch/arm.c (arm_create_target_description)
4485 (arm_create_mprofile_target_description): New function.
4486 * arch/arm.h (arm_fp_type, arm_m_profile_type): New enum.
4487 (arm_create_target_description)
4488 (arm_create_mprofile_target_description): New declaration.
4489 * arm-fbsd-tdep.c (arm_fbsd_read_description_auxv): Call
4490 read_description functions.
4491 * arm-linux-nat.c (arm_linux_nat_target::read_description):
4492 Likewise.
4493 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
4494 * arm-tdep.c (tdesc_arm_list): New variable.
4495 (arm_register_g_packet_guesses): Call create description functions.
4496 (arm_read_description) (arm_read_mprofile_description): New
4497 function.
4498 * arm-tdep.h (arm_read_description)
4499 (arm_read_mprofile_description): Add declaration.
4500 * configure.tgt: Add new files.
4501
afe09f0b
GL
45022019-07-18 Guillaume LABARTHE <guillaume.labarthe@gmail.com>
4503
4504 * top.c (new_ui_command): Open specified terminal just once.
4505
cd215b2e
TT
45062019-07-18 Tom Tromey <tromey@adacore.com>
4507
4508 * symtab.c (main_name): Constify return type.
4509 * symfile.c (set_initial_language): Update.
4510 * symtab.h (main_name): Constify return type.
4511
d8f68fcb
TT
45122019-07-17 Tom Tromey <tom@tromey.com>
4513
4514 * tui/tui-winsource.c (tui_update_source_window)
4515 (tui_update_source_window_as_is)
4516 (tui_update_source_windows_with_line): Remove return.
4517 * tui/tui-disasm.c (tui_show_disassem)
4518 (tui_show_disassem_and_update_source): Remove return.
4519 * tui/tui.c (tui_reset): Remove return.
4520 * tui/tui-wingeneral.c
4521 (tui_check_and_display_highlight_if_needed): Remove return.
4522
ca5af91e
TT
45232019-07-17 Tom Tromey <tom@tromey.com>
4524
4525 * tui/tui-win.c (parse_scrolling_args): Throw separate errors.
4526
5104fe36
TT
45272019-07-17 Tom Tromey <tom@tromey.com>
4528
4529 * tui/tui-winsource.h (struct tui_exec_info_window)
4530 (struct tui_source_window_base): Move from tui-data.h.
4531 * tui/tui-winsource.c: Move many method definitions from
4532 elsewhere. Remove "structuring" comments.
4533 * tui/tui-wingeneral.c (tui_source_window_base::make_visible)
4534 (tui_source_window_base::refresh_window): Move to
4535 tui-winsource.c.
4536 * tui/tui-win.c (tui_source_window_base::refresh_all)
4537 (tui_source_window_base::update_tab_width)
4538 (tui_source_window_base::set_new_height)
4539 (tui_source_window_base::do_make_visible_with_new_height): Move to
4540 tui-winsource.c.
4541 * tui/tui-source.h: Update.
4542 * tui/tui-source.c (tui_source_window_base::reset): Move to
4543 tui-winsource.c.
4544 * tui/tui-disasm.h: Update.
4545 * tui/tui-data.h (struct tui_exec_info_window): Move to
4546 tui-winsource.h.
4547 (struct tui_source_window_base): Likewise.
4548 * tui/tui-data.c (tui_source_window_base::clear_detail)
4549 (tui_source_window_base, ~tui_source_window_base): Move to
4550 tui-winsource.c.
4551
daa15dde
TT
45522019-07-17 Tom Tromey <tom@tromey.com>
4553
4554 * tui/tui-win.c (tui_resize_all)
4555 (tui_source_window_base::update_tab_width)
4556 (tui_adjust_win_heights): Update.
4557 (tui_win_info::make_invisible_and_set_new_height): Rename from
4558 make_invisible_and_set_new_height.
4559 * tui/tui-data.h (struct tui_win_info)
4560 <make_invisible_and_set_new_height>: New method.
4561
bfad4537
TT
45622019-07-17 Tom Tromey <tom@tromey.com>
4563
4564 * tui/tui.c: Update.
4565 * tui/tui-source.h (struct tui_source_window): Move from
4566 tui-data.h.
4567 * tui/tui-layout.c: Update.
4568 * tui/tui-disasm.c: Update.
4569 * tui/tui-data.h (struct tui_source_window): Move to
4570 tui-source.h.
4571
88f7e873
TT
45722019-07-17 Tom Tromey <tom@tromey.com>
4573
4574 * tui/tui-disasm.h (struct tui_disasm_window): Move from
4575 tui-data.h.
4576 * tui/tui-data.h (struct tui_disasm_window): Move to
4577 tui-disasm.h.
4578
96bd6233
TT
45792019-07-17 Tom Tromey <tom@tromey.com>
4580
4581 * tui/tui-regs.h (struct tui_data_item_window): Move from
4582 tui-data.h.
4583 * tui/tui-regs.c (tui_data_item_window): Move from tui-data.c.
4584 * tui/tui-data.h (struct tui_data_item_window): Move to
4585 tui-regs.h.
4586 * tui/tui-data.c (~tui_data_item_window): Move to tui-regs.c.
4587
ce38393b
TT
45882019-07-17 Tom Tromey <tom@tromey.com>
4589
4590 * tui/tui.c: Update.
4591 * tui/tui-win.c (tui_cmd_window::do_make_visible_with_new_height)
4592 (tui_cmd_window::max_height): Move to tui-command.c.
4593 * tui/tui-layout.c: Update.
4594 * tui/tui-data.h (struct tui_cmd_window): Move to tui-command.h.
4595 * tui/tui-data.c (tui_cmd_window::clear_detail): Move to
4596 tui-command.c.
4597 * tui/tui-command.h (struct tui_cmd_window): Move from
4598 tui-data.h.
4599 * tui/tui-command.c: Remove "structuring" comments.
4600 (tui_cmd_window::clear_detail)
4601 (tui_cmd_window::do_make_visible_with_new_height)
4602 (tui_cmd_window::max_height): Move from elsewhere.
4603
2d8b51cb
TT
46042019-07-17 Tom Tromey <tom@tromey.com>
4605
4606 * tui/tui-io.c (tui_dispatch_ctrl_char): Move from tui-command.c.
4607 Now static.
4608 * tui/tui-command.h (tui_dispatch_ctrl_char): Don't declare.
4609 * tui/tui-command.c (tui_dispatch_ctrl_char): Move to tui-io.c.
4610
18ab23af
TT
46112019-07-17 Tom Tromey <tom@tromey.com>
4612
4613 * tui/tui.c: Update.
4614 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Move to
4615 tui-regs.c.
4616 * tui/tui-windata.h: Remove file.
4617 * tui/tui-windata.c: Remove file.
4618 * tui/tui-win.c (tui_data_window::set_new_height)
4619 (tui_data_window::do_make_visible_with_new_height): Move to
4620 tui-regs.c.
4621 * tui/tui-regs.h (struct tui_data_window): Move from tui-data.h.
4622 * tui/tui-regs.c: Remove "structuring" comments.
4623 (tui_data_window::first_data_item_displayed)
4624 (tui_data_window::delete_data_content_windows)
4625 (tui_data_window::erase_data_content)
4626 (tui_data_window::display_all_data)
4627 (tui_data_window::refresh_all)
4628 (tui_data_window::do_scroll_vertical)
4629 (tui_data_window::clear_detail, tui_data_window::set_new_height)
4630 (tui_data_window::do_make_visible_with_new_height)
4631 (tui_data_window::refresh_window): Move from elsewhere.
4632 (_initialize_tui_regs): Move to end of file.
4633 * tui/tui-layout.c: Update.
4634 * tui/tui-hooks.c: Update.
4635 * tui/tui-data.h (struct tui_data_window): Move to tui-regs.h.
4636 * tui/tui-data.c (tui_data_window::clear_detail): Move to
4637 tui-regs.c.
4638 * Makefile.in (SUBDIR_TUI_SRCS): Remove tui-windata.c.
4639
88b7e7cc
TT
46402019-07-17 Tom Tromey <tom@tromey.com>
4641
4642 * tui/tui-io.c (tui_puts_internal): Call wrefresh if newline is
4643 seen.
4644
0fcd3711
TT
46452019-07-17 Tom Tromey <tom@tromey.com>
4646
4647 * tui/tui-win.c (tui_source_window_base::set_new_height)
4648 (tui_source_window_base::do_make_visible_with_new_height): Use
4649 m_has_locator field directly.
4650 * tui/tui-data.h (struct tui_win_info) <has_locator>: Remove
4651 method.
4652 (struct tui_source_window_base) <has_locator>: Likewise.
4653
4a38112d
TT
46542019-07-17 Tom Tromey <tom@tromey.com>
4655
4656 * tui/tui-wingeneral.h (tui_make_visible, tui_make_invisible):
4657 Don't declare.
4658 * tui/tui-wingeneral.c (tui_make_visible, tui_make_invisible):
4659 Remove.
4660 * tui/tui-win.c (tui_source_window_base::set_new_height)
4661 (tui_source_window_base::set_new_height)
4662 (make_invisible_and_set_new_height)
4663 (tui_source_window_base::do_make_visible_with_new_height)
4664 (tui_source_window_base::do_make_visible_with_new_height):
4665 Update.
4666 * tui/tui-layout.c (show_source_disasm_command, show_data)
4667 (show_source_or_disasm_and_command): Update.
4668 * tui/tui-layout.c (show_layout): Update.
4669
09129226
TT
46702019-07-17 Tom Tromey <tom@tromey.com>
4671
4672 * tui/tui-layout.c (make_data_window): Remove.
4673 (show_data): Unify creation and re-initialization cases.
4674
4a8a5e84
TT
46752019-07-17 Tom Tromey <tom@tromey.com>
4676
4677 * tui/tui-layout.c (make_source_window, make_disasm_window):
4678 Remove.
4679 (show_data): Unify creation and re-initialization cases.
4680
76d2be8e
TT
46812019-07-17 Tom Tromey <tom@tromey.com>
4682
4683 * tui/tui-layout.c (make_command_window): Remove.
4684 (show_source_disasm_command, show_source_or_disasm_and_command):
4685 Unify creation and re-initialization cases.
4686
890b8bde
TT
46872019-07-17 Tom Tromey <tom@tromey.com>
4688
4689 * tui/tui-layout.c (show_source_or_disasm_and_command): Unify
4690 creation and re-initialization cases.
4691
2cdfa113
TT
46922019-07-17 Tom Tromey <tom@tromey.com>
4693
4694 * tui/tui-regs.c (tui_get_register): Return void.
4695
8e3cfd09
TT
46962019-07-17 Tom Tromey <tom@tromey.com>
4697
4698 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible):
4699 Simplify.
4700
f4e04977
TT
47012019-07-17 Tom Tromey <tom@tromey.com>
4702
4703 * tui/tui-layout.c (show_source_disasm_command): Simplify window
4704 resetting.
4705
0379b883
TT
47062019-07-17 Tom Tromey <tom@tromey.com>
4707
4708 * tui/tui.h (tui_set_layout_by_name): Don't declare.
4709 * tui/tui-regs.c (tui_reg_layout): New function.
4710 (tui_show_registers, tui_reg_command): Use it.
4711 * tui/tui-layout.c (LAYOUT_USAGE): Remove.
4712 (tui_layout_command): Rename from tui_set_layout_by_name. Change
4713 parameters.
4714 (tui_layout_command): Remove.
4715
b7fbad91
TT
47162019-07-17 Tom Tromey <tom@tromey.com>
4717
4718 * tui/tui-layout.h (tui/tui-layout): Return void.
4719 * tui/tui-layout.c (tui_set_layout): Return void. Add assert.
4720
4e1e56b9
TT
47212019-07-17 Tom Tromey <tom@tromey.com>
4722
4723 * tui/tui-layout.c (show_source_disasm_command, show_data):
4724 Update.
4725 (reset_locator): Remove.
4726 (show_source_or_disasm_and_command): Update.
4727
1e0c09ba
TT
47282019-07-17 Tom Tromey <tom@tromey.com>
4729
4730 * tui/tui-source.c (tui_source_window_base::reset): Remove
4731 win_type parameter.
4732 * tui/tui-layout.c (make_command_window, make_source_window)
4733 (make_disasm_window, make_data_window)
4734 (show_source_disasm_command, show_data, tui_gen_win_info::reset)
4735 (reset_locator, show_source_or_disasm_and_command): Update.
4736 * tui/tui-data.h (struct tui_gen_win_info) <reset>: Remove
4737 win_type parameter.
4738 (struct tui_source_window_base) <reset>: Likewise.
4739
1bf605de
TT
47402019-07-17 Tom Tromey <tom@tromey.com>
4741
4742 * tui/tui-layout.c (show_source_disasm_command): Use
4743 reset_locator.
4744 (reset_locator): New function.
4745 (init_and_make_win): Remove.
4746 (show_source_or_disasm_and_command): Use reset_locator.
4747
098f9ed4
TT
47482019-07-17 Tom Tromey <tom@tromey.com>
4749
4750 * tui/tui-winsource.c (tui_set_exec_info_content): Remove
4751 condition.
4752 * tui/tui-wingeneral.c (tui_source_window_base::make_visible):
4753 Remove condition.
4754 * tui/tui-source.c (tui_source_window_base::reset): New method.
4755 * tui/tui-layout.c (make_command_window): Don't call
4756 init_and_make_win.
4757 (make_source_window, make_disasm_window): Don't call
4758 make_source_or_disasm_window.
4759 (make_data_window): Don't call init_and_make_win. Change calling
4760 convention.
4761 (show_source_disasm_command, show_data): Simplify.
4762 (make_source_or_disasm_window): Remove.
4763 (show_source_or_disasm_and_command): Simplify.
4764 * tui/tui-data.h (struct tui_gen_win_info) <reset>: Now virtual.
4765 (struct tui_source_window_base) <reset>: Likewise.
4766 <execution_info>: Remove initializer.
4767 * tui/tui-data.c (tui_source_window_base): Initialize
4768 execution_info.
4769
80110957
TT
47702019-07-17 Tom Tromey <tom@tromey.com>
4771
4772 * tui/tui-layout.c (tui_set_layout): Remove regs_populate
4773 variable.
4774
cf82af05
TT
47752019-07-17 Tom Tromey <tom@tromey.com>
4776
4777 * tui/tui.c (tui_rl_other_window): Update.
4778 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Call
4779 superclass method first. Always iterate over regs_content.
4780 (tui_unhighlight_win, tui_highlight_win): Use refresh_window
4781 method.
4782 * tui/tui-win.c (tui_set_focus_command): Update.
4783
01aeb396
TT
47842019-07-17 Tom Tromey <tom@tromey.com>
4785
4786 * tui/tui-win.c (tui_set_focus_command): Rename from
4787 tui_set_focus. Call tui_enable.
4788 (tui_set_focus_command): Remove.
4789
fd6c75ee
TT
47902019-07-17 Tom Tromey <tom@tromey.com>
4791
4792 * tui/tui-winsource.c (tui_show_exec_info_content): Don't call
4793 refresh_window.
4794 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Call
4795 touchwin.
4796 (tui_data_window::refresh_window): Call refresh_window on data
4797 items. Always call superclass refresh_window.
4798 (tui_win_info::refresh): Remove.
4799 (tui_source_window_base::refresh_window): Update.
4800 (tui_refresh_all): Update.
4801 * tui/tui-layout.c (show_source_disasm_command): Remove call to
4802 refresh_window.
4803 (show_source_or_disasm_and_command): Likewise.
4804 * tui/tui-data.h (struct tui_win_info) <refresh>: Remove.
4805 (struct tui_source_window_base) <refresh>: Likewise.
4806
f6cc34a9
TT
48072019-07-17 Tom Tromey <tom@tromey.com>
4808
4809 * tui/tui-winsource.c (tui_clear_source_content)
4810 (tui_show_source_content): Update.
4811 * tui/tui-source.c (tui_source_window::showing_source_p): Check
4812 whether content is empty.
4813 * tui/tui-data.h (struct tui_source_window_base) <content_in_use>:
4814 Remove.
4815
f31ec9af
TT
48162019-07-17 Tom Tromey <tom@tromey.com>
4817
4818 * tui/tui-winsource.c (tui_erase_source_content): Clear the
4819 window's contents.
4820 * tui/tui-source.h (tui_set_source_content_nil): Don't declare.
4821 * tui/tui-source.c (tui_set_source_content_nil): Remove.
4822
d1b6f1e5
TT
48232019-07-17 Tom Tromey <tom@tromey.com>
4824
4825 * tui/tui-data.h (UNDEFINED_ITEM): Remove define.
4826 (struct tui_data_item_window): Update.
4827
d9743a13
TT
48282019-07-17 Tom Tromey <tom@tromey.com>
4829
4830 * tui/tui-data.h (MAX_CONTENT_COUNT, TUI_NULL_STR)
4831 (DEFAULT_HISTORY_COUNT, WITH_LOCATOR, NO_LOCATOR): Remove
4832 defines.
4833
caf0bc4e
TT
48342019-07-17 Tom Tromey <tom@tromey.com>
4835
4836 * tui/tui-winsource.h (tui_erase_source_content)
4837 (tui_clear_source_content): Remove "display_prompt" parameter.
4838 * tui/tui-winsource.c (tui_update_source_window_as_is)
4839 (tui_update_source_windows_with_addr): Update.
4840 (tui_clear_source_content): Remove "display_prompt" parameter.
4841 (tui_erase_source_content): Likewise. Simplify.
4842 (tui_show_source_content): Update.
4843 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
4844 * tui/tui-stack.c (tui_show_frame_info): Update.
4845 * tui/tui-data.h (EMPTY_SOURCE_PROMPT, NO_EMPTY_SOURCE_PROMPT):
4846 Remove defines.
4847
9d391078
TT
48482019-07-17 Tom Tromey <tom@tromey.com>
4849
4850 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
4851 * tui/tui-disasm.h (tui_set_disassem_content): Add win_info
4852 parameter.
4853 * tui/tui-disasm.c (tui_set_disassem_content): Add win_info
4854 parameter.
4855
a38da35d
TT
48562019-07-17 Tom Tromey <tom@tromey.com>
4857
4858 * tui/tui-winsource.c (tui_clear_source_content)
4859 (tui_show_source_content, tui_show_exec_info_content)
4860 (tui_clear_exec_info_content): Update.
4861 * tui/tui-stack.c (tui_show_locator_content): Update.
4862 (tui_show_frame_info): Update.
4863 * tui/tui-source.h (tui_source_window): Don't declare.
4864 * tui/tui-source.c (tui_source_window::showing_source_p): Rename
4865 from tui_source_is_displayed.
4866 * tui/tui-data.h (struct tui_gen_win_info) <content_in_use>:
4867 Remove field.
4868 (struct tui_source_window_base) <content_in_use>: New field. Now
4869 bool.
4870 (struct tui_source_window) <showing_source_p>: New method.
4871 (TUI_SRC_WIN): Change cast.
4872 * tui/tui-data.c (tui_initialize_static_data): Update.
4873
c2cd8994
TT
48742019-07-17 Tom Tromey <tom@tromey.com>
4875
4876 * tui/tui-winsource.c (tui_update_breakpoint_info): Use
4877 location_matches_p.
4878 * tui/tui-source.c (tui_source_window::location_matches_p): New
4879 method.
4880 * tui/tui-disasm.c (tui_disasm_window::location_matches_p): New
4881 method.
4882 * tui/tui-data.h (struct tui_source_window_base)
4883 <location_matches_p>: New method.
4884 (struct tui_source_window, struct tui_disasm_window)
4885 <location_matches_p>: Likewise.
4886
4dde7b34
TT
48872019-07-17 Tom Tromey <tom@tromey.com>
4888
4889 * tui/tui-win.c (tui_set_win_height_command): Rename from
4890 tui_set_win_height.
4891 (tui_set_win_height_command): Remove.
4892
b73dd877
TT
48932019-07-17 Tom Tromey <tom@tromey.com>
4894
4895 * tui/tui-source.c (tui_source_window): New constructor. Add
4896 observer.
4897 (~tui_source_window): New destructor.
4898 (tui_source_window::style_changed): New method.
4899 * tui/tui-hooks.c (tui_redisplay_source): Remove.
4900 (tui_attach_detach_observers): Update.
4901 * tui/tui-data.h (struct tui_source_window): Make constructor not
4902 inline. Add destructor.
4903 (struct tui_source_window) <style_changed>: New method.
4904 <m_observable>: New member.
4905
ae2b5380
TT
49062019-07-17 Tom Tromey <tom@tromey.com>
4907
4908 * tui/tui-data.c (tui_clear_source_windows_detail): Fix typo.
4909 * tui/tui-win.c (tui_resize_all): Fix typo.
4910
1ce3e844
TT
49112019-07-17 Tom Tromey <tom@tromey.com>
4912
4913 * tui/tui-wingeneral.h (tui_refresh_all): Update.
4914 * tui/tui-wingeneral.c (make_all_visible): Use foreach.
4915 (tui_refresh_all): Remove "list" parameter. Use foreach.
4916 * tui/tui-win.c (window_name_completer): Use foreach.
4917 (tui_refresh_all_win, tui_rehighlight_all, tui_all_windows_info)
4918 (update_tab_width): Likewise.
4919 * tui/tui-layout.c (show_layout): Update.
4920 * tui/tui-data.h (class tui_window_iterator): New.
4921 (struct all_tui_windows): New.
4922 * tui/tui-data.c (tui_partial_win_by_name): Use foreach.
4923
fe3eaf1c
TT
49242019-07-17 Tom Tromey <tom@tromey.com>
4925
4926 * tui/tui-regs.c (tui_reg_next, tui_reg_prev): Add "current_group"
4927 parameter. Don't reference globals.
4928 (tui_reg_command): Update.
4929
368c1354
TT
49302019-07-17 Tom Tromey <tom@tromey.com>
4931
4932 * tui/tui-regs.c (tui_show_registers): Simplify.
4933
e80cd204
TT
49342019-07-17 Tom Tromey <tom@tromey.com>
4935
4936 * tui/tui-regs.c (tui_show_registers): Update.
4937 (tui_show_register_group): Add win_info parameter.
4938
aca2dd16
TT
49392019-07-17 Tom Tromey <tom@tromey.com>
4940
4941 * tui/tui-regs.c (tui_data_window::display_reg_element_at_line):
4942 Rename from tui_display_reg_element_at_line.
4943 (tui_data_window::display_registers_from_line): Update.
4944 * tui/tui-data.h (struct tui_data_window)
4945 <display_reg_element_at_line>: New method.
4946
517e9505
TT
49472019-07-17 Tom Tromey <tom@tromey.com>
4948
4949 * tui/tui-regs.h (tui_display_registers_from)
4950 (tui_display_registers_from_line): Don't declare.
4951 * tui/tui-windata.c (tui_data_window::display_all_data)
4952 (tui_data_window::refresh_all)
4953 (tui_data_window::do_scroll_vertical): Update.
4954 * tui/tui-regs.c (tui_data_window::display_registers_from): Rename
4955 from tui_display_registers_from.
4956 (tui_display_reg_element_at_line): Update.
4957 (tui_data_window::display_registers_from_line): Rename from
4958 tui_display_registers_from_line.
4959 * tui/tui-data.h (struct tui_data_window) <display_registers_from,
4960 display_registers_from_line>: New methods.
4961
f76d8b19
TT
49622019-07-17 Tom Tromey <tom@tromey.com>
4963
4964 * tui/tui-windata.h (tui_erase_data_content): Don't declare.
4965 * tui/tui-windata.c (tui_data_window::erase_data_content): Rename
4966 from tui_erase_data_content.
4967 (tui_data_window::display_all_data)
4968 (tui_data_window::refresh_all)
4969 (tui_data_window::do_scroll_vertical): Update.
4970 * tui/tui-regs.c (tui_show_registers): Update.
4971 * tui/tui-data.h (struct tui_data_window) <erase_data_content>:
4972 New method.
4973
b4094625
TT
49742019-07-17 Tom Tromey <tom@tromey.com>
4975
4976 * tui/tui-windata.h (tui_delete_data_content_windows): Don't
4977 declare.
4978 * tui/tui-windata.c
4979 (tui_data_window::delete_data_content_windows): Rename from
4980 tui_delete_data_content_windows.
4981 (tui_data_window::display_all_data)
4982 (tui_data_window::do_scroll_vertical): Update.
4983 * tui/tui-data.h (struct tui_data_window)
4984 <delete_data_content_windows>: New method.
4985
c223a729
TT
49862019-07-17 Tom Tromey <tom@tromey.com>
4987
4988 * tui/tui-windata.h (tui_refresh_data_win): Don't declare.
4989 * tui/tui-regs.h (tui_first_reg_element_inline): Don't declare.
4990
50daf268
TT
49912019-07-17 Tom Tromey <tom@tromey.com>
4992
4993 * tui/tui-windata.h (tui_display_all_data): Don't declare.
4994 * tui/tui-windata.c (tui_data_window::display_all_data): Rename
4995 from tui_display_all_data.
4996 * tui/tui-win.c
4997 (tui_data_window::do_make_visible_with_new_height): Update.
4998 * tui/tui-regs.c (tui_show_registers): Update.
4999 * tui/tui-layout.c (tui_set_layout): Update.
5000 * tui/tui-data.h (struct tui_data_window) <display_all_data>: New
5001 method.
5002
df5f8cab
TT
50032019-07-17 Tom Tromey <tom@tromey.com>
5004
5005 * tui/tui-windata.h (tui_display_data_from): Don't declare.
5006 * tui/tui-windata.c (tui_display_data_from): Remove.
5007 (tui_data_window::refresh_all): Update.
5008
80cb6c27
TT
50092019-07-17 Tom Tromey <tom@tromey.com>
5010
5011 * tui/tui-windata.h (tui_display_data_from_line): Don't declare.
5012 * tui/tui-windata.c (tui_display_data_from_line): Remove.
5013 (tui_display_data_from, tui_data_window::do_scroll_vertical): Call
5014 tui_display_registers_from_line.
5015 * tui/tui-regs.h (tui_display_registers_from_line): Update.
5016 * tui/tui-regs.c (tui_display_registers_from_line): Remove
5017 "force_display" parameter.
5018
baff0c28
TT
50192019-07-17 Tom Tromey <tom@tromey.com>
5020
5021 * tui/tui-regs.h (tui_first_reg_element_no_inline): Don't
5022 declare.
5023 * tui/tui-regs.c (tui_data_window::first_reg_element_no_inline):
5024 Rename from tui_first_reg_element_no_inline.
5025 (tui_display_reg_element_at_line)
5026 (tui_display_registers_from_line): Update.
5027 * tui/tui-data.h (struct tui_data_window)
5028 <first_reg_element_no_inline>: New method.
5029
3b23c5f2
TT
50302019-07-17 Tom Tromey <tom@tromey.com>
5031
5032 * tui/tui-windata.c (tui_display_data_from)
5033 (tui_data_window::do_scroll_vertical): Update.
5034 * tui/tui-regs.h (tui_line_from_reg_element_no): Don't declare.
5035 * tui/tui-regs.c (tui_data_window::line_from_reg_element_no):
5036 Rename from tui_line_from_reg_element_no.
5037 (tui_display_registers_from_line): Update.
5038 * tui/tui-data.h (struct tui_data_window)
5039 <line_from_reg_element_no>: New method.
5040
0b5ec218
TT
50412019-07-17 Tom Tromey <tom@tromey.com>
5042
5043 * tui/tui-regs.h (tui_last_regs_line_no): Don't declare.
5044 * tui/tui-regs.c (tui_data_window::last_regs_line_no): Rename from
5045 tui_last_regs_line_no.
5046 (tui_display_reg_element_at_line)
5047 (tui_display_registers_from_line): Update.
5048 * tui/tui-data.h (struct tui_data_window) <last_regs_line_no>: New
5049 method.
5050
0807ab7b
TT
50512019-07-17 Tom Tromey <tom@tromey.com>
5052
5053 PR tui/24722:
5054 * tui/tui-winsource.h (tui_update_all_breakpoint_info)
5055 (tui_update_breakpoint_info): Add "being_deleted" parameter.
5056 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
5057 (tui_update_all_breakpoint_info): Add "being_deleted" parameter.
5058 (tui_update_breakpoint_info): Likewise.
5059 * tui/tui-hooks.c (tui_event_create_breakpoint)
5060 (tui_event_delete_breakpoint, tui_event_modify_breakpoint):
5061 Update.
5062
9ad7fdef
TT
50632019-07-17 Tom Tromey <tom@tromey.com>
5064
5065 * tui/tui-stack.c (tui_show_frame_info): Consolidate "if"s.
5066
5813316f
TT
50672019-07-17 Tom Tromey <tom@tromey.com>
5068
5069 * tui/tui-winsource.c (tui_update_source_window_as_is)
5070 (tui_update_source_windows_with_addr): Update.
5071 * tui/tui-source.h (tui_set_source_content)
5072 (tui_show_symtab_source): Add "win_info" parameter.
5073 * tui/tui-source.c (tui_set_source_content): Add "win_info"
5074 parameter.
5075 (tui_show_symtab_source): Likewise.
5076
00e264e7
TT
50772019-07-17 Tom Tromey <tom@tromey.com>
5078
5079 * tui/tui-wingeneral.c
5080 (tui_check_and_display_highlight_if_needed): Check can_highlight.
5081
06210ce4
TT
50822019-07-17 Tom Tromey <tom@tromey.com>
5083
5084 * tui/tui-data.h (struct tui_win_info) <can_scroll>: New method.
5085 (struct tui_cmd_window) <can_scroll>: New method.
5086 * tui/tui-command.c (tui_dispatch_ctrl_char): Use can_scroll
5087 method.
5088
381befee
TT
50892019-07-17 Tom Tromey <tromey@adacore.com>
5090
5091 * ui-out.h (class ui_out) <field_signed, field_fmt_signed,
5092 do_field_signed>: Rename. Change type of "value".
5093 * ui-out.c (ui_out::field_signed): Rename from field_int.
5094 Change type of "value".
5095 (ui_out::field_fmt_signed): Rename from field_fmt_int. Change
5096 type of "value".
5097 * tui/tui-out.h (class tui_ui_out) <do_field_signed>: Rename from
5098 do_field_int. Change type of "value".
5099 * tui/tui-out.c (tui_ui_out::do_field_signed): Rename from
5100 do_field_int. Change type of "value".
5101 * tracepoint.c (trace_status_mi, tfind_1)
5102 (print_one_static_tracepoint_marker): Update.
5103 * thread.c (print_thread_info_1, print_selected_thread_frame):
5104 Update.
5105 * stack.c (print_frame, print_frame_info): Update.
5106 * spu-tdep.c (info_spu_signal_command, info_spu_dma_cmdlist):
5107 Update.
5108 * source.c (print_source_lines_base): Update.
5109 * skip.c (info_skip_command): Update.
5110 * record-btrace.c (btrace_ui_out_decode_error)
5111 (btrace_call_history_src_line): Update.
5112 * python/py-framefilter.c (py_print_single_arg, py_print_frame):
5113 Update.
5114 * progspace.c (print_program_space): Update.
5115 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Update.
5116 * mi/mi-out.h (class mi_ui_out) <do_field_signed>: Rename from
5117 do_field_int. Change type of "value".
5118 * mi/mi-out.c (mi_ui_out::do_table_begin)
5119 (mi_ui_out::do_table_header): Update.
5120 (mi_ui_out::do_field_signed): Rename from do_field_int. Change
5121 type of "value".
5122 * mi/mi-main.c (mi_cmd_thread_list_ids, print_one_inferior)
5123 (mi_cmd_data_list_changed_registers, output_register)
5124 (mi_cmd_data_read_memory, mi_load_progress)
5125 (mi_cmd_trace_frame_collected): Update.
5126 * mi/mi-interp.c (mi_on_normal_stop_1, mi_output_solib_attribs):
5127 Update.
5128 * mi/mi-cmd-var.c (print_varobj, mi_cmd_var_create)
5129 (mi_cmd_var_delete, mi_cmd_var_info_num_children)
5130 (mi_cmd_var_list_children, varobj_update_one): Update.
5131 * mi/mi-cmd-stack.c (mi_cmd_stack_info_depth)
5132 (mi_cmd_stack_list_args, list_arg_or_local): Update.
5133 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Update.
5134 * inferior.c (print_inferior): Update.
5135 * gdb_bfd.c (print_one_bfd): Update.
5136 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
5137 Update.
5138 * darwin-nat-info.c (darwin_debug_regions_recurse): Update.
5139 * cli-out.h (class cli_ui_out) <do_field_signed>: Rename from
5140 do_field_int. Change type of "value".
5141 * cli-out.c (cli_ui_out::do_field_signed): Rename from
5142 do_field_int. Change type of "value".
5143 * breakpoint.c (watchpoint_check, print_breakpoint_location)
5144 (print_one_breakpoint_location, print_it_catch_fork)
5145 (print_one_catch_fork, print_it_catch_vfork)
5146 (print_one_catch_vfork, print_it_catch_solib)
5147 (print_it_catch_exec, print_it_ranged_breakpoint)
5148 (print_mention_watchpoint, print_mention_masked_watchpoint)
5149 (bkpt_print_it, update_static_tracepoint): Update.
5150 * break-catch-throw.c (print_it_exception_catchpoint): Update.
5151 * break-catch-syscall.c (print_it_catch_syscall): Update.
5152 * ada-tasks.c (print_ada_task_info): Update.
5153 * ada-lang.c (print_it_exception, print_mention_exception):
5154 Update.
5155
6b78c3f8
AB
51562019-07-17 Andrew Burgess <andrew.burgess@embecosm.com>
5157
5158 PR breakpoints/24541
5159 * gdbarch.c: Regenerate.
5160 * gdbarch.h: Regenerate.
5161 * gdbarch.sh: Adjust return type and parameter types for
5162 'stap_adjust_register'.
5163 (i386_stap_adjust_register): Adjust signature and return new
5164 register name.
5165 * stap-probe.c (stap_parse_register_operand): Adjust use of
5166 'gdbarch_stap_adjust_register'.
5167
d72a9b85
TT
51682019-07-17 Tom Tromey <tromey@adacore.com>
5169
5170 * s390-linux-nat.c (s390_watch_area): Remove typedef. Don't
5171 declare VEC.
5172 (struct s390_debug_reg_state) <watch_areas, break_areas>: Now
5173 std::vector.
5174 (struct s390_process_info): Add initializers.
5175 (s390_add_process): Use new.
5176 (s390_linux_nat_target::low_forget_process): Use delete.
5177 (s390_linux_nat_target::low_new_fork)
5178 (s390_linux_nat_target::stopped_by_watchpoint)
5179 (s390_linux_nat_target::low_prepare_to_resume)
5180 (s390_linux_nat_target::insert_watchpoint)
5181 (s390_linux_nat_target::insert_hw_breakpoint)
5182 (s390_linux_nat_target::remove_watchpoint)
5183 (s390_linux_nat_target::remove_hw_breakpoint): Update.
5184
206e6c58
JB
51852019-07-16 John Baldwin <jhb@FreeBSD.org>
5186
5187 * aarch64-fbsd-nat.c: Include regcache.h.
5188 (getregs_supplies, getfpregs_supplies): Remove unused gdbarch
5189 argument.
5190 (aarch64_fbsd_nat_target::fetch_registers)
5191 (aarch64_fbsd_nat_target::store_registers): Remove gdbarch
5192 variable.
5193 * arm-fbsd-nat.c, riscv-fbsd-nat.c: Likewise.
5194
cbde90f2
JB
51952019-07-16 John Baldwin <jhb@FreeBSD.org>
5196
5197 * fbsd-nat.c: Include gdbarch.h.
5198
07128006
TT
51992019-07-15 Tom Tromey <tromey@adacore.com>
5200
5201 * mi/mi-out.c (mi_ui_out::do_field_int): Use plongest.
5202
1f77b012
TT
52032019-07-15 Tom Tromey <tromey@adacore.com>
5204
5205 * mi/mi-out.h (class mi_ui_out) <do_field_unsigned>: Declare.
5206 * mi/mi-out.c (mi_ui_out::do_field_unsigned): New method.
5207 * cli-out.h (class cli_ui_out) <do_field_unsigned>: Declare.
5208 * cli-out.c (cli_ui_out::do_field_int): New method.
5209 * ui-out.c (ui_out::field_unsigned): New method.
5210 * symfile.c (generic_load): Use field_unsigned.
5211 (print_transfer_performance): Likewise.
5212 * record-btrace.c (ui_out_field_uint): Remove.
5213 (btrace_call_history_insn_range, btrace_call_history): Use
5214 field_unsigned.
5215 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn): Use
5216 field_unsigned.
5217 * ui-out.h (class ui_out) <field_unsigned>: New method.
5218 <do_field_unsigned>: Likewise.
5219
33eca680
TT
52202019-07-15 Tom Tromey <tromey@adacore.com>
5221
5222 * mi/mi-main.c (list_available_thread_groups): Use field_string.
5223 * mi/mi-interp.c (mi_memory_changed): Use field_string.
5224 * target.c (flash_erase_command): Use field_string.
5225 * infrun.c (print_signal_received_reason): Use field_string.
5226 * i386-tdep.c (i386_mpx_print_bounds): Use field_string.
5227 * breakpoint.c (maybe_print_thread_hit_breakpoint): Use
5228 field_string.
5229 * ada-tasks.c (print_ada_task_info): Use field_string.
5230
ca8d69be
TT
52312019-07-15 Tom Tromey <tromey@adacore.com>
5232
5233 * target.c (flash_erase_command): Use field_core_addr.
5234 * symfile.c (generic_load): Use field_core_addr.
5235 * sparc64-linux-tdep.c (sparc64_linux_handle_segmentation_fault):
5236 Use field_core_addr.
5237 * i386-linux-tdep.c (i386_linux_handle_segmentation_fault): Use
5238 field_core_addr.
5239
0d4e84ed
AB
52402019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
5241
5242 * dwarf2loc.c (dwarf2_evaluate_property): Sign extend property
5243 value if its desired type is smaller than a CORE_ADDR and signed.
5244
9a49df9d
AB
52452019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
5246
5247 * dwarf2loc.c (dwarf2_evaluate_property): Update to take account
5248 of changes to field names, and use new is_reference field to
5249 decide if a property is a reference or not.
5250 * dwarf2loc.h (struct dwarf2_locexpr_baton): Add 'is_reference'
5251 field.
5252 (struct dwarf2_property_baton): Update header comment, rename
5253 'referenced_type' to 'property_type' and update comments.
5254 * dwarf2read.c (attr_to_dynamic_prop): Add extra parameter to hold
5255 default property type, store in property baton, update to take
5256 accound of renamed field.
5257 (read_func_scope): Update call to attr_to_dynamic_prop.
5258 (read_array_type): Likewise.
5259 (dwarf2_per_cu_addr_sized_int_type): New function.
5260 (read_subrange_index_type): Move type finding code to
5261 dwarf2_per_cu_addr_sized_int_type.
5262 (read_subrange_type): Update calls to attr_to_dynamic_prop.
5263 (dwarf2_per_cu_addr_type): New function.
5264 (set_die_type): Update calls to attr_to_dynamic_prop.
5265
b86352cf
AB
52662019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
5267
5268 * dwarf2read.c (read_subrange_index_type): New function.
5269 (read_subrange_type): Move code into new function and call it.
5270 * gdbtypes.c (create_range_type): Add some asserts.
5271
603490bf
AB
52722019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
5273
5274 * dwarf2loc.c (dwarf2_evaluate_property): Change return type, and
5275 update return statements.
5276 * dwarf2loc.h (dwarf2_evaluate_property): Update return type on
5277 declaration, and update comment to match.
5278 * gdbtypes.c (resolve_dynamic_array): Update call to
5279 dwarf2_evaluate_property to match new return type.
5280
592f9d27
AB
52812019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
5282
5283 * valarith.c (value_subscripted_rvalue): Change lowerbound
5284 parameter type from int to LONGEST.
5285 * value.h (value_subscripted_rvalue): Likewise in declaration.
5286
60cfcb20
AB
52872019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
5288
5289 * cli/cli-utils.c (info_print_command_completer): New function.
5290 * cli/cli-utils.h: Add 'completer.h' include, and forward
5291 declaration for 'struct cmd_list_element'.
5292 (info_print_command_completer): Declare.
5293 * stack.c (_initialize_stack): Add completer for 'info locals' and
5294 'info args'.
5295 * symtab.c (_initialize_symtab): Add completer for 'info
5296 variables' and 'info functions'.
5297 * NEWS: Mention completion for additional info commands.
5298
b16507e0
AB
52992019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
5300
5301 * cli/cli-utils.c (extract_info_print_args): Delete.
5302 (extract_arg_maybe_quoted): Delete.
5303 (info_print_options_defs): New variable.
5304 (make_info_print_options_def_group): New function.
5305 (extract_info_print_options): Define new function.
5306 * cli/cli-utils.h (extract_info_print_args): Delete.
5307 (struct info_print_options): New structure.
5308 (extract_info_print_options): Declare new function.
5309 * stack.c (info_locals_command): Update to use new
5310 extract_info_print_options, also add a header comment.
5311 (info_args_command): Likewise.
5312 * symtab.c (info_variables_command): Likewise.
5313 (info_functions_command): Likewise.
5314
021d8588
AB
53152019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
5316
5317 * cli/cli-option.c (parse_option): Use extract_string_maybe_quoted
5318 to extract string arguments.
5319 * common/common-utils.c (extract_string_maybe_quoted): New function.
5320 * common/common-utils.h (extract_string_maybe_quoted): Declare.
5321
b777eb6d
TT
53222019-07-11 Tom Tromey <tromey@adacore.com>
5323
5324 * main.c (get_init_files): Use GDBINIT, not gdbinit.
5325 * auto-load.c (file_is_auto_load_safe): Use GDBINIT, not gdbinit.
5326 * top.h (gdbinit): Don't declare.
5327 * cli/cli-cmds.c (init_cli_cmds): Remove, merging contents
5328 into...
5329 (_initialize_cli_cmds): ...here. Use GDBINIT, not gdbinit.
5330 * top.c (gdb_init): Don't call init_cli_cmds.
5331 (gdbinit): Remove.
5332 * cli/cli-cmds.h (init_cli_cmds): Don't declare.
5333
72ee03ff
TT
53342019-07-11 Tom Tromey <tromey@adacore.com>
5335
5336 * python/py-inferior.c (add_thread_object): Don't use thread_obj
5337 after it has been moved.
5338
00db9531
SM
53392019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
5340
5341 * valops.c (value_must_coerce_to_target): Change return type to
5342 bool.
5343 * value.h (value_must_coerce_to_target): Likewise.
5344
f2478a7e
SM
53452019-07-10 Simon Marchi <simon.marchi@efficios.com>
5346
5347 * breakpoint.c (is_hardware_watchpoint): Remove
5348 forward-declaration.
5349 (is_masked_watchpoint): Change return type to bool.
5350 (is_tracepoint): Likewise.
5351 (is_breakpoint): Likewise.
5352 (is_hardware_watchpoint): Likewise.
5353 (is_watchpoint): Likewise.
5354 (is_no_memory_software_watchpoint): Likewise.
5355 (is_catchpoint): Likewise.
5356 (breakpoint_1): Make FILTER parameter's return type bool.
5357 is_masked_watchpoint): Change return type to bool.
5358 (save_breakpoints): Make FILTER parameter's return type bool.
5359 * breakpoint.h (is_breakpoint): Change return type to bool.
5360 (is_watchpoint): Likewise.
5361 (is_catchpoint): Likewise.
5362 (is_tracepoint): Likewise.
5363
0d12e84c
TT
53642019-07-10 Tom Tromey <tom@tromey.com>
5365
5366 * defs.h: Don't include gdbarch.h.
5367 * aarch64-ravenscar-thread.c, aarch64-tdep.c, alpha-bsd-tdep.h,
5368 alpha-linux-tdep.c, alpha-mdebug-tdep.c, arch-utils.h, arm-tdep.h,
5369 ax-general.c, btrace.c, buildsym-legacy.c, buildsym.h, c-lang.c,
5370 cli/cli-decode.h, cli/cli-dump.c, cli/cli-script.h,
5371 cli/cli-style.h, coff-pe-read.h, compile/compile-c-support.c,
5372 compile/compile-cplus.h, compile/compile-loc2c.c, corefile.c,
5373 cp-valprint.c, cris-linux-tdep.c, ctf.c, d-lang.c, d-namespace.c,
5374 dcache.c, dicos-tdep.c, dictionary.c, disasm-selftests.c,
5375 dummy-frame.c, dummy-frame.h, dwarf2-frame-tailcall.c,
5376 dwarf2expr.c, expression.h, f-lang.c, frame-base.c,
5377 frame-unwind.c, frv-linux-tdep.c, gdbarch-selftests.c, gdbtypes.h,
5378 go-lang.c, hppa-nbsd-tdep.c, hppa-obsd-tdep.c, i386-dicos-tdep.c,
5379 i386-tdep.h, ia64-vms-tdep.c, interps.h, language.c,
5380 linux-record.c, location.h, m2-lang.c, m32r-linux-tdep.c,
5381 mem-break.c, memattr.c, mn10300-linux-tdep.c, nios2-linux-tdep.c,
5382 objfiles.h, opencl-lang.c, or1k-linux-tdep.c, p-lang.c,
5383 parser-defs.h, ppc-tdep.h, probe.h, python/py-record-btrace.c,
5384 record-btrace.c, record.h, regcache-dump.c, regcache.h,
5385 riscv-fbsd-tdep.c, riscv-linux-tdep.c, rust-exp.y,
5386 sh-linux-tdep.c, sh-nbsd-tdep.c, source-cache.c,
5387 sparc-nbsd-tdep.c, sparc-obsd-tdep.c, sparc-ravenscar-thread.c,
5388 sparc64-fbsd-tdep.c, std-regs.c, target-descriptions.h,
5389 target-float.c, tic6x-linux-tdep.c, tilegx-linux-tdep.c, top.c,
5390 tracefile.c, trad-frame.c, type-stack.h, ui-style.c, utils.c,
5391 utils.h, valarith.c, valprint.c, varobj.c, x86-tdep.c,
5392 xml-support.h, xtensa-linux-tdep.c, cli/cli-cmds.h: Update.
5393 * s390-linux-nat.c, procfs.c, inf-ptrace.c: Likewise.
5394
f06f1252
TT
53952019-07-10 Tom Tromey <tromey@adacore.com>
5396
5397 * ada-lang.h (is_ada_exception_catchpoint): Declare.
5398 * breakpoint.c (init_ada_exception_breakpoint): Register as
5399 bp_catchpoint.
5400 (print_one_breakpoint_location, print_one_breakpoint): Use
5401 is_ada_exception_catchpoint.
5402 * ada-lang.c (class ada_catchpoint_location): Pass
5403 bp_loc_software_breakpoint to bp_location constructor.
5404 (is_ada_exception_catchpoint): New function.
5405
7a5d944b
TT
54062019-07-10 Tom Tromey <tromey@adacore.com>
5407
5408 * arm-tdep.c (arm_exidx_entry_s): Remove typedef. Don't define
5409 VEC.
5410 (struct arm_exidx_entry): New method operator<.
5411 (struct arm_exidx_data) <section_maps>: Change type.
5412 (arm_exidx_data_free): Remove.
5413 (arm_exidx_data_key): Change type. Move lower.
5414 (arm_exidx_new_objfile): Update.
5415 (arm_compare_exidx_entries): Remove.
5416 (arm_find_exidx_entry, _initialize_arm_tdep)
5417
48c66e1d
TT
54182019-07-10 Tom Tromey <tromey@adacore.com>
5419
5420 * solib-spu.c (ocl_program_data_key): Change type.
5421 (append_ocl_sos, ocl_enable_break, _initialize_spu_solib):
5422 Update.
5423
a269fbf1
TT
54242019-07-10 Tom Tromey <tromey@adacore.com>
5425
5426 * solib-aix.c (lm_info_aix_p): Remove typedef. Don't define VEC.
5427 (struct solib_aix_inferior_data) <library_list>: Change type.
5428 (solib_aix_inferior_data_handle): Change type.
5429 (get_solib_aix_inferior_data): Update.
5430 (solib_aix_free_library_list): Remove.
5431 (library_list_start_library): Update.
5432 (solib_aix_parse_libraries, solib_aix_get_library_list): Change
5433 return type.
5434 (solib_aix_get_library_list)
5435 (solib_aix_solib_create_inferior_hook, solib_aix_current_sos)
5436 (solib_aix_normal_stop_observer, _initialize_solib_aix): Update.
5437
c294730c
TT
54382019-07-10 Tom Tromey <tromey@adacore.com>
5439
5440 * solib-dsbt.c (struct dsbt_info): Add initializers.
5441 (solib_dsbt_pspace_data): Change type.
5442 (dsbt_pspace_data_cleanup): Remove.
5443 (get_dsbt_info, _initialize_dsbt_solib): Update.
5444
9d52077d
TT
54452019-07-10 Tom Tromey <tromey@adacore.com>
5446
5447 * spu-tdep.c (spu_overlay_data): Change type.
5448 (spu_get_overlay_table, spu_overlay_new_objfile)
5449 (_initialize_spu_tdep): Update.
5450
22a20dca
TT
54512019-07-10 Tom Tromey <tromey@adacore.com>
5452
5453 * gdb-stabs.h (struct dbx_symfile_info): Add initializers and
5454 destructor.
5455 (dbx_objfile_data_key): Change type and declare later.
5456 (DBX_SYMFILE_INFO): Rewrite.
5457 * dbxread.c (dbx_objfile_data_key): Change type.
5458 (dbx_symfile_init): Update.
5459 (~dbx_symfile_info): Rename from dbx_free_symfile_info. Update.
5460 (coffstab_build_psymtabs, elfstab_build_psymtabs)
5461 (stabsect_build_psymtabs, _initialize_dbxread): Update.
5462
cb60f420
TT
54632019-07-10 Tom Tromey <tromey@adacore.com>
5464
5465 * jit.c (jit_program_space_key): Change type. Move lower.
5466 (get_jit_program_space_data): Update.
5467 (jit_program_space_data_cleanup): Remove.
5468 (jit_breakpoint_deleted, free_objfile_data, _initialize_jit):
5469 Update.
5470 (struct jit_program_space_data): Add initializers.
5471
51df2ae3
TT
54722019-07-10 Tom Tromey <tromey@adacore.com>
5473
5474 * solib-darwin.c (struct darwin_info): Add initializers.
5475 (solib_darwin_pspace_data): Change type.
5476 (darwin_pspace_data_cleanup): Remove.
5477 (get_darwin_info, _initialize_darwin_solib): Update.
5478
18101a35
TT
54792019-07-10 Tom Tromey <tromey@adacore.com>
5480
5481 * remote-sim.c (struct sim_inferior_data): Add initializers,
5482 constructor, and destructor.
5483 (sim_inferior_data_key): Change type. Move lower.
5484 (check_for_duplicate_sim_descriptor): Update.
5485 (get_sim_inferior_data): Use new. Update.
5486 (~sim_inferior_data_cleanup): Rename from
5487 sim_inferior_data_cleanup. Simplify.
5488 (gdbsim_close_inferior, simulator_command)
5489 (sim_command_completer, _initialize_remote_sim): Update.
5490 (next_pid, INITIAL_PID): Move earlier.
5491
05b08ac1
TT
54922019-07-10 Tom Tromey <tromey@adacore.com>
5493
5494 * python/python-internal.h (create_thread_object): Return
5495 gdbpy_ref.
5496 * python/py-infthread.c (create_thread_object): Return gdbpy_ref.
5497 * python/py-inferior.c (struct threadlist_entry): Add
5498 constructor.
5499 <thread_obj>: Now a gdbpy_ref.
5500 (thread_to_thread_object): Update.
5501 (add_thread_object): Use new.
5502 (delete_thread_object): Use delete.
5503 (infpy_threads): Update.
5504 (py_free_inferior): Update. Construct "inf_obj" after acquiring
5505 GIL.
5506
32372d80
TT
55072019-07-10 Tom Tromey <tromey@adacore.com>
5508
5509 * valops.c (value_cast): Specialize error message for Ada.
5510
5c458ae8
SM
55112019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
5512
5513 * breakpoint.c (breakpoint_1): Update doc and parameter names.
5514
4c462cb0
SM
55152019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
5516
5517 * breakpoint.h (bpstat_explains_signal, bpstat_causes_stop,
5518 bpstat_should_step): Return bool, adjust comments.
5519 * breakpoint.c (bpstat_explains_signal, bpstat_causes_stop,
5520 bpstat_should_step): Likewise.
5521
89abbcc2
AH
55222019-07-10 Alan Hayward <alan.hayward@arm.com>
5523
5524 * features/Makefile: Use feature target descriptions for Arm.
5525 * features/arm/arm-core.c: Generate new file.
5526 * features/arm/arm-fpa.c: Likewise.
5527 * features/arm/arm-m-profile-with-fpa.xml: Likewise.
5528 * features/arm/arm-m-profile.c: Likewise.
5529 * features/arm/arm-vfpv2.c: Likewise.
5530 * features/arm/arm-vfpv3.c: Likewise.
5531 * features/arm/xscale-iwmmxt.c: Likewise.
5532 * target-descriptions.c (maint_print_c_tdesc_cmd): Add Arm.
5533
166a82be
AH
55342019-07-10 Alan Hayward <alan.hayward@arm.com>
5535
5536 * arm-linux-nat.c (arm_linux_nat_target::read_description): Check
5537 ptrace earlier.
5538
9fb4c7e9
AH
55392019-07-10 Alan Hayward <alan.hayward@arm.com>
5540
5541 * features/aarch64-pauth.c: Regenerate.
5542
e2d0f980
SM
55432019-07-09 Simon Marchi <simon.marchi@polymtl.ca>
5544
5545 * breakpoint.h (struct bpstat_what) <is_longjmp>: Change type to
5546 bool.
5547 (bpstat_what): Use false instead of 0.
5548
a38118e5
PA
55492019-07-09 Pedro Alves <palves@redhat.com>
5550
5551 * break-catch-throw.c (is_exception_catchpoint): New.
5552 * breakpoint.c (print_one_breakpoint_location): New parameter
5553 'raw_loc'. Handle it. Use
5554 is_watchpoint/is_catchpoint/is_exception_catchpoint instead of
5555 looking at the breakpoint's type.
5556 (print_one_breakpoint): If handling "maint info breakpoints", also
5557 print locations of exception catchpoints.
5558 * breakpoint.h (is_exception_catchpoint): Declare.
5559
cb1e4e32
PA
55602019-07-09 Pedro Alves <palves@redhat.com>
5561
5562 * break-catch-throw.c (print_one_exception_catchpoint): Skip the
5563 "addr" field.
5564 (allocate_location_exception_catchpoint): New.
5565 (handle_gnu_v3_exceptions): Don't reset 'type' to bp_breakpoint.
5566 (initialize_throw_catchpoint_ops): Install
5567 allocate_location_exception_catchpoint as allocate_location
5568 method.
5569 * breakpoint.c (bpstat_what) <bp_catch>: Set action to
5570 BPSTAT_WHAT_SINGLE if not stopping and the location's type is not
5571 bp_loc_other.
5572 (breakpoint_address_is_meaningful): Delete.
5573 (bl_address_is_meaningful): New.
5574 (breakpoint_locations_match): Adjust comment.
5575 (bp_location_from_bp_type): New, factored out of...
5576 (bp_location::bp_location(breakpoint *)): ... this.
5577 (bp_location::bp_location(breakpoint *, bp_loc_type)): New,
5578 factored out of...
5579 (bp_location::bp_location(breakpoint *)): ... this. Reimplement.
5580 (bp_loc_is_permanent): Use bl_address_is_meaningful instead of
5581 breakpoint_address_is_meaningful.
5582 (bp_locations_compare): Adjust comment.
5583 (update_global_location_list): Use bl_address_is_meaningful
5584 instead of breakpoint_address_is_meaningful.
5585 * breakpoint.h (bp_location::bp_location(breakpoint *)): New
5586 explicit.
5587 (bp_location::bp_location(breakpoint *, bp_loc_type)): Declare.
5588 * python/py-breakpoint.c (bppy_get_location): No longer check
5589 whether location is null.
5590
b58a68fe
PA
55912019-07-09 Pedro Alves <palves@redhat.com>
5592
5593 PR c++/15468
5594 * breakpoint.c (print_one_breakpoint_location): Remove
5595 single-location assert.
5596
268a13a5
TT
55972019-07-09 Tom Tromey <tom@tromey.com>
5598
5599 * contrib/ari/gdb_ari.sh: Change common to gdbsupport.
5600 * configure: Rebuild.
5601 * configure.ac: Change common to gdbsupport.
5602 * gdbsupport: Rename from common.
5603 * acinclude.m4: Change common to gdbsupport.
5604 * Makefile.in (CONFIG_SRC_SUBDIR, COMMON_SFILES)
5605 (HFILES_NO_SRCDIR, stamp-version, ALLDEPFILES): Change common to
5606 gdbsupport.
5607 * aarch64-tdep.c, ada-lang.c, ada-lang.h, agent.c, alloc.c,
5608 amd64-darwin-tdep.c, amd64-dicos-tdep.c, amd64-fbsd-nat.c,
5609 amd64-fbsd-tdep.c, amd64-linux-nat.c, amd64-linux-tdep.c,
5610 amd64-nbsd-tdep.c, amd64-obsd-tdep.c, amd64-sol2-tdep.c,
5611 amd64-tdep.c, amd64-windows-tdep.c, arch-utils.c,
5612 arch/aarch64-insn.c, arch/aarch64.c, arch/aarch64.h, arch/amd64.c,
5613 arch/amd64.h, arch/arm-get-next-pcs.c, arch/arm-linux.c,
5614 arch/arm.c, arch/i386.c, arch/i386.h, arch/ppc-linux-common.c,
5615 arch/riscv.c, arch/riscv.h, arch/tic6x.c, arm-tdep.c, auto-load.c,
5616 auxv.c, ax-gdb.c, ax-general.c, ax.h, breakpoint.c, breakpoint.h,
5617 btrace.c, btrace.h, build-id.c, build-id.h, c-lang.h, charset.c,
5618 charset.h, cli/cli-cmds.c, cli/cli-cmds.h, cli/cli-decode.c,
5619 cli/cli-dump.c, cli/cli-option.h, cli/cli-script.c,
5620 coff-pe-read.c, command.h, compile/compile-c-support.c,
5621 compile/compile-c.h, compile/compile-cplus-symbols.c,
5622 compile/compile-cplus-types.c, compile/compile-cplus.h,
5623 compile/compile-loc2c.c, compile/compile.c, completer.c,
5624 completer.h, contrib/ari/gdb_ari.sh, corefile.c, corelow.c,
5625 cp-support.c, cp-support.h, cp-valprint.c, csky-tdep.c, ctf.c,
5626 darwin-nat.c, debug.c, defs.h, disasm-selftests.c, disasm.c,
5627 disasm.h, dtrace-probe.c, dwarf-index-cache.c,
5628 dwarf-index-cache.h, dwarf-index-write.c, dwarf2-frame.c,
5629 dwarf2expr.c, dwarf2loc.c, dwarf2read.c, event-loop.c,
5630 event-top.c, exceptions.c, exec.c, extension.h, fbsd-nat.c,
5631 features/aarch64-core.c, features/aarch64-fpu.c,
5632 features/aarch64-pauth.c, features/aarch64-sve.c,
5633 features/i386/32bit-avx.c, features/i386/32bit-avx512.c,
5634 features/i386/32bit-core.c, features/i386/32bit-linux.c,
5635 features/i386/32bit-mpx.c, features/i386/32bit-pkeys.c,
5636 features/i386/32bit-segments.c, features/i386/32bit-sse.c,
5637 features/i386/64bit-avx.c, features/i386/64bit-avx512.c,
5638 features/i386/64bit-core.c, features/i386/64bit-linux.c,
5639 features/i386/64bit-mpx.c, features/i386/64bit-pkeys.c,
5640 features/i386/64bit-segments.c, features/i386/64bit-sse.c,
5641 features/i386/x32-core.c, features/riscv/32bit-cpu.c,
5642 features/riscv/32bit-csr.c, features/riscv/32bit-fpu.c,
5643 features/riscv/64bit-cpu.c, features/riscv/64bit-csr.c,
5644 features/riscv/64bit-fpu.c, features/tic6x-c6xp.c,
5645 features/tic6x-core.c, features/tic6x-gp.c, filename-seen-cache.h,
5646 findcmd.c, findvar.c, fork-child.c, gcore.c, gdb_bfd.c, gdb_bfd.h,
5647 gdb_proc_service.h, gdb_regex.c, gdb_select.h, gdb_usleep.c,
5648 gdbarch-selftests.c, gdbthread.h, gdbtypes.h, gnu-nat.c,
5649 go32-nat.c, guile/guile.c, guile/scm-ports.c,
5650 guile/scm-safe-call.c, guile/scm-type.c, i386-fbsd-nat.c,
5651 i386-fbsd-tdep.c, i386-go32-tdep.c, i386-linux-nat.c,
5652 i386-linux-tdep.c, i386-tdep.c, i387-tdep.c,
5653 ia64-libunwind-tdep.c, ia64-linux-nat.c, inf-child.c,
5654 inf-ptrace.c, infcall.c, infcall.h, infcmd.c, inferior-iter.h,
5655 inferior.c, inferior.h, inflow.c, inflow.h, infrun.c, infrun.h,
5656 inline-frame.c, language.h, linespec.c, linux-fork.c, linux-nat.c,
5657 linux-tdep.c, linux-thread-db.c, location.c, machoread.c,
5658 macrotab.h, main.c, maint.c, maint.h, memattr.c, memrange.h,
5659 mi/mi-cmd-break.h, mi/mi-cmd-env.c, mi/mi-cmd-stack.c,
5660 mi/mi-cmd-var.c, mi/mi-interp.c, mi/mi-main.c, mi/mi-parse.h,
5661 minsyms.c, mips-linux-tdep.c, namespace.h,
5662 nat/aarch64-linux-hw-point.c, nat/aarch64-linux-hw-point.h,
5663 nat/aarch64-linux.c, nat/aarch64-sve-linux-ptrace.c,
5664 nat/amd64-linux-siginfo.c, nat/fork-inferior.c,
5665 nat/linux-btrace.c, nat/linux-btrace.h, nat/linux-namespaces.c,
5666 nat/linux-nat.h, nat/linux-osdata.c, nat/linux-personality.c,
5667 nat/linux-procfs.c, nat/linux-ptrace.c, nat/linux-ptrace.h,
5668 nat/linux-waitpid.c, nat/mips-linux-watch.c,
5669 nat/mips-linux-watch.h, nat/ppc-linux.c, nat/x86-dregs.c,
5670 nat/x86-dregs.h, nat/x86-linux-dregs.c, nat/x86-linux.c,
5671 nto-procfs.c, nto-tdep.c, objfile-flags.h, objfiles.c, objfiles.h,
5672 obsd-nat.c, observable.h, osdata.c, p-valprint.c, parse.c,
5673 parser-defs.h, ppc-linux-nat.c, printcmd.c, probe.c, proc-api.c,
5674 procfs.c, producer.c, progspace.h, psymtab.h,
5675 python/py-framefilter.c, python/py-inferior.c, python/py-ref.h,
5676 python/py-type.c, python/python.c, record-btrace.c, record-full.c,
5677 record.c, record.h, regcache-dump.c, regcache.c, regcache.h,
5678 remote-fileio.c, remote-fileio.h, remote-sim.c, remote.c,
5679 riscv-tdep.c, rs6000-aix-tdep.c, rust-exp.y, s12z-tdep.c,
5680 selftest-arch.c, ser-base.c, ser-event.c, ser-pipe.c, ser-tcp.c,
5681 ser-unix.c, skip.c, solib-aix.c, solib-target.c, solib.c,
5682 source-cache.c, source.c, source.h, sparc-nat.c, spu-linux-nat.c,
5683 stack.c, stap-probe.c, symfile-add-flags.h, symfile.c, symfile.h,
5684 symtab.c, symtab.h, target-descriptions.c, target-descriptions.h,
5685 target-memory.c, target.c, target.h, target/waitstatus.c,
5686 target/waitstatus.h, thread-iter.h, thread.c, tilegx-tdep.c,
5687 top.c, top.h, tracefile-tfile.c, tracefile.c, tracepoint.c,
5688 tracepoint.h, tui/tui-io.c, ui-file.c, ui-out.h,
5689 unittests/array-view-selftests.c,
5690 unittests/child-path-selftests.c, unittests/cli-utils-selftests.c,
5691 unittests/common-utils-selftests.c,
5692 unittests/copy_bitwise-selftests.c, unittests/environ-selftests.c,
5693 unittests/format_pieces-selftests.c,
5694 unittests/function-view-selftests.c,
5695 unittests/lookup_name_info-selftests.c,
5696 unittests/memory-map-selftests.c, unittests/memrange-selftests.c,
5697 unittests/mkdir-recursive-selftests.c,
5698 unittests/observable-selftests.c,
5699 unittests/offset-type-selftests.c, unittests/optional-selftests.c,
5700 unittests/parse-connection-spec-selftests.c,
5701 unittests/ptid-selftests.c, unittests/rsp-low-selftests.c,
5702 unittests/scoped_fd-selftests.c,
5703 unittests/scoped_mmap-selftests.c,
5704 unittests/scoped_restore-selftests.c,
5705 unittests/string_view-selftests.c, unittests/style-selftests.c,
5706 unittests/tracepoint-selftests.c, unittests/unpack-selftests.c,
5707 unittests/utils-selftests.c, unittests/xml-utils-selftests.c,
5708 utils.c, utils.h, valarith.c, valops.c, valprint.c, value.c,
5709 value.h, varobj.c, varobj.h, windows-nat.c, x86-linux-nat.c,
5710 xml-support.c, xml-support.h, xml-tdesc.h, xstormy16-tdep.c,
5711 xtensa-linux-nat.c, dwarf2read.h: Change common to gdbsupport.
5712
5b0e2db4
AB
57132019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
5714
5715 * linespec.c (decode_digits_list_mode): Set explicit_line to a
5716 bool value.
5717 (decode_digits_ordinary): Set explicit_line field in sal.
5718 * symtab.c (skip_prologue_sal): Don't skip prologue for a
5719 symtab_and_line that was set on an explicit line number in
5720 assembler code. Do always update the recorded symtab and line if
5721 we do skip the prologue.
5722
0ba852ab
AB
57232019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
5724
5725 * breakpoint.c (set_breakpoint_location_function): Remove
5726 explicit_loc parameter.
5727 (momentary_breakpoint_from_master): Update call to
5728 set_breakpoint_location_function.
5729 (add_location_to_breakpoint): Likewise.
5730
b3a7d171
AB
57312019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
5732
5733 * riscv-tdep.c (riscv_features_from_gdbarch_info): Don't modify
5734 required features based on default bfd type when no specific bfd
5735 is present.
5736
1f6f6e21
PW
57372019-07-08 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5738
5739 * NEWS: Mention that GDB printf and eval commands can now print
5740 C-style and Ada-style convenience var strings without
5741 calling the inferior.
5742 * printcmd.c (printf_c_string): Locally print GDB internal var
5743 instead of transiting via the inferior.
5744 (printf_wide_c_string): Likewise.
5745
57462019-07-04 Alan Hayward <alan.hayward@arm.com>
ea142fbf 5747
5862c886 5748 PR breakpoints/25011
ea142fbf
AH
5749 * symfile.c (symbol_file_command): Call solib_create_inferior_hook.
5750
0598af48
TT
57512019-07-04 Tom Tromey <tom@tromey.com>
5752
5753 PR tui/24724:
5754 * tui/tui-winsource.c (tui_clear_source_content): Update.
5755 (tui_source_window_base::set_is_exec_point_at): Fix comment.
5756 (tui_update_breakpoint_info): Update.
5757 (tui_set_exec_info_content): Update.
5758 * tui/tui-source.c (tui_set_source_content_nil): Update.
5759 * tui/tui-disasm.c (tui_set_disassem_content): Don't set
5760 has_break.
5761 * tui/tui-data.h (enum tui_bp_flag): New.
5762 (tui_bp_flags): New enum flags type.
5763 (struct tui_source_element) <break_mode>: Change type. Rename
5764 from has_break.
5765 (TUI_BP_ENABLED, TUI_BP_DISABLED, TUI_BP_HIT)
5766 (TUI_BP_CONDITIONAL, TUI_BP_HARDWARE): Don't define. Now enum
5767 constants.
5768 * tui/tui-winsource.h: Fix comment.
5769
350fab54
AH
57702019-07-04 Alan Hayward <alan.hayward@arm.com>
5771
5772 * aarch32-linux-nat.h (VFP_REGS_SIZE): Remove define.
5773 * aarch64-linux-nat.c (fetch_fpregs_from_thread)
5774 (store_fpregs_to_thread)
5775 (aarch64_linux_nat_target::read_description): Use ARM_VFP3_REGS_SIZE.
5776 * arch/arm.h (IWMMXT_VEC_REGISTER_SIZE, ARM_CORE_REGS_SIZE)
5777 (ARM_FP_REGS_SIZE, ARM_VFP2_REGS_SIZE, ARM_VFP3_REGS_SIZE)
5778 (IWMMXT_REGS_SIZE): Add define.
5779 * arm-linux-nat.c (IWMMXT_REGS_SIZE): Remove define.
5780 (fetch_vfp_regs, store_vfp_regs)
5781 (arm_linux_nat_target::read_description): Use ARM_VFP3_REGS_SIZE.
5782 * arm-tdep.c (arm_register_g_packet_guesses): Use new defines.
5783
f0452268
AH
57842019-07-04 Alan Hayward <alan.hayward@arm.com>
5785
5786 * arch/arm-get-next-pcs.c (thumb_get_next_pcs_raw): Use ARM_
5787 defines.
5788 * arch/arm-linux.c (arm_linux_sigreturn_next_pc_offset): Likewise.
5789 * arch/arm.h (INT_REGISTER_SIZE) Rename from...
5790 (ARM_INT_REGISTER_SIZE): ...to this.
5791 (ARM_FP_REGISTER_SIZE) (ARM_VFP_REGISTER_SIZE): Add define.
5792 * arm-linux-tdep.c (ARM_LINUX_JB_ELEMENT_SIZE)
5793 (ARM_LINUX_SIZEOF_GREGSET, arm_linux_supply_gregset)
5794 (arm_linux_collect_gregset, supply_nwfpe_register)
5795 (collect_nwfpe_register, arm_linux_collect_nwfpe): Use ARM_
5796 defines.
5797 * arm-linux-tdep.h (ARM_LINUX_SIZEOF_NWFPE, NWFPE_FPSR_OFFSET)
5798 (NWFPE_FPCR_OFFSET, NWFPE_TAGS_OFFSET): Likewise
5799 * arm-nbsd-tdep.c (ARM_NBSD_JB_ELEMENT_SIZE): Likewise.
5800 * arm-tdep.c (arm_push_dummy_call, arm_extract_return_value)
5801 (arm_return_in_memory, arm_store_return_value)
5802 (arm_get_longjmp_target, arm_register_g_packet_guesses)
5803 (arm_record_ld_st_multiple): Likewise.
5804 * arm-tdep.h (FP_REGISTER_SIZE, VFP_REGISTER_SIZE): Remove.
5805 * arm-wince-tdep.c (ARM_WINCE_JB_ELEMENT_SIZE): Use ARM_ defines.
5806
e935475c
AH
58072019-07-04 Alan Hayward <alan.hayward@arm.com>
5808
5809 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Use
5810 AARCH64_DISPLACED_MODIFIED_INSNS.
5811 * aarch64-tdep.c (struct aarch64_displaced_step_data)
5812 (aarch64_displaced_step_copy_insn): Likewise.
5813 * aarch64-tdep.h (DISPLACED_MODIFIED_INSNS): Rename from..
5814 (AARCH64_DISPLACED_MODIFIED_INSNS): ...to this.
5815 * arm-linux-tdep.c (arm_linux_cleanup_svc): Use
5816 ARM_DISPLACED_MODIFIED_INSNS.
5817 * arm-tdep.c (arm_gdbarch_init): Likewise.
5818 * arm-tdep.h (DISPLACED_MODIFIED_INSNS): Rename from..
5819 (ARM_DISPLACED_MODIFIED_INSNS): ...to this.
5820 (struct arm_displaced_step_closure): Use
5821 ARM_DISPLACED_MODIFIED_INSNS.
5822
df0bb381
AH
58232019-07-04 Alan Hayward <alan.hayward@arm.com>
5824
5825 * features/Makefile: Remove unused xml files.
5826 * features/aarch64.xml: Remove.
5827 * features/i386/amd64-avx-avx512-linux.xml: Remove.
5828 * features/i386/amd64-avx-avx512.xml: Remove.
5829 * features/i386/amd64-avx-linux.xml: Remove.
5830 * features/i386/amd64-avx-mpx-avx512-pku-linux.xml: Remove.
5831 * features/i386/amd64-avx-mpx-avx512-pku.xml: Remove.
5832 * features/i386/amd64-avx-mpx-linux.xml: Remove.
5833 * features/i386/amd64-avx-mpx.xml: Remove.
5834 * features/i386/amd64-avx.xml: Remove.
5835 * features/i386/amd64-linux.xml: Remove.
5836 * features/i386/amd64-mpx-linux.xml: Remove.
5837 * features/i386/amd64-mpx.xml: Remove.
5838 * features/i386/amd64.xml: Remove.
5839 * features/i386/i386-avx-avx512-linux.xml: Remove.
5840 * features/i386/i386-avx-avx512.xml: Remove.
5841 * features/i386/i386-avx-linux.xml: Remove.
5842 * features/i386/i386-avx-mpx-avx512-pku-linux.xml: Remove.
5843 * features/i386/i386-avx-mpx-avx512-pku.xml: Remove.
5844 * features/i386/i386-avx-mpx-linux.xml: Remove.
5845 * features/i386/i386-avx-mpx.xml: Remove.
5846 * features/i386/i386-avx.xml: Remove.
5847 * features/i386/i386-linux.xml: Remove.
5848 * features/i386/i386-mmx-linux.xml: Remove.
5849 * features/i386/i386-mmx.xml: Remove.
5850 * features/i386/i386-mpx-linux.xml: Remove.
5851 * features/i386/i386-mpx.xml: Remove.
5852 * features/i386/i386.xml: Remove.
5853 * features/i386/x32-avx-avx512-linux.xml: Remove.
5854 * features/i386/x32-avx-linux.xml: Remove.
5855 * features/i386/x32-linux.xml: Remove.
5856
edd6266a
AH
58572019-07-04 Alan Hayward <alan.hayward@arm.com>
5858
5859 * regformats/aarch64.dat: Remove.
5860 * regformats/i386/amd64-avx-avx512-linux.dat: Remove.
5861 * regformats/i386/amd64-avx-linux.dat: Remove.
5862 * regformats/i386/amd64-avx-mpx-avx512-pku-linux.dat: Remove.
5863 * regformats/i386/amd64-avx-mpx-linux.dat: Remove.
5864 * regformats/i386/amd64-linux.dat: Remove.
5865 * regformats/i386/amd64-mpx-linux.dat: Remove.
5866 * regformats/i386/amd64.dat: Remove.
5867 * regformats/i386/i386-avx-avx512-linux.dat: Remove.
5868 * regformats/i386/i386-avx-linux.dat: Remove.
5869 * regformats/i386/i386-avx-mpx-avx512-pku-linux.dat: Remove.
5870 * regformats/i386/i386-avx-mpx-linux.dat: Remove.
5871 * regformats/i386/i386-linux.dat: Remove.
5872 * regformats/i386/i386-mmx-linux.dat: Remove.
5873 * regformats/i386/i386-mpx-linux.dat: Remove.
5874 * regformats/i386/i386.dat: Remove.
5875 * regformats/i386/x32-avx-avx512-linux.dat: Remove.
5876 * regformats/i386/x32-avx-linux.dat: Remove.
5877 * regformats/i386/x32-linux.dat: Remove.
5878
2b40fda7
AH
58792019-07-04 Alan Hayward <alan.hayward@arm.com>
5880
5881 * aarch64-tdep.c: Remove xml self tests.
5882 * amd64-linux-tdep.c: Likewise.
5883 * amd64-tdep.c: Likewise.
5884 * i386-linux-tdep.c: Likewise.
5885 * i386-tdep.c: Likewise.
5886
5f4ba3e7
PA
58872019-07-03 Pedro Alves <palves@redhat.com>
5888
5889 PR cli/24732
5890 * cli/cli-cmds.c (struct pipe_cmd_opts): New.
5891 (pipe_cmd_option_defs): New.
5892 (make_pipe_cmd_options_def_group): New.
5893 (pipe_command): Use gdb::option::process_options.
5894 (pipe_command_completer): New function.
5895 (_initialize_cli_cmds): Install completer for "pipe" command.
5896
3d9be6f5
PA
58972019-07-03 Pedro Alves <palves@redhat.com>
5898
5899 * cli/cli-option.c (union option_value) <string>: New field.
5900 (struct option_def_and_value): Add ctor, move ctor, dtor and
5901 use DISABLE_COPY_AND_ASSIGN.
5902 (option_def_and_value::clear_value): New.
5903 (parse_option, save_option_value_in_ctx, get_val_type_str)
5904 (add_setshow_cmds_for_options): Handle var_string.
5905 * cli-option.h (union option_def::var_address) <string>: New
5906 field.
5907 (struct string_option_def): New.
5908 * maint-test-options.c (struct test_options_opts): Add default
5909 ctor and use DISABLE_COPY_AND_ASSIGN.
5910 <string_opt>: New field.
5911 (test_options_opts::~test_options_opts): New.
5912 (test_options_opts::dump): Also dump "-string".
5913 (test_options_option_defs): Install "string.
5914
41fc454c
PA
59152019-07-03 Pedro Alves <palves@redhat.com>
5916
5917 * cli/cli-option.c (parse_option) <var_enum>: Don't return an
5918 option_value with a null enumeration.
5919 (complete_options): Save the option values in the context.
5920 (save_option_value_in_ctx): New, factored out from ...
5921 (process_options): ... here.
5922 * cli/cli-utils.c (get_ulongest): Don't advance PP until the end
5923 of the function.
5924 * maint-test-options.c (test_options_opts::dump): New, factored
5925 out from ...
5926 (maintenance_test_options_command_mode): ... here.
5927 (maintenance_test_options_command_completion_result): Delete.
5928 (maintenance_test_options_command_completion_text): Update
5929 comment.
5930 (maintenance_show_test_options_completion_result): Change
5931 prototype. Just print
5932 maintenance_test_options_command_completion_text.
5933 (save_completion_result): New.
5934 (maintenance_test_options_completer_mode): Pass options context to
5935 complete_options, and then save a dump.
5936 (_initialize_maint_test_options): Use add_cmd to install "maint
5937 show test-options-completion-result".
5938
fdbc9870
PA
59392019-07-03 Pedro Alves <palves@redhat.com>
5940
5941 * NEWS (New commands): Mention "with" and "maint with".
5942 * cli/cli-cmds.c (with_command_1, with_command_completer_1)
5943 (with_command, with_command_completer): New.
5944 (pipe_command): Adjust to new repeat_previous
5945 interface.
5946 (_initialize_cli_cmds): Install the "with" command and its "w"
5947 alias.
5948 * cli/cli-cmds.h (with_command_1, with_command_completer_1): New
5949 declarations.
5950 * cli/cli-setshow.c (parse_cli_var_uinteger)
5951 (parse_cli_var_zuinteger_unlimited, do_set_command): Handle empty
5952 argument strings for all var_types.
5953 (get_setshow_command_value_string): New, factored out from ...
5954 (do_show_command): ... this.
5955 * cli/cli-setshow.h: Include <string>.
5956 (get_setshow_command_value_string): Declare.
5957 * command.h (repeat_previous): Now returns const char *. Adjust
5958 comment.
5959 * maint.c: Include "cli/cli-cmds.h".
5960 (maintenance_with_cmd, maintenance_with_cmd_completer): New.
5961 (_initialize_maint_cmds): Register the "maintenance with" command.
5962 * top.c (repeat_previous): Move bits from pipe_command here:
5963 Return the saved command line, if any; error out if there's no
5964 command to relaunch.
5965
c6ac8931
PA
59662019-07-03 Pedro Alves <palves@redhat.com>
5967
5968 * NEWS (New commands): Mention "maint set/show test-settings"
5969 instead of "maint test-settings".
5970 * maint-test-settings.c (maintenance_test_settings_list): Delete.
5971 (maintenance_test_settings_set_list): Rename to ...
5972 (maintenance_set_test_settings_list): ... this.
5973 (maintenance_test_settings_show_list): Rename to ...
5974 (maintenance_show_test_settings_list): ... this.
5975 (maintenance_test_settings_cmd): Delete.
5976 (maintenance_test_settings_set_cmd): ...
5977 (maintenance_set_test_settings_cmd): ... this.
5978 (maintenance_test_settings_show_cmd): ...
5979 (maintenance_show_test_settings_cmd): ... this.
5980 (maintenance_test_settings_show_value_cmd):
5981 (maintenance_show_test_settings_value_cmd): ... this.
5982 (_initialize_maint_test_settings): No longer install the "maint
5983 test-settings" prefix command. Rename "maint test-settings set"
5984 to "maint set test-settings", and "maint test-settings show" to
5985 "maint show test-settings". Adjust all subcommands.
5986
d1fcf2fd
PA
59872019-07-03 Pedro Alves <palves@redhat.com>
5988
5989 * maint-test-settings.c: Fix file's intro comment. Replace all
5990 references to "test-options" with references to "test-settings",
5991 in comments.
5992
970f9d09
PA
59932019-07-03 Pedro Alves <palves@redhat.com>
5994
5995 * maint-test-settings.c (maintenance_test_settings_xxx)
5996 (maintenance_test_settings_yyy, maintenance_test_settings_zzz):
5997 New.
5998 (maintenance_test_settings_enums): Use them.
5999 (maintenance_test_settings_enum): Default to
6000 maintenance_test_settings_xxx.
6001 (_initialize_maint_test_settings): Initialize
6002 MAINTENANCE_TEST_SETTINGS_FILENAME.
6003
f3869b1a
SM
60042019-07-02 Simon Marchi <simon.marchi@polymtl.ca>
6005
6006 * breakpoint.h (remove_breakpoints_inf): Change return type to
6007 void, move function documentation here.
6008 * breakpoint.c (remove_breakpoints_inf): Change return type to
6009 void, move function documentation to header.
6010
54d66006
PA
60112019-07-02 Pedro Alves <palves@redhat.com>
6012
6013 * NEWS (Completion improvements): Mention "info threads".
6014 * thread.c (struct info_threads_opts, info_threads_option_defs)
6015 (make_info_threads_options_def_group): New.
6016 (info_threads_command): Use gdb::option::process_options.
6017 (info_threads_command_completer): New.
6018 (_initialize_thread): Use gdb::option::build_help to build the
6019 help text for "info threads".
6020
854f6088
SM
60212019-07-02 Simon Marchi <simon.marchi@polymtl.ca>
6022
6023 * defs.h (generic_load): Move from here...
6024 * symfile.h (generic_load): ... to here. Rename name parameter
6025 to args.
6026 * symfile.c (generic_load): Add comment.
6027
54ee4252
TT
60282019-07-01 Tom Tromey <tromey@adacore.com>
6029
6030 * dwarf2read.c
6031 (dw2_debug_names_iterator::find_vec_in_debug_names): Hoist
6032 declaration of without_params. Fix formatting.
6033
65392b3e
TT
60342019-07-01 Tom Tromey <tromey@adacore.com>
6035
6036 * ada-exp.y (find_primitive_type): Update.
6037 * ada-lang.h (ada_lookup_symbol): Update.
6038 * ada-lang.c (ada_lookup_symbol): Remove "is_a_field_of_this"
6039 parameter.
6040 (ada_lookup_encoded_symbol, ada_lookup_symbol_nonlocal): Update.
6041
7d7571f0
SDJ
60422019-06-28 Sergio Durigan Junior <sergiodj@redhat.com>
6043
6044 PR breakpoints/24541
6045 * gdbarch.c: Regenerate.
6046 * gdbarch.h: Regenerate.
6047 * gdbarch.sh: Add 'stap_adjust_register'.
6048 * i386-tdep.c: Include '<unordered_set>'.
6049 (i386_stap_adjust_register): New function.
6050 (i386_elf_init_abi): Register 'i386_stap_adjust_register'.
6051 * stap-probe.c (stap_parse_register_operand): Call
6052 'gdbarch_stap_adjust_register'.
6053
5af5392a
SDJ
60542019-06-28 Sergio Durigan Junior <sergiodj@redhat.com>
6055
6056 PR python/24742
6057 https://bugzilla.redhat.com/show_bug.cgi?id=1723564
6058 * python/python.c (do_start_initialization): Use 'xmalloc'
6059 instead of 'PyMem_Malloc'.
6060
10d06d82
TT
60612019-06-28 Tom Tromey <tromey@adacore.com>
6062
6063 * dwarf2read.c (partial_die_info::read): Prefer the linkage name
6064 for Ada.
6065
1b7f24cd
TT
60662019-06-27 Tom Tromey <tromey@adacore.com>
6067
6068 * arm-tdep.c (arm_objfile_data_key): Move lower. Change type to
6069 objfile_key.
6070 (arm_find_mapping_symbol, arm_record_special_symbol)
6071 (_initialize_arm_tdep): Update.
6072 (arm_objfile_data_free): Remove.
6073
3d507ff2
TT
60742019-06-27 Tom Tromey <tromey@adacore.com>
6075
6076 * cp-valprint.c (cp_print_value_fields): Pass opts, not options,
6077 to cp_print_static_field.
6078
762c164d
TT
60792019-06-26 Tom Tromey <tromey@adacore.com>
6080
6081 * minsyms.c (lookup_minimal_symbol_solib_trampoline): Remove.
6082 * minsyms.h (lookup_minimal_symbol_solib_trampoline): Don't
6083 declare.
6084
aa2f9bcf
AH
60852019-06-26 Alan Hayward <alan.hayward@arm.com>
6086
6087 * features/aarch64-core.c (create_feature_aarch64_core):
6088 Regenerate.
6089 * features/aarch64-core.xml: Add cpsr flags.
6090
3426ae57
AH
60912019-06-26 Alan Hayward <alan.hayward@arm.com>
6092
6093 * arm-tdep.c (arm_gnu_triplet_regexp): New function.
6094 (arm_gdbarch_init): Add arm_gnu_triplet_regexp.
6095
4838e44c
SM
60962019-06-25 Simon Marchi <simon.marchi@polymtl.ca>
6097
6098 * arm-tdep.c (struct arm_per_objfile) <section_maps_sorted>: New
6099 field.
6100 (arm_find_mapping_symbol): Sort mapping symbol vectors on first
6101 use.
6102 (arm_record_special_symbol): Don't insert new symbol in sorted
6103 position, push it at the end.
6104
54cc7474
SM
61052019-06-25 Simon Marchi <simon.marchi@polymtl.ca>
6106
6107 * arm-tdep.c (struct arm_mapping_symbol) (operator <): New.
6108 (arm_mapping_symbol_s): Remove.
6109 (DEF_VEC_O(arm_mapping_symbol_s)): Remove.
6110 (arm_mapping_symbol_vec): New typedef.
6111 (struct arm_per_objfile): Add constructor.
6112 <section_maps>: Change type to
6113 std::unique_ptr<arm_mapping_symbol_vec[]>.
6114 (arm_compare_mapping_symbols): Remove.
6115 (arm_find_mapping_symbol): Adjust to section_maps type change.
6116 (arm_objfile_data_free): Call delete on arm_per_objfile.
6117 (arm_record_special_symbol): Adjust to section_maps type change.
6118 Allocate arm_per_objfile with new.
6119
b65b566c
PW
61202019-06-25 Philippe Waroquiers <philippe.waroquiers@skynet.be>
6121
6122 * cli/cli-cmds.c (alias_command): Compare the alias prefix
6123 with the command prefix.
6124
c2fc64f5
TT
61252019-06-25 Tom Tromey <tom@tromey.com>
6126
6127 * tui/tui-wingeneral.c (tui_delete_win): Remove "return".
6128 * tui/tui-data.c (~tui_gen_win_info): Remove "if".
6129
fb54fa76
TT
61302019-06-25 Tom Tromey <tom@tromey.com>
6131
6132 * tui/tui-layout.c (init_and_make_win): Assert on unrecognized
6133 type.
6134 * tui/tui-data.h (struct tui_gen_win_info): Make constructor
6135 protected.
6136
f7952c57
TT
61372019-06-25 Tom Tromey <tom@tromey.com>
6138
6139 * tui/tui-winsource.c
6140 (tui_source_window_base::set_is_exec_point_at): Add check against
6141 LOA_ADDRESS.
6142
17568d78
TT
61432019-06-25 Tom Tromey <tom@tromey.com>
6144
6145 * tui/tui-source.c (tui_set_source_content): Don't check before
6146 xfree.
6147 * tui/tui-disasm.c (tui_disassemble): Don't check before xfree.
6148
53e7cdba
TT
61492019-06-25 Tom Tromey <tom@tromey.com>
6150
6151 * tui/tui-winsource.h (tui_update_source_window_as_is)
6152 (tui_alloc_source_buffer, tui_line_is_displayed)
6153 (tui_addr_is_displayed): Change type of win_info.
6154 * tui/tui-winsource.c (tui_update_source_window_as_is)
6155 (tui_clear_source_content, tui_show_source_line)
6156 (tui_show_source_content, tui_source_window_base::refill)
6157 (tui_source_window_base::set_is_exec_point_at)
6158 (tui_source_window_base::set_is_exec_point_at)
6159 (tui_update_breakpoint_info, tui_set_exec_info_content): Update.
6160 (tui_alloc_source_buffer, tui_line_is_displayed)
6161 (tui_addr_is_displayed): Change type of win_info. Update.
6162 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
6163 (tui_source_window_base::do_make_visible_with_new_height):
6164 Update.
6165 * tui/tui-source.c (tui_set_source_content)
6166 (tui_set_source_content_nil)
6167 (tui_source_window::do_scroll_vertical): Update.
6168 * tui/tui-layout.c (show_layout): Update.
6169 * tui/tui-disasm.c (tui_set_disassem_content)
6170 (tui_disasm_window::do_scroll_vertical): Update.
6171 * tui/tui-data.h (tui_win_content): Remove.
6172 (struct tui_gen_win_info) <content, content_size>: Remove.
6173 (struct tui_source_element): Add initializers and destructor.
6174 (union tui_which_element, struct tui_win_element): Remove.
6175 (struct tui_source_window_base) <content>: New field.
6176 (struct tui_data_window): Remove destructor.
6177 (tui_alloc_content, tui_free_win_content)
6178 (tui_free_all_source_wins_content): Don't declare.
6179 * tui/tui-data.c (tui_initialize_static_data): Update.
6180 (init_content_element, tui_alloc_content): Remove.
6181 (~tui_gen_win_info): Update.
6182 (~tui_data_window, tui_free_all_source_wins_content)
6183 (tui_free_win_content, free_content, free_content_elements):
6184 Remove.
6185
7908abbf
TT
61862019-06-25 Tom Tromey <tom@tromey.com>
6187
6188 * tui/tui-winsource.h (tui_clear_source_content)
6189 (tui_erase_source_content, tui_show_source_content): Change type
6190 of win_info.
6191 * tui/tui-winsource.c (tui_clear_source_content)
6192 (tui_erase_source_content, tui_show_source_content): Change type
6193 of win_info.
6194 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
6195 * tui/tui-source.h (tui_set_source_content_nil): Change type of
6196 win_info.
6197 * tui/tui-source.c (tui_set_source_content_nil): Change type of
6198 win_info.
6199 * tui/tui-layout.c (show_source_or_disasm_and_command): Update.
6200
02c28df0
TT
62012019-06-25 Tom Tromey <tom@tromey.com>
6202
6203 * tui/tui-winsource.c (tui_clear_source_content)
6204 (tui_source_window_base::set_is_exec_point_at): Update.
6205 * tui/tui-source.c (tui_set_source_content_nil): Update.
6206 * tui/tui-data.h (struct tui_source_element) <is_exec_point>: Now
6207 a bool.
6208 * tui/tui-data.c (init_content_element): Update.
6209
6658b1bf
TT
62102019-06-25 Tom Tromey <tom@tromey.com>
6211
6212 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Update.
6213 * tui/tui-win.c (make_invisible_and_set_new_height): Update.
6214 * tui/tui-layout.c (init_and_make_win): Update.
6215 * tui/tui.h (enum tui_win_type): Update.
6216 * tui/tui-data.h (tui_win_is_auxiliary): Rename from
6217 tui_win_is_auxillary.
6218 * tui/tui-data.c (tui_win_is_auxiliary): Rename from
6219 tui_win_is_auxillary.
6220
21e1c91e
TT
62212019-06-25 Tom Tromey <tom@tromey.com>
6222
6223 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Update.
6224 * tui/tui-windata.c (tui_data_window::first_data_item_displayed)
6225 (tui_delete_data_content_windows, tui_display_all_data)
6226 (tui_data_window::do_scroll_vertical, tui_display_data_from):
6227 Update.
6228 * tui/tui-win.c (tui_data_window::set_new_height): Simplify.
6229 * tui/tui-regs.c (tui_last_regs_line_no)
6230 (tui_line_from_reg_element_no, tui_first_reg_element_no_inline)
6231 (tui_show_registers): Update.
6232 (tui_show_register_group): Return void. Update.
6233 (tui_display_registers_from, tui_display_reg_element_at_line)
6234 (tui_display_registers_from_line, tui_check_register_values):
6235 Update.
6236 * tui/tui-data.h (union tui_which_element) <data_window>: Remove
6237 member.
6238 (struct tui_data_window) <regs_content>: Now a std::vector.
6239 <regs_content_count>: Remove.
6240 (tui_add_content_elements, tui_free_data_content): Don't declare.
6241 * tui/tui-data.c (tui_data_window::clear_detail): Update.
6242 (init_content_element): Remove DATA_WIN case. Add assert.
6243 (tui_add_content_elements): Remove.
6244 (tui_data_window): Update.
6245 (tui_free_data_content): Remove.
6246 (free_content_elements): Remove DATA_WIN case.
6247
115ac53b
TT
62482019-06-25 Tom Tromey <tom@tromey.com>
6249
6250 * tui/tui-data.c (tui_data_item_window): Update.
6251 * tui/tui-windata.h (tui_check_data_values): Don't declare.
6252 * tui/tui-windata.c (tui_display_all_data)
6253 (tui_display_data_from_line): Update.
6254 (tui_check_data_values): Remove.
6255 * tui/tui-regs.c (tui_show_register_group)
6256 (tui_display_reg_element_at_line): Update.
6257 * tui/tui-hooks.c (tui_register_changed)
6258 (tui_refresh_frame_and_register_information): Call
6259 tui_check_register_values.
6260 * tui/tui-data.h (struct tui_data_window) <data_content,
6261 data_content_count, data_type>: Remove.
6262 (enum tui_data_type): Remove.
6263
6264 * tui/tui-data.c (tui_data_window::clear_detail)
6265 (~tui_data_window): Update.
6266
eaf9738b
TT
62672019-06-25 Tom Tromey <tom@tromey.com>
6268
6269 * tui/tui-windata.h (tui_first_data_item_displayed): Don't
6270 declare.
6271 * tui/tui-windata.c (tui_data_window::first_data_item_displayed):
6272 Rename from tui_first_data_item_displayed. Update.
6273 (tui_data_window::refresh_all)
6274 (tui_data_window::do_scroll_vertical): Update.
6275 * tui/tui-data.h (struct tui_data_window)
6276 <first_data_item_displayed>: Declare new method.
6277
31ca4723
TT
62782019-06-25 Tom Tromey <tom@tromey.com>
6279
6280 * tui/tui-data.h (tui_init_generic_part): Don't declare.
6281 * tui/tui-data.c (tui_init_generic_part): Remove, moving
6282 contents...
6283 (tui_initialize_static_data): ...here.
6284
41bcff7f
TT
62852019-06-25 Tom Tromey <tom@tromey.com>
6286
6287 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
6288 (tui_display_registers_from, tui_check_register_values): Update.
6289 (tui_display_register): Remove win_info parameter; update.
6290 (tui_get_register): Change type of parameters.
6291 * tui/tui-data.h (struct tui_data_element): Remove.
6292 (union tui_which_element) <data>: Remove.
6293 <data_window>: Change type.
6294 (struct tui_data_item_window): New.
6295 * tui/tui-data.c (init_content_element): Remove DATA_ITEM_WIN
6296 case. Add assert.
6297 (~tui_data_item_window): New destructor.
6298 (free_content_elements): Remove DATA_ITEM_WIN case.
6299
d2802c33
TT
63002019-06-25 Tom Tromey <tom@tromey.com>
6301
6302 * tui/tui.h (enum tui_win_type) <MAX_WINDOWS, UNDEFINED_WIN>:
6303 Remove.
6304
dd835f8b
TT
63052019-06-25 Tom Tromey <tom@tromey.com>
6306
6307 * tui/tui-data.h (struct tui_command_element): Remove.
6308 (union tui_which_element) <command>: Remove.
6309 * tui/tui-data.c (init_content_element): Remove CMD_WIN case. Add
6310 assert.
6311 (free_content_elements): Remove CMD_WIN case.
6312
bd7db367
TT
63132019-06-25 Tom Tromey <tom@tromey.com>
6314
6315 * tui/tui-layout.c (tui_set_layout): Update.
6316 * tui/tui-data.h (struct tui_layout_def) <split>: Remove.
6317 * tui/tui-data.c (layout_def): Update.
6318
3add462f
TT
63192019-06-25 Tom Tromey <tom@tromey.com>
6320
6321 * tui/tui-wingeneral.c (tui_refresh_all): Update.
6322 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
6323 (tui_source_window_base::set_new_height): Update.
6324 * tui/tui-stack.c (tui_make_status_line): Change parameter type.
6325 Update.
6326 (tui_set_locator_fullname, tui_set_locator_info)
6327 (tui_show_frame_info): Update.
6328 * tui/tui-source.c (tui_set_source_content)
6329 (tui_source_is_displayed): Update.
6330 * tui/tui-layout.c (show_source_disasm_command, show_data)
6331 (show_source_or_disasm_and_command): Update.
6332 * tui/tui-disasm.c (tui_set_disassem_content)
6333 (tui_get_begin_asm_address): Update.
6334 * tui/tui-data.h (struct tui_locator_element): Remove.
6335 (union tui_which_element) <locator>: Remove.
6336 (struct tui_locator_window): New.
6337 (tui_locator_win_info_ptr): Change return type.
6338 * tui/tui-data.c (_locator): Change type.
6339 (tui_locator_win_info_ptr): Change return type.
6340 (init_content_element): Remove LOCATOR_WIN case. Add assert.
6341 (tui_alloc_content): Add assert.
6342
489e9d8b
TT
63432019-06-25 Tom Tromey <tom@tromey.com>
6344
6345 * tui/tui-winsource.c
6346 (tui_exec_info_window::maybe_allocate_content): New method.
6347 (tui_set_exec_info_content, tui_show_exec_info_content): Update.
6348 * tui/tui-layout.c (init_and_make_win): Add EXEC_INFO_WIN case.
6349 (make_source_or_disasm_window): Add cast.
6350 * tui/tui-data.h (union tui_which_element) <simple_string>:
6351 Remove.
6352 (struct tui_source_info): New.
6353 (struct tui_source_window_base) <execution_info>: Change type.
6354 * tui/tui-data.c (init_content_element): Remove EXEC_INFO_WIN
6355 case, and add assert.
6356 (tui_alloc_content): Add assert.
6357
c3fabb7d
TT
63582019-06-25 Tom Tromey <tom@tromey.com>
6359
6360 * tui/tui-data.h (tui_alloc_win_info): Don't declare.
6361 * tui/tui-layout.c (init_and_make_win): Use "new" directly.
6362 * tui/tui-data.c (tui_alloc_win_info): Remove.
6363
bbc228ee
TT
63642019-06-25 Tom Tromey <tom@tromey.com>
6365
6366 * tui/tui-win.c (tui_set_win_focus_to): Don't check window type.
6367 * tui/tui-wingeneral.c (tui_unhighlight_win): Check
6368 can_highlight.
6369
5fcee43a
TT
63702019-06-25 Tom Tromey <tom@tromey.com>
6371
6372 * tui/tui-win.c (tui_source_window_base::update_tab_width): Call
6373 make_visible_with_new_height method.
6374 (tui_win_info::make_visible_with_new_height): New method.
6375 (tui_source_window_base::do_make_visible_with_new_height)
6376 (tui_data_window::do_make_visible_with_new_height)
6377 (tui_cmd_window::do_make_visible_with_new_height): New methods.
6378 (make_visible_with_new_height): Remove.
6379 (tui_resize_all, tui_adjust_win_heights): Use
6380 make_visible_with_new_height method.
6381 * tui/tui-data.h (struct tui_win_info)
6382 <do_make_visible_with_new_height, make_visible_with_new_height>:
6383 New methods.
6384 (struct tui_source_window_base, struct tui_data_window)
6385 (struct tui_cmd_window) <do_make_visible_with_new_height>: New
6386 methods.
6387
d83f1fe6
TT
63882019-06-25 Tom Tromey <tom@tromey.com>
6389
6390 * tui/tui-win.c (tui_source_window_base::update_tab_width): New
6391 method.
6392 (update_tab_width): Call update_tab_width method.
6393 * tui/tui-data.h (struct tui_win_info)
6394 (struct tui_source_window_base) <update_tab_width>: New methods.
6395
17374de4
TT
63962019-06-25 Tom Tromey <tom@tromey.com>
6397
6398 * tui/tui-wingeneral.h (tui_make_window): Change type of "box_it"
6399 parameter.
6400 * tui/tui-wingeneral.c (tui_make_window): Change type of "box_it"
6401 parameter.
6402 (tui_gen_win_info::make_visible): Update.
6403 * tui/tui-layout.c (init_and_make_win): Change type of "box_it"
6404 parameter.
6405 * tui/tui-data.h (enum tui_box): New enum.
6406 (BOX_WINDOW, DONT_BOX_WINDOW): Remove defines.
6407
f936bca2
TT
64082019-06-25 Tom Tromey <tom@tromey.com>
6409
6410 * tui/tui-layout.c (make_source_or_disasm_window): Always use
6411 init_and_make_win for EXEC_INFO_WIN.
6412 * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>: No
6413 longer inline.
6414 (struct tui_win_info) <~tui_win_info>: Inline.
6415 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
6416 Don't declare.
6417 * tui/tui-data.c (source_win, disasm_win): Remove globals.
6418 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
6419 Remove.
6420 (tui_initialize_static_data): Update.
6421 (~tui_gen_win_info): Handle more cleanup here.
6422 (~tui_source_window_base): Delete "execution_info".
6423 (~tui_win_info): Move code to ~tui_gen_win_info; remove.
6424
d6ba6a11
TT
64252019-06-25 Tom Tromey <tom@tromey.com>
6426
6427 * tui/tui-layout.c (make_command_window): Don't set
6428 can_highlight.
6429 (show_source_disasm_command): Call the reset method.
6430 (show_data): Don't set can_highlight. Call the reset method.
6431 (tui_gen_win_info::reset): Rename from init_gen_win_info
6432 (init_and_make_win): Simplify. Return tui_gen_win_info.
6433 (show_source_or_disasm_and_command): Call the reset method.
6434 * tui/tui-data.h (struct tui_gen_win_info) <reset>: New method.
6435 (struct tui_cmd_window): Set can_highlight.
6436
48a3bd16
TT
64372019-06-25 Tom Tromey <tom@tromey.com>
6438
6439 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Rename
6440 from make_visible.
6441 (tui_make_visible, tui_make_invisible): Rewrite.
6442 (tui_win_info::make_visible): Remove.
6443 (tui_source_window_base::make_visible): Update.
6444 * tui/tui-data.h (struct tui_gen_win_info) <make_visible>: New
6445 method. Moved from...
6446 (struct tui_win_info) <make_visible>: ...here.
6447
c3bd716f
TT
64482019-06-25 Tom Tromey <tom@tromey.com>
6449
6450 * tui/tui-winsource.c
6451 (tui_source_window_base::do_scroll_horizontal): Remove direction
6452 parameter.
6453 * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Remove
6454 direction parameter.
6455 * tui/tui-win.c (tui_win_info::forward_scroll)
6456 (tui_win_info::backward_scroll, tui_win_info::left_scroll)
6457 (tui_win_info::right_scroll): Update.
6458 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Remove
6459 direction parameter.
6460 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Remove
6461 direction parameter.
6462 * tui/tui-data.h (enum tui_scroll_direction): Remove.
6463 (struct tui_win_info) <do_scroll_vertical, do_scroll_horizontal>:
6464 Remove direction parameter.
6465 (struct tui_source_window_base, struct tui_source_window)
6466 (struct tui_disasm_window, struct tui_data_window)
6467 (struct tui_cmd_window): Update.
6468
21c32dca
TT
64692019-06-25 Tom Tromey <tom@tromey.com>
6470
6471 * tui/tui-winsource.h (tui_set_exec_info_content)
6472 (tui_show_exec_info_content, tui_erase_exec_info_content)
6473 (tui_clear_exec_info_content, tui_update_exec_info): Change
6474 argument to tui_source_window_base.
6475 * tui/tui-winsource.c (tui_set_exec_info_content)
6476 (tui_show_exec_info_content, tui_erase_exec_info_content)
6477 (tui_clear_exec_info_content, tui_update_exec_info): Change
6478 argument to tui_source_window_base.
6479
73fbdc65
TT
64802019-06-25 Tom Tromey <tom@tromey.com>
6481
6482 * tui/tui-winsource.h (tui_set_exec_info_content): Return void.
6483 * tui/tui-winsource.c (tui_set_exec_info_content): Return void.
6484
33325343
TT
64852019-06-25 Tom Tromey <tom@tromey.com>
6486
6487 * tui/tui-winsource.c (tui_set_exec_info_content): Remove NULL
6488 check.
6489
29d2c474
TT
64902019-06-25 Tom Tromey <tom@tromey.com>
6491
6492 * tui/tui-winsource.h (tui_alloc_source_buffer): Change return
6493 type to void.
6494 * tui/tui-winsource.c (tui_alloc_source_buffer): Change return
6495 type to void.
6496 * tui/tui-source.c (tui_set_source_content): Update.
6497 * tui/tui-disasm.c (tui_set_disassem_content): Update.
6498
152f3f4b
TT
64992019-06-25 Tom Tromey <tom@tromey.com>
6500
6501 * tui/tui-win.c (window_name_completer, tui_set_focus)
6502 (tui_all_windows_info): Use name method.
6503 * tui/tui-data.h (struct tui_gen_win_info)
6504 (struct tui_source_window, struct tui_disasm_window)
6505 (struct tui_data_window, struct tui_cmd_window) <name>: New
6506 method.
6507 (tui_win_name): Don't declare.
6508 * tui/tui-data.c (tui_partial_win_by_name): Use name method.
6509 (tui_win_name): Remove.
6510
be4da588
TT
65112019-06-25 Tom Tromey <tom@tromey.com>
6512
6513 * tui/tui-winsource.h (tui_update_source_window)
6514 (tui_update_source_window_as_is): Change parameter type.
6515 * tui/tui-winsource.c (tui_update_source_window): Change win_info
6516 to be a tui_source_window_base.
6517 (tui_update_source_window_as_is): Likewise.
6518 * tui/tui-win.c (make_visible_with_new_height): Update.
6519
5b81daba
TT
65202019-06-25 Tom Tromey <tom@tromey.com>
6521
6522 * tui/tui-winsource.c (tui_erase_source_content)
6523 (tui_show_source_content, tui_show_exec_info_content)
6524 (tui_erase_exec_info_content): Use refresh_window method.
6525 * tui/tui-wingeneral.h (tui_refresh_win): Don't declare.
6526 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Rename
6527 from tui_refresh_win.
6528 (tui_data_window::refresh_window): New method.
6529 (tui_win_info::refresh, tui_source_window_base::refresh)
6530 (tui_refresh_all): Use refresh_window method.
6531 * tui/tui-stack.c (tui_show_locator_content): Call refresh_window
6532 method.
6533 * tui/tui-regs.c (tui_display_register): Call refresh_window
6534 method.
6535 * tui/tui-layout.c (show_source_disasm_command)
6536 (show_source_or_disasm_and_command): Call refresh_window method.
6537 * tui/tui-data.h (struct tui_gen_win_info)
6538 (struct tui_data_window, struct tui_cmd_window) <refresh_window>:
6539 New method.
6540
cb2ce893
TT
65412019-06-25 Tom Tromey <tom@tromey.com>
6542
6543 * tui/tui.c (tui_rl_other_window, tui_enable)
6544 (tui_is_window_visible, tui_get_command_dimension): Update.
6545 * tui/tui-winsource.c (tui_update_source_window_as_is)
6546 (tui_clear_source_content, tui_erase_source_content)
6547 (tui_show_source_line, tui_source_window_base::refill)
6548 (tui_source_window_base::do_scroll_horizontal)
6549 (tui_source_window_base::set_is_exec_point_at)
6550 (tui_update_breakpoint_info, tui_set_exec_info_content)
6551 (tui_alloc_source_buffer, tui_line_is_displayed)
6552 (tui_addr_is_displayed): Update.
6553 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win)
6554 (tui_check_and_display_highlight_if_needed)
6555 (tui_win_info::make_visible, tui_win_info::refresh)
6556 (tui_refresh_all): Update.
6557 * tui/tui-windata.c (tui_first_data_item_displayed)
6558 (tui_delete_data_content_windows, tui_erase_data_content)
6559 (tui_display_all_data, tui_data_window::refresh_all)
6560 (tui_check_data_values): Update.
6561 * tui/tui-win.c (window_name_completer, tui_update_gdb_sizes)
6562 (tui_set_win_focus_to, tui_win_info::forward_scroll)
6563 (tui_win_info::backward_scroll, tui_refresh_all_win)
6564 (tui_resize_all, tui_set_focus, tui_all_windows_info)
6565 (update_tab_width, tui_set_win_height, tui_adjust_win_heights)
6566 (tui_source_window_base::set_new_height)
6567 (tui_data_window::set_new_height)
6568 (make_invisible_and_set_new_height)
6569 (make_visible_with_new_height, new_height_ok)
6570 (parse_scrolling_args): Update.
6571 * tui/tui-stack.c (tui_show_frame_info): Update.
6572 * tui/tui-source.c (tui_set_source_content)
6573 (tui_set_source_content_nil, tui_source_is_displayed)
6574 (tui_source_window::do_scroll_vertical): Update.
6575 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
6576 (tui_display_registers_from, tui_display_reg_element_at_line)
6577 (tui_check_register_values, tui_reg_command): Update.
6578 * tui/tui-layout.c (tui_default_win_height)
6579 (show_source_disasm_command, show_data, init_and_make_win)
6580 (show_source_or_disasm_and_command): Update.
6581 * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts)
6582 (tui_redisplay_readline, tui_mld_flush)
6583 (tui_mld_erase_entire_line, tui_mld_getc, tui_cont_sig)
6584 (tui_getc): Update.
6585 * tui/tui-disasm.c (tui_set_disassem_content)
6586 (tui_disasm_window::do_scroll_vertical): Update.
6587 * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>:
6588 Now virtual.
6589 (struct tui_win_info): Derive from tui_gen_win_info.
6590 <~tui_win_info>: Mark as override.
6591 <generic>: Remove member.
6592 * tui/tui-data.c (tui_cmd_window::clear_detail, tui_next_win)
6593 (tui_prev_win, tui_partial_win_by_name, tui_win_info)
6594 (~tui_data_window, ~tui_win_info)
6595 (tui_free_all_source_wins_content): Update.
6596 * tui/tui-command.c (tui_refresh_cmd_win): Update.
6597
ab313b35
TT
65982019-06-25 Tom Tromey <tom@tromey.com>
6599
6600 * tui/tui-layout.c (init_and_make_win): Use new.
6601 * tui/tui-data.h (struct tui_gen_win_info): Add constructor,
6602 destructor, initializers.
6603 (tui_alloc_generic_win_info): Don't declare.
6604 * tui/tui-data.c (_locator): Add argument to constructor.
6605 (source_win, disasm_win): New globals.
6606 (exec_info): Remove.
6607 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
6608 Update.
6609 (tui_alloc_generic_win_info): Remove.
6610 (init_content_element): Use new.
6611 (tui_win_info::tui_win_info): Update.
6612 (free_content_elements) <case DATA_WIN>: Use delete.
6613
dc2c33e4
TT
66142019-06-25 Tom Tromey <tom@tromey.com>
6615
6616 * tui/tui-wingeneral.c (tui_refresh_win): Update.
6617 * tui/tui-windata.c (tui_first_data_item_displayed)
6618 (tui_delete_data_content_windows): Update.
6619 * tui/tui-win.c (tui_data_window::set_new_height): Update.
6620 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
6621 (tui_display_registers_from, tui_check_register_values): Update.
6622 * tui/tui-data.h (union tui_which_element) <data_window>: Now a
6623 pointer.
6624 * tui/tui-data.c (init_content_element): Update. Allocate the new
6625 window.
6626 (tui_free_data_content): Update.
6627 (free_content_elements) <case DATA_WIN>: Free the window.
6628
214a5cbe
TT
66292019-06-25 Tom Tromey <tom@tromey.com>
6630
6631 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win):
6632 Update.
6633 * tui/tui-layout.c (make_command_window)
6634 (show_source_disasm_command, show_data, init_and_make_win)
6635 (show_source_or_disasm_and_command): Update.
6636 * tui/tui-data.h (struct tui_win_info) <set_highlight>: New
6637 method.
6638 <can_highight, is_highlighted>: Now bool.
6639 (tui_set_win_highlight): Don't declare.
6640 * tui/tui-data.c (tui_set_win_highlight): Remove.
6641
8e2daf15
TT
66422019-06-25 Tom Tromey <tom@tromey.com>
6643
6644 * tui/tui-wingeneral.c (make_visible): Remove check of window
6645 type.
6646
8903bd8a
TT
66472019-06-25 Tom Tromey <tom@tromey.com>
6648
6649 * tui/tui-win.c (tui_win_info::max_height)
6650 (tui_cmd_window::max_height): New methods.
6651 (new_height_ok): Call max_height.
6652 * tui/tui-data.h (struct tui_win_info, struct tui_cmd_window)
6653 <max_height>: New method.
6654
3f02ce1e
TT
66552019-06-25 Tom Tromey <tom@tromey.com>
6656
6657 * tui/tui-win.c (tui_source_window_base::set_new_height)
6658 (tui_data_window::set_new_height): New methods.
6659 (make_invisible_and_set_new_height): Call set_new_height method.
6660 * tui/tui-data.h (struct tui_win_info)
6661 (struct tui_source_window_base, struct tui_data_window)
6662 <set_new_height>: New method.
6663
1825f487
TT
66642019-06-25 Tom Tromey <tom@tromey.com>
6665
6666 * tui/tui.c (tui_rl_other_window): Call the refresh_all method.
6667 * tui/tui-windata.c (tui_data_window::refresh_all): Rename from
6668 tui_refresh_data_win.
6669 * tui/tui-win.c (tui_source_window_base::refresh_all): New
6670 method.
6671 (tui_refresh_all_win): Call the refresh_all method.
6672 (tui_set_focus): Likewise.
6673 * tui/tui-data.h (struct tui_win_info) <refresh_all>: New method.
6674 (struct tui_source_window_base, struct tui_data_window) <refresh>:
6675 Likewise.
6676
ad54d15b
TT
66772019-06-25 Tom Tromey <tom@tromey.com>
6678
6679 * tui/tui-winsource.h (tui_refill_source_window)
6680 (tui_set_is_exec_point_at): Don't declare.
6681 * tui/tui-winsource.c (tui_update_source_windows_with_addr)
6682 (tui_source_window_base::refill): Rename from
6683 tui_refill_source_window.
6684 (tui_source_window_base::do_scroll_horizontal): Update.
6685 (tui_source_window_base::set_is_exec_point_at): Rename from
6686 tui_set_is_exec_point_at.
6687 (tui_update_all_breakpoint_info): Update.
6688 * tui/tui-stack.c (tui_show_frame_info): Update.
6689 * tui/tui-layout.c (show_data): Add cast.
6690 * tui/tui-hooks.c (tui_redisplay_source): Call refill method.
6691 * tui/tui-data.h (struct tui_source_window_base) <refill,
6692 set_is_exec_point_at>: New methods.
6693 (tui_source_windows, tui_add_to_source_windows): Update types.
6694 (tui_add_to_source_windows): Remove redundant declaration.
6695 * tui/tui-data.c (source_windows): Store tui_source_window_base.
6696 (tui_source_windows): Change return type.
6697 (tui_clear_source_windows_detail): Update.
6698 (tui_add_to_source_windows): Change type of parameter.
6699 (tui_free_all_source_wins_content): Update.
6700
2042b506
TT
67012019-06-25 Tom Tromey <tom@tromey.com>
6702
6703 * tui/tui-wingeneral.c (tui_win_info::refresh)
6704 (tui_source_window_base::refresh): New methods.
6705 (tui_refresh_all): Call the refresh method.
6706 * tui/tui-data.h (struct tui_win_info)
6707 (struct tui_source_window_base) <refresh>: New method.
6708
56122977
TT
67092019-06-25 Tom Tromey <tom@tromey.com>
6710
6711 * tui/tui.h (tui_is_window_visible): Return bool.
6712 * tui/tui.c (tui_is_window_visible): Return bool.
6713 * tui/tui-wingeneral.c (tui_make_window, make_visible)
6714 (tui_make_visible, tui_make_invisible)
6715 (tui_win_info::make_visible)
6716 (tui_source_window_base::make_visible, make_all_visible)
6717 (tui_make_all_visible, tui_make_all_invisible): Update.
6718 * tui/tui-windata.c (tui_delete_data_content_windows): Update.
6719 * tui/tui-data.h (struct tui_gen_win_info) <is_visible>: Now
6720 bool.
6721 (struct tui_win_info, struct tui_source_window_base)
6722 (struct tui_cmd_window) <make_visible>: Change parameter to bool.
6723 * tui/tui-data.c (tui_init_generic_part): Update.
6724
cda37efb
TT
67252019-06-25 Tom Tromey <tom@tromey.com>
6726
6727 * tui/tui-wingeneral.c (tui_win_info::make_visible)
6728 (tui_source_window_base::make_visible): New methods.
6729 (make_all_visible): Make method call.
6730 * tui/tui-data.h (struct tui_win_info) <make_visible>: New method.
6731 (struct tui_source_window_base, struct tui_cmd_window): Override
6732 make_visible.
6733 (tui_win_is_source_type): Don't declare.
6734 * tui/tui-data.c (tui_win_is_source_type): Remove.
6735
6a0ee02c
TT
67362019-06-25 Tom Tromey <tom@tromey.com>
6737
6738 * tui/tui-layout.c (show_source_or_disasm_and_command): Remove
6739 NULL check.
6740
63901aec
TT
67412019-06-25 Tom Tromey <tom@tromey.com>
6742
6743 * tui/tui-data.h (struct tui_data_window, struct tui_cmd_window):
6744 Inline constructor. Add initializers for members.
6745 * tui/tui-data.c (tui_data_window, tui_cmd_window): Remove
6746 constructors; now inline in class.
6747
ceb13a13
TT
67482019-06-25 Tom Tromey <tom@tromey.com>
6749
6750 * tui/tui-regs.c (tui_show_registers): Update.
6751 * tui/tui-data.h (struct tui_data_window) <display_regs>: Now
6752 bool.
6753 * tui/tui-data.c (tui_data_window::clear_detail)
6754 (tui_data_window): Update.
6755
238eb706
TT
67562019-06-25 Tom Tromey <tom@tromey.com>
6757
6758 * tui/tui-windata.c (tui_display_all_data)
6759 (tui_display_data_from_line, tui_display_data_from)
6760 (tui_check_data_values, tui_data_window::do_scroll_vertical):
6761 Update.
6762 * tui/tui-regs.c (tui_last_regs_line_no)
6763 (tui_line_from_reg_element_no, tui_first_reg_element_no_inline)
6764 (tui_show_registers, tui_show_register_group)
6765 (tui_display_registers_from, tui_display_reg_element_at_line)
6766 (tui_display_registers_from_line, tui_check_register_values)
6767 (tui_reg_next, tui_reg_prev): Update.
6768 * tui/tui-layout.c (tui_set_layout, show_data): Update.
6769 * tui/tui-data.h (struct tui_data_info): Remove. Move contents to
6770 tui_data_window.
6771 (struct tui_win_info) <detail>: Remove. Add new fields from
6772 tui_data_info.
6773 (TUI_DATA_WIN): Add cast.
6774 * tui/tui-data.c (tui_data_window::clear_detail, tui_data_window)
6775 (~tui_data_window): Simplify.
6776
81491aa0
TT
67772019-06-25 Tom Tromey <tom@tromey.com>
6778
6779 * tui/tui-layout.c (show_source_disasm_command)
6780 (show_source_or_disasm_and_command): Update.
6781 * tui/tui-io.c (update_cmdwin_start_line)
6782 (tui_redisplay_readline): Update.
6783 * tui/tui-data.h (struct tui_command_info): Remove.
6784 (struct tui_win_info) <detail>: Remove command_info member.
6785 (struct tui_data_window) <start_line>: New member, from
6786 tui_command_info.
6787 (TUI_CMD_WIN): Add casts.
6788
e6e41501
TT
67892019-06-25 Tom Tromey <tom@tromey.com>
6790
6791 * tui/tui-winsource.c (tui_update_source_window)
6792 (tui_refill_source_window)
6793 (tui_source_window_base::do_scroll_horizontal)
6794 (tui_update_breakpoint_info, tui_set_exec_info_content)
6795 (tui_show_exec_info_content, tui_erase_exec_info_content)
6796 (tui_clear_exec_info_content): Update.
6797 * tui/tui-wingeneral.c (make_all_visible, tui_refresh_all):
6798 Update.
6799 * tui/tui-win.c (make_invisible_and_set_new_height)
6800 (make_visible_with_new_height): Update.
6801 * tui/tui-source.c (tui_set_source_content)
6802 (tui_show_symtab_source): Update.
6803 * tui/tui-layout.c (extract_display_start_addr)
6804 (show_source_disasm_command, show_data)
6805 (make_source_or_disasm_window)
6806 (show_source_or_disasm_and_command): Update.
6807 * tui/tui-disasm.c (tui_set_disassem_content): Simplify.
6808 (tui_disasm_window::do_scroll_vertical): Remove shadowing
6809 "gdbarch".
6810 * tui/tui-data.h (struct tui_source_info): Remove. Move contents
6811 to tui_source_window_base.
6812 (struct tui_win_info) <detail>: Remove source_info member.
6813 (struct tui_source_window_base) <has_locator>: Inline.
6814 Move contents from tui_source_info; rename has_locator member to
6815 m_has_locator.
6816 (TUI_SRC_WIN, TUI_DISASM_WIN): Add casts.
6817 * tui/tui-data.c (tui_source_window_base::has_locator): Move to
6818 header file.
6819 (tui_source_window_base::clear_detail, ~tui_source_window_base):
6820 Simplify.
6821 (tui_free_all_source_wins_content): Cast to
6822 tui_source_window_base.
6823
44f0e208
TT
68242019-06-25 Tom Tromey <tom@tromey.com>
6825
6826 * tui/tui-win.c (make_invisible_and_set_new_height)
6827 (make_visible_with_new_height): Call has_locator method.
6828 * tui/tui-layout.c (show_source_disasm_command, show_data)
6829 (show_source_or_disasm_and_command): Update for bool change.
6830 * tui/tui-data.h (struct tui_source_info) <has_locator>: Now bool.
6831 (tui_win_info) <has_locator>: New method.
6832 (struct tui_source_window_base) <has_locator>: New method.
6833 (tui_win_has_locator): Don't declare.
6834 * tui/tui-data.c (tui_source_window_base::has_locator): Rename
6835 from tui_win_has_locator.
6836 (tui_source_window_base): Use false, not FALSE.
6837
7778b912
TT
68382019-06-25 Tom Tromey <tom@tromey.com>
6839
6840 * tui/tui-data.h (tui_clear_win_detail): Don't declare.
6841 * tui/tui-data.c (tui_clear_source_windows_detail): Call the
6842 clear_detail method directly.
6843 (tui_clear_win_detail): Remove.
6844
f83d391c
TT
68452019-06-25 Tom Tromey <tom@tromey.com>
6846
6847 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Use
6848 "this", not TUI_DISASM_WIN.
6849
13446e05
TT
68502019-06-25 Tom Tromey <tom@tromey.com>
6851
6852 * tui/tui-winsource.h (tui_horizontal_source_scroll): Don't
6853 declare.
6854 * tui/tui-winsource.c
6855 (tui_source_window_base::do_scroll_horizontal): Rename from
6856 tui_horizontal_source_scroll.
6857 * tui/tui-windata.h (tui_vertical_data_scroll): Don't declare.
6858 * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Rename
6859 from tui_vertical_data_scroll.
6860 * tui/tui-win.h (tui_scroll): Don't declare.
6861 * tui/tui-win.c (tui_win_info::forward_scroll)
6862 (tui_win_info::backward_scroll, tui_win_info::left_scroll)
6863 (tui_win_info::right_scroll): Rename and update.
6864 (tui_scroll_forward_command, tui_scroll_backward_command)
6865 (tui_scroll_left_command, tui_scroll_right_command): Update.
6866 (tui_scroll): Remove.
6867 * tui/tui-source.h: Don't declare tui_vertical_source_scroll.
6868 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Rename
6869 from tui_vertical_source_scroll.
6870 * tui/tui-disasm.h (tui_vertical_disassem_scroll): Don't declare.
6871 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Rename
6872 from tui_vertical_disassem_scroll.
6873 * tui/tui-data.h (struct tui_win_info) <do_scroll_vertical,
6874 do_scroll_horizontal>: New methods.
6875 <forward_scroll, backward_scroll, left_scroll, right_scroll>:
6876 Likewise.
6877 (struct tui_source_window_base): Add do_scroll_horizontal.
6878 (struct tui_source_window, struct tui_disasm_window): Add
6879 do_scroll_vertical.
6880 (struct tui_data_window, struct tui_cmd_window): Add
6881 do_scroll_horizontal and do_scroll_vertical.
6882 * tui/tui-command.c (tui_dispatch_ctrl_char): Use method calls.
6883
5cf82909
TT
68842019-06-25 Tom Tromey <tom@tromey.com>
6885
6886 * tui/tui-data.h (struct tui_source_window_base): New struct.
6887 (struct tui_source_window): Derive from tui_source_window_base.
6888 (struct tui_disasm_window): New struct.
6889 * tui/tui-data.c (tui_source_window_base::clear_detail): Rename
6890 from tui_source_window::clear_detail.
6891 (tui_source_window_base): Rename from tui_source_window.
6892 (~tui_source_window_base): Rename from ~tui_source_window.
6893 (tui_alloc_win_info): Create a tui_disasm_window.
6894
ee1d42d6
TT
68952019-06-25 Tom Tromey <tom@tromey.com>
6896
6897 * tui/tui-data.h (struct tui_source_window)
6898 (struct tui_data_window): Declare destructors.
6899 * tui/tui-data.c (~tui_source_window, ~tui_data_window): New
6900 destructors.
6901 (tui_win_info): Simplify.
6902
b4eb2452
TT
69032019-06-25 Tom Tromey <tom@tromey.com>
6904
6905 * tui/tui-winsource.c (tui_display_main)
6906 (tui_update_source_windows_with_addr)
6907 (tui_update_all_breakpoint_info): Update.
6908 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
6909 (new_height_ok, parse_scrolling_args): Update.
6910 * tui/tui-stack.c (tui_show_frame_info): Update.
6911 * tui/tui-data.h (struct tui_list): Remove.
6912 (tui_source_windows): Return a reference to a std::vector.
6913 * tui/tui-data.c (source_windows): Now a std::vector.
6914 (tui_source_windows): Change return type.
6915 (tui_clear_source_windows): Rewrite.
6916 (tui_clear_source_windows_detail, tui_add_to_source_windows)
6917 (tui_free_all_source_wins_content): Rewrite.
6918
8761a91b
TT
69192019-06-25 Tom Tromey <tom@tromey.com>
6920
6921 * tui/tui-data.h (struct tui_win_info, struct tui_source_window)
6922 (struct tui_data_window, struct tui_cmd_window): Declare
6923 clear_detail method.
6924 * tui/tui-data.c (tui_source_window::clear_detail)
6925 (tui_cmd_window::clear_detail, tui_data_window::clear_detail): New
6926 methods.
6927 (tui_clear_win_detail): Simplify.
6928
0ed69eda
TT
69292019-06-25 Tom Tromey <tom@tromey.com>
6930
6931 * tui/tui-layout.c (make_source_window, make_disasm_window)
6932 (make_source_or_disasm_window): Remove win_info_ptr parameter.
6933 Return the new window.
6934 (show_source_disasm_command, show_data)
6935 (show_source_or_disasm_and_command): Update.
6936
82432e10
TT
69372019-06-25 Tom Tromey <tom@tromey.com>
6938
6939 * tui/tui-layout.c (make_command_window): Remove win_info_ptr
6940 parameter. Return the new window.
6941 (show_source_disasm_command): Update and remove NULL check.
6942 (show_source_or_disasm_and_command): Update.
6943
ec328aa5
TT
69442019-06-25 Tom Tromey <tom@tromey.com>
6945
6946 * tui/tui-layout.c (init_and_make_win): Remove NULL check.
6947
33b906ab
TT
69482019-06-25 Tom Tromey <tom@tromey.com>
6949
6950 * tui/tui-data.h (struct tui_win_info): Make constructor
6951 protected. Make destructor virtual. Add initializers.
6952 (tui_source_window, tui_data_window, tui_cmd_window): New
6953 classes.
6954 * tui/tui-data.c (tui_win_info): Rename from init_win_info. Now a
6955 constructor. Add "type" parameter.
6956 (tui_source_window, tui_data_window, tui_cmd_window): New
6957 constructors.
6958 (tui_alloc_win_info): Instantiate the appropriate subclass.
6959
e7e11af4
TT
69602019-06-25 Tom Tromey <tom@tromey.com>
6961
6962 * tui/tui-win.c (tui_resize_all): Use delete.
6963 * tui/tui-data.h (struct tui_win_info) <~tui_win_info>: Declare
6964 destructor.
6965 (tui_free_window): Don't declare.
6966 * tui/tui-data.c (~tui_win_info): Rename from tui_free_window.
6967 Update.
6968
6792b55e
TT
69692019-06-25 Tom Tromey <tom@tromey.com>
6970
6971 * tui/tui-data.h (struct tui_win_info): Add constructor.
6972 * tui/tui-data.c (tui_alloc_win_info): Use new.
6973 (tui_free_window): Use delete.
6974
f95675e1
TT
69752019-06-22 Tom Tromey <tom@tromey.com>
6976
6977 * tui/tui-windata.h (tui_first_data_element_no_in_line): Don't
6978 declare.
6979 * tui/tui-windata.c (tui_first_data_element_no_in_line): Remove.
6980
5bff081c
TT
69812019-06-22 Tom Tromey <tom@tromey.com>
6982
6983 * tui/tui-data.h (tui_del_window, tui_del_data_windows): Don't
6984 declare.
6985 * tui/tui-data.c (tui_del_window, tui_del_data_windows): Remove.
6986
47e3f474
TV
69872019-06-22 Tom de Vries <tdevries@suse.de>
6988
6989 * dwarf2read.c (create_addrmap_from_aranges)
6990 (read_debug_names_from_section): Print ptrdiff_t using '%s' and plongest
6991 instead of '%zu'.
6992
fd5866f6
SM
69932019-06-21 Simon Marchi <simon.marchi@efficios.com>
6994
6995 * dwarf2read.h (dwarf2_section_info_def): Remove.
6996 (DEF_VEC_O (dwarf2_section_info_def)): Remove.
6997 * dwarf2read.c (struct dwo_sections) <types>: Change type to
6998 std::vector<dwarf2_section_info>.
6999 (struct dwo_file) <~dwo_file>: Remove.
7000 (dwarf2_per_objfile::~dwarf2_per_objfile): Don't manually free
7001 types field.
7002 (dwarf2_per_objfile::locate_sections): Adjust to std::vector.
7003 (dwarf2_read_debug_names): Likewise.
7004 (create_debug_types_hash_table): Change parameter type to
7005 array_view, adjust code accordingly.
7006 (dwarf2_locate_dwo_sections): Adjust to std::vector.
7007 (partial_die_info::fixup): Likewise.
7008 (determine_prefix): Likewise.
7009 * dwarf-index-write.c (write_psymtabs_to_index): Adjust.
7010
fb1eb2f9
SM
70112019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
7012
7013 * dwarf2read.c (struct dwo_file) <dbfd>: Change type to
7014 gdb_bfd_ref_ptr.
7015 <~dwo_file>: Remove call to gdb_bfd_unref.
7016 (open_and_init_dwo_file): Move gdb_bfd_ref_ptr into dbfd field. Call
7017 gdb_bfd_ref_ptr::get.
7018
51ac9db5
SM
70192019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
7020
7021 * dwarf2read.h (struct dwarf2_per_objfile) <dwo_files>: Change
7022 type to htab_up.
7023 * dwarf2read.c (struct dwo_file): Initialize fields.
7024 <~dwo_file>: New.
7025 (free_dwo_file): Remove, move content to ~dwo_file.
7026 (struct dwo_file_deleter): Remove.
7027 (dwo_file_up>: Remove custom deleter.
7028 (free_dwo_files): Remove.
7029 (dwarf2_per_objfile::~dwarf2_per_objfile): Don't explicitly free
7030 dwo_files.
7031 (process_skeletonless_type_units): Call unique_ptr::get.
7032 (allocate_dwo_file_hash_table): Add deleter to created hash
7033 table. Change return type to htab_up.
7034 (lookup_dwo_file_slot): Don't memset dwo_file, call
7035 unique_ptr::get.
7036 (create_dwo_unit_in_dwp_v1): Allocate dwo_file with new.
7037 (create_dwo_unit_in_dwp_v2): Likewise.
7038 (open_and_init_dwo_file): Likewise.
7039 (free_dwo_file_from_slot): Remove.
7040
dc4ccb6f
SM
70412019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
7042
7043 * dwarf2read.h (struct dwarf2_section_info) <readin,
7044 is_virtual>: Change type to bool.
7045 * dwarf2read.c (dwarf2_read_section, create_dwp_v2_section): Use
7046 true instead of 1.
7047
e6a1c5cb
TT
70482019-06-19 Tom Tromey <tom@tromey.com>
7049
7050 * tui/tui-data.h (tui_init_content_element): Don't declare.
7051
6f6ffbeb
TT
70522019-06-19 Tom Tromey <tom@tromey.com>
7053
7054 * tui/tui-data.h (tui_init_win_info): Don't declare.
7055
f23f598e
TV
70562019-06-19 Tom de Vries <tdevries@suse.de>
7057
7058 * dwarf2read.h (abstract_to_concrete): Change type to
7059 std::unordered_map<sect_offset, std::vector<sect_offset>,
7060 gdb::hash_enum<sect_offset>>.
7061
680e1bee
TT
70622019-06-19 Tom Tromey <tromey@adacore.com>
7063
7064 * ada-lang.c (ada_evaluate_subexp) <case OP_ATR_FIRST>: Handle
7065 EVAL_AVOID_SIDE_EFFECTS specially.
7066
dcf37923
TT
70672019-06-19 Tom Tromey <tromey@adacore.com>
7068
7069 * source-cache.c (highlighter): New global.
7070 (source_cache::get_source_lines): Create a highlighter on demand.
7071
494986d5
AB
70722019-06-18 Andrew Burgess <andrew.burgess@embecosm.com>
7073
7074 * defs.h (deprecated_interactive_hook): Delete declaration.
7075 * interps.c (clear_interpreter_hooks): Remove use of
7076 deprecated_interactive_hook.
7077 * top.c (deprecated_interactive_hook): Delete definition.
7078 * utils.c (maybe_quit): Remove use of deprecated_interactive_hook.
7079
3360b6e7
TV
70802019-06-18 Tom de Vries <tdevries@suse.de>
7081
7082 PR gdb/24515
7083 * dwarf2read.h (abstract_to_concrete): Change type from
7084 std::unordered_map<die_info_ptr, std::vector<die_info_ptr>> to
7085 std::unordered_map<sect_offset, std::vector<sect_offset>>.
7086 * dwarf2read.c (read_variable): Update.
7087 (dwarf2_fetch_die_loc_sect_off): Update.
7088
310b3441
TV
70892019-06-17 Tom de Vries <tdevries@suse.de>
7090
7091 PR gdb/24617
7092 * common/pathstuff.c (child_path): Make sure parent_len > 0 before
7093 accessing parent[parent_len - 1].
7094
ba9777be
PP
70952019-06-17 Paul Pluzhnikov <ppluzhnikov@google.com>
7096
7097 PR gdb/24364
7098 * gdb/dtrace-probe.c (dtrace_static_probe_ops::get_probe): Don't
7099 call dtrace_process_dof with NULL dof.
7100
2b9f6e89
TV
71012019-06-16 Tom de Vries <tdevries@suse.de>
7102
7103 PR gdb/24445
7104 * contrib/gdb-add-index.sh: Update to handle dwz-m-ed executable.
7105
431b3ead
TT
71062019-06-16 Tom Tromey <tom@tromey.com>
7107
7108 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win)
7109 (make_all_visible): Use address of member.
7110
d04b44a1
TT
71112019-06-16 Tom Tromey <tom@tromey.com>
7112
7113 * tui/tui-data.c (tui_clear_win_detail, init_win_info)
7114 (tui_free_window, free_content, free_content_elements): Remove
7115 unnecessary cast.
7116 * tui/tui-windata.c (tui_display_all_data): Remove unnecessary
7117 cast.
7118 * tui/tui-regs.c (tui_show_register_group)
7119 (tui_display_registers_from, tui_display_reg_element_at_line):
7120 Remove unnecessary cast.
7121
bf5142e7
AB
71222019-06-16 Andrew Burgess <andrew.burgess@embecosm.com>
7123
7124 * linux-nat.c (normal_mask): Delete.
7125 (_initialize_linux_nat): Don't initialise normal_mask.
7126
c4973306
SM
71272019-06-16 Simon Marchi <simon.marchi@polymtl.ca>
7128
7129 PR gdb/24445
7130 * dwarf-index-write.h (write_psymtabs_to_index): Add
7131 dwz_basename parameter.
7132 * dwarf-index-write.c (write_gdbindex): Move file writing to
7133 write_gdbindex_1. Change return type void.
7134 (assert_file_size): Move up, remove filename parameter.
7135 (write_gdbindex_1): New function.
7136 (write_debug_names): Change return type to void, call
7137 assert_file_size.
7138 (struct index_wip_file): New struct.
7139 (write_psymtabs_to_index): Add dwz_basename parameter. Move
7140 file logic to index_wip_file. Write index for dwz file if
7141 needed.
7142 (save_gdb_index_command): Pass basename of dwz file, if present.
7143 * dwarf-index-cache.c (index_cache::store): Obtain and pass
7144 build-id of dwz file, if present.
7145 * dwarf2read.c (struct dwz_file): Move to dwarf2read.h.
7146 (dwarf2_get_dwz_file): Likewise.
7147 * dwarf2read.h (struct dwz_file): Move from dwarf2read.c.
7148 (dwarf2_get_dwz_file): Likewise.
7149
395f9c91
TT
71502019-06-16 Tom Tromey <tom@tromey.com>
7151
7152 * coffread.c (process_coff_symbol): Use xstrdup.
7153 * value.c (create_internalvar): Use xstrdup.
7154
cafb3438
TT
71552019-06-16 Tom Tromey <tom@tromey.com>
7156
7157 * valops.c (value_cast, value_slice): Remove unnecessary cast.
7158 * breakpoint.c (stopin_command, stopat_command)
7159 (until_break_command, decode_location_default): Remove unnecessary
7160 cast.
7161 * utils.c (subset_compare): Remove unnecessary cast.
7162 * ada-lang.c (ada_update_initial_language): Remove unnecessary
7163 cast.
7164 * linespec.c (decode_line_with_last_displayed): Remove unnecessary
7165 cast.
7166 * infcmd.c (path_command): Remove unnecessary cast.
7167 * coffread.c (decode_type): Remove unnecessary cast.
7168 * xcoffread.c (read_xcoff_symtab): Remove unnecessary cast.
7169 * mipsread.c (mipscoff_symfile_read): Remove unnecessary cast.
7170 * tui/tui-stack.c (tui_show_locator_content)
7171 (tui_show_frame_info): Remove unnecessary cast.
7172 * tui/tui-win.c (tui_scroll_forward_command)
7173 (tui_scroll_backward_command, tui_set_focus, tui_set_win_height)
7174 (parse_scrolling_args): Remove unnecessary cast.
7175 * tui/tui-data.c (init_win_info, tui_del_window)
7176 (tui_free_window, tui_del_data_windows, tui_free_data_content)
7177 (free_content_elements): Remove unnecessary cast.
7178 * tui/tui-windata.c (tui_first_data_item_displayed): Remove
7179 unnecessary cast.
7180 * tui/tui-source.c (tui_set_source_content)
7181 (tui_vertical_source_scroll): Remove unnecessary cast.
7182 * tui/tui-layout.c (tui_default_win_height): Remove unnecessary
7183 cast.
7184 * tui/tui-io.c (tui_initialize_io): Remove unnecessary cast.
7185 * tui/tui-regs.c (tui_display_registers_from)
7186 (tui_display_register): Remove unnecessary cast.
7187 * tui/tui-wingeneral.c (tui_refresh_win, tui_delete_win)
7188 (tui_unhighlight_win, tui_highlight_win, tui_make_window)
7189 (make_visible): Remove unnecessary cast.
7190 * tui/tui-winsource.c (tui_erase_source_content)
7191 (tui_update_breakpoint_info, tui_set_exec_info_content): Remove
7192 unnecessary cast.
7193 * ax-gdb.c (agent_command_1): Remove unnecessary cast.
7194 * cli/cli-setshow.c (cmd_show_list): Remove unnecessary cast.
7195 * stabsread.c (read_type, read_array_type, read_range_type):
7196 Remove unnecessary cast.
7197 * mdebugread.c (mdebug_build_psymtabs): Remove unnecessary cast.
7198 (parse_symbol, parse_type, upgrade_type, parse_external)
7199 (parse_partial_symbols, psymtab_to_symtab_1, cross_ref): Remove
7200 unnecessary cast.
7201 * gdb_bfd.c (gdb_bfd_map_section): Remove unnecessary cast.
7202
730ead81
TT
72032019-06-16 Tom Tromey <tom@tromey.com>
7204
7205 * tui/tui-data.c (tui_alloc_generic_win_info)
7206 (tui_alloc_win_info, tui_add_content_elements): Remove NULL
7207 checks.
7208
584a927c
AB
72092019-06-16 Bernhard Heckel <bernhard.heckel@intel.com>
7210 Andrew Burgess <andrew.burgess@embecosm.com>
7211
7212 * f-typeprint.c (f_print_type): Don't return early for not
7213 associated or not allocated types.
7214 (f_type_print_varspec_suffix): Add print_rank parameter and print
7215 ranks of array types in case they dangling.
7216 (f_type_print_base): Add print_rank parameter.
7217
30056ea0
AB
72182019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
7219
7220 * NEWS: Mention new MI commands.
7221 * break-catch-throw.c (enum exception_event_kind): Move to
7222 breakpoint.h.
7223 (print_mention_exception_catchpoint): Output text as a single
7224 message.
7225 (catch_exception_command_1): Rename to...
7226 (catch_exception_event): ...this, make non-static, update header
7227 command, and change some parameter types.
7228 (catch_catch_command): Update for changes to
7229 catch_exception_command_1.
7230 (catch_throw_command): Likewise.
7231 (catch_rethrow_command): Likewise.
7232 * breakpoint.c (enum exception_event_kind): Delete.
7233 * breakpoint.h (enum exception_event_kind): Moved here from
7234 break-catch-throw.c.
7235 (catch_exception_event): Declare.
7236 * mi/mi-cmd-catch.c (mi_cmd_catch_exception_event): New function.
7237 (mi_cmd_catch_throw): New function.
7238 (mi_cmd_catch_rethrow): New function.
7239 (mi_cmd_catch_catch): New function.
7240 * mi/mi-cmds.c (mi_cmds): Add 'catch-throw', 'catch-rethrow', and
7241 'catch-catch' entries.
7242 * mi/mi-cmds.h (mi_cmd_catch_throw): Declare.
7243 (mi_cmd_catch_rethrow): Declare.
7244 (mi_cmd_catch_catch): Declare.
7245
ec8e2b6d
AB
72462019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
7247
7248 * annotate.c (annotate_source_line): Change return type to void,
7249 update implementation to match.
7250 * annotate.h (annotate_source_line): Change return type to void,
7251 update header comment.
7252 * stack.c (print_frame_info): Don't change what frame information
7253 is printed based on whether annotations are on or not.
7254
0d3abd8c
AB
72552019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
7256
7257 * annotate.c: Add 'source.h' and 'objfiles.h' includes.
7258 (annotate_source): Make static.
7259 (annotate_source_line): Moved from source.c and renamed from
7260 identify_source_line. Update the return type.
7261 * annotate.h (annotate_source): Delete declaration.
7262 (annotate_source_line): Declaration moved from source.h, and
7263 renamed from identify_source_line. Return type updated.
7264 * source.c (identify_source_line): Moved to annotate.c and renamed
7265 to annotate_source_line.
7266 (info_line_command): Remove check of annotation_level.
7267 * source.h (identify_source_line): Move declaration to annotate.h
7268 and rename to annotate_source_line.
7269 * stack.c: Add 'annotate.h' include.
7270 (print_frame_info): Remove check of annotation_level before
7271 calling annotate_source_line.
7272
00df30ae
AB
72732019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
7274
7275 * source-cache.c (source_cache::get_plain_source_lines): Use
7276 open_source_file_with_line_charpos instead of just
7277 open_source_file, remove call to find_source_lines.
7278 (source_cache::get_source_lines): Likewise.
7279 * source.c (find_source_lines): Make static.
7280 (get_filename_and_charpos): Renamed into...
7281 (open_source_file_with_line_charpos): ..this along with changes to
7282 return a scoped_fd, and some other minor clean ups.
7283 (identify_source_line): Use open_source_file_with_line_charpos.
7284 (search_command_helper): Use open_source_file_with_line_charpos
7285 instead of just open_source_file, remove call to
7286 find_source_lines.
7287 * source.h (open_source_file_with_line_charpos): Declare new
7288 function.
7289 (find_source_lines): Delete declaration.
7290
afda45a2
AB
72912019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
7292
7293 * source.c (get_filename_and_charpos): Remove fullname
7294 parameter.
7295 (identify_source_line): Update call to get_filename_and_charpos.
7296
0735b091
TT
72972019-06-14 Tom Tromey <tromey@adacore.com>
7298
7299 PR gdb/24502:
7300 * ui-style.h (skip_ansi_escape): Update comment.
7301 * ui-file.h (class no_terminal_escape_file): New class.
7302 * ui-file.c (no_terminal_escape_file::write)
7303 (no_terminal_escape_file::puts): New methods.
7304 * cli/cli-logging.c (handle_redirections): Use
7305 no_terminal_escape_file.
7306
52ce35e2
TT
73072019-06-14 Tom Tromey <tromey@adacore.com>
7308
7309 * NEWS: Move convenience variable news above Python news.
7310
73cc7272
TT
73112019-06-14 Tom Tromey <tom@tromey.com>
7312
7313 * gnulib: Move directory to top-level.
7314 * configure.ac: Don't configure gnulib.
7315 * configure: Rebuild.
7316 * common/common-defs.h: Use new path to gnulib.
7317 * Makefile.in (GNULIB_BUILDDIR): Now ../gnulib.
7318 (GNULIB_H): Remove.
7319 (INCGNU): Look in new gnulib location.
7320 (HFILES_NO_SRCDIR): Remove gnulib files.
7321 (SUBDIR, REQUIRED_SUBDIRS): Remove gnulib.
7322 (generated_files): Remove GNULIB_H.
7323 ($(LIBGNU), all-lib): Remove targets.
7324 (distclean): Don't mention GNULIB_BUILDDIR.
7325 ($(GNULIB_BUILDDIR)/Makefile): Remove target.
7326
f5686554
TT
73272019-06-14 Tom Tromey <tromey@adacore.com>
7328
7329 * symfile.c (add_symbol_file_command): Remove obsolete comment.
7330 Warn if symbol file does not provide any symbols.
7331
a0c1ffed
TT
73322019-06-14 Tom Tromey <tromey@adacore.com>
7333
7334 * source.c (find_and_open_source): Respect basenames_may_differ.
7335
7c39e397
AB
73362019-06-14 Andrew Burgess <andrew.burgess@embecosm.com>
7337
7338 * annotate.c (annotate_breakpoints_invalid): Make use of
7339 scoped_restore_terminal_state.
7340 (annotate_frames_invalid): Likewise.
7341
f411722c
TT
73422019-06-14 Tom Tromey <tromey@adacore.com>
7343
7344 * ada-lang.c (ada_evaluate_subexp) <case BINOP_ASSIGN>: Always
7345 allow assignment to an internalvar.
7346
4268ec18
TT
73472019-06-14 Tom Tromey <tromey@adacore.com>
7348
7349 * ada-lex.l: Allow "_" in attribute names.
7350
abdb711e
TT
73512019-06-14 Tom Tromey <tromey@adacore.com>
7352
7353 PR gdb/24653:
7354 * regcache.c (registers_changed): Don't call alloca.
7355 * top.c (execute_command): Don't call alloca.
7356
4c048731
PA
73572019-06-13 Pedro Alves <palves@redhat.com>
7358
7359 * cli/cli-setshow.c (cli/cli-setshow.c): New parameter
7360 'expression'. When parsing an expression, error out if there's
7361 junk after "unlimited".
7362 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
7363 (do_set_command): Adjust calls to is_unlimited_literal.
7364
66eb1ed3
PA
73652019-06-13 Pedro Alves <palves@redhat.com>
7366
7367 * compile/compile.c (make_compile_options_def_group): Add braces
7368 around array_view initializer.
7369 * thread.c (make_thread_apply_all_options_def_group)
7370 (make_thread_apply_all_options_def_group): Likewise.
7371
3345721a
PA
73722019-06-13 Pedro Alves <palves@redhat.com>
7373
7374 * NEWS (New commands): Mention "maint test-options
7375 require-delimiter", "maint test-options unknown-is-error", "maint
7376 test-options unknown-is-operand" and "maint show
7377 test-options-completion-result".
7378 (New command options, command completion): New section.
7379 (Completion improvements): New section.
7380 Mention that you can abbreviate "unlimited".
7381
6206060d
PA
73822019-06-13 Pedro Alves <palves@redhat.com>
7383
7384 * cli/cli-utils.c (parse_flags, parse_flags_qcs): Delete.
7385 * cli/cli-utils.h (parse_flags, parse_flags_qcs): Delete.
7386 * unittests/cli-utils-selftests.c (test_parse_flags)
7387 (test_parse_flags_qcs): Delete.
7388 (test_cli_utils): Don't call deleted functions.
7389
6665660a
PA
73902019-06-13 Pedro Alves <palves@redhat.com>
7391
7392 * thread.c: Include "cli/cli-option.h".
7393 (tp_array_compar_ascending): Global.
7394 (tp_array_compar): Delete function.
7395 (tp_array_compar_ascending, tp_array_compar_descending): New
7396 functions.
7397 (ascending_option_def, qcs_flag_option_def)
7398 (thr_qcs_flags_option_defs)
7399 (make_thread_apply_all_options_def_group)
7400 (make_thread_apply_options_def_group): New.
7401 (thread_apply_all_command): Use gdb::option::process_options.
7402 (thread_apply_command_completer)
7403 (thread_apply_all_command_completer): New.
7404 (thread_apply_command): Use gdb::option::process_options.
7405 (_initialize_thread): Delete THREAD_APPLY_FLAGS_HELP, replace it
7406 with a new THREAD_APPLY_OPTION_HELP. Use gdb::option::build_help
7407 to generate help text of "thread apply". Adjust "taas"'s help.
7408 * tid-parse.c (tid_range_parser::in_thread_range): New method.
7409 * tid-parse.h (tid_range_parser::in_thread_range): New method.
7410
f7e13587
PA
74112019-06-13 Pedro Alves <palves@redhat.com>
7412
7413 * thread.c (thread_apply_command): Check for invalid TID with
7414 isdigit instead of !isalpha.
7415
5d707134
PA
74162019-06-13 Pedro Alves <palves@redhat.com>
7417
7418 * cli/cli-utils.c (parse_flags_qcs): Use validate_flags_qcs.
7419 (validate_flags_qcs): New.
7420 * cli/cli-utils.h (struct qcs_flags): Change field types to int.
7421 (validate_flags_qcs): Declare.
7422 * stack.c (qcs_flag_option_def, fr_qcs_flags_option_defs): New.
7423 (make_frame_apply_options_def_group): New.
7424 (frame_apply_command_count): Process options with
7425 gdb::option::process_options.
7426 (frame_apply_completer): New.
7427 (frame_apply_level_completer, frame_apply_all_completer)
7428 (frame_apply_completer): New.
7429 (_initialize_stack): Update help of "frame apply", "frame apply
7430 level", "frame apply all" and "faas" to mention supported options
7431 and install command completers.
7432 * stack.h (frame_apply_all_completer): Declare.
7433 * thread.c: Include "stack.h".
7434 (tfaas_command): Add "--".
7435 (_initialize_thread): Update help "tfaas" to mention supported
7436 options and install command completer.
7437
272d4594
PA
74382019-06-13 Pedro Alves <palves@redhat.com>
7439
7440 * completer.c (complete_nested_command_line): New.
7441 (gdb_completion_word_break_characters_throw): Add assertion.
7442 * completer.h (complete_nested_command_line): Declare.
7443
90a1ef87
PA
74442019-06-13 Pedro Alves <palves@redhat.com>
7445
7446 * stack.c (parse_backtrace_qualifiers): New.
7447 (backtrace_command): Use it.
7448 (backtrace_command_completer): Complete on qualifiers.
7449
d4c16835
PA
74502019-06-13 Pedro Alves <palves@redhat.com>
7451
7452 * frame.c: Include "cli/cli-option.h.
7453 (user_set_backtrace_options): New.
7454 (backtrace_past_main, backtrace_past_entry, backtrace_limit):
7455 Delete.
7456 (get_prev_frame): Adjust.
7457 (boolean_option_def, uinteger_option_def)
7458 (set_backtrace_option_defs): New.
7459 (_initialize_frame): Adjust and use
7460 gdb::option::add_setshow_cmds_for_options to install "set
7461 backtrace past-main" and "set backtrace past-entry".
7462 * frame.h: Include "cli/cli-option.h".
7463 (struct frame_print_options): Forward declare.
7464 (print_frame_arguments_all, print_frame_arguments_scalars)
7465 (print_frame_arguments_none): Declare.
7466 (print_entry_values): Delete declaration.
7467 (struct frame_print_options, user_frame_print_options): New.
7468 (struct set_backtrace_options): New.
7469 (set_backtrace_option_defs, user_set_backtrace_options): Declare.
7470 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
7471 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
7472 (mi_cmd_stack_list_variables): Pass down USER_FRAME_PRINT_OPTIONS.
7473 (list_args_or_locals): Add frame_print_options parameter.
7474 (mi_cmd_stack_info_frame): Pass down USER_FRAME_PRINT_OPTIONS.
7475 * python/py-framefilter.c (enumerate_args): Pass down
7476 USER_FRAME_PRINT_OPTIONS.
7477 * stack.c: Include "cli/cli-option.h".
7478 (print_frame_arguments_all, print_frame_arguments_scalars)
7479 (print_frame_arguments_none): Declare.
7480 (print_raw_frame_arguments, print_entry_values): Delete.
7481 (user_frame_print_options): New.
7482 (boolean_option_def, enum_option_def, frame_print_option_defs):
7483 New.
7484 (struct backtrace_cmd_options): New.
7485 (bt_flag_option_def): New.
7486 (backtrace_command_option_defs): New.
7487 (print_stack_frame): Pass down USER_FRAME_PRINT_OPTIONS.
7488 (print_frame_arg, read_frame_arg, print_frame_args)
7489 (print_frame_info, print_frame): Add frame_print_options parameter
7490 and use it.
7491 (info_frame_command_core): Pass down USER_FRAME_PRINT_OPTIONS.
7492 (backtrace_command_1): Add frame_print_options and
7493 backtrace_cmd_options parameters and use them.
7494 (make_backtrace_options_def_group): New.
7495 (backtrace_command): Process command options with
7496 gdb::option::process_options.
7497 (backtrace_command_completer): New.
7498 (_initialize_stack): Extend "backtrace"'s help to mention
7499 supported options. Install completer for "backtrace".
7500 Install some settings commands with add_setshow_cmds_for_options.
7501
2daf894e
PA
75022019-06-13 Pedro Alves <palves@redhat.com>
7503
7504 * NEWS (Changed commands): Mention set/show print raw-frame-arguments,
7505 and that "set/show print raw frame-arguments" are now deprecated.
7506
7507 * cli/cli-decode.c (add_setshow_boolean_cmd): Now returns the
7508 command.
7509 * command.h (add_setshow_boolean_cmd): Return cmd_list_element *.
7510 * stack.c (_initialize_stack): Install "set/show print
7511 raw-frame-arguments", and deprecate "set/show print raw
7512 frame-arguments".
7513 * valprint.c (_initialize_valprint): Deprecate "set/show print
7514 raw".
7515
e6ed716c
PA
75162019-06-13 Pedro Alves <palves@redhat.com>
7517
7518 * compile/compile.c (struct compile_options): New.
7519 (compile_flag_option_def, compile_command_option_defs)
7520 (make_compile_options_def_group): New.
7521 (compile_file_command): Handle options with
7522 gdb::option::process_options.
7523 (compile_file_command_completer): New function.
7524 (compile_code_command): Handle options with
7525 gdb::option::process_options.
7526 (compile_code_command_completer): New function.
7527 (_initialize_compiler): Install completers for "compile code" and
7528 "compile file". Mention available options in "compile code" and
7529 "compile code"'s help.
7530 * completer.c (advance_to_completion_word): New, factored out from
7531 ...
7532 (advance_to_expression_complete_word_point): ... this.
7533 (advance_to_filename_complete_word_point): New.
7534 * completer.h (advance_to_filename_complete_word_point): New
7535 declaration.
7536
7d8062de
PA
75372019-06-13 Pedro Alves <palves@redhat.com>
7538
7539 * compile/compile.c: Include "cli/cli-option.h".
7540 (compile_print_value): Scope data pointer is now a
7541 value_print_options pointer; adjust.
7542 (compile_print_command): Process options. Scope data pointer is
7543 now a value_print_options pointer; adjust.
7544 (_initialize_compile): Update "compile print"'s help to include
7545 supported options. Install a completer for "compile print".
7546 * cp-valprint.c (show_vtblprint, show_objectprint)
7547 (show_static_field_print): Delete.
7548 (_initialize_cp_valprint): Don't install "set print
7549 static-members", "set print vtbl", "set print object" here.
7550 * printcmd.c: Include "cli/cli-option.h" and
7551 "common/gdb_optional.h".
7552 (print_command_parse_format): Rework to fill in a
7553 value_print_options instead of a format_data.
7554 (print_value): Change parameter type from format_data pointer to
7555 value_print_options reference. Adjust.
7556 (print_command_1): Process options. Adjust to pass down a
7557 value_print_options.
7558 (print_command_completer): New.
7559 (_initialize_printcmd): Install print_command_completer as
7560 handle_brkchars completer for the "print" command. Update
7561 "print"'s help to include supported options.
7562 * valprint.c: Include "cli/cli-option.h".
7563 (show_vtblprint, show_objectprint, show_static_field_print): Moved
7564 here from cp-valprint.c.
7565 (boolean_option_def, uinteger_option_def)
7566 (value_print_option_defs, make_value_print_options_def_group):
7567 New. Use gdb::option::add_setshow_cmds_for_options to install
7568 "set print elements", "set print null-stop", "set print repeats",
7569 "set print pretty", "set print union", "set print array", "set
7570 print address", "set print symbol", "set print array-indexes".
7571 * valprint.h: Include <string> and "cli/cli-option.h".
7572 (make_value_print_options_def_group): Declare.
7573 (print_value): Change parameter type from format_data pointer to
7574 value_print_options reference.
7575 (print_command_completer): Declare.
7576
9d0faba9
PA
75772019-06-13 Pedro Alves <palves@redhat.com>
7578
7579 * Makefile.in (SUBDIR_CLI_SRCS): Add cli/cli-option.c.
7580 (COMMON_SFILES): Add maint-test-settings.c.
7581 * cli/cli-decode.c (boolean_enums): New global, factored out from
7582 ...
7583 (add_setshow_boolean_cmd): ... here.
7584 * cli/cli-decode.h (boolean_enums): Declare.
7585 * cli/cli-option.c: New file.
7586 * cli/cli-option.h: New file.
7587 * cli/cli-setshow.c (parse_cli_boolean_value(const char **)): New,
7588 factored out from ...
7589 (parse_cli_boolean_value(const char *)): ... this.
7590 (is_unlimited_literal): Change parameter type to pointer to
7591 pointer. Adjust and advance ARG pointer.
7592 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
7593 (parse_cli_var_enum): New, factored out from ...
7594 (do_set_command): ... this. Adjust.
7595 * cli/cli-setshow.h (parse_cli_boolean_value)
7596 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
7597 (parse_cli_var_enum): Declare.
7598 * cli/cli-utils.c: Include "cli/cli-option.h".
7599 (get_ulongest): New.
7600 * cli/cli-utils.h (get_ulongest): Declare.
7601 (check_for_argument): New overloads.
7602 * maint-test-options.c: New file.
7603
2c722807
PA
76042019-06-13 Pedro Alves <palves@redhat.com>
7605
7606 * cli/cli-utils.c (number_or_range_parser::get_number): Do not
7607 parse a range if "-" is at the end of the string.
7608
dee7b4c8
PA
76092019-06-13 Pedro Alves <palves@redhat.com>
7610
7611 * cli/cli-setshow.c (parse_auto_binary_operation)
7612 (parse_cli_boolean_value): Don't allow "o".
7613
dca0f6c0
PA
76142019-06-13 Pedro Alves <palves@redhat.com>
7615
7616 * Makefile.in (COMMON_SFILES): Add maint-test-settings.c.
7617 * NEWS: Mention maint test-settings KIND.
7618 * maint-test-settings.c: New file.
7619
597bf39d
PA
76202019-06-13 Pedro Alves <palves@redhat.com>
7621
7622 * cli/cli-decode.c (add_setshow_cmd_full): Remove "show"
7623 completer.
7624 (add_setshow_string_cmd, add_setshow_string_noescape_cmd): Remove
7625 "set" completers.
7626
48c410fb
PA
76272019-06-13 Pedro Alves <palves@redhat.com>
7628
7629 * cli/cli-setshow.c (do_set_command) <var_enum>: Detect junk
7630 after item.
7631
93bcb043
PA
76322019-06-13 Pedro Alves <palves@redhat.com>
7633
7634 * cli/cli-setshow.c (is_unlimited_literal): Allow abbreviations.
7635
cbba3ecd
PA
76362019-06-13 Pedro Alves <palves@redhat.com>
7637
7638 * ax-gdb.c (agent_command_1): Remove skip_spaces call.
7639 * breakpoint.c (watch_maybe_just_location): Remove skip_spaces
7640 call.
7641 * cli/cli-cmds.c (apropos_command): Remove skip_spaces call.
7642 * cli/cli-utils.c (extract_info_print_args): Remove skip_spaces
7643 calls.
7644 (check_for_argument): Skip spaces after argument.
7645
b9a3f842
PA
76462019-06-13 Pedro Alves <palves@redhat.com>
7647
7648 * thread.c (thread_apply_command): Adjust TID parsing.
7649 * tid-parse.c (tid_range_parser::finished): Ensure parsing end is
7650 detected before end of string.
7651 (tid_is_in_list): Error out if LIST is invalid.
7652
3844e605
PA
76532019-06-13 Pedro Alves <palves@redhat.com>
7654
7655 * completer.c (complete_line_internal_1): Rewind completion word
7656 point.
7657 (completion_tracker::advance_custom_word_point_by): Change
7658 parameter type to int.
7659 * completer.h (completion_tracker::advance_custom_word_point_by):
7660 Likewise.
7661
00b56dbe
PA
76622019-06-13 Pedro Alves <palves@redhat.com>
7663
7664 * completer.c (advance_to_completion_word): Handle delimiters.
7665
d106773e
PA
76662019-06-11 Bernhard Heckel <bernhard.heckel@intel.com>
7667
7668 * dwarf2read.c (add_partial_symbol): Skip nameless modules.
7669
08f10e02
TT
76702019-06-11 Tom Tromey <tom@tromey.com>
7671
7672 * common/common-utils.c (xmalloc, xrealloc, xcalloc)
7673 (xmalloc_failed): Move to alloc.c.
7674 * alloc.c: New file.
7675 * Makefile.in (COMMON_SFILES): Add alloc.c.
7676
1c7fe951
TT
76772019-06-11 Tom Tromey <tom@tromey.com>
7678
7679 * nat/linux-waitpid.c: Don't include server.h.
7680 (linux_debug): Remove.
7681 (my_waitpid): Update.
7682
89549d7f
TT
76832019-06-11 Tom Tromey <tromey@adacore.com>
7684
7685 * infcall.c (_initialize_infcall): Remove trailing newline from
7686 help.
7687 * user-regs.c (_initialize_user_regs): Remove trailing newline
7688 from help.
7689 * typeprint.c (_initialize_typeprint): Remove trailing newline
7690 from help.
7691 * reverse.c (_initialize_reverse): Remove trailing newlines from
7692 help.
7693 * tracepoint.c (_initialize_tracepoint): Remove trailing newlines
7694 from help.
7695 * language.c (add_set_language_command): Remove trailing newline
7696 from help.
7697 * infcmd.c (_initialize_infcmd): Remove trailing newlines from
7698 help.
7699 * disasm.c (_initialize_disasm): Remove trailing newline from
7700 help.
7701 * top.c (init_main): Remove trailing newline from help.
7702 * interps.c (_initialize_interpreter): Remove trailing newline
7703 from help.
7704 * btrace.c (_initialize_btrace): Remove trailing newlines from
7705 help.
7706 * breakpoint.c (_initialize_breakpoint): Remove trailing newline
7707 from help.
7708 * python/python.c (_initialize_python): Remove trailing newline
7709 from help.
7710 * spu-tdep.c (_initialize_spu_tdep): Remove trailing newlines from
7711 help.
7712 * tui/tui-win.c (_initialize_tui_win): Remove trailing newlines
7713 from help. Reformat some text.
7714 * tui/tui-stack.c (_initialize_tui_stack): Remove trailing newline
7715 from help.
7716 * tui/tui-layout.c (_initialize_tui_layout): Remove trailing
7717 newline from help.
7718
86108c13
TT
77192019-06-11 Tom Tromey <tromey@adacore.com>
7720
7721 * darwin-nat.c (darwin_decode_exception_message)
7722 (darwin_decode_message, darwin_nat_target::kill): Fix shadowing.
7723
a7067863
AB
77242019-06-10 Andrew Burgess <andrew.burgess@embecosm.com>
7725
7726 * valops.c (value_slice): Check for not allocated or not
7727 associated values.
7728
9ab08412
TV
77292019-06-10 Tom de Vries <tdevries@suse.de>
7730
7731 PR gdb/24618
7732 * dwarf2read.c (struct mapped_index::symbol_name_slot_invalid): Make
7733 sure an empty slot (defined by a 32-bit zero pair) is recognized as
7734 invalid.
7735
f19e22e9
TV
77362019-06-10 Tom de Vries <tdevries@suse.de>
7737
7738 PR gdb/24611
7739 * linespec.c (linespec_lexer_lex_string): Remove incorrect
7740 "++(PARSER_STREAM (parser))" for "[abi"-prefixed colon. Add assert.
7741
e99f9db0
TV
77422019-06-10 Tom de Vries <tdevries@suse.de>
7743
7744 PR symtab/24545
7745 * symtab.c (struct demangled_name_entry): Add language field.
7746 (symbol_set_names): Revert "[gdb/symtab] Fix language of duplicate
7747 static minimal symbol". Set and use language field.
7748
9bf7038b
TT
77492019-06-10 Tom Tromey <tromey@adacore.com>
7750
7751 * ada-lang.c (_initialize_ada_language): Update help text.
7752
422186a9
TT
77532019-06-10 Tom Tromey <tromey@adacore.com>
7754
7755 * m32c-tdep.c (m32c_m16c_address_to_pointer): Don't end warning
7756 with a newline.
7757 * guile/guile.c (handle_boot_error): Don't end warning with a
7758 newline.
7759 * cli/cli-cmds.c (exit_status_set_internal_vars): Don't end
7760 warning with a newline.
7761 * s12z-tdep.c (s12z_skip_prologue): Don't end warning with a
7762 newline.
7763 (s12z_frame_cache): Likewise.
7764 * dwarf-index-cache.c (index_cache::store): Don't end warning with
7765 a newline.
7766 * solib-svr4.c (disable_probes_interface): Don't end warning with
7767 a newline.
7768 * nat/fork-inferior.c (fork_inferior): Don't end warning with a
7769 newline.
7770 * python/python.c (do_finish_initialization): Don't end warning
7771 with a newline.
7772
25ce02ee
TT
77732019-06-10 Tom Tromey <tom@tromey.com>
7774
7775 * python/py-breakpoint.c (gdbpy_breakpoint_created)
7776 (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
7777 gdbpy_enter.
7778
caa429d8
TT
77792019-06-10 Tom Tromey <tromey@adacore.com>
7780
7781 * elfread.c (elf_read_minimal_symbols): Don't set the dbx objfile
7782 data.
7783 (elf_new_init): Don't call stabsread_new_init.
7784 * dbxread.c (coffstab_build_psymtabs): Set dbx objfile data.
7785 (elfstab_build_psymtabs): Likewise. Call stabsread_new_init.
7786 * coffread.c (coff_symfile_init): Don't set the dbx objfile data.
7787
81873cc8
TV
77882019-06-10 Tom de Vries <tdevries@suse.de>
7789
7790 PR symtab/16264
7791 PR symtab/24517
7792 * dwarf2read.c (read_func_scope): Handle DW_AT_main_subprogram.
7793
4fa0265e
РИ
77942019-06-06 Руслан Ижбулатов <lrn1986@gmail.com>
7795
7796 * source.c (find_and_open_source): Also rewrite relative file
7797 names.
7798
1a3da2cd
AB
77992019-04-26 Amos Bird <amosbird@gmail.com>
7800
7801 * annotate.c (annotate_thread_exited): Add "thread-exited"
7802 annotation.
7803
3847a7bf
TT
78042019-06-06 Tom Tromey <tromey@adacore.com>
7805
7806 * maint.h (class scoped_command_stats): Use
7807 DISABLE_COPY_AND_ASSIGN.
7808 <print_time>: New method.
7809 * maint.c (scoped_command_stats, ~scoped_command_stats): Call
7810 print_time.
7811 (scoped_command_stats::print_time): New method.
7812
312617a3
AB
78132019-06-05 Andrew Burgess <andrew.burgess@embecosm.com>
7814
7815 * riscv-tdep.c (riscv_insn::decode): Gracefully ignore
7816 instructions of lengths 6 or 8 bytes.
7817
b02f78f9
PA
78182019-06-04 Pedro Alves <palves@redhat.com>
7819
7820 * common/gdb_unique_ptr.h (make_unique_xstrdup): New.
7821
7822 * ada-lang.c (catch_ada_completer): Use make_unique_xstrdup.
7823 * breakpoint.c (condition_completer): Likewise.
7824 * cli/cli-dump.c (scan_expression): Likewise.
7825 * common/filestuff.c (mkdir_recursive): Likewise.
7826 * common/gdb_tilde_expand.c (gdb_tilde_expand_up)
7827 * common/pathstuff.c (gdb_realpath, gdb_realpath_keepfile)
7828 (gdb_abspath): Likewise.
7829 * compile/compile-cplus-types.c
7830 (compile_cplus_instance::decl_name): Likewise.
7831 * completer.c (complete_explicit_location):
7832 (signal_completer, reg_or_group_completer_1): Likewise.
7833 * cp-support.c (cp_remove_params_if_any): Likewise.
7834 * fbsd-tdep.c (fbsd_core_vnode_path): Likewise.
7835 * guile/scm-safe-call.c (gdbscm_safe_eval_string): Likewise.
7836 * infcmd.c (strip_bg_char): Likewise.
7837 * linespec.c (copy_token_string): Likewise.
7838 * mi/mi-main.c (output_cores): Likewise.
7839 * psymtab.c (psymtab_search_name):
7840 * symfile.c (test_set_ext_lang_command): Likewise.
7841 * target.c (target_fileio_read_stralloc): Likewise.
7842 * tui/tui-regs.c (tui_reggroup_completer): Likewise.
7843 * value.c (complete_internalvar): Likewise.
7844
e1f2e1a2
CB
78452019-06-04 Christian Biesinger <cbiesinger@google.com>
7846
7847 Add objfile property to gdb.Type.
d3238f7d
PA
7848 * NEWS: Mention Python API addition.
7849 * python/py-type.c (typy_get_objfile): New method.
e1f2e1a2 7850
e664d728
PW
78512019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7852
7853 * NEWS: Mention the new set|show style [title|highlight].
7854 Mention changes to "show style", "help" and "apropos".
7855
66d8c862
PW
78562019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7857
7858 * cli/cli-decode.h (apropos_cmd): Add verbose argument.
7859 * cli/cli-decode.c (apropos_cmd): Likewise. Use print_doc_of_command
7860 instead of print_help_for_command.
7861 (print_doc_of_command): New function.
7862 (help_list): Add 'apropos -v word' suggestion.
7863 (print_help_for_command): Style the command name using title style.
7864 * cli/cli-cmds.c (apropos_command): Parse optional -v flag.
7865 (_initialize_cli_cmds): Describe -v in apropos_command help.
7866
9303eb2f
PW
78672019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7868
7869 * cli/cli-style.h (cli_style_option): Add name in constructor,
7870 add m_name class member, add constructor with intensity,
7871 add name class function.
7872 (cli_style_option::add_setshow_commands): Remove name argument.
7873 (highlight_style, title_style): New styles.
7874 * cli/cli-style.c (do_show): New function that shows a style
7875 characteristic styling the style name with itself.
7876 (set_style_name): New function.
7877 (STYLE_ADD_SETSHOW_COMMANDS): Remove NAME arguments.
7878 Update all callers according to the changes in cli/cli-style.h.
7879 * utils.h (fputs_highlighted): New function.
7880 * utils.c (fputs_highlighted): Likewise.
7881
e2c52041
PW
78822019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7883
7884 * NEWS: Mention new pipe command and new convenience variables.
7885
947d3946
PW
78862019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7887
7888 * cli/cli-cmds.c (pipe_command): New function.
7889 (_initialize_cli_cmds): Call add_com for pipe_command.
7890 Define | as an alias for pipe.
7891 (exit_status_set_internal_vars): New function.
7892 (shell_escape): Call exit_status_set_internal_vars.
7893 cli/cli-decode.c (find_command_name_length): Recognize | as
7894 a single character command.
7895
b8fd0918
PW
78962019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7897
7898 * gdbcmd.h (execute_command_to_ui_file): New declaration.
7899 top.c (execute_command_to_ui_file): New function, mostly a copy
7900 of execute_command_to_string.
7901 (execute_command_to_string): Implement by calling
7902 execute_command_to_ui_file.
7903
68bb5386
PW
79042019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7905
7906 * top.h (saved_command_line): Remove declaration.
7907 * top.c (previous_saved_command_line, previous_repeat_arguments):
7908 New variables.
7909 (saved_command_line): Make static, define together with other
7910 'repeat variables'.
7911 (dont_repeat): Clear repeat_arguments.
7912 (repeat_previous, get_saved_command_line, save_command_line):
7913 New functions.
7914 (gdb_init): Initialize saved_command_line
7915 and previous_saved_command_line.
7916 * main.c (captured_main_1): Remove saved_command_line initialization.
7917 * event-top.c (handle_line_of_input): Update to use
7918 the new 'repeat' related functions instead of direct access to
7919 saved_command_line.
7920 * command.h (repeat_previous, get_saved_command_line,
7921 save_command_line): New declarations.
7922 (dont_repeat): Add comment.
7923
bfcdb852
TT
79242019-05-30 Tom Tromey <tromey@adacore.com>
7925
7926 * gdbtypes.h (struct range_bounds) <flag_upper_bound_is_count>:
7927 Fix comment.
7928 (TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED): Rewrite comment.
7929
0ef209f2
JV
79302019-05-30 Jan Vrany <jan.vrany@fit.cvut.cz>
7931
7932 PR cli/24587
7933 * completer.c (complete): Initialize variable word.
7934
955b06fa
SDJ
79352019-05-29 Sergio Durigan Junior <sergiodj@redhat.com>
7936
7937 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192
7938 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1715008
7939 * dwarf2read.c (dwarf_decode_macro_bytes): Move check to see if
7940 'body' is NULL to the outter 'if', protecting the '!is_define'
7941 situation as well.
7942
fa9c3fa0
TT
79432019-05-29 Tom Tromey <tromey@adacore.com>
7944
7945 * dwarf2read.c (partial_die_parent_scope): Call dwarf_tag_name.
7946 (dwarf_unknown): New function.
7947 (dwarf_tag_name, dwarf_attr_name, dwarf_form_name)
7948 (dwarf_type_encoding_name): Use dwarf_unknown.
7949
4330d61d
TT
79502019-05-29 Tom Tromey <tromey@adacore.com>
7951
7952 PR c++/20020:
7953 * cp-valprint.c (cp_print_value_fields): Call
7954 cp_print_static_field inside "try".
7955
33a6bc35
TT
79562019-05-29 Tom Tromey <tromey@adacore.com>
7957
7958 * inflow.c (struct terminal_info): Add default operator=.
7959 * configure: Rebuild.
7960 * warning.m4 (AM_GDB_WARNINGS): Add -Wdeprecated-copy,
7961 -Wdeprecated-copy-dtor, -Wredundant-move.
7962
000439d5
TT
79632019-05-29 Tom Tromey <tromey@adacore.com>
7964
7965 * NEWS: Add entry.
7966 * infcmd.c (print_return_value_1): Handle finish_print
7967 option.
7968 (show_print_finish): New function.
7969 (_initialize_infcmd): Add "set/show print finish" commands.
7970 * valprint.c (user_print_options): Initialize new member.
7971 * valprint.h (struct value_print_options) <finish_print>: New
7972 member.
7973
c0e70c62
TT
79742019-05-28 Tom Tromey <tromey@adacore.com>
7975
7976 * ada-lang.c (ada_remove_Xbn_suffix)
7977 (find_old_style_renaming_symbol)
7978 (parse_old_style_renaming): Remove.
7979 (ada_find_renaming_symbol): Don't call
7980 find_old_style_renaming_symbol.
7981 (ada_is_renaming_symbol): Rename from
7982 ada_find_renaming_symbol. Remove "block" parameter. Return
7983 bool. Now static.
7984 (ada_read_var_value): Update and simplify.
7985 * ada-exp.y (write_var_or_type): Remove old code.
7986
766f8836
AH
79872019-05-28 Alan Hayward <alan.hayward@arm.com>
7988
68255adc 7989 PR gdb/25010
766f8836
AH
7990 * event-top.c: Remove include comment.
7991 * inflow.c (class scoped_ignore_sigttou): Move from here...
7992 * inflow.h (class scoped_ignore_sigttou): ...to here.
7993 * ser-unix.c (hardwire_drain_output): Block SIGTTOU during drain.
7994 * top.c: Remove include comment.
7995
eb41253a
TT
79962019-05-27 Tom Tromey <tom@tromey.com>
7997
7998 * NEWS: Fix typo.
7999
4ca51187
TT
80002019-05-22 Tom Tromey <tromey@adacore.com>
8001
8002 * target.c (target_follow_exec): Constify parameter.
8003 * target-delegates.c: Rebuild.
8004 * remote.c (remote_target::follow_exec): Constify parameter.
8005 * infrun.c (follow_exec): Constify parameter.
8006 * target.h (struct target_ops) <follow_exec>: Constify parameter.
8007 (target_follow_exec): Likewise.
8008
8fca4da0
AH
80092019-05-22 Alan Hayward <alan.hayward@arm.com>
8010
8011 * aarch64-tdep.c (aarch64_execute_dwarf_cfa_vendor_op): Treat
8012 DW_CFA_AARCH64_negate_ra_state as nop on non pauth targets.
8013
b7060614
AH
80142019-05-22 Alan Hayward <alan.hayward@arm.com>
8015
8016 * NEWS: Add debugredirect and testsuite sections.
8017
0a5954bd
SC
80182019-05-22 Simon Cook <simon.cook@embecosm.com>
8019
8020 * riscv-tdep.c (riscv_gdbarch_init): Support determining flen from
8021 target descriptions using exclusively floating point register name
8022 aliases.
8023
dc42e902
AB
80242019-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
8025
8026 PR gdb/18644:
8027 * f-lang.c (build_fortran_types): Handle the case where
8028 gdbarch_floatformat_for_type returns a nullptr.
8029
fb7806c7
TV
80302019-05-21 Tom de Vries <tdevries@suse.de>
8031
8032 PR cli/24587
8033 * cli/cli-cmds.c (complete_command): Fix use of unitialized variable.
8034
34d11c68
AB
80352019-05-18 Andrew Burgess <andrew.burgess@embecosm.com>
8036
8037 PR gdb/18644:
8038 * f-lang.c (build_fortran_types): Use floatformats_ia64_quad for
8039 16-byte floats.
8040 * i386-tdep.c (i386_floatformat_for_type): Use
8041 floatformats_ia64_quad for the 16-byte floating point component
8042 within a fortran 32-byte complex number.
8043
122cf0f2
AB
80442019-05-18 Andrew Burgess <andrew.burgess@embecosm.com>
8045
8046 * dwarf2read.c (struct cu_partial_die_info): Add constructor,
8047 delete default constructor.
8048 (find_partial_die): Update to return const struct.
8049 (partial_die_parent_scope): Move variable declaration into scope
8050 of its use and change its type to auto.
8051 (guess_partial_die_structure_name): Likewise.
8052 (partial_die_info::fixup): Likewise.
8053
33d0e35a
TT
80542019-05-17 Tom Tromey <tromey@adacore.com>
8055
8056 * source.c (find_and_open_source): Remove cast.
8057
a45575b0
TT
80582019-05-17 Tom Tromey <tromey@adacore.com>
8059
8060 * annotate.c (annotate_source): Make "filename" const.
8061 * annotate.h (annotate_source): Use const.
8062
81f47ac2
AH
80632019-05-17 Alan Hayward <alan.hayward@arm.com>
8064
8065 * disasm.c (set_disassembler_options): Send errors to stderr.
8066
ca1285d1
AH
80672019-05-17 Alan Hayward <alan.hayward@arm.com>
8068
8069 * cli/cli-interp.c (struct saved_output_files): Add saved entry.
8070 (cli_interp_base::set_logging): Check debug_redirect.
8071 * cli/cli-interp.h (set_logging): Add debug_redirect parameter.
8072 * cli/cli-logging.c (debug_redirect): Add static variable.
8073 (pop_output_files): Add default param.
8074 (handle_redirections): Print debug setting.
8075 (show_logging_command): Likewise.
8076 (_initialize_cli_logging): Add debugredirect command.
8077 * interps.c (current_interp_set_logging): Add debug_redirect
8078 parameter.
8079 * interps.h (set_logging): Add debug_redirect parameter.
8080 (current_interp_set_logging): Likewise.
8081 * mi/mi-common.h: Likewise.
8082 * mi/mi-interp.c (mi_interp::set_logging): Likewise.
8083
80842019-05-17 Alan Hayward <alan.hayward@arm.com>
f3a09c80
AH
8085 Tom Tromey <tromey@adacore.com>
8086
8087 * cli/cli-interp.c (cli_interp_base::set_logging): Create tee_file
8088 directly.
8089 * cli/cli-interp.h (make_logging_output): Remove declaration.
8090 * cli/cli-logging.c (make_logging_output): Remove function.
8091 * mi/mi-interp.c (mi_interp::set_logging): Create tee_file
8092 directly.
8093 * ui-file.c (tee_file::tee_file): Remove bools.
8094 (tee_file::~tee_file): Remove deletes.
8095 * ui-file.h (tee_file): Remove bools.
8096
26648588
JV
80972019-01-28 Jan Vrany <jan.vrany@fit.cvut.cz>
8098
8099 * mi/mi-cmds.h (mi_cmd_complete): New function.
8100 * mi/mi-main.c (mi_cmd_complete): Likewise.
8101 * mi/mi-cmds.c: Define new MI command -complete.
8102 * NEWS: Mention new -complete command.
8103
6e035501
JV
81042019-01-24 Jan Vrany <jan.vrany@fit.cvut.cz>
8105
8106 * completer.h (complete): New function.
8107 * completer.c (complete): Likewise.
8108 * cli/cli-cmds.c: (complete_command): Update to use new complete()
8109 function defined in completer.h.
8110
7d0e2ece
JV
81112019-05-17 Jan Vrany <jan.vrany@fit.cvut.cz>
8112
e79be6e5 8113 * MAINTAINERS (Write After Approval): Add myself.
7d0e2ece 8114
fb816e8b
TV
81152019-05-17 Tom de Vries <tdevries@suse.de>
8116
8117 PR gdb/24094
8118 * dwarf2read.c (struct cu_partial_die_info): New struct.
8119 (find_partial_die): Return cu_partial_die_info.
8120 (partial_die_parent_scope, guess_partial_die_structure_name)
8121 (partial_die_info::fixup): Handle new return type of find_partial_die.
8122
677052f2
SDJ
81232019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
8124
a1726c38 8125 PR breakpoints/24541
677052f2
SDJ
8126 * stap-probe.c (stap_parse_register_operand): Make "regname" an
8127 "std::string", simplifying the algorithm.
8128
f3da9116
SDJ
81292019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
8130
8131 * stap-probe.c (handle_stap_probe): Fix complaint formatting.
8132 (stap_static_probe_ops::get_probes): Likewise.
8133
f1bb75ab
SDJ
81342019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
8135
8136 * stap-probe.c (stap_parse_register_operand): Make "if (*p->arg ==
8137 '-')" and "else if".
8138 (stap_parse_single_operand): Join checks for
8139 "gdbarch_stap_parse_special_token_p" and
8140 "gdbarch_stap_parse_special_token" in the same "if" statement.
8141 Invert check when verifying for operation on register
8142 displacement.
8143
3ca58cde
SDJ
81442019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
8145
8146 * stap-probe.c (stap_get_opcode): Update comment.
8147 (stap_get_expected_argument_type): Likewise.
8148 (handle_stap_probe): Likewise.
8149
af2d9bee
SDJ
81502019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
8151
8152 * i386-tdep.c (i386_stap_parse_special_token_triplet): Change
8153 return type to 'bool'. Adjust comment. Use 'bool' when
8154 appropriate.
8155 (i386_stap_parse_special_token_three_arg_disp): Likewise.
8156 * stap-probe.c (stap_parse_argument_1): Likewise.
8157 (stap_is_operator): Likewise.
8158 (stap_is_generic_prefix): Likewise.
8159 (stap_is_register_prefix): Likewise.
8160 (stap_is_register_indirection_prefix): Likewise.
8161 (stap_is_integer_prefix): Likewise.
8162 (stap_generic_check_suffix): Likewise.
8163 (stap_check_integer_suffix): Likewise.
8164 (stap_check_register_suffix): Likewise.
8165 (stap_check_register_indirection_suffix): Likewise.
8166 (stap_parse_register_operand): Likewise.
8167 (stap_parse_single_operand): Likewise.
8168 (stap_parse_argument_1): Likewise.
8169 (stap_probe::get_argument_count): Likewise.
8170 (stap_is_operator): Likewise.
8171
61c9c421
TT
81722019-05-16 Tom Tromey <tromey@adacore.com>
8173
8174 * darwin-nat.c (thread_info_from_private_thread_info): Add struct
8175 keyword to foreach.
8176
9ddc1af1
SM
81772019-05-15 Simon Marchi <simon.marchi@efficios.com>
8178
8179 * linux-thread-db.c (try_thread_db_load_1): Change return type
8180 to bool.
8181 (try_thread_db_load): Likewise.
8182 (try_thread_db_load_from_pdir_1): Likewise.
8183 (try_thread_db_load_from_pdir): Likewise.
8184 (try_thread_db_load_from_sdir): Likewise.
8185 (try_thread_db_load_from_dir): Likewise.
8186 (thread_db_load_search): Likewise.
8187 (has_libpthread): Likewise.
8188 (thread_db_load): Likewise.
8189
7bede828
SDJ
81902019-05-15 Sergio Durigan Junior <sergiodj@redhat.com>
8191
8192 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192
8193 * dwarf2read.c (parse_macro_definition): Check whether 'body' is
8194 NULL, and complain/return if that's the case.
8195
c5358db4
JD
81962019-05-15 John Darrington <john@darrington.wattle.id.au>
8197
8198 * s12z-tdep.c (push_pull_get_stack_adjustment): New function.
8199 (advance, posn, abstract_read_memory): New functions.
8200 [struct mem_read_abstraction]: New struct.
8201 (s12z_frame_cache): Use opcodes API to interpret stack frame code.
8202
c408a94f
TT
82032019-05-14 Tom Tromey <tromey@adacore.com>
8204
8205 * ada-lang.c (coerce_unspec_val_to_type): Only set address when
8206 value is not lval_memory.
8207
e7bd7fba
TT
82082019-05-14 Tom Tromey <tromey@adacore.com>
8209
8210 * solib.c (info_sharedlibrary_command): Style the file name.
8211
a6d0f249
AH
82122019-05-14 Alan Hayward <alan.hayward@arm.com>
8213
8214 * aarch64-tdep.c (aarch64_vnh_type): Add half view.
8215 (aarch64_vnv_type): Likewise.
8216 * target-descriptions.c (make_gdb_type): Add TDESC_TYPE_IEEE_HALF.
8217 * common/tdesc.c: Likewise.
8218 * common/tdesc.h (enum tdesc_type_kind): Likewise.
8219 * features/aarch64-fpu.c (create_feature_aarch64_fpu): Regenerate.
8220 * features/aarch64-fpu.xml: Add ieee half view.
8221 * features/aarch64-sve.c (create_feature_aarch64_fpu): Likewise.
8222 * gdbtypes.c (gdbtypes_post_init): Add builtin_half
8223 * gdbtypes.h (struct builtin_type): Likewise.
8224 (struct objfile_type): Likewise.
8225
66b8bb74
SM
82262019-05-12 Paul Naert <paul.naert@polymtl.ca>
8227
8228 * language.c (language_sniff_from_mangled_name): Fix "langauge"
8229 typo.
8230 * location.h (string_to_event_location): Likewise.
8231
21c219fd
JB
82322019-05-11 Joel Brobecker <brobecker@adacore.com>
8233
8234 GDB 8.3 released.
8235
13674803
SM
82362019-05-10 Simon Marchi <simon.marchi@efficios.com>
8237
8238 * breakpoint.h (fix_multi_location_breakpoint_output_globally):
8239 New variable declaration.
8240 * breakpoint.c (fix_multi_location_breakpoint_output_globally):
8241 New variable.
8242 (print_one_breakpoint): Use ui_out::test_flags and new global
8243 variable to compute use_fixed_output.
8244 * mi/mi-main.h (mi_multi_location_breakpoint_output_fixed):
8245 Remove.
8246 * mi/mi-main.c (fix_multi_location_breakpoint_output): Remove.
8247 (mi_multi_location_breakpoint_output_fixed): Remove.
8248 (mi_cmd_fix_multi_location_breakpoint_output): Adjust to set the
8249 new variable.
8250 * mi/mi-out.c (mi_ui_out::mi_ui_out): Set
8251 fix_multi_location_breakpoint_output flag if version >= 3.
8252 * ui-out.h (enum ui_out_flag)
8253 <fix_multi_location_breakpoint_output>: New enumerator.
8254
a9eac7f9
SM
82552019-05-10 Simon Marchi <simon.marchi@efficios.com>
8256
8257 * contrib/cc-with-tweaks.sh: Validate dwz's work.
8258
71bed2db
TT
82592019-05-10 Tom Tromey <tromey@adacore.com>
8260
8261 * ada-lang.c (catch_ada_completer): New function.
8262 (_initialize_ada_language): Use it.
8263
24c54127
TT
82642019-05-10 Tom Tromey <tromey@adacore.com>
8265
8266 * thread.c (print_thread_info): Make "requested_threads" const.
8267 * gdbthread.h (print_thread_info): Make "requested_threads"
8268 const.
8269 * ada-tasks.c (print_ada_task_info): Make "taskno_str" const.
8270 * ada-lang.h (print_ada_task_info): Make "taskno_str" const.
8271
7a102139
TT
82722019-05-08 Tom Tromey <tom@tromey.com>
8273
8274 * gdbtypes.c (objfile_type_data): Change type.
8275 (objfile_type, _initialize_gdbtypes): Update.
8276
924d79e2
TT
82772019-05-08 Tom Tromey <tom@tromey.com>
8278
8279 * dwarf2-frame.c (dwarf2_frame_objfile_data): Change type.
8280 (dwarf2_frame_find_fde, dwarf2_build_frame_info)
8281 (_initialize_dwarf2_frame): Update.
8282
4c58e337
TT
82832019-05-08 Tom Tromey <tom@tromey.com>
8284
8285 * objc-lang.c (objc_objfile_data): Change type.
8286 (find_methods): Update.
8287 (_initialize_objc_lang): Remove.
8288
d772d2ab
TT
82892019-05-08 Tom Tromey <tom@tromey.com>
8290
8291 * stabsread.c (rs6000_builtin_type_data): Change type.
8292 (rs6000_builtin_type, _initialize_stabsread): Update.
8293
d11d83f4
TT
82942019-05-08 Tom Tromey <tom@tromey.com>
8295
8296 * mips-tdep.c (mips_pdr_data): Remove.
8297 (_initialize_mips_tdep): Update.
8298
9a73f0ad
TT
82992019-05-08 Tom Tromey <tom@tromey.com>
8300
8301 * hppa-tdep.c (hppa_objfile_priv_data): Change type.
8302 (hppa_init_objfile_priv_data, read_unwind_info)
8303 (find_unwind_entry, _initialize_hppa_tdep): Update.
8304
8127a2fa
TT
83052019-05-08 Tom Tromey <tom@tromey.com>
8306
8307 * elfread.c (elf_objfile_gnu_ifunc_cache_data): Change type.
8308 (elf_gnu_ifunc_record_cache): Update. Don't allocate hash table
8309 on obstack.
8310 (elf_gnu_ifunc_resolve_by_cache, _initialize_elfread): Update.
8311
91d3055d
TT
83122019-05-08 Tom Tromey <tom@tromey.com>
8313
8314 * mdebugread.c (basic_type_data): Change type.
8315 (basic_type, _initialize_mdebugread): Update.
8316
31930bd3
TT
83172019-05-08 Tom Tromey <tom@tromey.com>
8318
8319 * common/gdb_unique_ptr.h (struct noop_deleter): New.
8320
bdb3ed9e
TT
83212019-05-08 Tom Tromey <tom@tromey.com>
8322
8323 * nto-tdep.c (nto_inferior_data_reg): Change type.
8324 (nto_inferior_data): Update.
8325 (nto_inferior_data_cleanup, nto_new_inferior_data)
8326 (_initialize_nto_tdep): Remove.
8327 * nto-tdep.h (struct nto_inferior_data): Add initializers.
8328
f37b313d
TT
83292019-05-08 Tom Tromey <tom@tromey.com>
8330
8331 * ada-lang.c (struct ada_inferior_data): Add initializers.
8332 (ada_inferior_data): Change type.
8333 (ada_inferior_data_cleanup): Remove.
8334 (get_ada_inferior_data, ada_inferior_exit)
8335 (struct ada_pspace_data): Add initializers, destructor.
8336 (ada_pspace_data_handle): Change type.
8337 (get_ada_pspace_data): Update.
8338 (ada_pspace_data_cleanup): Remove.
8339
24699405
TT
83402019-05-08 Tom Tromey <tom@tromey.com>
8341
8342 * coffread.c (struct coff_symfile_info): Add initializers.
8343 (coff_objfile_data_key): Move lower. Change type.
8344 (coff_symfile_init, coff_symfile_read, _initialize_coffread):
8345 Update.
8346 (coff_free_info): Remove.
8347
d4e05d2f
TT
83482019-05-08 Tom Tromey <tom@tromey.com>
8349
8350 * fbsd-tdep.c (struct fbsd_pspace_data): Add initializers.
8351 (fbsd_pspace_data_handle): Move lower. Change type.
8352 (get_fbsd_pspace_data): Update.
8353 (fbsd_pspace_data_cleanup): Remove.
8354 (_initialize_fbsd_tdep): Update.
8355
14ef6690
TT
83562019-05-08 Tom Tromey <tom@tromey.com>
8357
8358 * ada-tasks.c (ada_tasks_pspace_data_handle): Change type.
8359 (get_ada_tasks_pspace_data): Update.
8360 (ada_tasks_pspace_data_cleanup): Remove.
8361 (_initialize_tasks): Update.
8362 (ada_tasks_inferior_data_handle): Change type.
8363 (get_ada_tasks_inferior_data): Update.
8364 (ada_tasks_inferior_data_cleanup): Remove.
8365 (struct ada_tasks_pspace_data): Add initializers.
8366
814cf43a
TT
83672019-05-08 Tom Tromey <tom@tromey.com>
8368
8369 * symfile.h (struct sym_probe_fns) <sym_get_probes>: Change type.
8370 * symfile-debug.c (debug_sym_get_probes): Change type.
8371 * stap-probe.c (handle_stap_probe):
8372 (stap_static_probe_ops::get_probes): Change type.
8373 * probe.h (class static_probe_ops) <get_probes>: Change type.
8374 * probe.c (class any_static_probe_ops) <get_probes>: Change type.
8375 (parse_probes_in_pspace): Update.
8376 (find_probes_in_objfile, find_probe_by_pc, collect_probes):
8377 Update.
8378 (any_static_probe_ops::get_probes): Change type.
8379 * elfread.c (elfread_data): New typedef.
8380 (probe_key): Change type.
8381 (elf_get_probes): Likewise. Update.
8382 (probe_key_free): Remove.
8383 (_initialize_elfread): Update.
8384 * dtrace-probe.c (class dtrace_static_probe_ops) <get_probes>:
8385 Change type.
8386 (dtrace_process_dof_probe, dtrace_process_dof)
8387 (dtrace_static_probe_ops::get_probe): Change type.
8388
02dc647e
TT
83892019-05-08 Tom Tromey <tom@tromey.com>
8390
8391 * xcoffread.c (struct xcoff_symfile_info): Rename from
8392 coff_symfile_info. Add initializers.
8393 (xcoff_objfile_data_key): Move lower. Change type.
8394 (XCOFF_DATA): Rewrite.
8395 (xcoff_free_info): Remove.
8396 (xcoff_symfile_init, _initialize_xcoffread, read_xcoff_symtab)
8397 (read_symbol, read_symbol_lineno, find_linenos, init_stringtab)
8398 (xcoff_initial_scan): Update.
8399
09232438
TT
84002019-05-08 Tom Tromey <tom@tromey.com>
8401
8402 * solib-svr4.c (struct svr4_info): Add initializers and
8403 destructor.
8404 <probes_table>: Now an htab_up.
8405 (solib_svr4_pspace_data): Change type.
8406 (free_probes_table): Simplify.
8407 (~svr4_info): Rename from svr4_pspace_data_cleanup.
8408 (get_svr4_info, probes_table_htab_remove_objfile_probes)
8409 (probes_table_remove_objfile_probes, register_solib_event_probe)
8410 (solib_event_probe_at, svr4_update_solib_event_breakpoint)
8411 (_initialize_svr4_solib): Update.
8412
7b4a314f
TT
84132019-05-08 Tom Tromey <tom@tromey.com>
8414
8415 * remote.c (remote_pspace_data): Change type.
8416 (remote_pspace_data_cleanup): Remove.
8417 (get_remote_exec_file, set_pspace_remote_exec_file)
8418 (_initialize_remote): Update.
8419
51d3063a
TT
84202019-05-08 Tom Tromey <tom@tromey.com>
8421
8422 * breakpoint.c (breakpoint_objfile_key): Change type.
8423 (get_breakpoint_objfile_data): Update.
8424 (free_breakpoint_objfile_data): Remove.
8425 (_initialize_breakpoint): Update.
8426
89fb8848
TT
84272019-05-08 Tom Tromey <tom@tromey.com>
8428
8429 * linux-tdep.c (struct linux_info): Add initializers.
8430 (linux_inferior_data): Move. Change type.
8431 (invalidate_linux_cache_inf): Update.
8432 (linux_inferior_data_cleanup): Remove.
8433 (get_linux_inferior_data, _initialize_linux_tdep): Update.
8434
e9b89e2d
TT
84352019-05-08 Tom Tromey <tom@tromey.com>
8436
8437 * auxv.c (auxv_inferior_data): Move. Change type.
8438 (auxv_inferior_data_cleanup): Remove.
8439 (invalidate_auxv_cache_inf): Rewrite.
8440 (get_auxv_inferior_data, _initialize_auxv): Update.
8441
8c42777c
TT
84422019-05-08 Tom Tromey <tom@tromey.com>
8443
8444 * symfile-debug.c (struct debug_sym_fns_data): Add initializers.
8445 (symfile_debug_objfile_data_key): Change type.
8446 (symfile_debug_installed, debug_qf_has_symbols)
8447 (debug_qf_find_last_source_symtab)
8448 (debug_qf_forget_cached_source_info)
8449 (debug_qf_map_symtabs_matching_filename, debug_qf_lookup_symbol)
8450 (debug_qf_print_stats, debug_qf_dump)
8451 (debug_qf_expand_symtabs_for_function)
8452 (debug_qf_expand_all_symtabs)
8453 (debug_qf_expand_symtabs_with_fullname)
8454 (debug_qf_map_matching_symbols)
8455 (debug_qf_expand_symtabs_matching)
8456 (debug_qf_find_pc_sect_compunit_symtab)
8457 (debug_qf_map_symbol_filenames)
8458 (debug_qf_find_compunit_symtab_by_address, debug_sym_get_probes)
8459 (debug_sym_new_init, debug_sym_init, debug_sym_read)
8460 (debug_sym_read_psymbols, debug_sym_finish, debug_sym_offsets)
8461 (debug_sym_read_linetable, debug_sym_relocate): Update.
8462 (symfile_debug_free_objfile): Remove.
8463 (install_symfile_debug_logging, _initialize_symfile_debug):
8464 Update.
8465
5bfd760d
TT
84662019-05-08 Tom Tromey <tom@tromey.com>
8467
8468 * dwarf2read.h (struct dwarf2_per_objfile): Don't inherit from
8469 allocate_on_obstack.
8470 * dwarf2read.c (dwarf2_objfile_data_key): Change type.
8471 (get_dwarf2_per_objfile): Update.
8472 (set_dwarf2_per_objfile): Remove.
8473 (dwarf2_has_info, dwarf2_get_section_info): Update.
8474 (dwarf2_free_objfile): Remove.
8475 (_initialize_dwarf2_read): Update.
8476
e85e19b4
TT
84772019-05-08 Tom Tromey <tom@tromey.com>
8478
8479 * auto-load.c (struct auto_load_pspace_info): Add destructor and
8480 initializers.
8481 <unsupported_script_warning_printed,
8482 script_not_found_warning_printed>: Now bool.
8483 (auto_load_pspace_data): Change type.
8484 (~auto_load_pspace_info): Rename from
8485 auto_load_pspace_data_cleanup.
8486 (get_auto_load_pspace_data, init_loaded_scripts_info)
8487 (clear_section_scripts, maybe_print_unsupported_script_warning)
8488 (maybe_print_script_not_found_warning, _initialize_auto_load):
8489 Update.
8490
f6aa7436
TT
84912019-05-08 Tom Tromey <tom@tromey.com>
8492
8493 * objfiles.c (objfile_pspace_info): Add destructor and
8494 initializers.
8495 (objfiles_pspace_data): Change type.
8496 (~objfile_pspace_info): Rename from objfiles_pspace_data_cleanup.
8497 (get_objfile_pspace_data): Update.
8498 (objfiles_bfd_data): Change type.
8499 (get_objfile_bfd_data): Update.
8500 (objfile_bfd_data_free, _initialize_objfiles): Remove.
8501
6ae614f6
TT
85022019-05-08 Tom Tromey <tom@tromey.com>
8503
8504 * break-catch-syscall.c (catch_syscall_inferior_data): Move.
8505 Change type.
8506 (get_catch_syscall_inferior_data): Update.
8507 (catch_syscall_inferior_data_cleanup): Remove.
8508 (_initialize_break_catch_syscall): Update.
8509
6509b8eb
TT
85102019-05-08 Tom Tromey <tom@tromey.com>
8511
8512 * inflow.c (struct terminal_info): Add destructor and
8513 initializers.
8514 (inflow_inferior_data): Change type.
8515 (~terminal_info): Rename from inflow_inferior_data_cleanup.
8516 (get_inflow_inferior_data, inflow_inferior_exit)
8517 (swap_terminal_info, _initialize_inflow): Update.
8518
35632941
TT
85192019-05-08 Tom Tromey <tom@tromey.com>
8520
8521 * target-dcache.c (target_dcache_cleanup): Remove.
8522 (target_dcache_aspace_key): Change type.
8523 (target_dcache_init_p, target_dcache_invalidate)
8524 (target_dcache_get, target_dcache_get_or_init)
8525 (_initialize_target_dcache): Update.
8526 * dcache.h (struct dcache_deleter): New.
8527
3017b94d
TT
85282019-05-08 Tom Tromey <tom@tromey.com>
8529
8530 * symtab.c (struct symbol_cache): Add destructor and
8531 initializers.
8532 (symbol_cache_key): Move. Change type.
8533 (make_symbol_cache, free_symbol_cache): Remove.
8534 (get_symbol_cache): Update.
8535 (symbol_cache_cleanup): Remove.
8536 (ALL_PSPACES, symbol_cache_flush)
8537 (maintenance_print_symbol_cache)
8538 (maintenance_print_symbol_cache_statistics, _initialize_symtab):
8539 Update.
8540
a32ad8c5
TT
85412019-05-08 Tom Tromey <tom@tromey.com>
8542
8543 * symtab.c (struct main_info): Add destructor and initializers.
8544 (main_progspace_key): Move. Change type.
8545 (get_main_info): Update.
8546 (main_info_cleanup): Remove.
8547 (_initialize_symtab): Update.
8548
5f6e90a0
TT
85492019-05-08 Tom Tromey <tom@tromey.com>
8550
8551 * registry.h (DECLARE_REGISTRY): Define the _key class.
8552
1bd0c6e4
AB
85532019-05-08 Andrew Burgess <andrew.burgess@embecosm.com>
8554
8555 * NEWS: Merge two 'New commands' sections.
8556
2228ef77
XR
85572019-05-08 Joel Brobecker <brobecker@adacore.com>
8558
8559 * ada-valprint.c (ada_val_print_gnat_array): Remove language
8560 parameter and use Ada language definition instead.
8561 (ada_val_print_ptr): Remove unused language parameter.
8562 (ada_val_print_num): Remove language parameter and use Ada language
8563 definition instead.
8564 (ada_val_print_enum, ada_val_print_flt): Remove unused language
8565 parameter.
8566 (ada_val_print_struct_union, ada_val_print_ref): Remove language
8567 parameter and use Ada language definition instead.
8568 (ada_val_print_1): Update all ada_val_print_xxx calls.
8569 Remove language parameter.
8570 (ada_val_print): Update ada_val_print_1 call.
8571
60fcc1c3
TT
85722019-05-08 Tom Tromey <tromey@adacore.com>
8573
8574 * remote.c (remote_hw_watchpoint_limit)
8575 (remote_hw_watchpoint_length_limit, remote_hw_breakpoint_limit):
8576 Now static.
8577
ed2b7c17
TT
85782019-05-08 Tom Tromey <tromey@adacore.com>
8579
8580 * maint.c (_initialize_maint_cmds): Move initialization code to
8581 remote.c.
8582 (watchdog, show_watchdog): Move to remote.c.
8583 * remote.c (watchdog, show_watchdog): Move from maint.c. Make
8584 "watchdog" static.
8585 (_initialize_remote): Move initialization code from maint.c.
8586 * defs.h (watchdog): Don't declare.
8587
b0be6c91
TT
85882019-05-08 Tom Tromey <tromey@adacore.com>
8589
8590 * tui/tui-interp.c: Include main.h.
8591 * interps.c: Include main.h.
8592 * main.h (interpreter_p): Declare.
8593 * defs.h (interpreter_p): Don't declare.
8594
587ee17b
TT
85952019-05-08 Tom Tromey <tromey@adacore.com>
8596
8597 * dwarf2loc.c: Include dwarf2read.h.
8598 * defs.h (read_unsigned_leb128): Don't declare.
8599 * dwarf2read.h (read_unsigned_leb128): Declare.
8600
ca1df239
TT
86012019-05-08 Tom Tromey <tromey@adacore.com>
8602
8603 * utils.c (fputs_maybe_filtered): Call can_emit_style_escape as a
8604 method.
8605
99f20f08
TT
86062019-05-08 Tom Tromey <tromey@adacore.com>
8607
8608 * utils.c (fputs_maybe_filtered): Reset style after paging, even
8609 when no wrap column is set.
8610
80e55b13
TT
86112019-05-08 Tom Tromey <tromey@adacore.com>
8612
8613 * c-lang.c (c_get_string): Handle non-C-style arrays.
8614
9d3421af
TT
86152019-05-08 Tom Tromey <tromey@adacore.com>
8616
8617 * typeprint.c (print_offset_data::update): Print the bit offset,
8618 not the number of bits remaining.
8619
844333e2
TT
86202019-05-08 Tom Tromey <tromey@adacore.com>
8621
8622 * typeprint.c (print_offset_data::maybe_print_hole): Add extra
8623 padding at end of comment.
8624
988915ee
TT
86252019-05-08 Tom Tromey <tromey@adacore.com>
8626
8627 * dwarf2loc.c (dwarf2_evaluate_property) <PROP_ADDR_OFFSET>:
8628 Compare main types.
8629
26bfd823
TT
86302019-05-06 Tom Tromey <tom@tromey.com>
8631
8632 * common/scoped_mmap.c: Include common-defs.h.
8633 * common/scoped_mmap.h: Don't include config.h.
8634
89055eaa
TT
86352019-05-04 Tom Tromey <tom@tromey.com>
8636
8637 * aarch64-tdep.c (stack_item_t): Remove typedef and DEF_VEC.
8638 (struct aarch64_call_info): Add initializers.
8639 <si>: Now a std::vector.
8640 (pass_on_stack, aarch64_push_dummy_call): Update.
8641
5da01df5
TT
86422019-05-04 Simon Marchi <simon.marchi@efficios.com>
8643 Tom Tromey <tom@tromey.com>
8644
8645 * ppc-linux-nat.c (thread_points_p): Remove typedef and DEF_VEC.
8646 (ppc_threads): Now a std::vector. Now static.
8647 (hwdebug_find_thread_points_by_tid)
8648 (ppc_linux_nat_target::low_new_thread, ppc_linux_thread_exit):
8649 Update.
8650
fbdf05a1
TT
86512019-05-04 Tom Tromey <tom@tromey.com>
8652
8653 * arc-tdep.c (arc_tdesc_init): Return bool.
8654
06d16ec9
TT
86552019-05-04 Tom Tromey <tom@tromey.com>
8656
8657 * arm-linux-nat.c (arm_linux_nat_target::can_use_hw_breakpoint):
8658 Use gdb_assert_not_reached.
8659
9c056022
TT
86602019-05-04 Tom Tromey <tom@tromey.com>
8661
8662 * compile/compile-cplus-types.c (compile_cplus_convert_enum): Use
8663 "false".
8664
fa9c2a59
TT
86652019-05-04 Tom Tromey <tom@tromey.com>
8666
8667 * arc-tdep.c (arc_tdesc_init): Use bool.
8668
e2eb806a
TT
86692019-05-04 Tom Tromey <tom@tromey.com>
8670
8671 * stack.c (select_frame_for_mi): Use "false", not "FALSE".
8672
6fe87677
TT
86732019-05-04 Tom Tromey <tom@tromey.com>
8674
8675 * cli/cli-cmds.c (valid_command_p): Return bool.
8676
7f008c9e
TT
86772019-05-04 Tom Tromey <tom@tromey.com>
8678
8679 * cli/cli-decode.c (valid_user_defined_cmd_name_p): Return bool.
8680 * command.h (valid_user_defined_cmd_name_p): Channge return type.
8681
b6484282
RT
86822019-05-04 Raul Tambre <raul@tambre.ee>
8683
8684 * python/lib/gdb/prompt.py (_ExtendedPrompt)
8685 <before_prompt_hook, get_show_string>: Fix incorrect use of 'is'
8686 operator for comparison.
8687
af97b416
TT
86882019-05-04 Tom Tromey <tom@tromey.com>
8689
8690 * psymtab.c (psymbol_name_matches, match_partial_symbol)
8691 (lookup_partial_symbol, print_partial_symbols)
8692 (recursively_search_psymtabs, sort_pst_symbols, psymbol_hash)
8693 (psymbol_compare): Update.
8694 (add_psymbol_to_bcache): Clear the entire psymbol.
8695 (maintenance_check_psymtabs): Update.
8696 * psympriv.h (struct partial_symbol): Don't derive from
8697 general_symbol_info.
8698 <obj_section, unrelocated_address, address,
8699 set_unrelocated_address>: Update.
8700 <ginfo>: New member.
8701 * dwarf-index-write.c (write_psymbols, debug_names::insert)
8702 (debug_names::write_psymbols): Update.
8703
9d6d4be8
TV
87042019-05-04 Tom de Vries <tdevries@suse.de>
8705
8706 * contrib/cc-with-tweaks.sh: Support -n arg.
8707
66452beb
PW
87082019-05-04 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8709
8710 * corelow.c (core_target::detach): Ensure frame cache and
8711 register caches are cleared.
8712 inferior.c (exit_inferior_1): Likewise.
8713
bde09ab7
TT
87142019-05-03 Sandra Loosemore <sandra@codesourcery.com>
8715 Tom Tromey <tom@tromey.com>
8716
8717 * dictionary.c (collate_pending_symbols_by_language): Remove
8718 "struct" from foreach.
8719 * symtab.c (lookup_global_symbol_from_objfile)
8720 (lookup_symbol_in_objfile_from_linkage_name): Remove "struct" from
8721 foreach.
8722 * ser-tcp.c (net_open): Remove "struct" from foreach.
8723 * objfiles.c (objfile_relocate, objfile_rebase)
8724 (objfile_has_symbols): Remove "struct" from foreach.
8725 * minsyms.c (lookup_minimal_symbol_by_pc_section): Remove "struct"
8726 from foreach.
8727 * dwarf2read.c (handle_struct_member_die): Remove "struct" from
8728 foreach.
8729 * darwin-nat.c (thread_info_from_private_thread_info): Remove
8730 "struct" from foreach.
8731 * ada-lang.c (create_excep_cond_exprs)
8732 (ada_exception_catchpoint_cond_string): Remove "struct" from
8733 foreach.
8734
222a8d25
TT
87352019-05-03 Tom Tromey <tromey@adacore.com>
8736
8737 * ada-exp.y (convert_char_literal): Check suffix of each
8738 enumerator.
8739
fcd60b84
DP
87402019-05-03 Dilyan Palauzov <dilyan.palauzov@aegee.org>
8741
8742 PR ada/21406:
8743 * ada-exp.y (yywrap): Don't define.
8744 * ada-lex.l (%option): Add noyywrap
8745 (yywrap): Remove.
8746
5f2459c2
EZ
87472019-05-03 Eli Zaretskii <eliz@gnu.org>
8748
353ea2d1
EZ
8749 * common/common-defs.h [__MINGW32__ || __CYGWIN__]: Define
8750 _WIN32_WINNT to the XP level, unless already defined to a higher
8751 level.
8752
8753 * unittests/parse-connection-spec-selftests.c:
8754 * ser-tcp.c:
8755 * common/netstuff.c [USE_WIN32API]: Remove the _WIN32_WINNT
8756 override.
8757
5f2459c2
EZ
8758 * symfile.c (find_separate_debug_file): Remove colon from the
8759 drive spec of DOS/Windows file names of the target, so that the
8760 file name produced from DEBUGDIR and the target's directory will
8761 be valid on DOS/Windows systems.
8762
80062eb9
AB
87632019-05-02 Andrew Burgess <andrew.burgess@embecosm.com>
8764
8765 * rust-lang.c (val_print_struct): Handle printing structures
8766 containing strings.
8767
b8c05e85
TT
87682019-05-02 Tom Tromey <tromey@adacore.com>
8769
8770 * valarith.c (_initialize_valarith): Remove.
8771
4504bbde
TT
87722019-05-01 Tom Tromey <tromey@adacore.com>
8773
8774 * ada-lang.c (ada_value_primitive_field): Treat more fields as
8775 bitfields.
8776
d48e62f4
TT
87772019-05-01 Tom Tromey <tromey@adacore.com>
8778
8779 * ada-lang.c (ada_value_assign): Correctly compute starting offset
8780 for big-endian copies.
8781
15f18d14
AT
87822019-04-30 Ali Tamur <tamur@google.com>
8783 * gdb/dwarf2read.c (read_3_bytes): New declaration.
8784 (read_attribute_value): Added DW_FORM_strx1-4 cases.
8785 (read_3_bytes): New function.
8786
ab4ee614
JB
87872019-04-30 Joel Brobecker <brobecker@adacore.com>
8788
8789 * windows-nat.c (main_thread_id): Delete.
8790 (handle_output_debug_string): Replace main_thread_id by
8791 current_event.dwThreadId.
8792 (fake_create_process): Likewise.
8793 (get_windows_debug_event) <CREATE_PROCESS_DEBUG_EVENT>:
8794 Do not set main_thread_id.
8795 <LOAD_DLL_DEBUG_EVENT>: Replace main_thread_id by
8796 current_event.dwThreadId.
8797 <UNLOAD_DLL_DEBUG_EVENT>: Likewise.
8798
8ed5b76e
JB
87992019-04-30 Joel Brobecker <brobecker@adacore.com>
8800
8801 * windows-nat.c (get_windows_debug_event) <EXIT_PROCESS_DEBUG_EVENT>:
8802 Use current_event.dwThreadId instead of main_thread_id.
8803
2ff0a947
TT
88042019-04-30 Tom Tromey <tromey@adacore.com>
8805
8806 * ada-lang.c (ada_lookup_simple_minsyms): New function.
8807 (create_excep_cond_exprs): Iterate over program spaces.
8808 (ada_exception_catchpoint_cond_string): Examine all minimal
8809 symbols for exception types.
8810
a776957c
TT
88112019-04-30 Tom Tromey <tromey@adacore.com>
8812
8813 PR c++/24470:
8814 * dwarf2read.c (process_structure_scope): Handle case where type
8815 has template parameters but no symbol was created.
8816
bc68014d
AB
88172019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8818 Chris January <chris.january@arm.com>
8819
8820 * f-typeprint.c (f_type_print_base): Print 'allocatable' type
8821 qualifier.
8822 * gdbtypes.h (TYPE_IS_ALLOCATABLE): Define.
8823
f1fdc960
AB
88242019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8825
8826 * f-typeprint.c (f_print_type): Update rules for printing
8827 whitespace.
8828 (f_type_print_varspec_suffix): Likewise.
8829
bf7a4de1
AB
88302019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8831 Chris January <chris.january@arm.com>
8832
8833 * f-typeprint.c (f_type_print_varspec_suffix): Handle printing
8834 function arguments.
8835
bbe75b9d
AB
88362019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8837
8838 * f-lang.c (build_fortran_types): Change name of void type to
8839 lower case.
8840 * f-typeprint.c (f_type_print_base): Print the name of the void
8841 type, rather than a fixed string.
8842 * f-valprint.c (f_decorations): Use lower case void string.
8843
1db455a7
AB
88442019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8845 Chris January <chris.january@arm.com>
8846
8847 * dwarf2read.c (dwarf2_init_complex_target_type): Use different
8848 types for Fortran.
8849
b6d03bb2
AB
88502019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8851 Chris January <chris.january@arm.com>
8852 David Lecomber <david.lecomber@arm.com>
8853
8854 * f-exp.y (BINOP_INTRINSIC): New token.
8855 (exp): New parser rule handling BINOP_INTRINSIC.
8856 (f77_keywords): Add new builtin procedures.
8857 * f-lang.c (evaluate_subexp_f): Handle BINOP_MOD, UNOP_FORTRAN_CEILING,
8858 UNOP_FORTRAN_FLOOR, BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
8859 (operator_length_f): Handle UNOP_FORTRAN_CEILING,
8860 UNOP_FORTRAN_FLOOR, BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
8861 (print_unop_subexp_f): New function.
8862 (print_binop_subexp_f): New function.
8863 (print_subexp_f): Handle UNOP_FORTRAN_CEILING, UNOP_FORTRAN_FLOOR,
8864 BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
8865 (dump_subexp_body_f): Likewise.
8866 (operator_check_f): Likewise.
8867 * fortran-operator.def: Add UNOP_FORTRAN_CEILING, UNOP_FORTRAN_FLOOR,
8868 BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX
8869
83228e93
AB
88702019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8871
8872 * gdb/expprint.c (dump_subexp_body_standard): Remove use of
8873 UNOP_KIND.
8874 * gdb/expression.h (exp_opcode): Include 'fortran-operator.def'.
8875 * gdb/f-exp.y (exp): Rename UNOP_KIND to UNOP_FORTRAN_KIND.
8876 * gdb/f-lang.c (evaluate_subexp_f): Likewise.
8877 (operator_length_f): New fuction.
8878 (print_subexp_f): New function.
8879 (op_name_f): New function.
8880 (dump_subexp_body_f): New function.
8881 (operator_check_f): New function.
8882 (exp_descriptor_f): Replace standard expression handling functions
8883 with new functions.
8884 * gdb/fortran-operator.def: New file.
8885 * gdb/parse.c (operator_length_standard): Remove use of UNOP_KIND.
8886 * gdb/std-operator.def: Remove UNOP_KIND.
8887
6fdcd7cc
AB
88882019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8889
8890 * std-operator.def: Remove unbalanced, stray double quote
8891 character.
8892
2e62ab40
AB
88932019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8894 Chris January <chris.january@arm.com>
8895 Daniel Everett <daniel.everett@arm.com>
8896 Nick Forrington <nick.forrington@arm.com>
8897 Richard Bunt <richard.bunt@arm.com>
8898
8899 * cp-valprint.c (cp_print_value_fields): Allow an additional level
8900 of depth when printing anonymous structs or unions.
8901 * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer):
8902 Don't print either the top-level value, or the children if the
8903 max-depth is exceeded.
8904 (ppscm_print_children): When printing the key of a map, allow one
8905 extra level of depth.
8906 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Don't
8907 print either the top-level value, or the children if the max-depth
8908 is exceeded.
8909 (print_children): When printing the key of a map, allow one extra
8910 level of depth.
8911 * python/py-value.c (valpy_format_string): Add max_depth keyword.
8912 * valprint.c: (PRINT_MAX_DEPTH_DEFAULT): Define.
8913 (user_print_options): Initialise max_depth field.
8914 (val_print_scalar_or_string_type_p): New function.
8915 (val_print): Check to see if the max depth has been reached.
8916 (val_print_check_max_depth): Define new function.
8917 (show_print_max_depth): New function.
8918 (_initialize_valprint): Add 'print max-depth' option.
8919 * valprint.h (struct value_print_options) <max_depth>: New field.
8920 (val_print_check_max_depth): Declare new function.
8921 * NEWS: Document new feature.
8922
4be290b2
AB
89232019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8924
8925 * ada-lang.c (ada_language_defn): Initialise new field.
8926 * c-lang.c (c_is_string_type_p): New function.
8927 (c_language_defn): Initialise new field.
8928 (cplus_language_defn): Initialise new field.
8929 (asm_language_defn): Initialise new field.
8930 (minimal_language_defn): Initialise new field.
8931 * c-lang.h (c_is_string_type_p): Declare new function.
8932 * d-lang.c (d_language_defn): Initialise new field.
8933 * f-lang.c (f_is_string_type_p): New function.
8934 (f_language_defn): Initialise new field.
8935 * go-lang.c (go_is_string_type_p): New function.
8936 (go_language_defn): Initialise new field.
8937 * language.c (default_is_string_type_p): New function.
8938 (unknown_language_defn): Initialise new field.
8939 (auto_language_defn): Initialise new field.
8940 * language.h (struct language_defn) <la_is_string_type_p>: New
8941 member variable.
8942 (default_is_string_type_p): Declare new function.
8943 * m2-lang.c (m2_language_defn): Initialise new field.
8944 * objc-lang.c (objc_language_defn): Initialise new field.
8945 * opencl-lang.c (opencl_language_defn): Initialise new field.
8946 * p-lang.c (pascal_is_string_type_p): New function.
8947 (pascal_language_defn): Initialise new field.
8948 * rust-lang.c (rust_is_string_type_p): New function.
8949 (rust_language_defn): Initialise new field.
8950
721b08c6
AB
89512019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8952
8953 * language.h (struct language_defn) <la_struct_too_deep_ellipsis>:
8954 New field.
8955 * ada-lang.c (ada_language_defn): Initialise new field.
8956 * c-lang.c (c_language_defn): Likewise.
8957 (cplus_language_defn): Likewise.
8958 (asm_language_defn): Likewise.
8959 (minimal_language_defn): Likewise.
8960 * d-lang.c (d_language_defn): Likewise.
8961 * f-lang.c (f_language_defn): Likewise.
8962 * go-lang.c (go_language_defn): Likewise.
8963 * language.c (unknown_language_defn): Likewise.
8964 (auto_language_defn): Likewise.
8965 * m2-lang.c (m2_language_defn): Likewise.
8966 * objc-lang.c (objc_language_defn): Likewise.
8967 * opencl-lang.c (opencl_language_defn): Likewise.
8968 * p-lang.c (pascal_language_defn): Likewise.
8969 * rust-lang.c (rust_language_defn): Likewise.
8970
fc913e53
AB
89712019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8972
8973 * ada-lang.c (ada_is_character_type): Change return type to bool.
8974 (ada_is_string_type): Likewise.
8975 * ada-lang.h (ada_is_character_type): Update declaration
8976 (ada_is_string_type): Likewise.
8977
fa731fa0
PW
89782019-04-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8979
8980 Support style in 'frame|thread apply'
8981
8982 * gdbcmd.h (execute_command_to_string): New term_out parameter.
8983 * record.c (record_start, record_stop): Update callers of
8984 execute_command_to_string with false.
8985 * guile/guile.c (gdbscm_execute_gdb_command): Likewise.
8986 * ui-file.h (class ui_file): New term_out and can_emit_style_escape
8987 methods.
8988 (class string_file): New constructor with term_out parameter.
8989 Override methods term_out and can_emit_style_escape. New member
8990 term_out.
8991 (class stdio_file): Override can_emit_style_escape.
8992 (class tee_file): Override term_out and can_emit_style_escape.
8993 * utils.h (can_emit_style_escape): Remove.
8994 * utils.c (can_emit_style_escape): Likewise.
8995 Update all callers of can_emit_style_escape (SOMESTREAM) to
8996 SOMESTREAM->can_emit_style_escape.
8997 * source-cache.c (source_cache::get_source_lines): Likewise.
8998 * stack.c (frame_apply_command_count): Call execute_command_to_string
8999 passing the term_out characteristic of the current gdb_stdout.
9000 * thread.c (thr_try_catch_cmd): Likewise.
9001 * top.c (execute_command_to_string): pass term_out parameter
9002 to construct the string_file for the command output.
9003 * ui-file.c (term_cli_styling): New function (most code moved
9004 from utils.c can_emit_style_escape).
9005 (string_file::string_file, string_file::can_emit_style_escape,
9006 stdio_file::can_emit_style_escape, tee_file::term_out,
9007 tee_file::can_emit_style_escape): New functions.
9008
136afab8
PW
90092019-04-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9010
9011 * NEWS: Mention the new set|show may-call-functions.
9012 * infcall.c (may_call_functions_p): New variable.
9013 (show_may_call_functions_p): New function.
9014 (call_function_by_hand_dummy): Throws an error if not
9015 may-call-functions.
9016 (_initialize_infcall): Call add_setshow_boolean_cmd for
9017 may-call-functions.
9018
725cbb63
KS
90192019-04-25 Keith Seitz <keiths@redhat.com>
9020
9021 PR c++/24367
9022 * cp-support.c (inspect_type): Don't attempt substitutions
9023 of symbol with the same name.
9024
3d1cbb78
TT
90252019-04-25 Tom Tromey <tromey@adacore.com>
9026
9027 PR gdb/24475:
9028 * event-top.c (gdb_rl_callback_handler): Make "gdb_rl_expt"
9029 static.
9030
94aeb44b
TT
90312019-04-25 Tom Tromey <tromey@adacore.com>
9032
9033 * xml-support.c (struct gdb_xml_parser) <set_error>: Take an
9034 rvalue reference.
9035 (gdb_xml_start_element_wrapper, gdb_xml_end_element_wrapper)
9036 (gdb_xml_parser::parse): Use std::move.
9037 * python/python-internal.h (gdbpy_convert_exception): Take a const
9038 reference.
9039 * python/py-value.c (valpy_getitem, valpy_nonzero): Use
9040 std::move.
9041 * python/py-utils.c (gdbpy_convert_exception): Take a const
9042 reference.
9043 * python/py-inferior.c (infpy_write_memory, infpy_search_memory):
9044 Use std::move.
9045 * python/py-breakpoint.c (bppy_set_condition, bppy_set_commands):
9046 Use std::move.
9047 * mi/mi-main.c (mi_print_exception): Take a const reference.
9048 * main.c (handle_command_errors): Take a const reference.
9049 * linespec.c (parse_linespec): Use std::move.
9050 * infcall.c (run_inferior_call): Use std::move.
9051 (call_function_by_hand_dummy): Use std::move.
9052 * exec.c (try_open_exec_file): Use std::move.
9053 * exceptions.h (exception_print, exception_fprintf)
9054 (exception_print_same): Update.
9055 * exceptions.c (print_exception, exception_print)
9056 (exception_fprintf, exception_print_same): Change parameters to
9057 const reference.
9058 * event-top.c (gdb_rl_callback_read_char_wrapper): Update.
9059 * common/new-op.c: Use std::move.
9060 * common/common-exceptions.h (struct gdb_exception): Add move
9061 constructor.
9062 (struct gdb_exception_error, struct gdb_exception_quit, struct
9063 gdb_quit_bad_alloc): Change constructor to move constructor.
9064 (throw_exception): Change parameter to rvalue reference.
9065 * common/common-exceptions.c (throw_exception): Take rvalue
9066 reference.
9067 * cli/cli-interp.c (safe_execute_command): Use std::move.
9068 * breakpoint.c (insert_bp_location, location_to_sals): Use
9069 std::move.
9070
680d7fd5
TT
90712019-04-25 Tom Tromey <tromey@adacore.com>
9072
9073 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception)
9074 (gdbscm_throw_gdb_exception): Take a gdbscm_gdb_exception.
9075 * guile/scm-block.c, guile/scm-breakpoint.c, guile/scm-cmd.c,
9076 guile/scm-disasm.c, guile/scm-frame.c, guile/scm-lazy-string.c,
9077 guile/scm-math.c, guile/scm-param.c, guile/scm-ports.c,
9078 guile/scm-symbol.c, guile/scm-symtab.c, guile/scm-type.c,
9079 guile/scm-value.c: Use unpack.
9080 * guile/guile-internal.h (gdbscm_scm_from_gdb_exception): Take a
9081 gdbscm_gdb_exception.
9082 (gdbscm_throw_gdb_exception): Likewise.
9083 (struct gdbscm_gdb_exception): New.
9084 (unpack): New function.
9085 (gdbscm_wrap): Use unpack.
9086
c6fdd8b2
TT
90872019-04-25 Tom Tromey <tromey@adacore.com>
9088
9089 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept)
9090 (gdb_rl_callback_handler): Use std::move.
9091 * common/common-exceptions.h (struct gdb_exception): Add move
9092 assignment operator.
9093 (throw_exception_sjlj): Change "exception" to const reference.
9094 * common/common-exceptions.c (exceptions_state_mc_catch): Update.
9095 (throw_exception_sjlj): Change "exception" to const reference.
9096
cc06b668
TT
90972019-04-25 Tom Tromey <tromey@adacore.com>
9098
9099 * xml-support.c (gdb_xml_parser::gdb_xml_parser): Update.
9100 * python/py-value.c (valpy_getitem, valpy_nonzero): Update.
9101 * python/py-inferior.c (infpy_write_memory, infpy_search_memory):
9102 Update.
9103 * python/py-breakpoint.c (bppy_set_condition, bppy_set_commands):
9104 Update.
9105 * mi/mi-interp.c (mi_interp::exec): Update.
9106 * linespec.c (parse_linespec): Update.
9107 * infcall.c (run_inferior_call): Update.
9108 * guile/scm-value.c (gdbscm_value_to_lazy_string): Update.
9109 * guile/scm-symbol.c (gdbscm_lookup_symbol)
9110 (gdbscm_lookup_global_symbol): Update.
9111 * guile/scm-param.c (gdbscm_parameter_value): Update.
9112 * guile/scm-frame.c (gdbscm_frame_read_register)
9113 (gdbscm_frame_read_var): Update.
9114 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Update.
9115 * exec.c (try_open_exec_file): Update.
9116 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept)
9117 (gdb_rl_callback_handler): Update.
9118 * common/common-exceptions.h (exception_none): Don't declare.
9119 * common/common-exceptions.c (exception_none): Don't define.
9120 (struct catcher) <exception>: Update.
9121 * cli/cli-interp.c (safe_execute_command): Update.
9122 * breakpoint.c (insert_bp_location, location_to_sals): Update.
9123
cf532bd1
AT
91242019-04-25 Ali Tamur <tamur@google.com>
9125
9126 * dwarf2read.c (skip_one_die): Add DW_FORM_strx.
9127 (read_attribute_value): Likewise.
9128 (dwarf2_read_addr_index): Update comment.
9129 (read_str_index): Add DW_FORM_strx.
9130 (dwarf2_string_attr): Likewise.
9131 (dwarf2_const_value_attr): Likewise.
9132 (dump_die_shallow): Likewise.
9133 (dwarf2_fetch_constant_bytes): Likewise.
9134 (skip_form_bytes): Likewise.
9135 * testsuite/lib/dwarf.exp (_handle_DW_FORM): Add DW_FORM_strx.
9136
82433e3e
SDJ
91372019-04-25 Sergio Durigan Junior <sergiodj@redhat.com>
9138
9139 PR corefiles/11608
9140 PR corefiles/18187
9141 * linux-tdep.c (dump_mapping_p): Add new parameters ADDR and
9142 OFFSET. Verify if current mapping contains an ELF header.
9143 (linux_find_memory_regions_full): Adjust call to
9144 dump_mapping_p.
9145
723adb65
SL
91462019-04-25 Sandra Loosemore <sandra@codesourcery.com>
9147 Kang Li <kanglictf@gmail.com>
9148
9149 PR gdb/21600
9150
9151 * dwarf2-frame.c (read_initial_length): Be consistent about using
9152 unsigned representation of length.
9153 (decode_frame_entry_1): Likewise. Check for wraparound of
9154 end pointer as well as buffer overflow.
9155
596179f7
SDJ
91562019-04-24 Sergio Durigan Junior <sergiodj@redhat.com>
9157
9158 * aarch64-tdep.c (aarch64_gdbarch_init): Use "pulongest" to print
9159 "vq".
9160
a59240a4
TT
91612019-04-24 Tom Tromey <tromey@adacore.com>
9162
9163 * amd64-tdep.c (amd64_has_unaligned_fields): Ignore bitfields.
9164
f872fdbb
AB
91652019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9166
9167 * s12z-tdep.c (s12z_unwind_pc): Delete.
9168 (s12z_unwind_sp): Delete.
9169 (s12z_gdbarch_init): Don't register deleted functions with
9170 gdbarch.
9171
b614e6f3
AB
91722019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9173
9174 * rl78-tdep.c (rl78_unwind_sp): Delete.
9175 (rl78_gdbarch_init): Don't register deleted function with gdbarch.
9176
14faed38
AB
91772019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9178
9179 * xstormy16-tdep.c (xstormy16_unwind_sp): Delete.
9180 (xstormy16_unwind_pc): Delete.
9181 (xstormy16_dummy_id): Delete.
9182 (xstormy16_gdbarch_init): Don't register deleted functions with
9183 gdbarch.
9184
541aad8a
AB
91852019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9186
9187 * vax-tdep.c (vax_unwind_pc): Delete.
9188 (vax_gdbarch_init): Don't register deleted function with gdbarch.
9189
29222070
AB
91902019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9191
9192 * v850-tdep.c (v850_unwind_sp): Delete.
9193 (v850_unwind_pc): Delete.
9194 (v850_dummy_id): Delete.
9195 (v850_gdbarch_init): Don't register deleted functions with
9196 gdbarch.
9197
0f534d76
AB
91982019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9199
9200 * tilegx-tdep.c (tilegx_unwind_sp): Delete.
9201 (tilegx_unwind_pc): Delete.
9202 (tilegx_unwind_dummy_id): Delete.
9203 (tilegx_gdbarch_init): Don't register deleted functions with
9204 gdbarch.
9205
1ba7b7f9
AB
92062019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9207
9208 * tic6x-tdep.c (tic6x_unwind_sp): Delete.
9209 (tic6x_dummy_id): Delete.
9210 (tic6x_gdbarch_init): Don't register deleted functions with
9211 gdbarch.
9212
d31f262c
AB
92132019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9214
9215 * sparc-tdep.c (sparc_unwind_pc): Delete.
9216 (sparc32_gdbarch_init): Don't register deleted function with
9217 gdbarch.
9218
6d14d64d
AB
92192019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9220
9221 * sh-tdep.c (sh_unwind_sp): Delete.
9222 (sh_unwind_pc): Delete.
9223 (sh_dummy_id): Delete.
9224 (sh_gdbarch_init): Don't register deleted functions with
9225 gdbarch.
9226
a40dde9d
AB
92272019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9228
9229 * score-tdep.c (score_unwind_sp): Delete.
9230 (score_unwind_pc): Delete.
9231 (score_dummy_id): Delete.
9232 (score_gdbarch_init): Don't register deleted functions with
9233 gdbarch.
9234
47c47d69
AB
92352019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9236
9237 * rx-tdep.c (rx_unwind_pc): Delete.
9238 (rx_unwind_sp): Delete.
9239 (rx_dummy_id): Delete.
9240 (rx_gdbarch_init): Don't register deleted functions with
9241 gdbarch. Update comment.
9242
833a4480
AB
92432019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9244
9245 * rs6000-tdep.c (rs6000_unwind_pc): Delete.
9246 (rs6000_dummy_id): Delete.
9247 (rs6000_gdbarch_init): Don't register deleted functions with
9248 gdbarch.
9249
3f2cef49
AB
92502019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9251
9252 * or1k-tdep.c (or1k_dummy_id): Delete.
9253 (or1k_gdbarch_init): Don't register deleted function with gdbarch.
9254
96acf884
AB
92552019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9256
9257 * nios2-tdep.c (nios2_dummy_id): Delete.
9258 (nios2_unwind_sp): Delete.
9259 (nios2_gdbarch_init): Don't register deleted functions with
9260 gdbarch.
9261
ca0ab0aa
AB
92622019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9263
9264 * nds32-tdep.c (nds32_dummy_id): Delete.
9265 (nds32_unwind_pc): Delete.
9266 (nds32_unwind_sp): Delete.
9267 (nds32_gdbarch_init): Don't register deleted functions with
9268 gdbarch.
9269
c8259044
AB
92702019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9271
9272 * msp430-tdep.c (msp430_unwind_pc): Delete.
9273 (msp430_unwind_sp): Delete.
9274 (msp430_dummy_id): Delete.
9275 (msp430_gdbarch_init): Don't register deleted functions with
9276 gdbarch.
9277
27f113c8
AB
92782019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9279
9280 * moxie-tdep.c (moxie_unwind_sp): Delete.
9281 (moxie_unwind_pc): Delete.
9282 (moxie_dummy_id): Delete.
9283 (moxie_gdbarch_init): Don't register deleted functions with
9284 gdbarch.
9285
aee6c3cd
AB
92862019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9287
9288 * mn10300-tdep.c (mn10300_dummy_id): Delete.
9289 (mn10300_unwind_pc): Delete.
9290 (mn10300_unwind_sp): Delete.
9291 (mn10300_push_dummy_call): Use gdbarch_unwind_sp not
9292 mn10300_unwind_sp.
9293 (mn10300_frame_unwind_init): Don't register deleted functions with
9294 gdbarch.
9295
8e2b5aea
AB
92962019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9297
9298 * mep-tdep.c (mep_unwind_pc): Delete.
9299 (mep_unwind_sp): Delete.
9300 (mep_dummy_id): Delete.
9301 (mep_gdbarch_init): Don't register deleted functions with
9302 gdbarch.
9303
43cf3ede
AB
93042019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9305
9306 * m68hc11-tdep.c (m68hc11_unwind_pc): Delete.
9307 (m68hc11_unwind_sp): Delete.
9308 (m68hc11_gdbarch_init): Don't register deleted functions with
9309 gdbarch.
9310
5e79b7bb
AB
93112019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9312
9313 * m32r-tdep.c (m32r_unwind_sp): Delete.
9314 (m32r_unwind_pc): Delete.
9315 (m32r_dummy_id): Delete.
9316 (m32r_gdbarch_init): Don't register deleted functions with
9317 gdbarch.
9318
89b268d8
AB
93192019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9320
9321 * m32c-tdep.c (m32c_unwind_pc): Delete.
9322 (m32c_unwind_sp): Delete.
9323 (m32c_dummy_id): Delete.
9324 (m32c_gdbarch_init): Don't register deleted functions with
9325 gdbarch.
9326
946c28d2
AB
93272019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9328
9329 * gdb/lm32-tdep.c (lm32_unwind_sp): Delete.
9330 (lm32_unwind_pc): Delete.
9331 (lm32_dummy_id): Delete.
9332 (lm32_gdbarch_init): Don't register deleted functions with
9333 gdbarch.
9334
bf12844a
AB
93352019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9336
9337 * gdb/iq2000-tdep.c (iq2000_unwind_sp): Delete.
9338 (iq2000_unwind_pc): Delete.
9339 (iq2000_dummy_id): Delete.
9340 (iq2000_gdbarch_init): Don't register deleted functions with
9341 gdbarch.
9342
ecbc06d2
AB
93432019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9344
9345 * nds32-tdep.c (nds32_type_align): Delete.
9346 (nds32_push_dummy_call): Use type_align instead.
9347
030197b4
AB
93482019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9349
9350 * arm-tdep.c (arm_type_align): Only handle vector override case.
9351 (arm_push_dummy_call): Use type_align.
9352 (arm_gdbarch_init): Register arm_type_align gdbarch function.
9353
b907456c
AB
93542019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9355
9356 * aarch64-tdep.c (aarch64_type_align): Only handle vector override
9357 case.
9358 (pass_on_stack): Use type_align.
9359 (aarch64_gdbarch_init): Register aarch64_type_align gdbarch
9360 function.
9361
9e97ba43
TT
93622019-04-23 Tom Tromey <tromey@adacore.com>
9363
9364 * dwarf2read.c (line_header::file_name_at): Remove unused
9365 overload.
9366
6892f601
TV
93672019-04-23 Tom de Vries <tdevries@suse.de>
9368
9369 PR gdb/24438
9370 * contrib/cc-with-tweaks.sh: Remove superfluous .alt file after dwz
9371 invocation.
9372
336d760d
AT
9373
93742019-03-27 Ali Tamur <tamur@google.com>
9375
9376 * dwarf2-frame.c(dwarf_expr_executor::get_addr_index): Update comment
9377 * dwarf2expr.c(dwarf_expr_context::execute_stack_op): Add DW_OP_addrx
9378 * dwarf2expr.h(dwarf_expr_context::offset): Update comment
9379 (dwarf_expr_context::get_addr_index): Likewise
9380 * dwarf2loc.c(dwarf_evaluate_loc_desc::get_addr_index): Likewise
9381 (symbol_needs_eval_context::get_addr_index): Likewise
9382 (disassemble_dwarf_expression): Add DW_OP_addrx
9383 * dwarf2read.c(attr_value_as_address): Add DW_FORM_addrx
9384 (read_cutu_die_from_dwo): Update comment
9385 (skip_one_die): Add DW_FORM_addrx
9386 (read_attribute_value): Likewise
9387 (var_decode_location): Add DW_OP_addrx
9388 (dwarf2_const_value_attr): Add DW_FORM_addrx
9389 (dump_die_shallow): Likewise
9390 (dwarf2_fetch_constant_bytes): Likewise
9391 (decode_locdesc): Add DW_OP_addrx
9392 (skip_form_bytes): Add DW_FORM_addrx
9393
ad9d13f8
AT
93942019-04-22 Ali Tamur <tamur@google.com>
9395
9396 * MAINTAINERS (Write After Approval): Add self.
9397
d70cc3ba
SM
93982019-04-22 Simon Marchi <simon.marchi@efficios.com>
9399
9400 * solib-svr4.c (get_svr4_info): Add pspace parameter.
9401 (svr4_keep_data_in_core): Pass current_program_space to get_svr4_info.
9402 (open_symbol_file_object): Likewise.
9403 (svr4_default_sos): Add info parameter.
9404 (svr4_read_so_list): Likewise.
9405 (svr4_current_sos_direct): Adjust functions calls to pass down
9406 info.
9407 (svr4_current_sos_1): Add info parameter.
9408 (svr4_current_sos): Call get_svr4_info, pass info down to
9409 svr4_current_sos_1.
9410 (svr4_fetch_objfile_link_map): Pass objfile->pspace to
9411 get_svr4_info.
9412 (svr4_in_dynsym_resolve_code): Pass current_program_space to
9413 get_svr4_info.
9414 (probes_table_htab_remove_objfile_probes): Pass objfile->pspace
9415 to get_svr4_info.
9416 (probes_table_remove_objfile_probes): Likewise.
9417 (register_solib_event_probe): Add info parameter.
9418 (solist_update_incremental): Pass info parameter down to
9419 svr4_read_so_list.
9420 (disable_probes_interface): Add info parameter.
9421 (svr4_handle_solib_event): Pass current_program_space to
9422 get_svr4_info. Adjust disable_probes_interface cleanup.
9423 (svr4_create_probe_breakpoints): Add info parameter, pass it
9424 down to register_solib_event_probe.
9425 (svr4_create_solib_event_breakpoints): Add info parameter,
9426 pass it down to svr4_create_probe_breakpoints.
9427 (enable_break): Pass info down to
9428 svr4_create_solib_event_breakpoints.
9429 (svr4_solib_create_inferior_hook): Pass current_program_space to
9430 get_svr4_info.
9431 (svr4_clear_solib): Likewise.
9432
7905fc35
PA
94332019-04-22 Pedro Alves <palves@redhat.com>
9434
9435 * solib-svr4.c (svr4_free_objfile_observer): New.
9436 (probe_and_action::objfile): New field.
9437 (probes_table_htab_remove_objfile_probes)
9438 (probes_table_remove_objfile_probes): New functions.
9439 (register_solib_event_probe): Add 'objfile' parameter. Store it
9440 in the new probe_and_action. Don't store the probe in 'lookup'.
9441 (svr4_create_probe_breakpoints): Pass objfile to
9442 register_solib_event_probe.
9443 (_initialize_svr4_solib): Register a free_objfile observer.
9444
fb881986
TT
94452019-04-19 Tom Tromey <tom@tromey.com>
9446
9447 * common/queue.h: Remove.
9448
8732db6c
TT
94492019-04-19 Tom Tromey <tom@tromey.com>
9450
9451 * event-loop.c: Don't include "common/queue.h".
9452
97dfbadd
TT
94532019-04-19 Tom Tromey <tom@tromey.com>
9454
9455 * remote.c (remote_target): Use delete.
9456 * remote-notif.h: Include <list>, not "common/queue.h".
9457 (notif_client_p): Remove typedef.
9458 (remote_notif_state): Add constructor, destructor, initializer.
9459 <notif_queue>: Now a std::list.
9460 (remote_notif_state_xfree): Don't declare.
9461 * remote-notif.c (remote_notif_process, handle_notification)
9462 (remote_notif_state_allocate): Update.
9463 (~remote_notif_state): Rename from remote_notif_state_xfree.
9464
cf250e36
TT
94652019-04-19 Tom Tromey <tom@tromey.com>
9466
9467 * symfile.c (reread_symbols): Update.
9468 * objfiles.c (objfile_register_static_link)
9469 (objfile_lookup_static_link): Update
9470 (~objfile) Don't delete static_links.
9471 * objfiles.h (struct objfile) <static_links>: Now an htab_up.
9472
61f4b350
TT
94732019-04-19 Tom Tromey <tom@tromey.com>
9474
9475 * type-stack.h (struct type_stack) <insert>: Constify string.
9476 * type-stack.c (type_stack::insert): Constify string.
9477 * gdbtypes.h (lookup_template_type): Update.
9478 (address_space_name_to_int): Update.
9479 * gdbtypes.c (address_space_name_to_int): Make space_identifier
9480 const.
9481 (lookup_template_type): Make name const.
9482 * c-exp.y: Update rules.
9483 (lex_one_token, classify_name, classify_inner_name)
9484 (c_print_token): Update.
9485 * p-exp.y: Update rules.
9486 (yylex): Update.
9487 * f-exp.y: Update rules.
9488 (yylex): Update.
9489 * d-exp.y: Update rules.
9490 (lex_one_token, classify_name, classify_inner_name): Update.
9491 * parse.c (write_dollar_variable, copy_name): Return std::string.
9492 * parser-defs.h (copy_name): Change return type.
9493 * m2-exp.y: Update rules.
9494 (yylex): Update.
9495 * go-exp.y (lex_one_token): Update.
9496 Update rules.
9497 (classify_unsafe_function, classify_packaged_name)
9498 (classify_name, yylex): Update.
9499
189b8c2e
ST
95002019-04-19 Sergei Trofimovich <siarheit@google.com>
9501
9502 * configure.ac: add --enable-source-highlight switch.
9503 * configure: Regenerate.
9504 * top.c (print_gdb_version): plumb --enable-source-highlight
9505 status to "show configuration".
9506
8ecb59f8
TT
95072019-04-19 Tom Tromey <tromey@adacore.com>
9508
9509 * ada-lang.c (ada_is_variant_part, ada_to_fixed_type_1):
9510 Check ADA_TYPE_P.
9511 (empty_record, ada_template_to_fixed_record_type_1)
9512 (template_to_static_fixed_type)
9513 (to_record_with_fixed_variant_part): Use INIT_NONE_SPECIFIC.
9514 * cp-abi.c (value_rtti_type): Check HAVE_CPLUS_STRUCT.
9515 * gdbtypes.h (INIT_NONE_SPECIFIC, ADA_TYPE_P): New
9516 macros.
9517
62160ec9
TT
95182019-04-19 Ilya Yu. Malakhov <malakhov@mcst.ru>
9519
9520 PR symtab/24423:
9521 * source.c (print_source_lines_base): Advance "iter" when a
9522 control character is seen.
9523
f2ae8bc8
PW
95242019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9525
9526 * inferior.h (struct infcall_suspend_state_deleter):
9527 Catch exception in destructor to avoid crash.
9528
d563b953
PW
95292019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9530
9531 * cli/cli-cmds.c (_initialize_cli_cmds): Move "shell" "!" alias
9532 close to the add_com "shell".
9533
dc34c897
TT
95342019-04-18 Tom Tromey <tromey@adacore.com>
9535
9536 * process-stratum-target.h (class process_stratum_target)
9537 <stratum>: Add "final".
9538
a12e5744
TT
95392019-04-17 Tom Tromey <tromey@adacore.com>
9540
9541 * dwarf2read.c (dwarf2_init_complex_target_type): Check "tt"
9542 against nullptr before use.
9543
a7e559cc
AH
95442019-04-17 Alan Hayward <alan.hayward@arm.com>
9545
9546 * nat/linux-waitpid.c (linux_debug): Call debug_vprintf.
9547
c01660c6
AB
95482019-04-17 Jim Wilson <jimw@sifive.com>
9549 Andrew Burgess <andrew.burgess@embecosm.com>
9550
9551 * riscv-tdep.c (riscv_breakpoint_kind_from_pc): Hanndle case where
9552 code read might fail, assume 4-byte breakpoint in that case.
9553
4aa866af
LS
95542019-04-15 Leszek Swirski <leszeks@google.com>
9555
9556 * amd64-tdep.c (amd64_classify_aggregate): Use cp_pass_by_reference
9557 rather than a hand-rolled POD check when checking for forced MEMORY
9558 classification.
9559
48574d91
AH
95602019-04-15 Alan Hayward <alan.hayward@arm.com>
9561
9562 * aarch64-linux-nat.c (store_sveregs_to_thread): Set vector length.
9563 * nat/aarch64-sve-linux-ptrace.c (aarch64_sve_set_vq): New
9564 function.
9565 (aarch64_sve_regs_copy_to_reg_buf): Remove VG checks.
9566 (aarch64_sve_regs_copy_from_reg_buf): Likewise.
9567 * nat/aarch64-sve-linux-ptrace.h (aarch64_sve_set_vq): New
9568 declaration.
9569
4da037ef
AH
95702019-04-15 Alan Hayward <alan.hayward@arm.com>
9571
9572 * aarch64-linux-nat.c
9573 (aarch64_linux_nat_target::thread_architecture): Add override.
9574 * aarch64-tdep.c (aarch64_gdbarch_init): Ensure different tdesc for
9575 each VQ.
9576
ccb8d7e8
AH
95772019-04-15 Alan Hayward <alan.hayward@arm.com>
9578
9579 * aarch64-tdep.c (aarch64_gdbarch_init): Move gdbarch lookup.
9580
35add35e
AB
95812019-04-13 Andrew Burgess <andrew.burgess@embecosm.com>
9582
9583 * dwarf2read.c (dwarf2_init_complex_target_type): Handle complex
9584 target types of size 96-bits, add some additional comments, and
9585 check that the builtin type we found was the correct size.
9586
51196bbc
EZ
95872019-04-12 Eli Zaretskii <eliz@gnu.org>
9588
9589 * utils.c (prompt_for_continue): Don't restore the styling at the
9590 end, as applied_style has the wrong value. This fixes styling in
9591 long lists of file names that are interrupted by the "Continue?"
9592 prompt.
9593
62253a61
AB
95942019-04-12 Andrew Burgess <andrew.burgess@embecosm.com>
9595
9596 * ada-lang.c (ada_language_defn): Remove use of LANG_MAGIC.
9597 * c-lang.c (c_language_defn): Likewise.
9598 (cplus_language_defn): Likewise.
9599 (asm_language_defn): Likewise.
9600 (minimal_language_defn): Likewise.
9601 * d-lang.c (d_language_defn): Likewise.
9602 * f-lang.c (f_language_defn): Likewise.
9603 * go-lang.c (go_language_defn): Likewise.
9604 * language.c (unknown_language_defn): Likewise.
9605 (auto_language_defn): Likewise.
9606 * language.h (struct language_defn): Remove la_magic field.
9607 (LANG_MAGIC): Delete.
9608 * m2-lang.c (m2_language_defn): Remove use of LANG_MAGIC.
9609 * objc-lang.c (objc_language_defn): Likewise.
9610 * opencl-lang.c (opencl_language_defn): Likewise.
9611 * p-lang.c (pascal_language_defn): Likewise.
9612 * rust-lang.c (rust_language_defn): Likewise.
9613
a9158a86
AB
96142019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
9615
9616 * riscv-tdep.c (riscv_type_align): New function.
9617 (riscv_type_alignment): Delete.
9618 (riscv_arg_location): Use 'type_align'.
9619 (riscv_gdbarch_init): Register riscv_type_align gdbarch function.
9620
41077b66
AB
96212019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
9622
9623 * gdbtypes.c (type_align): A struct with no non-static fields also
9624 has alignment of 1.
9625
9f0272f8
AB
96262019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
9627
9628 * riscv-tdep.c (riscv_call_arg_complex_float): Fix offset of first
9629 component to 0.
9630 (riscv_struct_info::riscv_struct_info): Initialise m_offsets
9631 member.
9632 (riscv_struct_info::analyse): New implementation using new
9633 analyse_inner member function.
9634 (riscv_struct_info::field_offset): New member function.
9635 (riscv_struct_info::m_offsets): New member variable.
9636 (riscv_struct_info::analyse_inner): New private member function,
9637 takes the old implementation of riscv_struct_info::analyse but
9638 extended to track field offsets.
9639 (riscv_call_arg_struct): Update the struct folding special cases
9640 to handle cases where empty C++ structs, which are non-zero
9641 length, are found.
9642 (riscv_arg_location): Initialise the length of each location, a
9643 non-zero length now indicates the location is in use.
9644 (riscv_push_dummy_call): Allow for the first location having a
9645 non-zero offset when setting up arguments.
9646 (riscv_return_value): Likewise, but for return values.
9647
02cf60c7
TT
96482019-04-11 Tom Tromey <tromey@adacore.com>
9649
9650 * utils.c (internal_vproblem): Make "msg" const.
9651
68811f8f
AH
96522019-04-11 Alan Hayward <alan.hayward@arm.com>
9653
9654 * aarch64-tdep.c (aarch64_analyze_prologue_test): Reset saved regs.
9655 * trad-frame.c (trad_frame_reset_saved_regs): New function.
9656 (trad_frame_alloc_saved_regs): Call trad_frame_reset_saved_regs.
9657 * trad-frame.h (trad_frame_reset_saved_regs): New declaration.
9658
3f52fdbc
KB
96592019-04-10 Kevin Buettner <kevinb@redhat.com>
9660
9661 * amd64-linux-nat.c (amd64_linux_collect_native_gregset): New
9662 function.
9663 (fill_gregset): Call amd64_linux_collect_native_gregset instead
9664 of amd64_collect_native_gregset.
9665 (amd64_linux_nat_target::store_registers): Likewise.
9666
e9ad22ee
TT
96672019-04-10 Tom Tromey <tom@tromey.com>
9668
9669 * symtab.c (lookup_global_symbol_from_objfile)
9670 (lookup_symbol_in_objfile_from_linkage_name): Use the iterator.
9671 * objfiles.h (class separate_debug_iterator): New.
9672 (class separate_debug_range): New.
9673 (struct objfile) <separate_debug_objfiles>: New method.
9674 (objfile_separate_debug_iterate): Don't declare.
9675 * objfiles.c (separate_debug_iterator::operator++): Rename from
9676 objfile_separate_debug_iterate.
9677 (objfile_relocate, objfile_rebase, objfile_has_symbols): Use the
9678 iterator.
9679 * minsyms.c (lookup_minimal_symbol_by_pc_section): Use the
9680 iterator.
9681
ee371134
TT
96822019-04-10 Tom Tromey <tom@tromey.com>
9683
9684 * symfile.c (reread_symbols): Remove old comment.
9685 * objfiles.c (free_all_objfiles): Fix a typo.
9686
bf227d61
TT
96872019-04-10 Tom Tromey <tom@tromey.com>
9688
9689 * ia64-tdep.c (ia64_get_dyn_info_list): Use foreach.
9690 * minsyms.c (lookup_minimal_symbol): Use foreach.
9691 (lookup_minimal_symbol_text, lookup_minimal_symbol_by_pc_name)
9692 (lookup_minimal_symbol_solib_trampoline): Likewise.
9693 * symfile.c (reread_symbols): Use foreach.
9694
8dc433a0
TT
96952019-04-09 Ivan Begert <ivanbegert@gmail.com>
9696 Tom Tromey <tromey@adacore.com>
9697
9698 PR rust/24414:
9699 * rust-exp.y (rust_parser::lex_number): Use strtoulst.
9700 (rust_lex_int_test): Change "value" to be LONGEST.
9701 (rust_lex_tests): Add test for long integer literal.
9702
9ab8741a
TT
97032019-04-09 Tom Tromey <tromey@adacore.com>
9704
9705 * remote.c (remote_target::remote_add_inferior): Change fake_pid_p
9706 to bool.
9707 (extended_remote_target::attach): Update.
9708 (remote_target::remote_notice_new_inferior): Update.
9709 (remote_target::add_current_inferior_and_thread): Update.
9710 * inferior.c (exit_inferior_1): Use "false".
9711 * corelow.c (add_to_thread_list): Make fake_pid_p bool.
9712
e242fd12
SM
97132019-04-09 Simon Marchi <simon.marchi@efficios.com>
9714
9ca1957f 9715 * infcmd.c (run_command_1): Pass -qualified to tbreak when using
e242fd12
SM
9716 the "start" command.
9717
2b0c8b01
KB
97182019-04-08 Kevin Buettner <kevinb@redhat.com>
9719
9720 * python/py-inferior.c (infpy_thread_from_thread_handle):
9721 Adjust comments to reflect renaming of thread_from_thread_handle
9722 to thread_from_handle. Adjust keywords. Fix type error message.
9723 (inferior_object_methods): Add thread_from_handle. Retain
9724 thread_from_thread_handle, but mark it as deprecated.
9725
50a82723
KB
97262019-04-08 Kevin Buettner <kevinb@redhat.com>
9727
9728 * gdbthread.h (find_thread_by_handle): Revise declaration.
9729 * thread.c (find_thread_by_handle): Likewise. Adjust
9730 implementation too.
9731 * python/py-inferior.c (infpy_thread_from_thread_handle): Add
9732 support for buffer objects as handles.
9733
cf63b016
KB
97342019-04-08 Kevin Buettner <kevinb@redhat.com>
9735
9736 * python/py-infthread.c (thpy_thread_handle): New function.
9737 (thread_object_methods): Register thpy_thread_handle.
9738
3d6c6204
KB
97392019-04-08 Kevin Buettner <kevinb@redhat.com>
9740
9741 * gdbthread.h (thread_to_thread_handle): Declare.
9742 * thread.c (gdbtypes.h): Include.
9743 (thread_to_thread_handle): New function.
9744
9745 * target.h (struct target_ops): Add thread_info_to_thread_handle.
9746 (target_thread_info_to_thread_handle): Declare.
9747 * target.c (target_thread_info_to_thread_handle): New function.
9748 * target-debug.h (target_debug_print_gdb_byte_vector): Define.
9749 * target-delegates.c: Regenerate.
9750
9751 * linux-thread-db.c (class thread_db_target): Add method
9752 thread_info_to_thread_handle.
9753 (thread_db_target::thread_info_to_thread_handle): Define.
9754 * remote.c (class remote_target): Add new method
9755 thread_info_to_thread_handle.
9756 (remote_target::thread_info_to_thread_handle): Define.
9757
56be6ea8
PA
97582019-04-08 Pedro Alves <palves@redhat.com>
9759
9760 * common/common-exceptions.c (throw_exception): Don't create
9761 named object to throw; throw directly.
9762 (throw_it): Likewise. Don't initialize gdb_exception::message
9763 here, with new; pass FMT and AP to the ctor instead.
9764 * common/common-exceptions.h: Include <string>.
9765 (gdb_exception::gdb_exception(enum return_reason, enum errors,
9766 const char *, va_list)): New ctor. Use std::make_shared.
9767 (gdb_exception_error::gdb_exception_error(enum return_reason, enum
9768 errors)): Delete.
9769 (gdb_exception_error::gdb_exception_error(enum errors, const char
9770 *, va_list)): New.
9771 (gdb_exception_error::gdb_exception_error(const gdb_exception &)):
9772 Add assertion.
9773 (gdb_exception_quit::gdb_exception_quit(enum return_reason, enum
9774 errors)): Delete.
9775 (gdb_exception_quit::gdb_exception_quit(const char *, va_list)): New.
9776 (gdb_exception_quit::gdb_exception_quit(const gdb_exception &)):
9777 Add assertion.
9778
eedc3f4f
TT
97792019-04-08 Tom Tromey <tom@tromey.com>
9780
9781 * valops.c (value_rtti_indirect_type): Replace throw_exception
9782 with throw.
9783 * tracefile-tfile.c (tfile_target_open): Replace throw_exception
9784 with throw.
9785 * thread.c (thr_try_catch_cmd): Replace throw_exception with
9786 throw.
9787 * target.c (target_translate_tls_address): Replace throw_exception
9788 with throw.
9789 * stack.c (frame_apply_command_count): Replace throw_exception
9790 with throw.
9791 * solib-spu.c (append_ocl_sos): Replace throw_exception with
9792 throw.
9793 * s390-tdep.c (s390_frame_unwind_cache): Replace throw_exception
9794 with throw.
9795 * rs6000-tdep.c (rs6000_frame_cache)
9796 (rs6000_epilogue_frame_cache): Replace throw_exception with throw.
9797 * remote.c: Replace throw_exception with throw.
9798 * record-full.c (record_full_message, record_full_wait_1)
9799 (record_full_restore): Replace throw_exception with throw.
9800 * record-btrace.c:
9801 (get_thread_current_frame_id, record_btrace_start_replaying)
9802 (cmd_record_btrace_bts_start, cmd_record_btrace_pt_start)
9803 (cmd_record_btrace_start): Replace throw_exception with throw.
9804 * parse.c (parse_exp_in_context_1): Replace throw_exception with
9805 throw.
9806 * linux-nat.c (detach_one_lwp, linux_resume_one_lwp)
9807 (resume_stopped_resumed_lwps): Replace throw_exception with throw.
9808 * linespec.c:
9809 (find_linespec_symbols): Replace throw_exception with throw.
9810 * infrun.c (displaced_step_prepare, resume): Replace
9811 throw_exception with throw.
9812 * infcmd.c (post_create_inferior): Replace throw_exception with
9813 throw.
9814 * inf-loop.c (inferior_event_handler): Replace throw_exception
9815 with throw.
9816 * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache)
9817 (i386_sigtramp_frame_cache): Replace throw_exception with throw.
9818 * frame.c (frame_unwind_pc, get_prev_frame_if_no_cycle)
9819 (get_prev_frame_always, get_frame_pc_if_available)
9820 (get_frame_address_in_block_if_available, get_frame_language):
9821 Replace throw_exception with throw.
9822 * frame-unwind.c (frame_unwind_try_unwinder): Replace
9823 throw_exception with throw.
9824 * eval.c (fetch_subexp_value, evaluate_var_value)
9825 (evaluate_funcall, evaluate_subexp_standard): Replace
9826 throw_exception with throw.
9827 * dwarf2loc.c (call_site_find_chain)
9828 (dwarf2_evaluate_loc_desc_full, dwarf2_locexpr_baton_eval):
9829 Replace throw_exception with throw.
9830 * dwarf2-frame.c (dwarf2_frame_cache): Replace throw_exception
9831 with throw.
9832 * darwin-nat.c (darwin_attach_pid): Replace throw_exception with
9833 throw.
9834 * cp-abi.c (baseclass_offset): Replace throw_exception with throw.
9835 * completer.c (complete_line_internal): Replace throw_exception
9836 with throw.
9837 * compile/compile-object-run.c (compile_object_run): Replace
9838 throw_exception with throw.
9839 * cli/cli-script.c (process_next_line): Replace throw_exception
9840 with throw.
9841 * btrace.c (btrace_compute_ftrace_pt, btrace_compute_ftrace)
9842 (btrace_enable, btrace_maint_update_pt_packets): Replace
9843 throw_exception with throw.
9844 * breakpoint.c (create_breakpoint, save_breakpoints): Replace
9845 throw_exception with throw.
9846 * break-catch-throw.c (re_set_exception_catchpoint): Replace
9847 throw_exception with throw.
9848 * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache)
9849 (amd64_epilogue_frame_cache): Replace throw_exception with throw.
9850 * aarch64-tdep.c (aarch64_make_prologue_cache)
9851 (aarch64_make_stub_cache): Replace throw_exception with throw.
9852
26003a20
TT
98532019-04-08 Tom Tromey <tom@tromey.com>
9854
9855 * common/common-exceptions.c (throw_exception): Rename from
9856 throw_exception_cxx. Remove old copy. Make argument const.
9857 (throw_it): Create and throw exception objects directly.
9858 * common/common-exceptions.h (throw_exception): Make argument
9859 const.
9860 (struct gdb_exception_error): Add constructor.
9861 (struct gdb_exception_quit): Add constructor.
9862
d272eb37
TT
98632019-04-08 Tom Tromey <tom@tromey.com>
9864
9865 * common/common-exceptions.h (exception_rethrow): Don't declare.
9866 (TRY_SJLJ): Update comment.
9867 (TRY, CATCH, END_CATCH): Remove.
9868 * common/common-exceptions.c (exception_rethrow): Remove.
9869
230d2906
TT
98702019-04-08 Tom Tromey <tom@tromey.com>
9871
9872 * common/common-exceptions.h (gdb_exception_RETURN_MASK_ALL):
9873 Remove.
9874 (gdb_exception_error): Rename from
9875 gdb_exception_RETURN_MASK_ERROR.
9876 (gdb_exception_quit): Rename from gdb_exception_RETURN_MASK_QUIT.
9877 (gdb_quit_bad_alloc): Update.
9878 * aarch64-tdep.c: Update.
9879 * ada-lang.c: Update.
9880 * ada-typeprint.c: Update.
9881 * ada-valprint.c: Update.
9882 * amd64-tdep.c: Update.
9883 * arch-utils.c: Update.
9884 * break-catch-throw.c: Update.
9885 * breakpoint.c: Update.
9886 * btrace.c: Update.
9887 * c-varobj.c: Update.
9888 * cli/cli-cmds.c: Update.
9889 * cli/cli-interp.c: Update.
9890 * cli/cli-script.c: Update.
9891 * common/common-exceptions.c: Update.
9892 * common/new-op.c: Update.
9893 * common/selftest.c: Update.
9894 * compile/compile-c-symbols.c: Update.
9895 * compile/compile-cplus-symbols.c: Update.
9896 * compile/compile-object-load.c: Update.
9897 * compile/compile-object-run.c: Update.
9898 * completer.c: Update.
9899 * corelow.c: Update.
9900 * cp-abi.c: Update.
9901 * cp-support.c: Update.
9902 * cp-valprint.c: Update.
9903 * darwin-nat.c: Update.
9904 * disasm-selftests.c: Update.
9905 * dtrace-probe.c: Update.
9906 * dwarf-index-cache.c: Update.
9907 * dwarf-index-write.c: Update.
9908 * dwarf2-frame-tailcall.c: Update.
9909 * dwarf2-frame.c: Update.
9910 * dwarf2loc.c: Update.
9911 * dwarf2read.c: Update.
9912 * eval.c: Update.
9913 * event-loop.c: Update.
9914 * event-top.c: Update.
9915 * exec.c: Update.
9916 * f-valprint.c: Update.
9917 * fbsd-tdep.c: Update.
9918 * frame-unwind.c: Update.
9919 * frame.c: Update.
9920 * gdbtypes.c: Update.
9921 * gnu-v3-abi.c: Update.
9922 * guile/guile-internal.h: Update.
9923 * guile/scm-block.c: Update.
9924 * guile/scm-breakpoint.c: Update.
9925 * guile/scm-cmd.c: Update.
9926 * guile/scm-disasm.c: Update.
9927 * guile/scm-frame.c: Update.
9928 * guile/scm-lazy-string.c: Update.
9929 * guile/scm-math.c: Update.
9930 * guile/scm-param.c: Update.
9931 * guile/scm-ports.c: Update.
9932 * guile/scm-pretty-print.c: Update.
9933 * guile/scm-symbol.c: Update.
9934 * guile/scm-symtab.c: Update.
9935 * guile/scm-type.c: Update.
9936 * guile/scm-value.c: Update.
9937 * i386-linux-tdep.c: Update.
9938 * i386-tdep.c: Update.
9939 * inf-loop.c: Update.
9940 * infcall.c: Update.
9941 * infcmd.c: Update.
9942 * infrun.c: Update.
9943 * jit.c: Update.
9944 * language.c: Update.
9945 * linespec.c: Update.
9946 * linux-fork.c: Update.
9947 * linux-nat.c: Update.
9948 * linux-tdep.c: Update.
9949 * linux-thread-db.c: Update.
9950 * main.c: Update.
9951 * mi/mi-cmd-break.c: Update.
9952 * mi/mi-cmd-stack.c: Update.
9953 * mi/mi-interp.c: Update.
9954 * mi/mi-main.c: Update.
9955 * objc-lang.c: Update.
9956 * p-valprint.c: Update.
9957 * parse.c: Update.
9958 * ppc-linux-tdep.c: Update.
9959 * printcmd.c: Update.
9960 * python/py-arch.c: Update.
9961 * python/py-breakpoint.c: Update.
9962 * python/py-cmd.c: Update.
9963 * python/py-finishbreakpoint.c: Update.
9964 * python/py-frame.c: Update.
9965 * python/py-framefilter.c: Update.
9966 * python/py-gdb-readline.c: Update.
9967 * python/py-inferior.c: Update.
9968 * python/py-infthread.c: Update.
9969 * python/py-lazy-string.c: Update.
9970 * python/py-linetable.c: Update.
9971 * python/py-objfile.c: Update.
9972 * python/py-param.c: Update.
9973 * python/py-prettyprint.c: Update.
9974 * python/py-progspace.c: Update.
9975 * python/py-record-btrace.c: Update.
9976 * python/py-record.c: Update.
9977 * python/py-symbol.c: Update.
9978 * python/py-type.c: Update.
9979 * python/py-unwind.c: Update.
9980 * python/py-utils.c: Update.
9981 * python/py-value.c: Update.
9982 * python/python.c: Update.
9983 * record-btrace.c: Update.
9984 * record-full.c: Update.
9985 * remote-fileio.c: Update.
9986 * remote.c: Update.
9987 * riscv-tdep.c: Update.
9988 * rs6000-aix-tdep.c: Update.
9989 * rs6000-tdep.c: Update.
9990 * rust-exp.y: Update.
9991 * rust-lang.c: Update.
9992 * s390-tdep.c: Update.
9993 * selftest-arch.c: Update.
9994 * solib-dsbt.c: Update.
9995 * solib-frv.c: Update.
9996 * solib-spu.c: Update.
9997 * solib-svr4.c: Update.
9998 * solib.c: Update.
9999 * sparc64-linux-tdep.c: Update.
10000 * stack.c: Update.
10001 * symfile-mem.c: Update.
10002 * symmisc.c: Update.
10003 * target.c: Update.
10004 * thread.c: Update.
10005 * top.c: Update.
10006 * tracefile-tfile.c: Update.
10007 * tui/tui.c: Update.
10008 * typeprint.c: Update.
10009 * unittests/cli-utils-selftests.c: Update.
10010 * unittests/parse-connection-spec-selftests.c: Update.
10011 * valops.c: Update.
10012 * valprint.c: Update.
10013 * value.c: Update.
10014 * varobj.c: Update.
10015 * windows-nat.c: Update.
10016 * x86-linux-nat.c: Update.
10017 * xml-support.c: Update.
10018
a70b8144
TT
100192019-04-08 Tom Tromey <tom@tromey.com>
10020
10021 * xml-support.c: Use C++ exception handling.
10022 * x86-linux-nat.c: Use C++ exception handling.
10023 * windows-nat.c: Use C++ exception handling.
10024 * varobj.c: Use C++ exception handling.
10025 * value.c: Use C++ exception handling.
10026 * valprint.c: Use C++ exception handling.
10027 * valops.c: Use C++ exception handling.
10028 * unittests/parse-connection-spec-selftests.c: Use C++ exception
10029 handling.
10030 * unittests/cli-utils-selftests.c: Use C++ exception handling.
10031 * typeprint.c: Use C++ exception handling.
10032 * tui/tui.c: Use C++ exception handling.
10033 * tracefile-tfile.c: Use C++ exception handling.
10034 * top.c: Use C++ exception handling.
10035 * thread.c: Use C++ exception handling.
10036 * target.c: Use C++ exception handling.
10037 * symmisc.c: Use C++ exception handling.
10038 * symfile-mem.c: Use C++ exception handling.
10039 * stack.c: Use C++ exception handling.
10040 * sparc64-linux-tdep.c: Use C++ exception handling.
10041 * solib.c: Use C++ exception handling.
10042 * solib-svr4.c: Use C++ exception handling.
10043 * solib-spu.c: Use C++ exception handling.
10044 * solib-frv.c: Use C++ exception handling.
10045 * solib-dsbt.c: Use C++ exception handling.
10046 * selftest-arch.c: Use C++ exception handling.
10047 * s390-tdep.c: Use C++ exception handling.
10048 * rust-lang.c: Use C++ exception handling.
10049 * rust-exp.y: Use C++ exception handling.
10050 * rs6000-tdep.c: Use C++ exception handling.
10051 * rs6000-aix-tdep.c: Use C++ exception handling.
10052 * riscv-tdep.c: Use C++ exception handling.
10053 * remote.c: Use C++ exception handling.
10054 * remote-fileio.c: Use C++ exception handling.
10055 * record-full.c: Use C++ exception handling.
10056 * record-btrace.c: Use C++ exception handling.
10057 * python/python.c: Use C++ exception handling.
10058 * python/py-value.c: Use C++ exception handling.
10059 * python/py-utils.c: Use C++ exception handling.
10060 * python/py-unwind.c: Use C++ exception handling.
10061 * python/py-type.c: Use C++ exception handling.
10062 * python/py-symbol.c: Use C++ exception handling.
10063 * python/py-record.c: Use C++ exception handling.
10064 * python/py-record-btrace.c: Use C++ exception handling.
10065 * python/py-progspace.c: Use C++ exception handling.
10066 * python/py-prettyprint.c: Use C++ exception handling.
10067 * python/py-param.c: Use C++ exception handling.
10068 * python/py-objfile.c: Use C++ exception handling.
10069 * python/py-linetable.c: Use C++ exception handling.
10070 * python/py-lazy-string.c: Use C++ exception handling.
10071 * python/py-infthread.c: Use C++ exception handling.
10072 * python/py-inferior.c: Use C++ exception handling.
10073 * python/py-gdb-readline.c: Use C++ exception handling.
10074 * python/py-framefilter.c: Use C++ exception handling.
10075 * python/py-frame.c: Use C++ exception handling.
10076 * python/py-finishbreakpoint.c: Use C++ exception handling.
10077 * python/py-cmd.c: Use C++ exception handling.
10078 * python/py-breakpoint.c: Use C++ exception handling.
10079 * python/py-arch.c: Use C++ exception handling.
10080 * printcmd.c: Use C++ exception handling.
10081 * ppc-linux-tdep.c: Use C++ exception handling.
10082 * parse.c: Use C++ exception handling.
10083 * p-valprint.c: Use C++ exception handling.
10084 * objc-lang.c: Use C++ exception handling.
10085 * mi/mi-main.c: Use C++ exception handling.
10086 * mi/mi-interp.c: Use C++ exception handling.
10087 * mi/mi-cmd-stack.c: Use C++ exception handling.
10088 * mi/mi-cmd-break.c: Use C++ exception handling.
10089 * main.c: Use C++ exception handling.
10090 * linux-thread-db.c: Use C++ exception handling.
10091 * linux-tdep.c: Use C++ exception handling.
10092 * linux-nat.c: Use C++ exception handling.
10093 * linux-fork.c: Use C++ exception handling.
10094 * linespec.c: Use C++ exception handling.
10095 * language.c: Use C++ exception handling.
10096 * jit.c: Use C++ exception handling.
10097 * infrun.c: Use C++ exception handling.
10098 * infcmd.c: Use C++ exception handling.
10099 * infcall.c: Use C++ exception handling.
10100 * inf-loop.c: Use C++ exception handling.
10101 * i386-tdep.c: Use C++ exception handling.
10102 * i386-linux-tdep.c: Use C++ exception handling.
10103 * guile/scm-value.c: Use C++ exception handling.
10104 * guile/scm-type.c: Use C++ exception handling.
10105 * guile/scm-symtab.c: Use C++ exception handling.
10106 * guile/scm-symbol.c: Use C++ exception handling.
10107 * guile/scm-pretty-print.c: Use C++ exception handling.
10108 * guile/scm-ports.c: Use C++ exception handling.
10109 * guile/scm-param.c: Use C++ exception handling.
10110 * guile/scm-math.c: Use C++ exception handling.
10111 * guile/scm-lazy-string.c: Use C++ exception handling.
10112 * guile/scm-frame.c: Use C++ exception handling.
10113 * guile/scm-disasm.c: Use C++ exception handling.
10114 * guile/scm-cmd.c: Use C++ exception handling.
10115 * guile/scm-breakpoint.c: Use C++ exception handling.
10116 * guile/scm-block.c: Use C++ exception handling.
10117 * guile/guile-internal.h: Use C++ exception handling.
10118 * gnu-v3-abi.c: Use C++ exception handling.
10119 * gdbtypes.c: Use C++ exception handling.
10120 * frame.c: Use C++ exception handling.
10121 * frame-unwind.c: Use C++ exception handling.
10122 * fbsd-tdep.c: Use C++ exception handling.
10123 * f-valprint.c: Use C++ exception handling.
10124 * exec.c: Use C++ exception handling.
10125 * event-top.c: Use C++ exception handling.
10126 * event-loop.c: Use C++ exception handling.
10127 * eval.c: Use C++ exception handling.
10128 * dwarf2read.c: Use C++ exception handling.
10129 * dwarf2loc.c: Use C++ exception handling.
10130 * dwarf2-frame.c: Use C++ exception handling.
10131 * dwarf2-frame-tailcall.c: Use C++ exception handling.
10132 * dwarf-index-write.c: Use C++ exception handling.
10133 * dwarf-index-cache.c: Use C++ exception handling.
10134 * dtrace-probe.c: Use C++ exception handling.
10135 * disasm-selftests.c: Use C++ exception handling.
10136 * darwin-nat.c: Use C++ exception handling.
10137 * cp-valprint.c: Use C++ exception handling.
10138 * cp-support.c: Use C++ exception handling.
10139 * cp-abi.c: Use C++ exception handling.
10140 * corelow.c: Use C++ exception handling.
10141 * completer.c: Use C++ exception handling.
10142 * compile/compile-object-run.c: Use C++ exception handling.
10143 * compile/compile-object-load.c: Use C++ exception handling.
10144 * compile/compile-cplus-symbols.c: Use C++ exception handling.
10145 * compile/compile-c-symbols.c: Use C++ exception handling.
10146 * common/selftest.c: Use C++ exception handling.
10147 * common/new-op.c: Use C++ exception handling.
10148 * cli/cli-script.c: Use C++ exception handling.
10149 * cli/cli-interp.c: Use C++ exception handling.
10150 * cli/cli-cmds.c: Use C++ exception handling.
10151 * c-varobj.c: Use C++ exception handling.
10152 * btrace.c: Use C++ exception handling.
10153 * breakpoint.c: Use C++ exception handling.
10154 * break-catch-throw.c: Use C++ exception handling.
10155 * arch-utils.c: Use C++ exception handling.
10156 * amd64-tdep.c: Use C++ exception handling.
10157 * ada-valprint.c: Use C++ exception handling.
10158 * ada-typeprint.c: Use C++ exception handling.
10159 * ada-lang.c: Use C++ exception handling.
10160 * aarch64-tdep.c: Use C++ exception handling.
10161
3d6e9d23
TT
101622019-04-08 Tom Tromey <tom@tromey.com>
10163
10164 * xml-support.c (gdb_xml_parser::parse): Update.
10165 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
10166 * value.c (show_convenience): Update.
10167 * unittests/cli-utils-selftests.c (test_number_or_range_parser)
10168 (test_parse_flags_qcs): Update.
10169 * thread.c (thr_try_catch_cmd): Update.
10170 * target.c (target_translate_tls_address): Update.
10171 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
10172 (info_frame_command_core, frame_apply_command_count): Update.
10173 * rust-exp.y (rust_lex_exception_test): Update.
10174 * riscv-tdep.c (riscv_print_one_register_info): Update.
10175 * remote.c (remote_target::enable_btrace): Update.
10176 * record-btrace.c (record_btrace_enable_warn): Update.
10177 * python/py-utils.c (gdbpy_convert_exception): Update.
10178 * printcmd.c (do_one_display, print_variable_and_value): Update.
10179 * mi/mi-main.c (mi_print_exception): Update.
10180 * mi/mi-interp.c (mi_cmd_interpreter_exec): Use SCOPE_EXIT.
10181 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
10182 * linux-nat.c (linux_nat_target::attach): Update.
10183 * linux-fork.c (class scoped_switch_fork_info): Update.
10184 * infrun.c (displaced_step_prepare): Update.
10185 * infcall.c (call_function_by_hand_dummy): Update.
10186 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception): Update.
10187 * gnu-v3-abi.c (print_one_vtable): Update.
10188 * frame.c (get_prev_frame_always): Update.
10189 * f-valprint.c (info_common_command_for_block): Update.
10190 * exec.c (try_open_exec_file): Update.
10191 * exceptions.c (print_exception, exception_print)
10192 (exception_fprintf, exception_print_same): Update.
10193 * dwarf2-frame.c (dwarf2_build_frame_info): Update.
10194 * dwarf-index-cache.c (index_cache::store)
10195 (index_cache::lookup_gdb_index): Update.
10196 * darwin-nat.c (maybe_cache_shell): Update.
10197 * cp-valprint.c (cp_print_value_fields): Update.
10198 * compile/compile-cplus-symbols.c (gcc_cplus_convert_symbol)
10199 (gcc_cplus_symbol_address): Update.
10200 * compile/compile-c-symbols.c (gcc_convert_symbol)
10201 (gcc_symbol_address, generate_c_for_for_one_variable): Update.
10202 * common/selftest.c: Update.
10203 * common/common-exceptions.h (struct gdb_exception) <message>: Now
10204 a std::string.
10205 (exception_try_scope_entry, exception_try_scope_exit): Don't
10206 declare.
10207 (struct exception_try_scope): Remove.
10208 (TRY): Don't use exception_try_scope.
10209 (struct gdb_exception): Add constructor, operator=.
10210 <what>: New method.
10211 (struct gdb_exception_RETURN_MASK_ALL)
10212 (struct gdb_exception_RETURN_MASK_ERROR)
10213 (struct gdb_exception_RETURN_MASK_QUIT): Add constructor.
10214 (struct gdb_quit_bad_alloc): Update.
10215 * common/common-exceptions.c (exception_none): Change
10216 initializer.
10217 (struct catcher) <state, exception>: Initialize inline.
10218 <prev>: Remove member.
10219 (current_catcher): Remove.
10220 (catchers): New global.
10221 (exceptions_state_mc_init): Simplify.
10222 (catcher_pop): Remove.
10223 (exceptions_state_mc, exceptions_state_mc_catch): Update.
10224 (try_scope_depth, exception_try_scope_entry)
10225 (exception_try_scope_exit): Remove.
10226 (throw_exception_sjlj): Update.
10227 (exception_messages, exception_messages_size): Remove.
10228 (throw_it): Simplify.
10229 (gdb_exception_sliced_copy): Remove.
10230 (throw_exception_cxx): Update.
10231 * cli/cli-script.c (script_from_file): Update.
10232 * breakpoint.c (insert_bp_location, update_breakpoint_locations):
10233 Update.
10234 * ada-valprint.c (ada_val_print): Update.
10235 * ada-lang.c (ada_to_fixed_type_1, ada_exception_name_addr)
10236 (create_excep_cond_exprs): Update.
10237
c5c10118
TT
102382019-04-08 Tom Tromey <tom@tromey.com>
10239
10240 * common/common-exceptions.h (GDB_XCPT_SJMP, GDB_XCPT_TRY)
10241 (GDB_XCPT_RAW_TRY, GDB_XCPT): Remove.
10242 (TRY, CATCH, END_CATCH): Remove some definitions.
10243 * common/common-exceptions.c: Don't use GDB_XCPT.
10244 (catcher_list_size): Remove.
10245 (throw_exception, throw_it): Simplify.
10246
4de283e4
TT
102472019-04-05 Tom Tromey <tom@tromey.com>
10248
10249 Revert the header-sorting patch.
10250 * ft32-tdep.c: Revert.
10251 * frv-tdep.c: Revert.
10252 * frv-linux-tdep.c: Revert.
10253 * frame.c: Revert.
10254 * frame-unwind.c: Revert.
10255 * frame-base.c: Revert.
10256 * fork-child.c: Revert.
10257 * findvar.c: Revert.
10258 * findcmd.c: Revert.
10259 * filesystem.c: Revert.
10260 * filename-seen-cache.h: Revert.
10261 * filename-seen-cache.c: Revert.
10262 * fbsd-tdep.c: Revert.
10263 * fbsd-nat.h: Revert.
10264 * fbsd-nat.c: Revert.
10265 * f-valprint.c: Revert.
10266 * f-typeprint.c: Revert.
10267 * f-lang.c: Revert.
10268 * extension.h: Revert.
10269 * extension.c: Revert.
10270 * extension-priv.h: Revert.
10271 * expprint.c: Revert.
10272 * exec.h: Revert.
10273 * exec.c: Revert.
10274 * exceptions.c: Revert.
10275 * event-top.c: Revert.
10276 * event-loop.c: Revert.
10277 * eval.c: Revert.
10278 * elfread.c: Revert.
10279 * dwarf2read.h: Revert.
10280 * dwarf2read.c: Revert.
10281 * dwarf2loc.c: Revert.
10282 * dwarf2expr.h: Revert.
10283 * dwarf2expr.c: Revert.
10284 * dwarf2-frame.c: Revert.
10285 * dwarf2-frame-tailcall.c: Revert.
10286 * dwarf-index-write.h: Revert.
10287 * dwarf-index-write.c: Revert.
10288 * dwarf-index-common.c: Revert.
10289 * dwarf-index-cache.h: Revert.
10290 * dwarf-index-cache.c: Revert.
10291 * dummy-frame.c: Revert.
10292 * dtrace-probe.c: Revert.
10293 * disasm.h: Revert.
10294 * disasm.c: Revert.
10295 * disasm-selftests.c: Revert.
10296 * dictionary.c: Revert.
10297 * dicos-tdep.c: Revert.
10298 * demangle.c: Revert.
10299 * dcache.h: Revert.
10300 * dcache.c: Revert.
10301 * darwin-nat.h: Revert.
10302 * darwin-nat.c: Revert.
10303 * darwin-nat-info.c: Revert.
10304 * d-valprint.c: Revert.
10305 * d-namespace.c: Revert.
10306 * d-lang.c: Revert.
10307 * ctf.c: Revert.
10308 * csky-tdep.c: Revert.
10309 * csky-linux-tdep.c: Revert.
10310 * cris-tdep.c: Revert.
10311 * cris-linux-tdep.c: Revert.
10312 * cp-valprint.c: Revert.
10313 * cp-support.c: Revert.
10314 * cp-namespace.c: Revert.
10315 * cp-abi.c: Revert.
10316 * corelow.c: Revert.
10317 * corefile.c: Revert.
10318 * continuations.c: Revert.
10319 * completer.h: Revert.
10320 * completer.c: Revert.
10321 * complaints.c: Revert.
10322 * coffread.c: Revert.
10323 * coff-pe-read.c: Revert.
10324 * cli-out.h: Revert.
10325 * cli-out.c: Revert.
10326 * charset.c: Revert.
10327 * c-varobj.c: Revert.
10328 * c-valprint.c: Revert.
10329 * c-typeprint.c: Revert.
10330 * c-lang.c: Revert.
10331 * buildsym.c: Revert.
10332 * buildsym-legacy.c: Revert.
10333 * build-id.h: Revert.
10334 * build-id.c: Revert.
10335 * btrace.c: Revert.
10336 * bsd-uthread.c: Revert.
10337 * breakpoint.h: Revert.
10338 * breakpoint.c: Revert.
10339 * break-catch-throw.c: Revert.
10340 * break-catch-syscall.c: Revert.
10341 * break-catch-sig.c: Revert.
10342 * blockframe.c: Revert.
10343 * block.c: Revert.
10344 * bfin-tdep.c: Revert.
10345 * bfin-linux-tdep.c: Revert.
10346 * bfd-target.c: Revert.
10347 * bcache.c: Revert.
10348 * ax-general.c: Revert.
10349 * ax-gdb.h: Revert.
10350 * ax-gdb.c: Revert.
10351 * avr-tdep.c: Revert.
10352 * auxv.c: Revert.
10353 * auto-load.c: Revert.
10354 * arm-wince-tdep.c: Revert.
10355 * arm-tdep.c: Revert.
10356 * arm-symbian-tdep.c: Revert.
10357 * arm-pikeos-tdep.c: Revert.
10358 * arm-obsd-tdep.c: Revert.
10359 * arm-nbsd-tdep.c: Revert.
10360 * arm-nbsd-nat.c: Revert.
10361 * arm-linux-tdep.c: Revert.
10362 * arm-linux-nat.c: Revert.
10363 * arm-fbsd-tdep.c: Revert.
10364 * arm-fbsd-nat.c: Revert.
10365 * arm-bsd-tdep.c: Revert.
10366 * arch-utils.c: Revert.
10367 * arc-tdep.c: Revert.
10368 * arc-newlib-tdep.c: Revert.
10369 * annotate.h: Revert.
10370 * annotate.c: Revert.
10371 * amd64-windows-tdep.c: Revert.
10372 * amd64-windows-nat.c: Revert.
10373 * amd64-tdep.c: Revert.
10374 * amd64-sol2-tdep.c: Revert.
10375 * amd64-obsd-tdep.c: Revert.
10376 * amd64-obsd-nat.c: Revert.
10377 * amd64-nbsd-tdep.c: Revert.
10378 * amd64-nbsd-nat.c: Revert.
10379 * amd64-nat.c: Revert.
10380 * amd64-linux-tdep.c: Revert.
10381 * amd64-linux-nat.c: Revert.
10382 * amd64-fbsd-tdep.c: Revert.
10383 * amd64-fbsd-nat.c: Revert.
10384 * amd64-dicos-tdep.c: Revert.
10385 * amd64-darwin-tdep.c: Revert.
10386 * amd64-bsd-nat.c: Revert.
10387 * alpha-tdep.c: Revert.
10388 * alpha-obsd-tdep.c: Revert.
10389 * alpha-nbsd-tdep.c: Revert.
10390 * alpha-mdebug-tdep.c: Revert.
10391 * alpha-linux-tdep.c: Revert.
10392 * alpha-linux-nat.c: Revert.
10393 * alpha-bsd-tdep.c: Revert.
10394 * alpha-bsd-nat.c: Revert.
10395 * aix-thread.c: Revert.
10396 * agent.c: Revert.
10397 * addrmap.c: Revert.
10398 * ada-varobj.c: Revert.
10399 * ada-valprint.c: Revert.
10400 * ada-typeprint.c: Revert.
10401 * ada-tasks.c: Revert.
10402 * ada-lang.c: Revert.
10403 * aarch64-tdep.c: Revert.
10404 * aarch64-ravenscar-thread.c: Revert.
10405 * aarch64-newlib-tdep.c: Revert.
10406 * aarch64-linux-tdep.c: Revert.
10407 * aarch64-linux-nat.c: Revert.
10408 * aarch64-fbsd-tdep.c: Revert.
10409 * aarch64-fbsd-nat.c: Revert.
10410 * aarch32-linux-nat.c: Revert.
10411
d55e5aa6
TT
104122019-04-05 Tom Tromey <tom@tromey.com>
10413
10414 * ft32-tdep.c: Sort headers.
10415 * frv-tdep.c: Sort headers.
10416 * frv-linux-tdep.c: Sort headers.
10417 * frame.c: Sort headers.
10418 * frame-unwind.c: Sort headers.
10419 * frame-base.c: Sort headers.
10420 * fork-child.c: Sort headers.
10421 * findvar.c: Sort headers.
10422 * findcmd.c: Sort headers.
10423 * filesystem.c: Sort headers.
10424 * filename-seen-cache.h: Sort headers.
10425 * filename-seen-cache.c: Sort headers.
10426 * fbsd-tdep.c: Sort headers.
10427 * fbsd-nat.h: Sort headers.
10428 * fbsd-nat.c: Sort headers.
10429 * f-valprint.c: Sort headers.
10430 * f-typeprint.c: Sort headers.
10431 * f-lang.c: Sort headers.
10432 * extension.h: Sort headers.
10433 * extension.c: Sort headers.
10434 * extension-priv.h: Sort headers.
10435 * expprint.c: Sort headers.
10436 * exec.h: Sort headers.
10437 * exec.c: Sort headers.
10438 * exceptions.c: Sort headers.
10439 * event-top.c: Sort headers.
10440 * event-loop.c: Sort headers.
10441 * eval.c: Sort headers.
10442 * elfread.c: Sort headers.
10443 * dwarf2read.h: Sort headers.
10444 * dwarf2read.c: Sort headers.
10445 * dwarf2loc.c: Sort headers.
10446 * dwarf2expr.h: Sort headers.
10447 * dwarf2expr.c: Sort headers.
10448 * dwarf2-frame.c: Sort headers.
10449 * dwarf2-frame-tailcall.c: Sort headers.
10450 * dwarf-index-write.h: Sort headers.
10451 * dwarf-index-write.c: Sort headers.
10452 * dwarf-index-common.c: Sort headers.
10453 * dwarf-index-cache.h: Sort headers.
10454 * dwarf-index-cache.c: Sort headers.
10455 * dummy-frame.c: Sort headers.
10456 * dtrace-probe.c: Sort headers.
10457 * disasm.h: Sort headers.
10458 * disasm.c: Sort headers.
10459 * disasm-selftests.c: Sort headers.
10460 * dictionary.c: Sort headers.
10461 * dicos-tdep.c: Sort headers.
10462 * demangle.c: Sort headers.
10463 * dcache.h: Sort headers.
10464 * dcache.c: Sort headers.
10465 * darwin-nat.h: Sort headers.
10466 * darwin-nat.c: Sort headers.
10467 * darwin-nat-info.c: Sort headers.
10468 * d-valprint.c: Sort headers.
10469 * d-namespace.c: Sort headers.
10470 * d-lang.c: Sort headers.
10471 * ctf.c: Sort headers.
10472 * csky-tdep.c: Sort headers.
10473 * csky-linux-tdep.c: Sort headers.
10474 * cris-tdep.c: Sort headers.
10475 * cris-linux-tdep.c: Sort headers.
10476 * cp-valprint.c: Sort headers.
10477 * cp-support.c: Sort headers.
10478 * cp-namespace.c: Sort headers.
10479 * cp-abi.c: Sort headers.
10480 * corelow.c: Sort headers.
10481 * corefile.c: Sort headers.
10482 * continuations.c: Sort headers.
10483 * completer.h: Sort headers.
10484 * completer.c: Sort headers.
10485 * complaints.c: Sort headers.
10486 * coffread.c: Sort headers.
10487 * coff-pe-read.c: Sort headers.
10488 * cli-out.h: Sort headers.
10489 * cli-out.c: Sort headers.
10490 * charset.c: Sort headers.
10491 * c-varobj.c: Sort headers.
10492 * c-valprint.c: Sort headers.
10493 * c-typeprint.c: Sort headers.
10494 * c-lang.c: Sort headers.
10495 * buildsym.c: Sort headers.
10496 * buildsym-legacy.c: Sort headers.
10497 * build-id.h: Sort headers.
10498 * build-id.c: Sort headers.
10499 * btrace.c: Sort headers.
10500 * bsd-uthread.c: Sort headers.
10501 * breakpoint.h: Sort headers.
10502 * breakpoint.c: Sort headers.
10503 * break-catch-throw.c: Sort headers.
10504 * break-catch-syscall.c: Sort headers.
10505 * break-catch-sig.c: Sort headers.
10506 * blockframe.c: Sort headers.
10507 * block.c: Sort headers.
10508 * bfin-tdep.c: Sort headers.
10509 * bfin-linux-tdep.c: Sort headers.
10510 * bfd-target.c: Sort headers.
10511 * bcache.c: Sort headers.
10512 * ax-general.c: Sort headers.
10513 * ax-gdb.h: Sort headers.
10514 * ax-gdb.c: Sort headers.
10515 * avr-tdep.c: Sort headers.
10516 * auxv.c: Sort headers.
10517 * auto-load.c: Sort headers.
10518 * arm-wince-tdep.c: Sort headers.
10519 * arm-tdep.c: Sort headers.
10520 * arm-symbian-tdep.c: Sort headers.
10521 * arm-pikeos-tdep.c: Sort headers.
10522 * arm-obsd-tdep.c: Sort headers.
10523 * arm-nbsd-tdep.c: Sort headers.
10524 * arm-nbsd-nat.c: Sort headers.
10525 * arm-linux-tdep.c: Sort headers.
10526 * arm-linux-nat.c: Sort headers.
10527 * arm-fbsd-tdep.c: Sort headers.
10528 * arm-fbsd-nat.c: Sort headers.
10529 * arm-bsd-tdep.c: Sort headers.
10530 * arch-utils.c: Sort headers.
10531 * arc-tdep.c: Sort headers.
10532 * arc-newlib-tdep.c: Sort headers.
10533 * annotate.h: Sort headers.
10534 * annotate.c: Sort headers.
10535 * amd64-windows-tdep.c: Sort headers.
10536 * amd64-windows-nat.c: Sort headers.
10537 * amd64-tdep.c: Sort headers.
10538 * amd64-sol2-tdep.c: Sort headers.
10539 * amd64-obsd-tdep.c: Sort headers.
10540 * amd64-obsd-nat.c: Sort headers.
10541 * amd64-nbsd-tdep.c: Sort headers.
10542 * amd64-nbsd-nat.c: Sort headers.
10543 * amd64-nat.c: Sort headers.
10544 * amd64-linux-tdep.c: Sort headers.
10545 * amd64-linux-nat.c: Sort headers.
10546 * amd64-fbsd-tdep.c: Sort headers.
10547 * amd64-fbsd-nat.c: Sort headers.
10548 * amd64-dicos-tdep.c: Sort headers.
10549 * amd64-darwin-tdep.c: Sort headers.
10550 * amd64-bsd-nat.c: Sort headers.
10551 * alpha-tdep.c: Sort headers.
10552 * alpha-obsd-tdep.c: Sort headers.
10553 * alpha-nbsd-tdep.c: Sort headers.
10554 * alpha-mdebug-tdep.c: Sort headers.
10555 * alpha-linux-tdep.c: Sort headers.
10556 * alpha-linux-nat.c: Sort headers.
10557 * alpha-bsd-tdep.c: Sort headers.
10558 * alpha-bsd-nat.c: Sort headers.
10559 * aix-thread.c: Sort headers.
10560 * agent.c: Sort headers.
10561 * addrmap.c: Sort headers.
10562 * ada-varobj.c: Sort headers.
10563 * ada-valprint.c: Sort headers.
10564 * ada-typeprint.c: Sort headers.
10565 * ada-tasks.c: Sort headers.
10566 * ada-lang.c: Sort headers.
10567 * aarch64-tdep.c: Sort headers.
10568 * aarch64-ravenscar-thread.c: Sort headers.
10569 * aarch64-newlib-tdep.c: Sort headers.
10570 * aarch64-linux-tdep.c: Sort headers.
10571 * aarch64-linux-nat.c: Sort headers.
10572 * aarch64-fbsd-tdep.c: Sort headers.
10573 * aarch64-fbsd-nat.c: Sort headers.
10574 * aarch32-linux-nat.c: Sort headers.
10575
699bd4cf
TT
105762019-04-04 Tom Tromey <tom@tromey.com>
10577
10578 * varobj.c (varobj_create): Update.
10579 * rust-exp.y (struct rust_parser) <update_innermost_block,
10580 lookup_symbol>: New methods.
10581 (rust_parser::update_innermost_block, rust_parser::lookup_symbol):
10582 Rename.
10583 (rust_parser::rust_lookup_type)
10584 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
10585 * printcmd.c (display_command, do_one_display): Update.
10586 * parser-defs.h (struct parser_state) <parser_state>: Add
10587 "tracker" parameter.
10588 (block_tracker): New member.
10589 (class innermost_block_tracker) <innermost_block_tracker>: Add
10590 "types" parameter.
10591 <reset>: Remove method.
10592 (innermost_block): Don't declare.
10593 (null_post_parser): Update.
10594 * parse.c (innermost_block): Remove global.
10595 (write_dollar_variable): Update.
10596 (parse_exp_1, parse_exp_in_context): Add "tracker" parameter.
10597 Remove "tracker_types" parameter.
10598 (parse_expression): Add "tracker" parameter.
10599 (parse_expression_for_completion): Update.
10600 (null_post_parser): Add "tracker" parameter.
10601 * p-exp.y: Update rules.
10602 * m2-exp.y: Update rules.
10603 * language.h (struct language_defn) <la_post_parser>: Add
10604 "tracker" parameter.
10605 * go-exp.y: Update rules.
10606 * f-exp.y: Update rules.
10607 * expression.h (parse_expression, parse_exp_1): Add "tracker"
10608 parameter.
10609 * d-exp.y: Update rules.
10610 * c-exp.y: Update rules.
10611 * breakpoint.c (set_breakpoint_condition): Create an
10612 innermost_block_tracker.
10613 (watch_command_1): Likewise.
10614 * ada-lang.c (resolve): Add "tracker" parameter.
10615 (resolve_subexp): Likewise.
10616 * ada-exp.y (write_var_from_sym): Update.
10617
dac43e32
TT
106182019-04-04 Tom Tromey <tom@tromey.com>
10619
10620 * type-stack.h: New file.
10621 * type-stack.c: New file.
10622 * parser-defs.h (enum type_pieces, union type_stack_elt): Move to
10623 type-stack.h.
10624 (insert_into_type_stack, insert_type, push_type, push_type_int)
10625 (insert_type_address_space, pop_type, pop_type_int)
10626 (pop_typelist, pop_type_stack, append_type_stack)
10627 (push_type_stack, get_type_stack, push_typelist)
10628 (follow_type_instance_flags, follow_types): Don't declare.
10629 * parse.c (type_stack): Remove global.
10630 (parse_exp_in_context): Update.
10631 (insert_into_type_stack, insert_type, push_type, push_type_int)
10632 (insert_type_address_space, pop_type, pop_type_int)
10633 (pop_typelist, pop_type_stack, append_type_stack)
10634 (push_type_stack, get_type_stack, push_typelist)
10635 (follow_type_instance_flags, follow_types): Remove (moved to
10636 type-stack.c).
10637 * f-exp.y (type_stack): New global.
10638 Update rules.
10639 (push_kind_type, f_parse): Update.
10640 * d-exp.y (type_stack): New global.
10641 Update rules.
10642 (d_parse): Update.
10643 * c-exp.y (struct c_parse_state) <type_stack>: New member.
10644 Update rules.
10645 * Makefile.in (COMMON_SFILES): Add type-stack.c.
10646 (HFILES_NO_SRCDIR): Add type-stack.h.
10647
2a612529
TT
106482019-04-04 Tom Tromey <tom@tromey.com>
10649
10650 * rust-exp.y (rust_parser::lex_identifier, rustyylex)
10651 (rust_parser::convert_ast_to_expression, rust_parse)
10652 (rust_lex_test_completion, rust_lex_tests): Update.
10653 * parser-defs.h (struct expr_completion_state): New.
10654 (struct parser_state) <parser_state>: Add completion parameter.
10655 <mark_struct_expression, mark_completion_tag>: New methods.
10656 <parse_completion, m_completion_state>: New members.
10657 (prefixify_expression, null_post_parser): Update.
10658 (mark_struct_expression, mark_completion_tag): Don't declare.
10659 * parse.c (parse_completion, expout_last_struct)
10660 (expout_tag_completion_type, expout_completion_name): Remove
10661 globals.
10662 (parser_state::mark_struct_expression)
10663 (parser_state::mark_completion_tag): Now methods.
10664 (prefixify_expression): Add last_struct parameter.
10665 (prefixify_subexp): Likewise.
10666 (parse_exp_1): Update.
10667 (parse_exp_in_context): Add cstate parameter. Update.
10668 (parse_expression_for_completion): Create an
10669 expr_completion_state.
10670 (null_post_parser): Add "completion" parameter.
10671 * p-exp.y: Update rules.
10672 (yylex): Update.
10673 * language.h (struct language_defn) <la_post_parser>: Add
10674 "completing" parameter.
10675 * go-exp.y: Update rules.
10676 (lex_one_token): Update.
10677 * expression.h (parse_completion): Don't declare.
10678 * d-exp.y: Update rules.
10679 (lex_one_token): Update rules.
10680 * c-exp.y: Update rules.
10681 (lex_one_token): Update.
10682 * ada-lang.c (resolve): Add "parse_completion" parameter.
10683 (resolve_subexp): Likewise.
10684 (ada_resolve_function): Likewise.
10685
43476f0b
TT
106862019-04-04 Tom Tromey <tom@tromey.com>
10687
10688 * parser-defs.h (struct parser_state) <start_arglist,
10689 end_arglist>: New methods.
10690 <arglist_len, m_funcall_chain>: New members.
10691 (arglist_len, start_arglist, end_arglist): Don't declare.
10692 * parse.c (arglist_len, funcall_chain): Remove global.
10693 (start_arglist, end_arglist): Remove functions.
10694 (parse_exp_in_context): Update.
10695 * p-exp.y: Update rules.
10696 * m2-exp.y: Update rules.
10697 * go-exp.y: Update rules.
10698 * f-exp.y: Update rules.
10699 * d-exp.y: Update rules.
10700 * c-exp.y: Update rules.
10701
5776fca3
TT
107022019-04-04 Tom Tromey <tom@tromey.com>
10703
10704 * rust-exp.y (struct rust_parser) <lex_hex, lex_escape,
10705 lex_operator, push_back>: New methods.
10706 Update all rules.
10707 (rust_parser::lex_hex, lex_escape): Rename and update.
10708 (rust_parser::lex_string, rust_parser::lex_identifier): Update.
10709 (rust_parser::lex_operator): Rename and update.
10710 (rust_parser::lex_number, rustyylex, rustyyerror)
10711 (rust_lex_test_init, rust_lex_test_sequence)
10712 (rust_lex_test_push_back, rust_lex_tests): Update.
10713 * parser-defs.h (struct parser_state) <parser_state>: Add "input"
10714 parameter.
10715 <lexptr, prev_lexptr>: New members.
10716 (lexptr, prev_lexptr): Don't declare.
10717 * parse.c (lexptr, prev_lexptr): Remove globals.
10718 (parse_exp_in_context): Update.
10719 * p-exp.y (yylex, yyerror): Update.
10720 * m2-exp.y (parse_number, yylex, yyerror): Update.
10721 * go-exp.y (lex_one_token, yyerror): Update.
10722 * f-exp.y (match_string_literal, yylex, yyerror): Update.
10723 * d-exp.y (lex_one_token, yyerror): Update.
10724 * c-exp.y (scan_macro_expansion, finished_macro_expansion)
10725 (lex_one_token, yyerror): Update.
10726 * ada-lex.l (YY_INPUT): Update.
10727 (rewind_to_char): Update.
10728 * ada-exp.y (yyerror): Update.
10729
8621b685
TT
107302019-04-04 Tom Tromey <tom@tromey.com>
10731
10732 * rust-exp.y (rustyylex, rust_lex_tests): Update.
10733 * parser-defs.h (struct parser_state) <parser_state>: Add new
10734 parameter.
10735 <comma_terminates>: New member.
10736 (comma_terminates): Don't declare global.
10737 * parse.c (comma_terminates): Remove global.
10738 (parse_exp_in_context): Update.
10739 * p-exp.y (yylex): Update.
10740 * m2-exp.y (yylex): Update.
10741 * go-exp.y (lex_one_token): Update.
10742 * f-exp.y (yylex): Update.
10743 * d-exp.y (lex_one_token): Update.
10744 * c-exp.y (lex_one_token): Update.
10745 * ada-lex.l: Update.
10746
28aaf3fd
TT
107472019-04-04 Tom Tromey <tom@tromey.com>
10748
10749 * rust-exp.y (struct rust_parser) <paren_depth>: New member.
10750 (rustyylex, rust_lex_test_init, rust_lex_test_one)
10751 (rust_lex_test_sequence, rust_lex_test_push_back): Update.
10752 * parser-defs.h (paren_depth): Don't declare.
10753 * parse.c (paren_depth): Remove global.
10754 (parse_exp_in_context): Update.
10755 * p-exp.y (paren_depth): New global.
10756 (pascal_parse): Initialize it.
10757 * m2-exp.y (paren_depth): New global.
10758 (m2_parse): Initialize it.
10759 * go-exp.y (paren_depth): New global.
10760 (go_parse): Initialize it.
10761 * f-exp.y (paren_depth): New global.
10762 (f_parse): Initialize it.
10763 * d-exp.y (paren_depth): New global.
10764 (d_parse): Initialize it.
10765 * c-exp.y (paren_depth): New global.
10766 (c_parse): Initialize it.
10767 * ada-lex.l (paren_depth): New global.
10768 (lexer_init): Initialize it.
10769
1e58a4a4
TT
107702019-04-04 Tom Tromey <tom@tromey.com>
10771
10772 * rust-exp.y (rust_parser::crate_name, rust_parser::super_name)
10773 (rust_parser::convert_ast_to_type)
10774 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
10775 * parser-defs.h (struct parser_state) <parser_state>: Add
10776 parameters. Initialize new members.
10777 <expression_context_block, expression_context_pc>: New members.
10778 * parse.c (expression_context_block, expression_context_pc):
10779 Remove globals.
10780 (parse_exp_in_context): Update.
10781 * p-exp.y: Update all rules.
10782 (yylex): Update.
10783 * m2-exp.y: Update all rules.
10784 (yylex): Update.
10785 * go-exp.y (yylex): Update.
10786 * f-exp.y (yylex): Update.
10787 * d-exp.y: Update all rules.
10788 (yylex): Update.
10789 * c-exp.y: Update all rules.
10790 (lex_one_token, classify_name, yylex, c_parse): Update.
10791 * ada-exp.y (write_var_or_type, write_name_assoc): Update.
10792
37eedb39
TT
107932019-04-04 Tom Tromey <tom@tromey.com>
10794
10795 * gdbarch.h, gdbarch.c: Rebuild.
10796 * gdbarch.sh (dtrace_parse_probe_argument): Change type.
10797 * stap-probe.h:
10798 (struct stap_parse_info): Replace "parser_state" with
10799 "expr_builder".
10800 * parser-defs.h (struct expr_builder): Rename from "parser_state".
10801 (parser_state): New class.
10802 * parse.c (expr_builder): Rename.
10803 (expr_builder::release): Rename.
10804 (write_exp_elt, write_exp_elt_opcode, write_exp_elt_sym)
10805 (write_exp_elt_msym, write_exp_elt_block, write_exp_elt_objfile)
10806 (write_exp_elt_longcst, write_exp_elt_floatcst)
10807 (write_exp_elt_type, write_exp_elt_intern, write_exp_string)
10808 (write_exp_string_vector, write_exp_bitstring)
10809 (write_exp_msymbol, mark_struct_expression)
10810 (write_dollar_variable)
10811 (insert_type_address_space, increase_expout_size): Replace
10812 "parser_state" with "expr_builder".
10813 * dtrace-probe.c: Replace "parser_state" with "expr_builder".
10814 * amd64-linux-tdep.c (amd64_dtrace_parse_probe_argument): Replace
10815 "parser_state" with "expr_builder".
10816
73923d7e
TT
108172019-04-04 Tom Tromey <tom@tromey.com>
10818
10819 * rust-exp.y: Replace "parse_language" with method call.
10820 * p-exp.y:
10821 (yylex): Replace "parse_language" with method call.
10822 * m2-exp.y:
10823 (yylex): Replace "parse_language" with method call.
10824 * go-exp.y (classify_name): Replace "parse_language" with method
10825 call.
10826 * f-exp.y (yylex): Replace "parse_language" with method call.
10827 * d-exp.y (lex_one_token): Replace "parse_language" with method
10828 call.
10829 * c-exp.y:
10830 (lex_one_token, classify_name, yylex): Replace "parse_language"
10831 with method call.
10832 * ada-exp.y (find_primitive_type, type_char)
10833 (type_system_address): Replace "parse_language" with method call.
10834
fa9f5be6
TT
108352019-04-04 Tom Tromey <tom@tromey.com>
10836
10837 * rust-exp.y: Replace "parse_gdbarch" with method call.
10838 * parse.c (write_dollar_variable, insert_type_address_space):
10839 Replace "parse_gdbarch" with method call.
10840 * p-exp.y (parse_type, yylex): Replace "parse_gdbarch" with method
10841 call.
10842 * objc-lang.c (end_msglist): Replace "parse_gdbarch" with method
10843 call.
10844 * m2-exp.y (parse_type, parse_m2_type, yylex): Replace
10845 "parse_gdbarch" with method call.
10846 * go-exp.y (parse_type, classify_name): Replace "parse_gdbarch"
10847 with method call.
10848 * f-exp.y (parse_type, parse_f_type, yylex): Replace
10849 "parse_gdbarch" with method call.
10850 * d-exp.y (parse_type, parse_d_type, lex_one_token): Replace
10851 "parse_gdbarch" with method call.
10852 * c-exp.y (parse_type, parse_number, classify_name): Replace
10853 "parse_gdbarch" with method call.
10854 * ada-lex.l: Replace "parse_gdbarch" with method call.
10855 * ada-exp.y (parse_type, find_primitive_type, type_char)
10856 (type_system_address): Replace "parse_gdbarch" with method call.
10857
1201a264
TT
108582019-04-04 Tom Tromey <tom@tromey.com>
10859
10860 * dtrace-probe.c (dtrace_probe::build_arg_exprs): Update.
10861 * stap-probe.c (stap_parse_argument): Update.
10862 * stap-probe.h (struct stap_parse_info) <stap_parse_info>: Remove
10863 initial_size parameter.
10864 * rust-exp.y (rust_lex_tests): Update.
10865 * parse.c (parser_state): Update.
10866 (parse_exp_in_context): Update.
10867 * parser-defs.h (struct parser_state) <parser_state>: Remove
10868 "initial_size" parameter.
10869
e3980ce2
TT
108702019-04-04 Tom Tromey <tom@tromey.com>
10871
10872 * parser-defs.h (increase_expout_size): Don't declare.
10873 * parse.c (increase_expout_size): Now static.
10874
e9f8e3f1
TS
108752019-04-04 Thomas Schwinge <thomas@codesourcery.com>
10876
10877 * gnu-nat.c (gnu_nat_target::wait): Fix
10878 target_waitstatus_to_string call.
10879
d7df6549
AB
108802019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
10881
10882 * eval.c (evaluate_subexp_standard): Handle internal functions
10883 during Fortran function call handling.
10884
8bdc1658
AB
108852019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
10886
10887 * NEWS: Mention new internal functions.
10888 * dwarf2read.c (dwarf2_init_complex_target_type): New function.
10889 (read_base_type): Use dwarf2_init_complex_target_type.
10890 * value.c (creal_internal_fn): New function.
10891 (cimag_internal_fn): New function.
10892 (_initialize_values): Register new internal functions.
10893
c29705b7
PW
108942019-04-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10895
10896 * infrun.c (stop_all_threads): If debug_infrun, always
10897 trace the wait status after wait_one, using
10898 target_waitstatus_to_string and target_pid_to_str.
10899 (handle_inferior_event): Replace various trace of
10900 wait status kind by a single trace.
10901 * gdb/gnu-nat.c (gnu_nat_target::wait): Replace local
10902 wait status kind image by target_waitstatus_to_string.
10903 * target/waitstatus.c (target_waitstatus_to_string): Fix
10904 obsolete comment.
10905
05caa1d2
TT
109062019-04-01 Tom Tromey <tromey@adacore.com>
10907
10908 PR symtab/23331:
10909 * dwarf2read.c (partial_die_info::read): Handle DW_AT_ranges.
10910
9d1447e0
SDJ
109112019-04-01 Sergio Durigan Junior <sergiodj@redhat.com>
10912 Pedro Alves <palves@redhat.com>
10913
10914 * top.c (quit_force): Call 'finalize_values'.
10915 * value.c (finalize_values): New function.
10916 * value.h (finalize_values): Declare.
10917
7734102d
EZ
109182019-03-30 Eli Zaretskii <eliz@gnu.org>
10919
10920 * NEWS: Announce $_gdb_major and $_gdb_minor.
10921
10922 * top.c (init_gdb_version_vars): New function.
10923 (gdb_init): Call init_gdb_version_vars.
10924
188e1fa9
TT
109252019-03-29 Tom Tromey <tromey@adacore.com>
10926
10927 * printcmd.c (_initialize_printcmd): Add usage lines. Update some
10928 help text. Remove dead code.
10929
2880242d
KS
109302019-03-29 Keith Seitz <keiths@redhat.com>
10931
10932 From Siddhesh Poyarekar:
10933 * f-lang.h (f77_get_upperbound): Return LONGEST.
10934 (f77_get_lowerbound): Likewise.
10935 * f-typeprint.c (f_type_print_varspec_suffix): Expand
10936 UPPER_BOUND and LOWER_BOUND to LONGEST. Use plongest to format
10937 print them.
10938 (f_type_print_base): Expand UPPER_BOUND to LONGEST. Use
10939 plongest to format print it.
10940 * f-valprint.c (f77_get_lowerbound): Return LONGEST.
10941 (f77_get_upperbound): Likewise.
10942 (f77_get_dynamic_length_of_aggregate): Expand UPPER_BOUND,
10943 LOWER_BOUND to LONGEST.
10944 (f77_create_arrayprint_offset_tbl): Likewise.
10945
cc1defb1
KS
109462019-03-29 Keith Seitz <keiths@redhat.com>
10947
10948 * ada-lang.c (ada_template_to_fixed_record_type_1): Use
10949 %s/pulongest for TYPE_LENGTH instead of %d in format
10950 strings.
10951 * ada-typerint.c (ada_print_type): Likewise.
10952 * amd64-windows-tdep.c (amd64_windows_store_arg_in_reg): Likewise.
10953 * compile/compile-c-support.c (generate_register_struct): Likewise.
10954 * gdbtypes.c (recursive_dump_type): Likewise.
10955 * gdbtypes.h (struct type) <length>: Change type to ULONGEST.
10956 * m2-typeprint.c (m2_array): Use %s/pulongest for TYPE_LENGTH
10957 instead of %d in format strings.
10958 * riscv-tdep.c (riscv_type_alignment): Cast second argument
10959 to std::min to ULONGEST.
10960 * symmisc.c (print_symbol): Use %s/pulongest for TYPE_LENGTH
10961 instead of %d in format strings.
10962 * tracepoint.c (info_scope_command): Likewise.
10963 * typeprint.c (print_offset_data::update)
10964 (print_offset_data::finish): Likewise.
10965 * xtensa-tdep.c (xtensa_store_return_value)
10966 (xtensa_push_dummy_call): Likewise.
10967
e432ccf1
JT
109682019-03-28 Jon Turney <jon.turney@dronecode.org.uk>
10969
10970 * windows-nat.c (display_selector): Fixed format specifications
10971 for 64-bit Cygwin.
10972
65d2b333
PW
109732019-03-28 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10974
10975 * infrun.c (follow_exec): Call target_terminal::ours_for_output.
10976
f489207e
SL
109772019-03-28 Sandra Loosemore <sandra@codesourcery.com>
10978
10979 * nios2-tdep.h (struct gdbarch_tdep): Add is_kernel_helper.
10980 * nios2-tdep.c (nios2_get_next_pc): Skip over kernel helpers.
10981 * nios2-linux-tdep.c (nios2_linux_is_kernel_helper): New.
10982 (nios2_linux_init_abi): Install it.
10983
bffa1015
AH
109842019-03-28 Alan Hayward <alan.hayward@arm.com>
10985
10986 * aarch64-tdep.c (aarch64_vnv_type): Use vector types.
10987
fc96163a
AH
109882019-03-28 Alan Hayward <alan.hayward@arm.com>
10989
10990 * features/aarch64-sve.c (create_feature_aarch64_sve): Add q view.
10991
20dc7e9b
PW
109922019-03-24 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10993 Tom Tromey <tromey@adacore.com>
10994
10995 * minsyms.c (minimal_symbol_upper_bound): Fix buffer overflow.
10996
7f5331a8
JB
109972019-03-26 Joel Brobecker <brobecker@adacore.com>
10998
10999 * gdb-gdb.py.in (StructMainTypePrettyPrinter.bound_img): New method.
11000 (StructMainTypePrettyPrinter.bounds_img): Use new "bound_img"
11001 method to compute the bounds of range types. Also print "[evaluated]"
11002 if the bounds' values come from a dynamic evaluation.
11003
18c77628
AB
110042019-03-26 Andrew Burgess <andrew.burgess@embecosm.com>
11005
11006 * cp-valprint.c (cp_print_value_fields): Don't print trailing
11007 whitespace when pretty printing is on.
11008
53c973f2
AH
110092019-03-26 Alan Hayward <alan.hayward@arm.com>
11010
e79be6e5 11011 * ppc-linux-nat.c: Add include.
53c973f2 11012
d851aa71
AH
110132019-03-26 Alan Hayward <alan.hayward@arm.com>
11014
e79be6e5 11015 * NEWS: Mention AArch64 Pointer Authentication.
d851aa71 11016
2fe7bab7
AH
110172019-03-26 Alan Hayward <alan.hayward@arm.com>
11018
e79be6e5 11019 * arm-linux-nat.c: Add include.
2fe7bab7 11020
068ef30e
SM
110212019-03-25 Simon Marchi <simon.marchi@polymtl.ca>
11022
11023 * source-cache.c (source_cache::get_source_lines): Re-read
11024 fullname after calling open_source_file.
11025
81a24d04
JB
110262019-03-25 John Baldwin <jhb@FreeBSD.org>
11027
11028 * NEWS: Mention TLS support for FreeBSD.
11029
79e7ae11
TT
110302019-03-25 Tom Tromey <tromey@adacore.com>
11031
11032 * minsyms.c (BUNCH_SIZE): Update comment.
11033 (~minimal_symbol_reader): Remove old comment.
11034 (compact_minimal_symbols): Update comment.
11035 (minimal_symbol_reader::install): Remove old comment. Update
11036 other comments.
11037
d45963c2
AH
110382019-03-25 Alan Hayward <alan.hayward@arm.com>
11039
11040 * s390-linux-nat.c: Add include.
11041
0f83012e
AH
110422019-03-25 Alan Hayward <alan.hayward@arm.com>
11043
11044 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
11045 Call linux_get_hwcap.
11046 * aarch64-linux-tdep.c (aarch64_linux_core_read_description):
11047 Likewise.
11048 (aarch64_linux_get_hwcap): Remove function.
11049 * aarch64-linux-tdep.h (aarch64_linux_get_hwcap): Remove
11050 declaration.
11051 * arm-linux-nat.c (arm_linux_nat_target::read_description):Call
11052 linux_get_hwcap.
11053 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
11054 * linux-tdep.c (linux_get_hwcap): Add function.
11055 (linux_get_hwcap2): Likewise.
11056 * linux-tdep.h (linux_get_hwcap): Add declaration.
11057 (linux_get_hwcap2): Likewise.
11058 * ppc-linux-nat.c (ppc_linux_get_hwcap): Remove function.
11059 (ppc_linux_get_hwcap2): Likewise.
11060 (ppc_linux_nat_target::region_ok_for_hw_watchpoint): Call
11061 linux_get_hwcap.
11062 (ppc_linux_nat_target::insert_watchpoint): Likewise.
11063 (ppc_linux_nat_target::watchpoint_addr_within_range): Likewise.
11064 (ppc_linux_nat_target::read_description): Likewise.
11065 * ppc-linux-tdep.c (ppc_linux_core_read_description): Likewise.
11066 * s390-linux-nat.c: Likewise.
11067 * s390-linux-tdep.c (s390_core_read_description): Likewise.
11068
6640a367
TT
110692019-03-24 Tom Tromey <tom@tromey.com>
11070
11071 * ada-lang.c (standard_lookup): Simplify initialization.
11072 (ada_lookup_symbol_nonlocal): Simplify return.
11073 * solib-spu.c (spu_lookup_lib_symbol): Simplify return.
11074 * solib-darwin.c (darwin_lookup_lib_symbol): Simplify return.
11075 * solib-svr4.c (elf_lookup_lib_symbol): Simplify return.
11076 * rust-lang.c (rust_lookup_symbol_nonlocal): Simplify
11077 initialization.
11078 * solib.c (solib_global_lookup): Simplify.
11079 * symtab.c (null_block_symbol): Remove.
11080 (symbol_cache_lookup): Simplify returns.
11081 (lookup_language_this): Simplify returns.
11082 (lookup_symbol_aux): Simplify return.
11083 (lookup_local_symbol): Simplify returns.
11084 (lookup_global_symbol_from_objfile): Simplify return.
11085 (lookup_symbol_in_objfile_symtabs)
11086 (lookup_symbol_in_objfile_from_linkage_name): Simplify return.
11087 (lookup_symbol_via_quick_fns, lookup_symbol_in_static_block)
11088 (lookup_static_symbol, lookup_global_symbol): Simplify return.
11089 * cp-namespace.c (cp_lookup_bare_symbol)
11090 (cp_search_static_and_baseclasses, cp_lookup_symbol_via_imports)
11091 (cp_lookup_symbol_via_all_imports, cp_lookup_nested_symbol_1)
11092 (cp_lookup_nested_symbol): Don't use null_block_symbol.
11093 (cp_lookup_symbol_via_imports): Simplify initialization.
11094 (find_symbol_in_baseclass): Likewise.
11095 * symtab.h (null_block_symbol): Remove.
11096 * d-namespace.c (d_lookup_symbol): Don't use null_block_symbol.
11097 (d_lookup_nested_symbol, d_lookup_symbol_imports)
11098 (d_lookup_symbol_module): Likewise.
11099 (find_symbol_in_baseclass): Simplify initialization.
11100
a930ebcd
TT
111012019-03-24 Tom Tromey <tom@tromey.com>
11102
11103 * expression.h: Don't include symtab.h.
11104 (struct block): Forward declare.
11105
582942f4
TT
111062019-03-24 Tom Tromey <tom@tromey.com>
11107
11108 * c-exp.y (typebase): Remove casts.
11109 * gdbtypes.c (lookup_unsigned_typename, )
11110 (lookup_signed_typename): Remove cast.
11111 * eval.c (parse_to_comma_and_eval): Remove cast.
11112 * parse.c (write_dollar_variable): Remove cast.
11113 * block.h (struct block) <superblock>: Now const.
11114 * symfile-debug.c (debug_qf_map_matching_symbols): Update.
11115 * psymtab.c (psym_map_matching_symbols): Make "block" const.
11116 (map_block): Make "block" const.
11117 * symfile.h (struct quick_symbol_functions)
11118 <map_matching_symbols>: Constify block argument to "callback".
11119 * symtab.c (basic_lookup_transparent_type_quick): Make "block"
11120 const.
11121 (find_pc_sect_compunit_symtab): Make "b" const.
11122 (find_symbol_at_address): Likewise.
11123 (search_symbols): Likewise.
11124 * dwarf2read.c (dw2_lookup_symbol): Make "block" const.
11125 (dw2_debug_names_lookup_symbol): Likewise.
11126 (dw2_map_matching_symbols): Update.
11127 * p-valprint.c (pascal_val_print): Remove "block".
11128 * ada-lang.c (ada_add_global_exceptions): Make "b" const.
11129 (aux_add_nonlocal_symbols): Make "block" const.
11130 (resolve_subexp): Remove cast.
11131 * linespec.c (iterate_over_all_matching_symtabs): Make "block"
11132 const.
11133 (iterate_over_file_blocks): Likewise.
11134 * f-exp.y (%union) <bval>: Remove.
11135 * coffread.c (patch_opaque_types): Make "b" const.
11136 * spu-tdep.c (spu_catch_start): Make "block" const.
11137 * c-valprint.c (print_unpacked_pointer): Remove "block".
11138 * symmisc.c (dump_symtab_1): Make "b" const.
11139 (block_depth): Make "block" const.
11140 * d-exp.y (%union) <bval>: Remove.
11141 * cp-support.h (cp_lookup_rtti_type): Update.
11142 * cp-support.c (cp_lookup_rtti_type): Make "block" const.
11143 * psymtab.c (psym_lookup_symbol): Make "block" const.
11144 (maintenance_check_psymtabs): Make "b" const.
11145 * python/py-framefilter.c (extract_sym): Make "sym_block" const.
11146 (enumerate_locals, enumerate_args): Update.
11147 * python/py-symtab.c (stpy_global_block): Make "block" const.
11148 (stpy_static_block): Likewise.
11149 * inline-frame.c (block_starting_point_at): Make "new_block"
11150 const.
11151 * block.c (find_block_in_blockvector): Make return type const.
11152 (blockvector_for_pc_sect): Make "b" const.
11153 (find_block_in_blockvector): Make "b" const.
11154
7ad417dd
TT
111552019-03-23 Tom Tromey <tom@tromey.com>
11156
11157 * varobj.c (varobj_create): Update.
11158 * symfile.c (clear_symtab_users): Don't reset innermost_block.
11159 * printcmd.c (display_command, do_one_display): Don't reset
11160 innermost_block.
11161 * parser-defs.h (enum innermost_block_tracker_type): Move to
11162 expression.h.
11163 (innermost_block): Update comment.
11164 * parse.c (parse_exp_1): Add tracker_types parameter.
11165 (parse_exp_in_context): Rename from parse_exp_in_context_1. Add
11166 tracker_types parameter. Reset innermost_block.
11167 (parse_exp_in_context): Remove.
11168 (parse_expression_for_completion): Update.
11169 * objfiles.c (~objfile): Don't reset expression_context_block or
11170 innermost_block.
11171 * expression.h (enum innermost_block_tracker_type): Move from
11172 parser-defs.h.
11173 (parse_exp_1): Add tracker_types parameter.
11174 * breakpoint.c (set_breakpoint_condition, watch_command_1): Don't
11175 reset innermost_block.
11176
b366c208
TT
111772019-03-23 Tom Tromey <tom@tromey.com>
11178
11179 * objfiles.h: Include bcache.h.
11180
9bb9b2f9
TT
111812019-03-23 Tom Tromey <tom@tromey.com>
11182
11183 * linespec.c (get_current_search_block): Use
11184 scoped_restore_current_language.
11185 * symmisc.c (dump_symtab): Use scoped_restore_current_language.
11186
59c28372
AH
111872019-03-22 Alan Hayward <alan.hayward@arm.com>
11188 Jiong Wang <jiong.wang@arm.com>
11189
11190 * aarch64-linux-tdep.c
11191 (aarch64_linux_iterate_over_regset_sections): Check for pauth
11192 section.
11193 * aarch64-linux-tdep.h (AARCH64_LINUX_SIZEOF_PAUTH): New define.
11194
17e116a7
AH
111952019-03-22 Alan Hayward <alan.hayward@arm.com>
11196 Jiong Wang <jiong.wang@arm.com>
11197
11198 * aarch64-tdep.c (aarch64_analyze_prologue): Check for pauth
11199 instructions.
11200 (aarch64_analyze_prologue_test): Add PACIASP test.
11201 (aarch64_prologue_prev_register): Unmask PC value.
11202
11e1b75f
AH
112032019-03-22 Alan Hayward <alan.hayward@arm.com>
11204 Jiong Wang <jiong.wang@arm.com>
11205
11206 * aarch64-tdep.c (aarch64_frame_unmask_address): New function.
11207 (aarch64_dwarf2_prev_register): Unmask PC value.
11208 (aarch64_dwarf2_frame_init_reg): Init pauth registers.
11209 (aarch64_execute_dwarf_cfa_vendor_op): Check for
11210 DW_CFA_AARCH64_negate_ra_state.
11211 (aarch64_gdbarch_init): Add aarch64_execute_dwarf_cfa_vendor_op.
11212
34dcc7cf
AH
112132019-03-22 Alan Hayward <alan.hayward@arm.com>
11214 Jiong Wang <jiong.wang@arm.com>
11215
11216 * aarch64-tdep.c (aarch64_dwarf_reg_to_regnum): Check for pauth
11217 registers.
11218 (aarch64_pseudo_register_name): Likewise.
11219 (aarch64_pseudo_register_type): Likewise.
11220 (aarch64_pseudo_register_reggroup_p): Likewise.
11221 (aarch64_gdbarch_init): Add pauth registers.
11222 * aarch64-tdep.h (AARCH64_DWARF_PAUTH_RA_STATE): New define.
11223 (AARCH64_DWARF_PAUTH_DMASK): Likewise.
11224 (AARCH64_DWARF_PAUTH_CMASK): Likewise.
11225 (struct gdbarch_tdep): Add regnum for ra_state.
11226
1ef53e6b
AH
112272019-03-22 Alan Hayward <alan.hayward@arm.com>
11228 Jiong Wang <jiong.wang@arm.com>
11229
11230 * arch/aarch64.h (AARCH64_PAUTH_REGS_SIZE): New define.
11231
76bed0fd
AH
112322019-03-22 Alan Hayward <alan.hayward@arm.com>
11233 Jiong Wang <jiong.wang@arm.com>
11234
11235 * aarch64-linux-nat.c (fetch_pauth_masks_from_thread): New
11236 function.
11237 (aarch64_linux_nat_target::fetch_registers): Read pauth registers.
11238 * aarch64-tdep.c (aarch64_cannot_store_register): New function.
11239 (aarch64_gdbarch_init): Add puth registers.
11240 * aarch64-tdep.h (struct gdbarch_tdep): Add pauth features.
11241 * arch/aarch64.h (AARCH64_PAUTH_DMASK_REGNUM): New define.
11242 (AARCH64_PAUTH_CMASK_REGNUM): Likewise.
11243
ee4fbcfa
AH
112442019-03-22 Alan Hayward <alan.hayward@arm.com>
11245 Jiong Wang <jiong.wang@arm.com>
11246
11247 * aarch64-linux-nat.c
11248 (aarch64_linux_nat_target::read_description): Read PACA hwcap.
11249 * aarch64-linux-tdep.c
11250 (aarch64_linux_core_read_description): Likewise.
11251 (aarch64_linux_get_hwcap): New function.
11252 * aarch64-linux-tdep.h (AARCH64_HWCAP_PACA): New define.
11253 (aarch64_linux_get_hwcap): New declaration.
11254
6dc0ebde
AH
112552019-03-22 Alan Hayward <alan.hayward@arm.com>
11256 Jiong Wang <jiong.wang@arm.com>
11257
11258 * aarch64-linux-nat.c
11259 (aarch64_linux_nat_target::read_description): Add pauth param.
11260 * aarch64-linux-tdep.c
11261 (aarch64_linux_core_read_description): Likewise.
11262 * aarch64-tdep.c (struct target_desc): Add in pauth.
11263 (aarch64_read_description): Add pauth param.
11264 (aarch64_gdbarch_init): Likewise.
11265 * aarch64-tdep.h (aarch64_read_description): Likewise.
11266 * arch/aarch64.c (aarch64_create_target_description): Likewise.
11267 * arch/aarch64.h (aarch64_create_target_description): Likewise.
11268 * features/Makefile: Add new files.
11269 * features/aarch64-pauth.c: New file.
11270 * features/aarch64-pauth.xml: New file.
11271
595915c1
TT
112722019-03-20 Tom Tromey <tromey@adacore.com>
11273
11274 * infrun.c (handle_inferior_event): Rename from
11275 handle_inferior_event_1. Create a scoped_value_mark.
11276 (handle_inferior_event): Remove.
11277
4c7d57e7
TT
112782019-03-19 Tom Tromey <tromey@adacore.com>
11279
11280 * mi/mi-interp.c (mi_on_normal_stop_1): Only show displays once.
11281 * infrun.h (print_stop_event): Add "displays" parameter.
11282 * infrun.c (print_stop_event): Add "displays" parameter.
11283
cb246234
PA
112842019-03-19 Pedro Alves <palves@redhat.com>
11285
11286 * tui/tui-out.c (tui_ui_out::do_field_string): Simplify.
11287 (tui_ui_out::do_text): Add comments. Reset M_LINE to 0 instead of
11288 to -1. Fix TABs vs spaces.
11289 (tui_ui_out::tui_ui_out): Don't initialize fields here.
11290 * tui/tui-out.h (tui_ui_out) Add intro comments.
11291 <m_line, m_start_of_line>: In-class initialize, and add describing
11292 comment.
11293
3a0e45b2
AH
112942019-03-18 Alan Hayward <alan.hayward@arm.com>
11295
11296 * arm-linux-nat.c (arm_linux_insert_hw_breakpoint1): Fix
11297 variable names.
11298 (arm_linux_remove_hw_breakpoint1): Use a gdb::function_view.
11299
5371b850
PA
113002019-03-18 Pedro Alves <palves@redhat.com>
11301 Eli Zaretskii <eliz@gnu.org>
11302
11303 * tui/tui-out.c (tui_ui_out::tui_ui_out): Fix initialization of
11304 m_line and m_start_of_line.
11305
b17c4cd0
EZ
113062019-03-18 Eli Zaretskii <eliz@gnu.org>
11307
11308 * tui/tui-io.c (gdb_wgetch): Don't echo CR.
11309 (tui_getc): When gdb_wgetch returns a CR, behave the same as when
11310 it returns a newline. This fixes a regression in TU mode, whereby
11311 the next line is output on the same screen line as the user input.
11312
4bd56d18
TT
113132019-03-18 Tom Tromey <tromey@adacore.com>
11314
11315 * minsyms.c (minimal_symbol_reader::install): Remove call to
11316 obstack_blank.
11317
55c10aca
PA
113182019-03-18 Pedro Alves <palves@redhat.com>
11319
11320 * tui/tui-io.c (reverse_mode_p, reverse_save_bg, reverse_save_fg):
11321 New globals.
11322 (apply_style): New, factored out from ...
11323 (apply_ansi_escape): ... this. Handle reverse video mode.
11324 (tui_set_reverse_mode): New function.
11325 * tui/tui-io.h (tui_set_reverse_mode): New declaration.
11326 * tui/tui-winsource.c (tui_show_source_line): Use
11327 tui_set_reverse_mode instead of setting A_STANDOUT.
11328 * ui-style.h (struct ui_file_style) <set_reverse, set_fg, set_bg>:
11329 New setter methods.
11330
647bb750
HD
113312019-03-18 Hannes Domani <ssbssa@yahoo.de>
11332
11333 * tui/tui-source.c (copy_source_line): Fix handling of 'column'.
11334 Handle tabs.
11335
bff8c71f
TT
113362019-03-18 Tom Tromey <tromey@adacore.com>
11337
11338 * ada-lang.c (empty_array): Add "high" parameter.
11339 (ada_evaluate_subexp): Update.
11340
58785d98
ST
113412019-03-17 Sergei Trofimovich <siarheit@google.com>
11342
11343 * unittests/string_view-selftests.c: Define
11344 _initialize_string_view_selftests unconditionally.
11345
d4cbef22
ВМ
113462019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
11347
11348 PR gdb/24350
11349 * windows-nat.c (windows_make_so): Remove unused text_vma variable.
11350
fce4c071
ВМ
113512019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
11352
11353 PR gdb/24351
11354 * windows-nat.c (display_selector): Fix format specifiers.
11355
f7f0a123
EZ
113562019-03-17 Eli Zaretskii <eliz@gnu.org>
11357
11358 * tui/tui-winsource.c (tui_set_is_exec_point_at): Call
11359 tui_refill_source_window instead of tui_refresh_win, to update the
11360 current execution line. This fixes redisplay of the current line
11361 when stepping through the code with "next" or "step".
11362
ab42892f
EZ
113632019-03-16 Eli Zaretskii <eliz@gnu.org>
11364
11365 * source-cache.c (source_cache::get_source_lines): Call
11366 find_source_lines to initialize s->nlines. This fixes vertical
11367 scrolling of TUI source window when the DOWN arrow is pressed.
11368
8d8c087f
PW
113692019-03-16 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11370
11371 * auto-load.c (_initialize_auto_load): Fix 'This options has'.
11372 linux-thread-db.c (_initialize_thread_db): Likewise.
11373
798e1c30
EZ
113742019-03-16 Eli Zaretskii <eliz@gnu.org>
11375
11376 * tui/tui-winsource.c (tui_show_source_line): Revert "Use
11377 wclrtoeol in tui_show_source_line". This reverts changes made in
11378 commit 4a3045920bbe4e50a0f4920b0fdc4e88ef23015c.
11379
eefba3da
TT
113802019-03-15 Tom Tromey <tom@tromey.com>
11381
11382 * symtab.h (struct minimal_symbol): Derive from
11383 general_symbol_info.
11384 (MSYMBOL_VALUE, MSYMBOL_VALUE_RAW_ADDRESS)
11385 (MSYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_BYTES)
11386 (MSYMBOL_BLOCK_VALUE, MSYMBOL_VALUE_CHAIN, MSYMBOL_LANGUAGE)
11387 (MSYMBOL_SECTION, MSYMBOL_OBJ_SECTION, MSYMBOL_NATURAL_NAME)
11388 (MSYMBOL_LINKAGE_NAME, MSYMBOL_DEMANGLED_NAME)
11389 (MSYMBOL_SEARCH_NAME): Update.
11390 (MSYMBOL_SET_LANGUAGE, MSYMBOL_SET_NAMES): Remove.
11391 * solib.c (gdb_bfd_lookup_symbol_from_symtab): Don't use memset.
11392 * minsyms.c (minimal_symbol_reader::record_full): Update.
11393
0de2420c
TT
113942019-03-15 Tom Tromey <tom@tromey.com>
11395
11396 * minsyms.c (minimal_symbol_reader::install): Use memcpy.
11397
042d75e4
TT
113982019-03-15 Tom Tromey <tom@tromey.com>
11399
11400 * objfiles.h (struct objfile_per_bfd_storage) <msymbols>: Now a
11401 unique_xmalloc_ptr.
11402 (objfile::msymbols_range::begin, objfile::msymbols_range::end):
11403 Update.
11404 * minsyms.c (lookup_minimal_symbol_by_pc_section)
11405 (build_minimal_symbol_hash_tables)
11406 (minimal_symbol_reader::install): Update.
11407
db92718b
TT
114082019-03-15 Tom Tromey <tom@tromey.com>
11409
11410 * symtab.c (create_demangled_names_hash): Update.
11411 (symbol_set_names): Update.
11412 * objfiles.h (struct objfile_per_bfd_storage)
11413 <demangled_names_hash>: Now an htab_up.
11414 * objfiles.c (objfile_per_bfd_storage): Simplify.
11415
d6797f46
TT
114162019-03-15 Tom Tromey <tom@tromey.com>
11417
11418 * objfiles.h (struct objfile_per_bfd_storage): Declare
11419 destructor.
11420 * objfiles.c (objfile_per_bfd_storage::~objfile_per_bfd_storage):
11421 New.
11422 (get_objfile_bfd_data): Use new. Don't initialize
11423 language_of_main.
11424 (free_objfile_per_bfd_storage): Remove.
11425 (objfile_bfd_data_free, objfile::~objfile): Use delete.
11426
741d7538
TT
114272019-03-15 Tom Tromey <tom@tromey.com>
11428
11429 * symfile.c (reread_symbols): Update.
11430 * objfiles.c (objfile::objfile): Update.
11431 * minsyms.h (terminate_minimal_symbol_table): Don't declare.
11432 * minsyms.c (lookup_minimal_symbol_by_pc_section): Update
11433 comment.
11434 (minimal_symbol_reader::install): Update.
11435 (terminate_minimal_symbol_table): Remove.
11436 * jit.c (jit_object_close_impl): Update.
11437
788c80d1
TT
114382019-03-15 Tom Tromey <tom@tromey.com>
11439
11440 * minsyms.c (minimal_symbol_reader::record_full): Remove some
11441 initializations.
11442
1b7a07cb
TT
114432019-03-15 Tom Tromey <tom@tromey.com>
11444
11445 * objfiles.h (struct objfile_per_bfd_storage)
11446 <demangled_hash_languages>: Now a bitset.
11447 * minsyms.c (add_minsym_to_demangled_hash_table): Update.
11448 (lookup_minimal_symbol): Update.
11449
3db066bc
TT
114502019-03-15 Tom Tromey <tom@tromey.com>
11451
11452 * minsyms.h (class minimal_symbol_reader) <record_with_info>:
11453 Don't return the symbol.
11454 * coffread.c (record_minimal_symbol): Use record_full.
11455
3fff2c37
EZ
114562019-03-14 Eli Zaretskii <eliz@gnu.org>
11457
11458 The MS-Windows port of ncurses fails to switch to a color pair if
11459 one or both of the colors are the implicit default colors. This
11460 change records the default colors when TUI is initialized, and
11461 then specifies them explicitly when a color pair uses the default
11462 colors. This allows color styling in TUI mode on MS-Windows.
11463
11464 * tui/tui-io.c [__MINGW32__]: Include windows.h. Declare
11465 ncurses_norm_attr.
11466 (tui_initialize_io) [__MINGW32__]: Record the default terminal
11467 colors in ncurses_norm_attr.
11468 (apply_ansi_escape) [__MINGW32__]: If a color in a color pair is
11469 "none", replace it with the default color recorded in
11470 ncurses_norm_attr.
11471
3b336828
TT
114722019-03-14 Tom Tromey <tromey@adacore.com>
11473
11474 * source-cache.h (class source_cache) <get_source_lines>: Return
11475 std::string.
11476 * source-cache.c (source_cache::extract_lines): Handle case where
11477 first_pos==npos. Return std::string.
11478 (source_cache::get_source_lines): Update.
11479
d085f989
TT
114802019-03-14 Tom Tromey <tromey@adacore.com>
11481
11482 * NEWS: Add item for "style sources" commands.
11483 * source-cache.c (source_cache::get_source_lines): Check
11484 source_styling.
11485 * cli/cli-style.c (source_styling): New global.
11486 (_initialize_cli_style): Add "style sources" commands.
11487 (show_style_sources): New function.
11488 * cli/cli-style.h (source_styling): Declare.
11489
6f11e682
TT
114902019-03-14 Pedro Alves <palves@redhat.com>
11491 Tom Tromey <tromey@adacore.com>
11492
11493 * tui/tui-winsource.h (tui_refill_source_window): Declare.
11494 * tui/tui-winsource.c (tui_refill_source_window): New function,
11495 from...
11496 (tui_horizontal_source_scroll): ... here. Move some logic.
11497 * cli/cli-style.c (set_style_enabled): Notify new observable.
11498 * tui/tui-hooks.c (tui_redisplay_source): New function.
11499 (tui_attach_detach_observers): Attach or detach
11500 tui_redisplay_source.
11501 * observable.h (source_styling_changed): New observable.
11502 * observable.c: Define source_styling_changed observable.
11503
a068643d
TT
115042019-03-13 Tom Tromey <tromey@adacore.com>
11505
11506 * i386-gnu-nat.c (i386_gnu_nat_target::fetch_registers)
11507 (i386_gnu_nat_target::store_registers): Update.
11508 * target-debug.h (target_debug_print_std_string): New macro.
11509 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
11510 * windows-tdep.c (display_one_tib): Update.
11511 * tui/tui-stack.c (tui_make_status_line): Update.
11512 * top.c (print_inferior_quit_action): Update.
11513 * thread.c (thr_try_catch_cmd): Update.
11514 (add_thread_with_info): Update.
11515 (thread_target_id_str): Update.
11516 (thr_try_catch_cmd): Update.
11517 (thread_command): Update.
11518 (thread_find_command): Update.
11519 * record-btrace.c (record_btrace_target::info_record)
11520 (record_btrace_resume_thread, record_btrace_target::resume)
11521 (record_btrace_cancel_resume, record_btrace_step_thread)
11522 (record_btrace_target::wait, record_btrace_target::wait)
11523 (record_btrace_target::wait, record_btrace_target::stop): Update.
11524 * progspace.c (print_program_space): Update.
11525 * process-stratum-target.c
11526 (process_stratum_target::thread_address_space): Update.
11527 * linux-fork.c (linux_fork_mourn_inferior)
11528 (detach_checkpoint_command, info_checkpoints_command)
11529 (linux_fork_context): Update.
11530 (linux_fork_detach): Update.
11531 (class scoped_switch_fork_info): Update.
11532 (delete_checkpoint_command): Update.
11533 * infrun.c (follow_fork_inferior): Update.
11534 (follow_fork_inferior): Update.
11535 (proceed_after_vfork_done): Update.
11536 (handle_vfork_child_exec_or_exit): Update.
11537 (follow_exec): Update.
11538 (displaced_step_prepare_throw): Update.
11539 (displaced_step_restore): Update.
11540 (start_step_over): Update.
11541 (resume_1): Update.
11542 (clear_proceed_status_thread): Update.
11543 (proceed): Update.
11544 (print_target_wait_results): Update.
11545 (do_target_wait): Update.
11546 (context_switch): Update.
11547 (stop_all_threads): Update.
11548 (restart_threads): Update.
11549 (finish_step_over): Update.
11550 (handle_signal_stop): Update.
11551 (switch_back_to_stepped_thread): Update.
11552 (keep_going_pass_signal): Update.
11553 (print_exited_reason): Update.
11554 (normal_stop): Update.
11555 * inferior.c (inferior_pid_to_str): Change return type.
11556 (print_selected_inferior): Update.
11557 (add_inferior): Update.
11558 (detach_inferior): Update.
11559 * dummy-frame.c (fprint_dummy_frames): Update.
11560 * dcache.c (dcache_info_1): Update.
11561 * btrace.c (btrace_enable, btrace_disable, btrace_teardown)
11562 (btrace_fetch, btrace_clear): Update.
11563 * linux-tdep.c (linux_core_pid_to_str): Change return type.
11564 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): Change return
11565 type.
11566 * fbsd-tdep.c (fbsd_core_pid_to_str): Change return type.
11567 * sol2-tdep.h (sol2_core_pid_to_str): Change return type.
11568 * sol2-tdep.c (sol2_core_pid_to_str): Change return type.
11569 * gdbarch.c, gdbarch.h: Rebuild.
11570 * gdbarch.sh (core_pid_to_str): Change return type.
11571 * windows-nat.c (struct windows_nat_target) <pid_to_str>: Change
11572 return type.
11573 (windows_nat_target::pid_to_str): Change return type.
11574 (windows_delete_thread): Update.
11575 (windows_nat_target::attach): Update.
11576 (windows_nat_target::files_info): Update.
11577 * target-delegates.c: Rebuild.
11578 * sol-thread.c (class sol_thread_target) <pid_to_str>: Change
11579 return type.
11580 (sol_thread_target::pid_to_str): Change return type.
11581 * remote.c (class remote_target) <pid_to_str>: Change return
11582 type.
11583 (remote_target::pid_to_str): Change return type.
11584 (extended_remote_target::attach, remote_target::remote_stop_ns)
11585 (remote_target::remote_notif_remove_queued_reply)
11586 (remote_target::push_stop_reply, remote_target::disable_btrace):
11587 Update.
11588 (extended_remote_target::attach): Update.
11589 * remote-sim.c (struct gdbsim_target) <pid_to_str>: Change return
11590 type.
11591 (gdbsim_target::pid_to_str): Change return type.
11592 * ravenscar-thread.c (struct ravenscar_thread_target)
11593 <pid_to_str>: Change return type.
11594 (ravenscar_thread_target::pid_to_str): Change return type.
11595 * procfs.c (class procfs_target) <pid_to_str>: Change return
11596 type.
11597 (procfs_target::pid_to_str): Change return type.
11598 (procfs_target::attach): Update.
11599 (procfs_target::detach): Update.
11600 (procfs_target::fetch_registers): Update.
11601 (procfs_target::store_registers): Update.
11602 (procfs_target::wait): Update.
11603 (procfs_target::files_info): Update.
11604 * obsd-nat.c (obsd_nat_target::pid_to_str): Change return type.
11605 * nto-procfs.c (struct nto_procfs_target) <pid_to_str>: Change
11606 return type.
11607 (nto_procfs_target::pid_to_str): Change return type.
11608 (nto_procfs_target::files_info, nto_procfs_target::attach): Update.
11609 * linux-thread-db.c (class thread_db_target) <pid_to_str>: Change
11610 return type.
11611 * linux-nat.c (linux_nat_target::pid_to_str): Change return type.
11612 (exit_lwp): Update.
11613 (attach_proc_task_lwp_callback, get_detach_signal)
11614 (detach_one_lwp, resume_lwp, linux_nat_target::resume)
11615 (linux_nat_target::resume, wait_lwp, stop_callback)
11616 (maybe_clear_ignore_sigint, stop_wait_callback, status_callback)
11617 (save_stop_reason, select_event_lwp, linux_nat_filter_event)
11618 (linux_nat_wait_1, resume_stopped_resumed_lwps)
11619 (linux_nat_target::wait, linux_nat_stop_lwp): Update.
11620 * inf-ptrace.c (inf_ptrace_target::pid_to_str): Change return
11621 type.
11622 (inf_ptrace_target::attach): Update.
11623 (inf_ptrace_target::files_info): Update.
11624 * go32-nat.c (struct go32_nat_target) <pid_to_str>: Change return
11625 type.
11626 (go32_nat_target::pid_to_str): Change return type.
11627 * gnu-nat.c (gnu_nat_target::pid_to_str): Change return type.
11628 (gnu_nat_target::wait): Update.
11629 (gnu_nat_target::wait): Update.
11630 (gnu_nat_target::resume): Update.
11631 * fbsd-nat.c (fbsd_nat_target::pid_to_str): Change return type.
11632 (fbsd_nat_target::wait): Update.
11633 * darwin-nat.c (darwin_nat_target::pid_to_str): Change return
11634 type.
11635 (darwin_nat_target::attach): Update.
11636 * corelow.c (class core_target) <pid_to_str>: Change return type.
11637 (core_target::pid_to_str): Change return type.
11638 * target.c (normal_pid_to_str): Change return type.
11639 (default_pid_to_str): Likewise.
11640 (target_pid_to_str): Change return type.
11641 (target_translate_tls_address): Update.
11642 (target_announce_detach): Update.
11643 * bsd-uthread.c (struct bsd_uthread_target) <pid_to_str>: Change
11644 return type.
11645 (bsd_uthread_target::pid_to_str): Change return type.
11646 * bsd-kvm.c (class bsd_kvm_target) <pid_to_str>: Change return
11647 type.
11648 (bsd_kvm_target::pid_to_str): Change return type.
11649 * aix-thread.c (class aix_thread_target) <pid_to_str>: Change
11650 return type.
11651 (aix_thread_target::pid_to_str): Change return type.
11652 * target.h (struct target_ops) <pid_to_str>: Change return type.
11653 (target_pid_to_str, normal_pid_to_str): Likewise.
11654 * obsd-nat.h (class obsd_nat_target) <pid_to_str>: Change return
11655 type.
11656 * linux-nat.h (class linux_nat_target) <pid_to_str>: Change return
11657 type.
11658 * inf-ptrace.h (struct inf_ptrace_target) <pid_to_str>: Change
11659 return type.
11660 * gnu-nat.h (struct gnu_nat_target) <pid_to_str>: Change return
11661 type.
11662 * fbsd-nat.h (class fbsd_nat_target) <pid_to_str>: Change return
11663 type.
11664 * darwin-nat.h (class darwin_nat_target) <pid_to_str>: Change
11665 return type.
11666
b4be1b06
SM
116672019-03-13 Simon Marchi <simon.marchi@ericsson.com>
11668
11669 * NEWS: Mention that the new default MI version is 3. Mention
11670 changes to the output of commands and events that deal with
11671 multi-location breakpoints.
11672 * breakpoint.c: Include "mi/mi-out.h".
11673 (print_one_breakpoint): Change output syntax if using MI version
11674 >= 3.
11675 * mi/mi-main.h (mi_cmd_fix_multi_location_breakpoint_output):
11676 New.
11677 (mi_multi_location_breakpoint_output_fixed): New.
11678 * mi/mi-main.c (fix_multi_location_breakpoint_output): New.
11679 (mi_cmd_fix_multi_location_breakpoint_output): New.
11680 (mi_multi_location_breakpoint_output_fixed): New.
11681 * mi/mi-cmds.c (mi_cmds): Register command
11682 -fix-multi-location-breakpoint-output.
11683 * mi/mi-out.c (mi_out_new): Instantiate version 3 when using
11684 interpreter "mi".
11685
8e5e5494
SM
116862019-03-13 Simon Marchi <simon.marchi@polymtl.ca>
11687
11688 * mi/mi-out.h (mi_out_new): Change parameter to const char *.
11689 * mi/mi-out.c (mi_out_new): Change parameter to const char *,
11690 instantiate mi_ui_out based on interpreter name.
11691 * mi/mi-interp.c (mi_interp::init): Use the new mi_out_new.
11692 * mi/mi-main.c (mi_load_progress): Likewise.
11693
197df35e
JB
116942019-03-12 John Baldwin <jhb@FreeBSD.org>
11695
11696 * NEWS: Combine separate "New targets" sections for 8.3.
11697
8399425f
JB
116982019-03-12 John Baldwin <jhb@FreeBSD.org>
11699
11700 * ppc-fbsd-tdep.c (ppcfbsd_get_thread_local_address): New.
11701 (ppcfbsd_init_abi): Install gdbarch
11702 "fetch_tls_load_module_address" and "get_thread_local_address"
11703 methods.
11704
b0f87ed0
JB
117052019-03-12 John Baldwin <jhb@FreeBSD.org>
11706
11707 * riscv-fbsd-tdep.c (riscv_fbsd_get_thread_local_address): New.
11708 (riscv_fbsd_init_abi): Install gdbarch
11709 "fetch_tls_load_module_address" and "get_thread_local_address"
11710 methods.
11711
ce25aa57
JB
117122019-03-12 John Baldwin <jhb@FreeBSD.org>
11713
11714 * i386-fbsd-tdep.c (i386fbsd_get_thread_local_address): New.
11715 (i386fbsd_init_abi): Install gdbarch
11716 "fetch_tls_load_module_address" and "get_thread_local_address"
11717 methods.
11718
f5424cfa
JB
117192019-03-12 John Baldwin <jhb@FreeBSD.org>
11720
11721 * amd64-fbsd-tdep.c (amd64fbsd_get_thread_local_address): New.
11722 (amd64fbsd_init_abi): Install gdbarch
11723 "fetch_tls_load_module_address" and "get_thread_local_address"
11724 methods.
11725
945f3901
JB
117262019-03-12 John Baldwin <jhb@FreeBSD.org>
11727
11728 * fbsd-tdep.c (fbsd_pspace_data_handle): New variable.
11729 (struct fbsd_pspace_data): New type.
11730 (get_fbsd_pspace_data, fbsd_pspace_data_cleanup)
11731 (fbsd_read_integer_by_name, fbsd_fetch_rtld_offsets)
11732 (fbsd_get_tls_index, fbsd_get_thread_local_address): New function.
11733 (_initialize_fbsd_tdep): Initialize 'fbsd_pspace_data_handle'.
11734 * fbsd-tdep.c (fbsd_get_thread_local_address): New prototype.
11735
ef0bd204
JB
117362019-03-12 John Baldwin <jhb@FreeBSD.org>
11737
11738 * gdbtypes.c (lookup_struct_elt): New function.
11739 (lookup_struct_elt_type): Reimplement via lookup_struct_elt.
11740 * gdbtypes.h (struct struct_elt): New type.
11741 (lookup_struct_elt): New prototype.
11742
36c53a02
JB
117432019-03-12 John Baldwin <jhb@FreeBSD.org>
11744
11745 * gdbtypes.c (lookup_struct_elt_type): Update comment and
11746 remove disabled code block.
11747
6e056c81
JB
117482019-03-12 John Baldwin <jhb@FreeBSD.org>
11749
11750 * gdbarch.sh (get_thread_local_address): New method.
11751 * gdbarch.h, gdbarch.c: Regenerate.
11752 * target.c (target_translate_tls_address): Use
11753 gdbarch_get_thread_local_address if present instead of
11754 target::get_thread_local_address.
11755
cd250a18
JB
117562019-03-12 John Baldwin <jhb@FreeBSD.org>
11757
11758 * target.h (target::get_thread_local_address): Update comment.
11759
df22c1e5
JB
117602019-03-12 John Baldwin <jhb@FreeBSD.org>
11761
11762 * solib-svr4.c (svr4_fetch_objfile_link_map): Look for
11763 objfile->separate_debug_objfile_backlink if not NULL.
11764
dd6876c9
JB
117652019-03-12 John Baldwin <jhb@FreeBSD.org>
11766
11767 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
11768 tdep->fsbase_regnum instead of constants for fs_base and gs_base.
11769 (amd64bsd_store_inferior_registers): Likewise.
11770 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
11771 Enable segment base registers.
11772 * i386-bsd-nat.c (i386bsd_fetch_inferior_registers): Use
11773 PT_GETFSBASE and PT_GETGSBASE.
11774 (i386bsd_store_inferior_registers): Use PT_SETFSBASE and
11775 PT_SETGSBASE.
11776 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Enable
11777 segment base registers.
11778 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
11779
1163a4b7
JB
117802019-03-12 John Baldwin <jhb@FreeBSD.org>
11781
11782 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
11783 Update calls to i386_target_description to add 'segments'
11784 parameter.
11785 * amd64-tdep.c (amd64_init_abi): Set tdep->fsbase_regnum. Don't
11786 add segment base registers.
11787 * arch/i386.c (i386_create_target_description): Add 'segments'
11788 parameter to enable segment base registers.
11789 * arch/i386.h (i386_create_target_description): Likewise.
11790 * features/i386/32bit-segments.xml: New file.
11791 * features/i386/32bit-segments.c: Generate.
11792 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Update
11793 call to i386_target_description to add 'segments' parameter.
11794 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
11795 * i386-go32-tdep.c (i386_go32_init_abi): Likewise.
11796 * i386-linux-tdep.c (i386_linux_read_description): Likewise.
11797 * i386-tdep.c (i386_validate_tdesc_p): Add segment base registers
11798 if feature is present.
11799 (i386_gdbarch_init): Pass I386_NUM_REGS to set_gdbarch_num_regs.
11800 Add 'segments' parameter to call to i386_target_description.
11801 (i386_target_description): Add 'segments' parameter to enable
11802 segment base registers.
11803 (_initialize_i386_tdep) [GDB_SELF_TEST]: Add 'segments' parameter
11804 to call to i386_target_description.
11805 * i386-tdep.h (struct gdbarch_tdep): Add 'fsbase_regnum'.
11806 (enum i386_regnum): Add I386_FSBASE_REGNUM and I386_GSBASE_REGNUM.
11807 Define I386_NUM_REGS.
11808 (i386_target_description): Add 'segments' parameter to enable
11809 segment base registers.
11810
3a350822
EZ
118112019-03-12 Eli Zaretskii <eliz@gnu.org>
11812
11813 PR/24325
11814 * source-cache.c: #undef open and close, to avoid unresolved
11815 externals during linking.
11816
ffdd69cf
TT
118172019-03-12 Tom Tromey <tromey@adacore.com>
11818
11819 * remote.c (magic_null_ptid, not_sent_ptid, any_thread_ptid): Now
11820 const. Add initializers.
11821 (_initialize_remote): Don't initialize ptid globals.
11822
ec148c57
PA
118232019-03-12 Pedro Alves <palves@redhat.com>
11824
11825 * yy-remap.h [TEST_CPNAMES] (YYFPRINTF): Don't define.
11826
32764270
PA
118272019-03-12 Pedro Alves <palves@redhat.com>
11828
11829 * cp-name-parser.y (main): Remove unused 'len' variable.
11830
17547186
TT
118312019-03-12 Tom Tromey <tromey@adacore.com>
11832
11833 * common/ptid.c (null_ptid, minus_one_ptid): Now const.
11834 * common/ptid.h (null_ptid, minus_one_ptid): Now const.
11835
d3a70e03
TT
118362019-03-12 Tom Tromey <tromey@adacore.com>
11837
11838 * linux-nat.c (iterate_over_lwps): Update.
11839 (stop_callback): Remove parameter.
11840 (stop_wait_callback, detach_callback, resume_set_callback)
11841 (select_singlestep_lwp_callback, set_ignore_sigint)
11842 (status_callback, resumed_callback, resume_clear_callback)
11843 (kill_callback, kill_wait_callback, linux_nat_stop_lwp): Remove
11844 data parameter.
11845 (linux_nat_target::detach, linux_nat_target::resume)
11846 (linux_stop_and_wait_all_lwps, select_event_lwp)
11847 (linux_nat_filter_event, linux_nat_wait_1)
11848 (linux_nat_target::kill, linux_nat_target::stop)
11849 (linux_nat_target::stop): Update.
11850 (linux_nat_resume_callback): Change type.
11851 (resume_stopped_resumed_lwps, count_events_callback)
11852 (select_event_lwp_callback): Likewise.
11853 (linux_stop_lwp, linux_nat_stop_lwp): Update.
11854 * arm-linux-nat.c (struct update_registers_data): Remove.
11855 (update_registers_callback): Change type.
11856 (arm_linux_insert_hw_breakpoint1): Update.
11857 * nat/x86-linux-dregs.c (update_debug_registers_callback): Remove
11858 parameter.
11859 (x86_linux_dr_set_addr): Update.
11860 (x86_linux_dr_set_control): Update.
11861 * nat/linux-nat.h (iterate_over_lwps_ftype): Remove parameter.
11862 (iterate_over_lwps): Use gdb::function_view.
11863 * nat/aarch64-linux-hw-point.c (struct
11864 aarch64_dr_update_callback_param): Remove.
11865 (debug_reg_change_callback): Change type.
11866 (aarch64_notify_debug_reg_change): Update.
11867 * s390-linux-nat.c (s390_refresh_per_info): Update.
11868
82cb27ff
TT
118692019-03-11 Tom Tromey <tromey@adacore.com>
11870
11871 * dwarf2read.c (dwarf2_find_containing_comp_unit): Remove
11872 redundant assignment to "this_cu".
11873
568c0683
SM
118742019-03-08 Simon Marchi <simon.marchi@efficios.com>
11875
11876 * gdbtypes.c (rank_one_type): Remove unnecessary cases from switch.
11877
f09ce22d
SM
118782019-03-08 Simon Marchi <simon.marchi@efficios.com>
11879
11880 * gdbtypes.c (rank_one_type_parm_set): New function extracted
11881 from...
11882 (rank_one_type): ... this.
11883
595f96a9
SM
118842019-03-08 Simon Marchi <simon.marchi@efficios.com>
11885
11886 * gdbtypes.c (rank_one_type_parm_struct): New function extracted
11887 from...
11888 (rank_one_type): ... this.
11889
2598a94b
SM
118902019-03-08 Simon Marchi <simon.marchi@efficios.com>
11891
11892 * gdbtypes.c (rank_one_type_parm_complex): New function extracted
11893 from...
11894 (rank_one_type): ... this.
11895
7f17b20d
SM
118962019-03-08 Simon Marchi <simon.marchi@efficios.com>
11897
11898 * gdbtypes.c (rank_one_type_parm_float): New function extracted
11899 from...
11900 (rank_one_type): ... this.
11901
2c509035
SM
119022019-03-08 Simon Marchi <simon.marchi@efficios.com>
11903
11904 * gdbtypes.c (rank_one_type_parm_bool): New function extracted
11905 from...
11906 (rank_one_type): ... this.
11907
0dd322dc
SM
119082019-03-08 Simon Marchi <simon.marchi@efficios.com>
11909
11910 * gdbtypes.c (rank_one_type_parm_range): New function extracted
11911 from...
11912 (rank_one_type): ... this.
11913
41ea4728
SM
119142019-03-08 Simon Marchi <simon.marchi@efficios.com>
11915
11916 * gdbtypes.c (rank_one_type_parm_char): New function extracted
11917 from...
11918 (rank_one_type): ... this.
11919
793cd1d2
SM
119202019-03-08 Simon Marchi <simon.marchi@efficios.com>
11921
11922 * gdbtypes.c (rank_one_type_parm_enum): New function extracted
11923 from...
11924 (rank_one_type): ... this.
11925
34910087
SM
119262019-03-08 Simon Marchi <simon.marchi@efficios.com>
11927
11928 * gdbtypes.c (rank_one_type_parm_int): New function extracted
11929 from...
11930 (rank_one_type): ... this.
11931
f1f832d6
SM
119322019-03-08 Simon Marchi <simon.marchi@efficios.com>
11933
11934 * gdbtypes.c (rank_one_type_parm_func): New function extracted
11935 from...
11936 (rank_one_type): ... this.
11937
b9f4512f
SM
119382019-03-08 Simon Marchi <simon.marchi@efficios.com>
11939
11940 * gdbtypes.c (rank_one_type_parm_array): New function extracted
11941 from...
11942 (rank_one_type): ... this.
11943
9293fc63
SM
119442019-03-08 Simon Marchi <simon.marchi@efficios.com>
11945
11946 * gdbtypes.c (rank_one_type_parm_ptr): New function extracted
11947 from...
11948 (rank_one_type): ... this.
11949
e3abbe7e
PW
119502019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11951
11952 * inferior.c (initialize_inferiors): Ensure 'help set/show print
11953 inferior-events' shows the example events.
11954
e4adb939
EZ
119552019-03-08 Eli Zaretskii <eliz@gnu.org>
11956
11957 Support styling on native MS-Windows console
11958
11959 PR/24315
11960 * utils.c (can_emit_style_escape) [_WIN32]: Don't disable styling
11961 on MS-Windows if $TERM is not defined.
11962
11963 * cli/cli-style.c: Set cli_styling to 1 in the MinGW build.
11964
11965 * posix-hdep.c (gdb_console_fputs):
11966 * mingw-hdep.c (rgb_to_16colors, gdb_console_fputs): New
11967 functions.
11968 * ui-file.h (gdb_console_fputs): Add prototype.
11969
11970 * ui-file.c (stdio_file::puts): Call gdb_console_fputs, and fall
11971 back to fputs only if the former returns zero.
11972
25629dfd
TT
119732019-03-07 Tom Tromey <tom@tromey.com>
11974
11975 * symmisc.c (print_symbol_bcache_statistics): Update.
11976 (print_objfile_statistics): Update.
11977 * symfile.c (allocate_symtab): Update.
11978 * stabsread.c: Don't include bcache.h.
11979 * psymtab.h (struct psymbol_bcache): Don't declare.
11980 (class psymtab_storage) <psymbol_cache>: Now a bcache.
11981 (psymbol_bcache_init, psymbol_bcache_free)
11982 (psymbol_bcache_get_bcache): Don't declare.
11983 * psymtab.c (struct psymbol_bcache): Remove.
11984 (psymtab_storage::psymtab_storage): Update.
11985 (psymtab_storage::~psymtab_storage): Update.
11986 (psymbol_bcache_init, psymbol_bcache_free)
11987 (psymbol_bcache_get_bcache, psymbol_bcache_full): Remove.
11988 (add_psymbol_to_bcache): Update.
11989 (allocate_psymtab): Update.
11990 * objfiles.h (struct objfile_per_bfd_storage) <filename_cache,
11991 macro_cache>: No longer pointers.
11992 * objfiles.c (get_objfile_bfd_data): Don't call bcache_xmalloc.
11993 (free_objfile_per_bfd_storage): Don't call bcache_xfree.
11994 * macrotab.c (macro_bcache): Update.
11995 * macroexp.c: Don't include bcache.h.
11996 * gdbtypes.c (check_types_worklist): Update.
11997 (types_deeply_equal): Remove TRY/CATCH. Update.
11998 * elfread.c (elf_symtab_read): Update.
11999 * dwarf2read.c: Don't include bcache.h.
12000 * buildsym.c (buildsym_compunit::get_macro_table): Update.
12001 * bcache.h (bcache, bcache_full, bcache_xffree, bcache_xmalloc)
12002 (print_bcache_statistics, bcache_memory_used): Don't declare.
12003 (struct bcache): Move from bcache.c. Add constructor, destructor,
12004 methods. Rename all data members.
12005 * bcache.c (struct bcache): Move to bcache.h.
12006 (bcache::expand_hash_table): Rename from expand_hash_table.
12007 (bcache): Remove.
12008 (bcache::insert): Rename from bcache_full.
12009 (bcache::compare): Rename from bcache_compare.
12010 (bcache_xmalloc): Remove.
12011 (bcache::~bcache): Rename from bcache_xfree.
12012 (bcache::print_statistics): Rename from print_bcache_statistics.
12013 (bcache::memory_used): Rename from bcache_memory_used.
12014
fe726667
PA
120152019-03-07 Pedro Alves <palves@redhat.com>
12016
12017 * infrun.c (normal_stop): Also check for
12018 TARGET_WAITKIND_NO_RESUMED before referring to inferior_thread().
12019
7584bb30
AB
120202019-03-07 Andrew Burgess <andrew.burgess@embecosm.com>
12021
12022 * f-lang.c (value_from_host_double): Moved to...
12023 * value.c (value_from_host_double): ...here.
12024 * value.h (value_from_host_double): Declare.
12025 * guile/scm-math.c (vlscm_convert_typed_number): Use
12026 value_from_host_double.
12027 (vlscm_convert_number): Likewise.
12028 * guile/scm-value.c (gdbscm_value_to_real): Likewise.
12029 * python/py-value.c (convert_value_from_python): Likewise.
12030
a7b1986e
TT
120312019-03-06 Tom Tromey <tom@tromey.com>
12032
12033 * gcore.c (write_gcore_file): Use SCOPE_EXIT.
12034
0ccf4211
TT
120352019-03-06 Tom Tromey <tom@tromey.com>
12036
12037 * utils.h (free_current_contents): Don't declare.
12038 * utils.c (free_current_contents): Remove.
12039
fe7b42e5
TT
120402019-03-06 Tom Tromey <tom@tromey.com>
12041
12042 * top.c (quit_force): Update.
12043 * main.c (captured_command_loop): Update.
12044 * common/new-op.c (operator new): Update.
12045 * common/common-exceptions.c (struct catcher)
12046 <save_cleanup_chain>: Remove member.
12047 (exceptions_state_mc_init): Update.
12048 (exception_try_scope_entry): Return nullptr.
12049 (exception_try_scope_exit, exception_rethrow)
12050 (throw_exception_sjlj, throw_exception_cxx): Update.
12051 * common/cleanups.h (make_cleanup, make_cleanup_dtor)
12052 (all_cleanups, do_cleanups, discard_cleanups)
12053 (discard_final_cleanups, save_cleanups, save_final_cleanups)
12054 (restore_cleanups, restore_final_cleanups): Don't declare.
12055 (do_final_cleanups): Remove parameter.
12056 * common/cleanups.c (cleanup_chain, make_cleanup)
12057 (make_cleanup_dtor, all_cleanups, do_cleanups)
12058 (discard_my_cleanups, discard_cleanups)
12059 (discard_final_cleanups, save_my_cleanups, save_cleanups)
12060 (save_final_cleanups, restore_my_cleanups, restore_cleanups)
12061 (null_cleanup): Remove.
12062 (do_final_cleanups): Remove parameter.
12063
c6321f19
TT
120642019-03-06 Tom Tromey <tom@tromey.com>
12065
12066 * remote.c (remote_target::remote_parse_stop_reply): Use
12067 unique_xmalloc_ptr.
12068
61b30099
TT
120692019-03-06 Tom Tromey <tom@tromey.com>
12070
12071 * stabsread.c (struct stabs_field_info): Rename from field_info.
12072 <list, fnlist>: Add initializers.
12073 <obstack>: New member.
12074 (read_member_functions, read_struct_fields, read_baseclasses):
12075 Allocate on obstack. Don't use cleanups.
12076 (read_one_struct_field, read_member_functions, read_struct_fields)
12077 (read_baseclasses, read_tilde_fields, attach_fn_fields_to_type)
12078 (attach_fields_to_type, read_cpp_abbrev, read_member_functions)
12079 (read_struct_type): Update.
12080
6cceac94
TT
120812019-03-06 Tom Tromey <tom@tromey.com>
12082
12083 * nat/linux-namespaces.c (linux_mntns_access_fs): Use SCOPE_EXIT.
12084 * common/filestuff.h (make_cleanup_close): Don't declare.
12085 * common/filestuff.c (do_close_cleanup, make_cleanup_close):
12086 Remove.
12087
72412762
TT
120882019-03-06 Tom Tromey <tom@tromey.com>
12089
12090 * solib-aix.c: Use make_scope_exit.
12091
2b6ff1c0
TT
120922019-03-06 Tom Tromey <tom@tromey.com>
12093
12094 * solib-svr4.c (svr4_parse_libraries, svr4_current_sos_direct):
12095 Use make_scope_exit.
12096
d01c5877
TT
120972019-03-06 Tom Tromey <tom@tromey.com>
12098
12099 * solib-svr4.c (disable_probes_interface): Remove parameter.
12100 (svr4_handle_solib_event): Use make_scope_exit.
12101
32603266
TT
121022019-03-06 Tom Tromey <tom@tromey.com>
12103
12104 * remote.c (struct stop_reply_deleter): Remove.
12105 (stop_reply_up): Update.
12106 (struct stop_reply): Derive from notif_event. Don't typedef.
12107 <regcache>: Now a std::vector.
12108 (stop_reply_xfree): Remove.
12109 (stop_reply::~stop_reply): Rename from stop_reply_dtr.
12110 (remote_notif_stop_alloc_reply): Return a unique_ptr. Use new.
12111 (remote_target::discard_pending_stop_replies): Use delete.
12112 (remote_target::remote_parse_stop_reply): Update.
12113 (remote_target::process_stop_reply): Update.
12114 * remote-notif.h (struct notif_event): Add virtual destructor.
12115 Remove "dtr" member.
12116 (struct notif_client) <alloc_event>: Return a unique_ptr.
12117 (notif_event_xfree): Don't declare.
12118 (notif_event_up): New typedef.
12119 * remote-notif.c (remote_notif_ack, remote_notif_parse): Update.
12120 (notif_event_xfree, do_notif_event_xfree): Remove.
12121 (remote_notif_state_xfree): Update.
12122
9799571e
TT
121232019-03-06 Tom Tromey <tom@tromey.com>
12124
12125 * infrun.c (displaced_step_clear_cleanup): Now a
12126 forward_scope_exit type.
12127 (displaced_step_prepare_throw): Update.
12128 (displaced_step_fixup): Update.
12129
09e3c4ca
TT
121302019-03-06 Tom Tromey <tom@tromey.com>
12131
12132 * inferior.h (class inferior): Update comment.
12133 * gdbthread.h (class thread_info): Update comment.
12134
e2a03548
TT
121352019-03-06 Joel Brobecker <brobecker@adacore.com>
12136 Tom Tromey <tom@tromey.com>
12137
12138 * stabsread.h (struct stab_section_list): Remove.
12139 (coffstab_build_psymtabs): Update.
12140 * dbxread.c (symbuf_sections): Now a std::vector.
12141 (sect_idx): New global.
12142 (fill_symbuf): Update.
12143 (coffstab_build_psymtabs): Change type of stabsects parameter.
12144 Update.
12145 * coffread.c (struct coff_symfile_info) <stabsects>: Now a
12146 std::vector.
12147 (linetab, linetab_offset, linetab_size, stringtab): Move earlier.
12148 (coff_locate_sections): Update.
12149 (coff_symfile_read): Remove cleanups. Update.
12150 (init_stringtab): Add storage parameter.
12151 (free_stringtab, free_stringtab_cleanup): Remove.
12152 (init_lineno): Add storage parameter.
12153 (free_linetab, free_linetab_cleanup): Remove.
12154
b7e60d85
PA
121552019-03-06 Pedro Alves <palves@redhat.com>
12156
12157 * linux-fork.c (fork_info::clobber_regs): Delete.
12158 (fork_load_infrun_state): Remove reference to 'clobber_regs'.
12159 (fork_save_infrun_state): Remove 'clobber_regs' parameter. Update
12160 comment. Adjust.
12161 (scoped_switch_fork_info::scoped_switch_fork_info)
12162 (checkpoint_command, linux_fork_context): Adjust
12163 fork_save_infrun_state calls.
12164
e52c971f
PA
121652019-03-06 Pedro Alves <palves@redhat.com>
12166
12167 * linux-fork.c (inf_has_multiple_thread_cb): Delete.
12168 (inf_has_multiple_threads): Return 'bool' and rewrite using
12169 inferior_info::threads().
12170
06974e6c
PA
121712019-03-06 Pedro Alves <palves@redhat.com>
12172
12173 * linux-fork.c: Include <list>.
12174 (fork_list): Now a std::list instance.
12175 (fork_info): Add ctor, dtor, and in-class initialize all fields.
12176 (forks_exist_p, find_last_fork): Adjust.
12177 (new_fork): Delete.
12178 (one_fork_p): New.
12179 (add_fork): Adjust.
12180 (free_fork): Delete, folded into fork_info::~fork_info().
12181 (delete_fork, find_fork_ptid, find_fork_id, find_fork_pid):
12182 Adjust.
12183 (init_fork_list): Delete.
12184 (linux_fork_killall, linux_fork_mourn_inferior)
12185 (linux_fork_detach, info_checkpoints_command): Adjust.
12186 (_initialize_linux_fork): No longer call init_fork_list.
12187
72f31aea
PA
121882019-03-06 Pedro Alves <palves@redhat.com>
12189
12190 * linux-fork.c (new_fork): New, split out of ...
12191 (add_fork): ... this. Return void. Move "first fork" special
12192 case from here, to ...
12193 (checkpoint_command): ... here.
12194 * linux-linux.h (add_fork): Return void.
12195
efbecbc1
AB
121962019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12197
12198 * f-exp.y (direct_abs_decl): Handle TYPE*SIZE type names.
12199
0841c79a
AB
122002019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12201 Chris January <chris.january@arm.com>
12202 David Lecomber <david.lecomber@arm.com>
12203
12204 * f-exp.y: New token, UNOP_INTRINSIC.
12205 (exp): New pattern using UNOP_INTRINSIC token.
12206 (f77_keywords): Add 'abs' keyword.
12207 * f-lang.c: Add 'target-float.h' and 'math.h' includes.
12208 (value_from_host_double): New function.
12209 (evaluate_subexp_f): Support UNOP_ABS.
12210
4a270568
AB
122112019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12212
12213 * f-lang.c (build_fortran_types): Use TYPE_CODE_CHAR for character
12214 types.
12215
067630bd
AB
122162019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12217
12218 * f-exp.y (convert_to_kind_type): Handle integer (kind=8).
12219 * f-lang.c (build_fortran_types): Setup builtin_integer_s8.
12220 * f-lang.h (struct builtin_f_type): Add builtin_integer_s8 field.
12221
3be47f7a
AB
122222019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12223
12224 * f-exp.y (convert_to_kind_type): Handle more type kinds.
12225
4d00f5d8
AB
122262019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12227 Chris January <chris.january@arm.com>
12228
12229 * expprint.c (dump_subexp_body_standard): Support UNOP_KIND.
12230 * f-exp.y: Define 'KIND' token.
12231 (exp): New pattern for KIND expressions.
12232 (ptype): Handle types with a kind extension.
12233 (direct_abs_decl): Extend to spot kind extensions.
12234 (f77_keywords): Add 'kind' to the list.
12235 (push_kind_type): New function.
12236 (convert_to_kind_type): New function.
12237 * f-lang.c (evaluate_subexp_f): Support UNOP_KIND.
12238 * parse.c (operator_length_standard): Likewise.
12239 * parser-defs.h (enum type_pieces): Add tp_kind.
12240 * std-operator.def: Add UNOP_KIND.
12241
e454224f
AB
122422019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12243
12244 * f-exp.y (f_parse): Set yydebug.
12245
9dad4a58
AB
122462019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12247
12248 * f-lang.c (evaluate_subexp_f): New function.
12249 (exp_descriptor_f): New global.
12250 (f_language_defn): Use exp_descriptor_f instead of
12251 exp_descriptor_standard.
12252
c8f91604
AB
122532019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12254
12255 * f-exp.y (struct token): Add comments.
12256 (dot_ops): Remove uppercase versions and the end marker.
12257 (f77_keywords): Likewise.
12258 (yylex): Use ARRAY_SIZE to iterate over dot_ops, assert all
12259 entries in the dot_ops array are case insensitive, and use
12260 strncasecmp to compare strings. Also some whitespace cleanup in
12261 this area. Similar for the f77_keywords array, except entries in
12262 this list might be case sensitive.
12263
dd9f2c76
AB
122642019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12265
12266 * f-exp.y (struct f77_boolean_val): Add comments.
12267 (boolean_values): Remove uppercase versions, and end marker.
12268 (yylex): Use ARRAY_SIZE for iterating over boolean_values array,
12269 and use strncasecmp to achieve case insensitivity. Additionally,
12270 perform whitespace cleanup around this code.
12271
67a3048c
TT
122722019-03-06 Tom Tromey <tromey@adacore.com>
12273
12274 * remote-sim.c (gdbsim_target_open): Use result of
12275 gdb_argv::release.
12276
aa3cfbda
RB
122772019-03-06 Richard Bunt <richard.bunt@arm.com>
12278 Dirk Schubert <dirk.schubert@arm.com>
12279 Chris January <chris.january@arm.com>
12280
12281 * eval.c (evaluate_subexp_standard): Call Fortran argument
12282 wrapping logic.
12283 * f-lang.c (struct value): A value which can be passed into a
12284 Fortran function call.
12285 (fortran_argument_convert): Wrap Fortran arguments in a pointer
12286 where appropriate.
12287 (struct type): Value ready for a Fortran function call.
12288 (fortran_preserve_arg_pointer): Undo check_typedef, the pointer
12289 is needed.
12290 * f-lang.h (fortran_argument_convert): Declaration.
12291 (fortran_preserve_arg_pointer): Declaration.
12292 * infcall.c (value_arg_coerce): Call Fortran argument logic.
12293
ea38e5df
TT
122942019-03-05 Tom Tromey <tromey@adacore.com>
12295
12296 * python/py-prettyprint.c (print_string_repr): Remove #if.
12297 * python/py-utils.c (unicode_to_encoded_string): Remove #if.
12298
06b5b831
TT
122992019-03-05 Tom Tromey <tromey@adacore.com>
12300
12301 * target.c (the_dummy_target): Move later. Change type to
12302 "dummy_target".
12303 (initialize_targets): Don't initialize the_dummy_target.
12304
edbd9e45
TT
123052019-03-05 Tom Tromey <tromey@adacore.com>
12306
12307 * gdb_bfd.c (gdb_bfd_fdopenr): Remove.
12308 * gdb_bfd.h (gdb_bfd_fdopenr): Don't declare.
12309
c119e040
TT
123102019-03-05 Tom Tromey <tromey@adacore.com>
12311
12312 * windows-nat.c (windows_nat_target::attach)
12313 (windows_nat_target::detach): Don't call gdb_flush.
12314 * valprint.c (generic_val_print, val_print, val_print_string):
12315 Don't call gdb_flush.
12316 * utils.c (defaulted_query): Don't call gdb_flush.
12317 * typeprint.c (print_type_scalar): Don't call gdb_flush.
12318 * target.c (target_announce_detach): Don't call gdb_flush.
12319 * sparc64-tdep.c (adi_print_versions): Don't call gdb_flush.
12320 * remote.c (extended_remote_target::attach): Don't call
12321 gdb_flush.
12322 * procfs.c (procfs_target::detach): Don't call gdb_flush.
12323 * printcmd.c (do_examine): Don't call gdb_flush.
12324 (info_display_command): Don't call gdb_flush.
12325 * p-valprint.c (pascal_val_print): Don't call gdb_flush.
12326 * nto-procfs.c (nto_procfs_target::attach): Don't call gdb_flush.
12327 * memattr.c (info_mem_command): Don't call gdb_flush.
12328 * mdebugread.c (mdebug_build_psymtabs): Don't call gdb_flush.
12329 * m2-valprint.c (m2_val_print): Don't call gdb_flush.
12330 * infrun.c (follow_exec, handle_command): Don't call gdb_flush.
12331 * inf-ptrace.c (inf_ptrace_target::attach): Don't call gdb_flush.
12332 * hppa-tdep.c (unwind_command): Don't call gdb_flush.
12333 * gnu-nat.c (gnu_nat_target::attach): Don't call gdb_flush.
12334 (gnu_nat_target::detach): Don't call gdb_flush.
12335 * f-valprint.c (f_val_print): Don't call gdb_flush.
12336 * darwin-nat.c (darwin_nat_target::attach): Don't call gdb_flush.
12337 * cli/cli-script.c (read_command_lines): Don't call gdb_flush.
12338 * cli/cli-cmds.c (shell_escape, print_disassembly): Don't call
12339 gdb_flush.
12340 * c-valprint.c (c_val_print): Don't call gdb_flush.
12341 * ada-valprint.c (ada_print_scalar): Don't call gdb_flush.
12342
895dafa6
TT
123432019-03-05 Tom Tromey <tromey@adacore.com>
12344
12345 * varobj.c (update_dynamic_varobj_children): Update.
12346 (install_default_visualizer): Use reset, not release.
12347 * value.c (set_internalvar): Update.
12348 * dwarf2loc.c (value_of_dwarf_reg_entry): Update.
12349 * common/gdb_ref_ptr.h (class ref_ptr) <release>: Add
12350 ATTRIBUTE_UNUSED_RESULT.
12351
88a774b9
TT
123522019-03-05 Tom Tromey <tromey@adacore.com>
12353
12354 * remote.c (class scoped_remote_fd) <release>: Add
12355 ATTRIBUTE_UNUSED_RESULT.
12356
4e4a8b93
TT
123572019-03-05 Tom Tromey <tromey@adacore.com>
12358
12359 * macroexp.c (struct macro_buffer) <release>: Add
12360 ATTRIBUTE_UNUSED_RESULT.
12361
083eef1f
TT
123622019-03-05 Tom Tromey <tromey@adacore.com>
12363
12364 * nat/linux-btrace.c (linux_enable_bts, linux_enable_pt): Update.
12365 * common/scoped_mmap.h (class scoped_mmap) <release>: Add
12366 ATTRIBUTE_UNUSED_RESULT.
12367
3cabd438
TT
123682019-03-05 Tom Tromey <tromey@adacore.com>
12369
12370 * common/scoped_fd.h (class scoped_fd) <release>: Add
12371 ATTRIBUTE_UNUSED_RESULT.
12372
41e3300a
TT
123732019-03-05 Tom Tromey <tromey@adacore.com>
12374
12375 * parser-defs.h (struct parser_state) <release>: Add
12376 ATTRIBUTE_UNUSED_RESULT.
12377
18cb7c9f
TT
123782019-03-05 Tom Tromey <tromey@adacore.com>
12379
12380 * utils.h (class gdb_argv) <release>: Add
12381 ATTRIBUTE_UNUSED_RESULT.
12382 * common/common-defs.h (ATTRIBUTE_UNUSED_RESULT): Define.
12383
41fa577f
EZ
123842019-03-02 Eli Zaretskii <eliz@gnu.org>
12385
a6a4b2c6
EZ
12386 * xml-syscall.c (xml_list_syscalls_by_group): Drop 'struct' from
12387 for-loop range, to avoid compiler warnings.
12388
12389 * tui/tui.c (tui_enable) [__MINGW32__]: Don't declare 'cap', to
12390 avoid compiler warnings about unused variables.
12391
742a7df5
EZ
12392 * NEWS: Mention end of support for native debugging on MS-Windows
12393 before XP.
12394
41fa577f
EZ
12395 PR gdb/24292
12396 * common/netstuff.c:
12397 * gdbserver/gdbreplay.c
12398 * gdbserver/remote-utils.c:
12399 * ser-tcp.c:
12400 * unittests/parse-connection-spec-selftests.c [USE_WIN32API]:
12401 Include ws2tcpip.h instead of wsiapi.h and winsock2.h. Redefine
12402 _WIN32_WINNT to 0x0501 if defined to a smaller value, as
12403 'getaddrinfo' and 'freeaddrinfo' were not available before
12404 Windows XP, and mingw.org's MinGW headers by default define
12405 _WIN32_WINNT to 0x500.
12406
827f438f
GB
124072019-03-01 Gary Benson <gbenson@redhat.com>
12408
12409 * coffread.c (coff_start_symtab): Remove unnecessary xstrdup.
12410
92137da0
RO
124112019-02-28 Brian Vandenberg <phantall@gmail.com>
12412 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
12413
12414 PR gdb/8527
12415 * procfs.c (proc_wait_for_stop): Wrap write of PCWSTOP in
12416 set_sigint_trap, clear_sigint_trap.
12417
799efbe8
PW
124182019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12419
12420 * target.c (target_detach): Clear the regcache and the
12421 frame cache.
12422
8ed25214
PA
124232019-02-27 Pedro Alves <palves@redhat.com>
12424
12425 * utils.c (set_screen_size): When we cap the height/width sizes,
12426 tweak the corresponding command variable to show "unlimited":
12427
23031e31
SJ
124282019-02-27 Saagar Jha <saagar@saagarjha.com>
12429 Pedro Alves <palves@redhat.com>
12430
12431 * utils.c (set_screen_size): Reduce "infinite" rows and columns
12432 before calling rl_set_screen_size.
12433
6c28e44a
TT
124342019-02-27 Tom Tromey <tromey@adacore.com>
12435
12436 * configure.ac (HAVE_LIBPYTHON2_4, HAVE_LIBPYTHON2_5): Never
12437 define.
12438 * python/py-value.c: Remove Python 2.4 workaround.
12439 * python/py-utils.c (gdb_pymodule_addobject): Remove Python 2.4
12440 workaround.
12441 * python/py-type.c (convert_field, gdbpy_initialize_types): Remove
12442 Python 2.4 workaround.
12443 * python/python-internal.h: Remove Python 2.4 comment.
12444 (Py_ssize_t): Don't define.
12445 (PyVarObject_HEAD_INIT, Py_TYPE): Don't define.
12446 (gdb_Py_DECREF): Remove Python 2.4 workaround.
12447 (gdb_PyObject_GetAttrString, PyObject_GetAttrString): Remove.
12448 (gdb_PyObject_HasAttrString, PyObject_HasAttrString): Remove.
12449 * python/python.c (do_start_initialization): Remove Python 2.4
12450 workaround.
12451 * python/py-prettyprint.c (class dummy_python_frame): Remove.
12452 (print_children): Remove Python 2.4 workaround.
12453 * python/py-inferior.c (buffer_procs): Remove Python 2.4
12454 workaround.
12455 (CHARBUFFERPROC_NAME): Remove.
12456 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Remove
12457 Python 2.4 workaround.
12458
2c3fc25d 124592019-02-27 Kevin Buettner <kevinb@redhat.com>
799efbe8 12460
2c3fc25d
KB
12461 * NEWS: Note minimum Python version.
12462
6ca62222
KB
124632019-02-27 Kevin Buettner <kevinb@redhat.com>
12464
12465 * python/py-inferior.c (infpy_write_memory): Remove non-IS_PY3K
12466 code from these functions. Remove corresponding ifdefs. Use
12467 Py_buffer_up instead of explicit calls to PyBuffer_Release.
12468 Remove gotos and target of gotos.
12469 (infpy_search_memory): Likewise.
12470
f4bc7d2c
AB
124712019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12472
12473 * gdb/hppa-tdep.c (hppa_dummy_id): Delete.
12474 (hppa_gdbarch_init): Don't register deleted functions with
12475 gdbarch.
12476
9734a586
AB
124772019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12478
12479 * gdb/h8300-tdep.c (h8300_unwind_pc): Delete.
12480 (h8300_unwind_sp): Delete.
12481 (h8300_dummy_id): Delete.
12482 (h8300_gdbarch_init): Don't register deleted functions with
12483 gdbarch.
12484
68b867f3
AB
124852019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12486
12487 * gdb/ft32-tdep.c (ft32_dummy_id): Delete.
12488 (ft32_unwind_pc): Delete.
12489 (ft32_unwind_sp): Delete.
12490 (ft32_gdbarch_init): Don't register deleted functions with
12491 gdbarch.
12492
2fbe7ad0
AB
124932019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12494
12495 * gdb/frv-tdep.c (frv_dummy_id): Delete.
12496 (frv_unwind_pc): Delete.
12497 (frv_unwind_sp): Delete.
12498 (frv_gdbarch_init): Don't register deleted functions with
12499 gdbarch.
12500
76055cbe
AB
125012019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12502
12503 * gdb/riscv-tdep.c (riscv_dummy_id): Delete.
12504 (riscv_unwind_pc): Delete.
12505 (riscv_unwind_sp): Delete.
12506 (riscv_gdbarch_init): Don't register deleted functions with
12507 gdbarch.
12508
4133e5a1
AB
125092019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12510
12511 * gdb/csky-tdep.c (csky_dummy_id): Delete.
12512 (csky_unwind_pc): Delete.
12513 (csky_unwind_sp): Delete.
12514 (csky_gdbarch_init): Don't register deleted functions with
12515 gdbarch.
12516
8010f576
AB
125172019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12518
12519 * gdb/cris-tdep.c (cris_dummy_id): Delete.
12520 (cris_unwind_pc): Delete.
12521 (cris_unwind_sp): Delete.
12522 (cris_gdbarch_init): Don't register deleted functions with
12523 gdbarch.
12524
b56bf084
AB
125252019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12526
12527 * gdb/bfin-tdep.c (bfin_dummy_id): Delete.
12528 (bfin_unwind_pc): Delete.
12529 (bfin_gdbarch_init): Don't register deleted functions with gdbarch.
12530
a19a650f
AB
125312019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12532
12533 * gdb/arm-tdep.c (arm_dummy_id): Delete.
12534 (arm_unwind_pc): Delete.
12535 (arm_unwind_sp): Delete.
12536 (arm_gdbarch_init): Don't register deleted functions with gdbarch.
12537
f8278c3c
AB
125382019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12539
12540 * gdb/arc-tdep.c (arc_dummy_id): Delete.
12541 (arc_unwind_pc): Delete.
12542 (arc_unwind_sp): Delete.
12543 (arc_gdbarch_init): Don't register deleted functions with gdbarch.
12544
480e46cf
AB
125452019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12546
12547 * gdb/alpha-tdep.c (alpha_dummy_id): Delete.
12548 (alpha_unwind_pc): Delete.
12549 (alpha_gdbarch_init): Don't register deleted functions with
12550 gdbarch.
12551
7a995095
AB
125522019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12553
12554 * gdb/aarch64-tdep.c (aarch64_dummy_id): Delete.
12555 (aarch64_unwind_pc): Delete.
12556 (aarch64_unwind_sp): Delete.
12557 (aarch64_gdbarch_init): Don't register deleted functions with
12558 gdbarch.
12559
bf9a735e
AB
125602019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12561
12562 * gdbtypes.c (type_align): Don't consider static members when
12563 computing structure alignment.
12564
5561fc30
AB
125652019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12566
12567 * arc-tdep.c (arc_type_align): Provide alignment for basic types,
12568 return 0 for other types.
12569 * arch-utils.c (default_type_align): Always return 0.
12570 * gdbarch.h: Regenerate.
12571 * gdbarch.sh (type_align): Extend comment.
12572 * gdbtypes.c (type_align): Add additional comments, always call
12573 gdbarch_type_align before applying the default rules.
12574 * i386-tdep.c (i386_type_align): Return 0 as the default rule,
12575 generic code will then apply a suitable default.
12576 * nios2-tdep.c (nios2_type_align): Provide alignment for basic
12577 types, return 0 for other types.
12578
9335e75a
JB
125792019-02-27 Joel Brobecker <brobecker@adacore.com>
12580
12581 * NEWS: Create a new section for the next release branch.
12582 Rename the section of the current branch, now that it has
12583 been cut.
12584
3d34d8de
JB
125852019-02-27 Joel Brobecker <brobecker@adacore.com>
12586
12587 GDB 8.3 branch created (143420fb0d5ae54323ba9953f0818c194635228d):
12588 * version.in: Bump version to 8.3.50.DATE-git.
12589
143420fb
SM
125902019-02-26 Simon Marchi <simon.marchi@efficios.com>
12591
12592 * aix-thread.c (ptid_cmp): Remove unused variable.
12593 (get_signaled_thread): Likewise.
12594 (store_regs_user_thread): Likewise.
12595 (store_regs_kernel_thread): Likewise.
12596 (fetch_regs_kernel_thread): Remove shadowed variable.
12597
172fb711
AB
125982019-02-26 Andrew Burgess <andrew.burgess@embecosm.com>
12599
12600 * features/riscv/32bit-cpu.xml: Add register numbers.
12601 * features/riscv/32bit-fpu.c: Regenerate.
12602 * features/riscv/32bit-fpu.xml: Add register numbers.
12603 * features/riscv/64bit-cpu.xml: Add register numbers.
12604 * features/riscv/64bit-fpu.c: Regenerate.
12605 * features/riscv/64bit-fpu.xml: Add register numbers.
12606
26c89782
KB
126072019-02-26 Kevin Buettner <kevinb@redhat.com>
12608
af54ade9 12609 * NEWS: Mention two argument form of gdb.Value constructor.
fe07eca5
KB
12610 * python/py-value.c (convert_buffer_and_type_to_value): New
12611 function.
12612 (valpy_new): Parse arguments via gdb_PyArg_ParseTupleAndKeywords.
12613 Add support for handling an optional second argument. Call
12614 convert_buffer_and_type_to_value as appropriate.
26c89782
KB
12615 * python/python-internal.h (Py_buffer_deleter): New struct.
12616 (Py_buffer_up): New typedef.
12617
0f58c9e8
JB
126182019-02-25 John Baldwin <jhb@FreeBSD.org>
12619
12620 * dwarf2read.c (dwarf2_get_dwz_file): Reset dwz_bfd to nullptr
12621 instead of releasing ownership.
12622
0a0f4c01
JR
126232019-02-25 Jordan Rupprecht <rupprecht@google.com>
12624
12625 * dwarf2read.c (open_and_init_dwp_file): Call
12626 elf_numsections instead of bfd_count_sections to initialize
12627 dwp_file->num_sections.
12628
cd5a152c
TT
126292019-02-25 Tom Tromey <tromey@adacore.com>
12630
12631 * solib-darwin.c (darwin_get_dyld_bfd): Don't release dyld_bfd.
12632
8a6a8513
SDJ
126332019-02-23 Sergio Durigan Junior <sergiodj@redhat.com>
12634
12635 * gcore.in: Add '--readnever' option when invoking GDB.
12636
04dcda9c
SM
126372019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
12638
12639 * MAINTAINERS: Update my email address.
12640
07bc701d
SM
126412019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
12642
12643 * build-id.c (build_id_to_debug_bfd_1): New function.
12644 (build_id_to_debug_bfd): Look for separate debug file in
12645 sysroot.
12646
c6f4a5d0
AB
126472019-02-22 Andrew Burgess <andrew.burgess@embecosm.com>
12648
12649 * gdbarch.sh: Update the copyright year range that is placed into
12650 generated files.
12651
9600246d
KS
126522019-02-22 Keith Seitz <keiths@redhat.com>
12653
12654 PR symtab/23853
12655 * linespec.c (create_sals_line_offset): Search for the default
12656 symtab's filename instead of its fullname.
12657
7557a514
AH
126582019-02-21 Alan Hayward <alan.hayward@arm.com>
12659
12660 * NEWS: Update style defaults.
12661
ee2bcb0c
AH
126622019-02-21 Alan Hayward <alan.hayward@arm.com>
12663
12664 * main.c (captured_main_1): Disable styling in batch mode.
12665
0c95f9ed
TT
126662019-02-20 Tom Tromey <tom@tromey.com>
12667
12668 * symtab.c (symtab_symbol_info): Fix typos.
12669
c763b894
TT
126702019-02-20 Tom Tromey <tromey@adacore.com>
12671
12672 * findcmd.c (_initialize_mem_search): Use upper case for
12673 metasyntactic variables.
12674
0ef8a082
AH
126752019-02-20 Alan Hayward <alan.hayward@arm.com>
12676
12677 * aarch64-tdep.c (aarch64_add_reggroups): New function.
12678 (aarch64_gdbarch_init): Call aarch64_add_reggroups.
12679
6caa91b6
SM
126802019-02-19 Simon Marchi <simon.marchi@polymtl.ca>
12681
12682 * top.h (source_file_name): Change to std::string.
12683 * top.c (source_file_name): Likewise.
12684 (command_line_input): Adjust.
12685 * cli/cli-script.c (script_from_file): Adjust.
12686
98814c6c
TT
126872019-02-19 Tom Tromey <tromey@adacore.com>
12688
12689 * ravenscar-thread.c
12690 (ravenscar_thread_target::update_thread_list): Don't call
12691 ada_build_task_list.
12692 * ada-lang.h (ada_build_task_list): Don't declare.
12693 * ada-tasks.c (struct ada_tasks_inferior_data)
12694 <task_list_valid_p>: Now bool.
12695 (read_known_tasks, ada_task_list_changed)
12696 (ada_tasks_invalidate_inferior_data): Update.
12697 (read_known_tasks_array): Return bool.
12698 (read_known_tasks_list): Likewise.
12699 (read_known_tasks): Return void.
12700 (ada_build_task_list): Now static.
12701
70cd633e
AB
127022019-02-18 Andrew Burgess <andrew.burgess@embecosm.com>
12703
12704 * gdbtypes.c (type_align): Allow alignment of TYPE_CODE_METHODPTR
12705 and TYPE_CODE_MEMBERPTR to be overridden by the gdbarch.
12706
040b3e95
PW
127072019-02-18 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12708
12709 * ada-task.c (_initialize_tasks): Use 'with_cleanup' register
12710 variant for ada_tasks_pspace_data_handle and
12711 ada_tasks_inferior_data_handle.
12712 (ada_tasks_pspace_data_cleanup): New function.
12713 (ada_tasks_inferior_data_cleanup): New function.
12714
9409233b
TT
127152019-02-17 Tom Tromey <tom@tromey.com>
12716
12717 * macrotab.h (macro_source_fullname): Return a std::string.
12718 * macrotab.c (macro_include, check_for_redefinition)
12719 (macro_undef, macro_lookup_definition, foreach_macro)
12720 (foreach_macro_in_scope): Update.
12721 (macro_source_fullname): Return a std::string.
12722 * macrocmd.c (show_pp_source_pos): Update.
12723
6506371f
TT
127242019-02-17 Tom Tromey <tom@tromey.com>
12725
12726 * macrocmd.c (show_pp_source_pos): Style the file names.
12727
0c820d67
TT
127282019-02-17 Tom Tromey <tom@tromey.com>
12729
12730 PR tui/24197:
12731 * tui/tui-source.c (tui_set_source_content_nil): Rewrite.
12732
a0087920
TT
127332019-02-17 Tom Tromey <tom@tromey.com>
12734
12735 * ada-lang.c (user_select_syms): Use filtered printing.
12736 * utils.c (wrap_style): New global.
12737 (desired_style): Remove.
12738 (emit_style_escape): Add stream parameter.
12739 (set_output_style, reset_terminal_style, prompt_for_continue):
12740 Update.
12741 (flush_wrap_buffer): Only flush gdb_stdout.
12742 (wrap_here): Set wrap_style.
12743 (fputs_maybe_filtered): Clear the wrap buffer on exception. Don't
12744 treat escape sequences as a character. Change when wrap buffer is
12745 flushed.
12746 (fputs_styled): Do not set the output style when the default is
12747 requested.
12748 * ui-style.h (struct ui_file_style) <is_default>: New method.
12749 * source.c (print_source_lines_base): Emit escape sequences in one
12750 piece.
12751
75ba10dc
JB
127522019-02-17 Joel Brobecker <brobecker@adacore.com>
12753
12754 * gdbtypes.c (type_align): Handle TYPE_CODE_RANGE the same as
12755 integers and enumeration types.
12756
a2cd4f14
JB
127572019-02-17 Joel Brobecker <brobecker@adacore.com>
12758
12759 * ada-lang.c (standard_lookup): Use ada_lookup_encoded_symbol
12760 instead of lookup_symbol_in_language
12761 (do_exact_match): New function.
12762 (ada_get_symbol_name_matcher): Return do_exact_match when
12763 doing a verbatim match.
12764
485b851b
TT
127652019-02-15 Tom Tromey <tromey@adacore.com>
12766
12767 * ravenscar-thread.c (ravenscar_thread_target::resume)
12768 (ravenscar_thread_target::wait): Special case wildcard requests.
12769
0b790b1e
TT
127702019-02-15 Tom Tromey <tromey@adacore.com>
12771
12772 * ravenscar-thread.c (base_ptid): Remove.
12773 (struct ravenscar_thread_target) <close>: New method.
12774 <m_base_ptid>: New member.
12775 <update_inferior_ptid, active_task, task_is_currently_active,
12776 runtime_initialized>: Declare methods.
12777 <ravenscar_thread_target>: Add constructor.
12778 (ravenscar_thread_target::task_is_currently_active)
12779 (ravenscar_thread_target::update_inferior_ptid)
12780 (ravenscar_runtime_initialized): Rename. Now methods.
12781 (ravenscar_thread_target::resume, ravenscar_thread_target::wait)
12782 (ravenscar_thread_target::update_thread_list): Update.
12783 (ravenscar_thread_target::active_task): Now method.
12784 (ravenscar_thread_target::store_registers)
12785 (ravenscar_thread_target::prepare_to_store)
12786 (ravenscar_thread_target::prepare_to_store)
12787 (ravenscar_thread_target::mourn_inferior): Update.
12788 (ravenscar_inferior_created): Use "new" to create target.
12789 (ravenscar_thread_target::get_ada_task_ptid): Update.
12790 (_initialize_ravenscar): Don't initialize base_ptid.
12791 (ravenscar_ops): Remove global.
12792
dea57a62
TT
127932019-02-15 Tom Tromey <tromey@adacore.com>
12794
12795 * target.h (push_target): Declare new overload.
12796 * target.c (push_target): New overload, taking an rvalue reference.
12797 * remote.c (remote_target::open_1): Use push_target overload.
12798 * corelow.c (core_target_open): Use push_target overload.
12799
989f3c58
TT
128002019-02-15 Tom Tromey <tromey@adacore.com>
12801
12802 * ravenscar-thread.c (is_ravenscar_task)
12803 (ravenscar_task_is_currently_active): Return bool.
12804 (ravenscar_update_inferior_ptid, get_running_thread_msymbol)
12805 (_initialize_ravenscar): Remove "(void)".
12806 (has_ravenscar_runtime, ravenscar_runtime_initialized): Likewise.
12807 Return bool.
12808
6cbcc006
TT
128092019-02-15 Tom Tromey <tromey@adacore.com>
12810
12811 * ravenscar-thread.c (ravenscar_runtime_initializer)
12812 (has_ravenscar_runtime, get_running_thread_id)
12813 (ravenscar_thread_target::resume): Fix indentation.
12814
7657f14d
TT
128152019-02-15 Tom Tromey <tromey@adacore.com>
12816
12817 * sparc-ravenscar-thread.c (struct sparc_ravenscar_ops): Derive
12818 from ravenscar_arch_ops.
12819 (sparc_ravenscar_ops::fetch_registers)
12820 (sparc_ravenscar_ops::store_registers): Now methods.
12821 (sparc_ravenscar_prepare_to_store): Remove.
12822 (sparc_ravenscar_ops): Redefine.
12823 * ravenscar-thread.h (struct ravenscar_arch_ops): Add virtual
12824 methods and destructor. Remove members.
12825 * ravenscar-thread.c (ravenscar_thread_target::fetch_registers)
12826 (ravenscar_thread_target::store_registers)
12827 (ravenscar_thread_target::prepare_to_store): Update.
12828 * ppc-ravenscar-thread.c (ppc_ravenscar_generic_prepare_to_store):
12829 Remove.
12830 (struct ppc_ravenscar_powerpc_ops): Derive from
12831 ravenscar_arch_ops.
12832 (ppc_ravenscar_powerpc_ops::fetch_registers)
12833 (ppc_ravenscar_powerpc_ops::store_registers): Now methods.
12834 (ppc_ravenscar_powerpc_ops): Redefine.
12835 (struct ppc_ravenscar_e500_ops): Derive from ravenscar_arch_ops.
12836 (ppc_ravenscar_e500_ops::fetch_registers)
12837 (ppc_ravenscar_e500_ops::store_registers): Now methods.
12838 (ppc_ravenscar_e500_ops): Redefine.
12839 * aarch64-ravenscar-thread.c
12840 (aarch64_ravenscar_generic_prepare_to_store): Remove.
12841 (struct aarch64_ravenscar_ops): Derive from ravenscar_arch_ops.
12842 (aarch64_ravenscar_fetch_registers)
12843 (aarch64_ravenscar_store_registers): Now methods.
12844 (aarch64_ravenscar_ops): Redefine.
12845
5b6ea500
TT
128462019-02-15 Tom Tromey <tromey@adacore.com>
12847
12848 * ravenscar-thread.c (ravenscar_thread_target::stopped_by_sw_breakpoint)
12849 (ravenscar_thread_target::stopped_by_hw_breakpoint)
12850 (ravenscar_thread_target::stopped_by_watchpoint)
12851 (ravenscar_thread_target::stopped_data_address)
12852 (ravenscar_thread_target::core_of_thread): Use scoped_restore.
12853
e397fd39
TT
128542019-02-15 Tom Tromey <tromey@adacore.com>
12855
12856 * ravenscar-thread.c: Fix some typos.
12857
cc12f4a8
TT
128582019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12859 Tom Tromey <tromey@adacore.com>
12860
12861 * ada-lang.c (ada_exception_sal): Change addr_string to a
12862 std::string.
12863 (create_ada_exception_catchpoint): Update.
12864
5f486660
TT
128652019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12866 Tom Tromey <tromey@adacore.com>
12867
12868 * breakpoint.c (~bp_location): Rename from bp_location_dtor.
12869 (bp_location_ops): Remove.
12870 (base_breakpoint_allocate_location): Update.
12871 (free_bp_location): Update.
12872 * ada-lang.c (class ada_catchpoint_location)
12873 <ada_catchpoint_location>: Remove ops parameter.
12874 (ada_catchpoint_location_dtor): Remove.
12875 (ada_catchpoint_location_ops): Remove.
12876 (allocate_location_exception): Update.
12877 * breakpoint.h (struct bp_location_ops): Remove.
12878 (class bp_location) <bp_location>: Remove bp_location_ops
12879 parameter.
12880 <~bp_location>: Add destructor.
12881 <ops>: Remove.
12882
b671c7fb
TS
128832019-02-14 Thomas Schwinge <thomas@codesourcery.com>
12884 Pedro Alves <palves@redhat.com>
12885
12886 * remote.c (remote_target::remote_parse_stop_reply): Avoid using
12887 'PATH_MAX'.
12888
8071c5ce
DM
128892019-02-14 David Michael <fedora.dm0@gmail.com>
12890 Samuel Thibault <samuel.thibault@gnu.org>
12891 Thomas Schwinge <thomas@codesourcery.com>
12892
12893 * gnu-nat.c (S_proc_getmsgport_reply, S_proc_task2proc_reply)
12894 (S_proc_pid2proc_reply): Adjust to Hurd "proc" interface changes.
12895
b1041ae0
TS
128962019-02-14 Thomas Schwinge <thomas@codesourcery.com>
12897
924514e1
TS
12898 * gnu-nat.c (gnu_write_inferior, parse_int_arg, _parse_bool_arg)
12899 (check_empty): Use "const char *".
12900
c29ee8d4
TS
12901 * gnu-nat.c (gnu_nat_target::detach): Instead of
12902 'detach_inferior (pid)' call
12903 'detach_inferior (find_inferior_pid (pid))'.
12904
6c6ef69f
TS
12905 * configure.nat [gdb_host == i386gnu] (NATDEPFILES): Add
12906 'nat/fork-inferior.o'.
12907 * gnu-nat.c: #include "nat/fork-inferior.h".
12908
2d0a338c
TS
12909 * gnu-nat.c (gnu_nat_target::detach): Instead of
12910 'inf_child_maybe_unpush_target (ops)' call 'maybe_unpush_target'.
12911 * gnu-nat.h: #include "inf-child.h".
12912 * i386-gnu-nat.c (gnu_fetch_registers): Rename/move to
12913 'i386_gnu_nat_target::fetch_registers'.
12914 (gnu_store_registers): Rename/move to
12915 'i386_gnu_nat_target::store_registers'.
12916
cabb5f06
TS
12917 * config/i386/nm-i386gnu.h: Don't "#include" any files.
12918 * gnu-nat.h (mach_thread_info): New function.
12919 * gnu-nat.c (thread_takeover_sc_cmd): Use it.
12920
b1041ae0
TS
12921 * config/i386/nm-i386gnu.h (gnu_target_pid_to_str): Remove.
12922
2988d01e
KF
129232019-02-14 Frederic Konrad <konrad@adacore.com>
12924
12925 * riscv-rdep.c (riscv_type_alignment): Handle TYPE_CODE_RANGE.
12926
c559d709
JB
129272019-02-14 Joel Brobecker <brobecker@adacore.com>
12928
12929 * windows-nat.c (windows_add_thread): Add new parameter
12930 "main_thread_p" with default value set to false. Update
12931 function documentation as well as all callers.
12932 (windows_delete_thread): Likewise.
12933 (fake_create_process): Update call to windows_add_thread.
12934 (get_windows_debug_event) <CREATE_THREAD_DEBUG_EVENT>
12935 <CREATE_PROCESS_DEBUG_EVENT>: Likewise.
12936 <EXIT_THREAD_DEBUG_EVENT, EXIT_PROCESS_DEBUG_EVENT>: Update
12937 call to windows_delete_thread.
12938
007024cc
SM
129392019-02-13 Simon Marchi <simon.marchi@ericsson.com>
12940
12941 * MAINTAINERS: Add Andrew Burgess as global maintainer.
12942
f62318e9
JB
129432019-02-12 John Baldwin <jhb@FreeBSD.org>
12944
12945 * symfile.c (find_separate_debug_file): Use canonical path of
12946 sysroot with child_path instead of gdb_sysroot if it is valid.
12947
cd4b7848
JB
129482019-02-12 John Baldwin <jhb@FreeBSD.org>
12949
12950 * symfile.c (find_separate_debug_file): Use child_path to
12951 determine if an object file is under a sysroot.
12952
efac4bfe
JB
129532019-02-12 John Baldwin <jhb@FreeBSD.org>
12954
12955 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
12956 unittests/child-path-selftests.c.
12957 * common/pathstuff.c (child_path): New function.
12958 * common/pathstuff.h (child_path): New prototype.
12959 * unittests/child-path-selftests.c: New file.
12960
402d2bfe
JB
129612019-02-12 John Baldwin <jhb@FreeBSD.org>
12962
12963 * symfile.c (find_separate_debug_file): Look for separate debug
12964 files in debug directories under the sysroot.
12965
1ed9f74e
PW
129662019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12967
12968 * symtab.h (struct minimal_symbol data_p): New const method.
12969 (struct minimal_symbol text_p): Likewise.
12970 * symtab.c (output_source_filename): Use file name style
12971 to print file name.
12972 (print_symbol_info): Likewise.
12973 (print_msymbol_info): Use address style to print addresses.
12974 Use function name style to print executable text symbols.
12975 (expand_symtab_containing_pc): Use data_p.
12976 (find_pc_sect_compunit_symtab): Likewise.
12977
2636d81d
PW
129782019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12979
12980 * breakpoint.c (describe_other_breakpoints): Use address style
12981 to print addresses.
12982 (say_where): Likewise.
12983
ac8c53cc
PW
129842019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12985
12986 * ada-typeprint.c (print_func_type): Print function name
12987 style to print function name.
12988 * c-typeprint.c (c_print_type_1): Likewise.
12989
ea638c43
AH
129902019-02-11 Alan Hayward <alan.hayward@arm.com>
12991
12992 * aarch64-linux-tdep.c (aarch64_linux_get_syscall_number): Check
12993 for execve.
12994
ab759ca8
PW
129952019-02-10 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12996
12997 * c-exp.y (direct_abs_decl): Use emplace_back to record the
12998 type_stack.
12999
aff29d1c
JB
130002019-02-10 Joel Brobecker <brobecker@adacore.com>
13001
13002 * ada-varobj.c (ada_value_is_changeable_p): Add handling of
13003 TYPE_CODE_REF types.
13004
617126bc
JW
130052019-02-08 Jim Wilson <jimw@sifive.com>
13006
13007 * riscv-linux-tdep.c (riscv_linux_fregmap): New.
13008 (riscv_linux_fregset): New.
13009 (riscv_linux_iterate_over_regset_sections): Call cb for .reg2 section.
13010
46e3ed7f
TT
130112019-02-07 Tom Tromey <tom@tromey.com>
13012
13013 * thread.c (thread_cancel_execution_command): Update.
13014 * thread-fsm.h (struct thread_fsm): Add constructor, destructor,
13015 methods.
13016 (struct thread_fsm_ops): Remove.
13017 (thread_fsm_ctor, thread_fsm_delete, thread_fsm_clean_up)
13018 (thread_fsm_should_stop, thread_fsm_return_value)
13019 (thread_fsm_set_finished, thread_fsm_finished_p)
13020 (thread_fsm_async_reply_reason, thread_fsm_should_notify_stop):
13021 Don't declare.
13022 * mi/mi-interp.c (mi_on_normal_stop_1): Update.
13023 * infrun.c (clear_proceed_status_thread)
13024 (clean_up_just_stopped_threads_fsms, fetch_inferior_event)
13025 (print_stop_event): Update.
13026 * infcmd.c (struct step_command_fsm): Inherit from thread_fsm.
13027 Add constructor.
13028 (step_command_fsm_ops): Remove.
13029 (new_step_command_fsm): Remove.
13030 (step_1): Update.
13031 (step_command_fsm::should_stop): Rename from
13032 step_command_fsm_should_stop.
13033 (step_command_fsm::clean_up): Rename from
13034 step_command_fsm_clean_up.
13035 (step_command_fsm::do_async_reply_reason): Rename from
13036 step_command_fsm_async_reply_reason.
13037 (struct until_next_fsm): Inherit from thread_fsm. Add
13038 constructor.
13039 (until_next_fsm_ops): Remove.
13040 (new_until_next_fsm): Remove.
13041 (until_next_fsm::should_stop): Rename from
13042 until_next_fsm_should_stop.
13043 (until_next_fsm::clean_up): Rename from until_next_fsm_clean_up.
13044 (until_next_fsm::do_async_reply_reason): Rename from
13045 until_next_fsm_async_reply_reason.
13046 (struct finish_command_fsm): Inherit from thread_fsm. Add
13047 constructor. Change type of breakpoint.
13048 (finish_command_fsm_ops): Remove.
13049 (new_finish_command_fsm): Remove.
13050 (finish_command_fsm::should_stop): Rename from
13051 finish_command_fsm_should_stop.
13052 (finish_command_fsm::clean_up): Rename from
13053 finish_command_fsm_clean_up.
13054 (finish_command_fsm::return_value): Rename from
13055 finish_command_fsm_return_value.
13056 (finish_command_fsm::do_async_reply_reason): Rename from
13057 finish_command_fsm_async_reply_reason.
13058 (finish_command): Update.
13059 * infcall.c (struct call_thread_fsm): Inherit from thread_fsm.
13060 Add constructor.
13061 (call_thread_fsm_ops): Remove.
13062 (call_thread_fsm::call_thread_fsm): Rename from
13063 new_call_thread_fsm.
13064 (call_thread_fsm::should_stop): Rename from
13065 call_thread_fsm_should_stop.
13066 (call_thread_fsm::should_notify_stop): Rename from
13067 call_thread_fsm_should_notify_stop.
13068 (run_inferior_call, call_function_by_hand_dummy): Update.
13069 * cli/cli-interp.c (should_print_stop_to_console): Update.
13070 * breakpoint.c (struct until_break_fsm): Inherit from thread_fsm.
13071 Add constructor. Change type of location_breakpoint,
13072 caller_breakpoint.
13073 (until_break_fsm_ops): Remove.
13074 (new_until_break_fsm): Remove.
13075 (until_break_fsm::should_stop): Rename from
13076 until_break_fsm_should_stop.
13077 (until_break_fsm::clean_up): Rename from
13078 until_break_fsm_clean_up.
13079 (until_break_fsm::do_async_reply_reason): Rename from
13080 until_break_fsm_async_reply_reason.
13081 (until_break_command): Update.
13082 * thread-fsm.c: Remove.
13083 * Makefile.in (COMMON_SFILES): Remove thread-fsm.c.
13084
1a5c2598
TT
130852019-02-07 Tom Tromey <tom@tromey.com>
13086
13087 * yy-remap.h: Add include guard.
13088 * xtensa-tdep.h: Add include guard.
13089 * xcoffread.h: Rename include guard.
13090 * varobj-iter.h: Add include guard.
13091 * tui/tui.h: Rename include guard.
13092 * tui/tui-winsource.h: Rename include guard.
13093 * tui/tui-wingeneral.h: Rename include guard.
13094 * tui/tui-windata.h: Rename include guard.
13095 * tui/tui-win.h: Rename include guard.
13096 * tui/tui-stack.h: Rename include guard.
13097 * tui/tui-source.h: Rename include guard.
13098 * tui/tui-regs.h: Rename include guard.
13099 * tui/tui-out.h: Rename include guard.
13100 * tui/tui-layout.h: Rename include guard.
13101 * tui/tui-io.h: Rename include guard.
13102 * tui/tui-hooks.h: Rename include guard.
13103 * tui/tui-file.h: Rename include guard.
13104 * tui/tui-disasm.h: Rename include guard.
13105 * tui/tui-data.h: Rename include guard.
13106 * tui/tui-command.h: Rename include guard.
13107 * tic6x-tdep.h: Add include guard.
13108 * target/waitstatus.h: Rename include guard.
13109 * target/wait.h: Rename include guard.
13110 * target/target.h: Rename include guard.
13111 * target/resume.h: Rename include guard.
13112 * target-float.h: Rename include guard.
13113 * stabsread.h: Add include guard.
13114 * rs6000-tdep.h: Add include guard.
13115 * riscv-fbsd-tdep.h: Add include guard.
13116 * regformats/regdef.h: Rename include guard.
13117 * record.h: Rename include guard.
13118 * python/python.h: Rename include guard.
13119 * python/python-internal.h: Rename include guard.
13120 * python/py-stopevent.h: Rename include guard.
13121 * python/py-ref.h: Rename include guard.
13122 * python/py-record.h: Rename include guard.
13123 * python/py-record-full.h: Rename include guard.
13124 * python/py-record-btrace.h: Rename include guard.
13125 * python/py-instruction.h: Rename include guard.
13126 * python/py-events.h: Rename include guard.
13127 * python/py-event.h: Rename include guard.
13128 * procfs.h: Add include guard.
13129 * proc-utils.h: Add include guard.
13130 * p-lang.h: Add include guard.
13131 * or1k-tdep.h: Rename include guard.
13132 * observable.h: Rename include guard.
13133 * nto-tdep.h: Rename include guard.
13134 * nat/x86-linux.h: Rename include guard.
13135 * nat/x86-linux-dregs.h: Rename include guard.
13136 * nat/x86-gcc-cpuid.h: Add include guard.
13137 * nat/x86-dregs.h: Rename include guard.
13138 * nat/x86-cpuid.h: Rename include guard.
13139 * nat/ppc-linux.h: Rename include guard.
13140 * nat/mips-linux-watch.h: Rename include guard.
13141 * nat/linux-waitpid.h: Rename include guard.
13142 * nat/linux-ptrace.h: Rename include guard.
13143 * nat/linux-procfs.h: Rename include guard.
13144 * nat/linux-osdata.h: Rename include guard.
13145 * nat/linux-nat.h: Rename include guard.
13146 * nat/linux-namespaces.h: Rename include guard.
13147 * nat/linux-btrace.h: Rename include guard.
13148 * nat/glibc_thread_db.h: Rename include guard.
13149 * nat/gdb_thread_db.h: Rename include guard.
13150 * nat/gdb_ptrace.h: Rename include guard.
13151 * nat/fork-inferior.h: Rename include guard.
13152 * nat/amd64-linux-siginfo.h: Rename include guard.
13153 * nat/aarch64-sve-linux-sigcontext.h: Rename include guard.
13154 * nat/aarch64-sve-linux-ptrace.h: Rename include guard.
13155 * nat/aarch64-linux.h: Rename include guard.
13156 * nat/aarch64-linux-hw-point.h: Rename include guard.
13157 * mn10300-tdep.h: Add include guard.
13158 * mips-linux-tdep.h: Add include guard.
13159 * mi/mi-parse.h: Rename include guard.
13160 * mi/mi-out.h: Rename include guard.
13161 * mi/mi-main.h: Rename include guard.
13162 * mi/mi-interp.h: Rename include guard.
13163 * mi/mi-getopt.h: Rename include guard.
13164 * mi/mi-console.h: Rename include guard.
13165 * mi/mi-common.h: Rename include guard.
13166 * mi/mi-cmds.h: Rename include guard.
13167 * mi/mi-cmd-break.h: Rename include guard.
13168 * m2-lang.h: Add include guard.
13169 * location.h: Rename include guard.
13170 * linux-record.h: Rename include guard.
13171 * linux-nat.h: Add include guard.
13172 * linux-fork.h: Add include guard.
13173 * i386-darwin-tdep.h: Rename include guard.
13174 * hppa-linux-offsets.h: Add include guard.
13175 * guile/guile.h: Rename include guard.
13176 * guile/guile-internal.h: Rename include guard.
13177 * gnu-nat.h: Rename include guard.
13178 * gdb-stabs.h: Rename include guard.
13179 * frv-tdep.h: Add include guard.
13180 * f-lang.h: Add include guard.
13181 * event-loop.h: Add include guard.
13182 * darwin-nat.h: Rename include guard.
13183 * cp-abi.h: Rename include guard.
13184 * config/sparc/nm-sol2.h: Rename include guard.
13185 * config/nm-nto.h: Rename include guard.
13186 * config/nm-linux.h: Add include guard.
13187 * config/i386/nm-i386gnu.h: Rename include guard.
13188 * config/djgpp/nl_types.h: Rename include guard.
13189 * config/djgpp/langinfo.h: Rename include guard.
13190 * compile/gcc-cp-plugin.h: Add include guard.
13191 * compile/gcc-c-plugin.h: Add include guard.
13192 * compile/compile.h: Rename include guard.
13193 * compile/compile-object-run.h: Rename include guard.
13194 * compile/compile-object-load.h: Rename include guard.
13195 * compile/compile-internal.h: Rename include guard.
13196 * compile/compile-cplus.h: Rename include guard.
13197 * compile/compile-c.h: Rename include guard.
13198 * common/xml-utils.h: Rename include guard.
13199 * common/x86-xstate.h: Rename include guard.
13200 * common/version.h: Rename include guard.
13201 * common/vec.h: Rename include guard.
13202 * common/tdesc.h: Rename include guard.
13203 * common/selftest.h: Rename include guard.
13204 * common/scoped_restore.h: Rename include guard.
13205 * common/scoped_mmap.h: Rename include guard.
13206 * common/scoped_fd.h: Rename include guard.
13207 * common/safe-iterator.h: Rename include guard.
13208 * common/run-time-clock.h: Rename include guard.
13209 * common/refcounted-object.h: Rename include guard.
13210 * common/queue.h: Rename include guard.
13211 * common/ptid.h: Rename include guard.
13212 * common/print-utils.h: Rename include guard.
13213 * common/preprocessor.h: Rename include guard.
13214 * common/pathstuff.h: Rename include guard.
13215 * common/observable.h: Rename include guard.
13216 * common/netstuff.h: Rename include guard.
13217 * common/job-control.h: Rename include guard.
13218 * common/host-defs.h: Rename include guard.
13219 * common/gdb_wait.h: Rename include guard.
13220 * common/gdb_vecs.h: Rename include guard.
13221 * common/gdb_unlinker.h: Rename include guard.
13222 * common/gdb_unique_ptr.h: Rename include guard.
13223 * common/gdb_tilde_expand.h: Rename include guard.
13224 * common/gdb_sys_time.h: Rename include guard.
13225 * common/gdb_string_view.h: Rename include guard.
13226 * common/gdb_splay_tree.h: Rename include guard.
13227 * common/gdb_setjmp.h: Rename include guard.
13228 * common/gdb_ref_ptr.h: Rename include guard.
13229 * common/gdb_optional.h: Rename include guard.
13230 * common/gdb_locale.h: Rename include guard.
13231 * common/gdb_assert.h: Rename include guard.
13232 * common/filtered-iterator.h: Rename include guard.
13233 * common/filestuff.h: Rename include guard.
13234 * common/fileio.h: Rename include guard.
13235 * common/environ.h: Rename include guard.
13236 * common/common-utils.h: Rename include guard.
13237 * common/common-types.h: Rename include guard.
13238 * common/common-regcache.h: Rename include guard.
13239 * common/common-inferior.h: Rename include guard.
13240 * common/common-gdbthread.h: Rename include guard.
13241 * common/common-exceptions.h: Rename include guard.
13242 * common/common-defs.h: Rename include guard.
13243 * common/common-debug.h: Rename include guard.
13244 * common/cleanups.h: Rename include guard.
13245 * common/buffer.h: Rename include guard.
13246 * common/btrace-common.h: Rename include guard.
13247 * common/break-common.h: Rename include guard.
13248 * cli/cli-utils.h: Rename include guard.
13249 * cli/cli-style.h: Rename include guard.
13250 * cli/cli-setshow.h: Rename include guard.
13251 * cli/cli-script.h: Rename include guard.
13252 * cli/cli-interp.h: Rename include guard.
13253 * cli/cli-decode.h: Rename include guard.
13254 * cli/cli-cmds.h: Rename include guard.
13255 * charset-list.h: Add include guard.
13256 * buildsym-legacy.h: Rename include guard.
13257 * bfin-tdep.h: Add include guard.
13258 * ax.h: Rename include guard.
13259 * arm-linux-tdep.h: Add include guard.
13260 * arm-fbsd-tdep.h: Add include guard.
13261 * arch/xtensa.h: Rename include guard.
13262 * arch/tic6x.h: Add include guard.
13263 * arch/i386.h: Add include guard.
13264 * arch/arm.h: Rename include guard.
13265 * arch/arm-linux.h: Rename include guard.
13266 * arch/arm-get-next-pcs.h: Rename include guard.
13267 * arch/amd64.h: Add include guard.
13268 * arch/aarch64-insn.h: Rename include guard.
13269 * arch-utils.h: Rename include guard.
13270 * annotate.h: Add include guard.
13271 * amd64-darwin-tdep.h: Rename include guard.
13272 * aarch64-linux-tdep.h: Add include guard.
13273 * aarch64-fbsd-tdep.h: Add include guard.
13274 * aarch32-linux-nat.h: Add include guard.
13275
ab9268d2
PW
132762019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13277
13278 * macrotab.c (macro_define_internal): New function that
13279 factorizes macro_define_object_internal and macro_define_function
13280 code.
13281 (macro_define_object_internal): Use macro_define_internal.
13282 (macro_define_function): Likewise.
13283
bb0da2b4
PW
132842019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13285
13286 * macrocmd.c (extract_identifier): Return
13287 a gdb::unique_xmalloc_ptr<char> instead of a char *, and update
13288 callers.
13289
424eb552
JB
132902019-02-06 John Baldwin <jhb@FreeBSD.org>
13291
13292 * fbsd-nat.c (fbsd_fetch_cmdline): Join arguments with spaces.
13293
1688cb29
TT
132942019-02-05 Tom Tromey <tom@tromey.com>
13295
13296 * target.c (target_stack::unpush): Move assertion earlier.
13297
b5eba2d8
TT
132982019-01-30 Tom Tromey <tom@tromey.com>
13299
13300 PR python/23615:
13301 * python/python.c (execute_gdb_command): Use gdbpy_allow_threads.
13302 (gdbpy_parse_and_eval): Likewise.
13303 * python/python-internal.h (gdbpy_allow_threads): New class.
13304
7054e2ff
JB
133052019-01-28 John Baldwin <jhb@FreeBSD.org>
13306
13307 * aarch64-fbsd-tdep.c (aarch64_fbsd_gregmap)
13308 (aarch64_fbsd_fpregmap): Move earlier.
13309 (AARCH64_MCONTEXT_REG_SIZE, AARCH64_MCONTEXT_FPREG_SIZE): Delete.
13310 (aarch64_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
13311 instead of individual calls to trad_frame_set_reg_addr.
13312 * arm-fbsd-tdep.c (arm_fbsd_gregmap, arm_fbsd_vfpregmap): Move
13313 earlier.
13314 (ARM_MCONTEXT_REG_SIZE, ARM_MCONTEXT_VFP_REG_SIZE): Delete.
13315 (arm_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
13316 instead of individual calls to trad_frame_set_reg_addr.
13317
36c25ffa
AH
133182019-01-28 Alan Hayward <alan.hayward@arm.com>
13319
13320 * CONTRIBUTE: Replace contribution list with wiki link.
13321
a0707f3c
TT
133222019-01-25 Tom Tromey <tom@tromey.com>
13323
13324 * Makefile.in (GDB_CFLAGS): Don't add -I for common.
13325
0747795c
TT
133262019-01-25 Tom Tromey <tom@tromey.com>
13327
13328 * xtensa-linux-nat.c: Fix common/ includes.
13329 * xml-support.h: Fix common/ includes.
13330 * xml-support.c: Fix common/ includes.
13331 * x86-linux-nat.c: Fix common/ includes.
13332 * windows-nat.c: Fix common/ includes.
13333 * varobj.h: Fix common/ includes.
13334 * varobj.c: Fix common/ includes.
13335 * value.c: Fix common/ includes.
13336 * valops.c: Fix common/ includes.
13337 * utils.c: Fix common/ includes.
13338 * unittests/xml-utils-selftests.c: Fix common/ includes.
13339 * unittests/utils-selftests.c: Fix common/ includes.
13340 * unittests/unpack-selftests.c: Fix common/ includes.
13341 * unittests/tracepoint-selftests.c: Fix common/ includes.
13342 * unittests/style-selftests.c: Fix common/ includes.
13343 * unittests/string_view-selftests.c: Fix common/ includes.
13344 * unittests/scoped_restore-selftests.c: Fix common/ includes.
13345 * unittests/scoped_mmap-selftests.c: Fix common/ includes.
13346 * unittests/scoped_fd-selftests.c: Fix common/ includes.
13347 * unittests/rsp-low-selftests.c: Fix common/ includes.
13348 * unittests/parse-connection-spec-selftests.c: Fix common/
13349 includes.
13350 * unittests/optional-selftests.c: Fix common/ includes.
13351 * unittests/offset-type-selftests.c: Fix common/ includes.
13352 * unittests/observable-selftests.c: Fix common/ includes.
13353 * unittests/mkdir-recursive-selftests.c: Fix common/ includes.
13354 * unittests/memrange-selftests.c: Fix common/ includes.
13355 * unittests/memory-map-selftests.c: Fix common/ includes.
13356 * unittests/lookup_name_info-selftests.c: Fix common/ includes.
13357 * unittests/function-view-selftests.c: Fix common/ includes.
13358 * unittests/environ-selftests.c: Fix common/ includes.
13359 * unittests/copy_bitwise-selftests.c: Fix common/ includes.
13360 * unittests/common-utils-selftests.c: Fix common/ includes.
13361 * unittests/cli-utils-selftests.c: Fix common/ includes.
13362 * unittests/array-view-selftests.c: Fix common/ includes.
13363 * ui-file.c: Fix common/ includes.
13364 * tui/tui-io.c: Fix common/ includes.
13365 * tracepoint.h: Fix common/ includes.
13366 * tracepoint.c: Fix common/ includes.
13367 * tracefile-tfile.c: Fix common/ includes.
13368 * top.h: Fix common/ includes.
13369 * top.c: Fix common/ includes.
13370 * thread.c: Fix common/ includes.
13371 * target/waitstatus.h: Fix common/ includes.
13372 * target/waitstatus.c: Fix common/ includes.
13373 * target.h: Fix common/ includes.
13374 * target.c: Fix common/ includes.
13375 * target-memory.c: Fix common/ includes.
13376 * target-descriptions.c: Fix common/ includes.
13377 * symtab.h: Fix common/ includes.
13378 * symfile.c: Fix common/ includes.
13379 * stap-probe.c: Fix common/ includes.
13380 * spu-linux-nat.c: Fix common/ includes.
13381 * sparc-nat.c: Fix common/ includes.
13382 * source.c: Fix common/ includes.
13383 * solib.c: Fix common/ includes.
13384 * solib-target.c: Fix common/ includes.
13385 * ser-unix.c: Fix common/ includes.
13386 * ser-tcp.c: Fix common/ includes.
13387 * ser-pipe.c: Fix common/ includes.
13388 * ser-base.c: Fix common/ includes.
13389 * selftest-arch.c: Fix common/ includes.
13390 * s12z-tdep.c: Fix common/ includes.
13391 * rust-exp.y: Fix common/ includes.
13392 * rs6000-aix-tdep.c: Fix common/ includes.
13393 * riscv-tdep.c: Fix common/ includes.
13394 * remote.c: Fix common/ includes.
13395 * remote-notif.h: Fix common/ includes.
13396 * remote-fileio.h: Fix common/ includes.
13397 * remote-fileio.c: Fix common/ includes.
13398 * regcache.h: Fix common/ includes.
13399 * regcache.c: Fix common/ includes.
13400 * record-btrace.c: Fix common/ includes.
13401 * python/python.c: Fix common/ includes.
13402 * python/py-type.c: Fix common/ includes.
13403 * python/py-inferior.c: Fix common/ includes.
13404 * progspace.h: Fix common/ includes.
13405 * producer.c: Fix common/ includes.
13406 * procfs.c: Fix common/ includes.
13407 * proc-api.c: Fix common/ includes.
13408 * printcmd.c: Fix common/ includes.
13409 * ppc-linux-nat.c: Fix common/ includes.
13410 * parser-defs.h: Fix common/ includes.
13411 * osdata.c: Fix common/ includes.
13412 * obsd-nat.c: Fix common/ includes.
13413 * nat/x86-linux.c: Fix common/ includes.
13414 * nat/x86-linux-dregs.c: Fix common/ includes.
13415 * nat/x86-dregs.h: Fix common/ includes.
13416 * nat/x86-dregs.c: Fix common/ includes.
13417 * nat/ppc-linux.c: Fix common/ includes.
13418 * nat/mips-linux-watch.h: Fix common/ includes.
13419 * nat/mips-linux-watch.c: Fix common/ includes.
13420 * nat/linux-waitpid.c: Fix common/ includes.
13421 * nat/linux-ptrace.h: Fix common/ includes.
13422 * nat/linux-ptrace.c: Fix common/ includes.
13423 * nat/linux-procfs.c: Fix common/ includes.
13424 * nat/linux-personality.c: Fix common/ includes.
13425 * nat/linux-osdata.c: Fix common/ includes.
13426 * nat/linux-namespaces.c: Fix common/ includes.
13427 * nat/linux-btrace.h: Fix common/ includes.
13428 * nat/linux-btrace.c: Fix common/ includes.
13429 * nat/fork-inferior.c: Fix common/ includes.
13430 * nat/amd64-linux-siginfo.c: Fix common/ includes.
13431 * nat/aarch64-sve-linux-ptrace.c: Fix common/ includes.
13432 * nat/aarch64-linux.c: Fix common/ includes.
13433 * nat/aarch64-linux-hw-point.h: Fix common/ includes.
13434 * nat/aarch64-linux-hw-point.c: Fix common/ includes.
13435 * namespace.h: Fix common/ includes.
13436 * mips-linux-tdep.c: Fix common/ includes.
13437 * minsyms.c: Fix common/ includes.
13438 * mi/mi-parse.h: Fix common/ includes.
13439 * mi/mi-main.c: Fix common/ includes.
13440 * mi/mi-cmd-env.c: Fix common/ includes.
13441 * memrange.h: Fix common/ includes.
13442 * memattr.c: Fix common/ includes.
13443 * maint.h: Fix common/ includes.
13444 * maint.c: Fix common/ includes.
13445 * main.c: Fix common/ includes.
13446 * machoread.c: Fix common/ includes.
13447 * location.c: Fix common/ includes.
13448 * linux-thread-db.c: Fix common/ includes.
13449 * linux-nat.c: Fix common/ includes.
13450 * linux-fork.c: Fix common/ includes.
13451 * inline-frame.c: Fix common/ includes.
13452 * infrun.c: Fix common/ includes.
13453 * inflow.c: Fix common/ includes.
13454 * inferior.h: Fix common/ includes.
13455 * inferior.c: Fix common/ includes.
13456 * infcmd.c: Fix common/ includes.
13457 * inf-ptrace.c: Fix common/ includes.
13458 * inf-child.c: Fix common/ includes.
13459 * ia64-linux-nat.c: Fix common/ includes.
13460 * i387-tdep.c: Fix common/ includes.
13461 * i386-tdep.c: Fix common/ includes.
13462 * i386-linux-tdep.c: Fix common/ includes.
13463 * i386-linux-nat.c: Fix common/ includes.
13464 * i386-go32-tdep.c: Fix common/ includes.
13465 * i386-fbsd-tdep.c: Fix common/ includes.
13466 * i386-fbsd-nat.c: Fix common/ includes.
13467 * guile/scm-type.c: Fix common/ includes.
13468 * guile/guile.c: Fix common/ includes.
13469 * go32-nat.c: Fix common/ includes.
13470 * gnu-nat.c: Fix common/ includes.
13471 * gdbthread.h: Fix common/ includes.
13472 * gdbarch-selftests.c: Fix common/ includes.
13473 * gdb_usleep.c: Fix common/ includes.
13474 * gdb_select.h: Fix common/ includes.
13475 * gdb_bfd.c: Fix common/ includes.
13476 * gcore.c: Fix common/ includes.
13477 * fork-child.c: Fix common/ includes.
13478 * findvar.c: Fix common/ includes.
13479 * fbsd-nat.c: Fix common/ includes.
13480 * event-top.c: Fix common/ includes.
13481 * event-loop.c: Fix common/ includes.
13482 * dwarf2read.c: Fix common/ includes.
13483 * dwarf2loc.c: Fix common/ includes.
13484 * dwarf2-frame.c: Fix common/ includes.
13485 * dwarf-index-cache.c: Fix common/ includes.
13486 * dtrace-probe.c: Fix common/ includes.
13487 * disasm-selftests.c: Fix common/ includes.
13488 * defs.h: Fix common/ includes.
13489 * csky-tdep.c: Fix common/ includes.
13490 * cp-valprint.c: Fix common/ includes.
13491 * cp-support.h: Fix common/ includes.
13492 * cp-support.c: Fix common/ includes.
13493 * corelow.c: Fix common/ includes.
13494 * completer.h: Fix common/ includes.
13495 * completer.c: Fix common/ includes.
13496 * compile/compile.c: Fix common/ includes.
13497 * compile/compile-loc2c.c: Fix common/ includes.
13498 * compile/compile-cplus-types.c: Fix common/ includes.
13499 * compile/compile-cplus-symbols.c: Fix common/ includes.
13500 * command.h: Fix common/ includes.
13501 * cli/cli-dump.c: Fix common/ includes.
13502 * cli/cli-cmds.c: Fix common/ includes.
13503 * charset.c: Fix common/ includes.
13504 * build-id.c: Fix common/ includes.
13505 * btrace.h: Fix common/ includes.
13506 * btrace.c: Fix common/ includes.
13507 * breakpoint.h: Fix common/ includes.
13508 * breakpoint.c: Fix common/ includes.
13509 * ax.h:
13510 (enum agent_op): Fix common/ includes.
13511 * ax-general.c (struct aop_map): Fix common/ includes.
13512 * ax-gdb.c: Fix common/ includes.
13513 * auxv.c: Fix common/ includes.
13514 * auto-load.c: Fix common/ includes.
13515 * arm-tdep.c: Fix common/ includes.
13516 * arch/riscv.c: Fix common/ includes.
13517 * arch/ppc-linux-common.c: Fix common/ includes.
13518 * arch/i386.c: Fix common/ includes.
13519 * arch/arm.c: Fix common/ includes.
13520 * arch/arm-linux.c: Fix common/ includes.
13521 * arch/arm-get-next-pcs.c: Fix common/ includes.
13522 * arch/amd64.c: Fix common/ includes.
13523 * arch/aarch64.c: Fix common/ includes.
13524 * arch/aarch64-insn.c: Fix common/ includes.
13525 * arch-utils.c: Fix common/ includes.
13526 * amd64-windows-tdep.c: Fix common/ includes.
13527 * amd64-tdep.c: Fix common/ includes.
13528 * amd64-sol2-tdep.c: Fix common/ includes.
13529 * amd64-obsd-tdep.c: Fix common/ includes.
13530 * amd64-nbsd-tdep.c: Fix common/ includes.
13531 * amd64-linux-tdep.c: Fix common/ includes.
13532 * amd64-linux-nat.c: Fix common/ includes.
13533 * amd64-fbsd-tdep.c: Fix common/ includes.
13534 * amd64-fbsd-nat.c: Fix common/ includes.
13535 * amd64-dicos-tdep.c: Fix common/ includes.
13536 * amd64-darwin-tdep.c: Fix common/ includes.
13537 * agent.c: Fix common/ includes.
13538 * ada-lang.h: Fix common/ includes.
13539 * ada-lang.c: Fix common/ includes.
13540 * aarch64-tdep.c: Fix common/ includes.
13541
2f5c153e
TT
135422019-01-25 Tom Tromey <tom@tromey.com>
13543
13544 * common/create-version.sh: Use common/version.h.
13545
adc6a863
PA
135462019-01-24 Pedro Alves <palves@redhat.com>
13547
13548 * infrun.c (signal_stop, signal_print, signal_program)
13549 (signal_catch, signal_pass): Now arrays instead of pointers.
13550 (update_signals_program_target, do_target_resume)
13551 (signal_catch_update, handle_command, _initialize_infrun): Adjust.
13552 * linux-nat.c (linux_nat_target::pass_signals)
13553 (linux_nat_target::create_inferior, linux_nat_target::attach):
13554 Adjust.
13555 * linux-nat.h (linux_nat_target::pass_signals): Adjust.
13556 * nto-procfs.c (nto_procfs_target::pass_signals): Adjust.
13557 * procfs.c (procfs_target::pass_signals): Adjust.
13558 * record-full.c (record_full_target::resume): Adjust.
13559 * remote.c (remote_target::pass_signals)
13560 (remote_target::program_signals): Adjust.
13561 * target-debug.h (target_debug_print_signals): Now takes a
13562 gdb::array_view as parameter. Adjust.
13563 * target.h (target_ops) <pass_signals, program_signals>: Replace
13564 pointer and length parameters with gdb::array_view.
13565 (target_pass_signals, target_program_signals): Likewise.
13566 * target-delegates.c: Regenerate.
13567
3046d67a
PA
135682019-01-24 Pedro Alves <palves@redhat.com>
13569
13570 * common/forward-scope-exit.h
13571 (forward_scope_exit::forward_scope_exit): Pass arguments to
13572 m_bind_function directly, instead of creating a std::bind and
13573 copying that.
13574
353229bf
AH
135752019-01-24 Alan Hayward <alan.hayward@arm.com>
13576
13577 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
13578 for static members.
13579 (pass_in_v_vfp_candidate): Likewise.
13580
311dc83a
TT
135812019-01-23 Tom Tromey <tom@tromey.com>
13582 Pedro Alves <palves@redhat.com>
13583
13584 * regcache.c (class regcache_invalidator): Remove.
13585 (regcache::raw_write): Use make_scope_exit.
13586
296bd123
TT
135872019-01-23 Tom Tromey <tom@tromey.com>
13588
13589 * ui-out.h (class ui_out_emit_type): Update comment.
13590
979a0d13
TT
135912019-01-23 Tom Tromey <tom@tromey.com>
13592
13593 * infrun.c (fetch_inferior_event): Update comment.
13594
d238133d
TT
135952019-01-23 Tom Tromey <tom@tromey.com>
13596 Pedro Alves <palves@redhat.com>
13597
13598 * infrun.c (reinstall_readline_callback_handler_cleanup): Remove
13599 parameter.
13600 (fetch_inferior_event): Use SCOPE_EXIT.
13601
13602
9885e6bb
TT
136032019-01-23 Tom Tromey <tom@tromey.com>
13604 Pedro Alves <palves@redhat.com>
13605
13606 * infrun.c (disable_thread_events): Delete.
13607 (stop_all_threads): Use SCOPE_EXIT.
13608
286526c1
TT
136092019-01-23 Tom Tromey <tom@tromey.com>
13610 Pedro Alves <palves@redhat.com>
13611
13612 * symfile.c: Include forward-scope-exit.h.
13613 (clear_symtab_users_cleanup): Replace forward declaration with
13614 a FORWARD_SCOPE_EXIT.
13615 (syms_from_objfile_1): Use the forward_scope_exit and
13616 gdb::optional instead of cleanup_function.
13617 (reread_symbols): Use the forward_scope_exit instead of
13618 cleanup_function.
13619 (clear_symtab_users_cleanup): Remove function.
13620
1db93f14
TT
136212019-01-23 Tom Tromey <tom@tromey.com>
13622 Pedro Alves <palves@redhat.com>
13623
13624 * linux-nat.c: Include scope-exit.h.
13625 (cleanup_target_stop): Remove.
13626 (linux_nat_target::static_tracepoint_markers_by_strid): Use
13627 SCOPE_EXIT.
13628
2cc83d1e
TT
136292019-01-23 Tom Tromey <tom@tromey.com>
13630 Pedro Alves <palves@redhat.com>
13631
13632 * infcall.c (cleanup_delete_std_terminate_breakpoint): Remove.
13633 (call_function_by_hand_dummy): Use SCOPE_EXIT.
13634
694c6bf5
TT
136352019-01-23 Tom Tromey <tom@tromey.com>
13636 Andrew Burgess <andrew.burgess@embecosm.com>
13637 Pedro Alves <palves@redhat.com>
13638
13639 * infrun.c (fetch_inferior_event): Use scope_exit.
13640 * utils.h (make_bpstat_clear_actions_cleanup): Don't declare.
13641 * top.c (execute_command): Use scope_exit.
13642 * breakpoint.c (bpstat_do_actions): Use scope_exit.
13643 * utils.c (do_bpstat_clear_actions_cleanup)
13644 (make_bpstat_clear_actions_cleanup): Remove.
13645
4c41382a
TT
136462019-01-23 Tom Tromey <tom@tromey.com>
13647 Pedro Alves <palves@redhat.com>
13648
13649 * infrun.c: Include "common/scope-exit.h"
13650 (delete_just_stopped_threads_infrun_breakpoints_cleanup): Remove.
13651 (wait_for_inferior): Use SCOPE_EXIT.
13652 (fetch_inferior_event): Use scope_exit.
13653
89f8fb50
TT
136542019-01-23 Tom Tromey <tom@tromey.com>
13655 Pedro Alves <palves@redhat.com>
13656
13657 * breakpoint.c (create_breakpoint): Remove cleanup.
13658
5419bdae
TT
136592019-01-23 Tom Tromey <tom@tromey.com>
13660 Andrew Burgess <andrew.burgess@embecosm.com>
13661 Pedro Alves <palves@redhat.com>
13662
e587ef42
PA
136632019-01-23 Pedro Alves <palves@redhat.com>
13664
13665 * gdbarch-selftests.c (struct on_exit): Use SCOPE_EXIT.
13666
77f0e74c
PA
136672019-01-23 Pedro Alves <palves@redhat.com>
13668 Andrew Burgess <andrew.burgess@embecosm.com>
13669
13670 * gdbthread.h: Include "common/forward-scope-exit.h".
13671 (scoped_finish_thread_state): Redefine custom class in terms of
13672 forward_scope_exit.
13673
5b9b3e53
PA
136742019-01-23 Pedro Alves <palves@redhat.com>
13675 Andrew Burgess <andrew.burgess@embecosm.com>
13676
13677 * common/forward-scope-exit.h: New file.
13678
54b65c9b
PA
136792019-01-23 Pedro Alves <palves@redhat.com>
13680 Andrew Burgess <andrew.burgess@embecosm.com>
13681 Tom Tromey <tom@tromey.com>
13682
13683 * common/scope-exit.h: New file.
13684
cf08fb29
PA
136852019-01-23 Pedro Alves <palves@redhat.com>
13686
13687 * common/preprocessor.h (ESC): Rename to ...
13688 (ESC_PARENS): ... this.
13689 * common/valid-expr.h (CHECK_VALID_EXPR_1, CHECK_VALID_EXPR_2)
13690 (CHECK_VALID_EXPR_3, CHECK_VALID_EXPR_4): Adjust.
13691
ae73e2e2
TT
136922019-01-23 Tom Tromey <tom@tromey.com>
13693
13694 * language.h (class scoped_switch_to_sym_language_if_auto):
13695 Initialize m_lang in both cases.
13696
6594e122
AH
136972019-01-23 Alan Hayward <alan.hayward@arm.com>
13698
13699 * nat/aarch64-linux.c (aarch64_linux_new_thread): Replace XNEW
13700 with XCNEW.
13701
a7c9855d
TT
137022019-01-22 Tom Tromey <tom@tromey.com>
13703
13704 * corelow.c: Do not include sys/file.h.
13705
93cc1d53
TT
137062019-01-22 Tom Tromey <tom@tromey.com>
13707
13708 * tui/tui-wingeneral.h: Include gdb_curses.h.
13709
38561778
TT
137102019-01-22 Tom Tromey <tom@tromey.com>
13711
13712 * source-cache.h (class source_cache) <get_source_lines,
13713 get_plain_source_lines, extract_lines>: Rename "lines" parameter.
13714
37b3ab5b
TT
137152019-01-22 Tom Tromey <tom@tromey.com>
13716
13717 * remote-fileio.h (struct remote_target): Declare.
13718
3fabc016
TT
137192019-01-22 Tom Tromey <tom@tromey.com>
13720
13721 * python/py-arch.c: Do not include py-ref.h.
13722 * python/py-bpevent.c: Do not include py-ref.h.
13723 * python/py-cmd.c: Do not include py-ref.h.
13724 * python/py-continueevent.c: Do not include py-ref.h.
13725 * python/py-event.h: Do not include py-ref.h.
13726 * python/py-evtregistry.c: Do not include py-ref.h.
13727 * python/py-finishbreakpoint.c: Do not include py-ref.h.
13728 * python/py-frame.c: Do not include py-ref.h.
13729 * python/py-framefilter.c: Do not include py-ref.h.
13730 * python/py-function.c: Do not include py-ref.h.
13731 * python/py-infevents.c: Do not include py-ref.h.
13732 * python/py-linetable.c: Do not include py-ref.h.
13733 * python/py-objfile.c: Do not include py-ref.h.
13734 * python/py-param.c: Do not include py-ref.h.
13735 * python/py-prettyprint.c: Do not include py-ref.h.
13736 * python/py-progspace.c: Do not include py-ref.h.
13737 * python/py-symbol.c: Do not include py-ref.h.
13738 * python/py-symtab.c: Do not include py-ref.h.
13739 * python/py-type.c: Do not include py-ref.h.
13740 * python/py-unwind.c: Do not include py-ref.h.
13741 * python/py-utils.c: Do not include py-ref.h.
13742 * python/py-value.c: Do not include py-ref.h.
13743 * python/py-varobj.c: Do not include py-ref.h.
13744 * python/py-xmethods.c: Do not include py-ref.h.
13745 * python/python.c: Do not include py-ref.h.
13746 * varobj.c: Do not include py-ref.h.
13747
6b4d7774
TT
137482019-01-22 Tom Tromey <tom@tromey.com>
13749
13750 * objfiles.h (struct objfile_per_bfd_storage): Use "struct"
13751 keyword for bcache.
13752
7af7e9b5
TT
137532019-01-22 Tom Tromey <tom@tromey.com>
13754
13755 * compile/compile-cplus-types.c: Remove a comment by #include.
13756
951d1049
TT
137572019-01-22 Tom Tromey <tom@tromey.com>
13758
13759 * compile/gcc-c-plugin.h: Include compile-internal.h.
13760
d65d5705
TT
137612019-01-22 Tom Tromey <tom@tromey.com>
13762
13763 * stabsread.c (EXTERN): Do not define.
13764 (symnum, next_symbol_text_func, processing_gcc_compilation)
13765 (within_function, global_sym_chain, global_stabs)
13766 (previous_stab_code, this_object_header_files)
13767 (n_this_object_header_files)
13768 (n_allocated_this_object_header_files): Define.
13769 * stabsread.h (EXTERN): Never define. Use "extern".
13770
b6fb1ee5
PW
137712019-01-22 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13772
13773 * event-top.c (handle_line_of_input): use unique_xmalloc_ptr for
13774 history_value.
13775
be6d4f74
TT
137762019-01-21 Tom Tromey <tom@tromey.com>
13777
13778 * ui-out.c: Fix includes.
13779 * tui/tui-source.c: Fix includes.
13780 * target.c: Fix includes.
13781 * remote.c: Fix includes.
13782 * regcache.c: Fix includes.
13783 * python/py-block.c: Fix includes.
13784 * printcmd.c: Fix includes.
13785 * or1k-tdep.c: Fix includes.
13786 * mi/mi-main.c: Fix includes.
13787 * m32r-tdep.c: Fix includes.
13788 * csky-tdep.c: Fix includes.
13789 * compile/compile-cplus-types.c: Fix includes.
13790 * cli/cli-interp.c: Fix includes.
13791
73021deb
AH
137922019-01-21 Alan Hayward <alan.hayward@arm.com>
13793
13794 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
13795 for padding.
13796
7932255d
TT
137972019-01-16 Tom Tromey <tom@tromey.com>
13798
13799 * objfiles.h (struct minimal_symbol_iterator): Rename. Move
13800 earlier.
13801 (struct objfile) <msymbols_range>: Move from top level.
13802 <msymbols>: New method.
13803 (class objfile_msymbols): Remove.
13804 * symtab.c (default_collect_symbol_completion_matches_break_on):
13805 Update.
13806 * symmisc.c (dump_msymbols): Update.
13807 * stabsread.c (scan_file_globals): Update.
13808 * objc-lang.c (info_selectors_command, info_classes_command)
13809 (find_methods): Update.
13810 * minsyms.c (find_solib_trampoline_target): Update.
13811 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Update.
13812 * coffread.c (coff_symfile_read): Update.
13813 * ada-lang.c (ada_lookup_simple_minsym)
13814 (ada_collect_symbol_completion_matches): Update.
13815
604b1bfb
TT
138162019-01-16 Tom Tromey <tom@tromey.com>
13817
13818 * objfiles.h (class objfile_msymbols) <iterator>: Change argument
13819 type. Remove no-argument constructor.
13820 <iterator::operator++>: Simplify.
13821 <begin>: Update.
13822 <end>: Use minimal_symbol_count.
13823
f252c6d5
TT
138242019-01-16 Tom Tromey <tom@tromey.com>
13825
13826 * objfiles.h (struct objfile) <psymtabs>: New method.
13827 (class objfile_psymtabs): Remove.
13828 * psymtab.h (class psymtab_storage) <partial_symtab_range>: New
13829 typedef.
13830 <range>: New method.
13831 (require_partial_symbols): Change return type.
13832 * psymtab.c (require_partial_symbols)
13833 (psym_expand_symtabs_matching): Update.
13834 * mdebugread.c (parse_partial_symbols): Update.
13835 * dbxread.c (dbx_end_psymtab): Update.
13836
b669c953
TT
138372019-01-15 Tom Tromey <tom@tromey.com>
13838
13839 * symtab.c (lookup_objfile_from_block)
13840 (lookup_symbol_in_objfile_symtabs)
13841 (basic_lookup_transparent_type_1, find_pc_sect_compunit_symtab)
13842 (find_line_symtab, info_sources_command)
13843 (default_collect_symbol_completion_matches_break_on)
13844 (make_source_files_completion_list): Update.
13845 * symmisc.c (print_objfile_statistics, dump_objfile)
13846 (maintenance_print_symbols, maintenance_info_symtabs)
13847 (maintenance_check_symtabs, maintenance_info_line_tables):
13848 Update.
13849 * source.c (select_source_symtab)
13850 (forget_cached_source_info_for_objfile): Update.
13851 * objfiles.h (class objfile_compunits): Remove.
13852 (struct objfile) <compunits_range>: New typedef.
13853 (compunits): New method.
13854 * objfiles.c (objfile_relocate1): Update.
13855 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
13856 * maint.c (count_symtabs_and_blocks): Update.
13857 * linespec.c (iterate_over_all_matching_symtabs): Update.
13858 * cp-support.c (add_symbol_overload_list_qualified): Update.
13859 * coffread.c (coff_symtab_read): Update.
13860 * ada-lang.c (add_nonlocal_symbols)
13861 (ada_collect_symbol_completion_matches)
13862 (ada_add_global_exceptions): Update.
13863
7e955d83
TT
138642019-01-15 Tom Tromey <tom@tromey.com>
13865
13866 * progspace.h (program_space) <objfiles_safe_range>: New
13867 typedef.
13868 <objfiles_safe>: New method.
13869 * objfiles.h (class all_objfiles_safe): Remove.
13870 * objfiles.c (free_all_objfiles, objfile_purge_solibs): Update.
13871 * jit.c (jit_inferior_exit_hook): Update.
13872
2030c079
TT
138732019-01-17 Tom Tromey <tom@tromey.com>
13874
13875 * progspace.h (program_space) <objfiles_range>: New typedef.
13876 <objfiles>: New method.
13877 <objfiles_head>: Rename from objfiles.
13878 (object_files): Update.
13879 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Update.
13880 * guile/scm-pretty-print.c
13881 (ppscm_find_pretty_printer_from_objfiles): Update.
13882 * guile/scm-objfile.c (gdbscm_objfiles): Update.
13883 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers):
13884 Update.
13885 * python/py-progspace.c (pspy_get_objfiles): Update.
13886 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
13887 Update.
13888 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
13889 (objfpy_lookup_objfile_by_build_id): Update.
13890 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
13891 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
13892 Update.
13893 * symtab.c (iterate_over_symtabs, matching_obj_sections)
13894 (expand_symtab_containing_pc, lookup_objfile_from_block)
13895 (lookup_static_symbol, basic_lookup_transparent_type)
13896 (find_pc_sect_compunit_symtab, find_symbol_at_address)
13897 (find_line_symtab, info_sources_command)
13898 (default_collect_symbol_completion_matches_break_on)
13899 (make_source_files_completion_list, find_main_name): Update.
13900 * symmisc.c (print_symbol_bcache_statistics)
13901 (print_objfile_statistics, maintenance_print_symbols)
13902 (maintenance_print_msymbols, maintenance_print_objfiles)
13903 (maintenance_info_symtabs, maintenance_check_symtabs)
13904 (maintenance_expand_symtabs, maintenance_info_line_tables):
13905 Update.
13906 * symfile.c (remove_symbol_file_command, overlay_invalidate_all)
13907 (find_pc_overlay, find_pc_mapped_section, list_overlays_command)
13908 (map_overlay_command, unmap_overlay_command)
13909 (simple_overlay_update, expand_symtabs_matching)
13910 (map_symbol_filenames): Update.
13911 * symfile-debug.c (set_debug_symfile): Update.
13912 * spu-tdep.c (spu_overlay_update, spu_objfile_from_frame):
13913 Update.
13914 * source.c (select_source_symtab, forget_cached_source_info):
13915 Update.
13916 * solib.c (solib_read_symbols): Update.
13917 * solib-spu.c (append_ocl_sos): Update.
13918 * psymtab.c (maintenance_print_psymbols)
13919 (maintenance_info_psymtabs, maintenance_check_psymtabs): Update.
13920 * probe.c (parse_probes_in_pspace, find_probe_by_pc): Update.
13921 * printcmd.c (info_symbol_command): Update.
13922 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created):
13923 Update.
13924 * objfiles.h (class all_objfiles): Remove.
13925 * objfiles.c (have_partial_symbols, have_full_symbols)
13926 (have_minimal_symbols, qsort_cmp, update_section_map)
13927 (shared_objfile_contains_address_p)
13928 (default_iterate_over_objfiles_in_search_order): Update.
13929 * objc-lang.c (info_selectors_command, info_classes_command)
13930 (find_methods): Update.
13931 * minsyms.c (find_solib_trampoline_target): Update.
13932 * maint.c (maintenance_info_sections)
13933 (maintenance_translate_address, count_symtabs_and_blocks):
13934 Update.
13935 * main.c (captured_main_1): Update.
13936 * linux-thread-db.c (try_thread_db_load_from_pdir)
13937 (has_libpthread): Update.
13938 * linespec.c (iterate_over_all_matching_symtabs)
13939 (search_minsyms_for_name): Update.
13940 * jit.c (jit_find_objf_with_entry_addr): Update.
13941 * hppa-tdep.c (find_unwind_entry)
13942 (hppa_lookup_stub_minimal_symbol): Update.
13943 * gcore.c (gcore_create_callback, objfile_find_memory_regions):
13944 Update.
13945 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
13946 (elf_gnu_ifunc_resolve_by_got): Update.
13947 * dwarf2-frame.c (dwarf2_frame_find_fde): Update.
13948 * dwarf-index-write.c (save_gdb_index_command): Update.
13949 * cp-support.c (add_symbol_overload_list_qualified): Update.
13950 * breakpoint.c (create_overlay_event_breakpoint)
13951 (create_longjmp_master_breakpoint)
13952 (create_std_terminate_master_breakpoint)
13953 (create_exception_master_breakpoint): Update.
13954 * blockframe.c (find_pc_partial_function): Update.
13955 * ada-lang.c (ada_lookup_simple_minsym, add_nonlocal_symbols)
13956 (ada_collect_symbol_completion_matches)
13957 (ada_add_global_exceptions): Update.
13958
776489e0
TT
139592019-01-17 Tom Tromey <tom@tromey.com>
13960
13961 * solib-target.c (lm_info_target_p): Remove typedef. Don't
13962 declare VEC.
13963 (solib_target_parse_libraries): Change return type.
13964 (library_list_start_segment, library_list_start_section)
13965 (library_list_end_library, library_list_start_library); Update.
13966 (solib_target_free_library_list): Remove.
13967 (solib_target_parse_libraries): Remove cleanup. Change return
13968 type.
13969 (solib_target_current_sos): Update.
13970
6471e7d2
TT
139712019-01-17 Tom Tromey <tromey@bapiya>
13972
13973 * valprint.c: Replace "the the" with "the".
13974 * symtab.c: Replace "the the" with "the".
13975 * solib.c: Replace "the the" with "the".
13976 * solib-dsbt.c: Replace "the the" with "the".
13977 * linespec.c: Replace "the the" with "the".
13978 * dwarf2loc.h: Replace "the the" with "the".
13979 * amd64-windows-tdep.c: Replace "the the" with "the".
13980 * aarch64-tdep.c: Replace "the the" with "the".
13981
c24bdb02
KS
139822019-01-16 Keith Seitz <keiths@redhat.com>
13983
13984 PR gdb/23773
13985 * dwarf2read.c (dwarf2_cu) <ancestor>: New field.
13986 <builder>: Rename to ..
13987 <m_builder>: ... this and make private.
13988 (dwarf2_cu::get_builder): New method. Change all users of
13989 `builder' to use this method.
13990 (dwarf2_start_symtab): Move to ...
13991 (dwarf2_cu::start_symtab): ... here. Update all callers
13992 (setup_type_unit_groups): Move to ...
13993 (dwarf2_cu::setup_type_unit_groups): ... here. Update all
13994 callers.
13995 (dwarf2_cu::reset_builder): New method.
13996 (process_full_compunit, process_full_type_unit): Use
13997 dwarf2_cu::reset_builder.
13998 (follow_die_offset): Record the ancestor CU if it is different
13999 from the followed DIE's CU.
14000 (follow_die_sig_1): Likewise.
14001
8d64371b
TT
140022019-01-15 Tom Tromey <tom@tromey.com>
14003
14004 * remote.c (class remote_state) <buf>: Now a char_vector.
14005 <buf_size>: Remove.
14006 (remote_target::getpkt): Change type of buf. Remove sizeof_buf
14007 parameter.
14008 (remote_target::getpkt_or_notif_sane_1)
14009 (remote_target::getpkt_sane)
14010 (remote_target::getpkt_or_notif_sane): Likewise.
14011 (class remote_target) <putpkt>: New overload.
14012 (remote_target::read_frame): Change type of "buf_p". Remove
14013 sizeof_p parameter.
14014 (packet_ok): New overload.
14015 (packet_check_result): New overload.
14016 Update all uses.
14017
bb277751
TT
140182019-01-14 Tom Tromey <tom@tromey.com>
14019
14020 * remote-notif.c (handle_notification, remote_notif_ack)
14021 (remote_notif_parse): Make "buf" const.
14022 * remote-notif.h (struct notif_client) <parse, ack>: Make "buf"
14023 const.
14024 (remote_notif_parse, remote_notif_ack, handle_notification):
14025 Likewise.
14026 * remote.c (remote_notif_stop_parse): Make "buf" const.
14027 (remote_target::remote_parse_stop_reply): Make "buf" const.
14028 (remote_notif_stop_ack): Make "buf" const.
14029
05be00a8
TT
140302019-01-14 Tom Tromey <tom@tromey.com>
14031
14032 * remote.c (remote_console_output): Make parameter const.
14033
491adeca
TT
140342019-01-14 Tom Tromey <tom@tromey.com>
14035
14036 * target-debug.h (target_debug_print_signals): Constify.
14037 * nto-procfs.c (nto_procfs_target::pass_signals): Update.
14038 * procfs.c (procfs_target::pass_signals): Update.
14039 * linux-nat.c (linux_nat_target::pass_signals): Update.
14040 * linux-nat.h (class linux_nat_target) <pass_signals>: Update.
14041 * target-delegates.c: Rebuild.
14042 * remote.c (remote_target::program_signals): Update.
14043 (remote_target::pass_signals): Update.
14044 * target.c (target_pass_signals): Constify argument.
14045 (target_program_signals): Likewise.
14046 * target.h (struct target_ops) <pass_signals, program_signals>:
14047 Constify argument.
14048 (target_pass_signals, target_program_signals): Constify argument.
14049
bbd94648
TT
140502019-01-14 Tom Tromey <tom@tromey.com>
14051
14052 PR tui/28819:
14053 * tui/tui-io.c (gdb_wgetch): Print \r when needed.
14054
6f072a10
PFC
140552019-01-14 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
14056
14057 * ppc-tdep.h (struct gdbarch_tdep) <ppc_v0_alias_regnum>: New
14058 field.
14059 * rs6000-tdep.c: Include reggroups.h.
14060 (IS_V_ALIAS_PSEUDOREG): Define.
14061 (rs6000_register_name): Return names for the "vX" aliases.
14062 (rs6000_pseudo_register_type): Return type for the "vX" aliases.
14063 (rs6000_pseudo_register_reggroup_p): Restore. Handle "vX"
14064 aliases. Call default_register_reggroup_p for all other
14065 pseudo-registers.
14066 (v_alias_pseudo_register_read, v_alias_pseudo_register_write):
14067 New functions.
14068 (rs6000_pseudo_register_read, rs6000_pseudo_register_write):
14069 Handle "vX" aliases.
14070 (v_alias_pseudo_register_collect): New function.
14071 (rs6000_ax_pseudo_register_collect): Handle "vX" aliases.
14072 (rs6000_gdbarch_init): Initialize "vX" aliases as
14073 pseudo-registers. Restore registration of
14074 rs6000_pseudo_register_reggroup_p with
14075 set_tdesc_pseudo_register_reggroup_p.
14076
1a782351
MF
140772019-01-13 Max Filippov <jcmvbkbc@gmail.com>
14078
14079 * xtensa-linux-tdep.c (xtensa_linux_init_abi): Update
14080 tdep->num_pseudo_regs. Add calls to set_gdbarch_num_regs and
14081 set_gdbarch_num_pseudo_regs.
14082
d73cff18
PW
140832019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14084
14085 * cli/cli-style.h (class cli_style_option): <add_setshow_commands>
14086 Remove arg prefixname, add do_set and do_show.
14087 Add member functions set_list and show_list.
14088 * cli/cli-style.c (class cli_style_option): Update accordingly.
14089 (style_set_list): Move to file scope.
14090 (style_show_list): Likewise.
14091 (set_style): Call help_list.
14092 (show_style): Call cmd_show_list.
14093 (_initialize_cli_style): New macro STYLE_ADD_SETSHOW_COMMANDS.
14094 Update to use the new macro.
14095
60a90376
JB
140962019-10-12 Joel Brobecker <brobecker@adacore.com>
14097
14098 * ada-lang.c (_initialize_ada_language): Expand the help text
14099 for the "catch exception" command.
14100
9d7c67bf
PW
141012019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14102
14103 * symtab.c (matching_obj_sections): Initialize obj,
14104 declare it closer to its usage.
14105
7cf47dc4
TT
141062019-01-10 Tom Tromey <tom@tromey.com>
14107
14108 * thread-iter.h (inf_threads_iterator): Use next_iterator.
14109 (basic_inf_threads_range): Remove.
14110 (inf_threads_range, inf_non_exited_threads_range)
14111 (safe_inf_threads_range): Use next_adapter.
14112
d3cb6808
KS
141132019-01-10 Keith Seitz <keiths@redhat.com>
14114
14115 PR gdb/23712
14116 PR symtab/23010
14117 * dwarf2read.c (dw2_add_symbol_to_list): Remove.
14118 (fixup_go_packaging, new_symbol): Use add_symbol_to_list.
14119
63a20375
KS
141202019-01-10 Keith Seitz <keiths@redhat.com>
14121
14122 PR gdb/23712
14123 PR symtab/23010
14124 * dictionary.c (pending_to_vector): Remove.
14125 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
14126 Remove _1 suffix, replacing functions of the same name. Update
14127 all callers.
14128 (dict_create_hashed, dict_create_hashed_expandable)
14129 (dict_create_linear, dict_create_linear_expandable, dict_free)
14130 (dict_add_symbol, dict_add_pending, dict_size, dict_empty):
14131 Make functions static.
14132
b026f593
KS
141332019-01-10 Keith Seitz <keiths@redhat.com>
14134
14135 PR gdb/23712
14136 PR symtab/23010
14137 * dictionary.h (struct dictionary): Replace declaration with
14138 multidictionary.
14139 (dict_create_hashed, dict_create_hashed_expandable)
14140 (dict_create_linear, dict_create_linear_expandable)
14141 (dict_free, dict_add_symbol, dict_add_pending, dict_empty)
14142 (dict_iterator_first, dict_iterator_next, dict_iter_match_first)
14143 (dict_iter_match_next, dict_size): Rename to "mdict_" versions
14144 taking multidictionary argument.
14145 [ALL_DICT_SYMBOLS]: Update for multidictionary.
14146 * block.h (struct block) <dict>: Change to multidictionary
14147 and rename `multidict'.
14148 * block.c, buildsym.c, jit.c, mdebugread.c, objfiles.c,
14149 symmisc.c: Update all dictionary references to multidictionary.
14150
c7748ee9
KS
141512019-01-10 Keith Seitz <keiths@redhat.com>
14152
14153 PR gdb/23712
14154 PR symtab/23010
14155 * dictionary.c: Include unordered_map.
14156 (pending_to_vector): New function.
14157 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
14158 Rewrite the non-"_1" functions to take vector instead
14159 of linked list.
14160 (dict_create_hashed, dict_create_linear, dict_add_pending): Use the
14161 "new" _1 versions of the same name.
14162 (multidictionary): Define.
14163 (std::hash<enum language): New definition.
14164 (collate_pending_symbols_by_language, mdict_create_hashed)
14165 (mdict_create_hashed_expandable, mdict_create_linear)
14166 (mdict_create_linear_expandable, mdict_free)
14167 (find_language_dictionary, create_new_language_dictionary)
14168 (mdict_add_symbol, mdict_add_pending, mdict_iterator_first)
14169 (mdict_iterator_next, mdict_iter_match_first, mdict_iter_match_next)
14170 (mdict_size, mdict_empty): New functions.
14171 * dictionary.h (mdict_iterator): Define.
14172
67aa1f3c
PA
141732019-01-10 Pedro Alves <palves@redhat.com>
14174
14175 * breakpoint.c (read_uploaded_action)
14176 (create_tracepoint_from_upload): Adjust to use
14177 gdb::unique_xmalloc_ptr.
14178 * ctf.c (ctf_write_uploaded_tp):
14179 (SET_ARRAY_FIELD): Use emplace_back.
14180 (SET_STRING_FIELD): Adjust to use gdb::unique_xmalloc_ptr.
14181 * tracefile-tfile.c (tfile_write_uploaded_tp):
14182 * tracepoint.c (parse_tracepoint_definition): Adjust to use
14183 gdb::unique_xmalloc_ptr.
14184 * tracepoint.h (struct uploaded_tp) <cond, actions, step_actions,
14185 at_string, cond_string, cmd_strings>: Replace char pointers
14186 with gdb::unique_xmalloc_ptr.
14187
2f667667
PA
141882019-01-10 Pedro Alves <palves@redhat.com>
14189
14190 * solib-target.c (library_list_start_library): Don't xstrdup name.
14191
36cb7237
PA
141922019-01-10 Pedro Alves <palves@redhat.com>
14193
14194 * mdebugread.c (parse_partial_symbols): Use
14195 gdb::unique_xmalloc_ptr to manage heap-allocated 'stabsstring'.
14196
da584958
AB
141972019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
14198
14199 * linux-fork.c (scoped_switch_fork_info)
14200 <~scoped_switch_fork_info>: Fix incorrect variable name.
14201
1ef8573c
AB
142022019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
14203
14204 * linux-fork.c (scoped_switch_fork_info)
14205 <scoped_switch_fork_info>: Make explicit.
14206 <~scoped_switch_fork_info>: Wrap core in TRY/CATCH.
14207
8d7bcccb
TT
142082019-01-10 Tom Tromey <tom@tromey.com>
14209
14210 * objfiles.h (objfile::reset_psymtabs): Update.
14211 * objfiles.c (objfile::objfile): Update.
14212 * psymtab.h (psymtab_storage::obstack): Update.
14213 (psymtab_storage::m_obstack): Use gdb::optional.
14214 (class psymtab_storage): Update comment. Remove objfile
14215 parameter.
14216 * psymtab.c (psymtab_storage::psymtab_storage): Update.
14217
b596a3c7
TT
142182019-01-10 Tom Tromey <tom@tromey.com>
14219
14220 * psymtab.h (psymtab_storage::allocate_psymtab): New method.
14221 <free_psymtabs>: Now private.
14222 * psymtab.c (psymtab_storage::allocate_psymtab): Implement.
14223 (allocate_psymtab): Use new method.
14224
a9342b62
TT
142252019-01-10 Tom Tromey <tom@tromey.com>
14226
14227 * xcoffread.c (xcoff_end_psymtab): Use allocate_dependencies.
14228 * psymtab.h (psymtab_storage::allocate_dependencies): New method.
14229 * mdebugread.c (parse_partial_symbols): Use
14230 allocate_dependencies.
14231 * dwarf2read.c (dwarf2_create_include_psymtab): Use
14232 allocate_dependencies.
14233 (process_psymtab_comp_unit_reader)
14234 (build_type_psymtab_dependencies): Likewise.
14235 * dbxread.c (dbx_end_psymtab): Use allocate_dependencies.
14236
5af70966
TT
142372019-01-10 Tom Tromey <tom@tromey.com>
14238
14239 * psymtab.c (add_psymbol_to_bcache): Pass psymtab obstack to
14240 PSYMBOL_SET_LANGUAGE.
14241 (allocate_psymtab): Allocate psymtab on the psymtab obstack.
14242
5923a04c
TT
142432019-01-10 Tom Tromey <tom@tromey.com>
14244
14245 * psymtab.h (psymtab_storage::obstack): New method.
14246 <m_obstack>: Rename from obstack; now private.
14247 * psymtab.c (psymtab_storage): Update.
14248 * dwarf2read.c (create_addrmap_from_index)
14249 (create_addrmap_from_aranges, dwarf2_build_psymtabs_hard):
14250 Update.
14251
6d6a12bf
TT
142522019-01-10 Tom Tromey <tom@tromey.com>
14253
14254 * symfile.c (reread_symbols): Call objfile->reset_psymtabs.
14255 * objfiles.h (objfile::reset_psymtabs): New method.
14256
d320c2b5
TT
142572019-01-10 Tom Tromey <tom@tromey.com>
14258
14259 * symmisc.c (print_symbol_bcache_statistics): Update.
14260 (print_objfile_statistics): Update.
14261 * symfile.c (reread_symbols): Update.
14262 * psymtab.h (class psymtab_storage): New.
14263 * psymtab.c (psymtab_storage): New constructor.
14264 (~psymtab_storage): New destructor.
14265 (require_partial_symbols): Update.
14266 (ALL_OBJFILE_PSYMTABS_REQUIRED): Rewrite.
14267 (find_pc_sect_psymtab, find_pc_sect_psymbol)
14268 (match_partial_symbol, lookup_partial_symbol, dump_psymtab)
14269 (psym_dump, recursively_search_psymtabs, psym_has_symbols)
14270 (psym_find_compunit_symtab_by_address, sort_pst_symbols)
14271 (start_psymtab_common, end_psymtab_common)
14272 (add_psymbol_to_bcache, add_psymbol_to_list, init_psymbol_list)
14273 (allocate_psymtab): Update.
14274 (psymtab_storage::discard_psymtab): Rename from discard_psymtab.
14275 Update.
14276 (dump_psymtab_addrmap, maintenance_print_psymbols)
14277 (maintenance_check_psymtabs): Update.
14278 (class objfile_psymtabs): Move to objfiles.h.
14279 * psympriv.h (discard_psymtab): Now inline.
14280 (psymtab_discarder::psymtab_discarder): Update.
14281 (psymtab_discarder::~psymtab_discarder): Update.
14282 (ALL_OBJFILE_PSYMTABS): Rewrite.
14283 * objfiles.h (struct objfile) <psymtabs, psymtabs_addrmap,
14284 free_psymtabs, psymbol_cache, global_psymbols, static_psymbols>:
14285 Remove fields.
14286 <partial_symtabs>: New field.
14287 (class objfile_psymtabs): Move from psymtab.h. Update.
14288 * objfiles.c (objfile::objfile): Initialize partial_symtabs, not
14289 psymbol_cache.
14290 (objfile::~objfile): Don't destroy psymbol_cache.
14291 * mdebugread.c (parse_partial_symbols): Update.
14292 * dwarf2read.c (create_addrmap_from_index)
14293 (create_addrmap_from_aranges, dw2_find_pc_sect_compunit_symtab)
14294 (process_psymtab_comp_unit_reader, dwarf2_build_psymtabs_hard)
14295 (add_partial_subprogram, dwarf2_ranges_read): Update.
14296 * dwarf-index-write.c (write_address_map)
14297 (write_one_signatured_type, recursively_write_psymbols)
14298 (class debug_names, class debug_names, write_psymtabs_to_index):
14299 Update.
14300
1d94a5a3
TT
143012019-01-10 Tom Tromey <tom@tromey.com>
14302
14303 * symtab.h (SYMBOL_SET_NAMES): Update.
14304 (symbol_set_names): Update.
14305 (MSYMBOL_SET_NAMES): Update.
14306 * symtab.c (symbol_set_names): Change argument to be an
14307 objfile_per_bfd_storage.
14308 * psymtab.c (add_psymbol_to_bcache): Update.
14309 * psympriv.h (PSYMBOL_SET_NAMES): Take per_bfd argument.
14310
0f14768a
TT
143112019-01-10 Tom Tromey <tom@tromey.com>
14312
14313 * symtab.c (create_demangled_names_hash): Change argument to be an
14314 objfile_per_bfd_storage.
14315 (symbol_set_names): Update.
14316
6eee24ce
TT
143172019-01-10 Tom Tromey <tom@tromey.com>
14318
14319 * xcoffread.c (xcoff_initial_scan): Unconditionally call
14320 init_psymbol_list.
14321 * psymtab.c (init_psymbol_list): Do nothing if already called.
14322 * psympriv.h (init_psymbol_list): Add comment.
14323 * dwarf2read.c (dwarf2_build_psymtabs): Unconditionally call
14324 init_psymbol_list.
14325 * dbxread.c (dbx_symfile_read): Unconditionally call
14326 init_psymbol_list.
14327
75aedd27
TT
143282019-01-10 Tom Tromey <tom@tromey.com>
14329
14330 * xcoffread.c (scan_xcoff_symtab): Update.
14331 * psymtab.c (add_psymbol_to_list): Replace "list" parameter with
14332 "where".
14333 * mdebugread.c (parse_partial_symbols)
14334 (handle_psymbol_enumerators): Update.
14335 * dwarf2read.c (add_partial_symbol, load_partial_dies): Update.
14336 * dbxread.c (read_dbx_symtab): Update.
14337 * psympriv.h (psymbol_placement): New enum.
14338 (add_psymbol_to_list): Update.
14339
939652a5
TT
143402019-01-10 Tom Tromey <tom@tromey.com>
14341
14342 * xcoffread.c (xcoff_start_psymtab): Remove global_psymbols and
14343 static_psymbols parameters.
14344 (scan_xcoff_symtab): Update.
14345 * psymtab.c (start_psymtab_common): Remove global_psymbols and
14346 static_psymbols parameters.
14347 * psympriv.h (start_psymtab_common): Update.
14348 * mdebugread.c (parse_partial_symbols): Update.
14349 * dwarf2read.c (create_partial_symtab): Update.
14350 * dbxread.c (read_dbx_symtab): Update.
14351 (start_psymtab): Remove global_psymbols and static_psymbols
14352 parameters.
14353
baa62830
TT
143542019-01-10 Tom Tromey <tom@tromey.com>
14355
14356 * xcoffread.c (xcoff_end_psymtab): Remove some initializations.
14357 * psymtab.c (allocate_psymtab): Add comment.
14358 * psympriv.h (allocate_psymtab): Add comment.
14359 * dwarf2read.c (dwarf2_create_include_psymtab): Remove some
14360 initializations.
14361 * dbxread.c (dbx_end_psymtab): Remove some initializations.
14362
0e8f53ba
TT
143632019-01-10 Tom Tromey <tom@tromey.com>
14364
14365 * symfile.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
14366 Don't declare.
14367 * mipsread.c: Include mdebugread.h.
14368 * mdebugread.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
14369 Declare.
14370 * elfread.c: Include mdebugread.h.
14371
b22a7c6a
TT
143722019-01-09 Tom Tromey <tom@tromey.com>
14373
14374 * dbxread.c (dbx_end_psymtab): Use objfile_psymtabs.
14375 * mdebugread.c (parse_partial_symbols): Use objfile_psymtabs.
14376 * psymtab.c (ALL_OBJFILE_PSYMTABS_REQUIRED): Remove.
14377 (psym_map_symtabs_matching_filename, find_pc_sect_psymtab)
14378 (psym_lookup_symbol, psym_find_last_source_symtab)
14379 (psym_forget_cached_source_info, psym_print_stats)
14380 (psym_expand_symtabs_for_function, psym_expand_all_symtabs)
14381 (psym_expand_symtabs_with_fullname, psym_map_symbol_filenames)
14382 (psym_map_matching_symbols, psym_expand_symtabs_matching)
14383 (psym_find_compunit_symtab_by_address)
14384 (maintenance_print_psymbols, maintenance_info_psymtabs)
14385 (maintenance_check_psymtabs): Use ranged for.
14386 * psymtab.h (class objfile_psymtabs): New.
14387 (require_partial_symbols): Return objfile_psymtabs.
14388 * psympriv.h (ALL_OBJFILE_PSYMTABS): Remove.
14389
3b9d3ac2
TT
143902019-01-09 Tom Tromey <tom@tromey.com>
14391
14392 * symfile.c (overlay_invalidate_all, find_pc_overlay)
14393 (find_pc_mapped_section, list_overlays_command)
14394 (map_overlay_command, unmap_overlay_command)
14395 (simple_overlay_update): Use all_objfiles.
14396 * spu-tdep.c (spu_overlay_update): Use all_objfiles.
14397 * printcmd.c (info_symbol_command): Use all_objfiles.
14398 * objfiles.h (ALL_OBJSECTIONS): Remove.
14399 * maint.c (maintenance_translate_address): Use all_objfiles.
14400 * gcore.c (gcore_create_callback): Use all_objfiles.
14401 (objfile_find_memory_regions): Likewise.
14402
8b31193a
TT
144032019-01-09 Tom Tromey <tom@tromey.com>
14404
14405 * symtab.c (find_line_symtab, info_sources_command)
14406 (make_source_files_completion_list): Use objfile_compunits.
14407 * source.c (select_source_symtab): Use objfile_compunits.
14408 * objfiles.h (struct objfile): Update comment.
14409 (ALL_OBJFILES): Remove.
14410 (ALL_FILETABS): Remove.
14411 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Use
14412 objfile_compunits.
14413
d5da8b3c
TT
144142019-01-09 Tom Tromey <tom@tromey.com>
14415
14416 * symmisc.c (print_objfile_statistics, dump_objfile)
14417 (maintenance_print_symbols): Use compunit_filetabs.
14418 * source.c (forget_cached_source_info_for_objfile): Use
14419 compunit_filetabs.
14420 * objfiles.h (ALL_OBJFILE_FILETABS): Remove.
14421 (ALL_FILETABS): Use compunit_filetabs.
14422 * objfiles.c (objfile_relocate1): Use compunit_filetabs.
14423 * coffread.c (coff_symtab_read): Use compunit_filetabs.
14424
5accd1a0
TT
144252019-01-09 Tom Tromey <tom@tromey.com>
14426
14427 * symtab.h (ALL_COMPUNIT_FILETABS): Remove.
14428 (compunit_filetabs): New.
14429 * symtab.c (iterate_over_some_symtabs, find_pc_sect_line): Use
14430 compunit_filetabs.
14431 (info_sources_command, make_source_files_completion_list): Remove
14432 declaration.
14433 * symmisc.c (print_objfile_statistics, dump_objfile)
14434 (maintenance_print_symbols): Remove declaration.
14435 (maintenance_info_symtabs): Use compunit_filetabs.
14436 (maintenance_info_line_tables): Likewise.
14437 * source.c (select_source_symtab): Change local variable name.
14438 (forget_cached_source_info_for_objfile): Remove declaration.
14439 * objfiles.h (ALL_OBJFILE_FILETABS): Use compunit_filetabs.
14440 * objfiles.c (objfile_relocate1): Remove declaration.
14441 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
14442 declaration.
14443 * maint.c (count_symtabs_and_blocks): Use compunit_filetabs.
14444 * coffread.c (coff_symtab_read): Remove declaration.
14445 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
14446 compunit_filetabs.
14447
d8aeb77f
TT
144482019-01-09 Tom Tromey <tom@tromey.com>
14449
14450 * symtab.c (lookup_objfile_from_block)
14451 (find_pc_sect_compunit_symtab, search_symbols)
14452 (default_collect_symbol_completion_matches_break_on): Use
14453 objfile_compunits.
14454 * objfiles.h (ALL_COMPUNITS): Remove.
14455 * maint.c (count_symtabs_and_blocks): Use objfile_compunits.
14456 * cp-support.c (add_symbol_overload_list_qualified): Use
14457 objfile_compunits.
14458 * ada-lang.c (ada_collect_symbol_completion_matches)
14459 (ada_add_global_exceptions): Use objfile_compunits.
14460
592553c4
TT
144612019-01-09 Tom Tromey <tom@tromey.com>
14462
14463 * source.c (select_source_symtab)
14464 (forget_cached_source_info_for_objfile): Remove declaration.
14465 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
14466 declaration.
14467 * maint.c (count_symtabs_and_blocks): Remove declaration.
14468 * cp-support.c (add_symbol_overload_list_qualified): Remove
14469 declaration.
14470 * coffread.c (coff_symtab_read): Remove declaration.
14471 * symtab.c (lookup_symbol_in_objfile_symtabs)
14472 (basic_lookup_transparent_type_1): Use objfile_compunits.
14473 (lookup_objfile_from_block, find_pc_sect_compunit_symtab)
14474 (info_sources_command, search_symbols)
14475 (default_collect_symbol_completion_matches_break_on)
14476 (make_source_files_completion_list): Remove declaration.
14477 * ada-lang.c (add_nonlocal_symbols): Use objfile_compunits.
14478 (ada_collect_symbol_completion_matches)
14479 (ada_add_global_exceptions): Remove declaration.
14480 * linespec.c (iterate_over_all_matching_symtabs): Use
14481 objfile_compunits.
14482 * objfiles.h (ALL_OBJFILE_COMPUNITS): Remove.
14483 (class objfile_compunits): New.
14484 (ALL_COMPUNITS): Use objfile_compunits.
14485 * symmisc.c (print_objfile_statistics, maintenance_info_symtabs)
14486 (maintenance_check_symtabs, maintenance_info_line_tables): Use
14487 objfile_compunits.
14488 * objfiles.c (objfile_relocate1): Use objfile_compunits.
14489
5325b9bf
TT
144902019-01-09 Tom Tromey <tom@tromey.com>
14491
14492 * symtab.c (search_symbols)
14493 (default_collect_symbol_completion_matches_break_on): Use
14494 objfile_msymbols.
14495 * ada-lang.c (ada_lookup_simple_minsym)
14496 (ada_collect_symbol_completion_matches): Use objfile_msymbols.
14497 * minsyms.c (find_solib_trampoline_target): Use objfile_msymbols.
14498 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Use
14499 objfile_msymbols.
14500 * coffread.c (coff_symfile_read): Use objfile_msymbols.
14501 * symmisc.c (dump_msymbols): Use objfile_msymbols.
14502 * objc-lang.c (find_methods): Use objfile_msymbols.
14503 (info_selectors_command, info_classes_command): Likewise.
14504 * stabsread.c (scan_file_globals): Use objfile_msymbols.
14505 * objfiles.h (class objfile_msymbols): New.
14506 (ALL_OBJFILE_MSYMBOLS): Remove.
14507 (ALL_MSYMBOLS): Remove.
14508
cac85af2
TT
145092019-01-09 Tom Tromey <tom@tromey.com>
14510
14511 * common/next-iterator.h (next_adapter): Add Iterator template
14512 parameter.
14513 * objfiles.h (ALL_OBJFILES_SAFE): Remove.
14514 (class all_objfiles_safe): New.
14515 * jit.c (jit_inferior_exit_hook): Use all_objfiles_safe.
14516 * objfiles.c (put_objfile_before): Update comment.
14517 (add_separate_debug_objfile): Likewise.
14518 (free_all_objfiles): Use all_objfiles_safe.
14519 (objfile_purge_solibs): Likewise.
14520
aed57c53
TT
145212019-01-09 Tom Tromey <tom@tromey.com>
14522
14523 * symtab.c (iterate_over_symtabs, matching_obj_sections)
14524 (expand_symtab_containing_pc, lookup_static_symbol)
14525 (basic_lookup_transparent_type, find_pc_sect_compunit_symtab)
14526 (find_symbol_at_address, find_line_symtab, find_main_name): Use
14527 all_objfiles.
14528 * probe.c (find_probe_by_pc, collect_probes): Use all_objfiles.
14529 * breakpoint.c (create_overlay_event_breakpoint)
14530 (create_longjmp_master_breakpoint)
14531 (create_std_terminate_master_breakpoint)
14532 (create_exception_master_breakpoint): Use all_objfiles.
14533 * linux-thread-db.c (try_thread_db_load_from_pdir)
14534 (has_libpthread): Use all_objfiles.
14535 * ada-lang.c (add_nonlocal_symbols): Use all_objfiles.
14536 * linespec.c (iterate_over_all_matching_symtabs)
14537 (search_minsyms_for_name): Use all_objfiles.
14538 * maint.c (maintenance_info_sections): Use all_objfiles.
14539 * main.c (captured_main_1): Use all_objfiles.
14540 * spu-tdep.c (spu_objfile_from_frame): Use all_objfiles.
14541 * guile/scm-objfile.c (gdbscm_objfiles): Use all_objfiles.
14542 * guile/scm-pretty-print.c
14543 (ppscm_find_pretty_printer_from_objfiles): Use all_objfiles.
14544 * solib-spu.c (append_ocl_sos): Use all_objfiles.
14545 * symmisc.c (maintenance_print_symbols): Use all_objfiles.
14546 (maintenance_print_msymbols): Use all_objfiles.
14547 * source.c (select_source_symtab): Use all_objfiles.
14548 * jit.c (jit_find_objf_with_entry_addr): Use all_objfiles.
14549 * symfile.c (remove_symbol_file_command)
14550 (expand_symtabs_matching, map_symbol_filenames): Use
14551 all_objfiles.
14552 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created): Use
14553 all_objfiles.
14554 * dwarf2-frame.c (dwarf2_frame_find_fde): Use all_objfiles.
14555 * objc-lang.c (find_methods): Use all_objfiles.
14556 * objfiles.c (have_partial_symbols, have_full_symbols)
14557 (have_minimal_symbols, qsort_cmp)
14558 (default_iterate_over_objfiles_in_search_order): Use
14559 all_objfiles.
14560 * hppa-tdep.c (find_unwind_entry): Use all_objfiles.
14561 * psymtab.c (maintenance_print_psymbols): Use all_objfiles.
14562 (maintenance_check_psymtabs): Use all_objfiles.
14563 (ALL_PSYMTABS): Remove.
14564 * compile/compile-object-run.c (do_module_cleanup): Use
14565 all_objfiles.
14566 * blockframe.c (find_pc_partial_function): Use all_objfiles.
14567 * cp-support.c (add_symbol_overload_list_qualified): Use
14568 all_objfiles.
14569 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
14570 Use all_objfiles.
14571 * dwarf-index-write.c (save_gdb_index_command): Use all_objfiles.
14572 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): Use
14573 all_objfiles.
14574 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
14575 (objfpy_lookup_objfile_by_build_id): Use all_objfiles.
14576 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
14577 Uses all_objfiles.
14578 * solib.c (solib_read_symbols): Use all_objfiles
14579
99d89cde
TT
145802019-01-09 Tom Tromey <tom@tromey.com>
14581
14582 * probe.c (parse_probes_in_pspace): Use all_objfiles.
14583 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Use
14584 all_objfiles.
14585 * objfiles.h (ALL_PSPACE_OBJFILES): Remove.
14586 * symmisc.c (print_symbol_bcache_statistics)
14587 (print_objfile_statistics, maintenance_print_objfiles)
14588 (maintenance_info_symtabs, maintenance_check_symtabs)
14589 (maintenance_expand_symtabs, maintenance_info_line_tables): Use
14590 all_objfiles.
14591 * source.c (forget_cached_source_info): Use all_objfiles.
14592 * symfile-debug.c (set_debug_symfile): Use all_objfiles.
14593 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
14594 (elf_gnu_ifunc_resolve_by_got): Use all_objfiles.
14595 * objfiles.c (update_section_map): Use all_objfiles.
14596 (shared_objfile_contains_address_p): Likewise.
14597 * psymtab.c (maintenance_info_psymtabs): Use all_objfiles.
14598 * python/py-progspace.c (pspy_get_objfiles): Use all_objfiles.
14599
21708325
TT
146002019-01-09 Tom Tromey <tom@tromey.com>
14601
14602 * common/next-iterator.h: New file.
14603 * objfiles.h (class all_objfiles): New.
14604 (struct objfile_iterator): New.
14605
669e09f6
PW
146062019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14607
14608 * NEWS: Move the description of the changed "frame", "select-frame",
14609 and "info frame" commands to the Changed commands section.
14610
041be526
SM
146112019-01-09 Simon Marchi <simon.marchi@ericsson.com>
14612
14613 * gdbtypes.c (check_stub_method_group): Remove handling of old
14614 mangling schemes.
14615 * linespec.c (find_methods): Likewise.
14616 * stabsread.c (read_member_functions): Likewise.
14617 * valops.c (search_struct_method): Likewise.
14618 (value_struct_elt_for_reference): Likewise.
14619 * NEWS: Mention this change.
14620
0e2a2133
AB
146212019-01-09 Andrew Burgess <andrew.burgess@embecosm.com>
14622
14623 * cli/cli-cmds.c (list_command): Pass a source_lines_range to
14624 print_source_lines.
14625 * source.c (print_source_lines_base): Update line number check.
14626 (print_source_lines): New function.
14627 (source_lines_range::source_lines_range): New function.
14628 * source.h (class source_lines_range): New class.
14629 (print_source_lines): New declaration.
14630
1055a3b4
PW
146312019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14632
14633 * linespec.c (linespec_state_destructor): Free self->canonical_names.
14634
cfeadda5
TT
146352019-01-08 Tom Tromey <tom@tromey.com>
14636 Simon Marchi <simon.marchi@ericsson.com>
14637
14638 PR gdb/24060
14639 * ada-exp.y (DOLLAR_VARIABLE): Rename from SPECIAL_VARIABLE.
14640 * ada-lex.l (DOLLAR_VARIABLE): Likewise.
14641 * c-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
14642 * f-exp.y (DOLLAR_VARIABLE): Likewise.
14643 * m2-exp.y (DOLLAR_VARIABLE): Rename from INTERNAL_VAR.
14644 * p-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
14645
583068ca
AB
146462019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
14647
14648 * source.c (select_source_symtab): Move header comment to
14649 declaration in source.h.
14650 (forget_cached_source_info_for_objfile): Likewise.
14651 (forget_cached_source_info): Likewise.
14652 (identify_source_line): Likewise.
14653 * source.h (identify_source_line): Move declaration from symtab.h
14654 and add comment from source.c
14655 (print_source_lines): Likewise.
14656 (forget_cached_source_info_for_objfile): Likewise.
14657 (forget_cached_source_info): Likewise.
14658 (select_source_symtab): Likewise.
14659 (enum print_source_lines_flag): Move definition from symtab.h.
14660 * symtab.h (identify_source_line): Move declaration to source.h.
14661 (print_source_lines): Likewise.
14662 (forget_cached_source_info_for_objfile): Likewise.
14663 (forget_cached_source_info): Likewise.
14664 (select_source_symtab): Likewise.
14665 (enum print_source_lines_flag): Move definition to source.h.
14666 * tui/tui-hooks.c: Add 'source.h' include.
14667
ec98a4ad
AB
146682019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
14669
14670 * source.c (print_source_lines_base): Handle requests to print
14671 reverse line number sequences, and guard against empty lines
14672 string.
14673
62ea19c1
AB
146742019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
14675
14676 * source.c (print_source_lines_base): Fix skip of '\r' if next
14677 character is '\n'.
14678
9d30e1fd
TT
146792019-01-06 Tom Tromey <tom@tromey.com>
14680
14681 * c-exp.y (struct c_parse_state) <macro_original_text,
14682 expansion_obstack>: New member.
14683 (macro_original_text, expansion_obstack): Remove globals.
14684 (scan_macro_expansion, scanning_macro_expansion)
14685 (finished_macro_expansion): Update.
14686 (scan_macro_cleanup): Remove.
14687 (yylex, c_parse): Update.
14688
c65bac38
TT
146892019-01-06 Tom Tromey <tom@tromey.com>
14690
14691 * c-exp.y (struct c_parse_state) <strings>: New member.
14692 (operator_stoken): Update.
14693
02e12e38
TT
146942019-01-06 Tom Tromey <tom@tromey.com>
14695
14696 * parser-defs.h (type_ptr): Remove typedef. Don't declare VEC.
14697 (union type_stack_elt) <typelist_val>: Now a pointer to
14698 std::vector.
14699 (type_stack_cleanup): Don't declare.
14700 (push_typelist): Update.
14701 * parse.c (pop_typelist): Return a std::vector.
14702 (push_typelist): Take a std::vector.
14703 (follow_types): Update. Do not free args.
14704 (type_stack_cleanup): Remove.
14705 * c-exp.y (struct c_parse_state): New.
14706 (cpstate): New global.
14707 (type_aggregate_p, exp, ptr_operator, parameter_typelist)
14708 (nonempty_typelist): Update.
14709 (func_mod): Create a new vector.
14710 (c_parse): Create a c_parse_state.
14711 (check_parameter_typelist): Do not delete params.
14712 (function_method): Update. Do not delete type_list.
14713
f097f5ad
TT
147142019-01-06 Tom Tromey <tom@tromey.com>
14715
14716 PR gdb/28155:
14717 * python/py-finishbreakpoint.c (bpfinishpy_init): Use
14718 check_typedef.
14719 * infcmd.c (finish_command_fsm_should_stop): Use check_typedef.
14720 (print_return_value): Likewise.
14721
d2adf9f1
TT
147222019-01-05 Tom Tromey <tom@tromey.com>
14723
14724 * contrib/cleanup_check.py: Remove.
14725 * contrib/gcc-with-excheck: Remove.
14726 * contrib/exsummary.py: Remove.
14727 * contrib/excheck.py: Remove.
14728
2eab46b1
JB
147292019-01-05 Joel Brobecker <brobecker@adacore.com>
14730
14731 * thread.c (delete_thread_1): Add gdb_assert that THR is not
14732 NULL. Initialize tpprev to NULL instead of assigning it
14733 to NULL on the next statement.
14734 * windows-nat.c (windows_delete_thread): Remove check for
14735 main_thread_id before printing thread exit notifications.
14736 (get_windows_debug_event) <EXIT_THREAD_DEBUG_EVENT>:
14737 Remove thread ID check against main_thread_id.
14738 <CREATE_PROCESS_DEBUG_EVENT>: Remove call to
14739 windows_delete_thread.
14740 <EXIT_PROCESS_DEBUG_EVENT>: Add call to windows_delete_thread.
14741
48c5e7e2
TT
147422019-01-04 Tom Tromey <tom@tromey.com>
14743
14744 * compile/compile.c (_initialize_compile): Use upper case for
14745 metasyntactic variables.
14746 * symmisc.c (_initialize_symmisc): Use upper case for
14747 metasyntactic variables.
14748 * psymtab.c (_initialize_psymtab): Use upper case for
14749 metasyntactic variables.
14750 * demangle.c (demangle_command): Use upper case for metasyntactic
14751 variables.
14752 (_initialize_demangler): Likewise.
14753 * ax-gdb.c (_initialize_ax_gdb): Use upper case for metasyntactic
14754 variables.
14755
986041cd
TT
147562019-01-03 Tom Tromey <tom@tromey.com>
14757
14758 * tui/tui-source.c (tui_set_source_content): Use xstrdup.
14759
7c711119
TT
147602019-01-03 Tom Tromey <tom@tromey.com>
14761
14762 * python/py-symtab.c (salpy_str): Update.
14763 (struct salpy_sal_object) <symtab>: Now a PyObject.
14764 (salpy_dealloc): Update.
14765 (del_objfile_sal): Use gdbpy_ref.
14766
1b20edf0
TT
147672019-01-03 Tom Tromey <tom@tromey.com>
14768
14769 * python/py-type.c (convert_field): Use new_reference. Return
14770 gdbpy_ref.
14771 (make_fielditem): Return gdbpy_ref.
14772 (typy_fields): Update.
14773 (typy_getitem): Update.
14774 (field_name): Return gdbpy_ref. Use new_reference.
14775 (typy_iterator_iternext): Update.
14776
ea41325b
TT
147772019-01-03 Tom Tromey <tom@tromey.com>
14778
14779 * python/py-record.c (gdbpy_stop_recording): Use Py_RETURN_NONE.
14780
2a3c71d6
TT
147812019-01-03 Tom Tromey <tom@tromey.com>
14782
14783 * python/py-value.c (valpy_dealloc): Use Py_XDECREF.
14784 * python/py-type.c (typy_fields_items): Use gdbpy_ref.
14785 * python/py-progspace.c (pspy_set_printers): Use gdbpy_ref.
14786 (pspy_set_frame_filters, pspy_set_frame_unwinders)
14787 (pspy_set_type_printers): Likewise.
14788 * python/py-function.c (fnpy_init): Use gdbpy_ref.
14789 * python/py-cmd.c (cmdpy_init): Use gdbpy_ref.
14790 * python/py-objfile.c (objfpy_set_printers): Use gdbpy_ref.
14791 (objfpy_set_frame_filters, objfpy_set_frame_unwinders)
14792 (objfpy_set_type_printers): Likewise.
14793
5c329e6a
TT
147942019-01-03 Tom Tromey <tom@tromey.com>
14795
14796 * python/python.c (gdbpy_enter, ~gdbpy_enter): Update.
14797 (gdbpy_print_stack): Use gdbpy_err_fetch.
14798 * python/python-internal.h (class gdbpy_err_fetch): New class.
14799 (class gdbpy_enter) <m_error_type, m_error_value,
14800 m_error_traceback>: Remove.
14801 <m_error>: New member.
14802 (gdbpy_exception_to_string): Don't declare.
14803 * python/py-varobj.c (py_varobj_iter_next): Use gdbpy_err_fetch.
14804 * python/py-value.c (convert_value_from_python): Use
14805 gdbpy_err_fetch.
14806 * python/py-utils.c (gdbpy_err_fetch::to_string): Rename from
14807 gdbpy_exception_to_string.
14808 (gdbpy_handle_exception): Use gdbpy_err_fetch.
14809 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
14810 gdbpy_err_fetch.
14811
169bb27b
AB
148122019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14813
14814 * linux-nat.c (delete_lwp_cleanup): Delete.
14815 (struct lwp_deleter): New struct.
14816 (lwp_info_up): New typedef.
14817 (linux_nat_target::follow_fork): Delete cleanup, and make use of
14818 lwp_info_up.
14819
a07c8880
AB
148202019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14821
14822 * linux-fork.c (class scoped_switch_fork_info): New class.
14823 (inferior_call_waitpid): Update to use scoped_switch_fork_info.
14824
26089c49
AB
148252019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14826
14827 * valops.c (find_overload_match): Remove use of null_cleanup, and
14828 calls to do_cleanups.
14829
06d3e5b0
AB
148302019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14831
14832 * compile/compile-cplus-types.c
14833 (compile_cplus_instance::decl_name): Handle changes to
14834 cp_func_name.
14835 * cp-support.c (cp_func_name): Update header comment, update
14836 return type.
14837 * cp-support.h (cp_func_name): Update return type in declaration.
14838 * valops.c (find_overload_match): Move temp_func local to top
14839 level of function and change its type. Use temp_func to hold and
14840 delete temporary string obtained from cp_func_name.
14841
66644cd3
AB
148422019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14843
14844 * remote.c (remote_target::remote_check_symbols): Convert `msg` to
14845 gdb::char_vector, remove cleanup, and update uses of `msg`.
14846
592d8c0a
JW
148472019-01-03 Jim Wilson <jimw@sifive.com>
14848
14849 * riscv-tdep.c (riscv_freg_feature): Drop s0 name from f8.
14850
c55d06ec
TT
148512019-01-02 Tom Tromey <tom@tromey.com>
14852
14853 * xml-tdesc.c (xml_cache): Hold a target_desc_up.
14854 (tdesc_parse_xml): Remove cleanups.
14855 * target-descriptions.h (make_cleanup_free_target_description):
14856 Don't declare.
14857 (target_desc_deleter): New struct.
14858 (target_desc_up): New typedef.
14859 * target-descriptions.c (target_desc_deleter::operator()): Rename
14860 from free_target_description.
14861 (make_cleanup_free_target_description): Remove.
14862
3a6ae42d
TT
148632019-01-02 Tom Tromey <tom@tromey.com>
14864
14865 * linespec.c (struct linespec_parser): Rename from ls_parser. Add
14866 constructor, destructor.
14867 (linespec_parser): Remove typedef.
14868 (~linespec_parser): Rename from linespec_parser_delete.
14869 (linespec_lex_to_end, linespec_complete_label)
14870 (linespec_complete): Update.
14871 (decode_line_full): Remove cleanups.
14872 (decode_line_1): Update.
14873
61fd3e73
TT
148742019-01-02 Tom Tromey <tom@tromey.com>
14875
14876 * python/python-internal.h (inferior_to_inferior_object): Change
14877 return type.
14878 * python/py-exitedevent.c (create_exited_event_object): Update.
14879 * python/py-inferior.c (inferior_to_inferior_object): Return
14880 gdbpy_ref.
14881 (python_new_inferior, python_inferior_deleted)
14882 (thread_to_thread_object, delete_thread_object)
14883 (build_inferior_list, gdbpy_selected_inferior): Update.
14884 * python/py-infthread.c (create_thread_object): Update. Also fail
14885 if inferior_to_inferior_object fails.
14886
d20172fc
SM
148872019-01-02 Simon Marchi <simon.marchi@ericsson.com>
14888
14889 * inferior.h (class inferior) <displaced_step_state>: New field.
14890 * infrun.h (struct displaced_step_state): Move here from
14891 infrun.c. Initialize fields, add constructor.
14892 <inf>: Remove field.
14893 <reset>: New method.
14894 * infrun.c (struct displaced_step_inferior_state): Move to
14895 infrun.h.
14896 (displaced_step_inferior_states): Remove.
14897 (get_displaced_stepping_state): Adust.
14898 (displaced_step_in_progress_any_inferior): Adjust.
14899 (displaced_step_in_progress_thread): Adjust.
14900 (displaced_step_in_progress): Adjust.
14901 (add_displaced_stepping_state): Remove.
14902 (get_displaced_step_closure_by_addr): Adjust.
14903 (remove_displaced_stepping_state): Remove.
14904 (infrun_inferior_exit): Call displaced_step_state.reset.
14905 (use_displaced_stepping): Don't check for NULL.
14906 (displaced_step_prepare_throw): Call
14907 get_displaced_stepping_state.
14908 (displaced_step_fixup): Don't check for NULL.
14909 (prepare_for_detach): Don't check for NULL.
14910
e3319240
PW
149112019-01-02 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14912
14913 * infcall.c (call_function_by_hand_dummy): cleanup/destroy sm
14914 in case of call that did not complete.
14915
5d36dfb9
AU
149162019-01-02 Andrey Utkin <autkin@undo.io>
14917
14918 * symfile.c (find_separate_debug_file): Fix search of debug files for
14919 remote debuggee.
14920
8833fbf0
TT
149212019-01-02 Tom Tromey <tom@tromey.com>
14922
14923 * python/py-inferior.c (gdbpy_initialize_inferior): Fix
14924 indentation.
14925 * python/py-frame.c (frapy_older): Remove cast.
14926 (frapy_newer): Likewise.
14927 * python/py-breakpoint.c (local_setattro): Remove cast.
14928 * python/py-arch.c (archpy_name): Remove local variable.
14929 * python/py-type.c (gdbpy_lookup_type): Remove cast.
14930
4ada3dfd
JB
149312019-01-02 Joel Brobecker <brobecker@adacore.com>
14932
14933 * unittests/basic_string_view/element_access/char/empty.cc:
14934 Fix year range in copyright header.
14935
113b7b81
AB
149362019-01-01 Andrew Burgess <andrew.burgess@embecosm.com>
14937
14938 * arch/riscv.h (struct riscv_gdbarch_features) <hw_float_abi>:
14939 Delete.
14940 <operator==>: Update with for removed field.
14941 <hash>: Likewise.
14942 * riscv-tdep.h (struct gdbarch_tdep) <features>: Renamed to...
14943 <isa_features>: ...this.
14944 <abi_features>: New field.
14945 (riscv_isa_flen): Update comment.
14946 (riscv_abi_xlen): New declaration.
14947 (riscv_abi_flen): New declaration.
14948 * riscv-tdep.c (riscv_isa_xlen): Update to get answer from
14949 isa_features.
14950 (riscv_abi_xlen): New function.
14951 (riscv_isa_flen): Update to get answer from isa_features.
14952 (riscv_abi_flen): New function.
14953 (riscv_has_fp_abi): Update to get answer from abi_features.
14954 (riscv_call_info::riscv_call_info): Use abi xlen and flen, not isa
14955 xlen and flen.
14956 (riscv_call_info) <xlen, flen>: Update comment.
14957 (riscv_call_arg_struct): Remove invalid assertions
14958 (riscv_features_from_gdbarch_info): Update now hw_float_abi field
14959 is removed.
14960 (riscv_gdbarch_init): Gather isa features and abi features
14961 separately, ensure both match on the gdbarch when reusing an old
14962 gdbarch. Relax an error check to allow 32-bit abi float to run on
14963 a target with 64-bit float hardware.
14964
b18ca514
PW
149652019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14966
14967 * source.c (search_command_helper): Stop reverse search
14968 when line 1 has been searched.
14969
ec70d8db
PW
149702019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14971
14972 * record-full.c (record_full_base_target::close): Rewrite
14973 record_full_core_buf_list free logic.
14974
5b38f9c1
PW
149752019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14976
14977 * break-catch-syscall.c (print_one_catch_syscall): xfree
14978 the last text.
14979
66d91b39
JB
149802019-01-01 Joel Brobecker <brobecker@adacore.com>
14981
14982 * top.c (print_gdb_version): Update Copyright year in version
14983 message.
14984
42a4f53d
JB
149852019-01-01 Joel Brobecker <brobecker@adacore.com>
14986
14987 Update copyright year range in all GDB files.
14988
7e955d83 149892019-01-01, 19 Joel Brobecker <brobecker@adacore.com>
2139e8dc 14990
5bbd631d 14991 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2018.
2139e8dc 14992
5bbd631d 14993For older changes see ChangeLog-2018.
c906108c
SS
14994\f
14995Local Variables:
14996mode: change-log
14997left-margin: 8
14998fill-column: 74
14999version-control: never
57da7796 15000coding: utf-8
c906108c 15001End:
5bbd631d 15002
This page took 3.15895 seconds and 4 git commands to generate.