Use gnulib's strerror_r on MinGW
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2019-11-15 Christian Biesinger <cbiesinger@google.com>
2
3 * Makefile.in: Replace {posix,mingw}-strerror.c with safe-strerror.c.
4 * configure: Regenerate.
5 * configure.ac: Don't source common.host.
6 * gdbsupport/common.host: Remove.
7 * gdbsupport/mingw-strerror.c: Remove.
8 * gdbsupport/posix-strerror.c: Rename to...
9 * gdbsupport/safe-strerror.c: ...this.
10
11 2019-11-15 Christian Biesinger <cbiesinger@google.com>
12
13 * maint.c (scoped_command_stats::print_time): Use localtime_r
14 instead of localtime (provided through gnulib if necessary).
15 * nat/linux-osdata.c (time_from_time_t): Use ctime_r instead
16 of ctime.
17
18 2019-11-15 Christian Biesinger <cbiesinger@google.com>
19
20 * gdbsupport/common-defs.h: Include time.h before pathmax.h to
21 avoid compile errors.
22
23 2019-11-15 Christian Biesinger <cbiesinger@google.com>
24
25 * config.in: Regenerate.
26 * configure: Regenerate.
27 * gdbsupport/common.m4: No longer check for strerror_r.
28 * gdbsupport/posix-strerror.c (safe_strerror): Always call the
29 POSIX version of strerror_r, now that gnulib provides it if
30 necessary.
31
32 2019-11-14 Christian Biesinger <cbiesinger@google.com>
33
34 * README (`configure' options): Update.
35
36 2019-11-14 Tom Tromey <tromey@adacore.com>
37
38 * eval.c (evaluate_subexp_standard) <BINOP_ASSIGN>: Do not pass an
39 expected type for the RHS if the LHS is a convenience variable.
40
41 2019-11-14 Simon Marchi <simon.marchi@polymtl.ca>
42
43 * unittests/vec-utils-selftests.c (unordered_remove_tests::obj):
44 Provide explicit default and copy constructor.
45
46 2019-11-14 Philippe Waroquiers <philippe.waroquiers@skynet.be>
47
48 * python/py-finishbreakpoint.c (gdbpy_breakpoint_created):
49 only call Py_INCREF (newbp) in the bppy_pending_object case.
50
51 2019-11-13 Tom Tromey <tromey@adacore.com>
52
53 PR build/25182:
54 * psympriv.h (partial_symbol): Remove static assert.
55 * symtab.h (general_symbol_info, symbol): Remove static assert.
56
57 2019-11-12 Andrew Burgess <andrew.burgess@embecosm.com>
58
59 * gdbsupport/format.c (format_pieces::format_pieces): Support
60 printf 'z' size modifier.
61 * gdbsupport/format.h (enum argclass): Add size_t_arg.
62 * printcmd.c (ui_printf): Handle size_t_arg.
63 * ui-out.c (ui_out::vmessage): Likewise.
64 * unittests/format_pieces-selftests.c (test_format_int_sizes): New
65 function.
66 (run_tests): Call test_format_int_sizes.
67
68 2019-11-12 Christian Biesinger <cbiesinger@google.com>
69
70 * ada-exp.y (write_ambiguous_var): Update.
71 * buildsym.c (add_symbol_to_list): Update.
72 * dwarf2read.c (read_variable): Update.
73 (new_symbol): Update.
74 * jit.c (finalize_symtab): Update.
75 * language.c (language_alloc_type_symbol): Update.
76 * symtab.c (fixup_symbol_section): Update.
77 (initialize_objfile_symbol_1): Move code to...
78 (initialize_objfile_symbol): ...here. Remove now-unnecessary memset.
79 (allocate_symbol): Update.
80 (allocate_template_symbol): Update.
81 (get_symbol_address): Update.
82 * symtab.h (struct symbol): Inherit from general_symbol_info instead
83 of having as a field, and add a constructor.
84 (SYMBOL_VALUE): Update.
85 (SYMBOL_VALUE_ADDRESS): Update.
86 (SET_SYMBOL_VALUE_ADDRESS): Update.
87 (SYMBOL_VALUE_BYTES): Update.
88 (SYMBOL_VALUE_COMMON_BLOCK): Update.
89 (SYMBOL_BLOCK_VALUE): Update.
90 (SYMBOL_VALUE_CHAIN): Update.
91 (SYMBOL_LANGUAGE): Update.
92 (SYMBOL_SECTION): Update.
93 (SYMBOL_OBJ_SECTION): Update.
94 (SYMBOL_SET_LANGUAGE): Update.
95 (SYMBOL_SET_LINKAGE_NAME): Update.
96 (SYMBOL_SET_NAMES): Update.
97 (SYMBOL_NATURAL_NAME): Update.
98 (SYMBOL_LINKAGE_NAME): Update.
99 (SYMBOL_DEMANGLED_NAME): Update.
100 (SYMBOL_SEARCH_NAME): Update.
101 (SYMBOL_MATCHES_SEARCH_NAME): Update.
102 (struct symbol): Update.
103 (struct template_symbol): Update.
104 (struct rust_vtable_symbol): Update.
105 * xcoffread.c (SYMBOL_DUP): Update.
106
107 2019-11-12 Tom Tromey <tom@tromey.com>
108
109 * tui/tui-layout.c (show_layout): Set current_layout.
110 (show_source_disasm_command, show_data)
111 (show_source_or_disasm_and_command): Don't set current_layout.
112
113 2019-11-12 Tom Tromey <tom@tromey.com>
114
115 * tui/tui-layout.c (_initialize_tui_layout): Move to end.
116
117 2019-11-12 Tom Tromey <tom@tromey.com>
118
119 * tui/tui-win.c (resize_message): New global.
120 (show_tui_resize_message): New function.
121 (tui_async_resize_screen): Print message if requested.
122 (_initialize_tui_win): Add tui-resize-message setting.
123 * NEWS: Add entry for new commands.
124
125 2019-11-11 Tom Tromey <tom@tromey.com>
126
127 * tui/tui.c (tui_initialize_readline): Add new bindable readline
128 functions.
129
130 2019-11-11 Christian Biesinger <cbiesinger@google.com>
131
132 * nat/linux-osdata.c (user_from_uid): Use getpwuid_r.
133
134 2019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
135
136 * python/py-symbol.c (gdbpy_lookup_static_symbols): New
137 function.
138 * python/python-internal.h (gdbpy_lookup_static_symbols):
139 Declare new function.
140 * python/python.c (python_GdbMethods): Add
141 gdb.lookup_static_symbols method.
142 * NEWS: Mention gdb.lookup_static_symbols.
143
144 2019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
145
146 * python/py-symbol.c (gdbpy_lookup_static_symbol): Lookup in
147 static block of current object file first. Also fix typo in
148 header comment.
149
150 2019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
151
152 * stack.c (set_last_displayed_sal): Delete.
153 (last_displayed_sal_valid): Delete.
154 (last_displayed_pspace): Delete.
155 (last_displayed_addr): Delete.
156 (last_displayed_symtab): Delete.
157 (last_displayed_line): Delete.
158 (class last_displayed_symtab_info_type): New.
159 (last_displayed_symtab_info): New static global variable.
160 (print_frame_info): Call methods on last_displayed_symtab_info.
161 (clear_last_displayed_sal): Update header comment, and make use of
162 last_displayed_symtab_info.
163 (last_displayed_sal_is_valid): Likewise.
164 (get_last_displayed_pspace): Likewise.
165 (get_last_displayed_addr): Likewise.
166 (get_last_displayed_symtab): Likewise.
167 (get_last_displayed_line): Likewise.
168 (get_last_displayed_sal): Likewise.
169 * stack.h (clear_last_displayed_sal): Update header comment.
170 (last_displayed_sal_is_valid): Likewise.
171 (get_last_displayed_pspace): Likewise.
172 (get_last_displayed_addr): Likewise.
173 (get_last_displayed_symtab): Likewise.
174 (get_last_displayed_line): Likewise.
175 (get_last_displayed_sal): Likewise.
176
177 2019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
178
179 * stack.c (frame_show_address): Convert return type to bool.
180 * stack.h (frame_show_address): Likewise, and update header
181 comment.
182
183 2019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
184
185 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add new file to the list.
186 * unittests/vec-utils-selftests.c: New file.
187 * gdbsupport/gdb_vecs.h (unordered_remove): Avoid self move assign.
188
189 2019-11-10 Tom Tromey <tom@tromey.com>
190
191 * tui/tui-wingeneral.c (tui_unhighlight_win): Use can_box.
192 (tui_highlight_win): Likewise.
193 (tui_win_info::check_and_display_highlight_if_needed): Likewise.
194 * tui/tui-data.h (struct tui_win_info) <can_highlight>: Remove.
195 * tui/tui-command.h (struct tui_cmd_window) <tui_cmd_window>:
196 Don't set can_highlight.
197
198 2019-11-10 Tom Tromey <tom@tromey.com>
199
200 * cli/cli-style.h (class cli_style_option) <cli_style_option>:
201 Remove unused declaration.
202
203 2019-11-08 Tom Tromey <tromey@adacore.com>
204
205 * top.c (read_command_file): Update.
206 (command_line_input): Make return type const.
207 * python/py-gdb-readline.c: Update.
208 * linespec.c (decode_line_2): Update.
209 * defs.h (command_line_input): Make return type const.
210 * cli/cli-script.c (read_next_line): Make return type const.
211 * ada-lang.c (get_selections): Update.
212
213 2019-11-06 Christian Biesinger <cbiesinger@google.com>
214
215 * linux-tdep.c (linux_info_proc): Use strtok_r instead of strtok.
216 * mi/mi-main.c (output_cores): Likewise.
217 * nat/linux-osdata.c (linux_xfer_osdata_cpus): Likewise.
218 (linux_xfer_osdata_modules): Likewise.
219 * remote.c (register_remote_support_xml): Likewise.
220 * sparc64-tdep.c (adi_is_addr_mapped): Likewise.
221 * xml-syscall.c (syscall_create_syscall_desc): Likewise.
222
223 2019-11-06 Tom Tromey <tom@tromey.com>
224
225 * tui/tui-interp.c: Don't include readline.h.
226 * tui/tui-hooks.c: Don't include readline.h.
227 * symmisc.c: Include tilde.h, not readline.h.
228 * symfile.c: Include tilde.h, not readline.h.
229 * source.c: Include tilde.h, not readline.h.
230 * solib.c: Include tilde.h, not readline.h.
231 * psymtab.c: Include tilde.h, not readline.h.
232 * exec.c: Include tilde.h, not readline.h.
233 * corelow.c: Include tilde.h, not readline.h.
234 * cli/cli-dump.c: Include tilde.h, not readline.h.
235 * cli/cli-cmds.c: Don't include readline.h.
236
237 2019-11-05 Tom Tromey <tom@tromey.com>
238
239 * tui/tui-disasm.c (struct tui_asm_line) <addr_size>: New member.
240 (tui_disassemble): Set addr_size.
241 (tui_disasm_window::set_contents): Use addr_size.
242
243 2019-11-05 Tom Tromey <tom@tromey.com>
244
245 * rust-lang.c (rust_language_defn): Update.
246 * python/py-value.c (valpy_string): Call c_get_string.
247 * p-lang.c (pascal_language_defn): Update.
248 * opencl-lang.c (opencl_language_defn): Update.
249 * objc-lang.c (objc_language_defn): Update.
250 * m2-lang.c (m2_language_defn): Update.
251 * language.c (unknown_language_defn, auto_language_defn): Update.
252 (default_get_string): Remove.
253 * guile/scm-value.c (gdbscm_value_to_string): Use c_get_string.
254 * go-lang.c (go_language_defn): Update.
255 * f-lang.c (f_language_defn): Update.
256 * d-lang.c (d_language_defn): Update.
257 * c-lang.c (c_language_defn, cplus_language_defn)
258 (asm_language_defn, minimal_language_defn): Update.
259 * ada-lang.c (ada_language_defn): Update.
260 * language.h (struct language_defn) <la_get_string>: Remove.
261 (LA_GET_STRING): Remove.
262 (default_get_string): Don't declare.
263
264 2019-11-05 Tom Tromey <tom@tromey.com>
265
266 * tui/tui-source.h (struct tui_source_window): Inline
267 constructor. Remove destructor.
268 <style_changed, m_observable>: Move to superclass.
269 * tui/tui-winsource.h (tui_copy_source_line): Declare.
270 (struct tui_source_window_base): Move private members to end.
271 <style_changed, m_observable>: Move from tui_source_window.
272 * tui/tui-winsource.c (tui_copy_source_line): Move from
273 tui-source.c. Rename from copy_source_line. Add special handling
274 for negative line number.
275 (tui_source_window_base::style_changed): Move from
276 tui_source_window.
277 (tui_source_window_base): Register observer.
278 (~tui_source_window_base): New.
279 * tui/tui-source.c (copy_source_line): Move to tui-winsource.c;
280 rename.
281 (tui_source_window::set_contents): Use tui_copy_source_line.
282 (tui_source_window::tui_source_window): Move to tui-source.h.
283 (tui_source_window::~tui_source_window): Remove.
284 (tui_source_window::style_changed): Move to superclass.
285 * tui/tui-disasm.c (tui_disassemble): Create string file with
286 styling, when possible. Add "addr_size" parameter.
287 (tui_disasm_window::set_contents): Use tui_copy_source_line.
288 Don't compute maximum size.
289 (len_without_escapes): New function
290
291 2019-11-05 Tom Tromey <tom@tromey.com>
292
293 * tui/tui-winsource.h (struct tui_source_element) <line>: Now a
294 std::string.
295 * tui/tui-winsource.c (tui_show_source_line): Update.
296 * tui/tui-source.c (tui_source_window::set_contents): Update.
297 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
298
299 2019-11-05 Christian Biesinger <cbiesinger@google.com>
300
301 * symtab.h (gdb_static_assert): Put && operator at the beginning
302 of the line instead of the end.
303
304 2019-11-04 Christian Biesinger <cbiesinger@google.com>
305
306 * psympriv.h: Add static_asserts for sizeof (general_symbol_info)
307 and sizeof (symbol).
308 * symtab.h: Add a static_assert for sizeof (partial_symbol).
309
310 2019-11-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
311
312 * NEWS (Changes since GDB 8.3): Document Solaris 10 removal.
313 * configure.host: Mark *-*-solaris2.10* obsolete.
314 * configure.tgt: Mark Solaris < 11 obsolete.
315 * MAINTAINERS (Target Instruction Set Architectures) <sparc>:
316 Update target triplet.
317
318 2019-11-01 Tom Tromey <tromey@adacore.com>
319
320 * utils.c (print_sys_errmsg): Simplify.
321
322 2019-11-01 Tom Tromey <tromey@adacore.com>
323
324 * gdbsupport/mingw-strerror.c (safe_strerror): Constify result.
325
326 2019-11-01 Christian Biesinger <cbiesinger@google.com>
327
328 * configure: Regenerate.
329 * configure.ac: Remove check for strerror_r.
330 * gdbsupport/common.m4: Check for strerror_r.
331
332 2019-11-01 Luis Machado <luis.machado@linaro.org>
333
334 PR gdb/25124
335
336 * arm-tdep.c (arm_per_objfile): Rename to ...
337 (arm_per_bfd): ... this.
338 (arm_objfile_data_key): Rename to ...
339 (arm_bfd_data_key): ... this.
340 (arm_find_mapping_symbol): Adjust access to new bfd_key-based
341 data.
342 (arm_record_special_symbol): Likewise.
343
344 2019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
345
346 * ada-typeprint.c (ada_print_typedef): Don't print newline at the
347 end.
348 * c-typeprint.c (c_print_typedef): Likewise.
349 * f-typeprint.c (f_print_typedef): Likewise.
350 * m2-typeprint.c (m2_print_typedef): Likewise.
351 * p-typeprint.c (pascal_print_typedef): Likewise.
352 * rust-lang.c (rust_print_typedef): Likewise.
353 * symtab.c (print_symbol_info): Print a newline after calling
354 typedef_print.
355
356 2019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
357
358 * symtab.c (info_module_cmdlist): New variable.
359 (info_module_command): New function.
360 (search_module_symbols): New function.
361 (info_module_subcommand): New function.
362 (struct info_modules_var_func_options): New struct.
363 (info_modules_var_func_options_defs): New variable.
364 (make_info_modules_var_func_options_def_group): New function.
365 (info_module_functions_command): New function.
366 (info_module_variables_command): New function.
367 (info_module_var_func_command_completer): New function.
368 (_initialize_symtab): Register new 'info module functions' and
369 'info module variables' commands.
370 * symtab.h (typedef symbol_search_in_module): New typedef.
371 (search_module_symbols): Declare new function.
372 * NEWS: Mention new commands.
373
374 2019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
375
376 * dwarf2read.c (dw2_symtab_iter_next): Handle MODULE_DOMAIN.
377 (dw2_expand_marked_cus): Handle MODULES_DOMAIN.
378 (dw2_debug_names_iterator::next): Handle MODULE_DOMAIN and
379 MODULES_DOMAIN.
380 (scan_partial_symbols): Only create partial module symbols for non
381 declarations.
382 * psymtab.c (recursively_search_psymtabs): Handle MODULE_DOMAIN
383 and MODULES_DOMAIN.
384 * symtab.c (search_domain_name): Likewise.
385 (search_symbols): Likewise.
386 (print_symbol_info): Likewise.
387 (symtab_symbol_info): Likewise.
388 (info_modules_command): New function.
389 (_initialize_symtab): Register 'info modules' command.
390 * symtab.h (enum search_domain): Add MODULES_DOMAIN.
391 * NEWS: Mention new 'info modules' command.
392
393 2019-10-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
394
395 * NEWS: Mention $_gdb_setting, $_gdb_setting_str, $_gdb_maint_setting
396 and $_gdb_maint_setting_str.
397
398 2019-10-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
399
400 * cli/cli-cmds.c (setting_cmd, value_from_setting)
401 (gdb_setting_internal_fn, gdb_maint_setting_internal_fn)
402 (str_value_from_setting, gdb_setting_str_internal_fn)
403 (gdb_maint_setting_str_internal_fn): New functions.
404 (_initialize_cli_cmds): Define the new convenience functions.
405 * gdb/cli/cli-setshow.h (get_setshow_command_value_string): Constify.
406 * gdb/cli/cli-setshow.c (get_setshow_command_value_string): Constify.
407
408 2019-10-31 Christian Biesinger <cbiesinger@google.com>
409
410 * agent.c (set_can_use_agent): When the setting is turned on,
411 look up agent symbols if we don't have them yet.
412 (agent_new_objfile): Don't look up agent symbols when the agent
413 setting is off.
414
415 2019-10-31 Christian Biesinger <cbiesinger@google.com>
416
417 * config.in: Regenerate.
418
419 2019-10-31 Christian Biesinger <cbiesinger@google.com>
420
421 * configure: Regenerate.
422 * configure.ac: Check for strerror_r.
423 * gdbsupport/common-utils.h (safe_strerror): Change return value
424 to const char * and document that this function is now threadsafe.
425 * gdbsupport/posix-strerror.c (safe_strerror): Make buf
426 thread_local and call strerror_r, if available.
427 * utils.c (perror_string): Update.
428 (print_sys_errmsg): Update.
429
430 2019-10-31 Luis Machado <luis.machado@linaro.org>
431
432 * arm-tdep.c (arm_exidx_data_key): Use bfd_key instead of
433 objfile_key.
434 (arm_exidx_new_objfile): Adjust to use objfile->obfd instead of
435 objfile to fetch per-bfd data.
436 (arm_find_exidx_entry): Likewise.
437
438 2019-10-31 Christian Biesinger <cbiesinger@google.com>
439
440 * gdbsupport/agent.c (debug_agent): Change type to bool.
441 (use_agent): Likewise.
442 (all_agent_symbols_look_up): Likewise.
443 (agent_loaded_p): Change return value to bool.
444 (agent_look_up_symbols): Update.
445 (agent_capability_check): Change return value to bool.
446 * gdbsupport/agent.h (agent_loaded_p): Likewise.
447 (debug_agent): Change type to bool.
448 (use_agent): Likewise.
449 (agent_capability_check): Change return value to bool.
450
451 2019-10-30 Christian Biesinger <cbiesinger@google.com>
452
453 * minsyms.c (clear_minimal_symbol_hash_tables): New function.
454 (build_minimal_symbol_hash_tables): Code to clear the table moved
455 to clear_minimal_symbol_hash_tables.
456 (minimal_symbol_reader::install): Call clear_minimal_symbol_hash_tables
457 when needed.
458
459 2019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
460
461 * infcmd.c: Remove includes.
462 * infrun.c: Remove includes.
463
464 2019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
465
466 * ada-lang.h (GROW_VECT): Move to ada-lang.c.
467 (grow_vect): Remove declaration.
468 (ada_type_of_array): Remove declaration.
469 (ada_update_initial_language): Remove declaration.
470 (ada_fold_name): Remove declaration.
471 (ada_fill_in_ada_prototype): Remove declaration.
472 (user_select_syms): Remove declaration.
473 (get_selections): Remove declaration.
474 (ada_tag_type): Remove declaration.
475 (ada_value_tag): Remove declaration.
476 (ada_is_others_clause): Remove declaration.
477 (ada_in_variant): Remove declaration.
478 (ada_value_struct_elt): Remove declaration.
479 (ada_attribute_name): Remove declaration.
480 (ada_system_address_type): Remove declaration.
481 * ada-lang.c (ada_watch_location_expression): Make static.
482 (GROW_VECT): Move here from ada-lang.h.
483 (grow_vect): Make static.
484 (ada_update_initial_language): Make static.
485 (ada_fold_name): Make static.
486 (ada_type_of_array): Make static.
487 (encoded_ordered_before): Move up.
488 (sort_choices): Move up.
489 (print_signatures): Move up.
490 (ada_print_symbol_signature): Move up.
491 (get_selections): Move up and make static.
492 (user_select_syms): Move up and make static.
493 (ada_value_struct_elt): Move up and make static.
494 (ada_tag_type): Make static.
495 (ada_value_tag): Make static.
496 (ada_is_others_clause): Make static.
497 (ada_in_variant): Make static.
498 (ada_attribute_name): Make static.
499
500 2019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
501
502 * ada-lang.c: Remove includes.
503 * ada-typeprint.c: Remove includes.
504 * ada-valprint.c: Remove includes.
505
506 2019-10-29 Simon Marchi <simon.marchi@efficios.com>
507
508 * addrmap.c: Add static assertions of type size, moved from
509 _initialize_addrmap.
510 (_initialize_addrmap): Remove.
511
512 2019-10-29 Christian Biesinger <cbiesinger@google.com>
513
514 * coffread.c (record_minimal_symbol): Update.
515 (process_coff_symbol): Update.
516 * dbxread.c (read_dbx_symtab): Update.
517 * dwarf2read.c (add_partial_symbol): Update.
518 (fixup_go_packaging): Update.
519 (load_partial_dies): Update.
520 (new_symbol): Update.
521 * elfread.c (record_minimal_symbol): Change signature to use
522 gdb::string_view instead of name+len.
523 (elf_symtab_read): Update.
524 (elf_rel_plt_read): Update.
525 * mdebugread.c (parse_partial_symbols): Update.
526 (handle_psymbol_enumerators): Update.
527 (new_symbol): Update.
528 * minsyms.c (minimal_symbol_reader::record_full): Change signature
529 to use gdb::string_view instead of name+len.
530 * minsyms.h (class minimal_symbol_reader) <record_full>: Likewise.
531 * psympriv.h (add_psymbol_to_list): Likewise.
532 * psymtab.c (add_psymbol_to_bcache): Likewise.
533 (add_psymbol_to_list): Likewise.
534 * stabsread.c (define_symbol): Update.
535 * symtab.c (symbol_set_names): Change signature to use gdb::string_view.
536 * symtab.h (SYMBOL_SET_NAMES): Likewise.
537 (symbol_set_names): Likewise.
538 * xcoffread.c (scan_xcoff_symtab): Update.
539
540 2019-10-29 Christian Biesinger <cbiesinger@google.com>
541
542 * symtab.h (symbol_set_names): Document that copy_name must be
543 set to true for non-nullterminated strings.
544 * symtab.c (symbol_set_names): Only make a nullterminated copy of
545 linkage_name if the entry was not found and we need to demangle.
546
547 2019-10-29 Christian Biesinger <cbiesinger@google.com>
548
549 * Makefile.in (HFILES_NO_SRCDIR): Add gdb_binary_search.h.
550 * dwarf2-frame.c (bsearch_fde_cmp): Update.
551 (dwarf2_frame_find_fde): Replace bsearch with gdb::binary_search.
552 * gdbsupport/gdb_binary_search.h: New file.
553
554 2019-10-29 Christian Biesinger <cbiesinger@google.com>
555
556 * NEWS: Mention new --with-system-gdbinit-dir option.
557 * config.in: Regenerate.
558 * configure: Regenerate.
559 * configure.ac: Add new option --with-system-gdbinit-dir.
560 * extension.c (get_ext_lang_of_file): Return extension_language_gdb
561 for a ".gdb" suffix.
562 * main.c (get_init_files): Change system_gdbinit argument to
563 a vector and return the files in SYSTEM_GDBINIT_DIR in
564 addition to SYSTEM_GDBINIT.
565 (captured_main_1): Update.
566 (print_gdb_help): Update.
567 * top.c (print_gdb_configuration): Also print the value of
568 SYSTEM_GDBINIT_DIR.
569
570 2019-10-28 Christian Biesinger <cbiesinger@google.com>
571
572 * gdbsupport/common-utils.h (startswith): Add an overloaded version
573 that takes gdb::string_view arguments.
574
575 2019-10-26 Tom de Vries <tdevries@suse.de>
576
577 * aarch64-linux-tdep.c: Fix typos in comments.
578 * aarch64-tdep.c: Same.
579 * ada-lang.c: Same.
580 * amd64-nat.c: Same.
581 * arc-tdep.c: Same.
582 * arch/aarch64-insn.c: Same.
583 * block.c: Same.
584 * breakpoint.h: Same.
585 * btrace.h: Same.
586 * c-varobj.c: Same.
587 * cli/cli-decode.c: Same.
588 * cli/cli-script.c: Same.
589 * cli/cli-utils.h: Same.
590 * coff-pe-read.c: Same.
591 * coffread.c: Same.
592 * compile/compile-cplus-symbols.c: Same.
593 * compile/compile-object-run.c: Same.
594 * completer.c: Same.
595 * corelow.c: Same.
596 * cp-support.c: Same.
597 * demangle.c: Same.
598 * dwarf-index-write.c: Same.
599 * dwarf2-frame.c: Same.
600 * dwarf2-frame.h: Same.
601 * eval.c: Same.
602 * frame-base.h: Same.
603 * frame.h: Same.
604 * gdbcmd.h: Same.
605 * gdbtypes.h: Same.
606 * gnu-nat.c: Same.
607 * guile/scm-objfile.c: Same.
608 * i386-tdep.c: Same.
609 * i386-tdep.h: Same.
610 * infcall.c: Same.
611 * infcall.h: Same.
612 * linux-nat.c: Same.
613 * m68k-tdep.c: Same.
614 * macroexp.c: Same.
615 * memattr.c: Same.
616 * mi/mi-cmd-disas.c: Same.
617 * mi/mi-getopt.h: Same.
618 * mi/mi-main.c: Same.
619 * minsyms.c: Same.
620 * nat/aarch64-sve-linux-sigcontext.h: Same.
621 * objfiles.h: Same.
622 * ppc-linux-nat.c: Same.
623 * ppc-linux-tdep.c: Same.
624 * ppc-tdep.h: Same.
625 * progspace.h: Same.
626 * prologue-value.h: Same.
627 * python/py-evtregistry.c: Same.
628 * python/py-instruction.h: Same.
629 * record-btrace.c: Same.
630 * record-full.c: Same.
631 * remote.c: Same.
632 * rs6000-tdep.c: Same.
633 * ser-tcp.c: Same.
634 * sol-thread.c: Same.
635 * sparc-sol2-tdep.c: Same.
636 * sparc64-tdep.c: Same.
637 * stabsread.c: Same.
638 * symfile.c: Same.
639 * symtab.h: Same.
640 * target.c: Same.
641 * tracepoint.c: Same.
642 * tui/tui-data.h: Same.
643 * tui/tui-io.c: Same.
644 * tui/tui-win.c: Same.
645 * tui/tui.c: Same.
646 * unittests/rsp-low-selftests.c: Same.
647 * user-regs.h: Same.
648 * utils.c: Same.
649 * utils.h: Same.
650 * valarith.c: Same.
651 * valops.c: Same.
652 * valprint.c: Same.
653 * valprint.h: Same.
654 * value.c: Same.
655 * value.h: Same.
656 * varobj.c: Same.
657 * x86-nat.h: Same.
658 * xtensa-tdep.c: Same.
659
660 2019-10-25 Ali Tamur <tamur@google.com>
661
662 * charset.c (find_charset_names): Reflect API change.
663
664 2019-10-25 Christian Biesinger <cbiesinger@google.com>
665
666 * symtab.c (struct demangled_name_entry): Change demangled name
667 to a unique_xmalloc_ptr<char>, now that we don't allocate it as
668 part of the struct anymore.
669 (symbol_set_names): No longer obstack allocate + copy the demangled
670 name, just store the allocated name from bfd.
671
672 2019-10-25 Tom Tromey <tromey@adacore.com>
673
674 * dwarf2-frame.c (dwarf2_cie_table): Now a typedef.
675 (bsearch_cie_cmp, add_cie): Remove.
676 (find_cie): Reimplement.
677 (decode_frame_entry_1, decode_frame_entry): Change type. Update.
678 (dwarf2_build_frame_info): Update.
679
680 2019-10-24 H.J. Lu <hongjiu.lu@intel.com>
681
682 PR gdb/25126
683 * symfile.c (reread_symbols): Call forget_cached_source_info to
684 clear the stale source cache.
685
686 2019-10-24 Christian Biesinger <cbiesinger@google.com>
687
688 * configure: Regenerate.
689 * configure.ac: Remove code that sets python_has_threads.
690
691 2019-10-24 Christian Biesinger <cbiesinger@google.com>
692
693 * config.in: Regenerate.
694 * configure: Regenerate.
695 * configure.ac: Remove the code that uses sed to get the python
696 version and defines HAVE_LIBPYTHON2_6 / HAVE_LIBPYTHON2_7.
697
698 2019-10-24 Andrew Burgess <andrew.burgess@embecosm.com>
699
700 * python/py-progspace.c (pspy_block_for_pc): Return None for all
701 error paths.
702
703 2019-10-23 Tom Tromey <tom@tromey.com>
704
705 * arc-tdep.c: Remove ".." from include.
706 * frv-tdep.c: Remove ".." from include.
707 * lm32-tdep.c: Remove ".." from include.
708 * microblaze-tdep.c: Remove ".." from include.
709 * or1k-tdep.h: Remove ".." from include.
710 * s12z-tdep.c: Remove ".." from include.
711 * Makefile.in (OPCODES_CFLAGS): Add comment.
712 (TOP_CFLAGS): New variable.
713 (INTERNAL_CFLAGS_BASE): Add TOP_CFLAGS.
714
715 2019-10-23 Tom Tromey <tom@tromey.com>
716
717 * Makefile.in (READLINE_DIR): Update.
718
719 2019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
720
721 * infcall.c (call_function_by_hand_dummy): Fix the function
722 comment. And extract out a code section into...
723 (reserve_stack_space): ...this new function.
724
725 2019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
726
727 * infcall.c (value_arg_coerce): Remove an unused parameter.
728 (call_function_by_hand_dummy): Update the call to
729 'value_arg_coerce'.
730
731 2019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
732
733 * infcall.c (call_function_by_hand_dummy): Refactor.
734
735 2019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
736
737 * MAINTAINERS (Write After Approval): Add Tankut Baris Aktemur.
738
739 2019-10-23 Tom Tromey <tom@tromey.com>
740
741 * configure: Rebuild.
742 * configure.ac: Don't check for sigprocmask.
743 * gdbsupport/common.m4 (GDB_AC_COMMON): Check for sigprocmask.
744
745 2019-10-23 Tom Tromey <tom@tromey.com>
746
747 * configure: Rebuild.
748 * acinclude.m4: Use m4_include, not sinclude.
749
750 2019-10-23 Tom de Vries <tdevries@suse.de>
751
752 PR breakpoints/24687
753 * symtab.c (iterate_over_some_symtabs): Apply gdb_realpath on fullname.
754
755 2019-10-22 Christian Biesinger <cbiesinger@google.com>
756
757 * symtab.c (struct demangled_name_entry) <language>: Change from
758 bitfield to regular variable.
759
760 2019-10-22 Christian Biesinger <cbiesinger@google.com>
761
762 * symtab.c (struct demangled_name_entry): Add a constructor.
763 (free_demangled_name_entry): New function to call the destructor
764 for demangled_name_entry.
765 (create_demangled_names_hash): Pass free_demangled_name_entry to
766 htab_create_alloc.
767 (symbol_set_names): Call placement new for demangled_name_entry.
768 * utils.c: No longer include xxhash.h here, now that fast_hash
769 is inlined in the header.
770 * utils.h: Instead, include it here.
771
772 2019-10-22 Christian Biesinger <cbiesinger@google.com>
773
774 * Makefile.in: Link with libxxhash.
775 * config.in: Regenerate.
776 * configure: Regenerate.
777 * configure.ac: Search for libxxhash.
778 * utils.c (fast_hash): Use xxhash if present.
779
780 2019-10-22 Christian Biesinger <cbiesinger@google.com>
781
782 * utils.h (fast_hash): New function.
783 * symtab.c (hash_demangled_name_entry): Call new function
784 fast_hash.
785
786 2019-10-22 Christian Biesinger <cbiesinger@google.com>
787
788 * symtab.c (struct demangled_name_entry): Change type of mangled
789 to gdb::string_view. Also adds a constructor that takes the
790 mangled name.
791 (hash_demangled_name_entry): Update.
792 (eq_demangled_name_entry): Update.
793 (free_demangled_name_entry): New function to call the destructor
794 now that this is not a POD anymore.
795 (create_demangled_names_hash): Pass free_demangled_name_entry to
796 htab_create_alloc.
797 (symbol_set_names): Update.
798
799 2019-10-21 Ali Tamur <tamu@google.com>
800
801 * dwarf2read.c (dir_index): Change type.
802 (file_name_index): Likewise.
803 (line_header::include_dir_at): Change comment and implementation on
804 whether it is DWARF 5.
805 (line_header::is_valid_file_index): New function.
806 (line_header::file_name_at): Change comment and implementation on
807 whether it is DWARF 5.
808 (line_header::file_names): Change to private field renamed as
809 m_file_names and introduce a new accessor method.
810 (line_header::file_names_size): New method.
811 (line_header::include_dirs): Change to private field and rename as
812 m_include_dirs.
813 (dw2_get_file_names_reader): Define local var at a smaller scope and
814 reflect API change.
815 (dwarf2_cu::setup_type_unit_groups): Reflect API change.
816 (process_structure_scope): Likewise.
817 (line_header::add_include_dir): Change message and reflect renaming.
818 (line_header::add_file_name): Likewise.
819 (read_formatted_entries): Handle DW_FORM_data16.
820 (dwarf_decode_line_header): Fix line header length calculation.
821 (psymtab_include_file_name): Change comment and API.
822 (lnp_state_machine::m_file): Update comment and reflect type change.
823 (lnp_state_machine::record_line): Reflect type change.
824 (dwarf_decode_lines): Reflect API change.
825 (file_file_name): Likewise.
826 (file_full_name): Likewise.
827
828 2019-10-21 Andrew Burgess <andrew.burgess@embecosm.com>
829
830 * objfiles.c (sort_cmp): Ensure that !(a < a) holds true.
831
832 2019-10-21 Tom Tromey <tom@tromey.com>
833
834 * tui/tui-winsource.h (tui_exec_info_content): Remove typedef.
835
836 2019-10-21 Tom Tromey <tom@tromey.com>
837
838 * configure.ac (nm.h): Conditionally create nm.h link. Subst
839 NM_H. Use AC_CONFIG_LINKS.
840 * configure: Rebuild.
841 * Makefile.in (NM_H): New variable.
842 (generated_files): Add NM_H. Remove gcore.
843 (nm.h, stamp-nmh): New targets.
844
845 2019-10-20 Tom Tromey <tom@tromey.com>
846
847 * objfiles.h (unlink_objfile, put_objfile_before): Don't declare.
848 * objfiles.c (unlink_objfile): Move earlier. Now static. Remove
849 obsolete comment.
850 (put_objfile_before): Now static.
851
852 2019-10-19 Simon Marchi <simon.marchi@polymtl.ca>
853
854 * gdbsupport/common-utils.h (startswith): Change return type to
855 bool.
856
857 2019-10-19 Christian Biesinger <cbiesinger@google.com>
858
859 * bcache.c (bcache::print_statistics): Use std::sort instead of qsort.
860 * breakpoint.c (bp_locations_compare): Rename to...
861 (bp_location_is_less_than): ...this, and change to std::sort semantics.
862 (update_global_location_list): Use std::sort instead of qsort.
863 * buildsym.c (compare_line_numbers): Rename to...
864 (lte_is_less_than): ...this, and change to std::sort semantics.
865 (buildsym_compunit::end_symtab_with_blockvector): Use std::sort
866 instead of qsort.
867 * disasm.c (compare_lines): Rename to...
868 (line_is_less_than): ...this, and change to std::sort semantics.
869 (do_mixed_source_and_assembly_deprecated): Call std::sort instead
870 of qsort.
871 * dwarf2-frame.c (qsort_fde_cmp): Rename to...
872 (fde_is_less_than): ...this, and change to std::sort semantics.
873 (dwarf2_build_frame_info): Call std::sort instead of qsort.
874 * mdebugread.c (compare_blocks):
875 (block_is_less_than): ...this, and change to std::sort semantics.
876 (sort_blocks): Call std::sort instead of qsort.
877 * objfiles.c (qsort_cmp): Rename to...
878 (sort_cmp): ...this, and change to std::sort semantics.
879 (update_section_map): Call std::sort instead of qsort.
880 * remote.c (compare_pnums): Remove.
881 (map_regcache_remote_table): Call std::sort instead of qsort.
882 * utils.c (compare_positive_ints): Remove.
883 * utils.h (compare_positive_ints): Remove.
884 * xcoffread.c (compare_lte): Remove.
885 (arrange_linetable): Call std::sort instead of qsort.
886
887 2019-10-19 Sergio Durigan Junior <sergiodj@redhat.com>
888
889 * symfile.c (init_entry_point_info): Fix typo.
890 * i386-darwin-tdep.c (darwin_dwarf_signal_frame_p): Fix typo.
891
892 2019-10-18 Tom de Vries <tdevries@suse.de>
893
894 * aarch64-tdep.c: Fix typos in comments.
895 * ada-lang.c: Same.
896 * ada-tasks.c: Same.
897 * alpha-tdep.c: Same.
898 * alpha-tdep.h: Same.
899 * amd64-nat.c: Same.
900 * amd64-windows-tdep.c: Same.
901 * arc-tdep.c: Same.
902 * arc-tdep.h: Same.
903 * arch-utils.c: Same.
904 * arm-nbsd-tdep.c: Same.
905 * arm-tdep.c: Same.
906 * ax-gdb.c: Same.
907 * blockframe.c: Same.
908 * btrace.c: Same.
909 * c-varobj.c: Same.
910 * coff-pe-read.c: Same.
911 * coffread.c: Same.
912 * cris-tdep.c: Same.
913 * darwin-nat.c: Same.
914 * dbxread.c: Same.
915 * dcache.c: Same.
916 * disasm.c: Same.
917 * dtrace-probe.c: Same.
918 * dwarf-index-write.c: Same.
919 * dwarf2-frame-tailcall.c: Same.
920 * dwarf2-frame.c: Same.
921 * dwarf2read.c: Same.
922 * eval.c: Same.
923 * exceptions.c: Same.
924 * fbsd-tdep.c: Same.
925 * findvar.c: Same.
926 * frame.c: Same.
927 * frv-tdep.c: Same.
928 * gnu-v3-abi.c: Same.
929 * go32-nat.c: Same.
930 * h8300-tdep.c: Same.
931 * hppa-tdep.c: Same.
932 * i386-linux-tdep.c: Same.
933 * i386-tdep.c: Same.
934 * ia64-libunwind-tdep.c: Same.
935 * ia64-tdep.c: Same.
936 * infcmd.c: Same.
937 * infrun.c: Same.
938 * linespec.c: Same.
939 * linux-nat.c: Same.
940 * linux-thread-db.c: Same.
941 * machoread.c: Same.
942 * mdebugread.c: Same.
943 * mep-tdep.c: Same.
944 * mn10300-tdep.c: Same.
945 * namespace.c: Same.
946 * objfiles.c: Same.
947 * opencl-lang.c: Same.
948 * or1k-tdep.c: Same.
949 * osabi.c: Same.
950 * ppc-linux-nat.c: Same.
951 * ppc-linux-tdep.c: Same.
952 * ppc-sysv-tdep.c: Same.
953 * printcmd.c: Same.
954 * procfs.c: Same.
955 * record-btrace.c: Same.
956 * record-full.c: Same.
957 * remote-fileio.c: Same.
958 * remote.c: Same.
959 * rs6000-tdep.c: Same.
960 * s12z-tdep.c: Same.
961 * score-tdep.c: Same.
962 * ser-base.c: Same.
963 * ser-go32.c: Same.
964 * skip.c: Same.
965 * sol-thread.c: Same.
966 * solib-svr4.c: Same.
967 * solib.c: Same.
968 * source.c: Same.
969 * sparc-nat.c: Same.
970 * sparc-sol2-tdep.c: Same.
971 * sparc-tdep.c: Same.
972 * sparc64-tdep.c: Same.
973 * stabsread.c: Same.
974 * stack.c: Same.
975 * symfile.c: Same.
976 * symtab.c: Same.
977 * target-descriptions.c: Same.
978 * target-float.c: Same.
979 * thread.c: Same.
980 * utils.c: Same.
981 * valops.c: Same.
982 * valprint.c: Same.
983 * value.c: Same.
984 * varobj.c: Same.
985 * windows-nat.c: Same.
986 * xcoffread.c: Same.
987 * xstormy16-tdep.c: Same.
988 * xtensa-tdep.c: Same.
989
990 2019-10-17 Tom Tromey <tromey@adacore.com>
991
992 * configure: Rebuild.
993 * configure.ac: Use AC_CONFIG_HEADERS. Create stamp-h there, not
994 in AC_CONFIG_FILES invocation.
995 * Makefile.in (Makefile, data-directory/Makefile, stamp-h): Use
996 new-style config.status invocation.
997
998 2019-10-17 Tom de Vries <tdevries@suse.de>
999
1000 * arm-nbsd-nat.c: Fix typos in comments.
1001 * arm-tdep.c: Same.
1002 * darwin-nat-info.c: Same.
1003 * dwarf2read.c: Same.
1004 * elfread.c: Same.
1005 * event-top.c: Same.
1006 * findvar.c: Same.
1007 * gdbtypes.c: Same.
1008 * hppa-tdep.c: Same.
1009 * i386-tdep.c: Same.
1010 * jit.c: Same.
1011 * main.c: Same.
1012 * mdebugread.c: Same.
1013 * moxie-tdep.c: Same.
1014 * nto-procfs.c: Same.
1015 * osabi.c: Same.
1016 * ppc-linux-tdep.c: Same.
1017 * remote.c: Same.
1018 * riscv-tdep.c: Same.
1019 * s390-tdep.c: Same.
1020 * sh-tdep.c: Same.
1021 * sparc-linux-tdep.c: Same.
1022 * sparc-nat.c: Same.
1023 * stack.c: Same.
1024 * target-descriptions.c: Same.
1025 * top.c: Same.
1026 * varobj.c: Same.
1027
1028 2019-10-16 Tom Tromey <tom@tromey.com>
1029
1030 * objfiles.h (struct objfile) <original_name>: Now const.
1031
1032 2019-10-16 Christian Biesinger <cbiesinger@google.com>
1033
1034 * gdbsupport/gdb_setjmp.h (SIGSETJMP): Allow passing in the value to
1035 pass on to sigsetjmp's second argument.
1036 * cp-support.c (gdb_demangle): Unblock SIGSEGV if we caught a crash.
1037
1038 2019-10-16 Keith Seitz <keiths@redhat.com>
1039
1040 PR gdb/23567
1041 * dwarf2read.c (dwarf2_per_objfile::locate_sections): Discard
1042 sections whose size is greater than the file size.
1043
1044 2019-10-16 Jim Wilson <jimw@sifive.com>
1045
1046 * riscv-tdep.c (riscv_gcc_target_options): New.
1047 (riscv_gnu_triplet_regexp): New.
1048 (riscv_gdbarch_init): Call set_gdbarch_gcc_triplet_options and
1049 set_gdbarch_gnu_triplet_regexp.
1050
1051 2019-10-16 Christian Biesinger <cbiesinger@google.com>
1052
1053 * Makefile.in: Add xml-builtin.h.
1054 * features/feature_to_c.sh: Add an include for xml-builtin.h
1055 to ensure that the compiler checks that the types match.
1056 * xml-builtin.h: New file.
1057 * xml-support.c (fetch_xml_builtin): Add missing const.
1058 * xml-support.h: Remove declaration of xml_builtins.
1059
1060 2019-10-16 Tom de Vries <tdevries@suse.de>
1061
1062 PR tdep/25096
1063 * amd64-tdep.c (amd64_classify_aggregate_field): Factor out of ...
1064 (amd64_classify_aggregate): ... here.
1065 (amd64_classify_aggregate_field): Handled fiels of nested structs
1066 recursively.
1067
1068 2019-10-16 Tom de Vries <tdevries@suse.de>
1069
1070 PR tdep/24104
1071 * amd64-tdep.c (amd64_push_arguments): Handle AMD64_NO_CLASS in loop
1072 that handles 'theclass'.
1073
1074 2019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
1075
1076 * linespec.c (decode_digits_ordinary): Update comment.
1077 * make-target-delegates: No longer need to handle VEC case.
1078 * memrange.c (normalize_mem_ranges): Update comment.
1079 * namespace.c (add_using_directive): Update comment.
1080 * objc-lang.c (uniquify_strings): Update comment.
1081 * ppc-linux-nat.c (struct thread_points): Update comment.
1082 * probe.h (find_probes_in_objfile): Update comment.
1083 * target.h (enum flash_preserve_mode): Update comment.
1084 * varobj.c (varobj_restrict_range): Update comment.
1085 * varobj.h (varobj_list_children): Update comment.
1086
1087 2019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
1088
1089 * Makefile.in: Remove references to vec.h and vec.c.
1090 * aarch64-tdep.c: No longer include vec.h.
1091 * ada-lang.c: Likewise.
1092 * ada-lang.h: Likewise.
1093 * arm-tdep.c: Likewise.
1094 * ax.h: Likewise.
1095 * breakpoint.h: Likewise.
1096 * charset.c: Likewise.
1097 * cp-support.h: Likewise.
1098 * dtrace-probe.c: Likewise.
1099 * dwarf2read.c: Likewise.
1100 * extension.h: Likewise.
1101 * gdb_bfd.c: Likewise.
1102 * gdbsupport/gdb_vecs.h: Likewise.
1103 * gdbsupport/vec.c: Remove.
1104 * gdbsupport/vec.h: Remove.
1105 * gdbthread.h: Likewise.
1106 * guile/scm-type.c: Likewise.
1107 * inline-frame.c: Likewise.
1108 * machoread.c: Likewise.
1109 * memattr.c: Likewise.
1110 * memrange.h: Likewise.
1111 * namespace.h: Likewise.
1112 * nat/linux-btrace.h: Likewise.
1113 * osdata.c: Likewise.
1114 * parser-defs.h: Likewise.
1115 * progspace.h: Likewise.
1116 * python/py-type.c: Likewise.
1117 * record-btrace.c: Likewise.
1118 * rust-exp.y: Likewise.
1119 * solib-target.c: Likewise.
1120 * stap-probe.c: Likewise.
1121 * target-descriptions.c: Likewise.
1122 * target-memory.c: Likewise.
1123 * target.h: Likewise.
1124 * varobj.c: Likewise.
1125 * varobj.h: Likewise.
1126 * xml-support.h: Likewise.
1127
1128 2019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
1129
1130 * gdb/dwarf2read.c (dwarf2_per_objfile::~dwarf2_per_objfile):
1131 Update for new std::vector based implementation.
1132 (process_psymtab_comp_unit_reader): Likewise.
1133 (scan_partial_symbols): Likewise.
1134 (recursively_compute_inclusions): Likewise.
1135 (compute_compunit_symtab_includes): Likewise.
1136 (process_imported_unit_die): Likewise.
1137 (queue_and_load_dwo_tu): Likewise.
1138 (follow_die_sig_1): Likewise.
1139 * gdb/dwarf2read.h: Remove DEF_VEC_P.
1140 (typedef dwarf2_per_cu_ptr): Remove.
1141 (struct dwarf2_per_cu_data) <imported_symtabs_empty>: New
1142 function.
1143 (struct dwarf2_per_cu_data) <imported_symtabs_push>: New function.
1144 (struct dwarf2_per_cu_data) <imported_symtabs_size>: New function.
1145 (struct dwarf2_per_cu_data) <imported_symtabs_free>: New function.
1146 (struct dwarf2_per_cu_data) <imported_symtabs>: Change to
1147 std::vector.
1148
1149 2019-10-15 Tom Tromey <tromey@adacore.com>
1150
1151 * windows-nat.c (windows_nat_target::resume): Use %x when logging
1152 TID.
1153
1154 2019-10-15 Tom Tromey <tromey@adacore.com>
1155
1156 * windows-nat.c (windows_nat_target::fetch_registers)
1157 (windows_nat_target::store_registers): Rename "pid" to "tid".
1158
1159 2019-10-15 Tom Tromey <tromey@adacore.com>
1160
1161 * gdbarch.h, gdbarch.c: Rebuild.
1162 * gdbarch.sh (gcc_target_options): Change return type to
1163 std::string.
1164 * compile/compile.c (get_args): Update.
1165 * nios2-tdep.c (nios2_gcc_target_options): Return std::string.
1166 * arm-linux-tdep.c (arm_linux_gcc_target_options): Return
1167 std::string.
1168 * aarch64-linux-tdep.c (aarch64_linux_gcc_target_options): Return
1169 std::string.
1170 * arch-utils.c (default_gcc_target_options): Return std::string.
1171 * arch-utils.h (default_gcc_target_options): Return std::string.
1172 * s390-tdep.c (s390_gcc_target_options): Return std::string.
1173
1174 2019-10-15 Christian Biesinger <cbiesinger@google.com>
1175
1176 * breakpoint.c (breakpoint_chain): Make static.
1177 * tui/tui-winsource.c: Call iterate_over_breakpoints instead
1178 of accessing breakpoint_chain.
1179
1180 2019-10-15 Christian Biesinger <cbiesinger@google.com>
1181
1182 * breakpoint.c (iterate_over_breakpoints): Change function pointer
1183 to a gdb::function_view and return value to bool.
1184 * breakpoint.h (iterate_over_breakpoints): Likewise.
1185 * dummy-frame.c (pop_dummy_frame_bpt): Update.
1186 (pop_dummy_frame): Update.
1187 * guile/scm-breakpoint.c (bpscm_build_bp_list): Update.
1188 (gdbscm_breakpoints): Update.
1189 * python/py-breakpoint.c (build_bp_list): Update.
1190 (gdbpy_breakpoints): Update.
1191 * python/py-finishbreakpoint.c (bpfinishpy_detect_out_scope_cb):
1192 Update.
1193 (bpfinishpy_handle_stop): Update.
1194 (bpfinishpy_handle_exit): Update.
1195 * solib-svr4.c (svr4_update_solib_event_breakpoint): Update.
1196 (svr4_update_solib_event_breakpoints): Update.
1197
1198 2019-10-15 Andreas Arnez <arnez@linux.ibm.com>
1199
1200 * s390-tdep.c (s390_effective_inner_type): Ignore static fields
1201 when unwrapping single-field structs.
1202
1203 2019-10-14 Simon Marchi <simon.marchi@polymtl.ca>
1204
1205 * dwarf2read.c: Remove includes.
1206
1207 2019-10-13 Simon Marchi <simon.marchi@polymtl.ca>
1208
1209 * ui-out.c (ui_out::call_do_message): Silence
1210 -Wformat-nonliteral warning.
1211
1212 2019-10-12 Simon Marchi <simon.marchi@polymtl.ca>
1213
1214 * breakpoint.c: Remove some includes: continuations.h, skip.h,
1215 mi/mi-main.h, readline/readline.h, readline/history.h. Add
1216 include: readline/tilde.h.
1217
1218 2019-10-12 Christian Biesinger <cbiesinger@google.com>
1219
1220 * remote.c (remote_target::get_trace_status): Remove declaration of
1221 trace_regblock_size.
1222
1223 2019-10-12 Christian Biesinger <cbiesinger@google.com>
1224
1225 * cli/cli-cmds.c (max_user_call_depth): Move comment to header.
1226 (show_user): Remove declaration of cmdlist.
1227 * cli/cli-cmds.h (max_user_call_depth): Declare.
1228 * cli/cli-script.c (execute_user_command): Remove declaration
1229 of max_user_call_depth.
1230
1231 2019-10-11 Jim Wilson <jimw@sifive.com>
1232
1233 * gdbsupport/print-utils.h (pulongest): Fix comment.
1234 (plongest): Likewise.
1235 (phex): Add missing comment, mention leading zeros.
1236 (phex_nz): Add mention of no leading zeros to comment.
1237
1238 * riscv-tdep.c (riscv_push_dummy_code): Change %lld to %s and use
1239 plongest instead of unsigned long long cast.
1240
1241 2019-10-10 Christian Biesinger <cbiesinger@google.com>
1242
1243 * main.c (captured_main_1): Include gdbtk.h and remove declarations
1244 for external_editor_command and gdbtk_test.
1245
1246 2019-10-10 Christian Biesinger <cbiesinger@google.com>
1247
1248 * mi/mi-cmd-var.c (varobjdebug): Remove declaration.
1249 * varobj.c (varobjdebug): Move comment to...
1250 * varobj.h (varobjdebug): ...here, and declare.
1251
1252 2019-10-09 Tom Tromey <tom@tromey.com>
1253
1254 * tui/tui-regs.c (tui_data_window::show_registers): Don't call
1255 erase_data_content.
1256
1257 2019-10-09 Tom Tromey <tom@tromey.com>
1258
1259 * tui/tui-wingeneral.h (tui_delete_win): Don't declare.
1260 * tui/tui-stack.c (tui_locator_window::rerender): Update.
1261 * tui/tui-command.c (tui_cmd_window::resize)
1262 (tui_refresh_cmd_win): Update.
1263 * tui/tui-win.c (tui_resize_all, tui_set_focus_command): Update.
1264 * tui/tui.c (tui_rl_other_window, tui_enable): Update.
1265 * tui/tui-data.c (~tui_gen_win_info): Remove.
1266 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
1267 * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts)
1268 (tui_redisplay_readline, tui_mld_flush)
1269 (tui_mld_erase_entire_line, tui_mld_getc, tui_getc): Update.
1270 * tui/tui-regs.c (tui_data_window::delete_data_content_windows)
1271 (tui_data_window::erase_data_content)
1272 (tui_data_item_window::rerender)
1273 (tui_data_item_window::refresh_window): Update.
1274 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window)
1275 (box_win, tui_gen_win_info::make_window)
1276 (tui_gen_win_info::make_visible): Update.
1277 (tui_delete_win): Remove.
1278 * tui/tui-winsource.c
1279 (tui_source_window_base::do_erase_source_content): Update.
1280 (tui_show_source_line, tui_source_window_base::update_tab_width)
1281 (tui_source_window_base::update_exec_info): Update.
1282 * tui/tui-data.h (struct curses_deleter): New.
1283 (struct tui_gen_win_info) <handle>: Now a unique_ptr.
1284 (struct tui_gen_win_info) <~tui_gen_win_info>: Define.
1285
1286 2019-10-09 Tom Tromey <tom@tromey.com>
1287
1288 * tui/tui-wingeneral.h (struct tui_gen_win_info): Don't declare.
1289
1290 2019-10-09 Tom Tromey <tom@tromey.com>
1291
1292 * tui/tui-data.c (tui_win_is_auxiliary): Remove.
1293 * tui/tui-data.h (tui_win_is_auxiliary): Don't declare.
1294
1295 2019-10-09 Tom Tromey <tom@tromey.com>
1296
1297 * tui/tui-disasm.c (tui_get_low_disassembly_address): Compute
1298 window height directly.
1299 * tui/tui-layout.h (tui_default_win_viewport_height): Don't
1300 declare.
1301 * tui/tui-layout.c (tui_default_win_height): Remove.
1302 (tui_default_win_viewport_height): Remove.
1303
1304 2019-10-09 Tom Tromey <tom@tromey.com>
1305
1306 * tui/tui.h: Remove comments.
1307
1308 2019-10-09 Tom de Vries <tdevries@suse.de>
1309
1310 * python/lib/gdb/printer/bound_registers.py: Use
1311 '^builtin_type_bound128' as regexp argument for
1312 add_builtin_pretty_printer.
1313
1314 2019-10-09 Christian Biesinger <cbiesinger@google.com>
1315
1316 * guile/guile.c (guile_extension_script_ops): Remove forward
1317 declaration and mark as static.
1318 (guile_script_ops): Likewise.
1319 (extension_language_guile): Move further down in the file so
1320 it can reference the definitions for guile_{extension_,}script_ops.
1321
1322 2019-10-09 Andreas Arnez <arnez@linux.ibm.com>
1323
1324 * s390-tdep.c (390_process_record): Handle new arch13 instructions
1325 except SORTL, DFLTCC, and KDSA.
1326
1327 2019-10-08 Tom Tromey <tromey@adacore.com>
1328
1329 * windows-nat.c (struct windows_thread_info_struct) <sf>: Remove.
1330 (struct safe_symbol_file_add_args): Remove.
1331
1332 2019-10-08 Tom Tromey <tromey@adacore.com>
1333
1334 * windows-nat.c: Don't include buildsym-legacy.h.
1335
1336 2019-10-08 Tom Tromey <tromey@adacore.com>
1337
1338 * contrib/ari/gdb_ari.sh (%p): Allow gdb-specific %p extensions.
1339
1340 2019-10-08 Christian Biesinger <cbiesinger@google.com>
1341
1342 * gdbtypes.c (overload_debug): Move comment to header.
1343 * gdbtypes.h (overload_debug): Declare.
1344 * valops.c: Remove declaration of overload_debug, instead
1345 include gdbtypes.h.
1346
1347 2019-10-08 Christian Biesinger <cbiesinger@google.com>
1348
1349 * language.c (show_language_command): Pass lang_frame_mismatch_warn
1350 through _().
1351 (lang_frame_mismatch_warn): Make const, mark with N_(), and
1352 move comment...
1353 * language.h (lang_frame_mismatch_warn): ... here. Also add
1354 declaration.
1355 * top.c (lang_frame_mismatch_warn): Remove declaration.
1356 (check_frame_language_change): Pass lang_frame_mismatch_warn
1357 through _().
1358
1359 2019-10-07 Christian Biesinger <cbiesinger@google.com>
1360
1361 * c-lang.h (vtbl_ptr_name): Declare.
1362 * cp-valprint.c (vtbl_ptr_name): Remove "extern" now that we get
1363 it from the header.
1364 * stabsread.c (define_symbol): Remove declaration of vtbl_ptr_name.
1365
1366 2019-10-07 Christian Biesinger <cbiesinger@google.com>
1367
1368 * charset.c (your_gdb_wchar_t_is_bogus): Replace with a
1369 gdb_static_assert.
1370
1371 2019-10-07 Weimin Pan <weimin.pan@oracle.com>
1372
1373 * ../Makefile.def (dependencies): Add all-libctf to all-gdb
1374 * ../Makefile.in: Add "all-gdb: maybe-all-libctf"
1375 * ctfread.c: New file.
1376 * ctfread.h: New file.
1377 * elfread.c: Include ctfread.h.
1378 (struct elfinfo text_p): New member ctfsect.
1379 (elf_locate_sections): Mark CTF section.
1380 (elf_symfile_read): Call elfctf_build_psymtabs.
1381 * Makefile.in (LIBCTF): Add.
1382 (CLIBS): Use it.
1383 (CDEPS): Likewise.
1384 (DIST): Add ctfread.c.
1385
1386 2019-10-07 Andrew Burgess <andrew.burgess@embecosm.com>
1387
1388 * ctfread.c (struct nextfield): Renamed to ...
1389 (struct ctf_nextfield): ... this.
1390 (struct field_info): Renamed to ...
1391 (strut ctf_field_info): ... this.
1392 (attach_fields_to_type): Update for renamed structures.
1393 (ctf_add_member_cb): Likewise.
1394 (ctf_add_enum_member_cb): Likewise.
1395 (process_struct_members): Likewise.
1396 (process_enum_type): Likewise.
1397
1398 2019-10-07 Weimin Pan <weimin.pan@oracle.com>
1399
1400 * tracectf.h: Rename, was ctf.h.
1401 * tracectf.c: Rename, was ctf.c, replace ctf.h with tracectf.h.
1402 * tracefile.c: Likewise.
1403 * tracepoint.c: Remove unused include ctf.h.
1404 * mi/mi-main.c: Likewise.
1405 * Makefile.in Replace ctf.c with tracectf.c.
1406
1407 2019-10-06 Joel Brobecker <brobecker@adacore.com>
1408
1409 * version.in: Change version number to "9.0.50.DATE-git".
1410
1411 2019-10-03 Tom Tromey <tom@tromey.com>
1412
1413 PR rust/24976:
1414 * dwarf2read.c (quirk_rust_enum): Handle single-element unions.
1415
1416 2019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
1417
1418 * f-lang.c (f_language_defn): Use cp_get_symbol_name_matcher and
1419 cp_search_name_hash.
1420 * NEWS: Add entry about nested function support.
1421
1422 2019-10-03 Bernhard Heckel <bernhard.heckel@intel.com>
1423 Andrew Burgess <andrew.burgess@embecosm.com>
1424
1425 * cp-namespace.c (cp_search_static_and_baseclasses): Only search
1426 for nested static variables when searchin VAR_DOMAIN.
1427 * dwarf2read.c (add_partial_symbol): Add nested subroutines to the
1428 global scope, update comment.
1429 (add_partial_subprogram): Call add_partial_subprogram recursively
1430 for nested subroutines when processinng Fortran.
1431 (load_partial_dies): Process the child entities of a subprogram
1432 when processing Fortran.
1433 (partial_die_parent_scope): Handle building scope
1434 for Fortran nested functions.
1435 (process_die): Record that nested functions have a scope.
1436 (new_symbol): Always record Fortran subprograms on the global
1437 symbol list.
1438 (determine_prefix): How to build the prefix for Fortran
1439 subprograms.
1440
1441 2019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
1442
1443 * linux-nat.c (linux_nat_filter_event): Don't ignore SIGSTOP if we
1444 have just sent the thread a SIGSTOP and are waiting for it to
1445 arrive.
1446
1447 2019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
1448
1449 * btrace.c (btrace_add_pc): Remove whitespace before the template
1450 parameter in 'std::vector <...>'.
1451 (parse_xml_btrace_block): Likewise.
1452 (btrace_maint_decode_pt): Likewise.
1453 (btrace_maint_update_packets): Likewise.
1454 (btrace_maint_print_packets): Likewise.
1455 * btrace.h (struct btrace_maint_info): Likewise.
1456 * dwarf2read.c (struct type_unit_group): Likewise.
1457 (build_type_psymtabs_reader): Likewise.
1458 * gdbsupport/btrace-common.c (btrace_data_append): Likewise.
1459 * gdbsupport/btrace-common.h (struct btrace_data_bts): Likewise.
1460 * nat/linux-btrace.c (perf_event_read_bts): Likewise.
1461
1462 2019-10-03 Tom de Vries <tdevries@suse.de>
1463
1464 * cli/cli-style.c (_initialize_cli_style): Adding a '.' at the end of
1465 the first line of the help text for set/show style metadata.
1466
1467 2019-10-02 Tom Tromey <tromey@adacore.com>
1468
1469 * Makefile.in (COMMON_SFILES): Add common-inferior.c.
1470 * gdbsupport/common-inferior.c: New file.
1471 * infcmd.c (startup_with_shell): Don't define.
1472 * nat/fork-inferior.h (startup_with_shell): Don't declare.
1473 * gdbsupport/common-inferior.h (startup_with_shell): Declare.
1474 * inferior.h (startup_with_shell): Don't declare.
1475
1476 2019-10-02 Christian Biesinger <cbiesinger@google.com>
1477
1478 * gdbsupport/gdb_assert.h: Include errors.h.
1479 * gdbsupport/gdb_string_view.h: Include gdb_assert.h.
1480
1481 2019-10-02 Tom Tromey <tromey@adacore.com>
1482
1483 * NEWS: Add $_ada_exception entry.
1484 * ada-lang.c (struct ada_catchpoint): Add constructor.
1485 <m_kind>: New member.
1486 (allocate_location_exception, re_set_exception): Remove
1487 "ex" parameter.
1488 (should_stop_exception): Compute $_ada_exception.
1489 (check_status_exception, print_it_exception)
1490 (print_one_exception, print_mention_exception): Remove
1491 "ex" parameter.
1492 (allocate_location_catch_exception, re_set_catch_exception)
1493 (check_status_exception, print_it_catch_exception)
1494 (print_one_catch_exception, print_mention_catch_exception)
1495 (print_recreate_catch_exception)
1496 (allocate_location_catch_exception_unhandled)
1497 (re_set_catch_exception_unhandled)
1498 (check_status_exception, print_it_catch_exception_unhandled)
1499 (print_one_catch_exception_unhandled)
1500 (print_mention_catch_exception_unhandled)
1501 (print_recreate_catch_exception_unhandled)
1502 (allocate_location_catch_assert, re_set_catch_assert)
1503 (check_status_assert, print_it_catch_assert)
1504 (print_one_catch_assert, print_mention_catch_assert)
1505 (print_recreate_catch_assert)
1506 (allocate_location_catch_handlers, re_set_catch_handlers)
1507 (check_status_handlers, print_it_catch_handlers)
1508 (print_one_catch_handlers, print_mention_catch_handlers)
1509 (print_recreate_catch_handlers): Remove.
1510 (create_ada_exception_catchpoint): Update.
1511 (initialize_ada_catchpoint_ops): Update.
1512
1513 2019-10-02 Tom Tromey <tromey@adacore.com>
1514
1515 * ada-lang.c (ada_lookup_simple_minsyms): Remove.
1516 (create_excep_cond_exprs): Simplify exception string computation.
1517 (ada_exception_catchpoint_cond_string): Likewise.
1518
1519 2019-10-02 Tom Tromey <tromey@adacore.com>
1520
1521 * symmisc.c (dump_msymbols): Don't use MSYMBOL_VALUE_ADDRESS.
1522 * ada-lang.c (lesseq_defined_than): Handle
1523 LOC_STATIC.
1524 * dwarf2read.c (dwarf2_per_objfile): Add can_copy
1525 parameter.
1526 (dwarf2_has_info): Likewise.
1527 (new_symbol): Set maybe_copied on symbol when
1528 appropriate.
1529 * dwarf2read.h (dwarf2_per_objfile): Add can_copy
1530 parameter.
1531 <can_copy>: New member.
1532 * elfread.c (record_minimal_symbol): Set maybe_copied
1533 on symbol when appropriate.
1534 (elf_symfile_read): Update call to dwarf2_has_info.
1535 * minsyms.c (lookup_minimal_symbol_linkage): New
1536 function.
1537 * minsyms.h (lookup_minimal_symbol_linkage): Declare.
1538 * symtab.c (get_symbol_address, get_msymbol_address):
1539 New functions.
1540 * symtab.h (get_symbol_address, get_msymbol_address):
1541 Declare.
1542 (SYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_ADDRESS): Handle
1543 maybe_copied.
1544 (struct symbol, struct minimal_symbol) <maybe_copied>:
1545 New member.
1546
1547 2019-10-02 Tom Tromey <tromey@adacore.com>
1548
1549 * source.c (struct current_source_location): New.
1550 (current_source_key): New global.
1551 (current_source_symtab, current_source_line)
1552 (current_source_pspace): Remove.
1553 (get_source_location): New function.
1554 (get_current_source_symtab_and_line)
1555 (set_default_source_symtab_and_line)
1556 (set_current_source_symtab_and_line)
1557 (clear_current_source_symtab_and_line, select_source_symtab)
1558 (info_source_command, print_source_lines_base)
1559 (info_line_command, search_command_helper, _initialize_source):
1560 Update.
1561
1562 2019-10-02 Tom Tromey <tromey@adacore.com>
1563
1564 * source.c (select_source_symtab): Don't call
1565 decode_line_with_current_source.
1566
1567 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
1568
1569 * symtab.c (lookup_global_symbol): Search global block.
1570
1571 2019-10-02 Tom Tromey <tromey@adacore.com>
1572
1573 * coffread.c (process_coff_symbol): Update.
1574 * dwarf2read.c (var_decode_location, new_symbol): Update.
1575 * mdebugread.c (parse_symbol): Update.
1576 * objfiles.c (relocate_one_symbol): Update.
1577 * stabsread.c (define_symbol, fix_common_block)
1578 (scan_file_globals): Update.
1579 * symtab.h (SYMBOL_VALUE_ADDRESS): Expand to an rvalue.
1580 (SET_SYMBOL_VALUE_ADDRESS): New macro.
1581 * xcoffread.c (process_xcoff_symbol): Update.
1582
1583 2019-10-02 Andreas Arnez <arnez@linux.ibm.com>
1584
1585 * MAINTAINERS: Update my email address.
1586
1587 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
1588
1589 * dwarf2read.c (struct type_unit_group) <tus>: Convert to
1590 std::vector.
1591 (build_type_psymtabs_reader): Update for std::vector.
1592 (build_type_psymtab_dependencies): Likewise.
1593 * dwarf2read.h: Remove use of DEF_VEC_P.
1594 (typedef sig_type_ptr): Delete.
1595
1596 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
1597
1598 * btrace.c (btrace_maint_clear): Update to handle change from VEC
1599 to std::vector.
1600 (btrace_maint_decode_pt): Likewise, and move allocation of the
1601 vector outside of the loop.
1602 (btrace_maint_update_packets): Update to handle change from VEC to
1603 std::vector.
1604 (btrace_maint_print_packets): Likewise.
1605 (maint_info_btrace_cmd): Likewise.
1606 * btrace.h: Remove use of DEF_VEC_O.
1607 (typedef btrace_pt_packet_s): Delete.
1608 (struct btrace_maint_info) <packets>: Change fromm VEC to
1609 std::vector.
1610 * gdbsupport/btrace-common.h: Remove 'vec.h' include.
1611
1612 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
1613
1614 * btrace.c (btrace_compute_ftrace_bts): Update for std::vector,
1615 make accesses into the vector constant references.
1616 (btrace_add_pc): Update for std::vector.
1617 (btrace_stitch_bts): Likewise.
1618 (parse_xml_btrace_block): Likewise.
1619 (btrace_maint_update_packets): Likewise.
1620 (btrace_maint_print_packets): Likewise.
1621 (maint_info_btrace_cmd): Likewise.
1622 * gdbsupport/btrace-common.c (btrace_data::fini): Update for
1623 std::vector.
1624 (btrace_data::empty): Likewise.
1625 (btrace_data_append): Likewise.
1626 * gdbsupport/btrace-common.h: Remove use of DEF_VEC_O.
1627 (typedef btrace_block_s): Delete.
1628 (struct btrace_block): Add constructor.
1629 (struct btrace_data_bts) <blocks>: Change to std::vector.
1630 * nat/linux-btrace.c (perf_event_read_bts): Update for
1631 std::vector.
1632 (linux_read_bts): Likewise.
1633
1634 2019-10-01 Tom Tromey <tom@tromey.com>
1635
1636 * cli/cli-logging.c (show_logging_filename): Use styled_string.
1637
1638 2019-10-01 Tom Tromey <tom@tromey.com>
1639
1640 * stack.c (print_frame, info_frame_command_core): Use
1641 styled_string.
1642 * linux-thread-db.c (try_thread_db_load_1)
1643 (try_thread_db_load_from_pdir_1): Use styled_string.
1644 * auto-load.c (file_is_auto_load_safe, execute_script_contents)
1645 (auto_load_section_scripts, info_auto_load_local_gdbinit)
1646 (maybe_print_unsupported_script_warning)
1647 (maybe_print_script_not_found_warning): Use styled_string.
1648 * ada-lang.c (user_select_syms): Use styled_string.
1649
1650 2019-10-01 Tom Tromey <tom@tromey.com>
1651
1652 * p-lang.c (pascal_printstr): Use metadata style.
1653 * value.c (show_convenience): Use metadata style.
1654 * valprint.c (valprint_check_validity, val_print_optimized_out)
1655 (val_print_not_saved, val_print_unavailable)
1656 (val_print_invalid_address, generic_val_print, val_print)
1657 (value_check_printable, val_print_array_elements): Use metadata
1658 style.
1659 * ui-out.h (class ui_out) <field_fmt>: New overload.
1660 <do_field_fmt>: Add style parameter.
1661 * ui-out.c (ui_out::field_fmt): New overload.
1662 * typeprint.c (type_print_unknown_return_type)
1663 (val_print_not_allocated, val_print_not_associated): Use metadata
1664 style.
1665 * tui/tui-out.h (class tui_ui_out) <do_field_fmt>: Add style
1666 parameter.
1667 * tui/tui-out.c (tui_ui_out::do_field_fmt): Update.
1668 * tracepoint.c (tvariables_info_1): Use metadata style.
1669 * stack.c (print_frame_arg, print_frame_info, print_frame)
1670 (info_frame_command_core): Use metadata style.
1671 * skip.c (info_skip_command): Use metadata style.
1672 * rust-lang.c (rust_print_enum): Use metadata style.
1673 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
1674 metadata style.
1675 * python/py-framefilter.c (py_print_single_arg): Use metadata
1676 style.
1677 * printcmd.c (do_one_display, print_variable_and_value): Use
1678 metadata style.
1679 * p-valprint.c (pascal_val_print)
1680 (pascal_object_print_value_fields): Use metadata style.
1681 * p-typeprint.c (pascal_type_print_base): Use metadata style.
1682 * mi/mi-out.h (class mi_ui_out) <do_field_fmt>: Add style
1683 parameter.
1684 * mi/mi-out.c (mi_ui_out::do_field_fmt): Update.
1685 * m2-valprint.c (m2_print_long_set): Use metadata style.
1686 * m2-typeprint.c (m2_print_type): Use metadata style.
1687 * infcmd.c (print_return_value_1): Use metadata style.
1688 * gnu-v3-abi.c (print_one_vtable): Use metadata style.
1689 * f-valprint.c (info_common_command_for_block): Use metadata
1690 style.
1691 * f-typeprint.c (f_type_print_base): Use metadata style.
1692 * expprint.c (print_subexp_standard): Use metadata style.
1693 * cp-valprint.c (cp_print_value_fields): Use metadata style.
1694 * cli/cli-style.h (class cli_style_option): Add constructor.
1695 (metadata_style): Declare.
1696 * cli/cli-style.c (metadata_style): New global.
1697 (_initialize_cli_style): Register metadata style.
1698 * cli-out.h (class cli_ui_out) <do_field_fmt>: Add style
1699 parameter.
1700 * cli-out.c (cli_ui_out::do_field_fmt): Update.
1701 * c-typeprint.c (c_type_print_base_struct_union)
1702 (c_type_print_base_1): Use metadata style.
1703 * breakpoint.c (watchpoint_value_print)
1704 (print_one_breakpoint_location): Use metadata style.
1705 * break-catch-syscall.c (print_one_catch_syscall): Use metadata
1706 style.
1707 * break-catch-sig.c (signal_catchpoint_print_one): Use metadata
1708 style.
1709 * ada-valprint.c (val_print_packed_array_elements, printstr)
1710 (print_field_values, ada_val_print_ref, ada_val_print): Use
1711 metadata style.
1712 * ada-typeprint.c (print_array_type, ada_print_type): Use metadata
1713 style.
1714 * ada-tasks.c (print_ada_task_info, info_task): Use metadata
1715 style.
1716 * ada-lang.c (user_select_syms): Use metadata style.
1717
1718 2019-10-01 Tom Tromey <tom@tromey.com>
1719
1720 * cli/cli-cmds.c (pwd_command): Style output.
1721
1722 2019-10-01 Pedro Alves <palves@redhat.com>
1723 Tom Tromey <tom@tromey.com>
1724
1725 * symtab.c (print_symbol_info): Use %ps.
1726 (print_msymbol_info): Use %ps.
1727 * symfile.c (symbol_file_add_with_addrs): Use %ps.
1728 * printcmd.c (print_variable_and_value): Use %ps.
1729 * macrocmd.c (show_pp_source_pos): Use %ps.
1730 * infrun.c (print_exited_reason): Use ui_out::message.
1731 * breakpoint.c (watchpoint_check, print_one_breakpoint_location)
1732 (describe_other_breakpoints): Use ui_out::message and new
1733 formats.
1734 (say_where): Use new formats.
1735 (bkpt_print_it, tracepoint_print_one_detail): Use ui_out::message
1736 and new formats.
1737
1738 2019-10-01 Pedro Alves <palves@redhat.com>
1739 Tom Tromey <tom@tromey.com>
1740
1741 * unittests/format_pieces-selftests.c: Add gdb_format parameter.
1742 (test_gdb_formats): New function.
1743 (run_tests): Call it.
1744 (test_format_specifier): Update.
1745 * utils.h (fputs_filtered): Update comment.
1746 (vfprintf_styled, vfprintf_styled_no_gdbfmt)
1747 (fputs_styled_unfiltered): Declare.
1748 * utils.c (fputs_styled_unfiltered): New function.
1749 (vfprintf_maybe_filtered): Add gdbfmt parameter.
1750 (vfprintf_filtered): Update.
1751 (vfprintf_unfiltered, vprintf_filtered): Update.
1752 (vfprintf_styled, vfprintf_styled_no_gdbfmt): New functions.
1753 * ui-out.h (enum ui_out_flag) <unfiltered_output,
1754 disallow_ui_out_field>: New constants.
1755 (enum class field_kind): New.
1756 (struct base_field_s, struct signed_field_s): New.
1757 (signed_field): New function.
1758 (struct string_field_s): New.
1759 (string_field): New function.
1760 (struct styled_string_s): New.
1761 (styled_string): New function.
1762 (class ui_out) <message>: Add comment.
1763 <vmessage, call_do_message>: New methods.
1764 <do_message>: Add style parameter.
1765 * ui-out.c (ui_out::call_do_message, ui_out::vmessage): New
1766 methods.
1767 (ui_out::message): Rewrite.
1768 * mi/mi-out.h (class mi_ui_out) <do_message>: Add style
1769 parameter.
1770 * mi/mi-out.c (mi_ui_out::do_message): Add style parameter.
1771 * gdbsupport/format.h (class format_pieces) <format_pieces>: Add
1772 gdb_extensions parameter.
1773 (class format_piece): Add parameter to constructor.
1774 (n_int_args): New field.
1775 * gdbsupport/format.c (format_pieces::format_pieces): Add
1776 gdb_extensions parameter. Handle '*'.
1777 * cli-out.h (class cli_ui_out) <do_message>: Add style parameter.
1778 * cli-out.c (cli_ui_out::do_message): Add style parameter. Call
1779 vfprintf_styled_no_gdbfmt.
1780 (cli_ui_out::do_field_string, cli_ui_out::do_spaces)
1781 (cli_ui_out::do_text, cli_ui_out::field_separator): Allow
1782 unfiltered output.
1783 * ui-style.h (struct ui_file_style) <ptr>: New method.
1784
1785 2019-10-01 Tom Tromey <tom@tromey.com>
1786
1787 * unittests/format_pieces-selftests.c: Update. Add final format.
1788 * gdbsupport/format.c (format_pieces::format_pieces): Don't add
1789 empty literal pieces.
1790
1791 2019-10-01 Tom Tromey <tom@tromey.com>
1792
1793 * ui-out.h (enum class ui_out_style_kind): Remove.
1794 (class ui_out) <field_string, field_stsream, do_field_string>:
1795 Change type of "style".
1796 * ui-out.c (ui_out::field_core_addr, ui_out::field_stream)
1797 (ui_out::field_string): Update.
1798 * tui/tui-out.h (class tui_ui_out) <do_field_string>: Change type
1799 of "style".
1800 * tui/tui-out.c (tui_ui_out::do_field_string): Update.
1801 * tracepoint.c (print_one_static_tracepoint_marker): Update.
1802 * stack.c (print_frame_arg, print_frame_info, print_frame):
1803 Update.
1804 * source.c (print_source_lines_base): Update.
1805 * solib.c (info_sharedlibrary_command): Update.
1806 * skip.c (info_skip_command): Update.
1807 * record-btrace.c (btrace_call_history_src_line)
1808 (btrace_call_history): Update.
1809 * python/py-framefilter.c (py_print_frame): Update.
1810 * mi/mi-out.h (class mi_ui_out) <do_field_string>: Change type of
1811 "style".
1812 * mi/mi-out.c (mi_ui_out::do_table_header)
1813 (mi_ui_out::do_field_signed, mi_ui_out::do_field_unsigned)
1814 (mi_ui_out::do_field_string): Update.
1815 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
1816 Update.
1817 * cli-out.h (class cli_ui_out) <do_field_string>: Change type of
1818 "style".
1819 * cli-out.c (cli_ui_out::do_table_header)
1820 (cli_ui_out::do_field_signed, cli_ui_out::do_field_unsigned)
1821 (cli_ui_out::do_field_skip, cli_ui_out::do_field_string)
1822 (cli_ui_out::do_field_fmt): Update.
1823 * breakpoint.c (print_breakpoint_location): Update.
1824 (update_static_tracepoint): Update.
1825
1826 2019-10-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1827
1828 * main.c (relocate_gdbinit_path_maybe_in_datadir): Remove std::string
1829 conversion of gdb_datadir.
1830 (captured_main_1): Remove xstrdup when assigning to gdb_datadir,
1831 remove not needed c_str ().
1832
1833 2019-09-30 Ali Tamur <tamur@google.com>
1834
1835 * dwarf2read.c (skip_one_die): Handle DW_FORM_strx forms.
1836 (dwarf2_string_attr): Likewise.
1837
1838 2019-09-30 Ali Tamur <tamur@google.com>
1839
1840 * dwarf2read.c (process_full_comp_unit): Remove whitespace at the EOL.
1841 (process_full_type_unit): Likewise.
1842 (dump_die_shallow): Likewise.
1843 (cu_debug_loc_section): Likewise.
1844
1845 2019-09-28 Christian Biesinger <cbiesinger@google.com>
1846
1847 * minsyms.c (compare_minimal_symbols): Rename to...
1848 (minimal_symbol_is_less_than): ...this, and adjust to STL
1849 conventions (return bool, take arguments as references)
1850 (minimal_symbol_reader::install): Call std::sort instead
1851 of qsort.
1852
1853 2019-09-29 Christian Biesinger <cbiesinger@google.com>
1854
1855 * minsyms.h (msymbol_hash): Document that this is a case-insensitive
1856 hash and why.
1857 * objfiles.h (struct objfile_per_bfd_storage) <demangled_names_hash,
1858 msymbol_hash, msymbol_demangled_hash>: Improve comments.
1859
1860 2019-09-30 Simon Marchi <simon.marchi@polymtl.ca>
1861
1862 * psymtab.c (add_psymbol_to_list): Move comment to psympriv.h.
1863 * psympriv.h (add_psymbol_to_list): Move comment here and update
1864 it.
1865
1866 2019-09-29 Tom de Vries <tdevries@suse.de>
1867
1868 * contrib/cc-with-tweaks.sh (get_tmpdir): New function.
1869 Use $tmpdir/$(basename "$output_file").dwz instead of
1870 "${output_file}.dwz".
1871
1872 2019-09-28 Simon Marchi <simon.marchi@polymtl.ca>
1873
1874 PR gdb/25045
1875 * hppa-linux-nat.c: Include gdbarch.h.
1876
1877 2019-09-26 Christian Biesinger <cbiesinger@google.com>
1878
1879 * blockframe.c (find_pc_partial_function): Change return type to bool.
1880 * elfread.c (elf_gnu_ifunc_resolve_name): Likewise.
1881 * minsyms.c (in_gnu_ifunc_stub): Likewise.
1882 (stub_gnu_ifunc_resolve_name): Likewise.
1883 * symtab.c (compare_filenames_for_search): Likewise.
1884 (compare_glob_filenames_for_search): Likewise.
1885 (matching_obj_sections): Likewise.
1886 (symbol_matches_domain): Likewise.
1887 (find_line_symtab): Change out param EXACT_MATCH to bool *.
1888 (find_line_pc): Change return type to bool.
1889 (find_line_pc_range): Likewise.
1890 (producer_is_realview): Likewise.
1891 * symtab.h (symbol_matches_domain): Likewise.
1892 (find_pc_partial_function): Likewise.
1893 (find_pc_line_pc_range): Likewise.
1894 (in_gnu_ifunc_stub): Likewise.
1895 (struct gnu_ifunc_fns) <gnu_ifunc_resolve_name>: Likewise.
1896 (find_line_pc): Likewise.
1897 (find_line_pc_range): Likewise.
1898 (matching_obj_sections): Likewise.
1899 (find_line_symtab): Change out parameter to bool.
1900 (producer_is_realview): Change return type to bool.
1901 (compare_filenames_for_search): Likewise.
1902 (compare_glob_filenames_for_search): Likewise.
1903
1904 2019-09-26 Tom Tromey <tom@tromey.com>
1905
1906 * Makefile.in (COMMON_SFILES): Remove gdb_usleep.c.
1907 (HFILES_NO_SRCDIR): Remove gdb_usleep.h.
1908 * gdb_usleep.h: Remove.
1909 * gdb_usleep.c: Remove.
1910 * utils.c: Don't include gdb_usleep.h.
1911
1912 2019-09-26 Tom Tromey <tromey@adacore.com>
1913
1914 * python/py-type.c (type_to_type_object): Call check_typedef
1915 for stub types.
1916
1917 2019-09-26 Tom Tromey <tom@tromey.com>
1918
1919 * utils.h (initialize_utils): Don't declare.
1920 * top.c (gdb_init): Don't call initialize_utils.
1921 * utils.c (initialize_utils): Remove. Move contents...
1922 (_initialize_utils): ... here.
1923
1924 2019-09-25 Tom Tromey <tom@tromey.com>
1925
1926 * python/py-objfile.c (objfpy_get_build_id): Use bin2hex.
1927 * utils.h (make_hex_string): Don't declare.
1928 * utils.c (make_hex_string): Remove.
1929
1930 2019-09-24 Tom de Vries <tdevries@suse.de>
1931
1932 PR gdb/23815
1933 * amd64-linux-nat.c (amd64_linux_nat_target::fetch_registers):
1934 Initialize xstateregs before ptrace PTRACE_GETREGSET call.
1935
1936 2019-09-23 Dimitar Dimitrov <dimitar@dinux.eu>
1937
1938 * NEWS: Mention new simulator port for PRU.
1939
1940 2019-09-23 Christian Biesinger <cbiesinger@google.com>
1941
1942 * ada-exp.y (write_object_remaining): Update.
1943 * ada-lang.c (ada_decode): Return a std::string instead of a char*
1944 and eliminate the static buffer.
1945 (ada_decode_symbol): Update.
1946 (ada_la_decode): Update.
1947 (ada_sniff_from_mangled_name): Update.
1948 (is_valid_name_for_wild_match): Update.
1949 (ada_lookup_name_info::matches): Update and simplify.
1950 (name_matches_regex): Update.
1951 (ada_add_global_exceptions): Update.
1952 * ada-lang.h (ada_decode): Update signature.
1953 * ada-varobj.c (ada_varobj_describe_simple_array_child): Update.
1954 * dwarf-index-write.c (debug_names::insert): Update.
1955
1956 2019-09-21 Simon Marchi <simon.marchi@polymtl.ca>
1957
1958 * solib-svr4.c (svr4_iterate_over_objfiles_in_search_order): Fix
1959 formatting.
1960
1961 2019-09-21 Simon Marchi <simon.marchi@polymtl.ca>
1962
1963 * breakpoint.h (bp_location) <inserted, permanent, duplicate>:
1964 Change "nonzero" to "true" in documentation.
1965
1966 2019-09-20 Christian Biesinger <cbiesinger@google.com>
1967
1968 * solib-darwin.c (darwin_lookup_lib_symbol): Remove.
1969 (_initialize_darwin_solib): Don't set
1970 darwin_so_ops.lookup_lib_global_symbol.
1971 * solib-svr4.c (set_solib_svr4_fetch_link_map_offsets): Call
1972 set_gdbarch_iterate_over_objfiles_in_search_order.
1973 (elf_lookup_lib_symbol): Rename to...
1974 (svr4_iterate_over_objfiles_in_search_order): this, and update
1975 to iterate semantics.
1976 (_initialize_svr4_solib): Don't set lookup_lib_global_symbol.
1977 * solib.c (solib_global_lookup): Remove.
1978 * solist.h (struct target_so_ops): Remove lookup_lib_global_symbol.
1979 (solib_global_lookup): Remove.
1980 * symtab.c (lookup_global_or_static_symbol): Remove call to
1981 solib_global_lookup.
1982
1983 2019-09-20 Joel Brobecker <brobecker@adacore.com>
1984
1985 * NEWS: Move entries about default MI version now being
1986 version 3, and about the GDB/MI fix for multi-location
1987 breakpoints to the "since GDB 8.3" section.
1988
1989 2019-09-20 Joel Brobecker <brobecker@adacore.com>
1990
1991 GDB 8.3.1 released.
1992
1993 2019-09-20 Ulrich Weigand <uweigand@de.ibm.com>
1994
1995 * NEWS: Mention that Cell/B.E. debugging support was removed.
1996 * MAINTAINERS: Remove spu target.
1997
1998 * config/djgpp/fnchange.lst: Remove entries for removed files.
1999
2000 * Makefile.in (ALL_TARGET_OBS): Remove solib-spu.o,
2001 spu-multiarch.o, and spu-tdep.o.
2002 (HFILES_NO_SRCDIR): Remove solib-spu.h and spu-tdep.h.
2003 (ALLDEPFILES): Remove solib-spu.c, spu-linux-nat.c,
2004 spu-multiarch.c, and spu-tdep.c.
2005 * spu-linux-nat.c: Remove file.
2006 * spu-multiarch.c: Remove file.
2007 * spu-tdep.c: Remove file.
2008 * spu-tdep.h: Remove file.
2009 * solib-spu.c: Remove file.
2010 * solib-spu.h: Remove file.
2011
2012 * configure.host (powerpc64*-*-linux*): Remove Cell/B.E. support.
2013 * configure.nat (spu-linux): Remove.
2014 * configure.tgt (powerpc*-*-linux*): Remove solib-spu.o and
2015 solib-multiarch.o from gdb_target_obs.
2016 (spu*-*-*): Remove.
2017
2018 * arch/ppc-linux-common.h (struct ppc_linux_features): Remove "cell"
2019 feature flag.
2020 (ppc_linux_no_features): Update.
2021 * arch/ppc-linux-common.c (ppc_linux_match_description): Remove
2022 Cell/B.E. support.
2023 * arch/ppc-linux-tdesc.h (tdesc_powerpc_cell32l): Remove declaration.
2024 (tdesc_powerpc_cell64l): Likewise.
2025 * nat/ppc-linux.h (PPC_FEATURE_CELL): Remove.
2026 * ppc-linux-nat.c (ppc_linux_nat_target::read_description): Remove
2027 Cell/B.E. support.
2028 * ppc-linux-tdep.h: Do not include "solib-spu.h" or "spu-tdep.h".
2029 Do not include "features/rs6000/powerpc-cell32l.c" or
2030 "features/rs6000/powerpc-cell64l.c".
2031 (ppc_linux_spu_section): Remove.
2032 (ppc_linux_core_read_description): Remove Cell/B.E. support.
2033 (spe_context_objfile, spe_context_lm_addr, spe_context_offset,
2034 spe_context_cache_ptid, spe_context_cache_ptid): Remove.
2035 (ppc_linux_spe_context_lookup): Remove.
2036 (ppc_linux_spe_context_inferior_created): Remove.
2037 (ppc_linux_spe_context_solib_loaded): Remove.
2038 (ppc_linux_spe_context_solib_unloaded): Remove.
2039 (ppc_linux_spe_context): Remove.
2040 (struct ppu2spu_cache): Remove.
2041 (ppu2spu_prev_arch, ppu2spu_this_id, ppu2spu_prev_register): Remove.
2042 (struct ppu2spu_data): Remove.
2043 (ppu2spu_unwind_register, ppu2spu_sniffer, ppu2spu_dealloc_cache,
2044 ppu2spu_unwind): Remove.
2045 (ppc_linux_init_abi): Remove Cell/B.E. support.
2046 * rs6000-tdep.h (rs6000_gdbarch_init): Remove Cell/B.E. support.
2047
2048 * features/Makefile (rs6000/powerpc-cell32l-expedite): Remove.
2049 (rs6000/powerpc-cell64l-expedite): Likewise
2050 (WHICH): Remove rs6000/powerpc-cell32l and rs6000/powerpc-cell64l.
2051 (XMLTOC): Remove rs6000/powerpc-cell32l.xml and
2052 rs6000/powerpc-cell64l.xml.
2053 * features/rs6000/powerpc-cell32l.xml: Remove.
2054 * features/rs6000/powerpc-cell64l.xml: Likewise.
2055 * features/rs6000/powerpc-cell32l.c: Remove generated file.
2056 * features/rs6000/powerpc-cell64l.c: Likewise.
2057 * regformats/rs6000/powerpc-cell32l.dat: Remove generated file.
2058 * regformats/rs6000/powerpc-cell64l.dat: Likewise.
2059 * regformats/reg-spu.dat: Remove.
2060
2061 * target.h (enum target_object): Remove TARGET_OBJECT_SPU.
2062 * corelow.c (struct spuid_list): Remove.
2063 (add_to_spuid_list): Remove.
2064 (core_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
2065 * remote.c (PACKET_qXfer_spu_read, PACKET_qXfer_spu_write): Remove.
2066 (remote_protocol_features): Remove associated entries.
2067 (_initialize_remote): No longer initialize them.
2068 (remote_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
2069 * linux-nat.c (SPUFS_MAGIC): Remove.
2070 (linux_proc_xfer_spu): Remove.
2071 (spu_enumerate_spu_ids): Remove.
2072 (linux_nat_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
2073 * linux-tdep.c (-linux_spu_make_corefile_notes): Remove.
2074 (linux_make_corefile_notes): No longer call it.
2075
2076 * regcache.c (cooked_read_test): Remove bfd_arch_spu special case.
2077 (cooked_write_test): Likewise.
2078
2079 2019-09-20 Tom Tromey <tom@tromey.com>
2080
2081 * NEWS: Mention case-sensitivity of TUI commands.
2082 * tui/tui-win.c (tui_set_focus_command): Now case-sensitive.
2083 (tui_set_win_height_command, parse_scrolling_args): Likewise.
2084 * tui/tui-layout.c (tui_layout_command): Now case-sensitive.
2085
2086 2019-09-20 Tom Tromey <tom@tromey.com>
2087
2088 * tui/tui-source.c (tui_source_window::set_contents): Use
2089 make_unique_xstrdup.
2090 * tui/tui-disasm.c (tui_disasm_window::set_contents): Use
2091 make_unique_xstrdup.
2092
2093 2019-09-20 Tom Tromey <tom@tromey.com>
2094
2095 * tui/tui-data.c: Remove separator comments.
2096 * tui/tui-layout.c: Remove separator comments.
2097 * tui/tui-win.c: Remove separator comments.
2098 * tui/tui-wingeneral.c: Remove separator comments.
2099
2100 2019-09-20 Tom Tromey <tom@tromey.com>
2101
2102 * tui/tui.h (strcat_to_buf): Don't declare.
2103 * tui/tui.c (strcat_to_buf): Remove.
2104
2105 2019-09-20 Tom Tromey <tom@tromey.com>
2106
2107 * tui/tui-source.h (struct tui_source_window) <m_fullname>: Rename
2108 from "fullname".
2109 * tui/tui-source.c (tui_source_window::set_contents)
2110 (tui_source_window::location_matches_p)
2111 (tui_source_window::maybe_update): Update.
2112
2113 2019-09-20 Tom Tromey <tom@tromey.com>
2114
2115 * tui/tui-regs.h (struct tui_data_window) <get_current_group>:
2116 Update.
2117 <m_regs_content, m_regs_column_count, m_current_group>: Add "m_"
2118 prefix.
2119 * tui/tui-regs.c (tui_data_window::last_regs_line_no)
2120 (tui_data_window::line_from_reg_element_no)
2121 (tui_data_window::first_reg_element_no_inline)
2122 (tui_data_window::show_registers)
2123 (tui_data_window::show_register_group)
2124 (tui_data_window::display_registers_from)
2125 (tui_data_window::display_registers_from_line)
2126 (tui_data_window::first_data_item_displayed)
2127 (tui_data_window::delete_data_content_windows)
2128 (tui_data_window::erase_data_content)
2129 (tui_data_window::do_scroll_vertical)
2130 (tui_data_window::refresh_window)
2131 (tui_data_window::check_register_values): Update.
2132
2133 2019-09-20 Tom Tromey <tom@tromey.com>
2134
2135 * tui/tui-stack.h (MAX_LOCATOR_ELEMENT_LEN): Remove define.
2136 (struct tui_locator_window) <full_name, proc_name>: Now
2137 std::string.
2138 * tui/tui-stack.c (tui_locator_window::make_status_line)
2139 (tui_locator_window::set_locator_fullname)
2140 (tui_locator_window::set_locator_info): Update.
2141 * tui/tui-source.c (tui_source_window::set_contents)
2142 (tui_source_window::showing_source_p): Update.
2143
2144 2019-09-20 Tom Tromey <tom@tromey.com>
2145
2146 * tui/tui-stack.c (tui_locator_window::set_locator_fullname):
2147 Don't call tui_locator_win_info_ptr.
2148
2149 2019-09-20 Tom Tromey <tom@tromey.com>
2150
2151 * tui/tui-win.c (tui_resize_all): Don't call refresh.
2152
2153 2019-09-20 Tom Tromey <tom@tromey.com>
2154
2155 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Use 1 as
2156 height for locator.
2157 * tui/tui-stack.c (tui_locator_window::rerender): Call scrollok.
2158 * tui/tui-layout.c (show_source_disasm_command, show_data)
2159 (show_source_or_disasm_and_command): Use 1 as height for locator.
2160
2161 2019-09-20 Tom Tromey <tom@tromey.com>
2162
2163 * tui/tui.c (tui_enable): Update.
2164 * tui/tui-win.c (tui_sigwinch_handler, tui_async_resize_screen):
2165 Update.
2166 * tui/tui-data.h (tui_win_resized, tui_set_win_resized_to):
2167 Update.
2168 * tui/tui-data.c (win_resized): Now bool.
2169 (tui_win_resized): Return bool.
2170 (tui_set_win_resized_to): Accept a bool.
2171
2172 2019-09-20 Tom Tromey <tom@tromey.com>
2173
2174 * tui/tui-regs.h (struct tui_data_window) <show_register_group>:
2175 Change type of "refresh_values_only".
2176 * tui/tui-regs.c (tui_data_window::show_register_group): Change
2177 type of "refresh_values_only".
2178
2179 2019-09-20 Tom Tromey <tom@tromey.com>
2180
2181 * tui/tui-disasm.c (struct tui_asm_line) <addr_string, insn>: Now
2182 std::string.
2183 (tui_disassemble): Add "pos" parameter.
2184 (tui_disasm_window::set_contents): Simplify.
2185
2186 2019-09-20 Tom Tromey <tom@tromey.com>
2187
2188 * tui/tui-winsource.h (struct tui_source_window_base)
2189 <show_source_content>: Now private.
2190 * tui/tui-winsource.c
2191 (tui_source_window_base::show_source_content): Don't handle empty
2192 content case.
2193
2194 2019-09-20 Tom Tromey <tom@tromey.com>
2195
2196 * tui/tui-layout.c (show_source_disasm_command)
2197 (show_source_or_disasm_and_command): Don't call
2198 show_source_content.
2199
2200 2019-09-20 Tom Tromey <tom@tromey.com>
2201
2202 * tui/tui-stack.h (struct tui_locator_window) <make_status_line>:
2203 Declare.
2204 * tui/tui-stack.c (tui_locator_window::make_status_line): Rename
2205 from tui_make_status_line.
2206 (tui_locator_window::rerender): Update.
2207
2208 2019-09-20 Tom Tromey <tom@tromey.com>
2209
2210 * tui/tui-stack.c (tui_make_status_line): Return std::string.
2211 (tui_locator_window::rerender): Update.
2212
2213 2019-09-20 Tom Tromey <tom@tromey.com>
2214
2215 * tui/tui-winsource.h (struct tui_source_window_base)
2216 <~tui_source_window_base>: Don't declare.
2217 <fullname>: Remove.
2218 * tui/tui-winsource.c (~tui_source_window_base): Remove.
2219 * tui/tui-source.h (struct tui_source_window) <fullname>: New
2220 member.
2221 * tui/tui-source.c (tui_source_window::set_contents): Update.
2222 (tui_source_window::location_matches_p)
2223 (tui_source_window::maybe_update): Update.
2224
2225 2019-09-20 Tom Tromey <tom@tromey.com>
2226
2227 * tui/tui-winsource.h (~tui_source_element): Remove.
2228 (tui_source_element): Update.
2229 (struct tui_source_element) <line>: Now a unique_xmalloc_ptr.
2230 * tui/tui-winsource.c (tui_show_source_line): Update.
2231 * tui/tui-source.c (tui_source_window::set_contents): Update.
2232 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
2233
2234 2019-09-20 Tom Tromey <tom@tromey.com>
2235
2236 * tui/tui-data.h (tui_clear_source_windows_detail): Don't
2237 declare.
2238 * tui/tui-layout.c (tui_add_win_to_layout): Don't call
2239 tui_clear_source_windows_detail.
2240 * tui/tui-winsource.h (struct tui_source_window_base)
2241 <clear_detail>: Don't declare.
2242 * tui/tui-winsource.c (tui_source_window_base::clear_detail):
2243 Remove.
2244 * tui/tui-data.c (tui_clear_source_windows_detail): Remove.
2245
2246 2019-09-20 Tom Tromey <tromey@adacore.com>
2247
2248 PR ada/24919:
2249 * block.c (contained_in): Fix final return value.
2250
2251 2019-09-20 Alan Modra <amodra@gmail.com>
2252
2253 * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Use bfd_set_usrdata.
2254 * dwarf2read.c (dwarf2_read_gdb_index, dwarf2_read_debug_names),
2255 (read_indirect_string_from_dwz): Use bfd accessor.
2256 * dwarf2read.h (struct dwz_file <filename>): Likewise.
2257 * machoread.c (macho_symfile_read_all_oso): Likewise.
2258 * solib.c (solib_bfd_open): Likewise.
2259
2260 2019-09-19 Christian Biesinger <cbiesinger@google.com>
2261
2262 * eval.c: Move declaration of overload_resolution to...
2263 * value.h: ...here.
2264
2265 2019-09-19 Christian Biesinger <cbiesinger@google.com>
2266
2267 * arm-linux-nat.c: Remove extern declaration for arm_apcs_32.
2268 * arm-linux-tdep.c: Likewise.
2269 * arm-nbsd-nat.c: Likewise.
2270 * arm-tdep.h: Declare arm_apcs_32.
2271 * arm-tdep.c: Move documentation for arm_apcs_32 to arm-tdep.h.
2272
2273 2019-09-19 Christian Biesinger <cbiesinger@google.com>
2274
2275 * dwarf2loc.c: Remove extern declaration of dwarf_always_disassemble.
2276 * dwarf2read.h: Declare dwarf_always_disassemble.
2277
2278 2019-09-19 Tom de Vries <tdevries@suse.de>
2279
2280 PR gdb/25009
2281 * source-cache.c (source_cache::ensure): Catch exception thrown during
2282 construction of the highlighter.
2283
2284 2019-09-18 Alan Modra <amodra@gmail.com>
2285
2286 * aarch64-linux-tdep.c, * arm-tdep.c, * auto-load.c,
2287 * coff-pe-read.c, * coffread.c, * corelow.c, * dbxread.c,
2288 * dicos-tdep.c, * dwarf2-frame.c, * dwarf2read.c, * elfread.c,
2289 * exec.c, * fbsd-tdep.c, * gcore.c, * gdb_bfd.c, * gdb_bfd.h,
2290 * hppa-tdep.c, * i386-cygwin-tdep.c, * i386-fbsd-tdep.c,
2291 * i386-linux-tdep.c, * jit.c, * linux-tdep.c, * machoread.c,
2292 * maint.c, * mdebugread.c, * minidebug.c, * mips-linux-tdep.c,
2293 * mips-sde-tdep.c, * mips-tdep.c, * mipsread.c, * nto-tdep.c,
2294 * objfiles.c, * objfiles.h, * osabi.c, * ppc-linux-tdep.c,
2295 * ppc64-tdep.c, * record-btrace.c, * record-full.c, * remote.c,
2296 * rs6000-aix-tdep.c, * rs6000-tdep.c, * s390-linux-tdep.c,
2297 * s390-tdep.c, * solib-aix.c, * solib-dsbt.c, * solib-frv.c,
2298 * solib-spu.c, * solib-svr4.c, * solib-target.c,
2299 * spu-linux-nat.c, * spu-tdep.c, * symfile-mem.c, * symfile.c,
2300 * symmisc.c, * symtab.c, * target.c, * windows-nat.c,
2301 * xcoffread.c, * cli/cli-dump.c, * compile/compile-object-load.c,
2302 * mi/mi-interp.c: Update throughout for bfd section macro and
2303 function changes.
2304 * gcore (gcore_create_callback): Use bfd_set_section_lma.
2305 * spu-tdep.c (spu_overlay_new_objfile): Likewise.
2306
2307 2019-09-18 Tom Tromey <tom@tromey.com>
2308
2309 * NEWS: Add entry.
2310 * tui/tui.c (tui_initialize_readline): Set name of keymap. Do not
2311 call rl_initialize.
2312 (tui_enable): Do not call rl_initialize.
2313
2314 2019-09-18 Christian Groessler <chris@groessler.org>
2315
2316 * alpha-linux-nat.c: Include gdbarch.h.
2317
2318 2019-09-18 Simon Marchi <simon.marchi@polymtl.ca>
2319
2320 * ui-file.c: Include cli/cli-style.h.
2321 (term_cli_styling): Remove cli_styling declaration.
2322
2323 2019-09-18 Alan Modra <amodra@gmail.com>
2324
2325 * arm-tdep.c (arm_record_special_symbol): Update bfd_get_section
2326 to bfd_asymbol_section.
2327
2328 2019-09-18 Alan Modra <amodra@gmail.com>
2329
2330 * amd64-dicos-tdep.c (amd64_dicos_osabi_sniffer): Constify target.
2331 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
2332 * i386-dicos-tdep.c (i386_dicos_osabi_sniffer): Likewise.
2333
2334 2019-09-18 Alan Modra <amodra@gmail.com>
2335
2336 * solib-spu.c (spu_bfd_open): Use bfd_set_filename.
2337 * spu-linux-nat.c (spu_bfd_open): Likewise.
2338
2339 2019-09-18 Christian Biesinger <cbiesinger@google.com>
2340
2341 * dwarf2loc.c: Change extern declaration of dwarf_always_disassemble
2342 to bool to match definition in dwarf2read.c.
2343
2344 2019-09-17 Christian Biesinger <cbiesinger@google.com>
2345
2346 * ada-lang.c (ada_ignore_descriptive_types_p): Change to bool.
2347 (print_signatures): Likewise.
2348 (trust_pad_over_xvs): Likewise.
2349 * arch/aarch64-insn.c (aarch64_debug): Likewise.
2350 * arch/aarch64-insn.h (aarch64_debug): Likewise.
2351 * arm-linux-nat.c (arm_apcs_32): Likewise.
2352 * arm-linux-tdep.c (arm_apcs_32): Likewise.
2353 * arm-nbsd-nat.c (arm_apcs_32): Likewise.
2354 * arm-tdep.c (arm_debug): Likewise.
2355 (arm_apcs_32): Likewise.
2356 * auto-load.c (debug_auto_load): Likewise.
2357 (auto_load_gdb_scripts): Likewise.
2358 (global_auto_load): Likewise.
2359 (auto_load_local_gdbinit): Likewise.
2360 (auto_load_local_gdbinit_loaded): Likewise.
2361 * auto-load.h (global_auto_load): Likewise.
2362 (auto_load_local_gdbinit): Likewise.
2363 (auto_load_local_gdbinit_loaded): Likewise.
2364 * breakpoint.c (disconnected_dprintf): Likewise.
2365 (breakpoint_proceeded): Likewise.
2366 (automatic_hardware_breakpoints): Likewise.
2367 (always_inserted_mode): Likewise.
2368 (target_exact_watchpoints): Likewise.
2369 (_initialize_breakpoint): Update.
2370 * breakpoint.h (target_exact_watchpoints): Change to bool.
2371 * btrace.c (maint_btrace_pt_skip_pad): Likewise.
2372 * cli/cli-cmds.c (trace_commands): Likewise.
2373 * cli/cli-cmds.h (trace_commands): Likewise.
2374 * cli/cli-decode.c (add_setshow_boolean_cmd): Change int* argument
2375 to bool*.
2376 * cli/cli-logging.c (logging_overwrite): Change to bool.
2377 (logging_redirect): Likewise.
2378 (debug_redirect): Likewise.
2379 * cli/cli-option.h (option_def) <boolean>: Change return type to bool*.
2380 (struct boolean_option_def) <get_var_address_cb_>: Change return type
2381 to bool.
2382 <boolean_option_def>: Update.
2383 (struct flag_option_def): Change default type of Context to bool
2384 from int.
2385 <flag_option_def>: Change return type of var_address_cb_ to bool*.
2386 * cli/cli-setshow.c (do_set_command): Cast to bool* instead of int*.
2387 (get_setshow_command_value_string): Likewise.
2388 * cli/cli-style.c (cli_styling): Change to bool.
2389 (source_styling): Likewise.
2390 * cli/cli-style.h (source_styling): Likewise.
2391 (cli_styling): Likewise.
2392 * cli/cli-utils.h (struct qcs_flags) <quiet, cont, silent>: Change
2393 to bool.
2394 * command.h (var_types): Update comment.
2395 (add_setshow_boolean_cmd): Change int* var argument to bool*.
2396 * compile/compile-cplus-types.c (debug_compile_cplus_types): Change to
2397 bool.
2398 (debug_compile_cplus_scopes): Likewise.
2399 * compile/compile-internal.h (compile_debug): Likewise.
2400 * compile/compile.c (compile_debug): Likewise.
2401 (struct compile_options) <raw>: Likewise.
2402 * cp-support.c (catch_demangler_crashes): Likewise.
2403 * cris-tdep.c (usr_cmd_cris_version_valid): Likewise.
2404 (usr_cmd_cris_dwarf2_cfi): Likewise.
2405 * csky-tdep.c (csky_debug): Likewise.
2406 * darwin-nat.c (enable_mach_exceptions): Likewise.
2407 * dcache.c (dcache_enabled_p): Likewise.
2408 * defs.h (info_verbose): Likewise.
2409 * demangle.c (demangle): Likewise.
2410 (asm_demangle): Likewise.
2411 * dwarf-index-cache.c (debug_index_cache): Likewise.
2412 * dwarf2-frame.c (dwarf2_frame_unwinders_enabled_p): Likewise.
2413 * dwarf2-frame.h (dwarf2_frame_unwinders_enabled_p): Likewise.
2414 * dwarf2read.c (check_physname): Likewise.
2415 (use_deprecated_index_sections): Likewise.
2416 (dwarf_always_disassemble): Likewise.
2417 * eval.c (overload_resolution): Likewise.
2418 * event-top.c (set_editing_cmd_var): Likewise.
2419 (exec_done_display_p): Likewise.
2420 * event-top.h (set_editing_cmd_var): Likewise.
2421 (exec_done_display_p): Likewise.
2422 * exec.c (write_files): Likewise.
2423 * fbsd-nat.c (debug_fbsd_lwp): Likewise
2424 (debug_fbsd_nat): Likewise.
2425 * frame.h (struct frame_print_options) <print_raw_frame_arguments>:
2426 Likewise.
2427 (struct set_backtrace_options) <backtrace_past_main>: Likewise.
2428 <backtrace_past_entry> Likewise.
2429 * gdb-demangle.h (demangle): Likewise.
2430 (asm_demangle): Likewise.
2431 * gdb_bfd.c (bfd_sharing): Likewise.
2432 * gdbcore.h (write_files): Likewise.
2433 * gdbsupport/common-debug.c (show_debug_regs): Likewise.
2434 * gdbsupport/common-debug.h (show_debug_regs): Likewise.
2435 * gdbthread.h (print_thread_events): Likewise.
2436 * gdbtypes.c (opaque_type_resolution): Likewise.
2437 (strict_type_checking): Likewise.
2438 * gnu-nat.c (gnu_debug_flag): Likewise.
2439 * guile/scm-auto-load.c (auto_load_guile_scripts): Likewise.
2440 * guile/scm-param.c (pascm_variable): Add boolval.
2441 (add_setshow_generic): Update.
2442 (pascm_param_value): Update.
2443 (pascm_set_param_value_x): Update.
2444 * hppa-tdep.c (hppa_debug): Change to bool..
2445 * infcall.c (may_call_functions_p): Likewise.
2446 (coerce_float_to_double_p): Likewise.
2447 (unwind_on_signal_p): Likewise.
2448 (unwind_on_terminating_exception_p): Likewise.
2449 * infcmd.c (startup_with_shell): Likewise.
2450 * inferior.c (print_inferior_events): Likewise.
2451 * inferior.h (startup_with_shell): Likewise.
2452 (print_inferior_events): Likewise.
2453 * infrun.c (step_stop_if_no_debug): Likewise.
2454 (detach_fork): Likewise.
2455 (debug_displaced): Likewise.
2456 (disable_randomization): Likewise.
2457 (non_stop): Likewise.
2458 (non_stop_1): Likewise.
2459 (observer_mode): Likewise.
2460 (observer_mode_1): Likewise.
2461 (set_observer_mode): Update.
2462 (sched_multi): Change to bool.
2463 * infrun.h (debug_displaced): Likewise.
2464 (sched_multi): Likewise.
2465 (step_stop_if_no_debug): Likewise.
2466 (non_stop): Likewise.
2467 (disable_randomization): Likewise.
2468 * linux-tdep.c (use_coredump_filter): Likewise.
2469 (dump_excluded_mappings): Likewise.
2470 * linux-thread-db.c (auto_load_thread_db): Likewise.
2471 (check_thread_db_on_load): Likewise.
2472 * main.c (captured_main_1): Update.
2473 * maint-test-options.c (struct test_options_opts) <flag_opt, xx1_opt,
2474 xx2_opt, boolean_opt>: Change to bool.
2475 * maint-test-settings.c (maintenance_test_settings_boolean): Likewise.
2476 * maint.c (maintenance_profile_p): Likewise.
2477 (per_command_time): Likewise.
2478 (per_command_space): Likewise.
2479 (per_command_symtab): Likewise.
2480 * memattr.c (inaccessible_by_default): Likewise.
2481 * mi/mi-main.c (mi_async): Likewise.
2482 (mi_async_1): Likewise.
2483 * mips-tdep.c (mips64_transfers_32bit_regs_p): Likewise.
2484 * nat/fork-inferior.h (startup_with_shell): Likewise.
2485 * nat/linux-namespaces.c (debug_linux_namespaces): Likewise.
2486 * nat/linux-namespaces.h (debug_linux_namespaces): Likewise.
2487 * nios2-tdep.c (nios2_debug): Likewise.
2488 * or1k-tdep.c (or1k_debug): Likewise.
2489 * parse.c (parser_debug): Likewise.
2490 * parser-defs.h (parser_debug): Likewise.
2491 * printcmd.c (print_symbol_filename): Likewise.
2492 * proc-api.c (procfs_trace): Likewise.
2493 * python/py-auto-load.c (auto_load_python_scripts): Likewise.
2494 * python/py-param.c (union parmpy_variable): Add "bool boolval" field.
2495 (set_parameter_value): Update.
2496 (add_setshow_generic): Update.
2497 * python/py-value.c (copy_py_bool_obj): Change argument from int*
2498 to bool*.
2499 * python/python.c (gdbpy_parameter_value): Cast to bool* instead of
2500 int*.
2501 * ravenscar-thread.c (ravenscar_task_support): Change to bool.
2502 * record-btrace.c (record_btrace_target::store_registers): Update.
2503 * record-full.c (record_full_memory_query): Change to bool.
2504 (record_full_stop_at_limit): Likewise.
2505 * record-full.h (record_full_memory_query): Likewise.
2506 * remote-notif.c (notif_debug): Likewise.
2507 * remote-notif.h (notif_debug): Likewise.
2508 * remote.c (use_range_stepping): Likewise.
2509 (interrupt_on_connect): Likewise.
2510 (remote_break): Likewise.
2511 * ser-tcp.c (tcp_auto_retry): Likewise.
2512 * ser-unix.c (serial_hwflow): Likewise.
2513 * skip.c (debug_skip): Likewise.
2514 * solib-aix.c (solib_aix_debug): Likewise.
2515 * spu-tdep.c (spu_stop_on_load_p): Likewise.
2516 (spu_auto_flush_cache_p): Likewise.
2517 * stack.c (struct backtrace_cmd_options) <full, no_filters, hide>:
2518 Likewise.
2519 (struct info_print_options) <quiet>: Likewise.
2520 * symfile-debug.c (debug_symfile): Likewise.
2521 * symfile.c (auto_solib_add): Likewise.
2522 (separate_debug_file_debug): Likewise.
2523 * symfile.h (auto_solib_add): Likewise.
2524 (separate_debug_file_debug): Likewise.
2525 * symtab.c (basenames_may_differ): Likewise.
2526 (struct filename_partial_match_opts) <dirname, basename>: Likewise.
2527 (struct info_print_options) <quiet, exclude_minsyms>: Likewise.
2528 (struct info_types_options) <quiet>: Likewise.
2529 * symtab.h (demangle): Likewise.
2530 (basenames_may_differ): Likewise.
2531 * target-dcache.c (stack_cache_enabled_1): Likewise.
2532 (code_cache_enabled_1): Likewise.
2533 * target.c (trust_readonly): Likewise.
2534 (may_write_registers): Likewise.
2535 (may_write_memory): Likewise.
2536 (may_insert_breakpoints): Likewise.
2537 (may_insert_tracepoints): Likewise.
2538 (may_insert_fast_tracepoints): Likewise.
2539 (may_stop): Likewise.
2540 (auto_connect_native_target): Likewise.
2541 (target_stop_and_wait): Update.
2542 (target_async_permitted): Change to bool.
2543 (target_async_permitted_1): Likewise.
2544 (may_write_registers_1): Likewise.
2545 (may_write_memory_1): Likewise.
2546 (may_insert_breakpoints_1): Likewise.
2547 (may_insert_tracepoints_1): Likewise.
2548 (may_insert_fast_tracepoints_1): Likewise.
2549 (may_stop_1): Likewise.
2550 * target.h (target_async_permitted): Likewise.
2551 (may_write_registers): Likewise.
2552 (may_write_memory): Likewise.
2553 (may_insert_breakpoints): Likewise.
2554 (may_insert_tracepoints): Likewise.
2555 (may_insert_fast_tracepoints): Likewise.
2556 (may_stop): Likewise.
2557 * thread.c (struct info_threads_opts) <show_global_ids>: Likewise.
2558 (make_thread_apply_all_options_def_group): Change argument from int*
2559 to bool*.
2560 (thread_apply_all_command): Update.
2561 (print_thread_events): Change to bool.
2562 * top.c (confirm): Likewise.
2563 (command_editing_p): Likewise.
2564 (history_expansion_p): Likewise.
2565 (write_history_p): Likewise.
2566 (info_verbose): Likewise.
2567 * top.h (confirm): Likewise.
2568 (history_expansion_p): Likewise.
2569 * tracepoint.c (disconnected_tracing): Likewise.
2570 (circular_trace_buffer): Likewise.
2571 * typeprint.c (print_methods): Likewise.
2572 (print_typedefs): Likewise.
2573 * utils.c (debug_timestamp): Likewise.
2574 (sevenbit_strings): Likewise.
2575 (pagination_enabled): Likewise.
2576 * utils.h (sevenbit_strings): Likewise.
2577 (pagination_enabled): Likewise.
2578 * valops.c (overload_resolution): Likewise.
2579 * valprint.h (struct value_print_options) <prettyformat_arrays,
2580 prettyformat_structs, vtblprint, unionprint, addressprint, objectprint,
2581 stop_print_at_null, print_array_indexes, deref_ref, static_field_print,
2582 pascal_static_field_print, raw, summary, symbol_print, finish_print>:
2583 Likewise.
2584 * windows-nat.c (new_console): Likewise.
2585 (cygwin_exceptions): Likewise.
2586 (new_group): Likewise.
2587 (debug_exec): Likewise.
2588 (debug_events): Likewise.
2589 (debug_memory): Likewise.
2590 (debug_exceptions): Likewise.
2591 (useshell): Likewise.
2592 * windows-tdep.c (maint_display_all_tib): Likewise.
2593 * xml-support.c (debug_xml): Likewise.
2594
2595 2019-09-17 Mike Gulick <mgulick@mathworks.com>
2596
2597 * source.c (prepare_path_for_appending): New function.
2598 (openp): Make use of new function.
2599 (find_and_open_source): Search for the compilation directory and
2600 source file as a relative path beneath the directory search path.
2601
2602 2019-09-17 Andrew Burgess <andrew.burgess@embecosm.com>
2603
2604 * source-cache.c (source_cache::get_line_charpos): Catch
2605 exceptions and return false, this matches the behaviour documented
2606 in the header file.
2607
2608 2019-09-17 Joel Brobecker <brobecker@adacore.com>
2609
2610 * ada-tasks.c (info_task): Remove quoting of the task's name.
2611
2612 2019-09-16 Christian Biesinger <cbiesinger@google.com>
2613
2614 * symfile.c (auto_solib_add): Replace comment with a reference
2615 to the header file.
2616
2617 2019-09-14 Christian Biesinger <cbiesinger@google.com>
2618
2619 * NEWS: Mention that gdb can now be compiled with Python 3
2620 on Windows.
2621
2622 2019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
2623
2624 * maint.c (maint_print_section_data::maint_print_section_data):
2625 Force use of 'float log10 (float)' by casting the argument to
2626 float.
2627
2628 2019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
2629
2630 * maint.c: Add 'cmath' include.
2631 (struct maint_print_section_data): New structure.
2632 (print_section_index): New function.
2633 (print_bfd_section_info): Add header comment, small whitespace
2634 cleanup, and update to call new print_section_index function.
2635 (print_objfile_section_info): Likewise.
2636 (maint_obj_section_from_bfd_section): New function.
2637 (print_bfd_section_info_maybe_relocated): New function.
2638 (maintenance_info_sections): Add header comment, always use
2639 bfd_map_over_sections instead of ALL_OBJFILE_OSECTIONS.
2640
2641 2019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
2642
2643 * psymtab.c (find_pc_sect_psymtab): Move baseaddr local into more
2644 inner scope, add check that the objfile has psymtabs before
2645 checking psymtabs_addrmap.
2646 * psymtab.h (psymtab_storage) <psymtabs_addrmap>: Extend comment.
2647
2648 2019-09-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2649
2650 * NEWS: Announce that Ada task names are now shown at more places,
2651 and between quotes (except in info task output).
2652 * gdb/ada-tasks.c (task_to_str): New function.
2653 (display_current_task_id): Call task_to_str.
2654 (task_command_1): Likewise.
2655 (print_ada_task_info): In non-mi mode, Properly align headers and data
2656 when task-id length is > 9 (9 is the default for a 32 bits CORE_ADDR).
2657
2658 2019-09-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2659
2660 * procfs.c (procfs_target::wait) <PR_FAULTED>: Get signal from
2661 prstatus.pr_lwp.pr_info instead of making it up.
2662
2663 2019-09-11 Christian Biesinger <cbiesinger@google.com>
2664
2665 * auto-load.c (auto_load_expand_dir_vars): Update.
2666 * defs.h (gdb_datadir): Change to std::string.
2667 (python_libdir): Likewise.
2668 (relocate_gdb_directory): Change return type to std::string.
2669 * guile/guile.c (gdbscm_data_directory): Update.
2670 (initialize_scheme_side): Update.
2671 * jit.c (jit_reader_dir): Change to std::string.
2672 (jit_reader_load_command): Update.
2673 * main.c (gdb_datadir): Change to std::string.
2674 (python_libdir): Likewise.
2675 (set_gdb_data_directory): Update.
2676 (relocate_path): Change to return std::string.
2677 (relocate_gdb_directory): Change to return std::string.
2678 (relocate_gdbinit_path_maybe_in_datadir): Update.
2679 (captured_main_1): Update.
2680 * python/python.c (do_start_initialization): Update.
2681 * top.c (show_gdb_datadir): Update.
2682 * xml-syscall.c (xml_init_syscalls_info): Update.
2683 (init_syscalls_info): Update.
2684
2685 2019-09-11 Christian Biesinger <cbiesinger@google.com>
2686
2687 * main.c (relocate_gdbinit_path_maybe_in_datadir): Factor this code
2688 out of get_init_files.
2689 (get_init_files): Update.
2690
2691 2019-09-11 Christian Biesinger <cbiesinger@google.com>
2692
2693 * main.c (get_init_files): Change to use std::string.
2694 (captured_main_1): Update.
2695 (print_gdb_help): Update.
2696
2697 2019-09-11 Ali Tamur <tamur@google.com>
2698
2699 *gdb/target-float.c (host_float_ops<T>::to_longest): Update
2700 implementation.
2701
2702 2019-09-11 Christian Biesinger <cbiesinger@google.com>
2703
2704 * dbxread.c (read_dbx_symtab): Update.
2705 * dwarf2read.c (load_partial_dies): Update.
2706 * mdebugread.c (parse_partial_symbols): Update.
2707 (handle_psymbol_enumerators): Update.
2708 * psympriv.h (add_psymbol_to_list): Change type of copy_names to bool.
2709 * psymtab.c (add_psymbol_to_bcache): Likewise.
2710 (add_psymbol_to_list): Likewise.
2711 * symtab.c (symbol_set_names): Likewise.
2712 * symtab.h (symbol_set_names): Likewise.
2713 * xcoffread.c (scan_xcoff_symtab): Update.
2714
2715 2019-09-11 Tom Tromey <tom@tromey.com>
2716
2717 * symfile-mem.c (symbol_file_add_from_memory): Use
2718 bfd_set_filename.
2719 * solib-darwin.c (darwin_bfd_open): Use bfd_set_filename.
2720 * solib-aix.c (solib_aix_bfd_open): Use bfd_set_filename.
2721
2722 2019-09-10 Tom Tromey <tromey@adacore.com>
2723
2724 * dwarf-index-write.c (write_psymbols): Extend error message.
2725 (debug_names::insert): Add Ada code.
2726 (debug_names::write_psymbols): Remove Ada check.
2727 (debug_names) <m_string_obstack>: New member.
2728 * dwarf2read.c (gdb_index_symbol_name_matcher): Remove.
2729 (gdb_index_symbol_name_matcher::matches): Remove.
2730 (mapped_index_base::find_name_components_bounds): Add "lang"
2731 parameter.
2732 (mapped_index_base::build_name_components): Also split names
2733 according to Ada syntax.
2734 (dw2_expand_symtabs_matching_symbol): Loop over languages. Change
2735 type of "match_callback".
2736 (check_match, check_find_bounds_finds)
2737 (dw2_expand_symtabs_matching): Update.
2738 (dw2_debug_names_iterator): Add new constructor.
2739 (dw2_debug_names_map_matching_symbols): New function.
2740 (dw2_debug_names_expand_symtabs_matching): Update.
2741 (dwarf2_debug_names_functions): Use
2742 dw2_debug_names_map_matching_symbols.
2743
2744 2019-09-10 Tom Tromey <tromey@adacore.com>
2745
2746 * dwarf2read.c (dw2_get_file_names_reader): Add the
2747 CU's file name to the results.
2748
2749 2019-09-10 Tom Tromey <tromey@adacore.com>
2750
2751 * ada-lang.c (add_nonlocal_symbols): Combine calls to
2752 map_matching_symbols. Update.
2753 * dwarf2read.c (dw2_map_matching_symbols): Update.
2754 * psymtab.c (match_partial_symbol): Change type; update.
2755 (psym_map_matching_symbols): Likewise.
2756 * symfile-debug.c (debug_qf_map_matching_symbols): Change
2757 type; update.
2758 * symfile.h (struct quick_symbol_functions)
2759 <map_matching_symbols>: Change "name" to be a lookup_name_info.
2760 Remove "match".
2761
2762 2019-09-10 Tom Tromey <tromey@adacore.com>
2763
2764 * psymtab.c (map_block): Remove.
2765 (psym_map_matching_symbols): Use iterate_over_symbols_terminated.
2766 * symtab.c (iterate_over_symbols_terminated): New function.
2767 * symtab.c (iterate_over_symbols_terminated): Declare.
2768
2769 2019-09-10 Tom Tromey <tromey@adacore.com>
2770
2771 * ada-lang.c (ada_iterate_over_symbols): Return bool.
2772 * language.h (struct language_defn) <la_iterate_over_symbols>:
2773 Return bool.
2774 * symtab.c (iterate_over_symbols): Return bool.
2775 * symtab.h (iterate_over_symbols): Return bool.
2776
2777 2019-09-10 Tom Tromey <tromey@adacore.com>
2778
2779 * ada-lang.c (aux_add_nonlocal_symbols): Change type.
2780 (add_nonlocal_symbols): Update.
2781 * dwarf2read.c (dw2_map_matching_symbols): Change type.
2782 * psymtab.c (map_block, psym_map_matching_symbols): Change type.
2783 * symfile-debug.c (debug_qf_map_matching_symbols): Change type.
2784 * symfile.h (struct quick_symbol_functions) <map_matching_symbols>:
2785 Change type of "callback". Remove "data".
2786
2787
2788 2019-09-09 Ali Tamur <tamur@google.com>
2789
2790 * dwarf2read.c (comp_unit_head): Update comment.
2791 (dwarf2_dwo_name): New function declaration.
2792 (dwarf_unit_type_name): New function declaration.
2793 (read_comp_unit_head): Add support for new compilation units,
2794 DW_UT_partial, DW_UT_skeleton, DW_UT_split_compile, DW_UT_split_type.
2795 Particularly, DW_UT_skeleton and DW_UT_split_compile have dwo_id
2796 (currently named as "signature") in their header. Also clarify error
2797 messages.
2798 (lookup_dwo_id): New function. Returns the dwo id of the given
2799 compile unit.
2800 (lookup_dwo_unit): Use the new lookup_dwo_id function.
2801 (init_cutu_and_read_dies): Use the new dwarf2_dwo_name and lookup_dwo_id
2802 functions.
2803 (create_dwo_cu_reader): Use the added lookup_dwo_id function.
2804 (dwarf2_dwo_name): Get the dwo name if present.
2805 (dwarf_unit_type_name): Convert DW_UT_* types to string for diagnostic
2806 purposes.
2807
2808 2019-09-09 Tom Tromey <tom@tromey.com>
2809
2810 * tui/tui-win.c (tui_all_windows_info): Use ui_out.
2811
2812 2019-09-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2813
2814 * python/python.c (do_start_initialization): Make progname_copy static,
2815 to avoid a leak report.
2816
2817 2019-09-08 Tom Tromey <tom@tromey.com>
2818
2819 * tui/tui-wingeneral.c (box_win): Truncate long window titles.
2820
2821 2019-09-07 Simon Marchi <simon.marchi@efficios.com>
2822
2823 * dwarf2read.c (struct dw2_symtab_iterator) <block_index>:
2824 Change type to gdb::optional<block_enum>.
2825 (dw2_symtab_iter_init): Change block_index parameter type
2826 to gdb::optional<block_enum>.
2827 (dw2_lookup_symbol): Change block_index parameter
2828 type to block_enum.c
2829 (dw2_debug_names_lookup_symbol): Likewise.
2830 * psymtab.c (psym_lookup_symbol): Likewise.
2831 * symfile-debug.c (debug_qf_lookup_symbol): Likewise.
2832 * symfile.h (struct quick_symbol_functions) <lookup_symbol>:
2833 Likewise.
2834
2835 2019-09-06 Christian Biesinger <cbiesinger@google.com>
2836
2837 * defs.h (relocate_gdb_directory): Change int to bool in
2838 signature and rename flag to relocatable.
2839 * main.c (relocate_path): Likewise.
2840 (relocate_gdb_directory): Likewise.
2841
2842 2019-09-06 Alan Modra <amodra@gmail.com>
2843
2844 * coffread.c (coff_symfile_read): Constify filename variable.
2845 * dbxread.c (dbx_symfile_init, coffstab_build_psymtabs),
2846 (elfstab_build_psymtabs, stabsect_build_psymtabs): Likewise.
2847 * gdb_bfd.c (gdb_bfd_close_or_warn): Likewise.
2848 * solib.c (reload_shared_libraries_1): Likewise.
2849 * symfile.c (reread_symbols): Likewise.
2850 * solib-aix.c (solib_aix_bfd_open): Add cast for xfree of filename.
2851 * solib-darwin.c (darwin_bfd_open): Likewise.
2852 * symfile-mem.c (symbol_file_add_from_memory): Likewise.
2853
2854 2019-09-03 Andrew Burgess <andrew.burgess@embecosm.com>
2855
2856 * psymtab.c (print_partial_symbols): Handle missing domain_enum
2857 values MODULE_DOMAIN and COMMON_BLOCK_DOMAIN.
2858
2859 2019-09-03 Tom Tromey <tromey@adacore.com>
2860
2861 * ada-valprint.c (ada_val_print_num): Don't recurse for range
2862 types.
2863 (has_negatives): Unbias a range type bound.
2864 * dwarf2read.c (read_subrange_type): Handle DW_AT_GNU_bias.
2865 * gdbtypes.c (operator==): Handle new field.
2866 (create_range_type): Add "bias" parameter.
2867 (create_static_range_type, resolve_dynamic_range): Update.
2868 * gdbtypes.h (struct range_bounds) <bias>: New member.
2869 (create_range_type): Add bias parameter.
2870 * printcmd.c (print_scalar_formatted): Unbias range types.
2871 * value.c (unpack_long): Unbias range types.
2872 (pack_long): Bias range types.
2873
2874 2019-09-02 Alan Hayward <alan.hayward@arm.com>
2875
2876 * solib-svr4.c (svr4_find_and_create_probe_breakpoints): Check all
2877 probe arguments.
2878
2879 2019-09-02 Alan Hayward <alan.hayward@arm.com>
2880
2881 * break-catch-throw.c (fetch_probe_arguments): Use gdbarch.
2882 * dtrace-probe.c (dtrace_probe::get_argument_count): Likewise.
2883 * probe.c (probe_safe_evaluate_at_pc) (compute_probe_arg)
2884 (compile_probe_arg): Likewise.
2885 * probe.h (get_argument_count): Likewise.
2886 * solib-svr4.c (solib_event_probe_action): Likewise.
2887 * stap-probe.c (stap_probe::get_argument_count): Likewise.
2888
2889 2019-09-02 Alan Hayward <alan.hayward@arm.com>
2890
2891 * solib-svr4.c (svr4_find_and_create_probe_breakpoints): Move
2892 code to here...
2893 (svr4_create_solib_event_breakpoints): ...from here.
2894
2895 2019-08-30 Sergio Durigan Junior <sergiodj@redhat.com>
2896
2897 * nat/fork-inferior.c (trace_start_error): Remove "\nError: "
2898 suffix from warning message.
2899
2900 2019-08-30 Tom Tromey <tom@tromey.com>
2901
2902 * tui/tui-winsource.h (struct tui_source_window_base)
2903 <refresh_all>: Don't declare.
2904 * tui/tui-winsource.c (tui_source_window_base::refresh_all):
2905 Remove.
2906 * tui/tui-win.c (tui_refresh_all_win): Don't call refresh_all or
2907 tui_show_locator_content.
2908 * tui/tui-regs.h (struct tui_data_window) <refresh_all>: Don't
2909 declare.
2910 * tui/tui-regs.c (tui_data_window::refresh_all): Remove.
2911 * tui/tui-data.h (struct tui_win_info) <refresh_all>: Don't
2912 declare.
2913
2914 2019-08-30 Tom Tromey <tom@tromey.com>
2915
2916 * tui/tui-io.c (tui_cont_sig): Don't call wrefresh.
2917
2918 2019-08-30 Tom Tromey <tom@tromey.com>
2919
2920 * tui/tui-stack.c (_initialize_tui_stack): Move later.
2921 Remove unnecessary forward declarations.
2922
2923 2019-08-30 Tom Tromey <tom@tromey.com>
2924
2925 * tui/tui-stack.c (tui_locator_window::set_locator_fullname): Call
2926 rerender.
2927 (tui_update_locator_fullname, tui_show_frame_info): Don't call
2928 tui_show_locator_content.
2929
2930 2019-08-30 Tom Tromey <tom@tromey.com>
2931
2932 * tui/tui-stack.c (tui_show_locator_content): Move lower. Rewrite.
2933 (tui_locator_window::rerender): Rewrite using body of previous
2934 tui_show_locator_content.
2935
2936 2019-08-30 Tom Tromey <tom@tromey.com>
2937
2938 * tui/tui-stack.h (struct tui_locator_window) <set_locator_info,
2939 set_locator_fullname>: New methods.
2940 * tui/tui-stack.c (tui_locator_window::set_locator_fullname):
2941 Rename from tui_set_locator_fullname.
2942 (tui_locator_window::set_locator_info): Rename from
2943 tui_set_locator_info. Return bool.
2944 (tui_update_locator_fullname, tui_show_frame_info): Update.
2945
2946 2019-08-30 Tom Tromey <tom@tromey.com>
2947
2948 * tui/tui-layout.c (show_layout): Don't call tui_refresh_all.
2949
2950 2019-08-30 Tom Tromey <tom@tromey.com>
2951
2952 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Don't
2953 call touchwin.
2954
2955 2019-08-30 Tom Tromey <tom@tromey.com>
2956
2957 * tui/tui-wingeneral.c (box_win): Assume win_info and
2958 win_info->handle cannot be NULL.
2959
2960 2019-08-30 Tom Tromey <tom@tromey.com>
2961
2962 * tui/tui-regs.h (struct tui_data_item_window) <rerender,
2963 refresh_window>: Declare.
2964 * tui/tui-regs.c (tui_data_window::display_registers_from): Call
2965 resize.
2966 (tui_data_item_window::rerender): Rename from
2967 tui_display_register.
2968 (tui_data_item_window::refresh_window): New method.
2969 * tui/tui-layout.c (tui_gen_win_info::resize): Do nothing on
2970 no-op.
2971
2972 2019-08-30 Tom Tromey <tom@tromey.com>
2973
2974 * tui/tui-regs.h (struct tui_data_window) <regs_content,
2975 regs_column_count, current_group>: Move later. Now private.
2976 <get_current_group>: New method.
2977 * tui/tui-regs.c (tui_reg_command): Update.
2978 * tui/tui-layout.c (tui_set_layout): Update.
2979
2980 2019-08-30 Tom Tromey <tom@tromey.com>
2981
2982 * tui/tui-regs.c (tui_data_window::display_registers_from_line)
2983 (tui_data_window::rerender): Don't call
2984 check_and_display_highlight_if_needed.
2985 (tui_data_window::refresh_all): Remove call to
2986 erase_data_content.
2987
2988 2019-08-30 Tom Tromey <tom@tromey.com>
2989
2990 * tui/tui-regs.c (tui_data_window::last_regs_line_no)
2991 (tui_data_window::display_registers_from)
2992 (tui_data_window::display_reg_element_at_line)
2993 (tui_data_window::display_registers_from_line): Remove checks of
2994 "empty".
2995
2996 2019-08-30 Tom Tromey <tom@tromey.com>
2997
2998 * tui/tui-regs.h (struct tui_data_window) <display_all_data>:
2999 Don't declare.
3000 * tui/tui-regs.c (tui_data_window::show_registers): Call
3001 rerender.
3002 (tui_data_window::rerender): Rename from display_all_data.
3003 (tui_data_window::rerender): Remove old implementation.
3004
3005 2019-08-30 Tom Tromey <tom@tromey.com>
3006
3007 * tui/tui-regs.c (tui_data_window::display_all_data): Change
3008 text.
3009 * tui/tui-data.h (NO_DATA_STRING): Remove define.
3010
3011 2019-08-29 Bernhard Wodok <barto@gmx.net>
3012 Sergio Durigan Junior <sergiodj@redhat.com>
3013
3014 PR win32/24284
3015 * mingw-hdep.c (gdb_select): Handle case when 'n' is zero.
3016
3017 2019-08-28 Andrew Burgess <andrew.burgess@embecosm.com>
3018
3019 * symtab.c (search_symbols): Don't include MODULE_DOMAIN symbols
3020 when searching for types.
3021
3022 2019-08-28 Andrew Burgess <andrew.burgess@embecosm.com>
3023
3024 * f-lang.c (f_language_defn): Use f_print_typedef.
3025 * f-lang.h (f_print_typedef): Declare.
3026 * f-typeprint.c (f_print_typedef): Define.
3027
3028 2019-08-27 Christian Biesinger <cbiesinger@google.com>
3029
3030 * nat/linux-namespaces.c (mnsh_main): Initialize fd (to -1).
3031
3032 2019-08-27 Andrew Burgess <andrew.burgess@embecosm.com>
3033
3034 * cli/cli-utils.c (info_print_options_defs): Delete.
3035 (make_info_print_options_def_group): Delete.
3036 (extract_info_print_options): Delete.
3037 (info_print_command_completer): Delete.
3038 (info_print_args_help): Add extra parameter, and optionally
3039 include text about -n flag.
3040 * cli/cli-utils.h (struct info_print_options): Delete.
3041 (extract_info_print_options): Delete declaration.
3042 (info_print_command_completer): Delete declaration.
3043 (info_print_args_help): Add extra parameter, extend header
3044 comment.
3045 * python/python.c (gdbpy_rbreak): Pass additional parameter to
3046 search_symbols.
3047 * stack.c (struct info_print_options): New type.
3048 (info_print_options_defs): New file scoped variable.
3049 (make_info_print_options_def_group): New static function.
3050 (info_print_command_completer): New static function.
3051 (info_locals_command): Update to use new local functions.
3052 (info_args_command): Likewise.
3053 (_initialize_stack): Add extra parameter to calls to
3054 info_print_args_help.
3055 * symtab.c (search_symbols): Add extra parameter, use this to
3056 possibly excluse non-debug symbols.
3057 (symtab_symbol_info): Add extra parameter, which is passed on to
3058 search_symbols.
3059 (struct info_print_options): New type.
3060 (info_print_options_defs): New file scoped variable.
3061 (make_info_print_options_def_group): New static function.
3062 (info_print_command_completer): New static function.
3063 (info_variables_command): Update to use local functions, and pass
3064 extra parameter through to symtab_symbol_info.
3065 (info_functions_command): Likewise.
3066 (info_types_command): Pass additional argument through to
3067 symtab_symbol_info.
3068 (rbreak_command): Pass extra argument to search_symbols.
3069 (_initialize_symtab): Add extra arguments for calls to
3070 info_print_args_help, and update help text for 'info variables',
3071 'whereis', and 'info functions' commands.
3072 * symtab.h (search_symbols): Add extra argument to declaration.
3073 * NEWS: Mention new flags.
3074
3075 2019-08-26 Christian Biesinger <cbiesinger@google.com>
3076
3077 * symtab.c (lookup_static_symbol): Call the new function (and move
3078 it down to be next to lookup_global_symbol).
3079 (struct global_sym_lookup_data): Add block_enum member and rename to...
3080 (struct global_or_static_sym_lookup_data): ...this.
3081 (lookup_symbol_global_iterator_cb): Pass block_index instead of
3082 GLOBAL_BLOCK to lookup_symbol_in_objfile and rename to...
3083 (lookup_symbol_global_or_static_iterator_cb): ...this.
3084 (lookup_global_or_static_symbol): New function.
3085 (lookup_global_symbol): Call new function.
3086
3087 2019-08-26 Tom de Vries <tdevries@suse.de>
3088
3089 PR c++/24852
3090 * break-catch-throw.c (fetch_probe_arguments): Improve error mesage
3091 when pc_probe.prob == NULL.
3092
3093 2019-08-25 Simon Marchi <simon.marchi@efficios.com>
3094
3095 * dwarf2read.c (dw2_debug_names_iterator::next): Rename local
3096 variable symbol_linkage to symbol_linkage_.
3097
3098 2019-08-25 Simon Marchi <simon.marchi@efficios.com>
3099
3100 * dwarf2read.c (dw2_debug_names_iterator::next): Use enum to
3101 represent whether the symbol is static, dynamic, or we don't
3102 know.
3103
3104 2019-08-25 Yoshinori Sato <ysato@users.sourceforge.jp>
3105
3106 * gdb/rx-tdep.c (rx_register_names): New.
3107 (rx_register_name): Delete.
3108 (rx_psw_type): Delete.
3109 (rx_fpsw_type): Delete.
3110 (rx_register_type): Delete.
3111 (rx_gdbarch_init): Convert target-descriptions.
3112 (_initialize_rx_tdep): Add initialize_tdesc_rx.
3113 * gdb/features/Makefile: Add rx.xml.
3114 * gdb/features/rx.xml: New.
3115 * gdb/features/rx.c: Generated.
3116 * gdb/NEWS: Mention target description support.
3117
3118 2019-08-22 Christian Biesinger <cbiesinger@google.com>
3119
3120 * symtab.c (symbol_cache_lookup): Always initialize *bsc_ptr and
3121 *slot_ptr.
3122
3123 2019-08-23 Sergio Durigan Junior <sergiodj@redhat.com>
3124
3125 * configure.ac: Don't check for 'dlfcn.h' (moved to
3126 gdbsupport/common.m4).
3127 * Makefile.in (COMMON_SFILES): Move 'gdb-dlfcn.c' to
3128 'gdbsupport/'.
3129 (HFILES_NO_SRCDIR): Likewise, for 'gdb-dlfcn.h'.
3130 * compile/compile-c-support.c: Include
3131 'gdbsupport/gdb-dlfcn.h'.
3132 * gdbsupport/common.m4: Check for 'dlfcn.h'.
3133 * gdb-dlfcn.c: Move to...
3134 * gdbsupport/gdb-dlfcn.c: ... here.
3135 * gdb-dlfcn.h: Move to...
3136 * gdbsupport/gdb-dlfcn.h: ... here.
3137
3138 2019-08-23 Sandra Loosemore <sandra@codesourcery.com>
3139
3140 * nios2-tdep.c (struct reg_value): Improve comments. Make
3141 the offset field signed.
3142
3143 2019-08-22 Christian Biesinger <cbiesinger@google.com>
3144
3145 * python/lib/gdb/__init__.py (_execute_file): New function.
3146 * python/python.c (python_run_simple_file): Call gdb._execute_file
3147 on Windows.
3148
3149 2019-08-22 Andrew Burgess <andrew.burgess@embecosm.com>
3150
3151 * f-exp.y (yylex): Remove is_a_field_of_this local variable, and
3152 all uses as this was never set to anything but a zero value.
3153
3154 2019-08-21 Bogdan Harjoc <harjoc@gmail.com>
3155
3156 * cli/cli-cmds.c (with_command_1): Error out if no arguments.
3157
3158 2019-08-21 Christian Biesinger <cbiesinger@google.com>
3159
3160 * tui/tui-data.h (tui_gen_win_info): Add an =default
3161 move constructor, required by some GCC versions.
3162
3163 2019-08-21 Jinke Fan <fanjinke51@yeah.net>
3164
3165 * go32-nat.c (go32_sysinfo): Add hygon_p.
3166
3167 2019-08-20 Tom Tromey <tom@tromey.com>
3168
3169 * tui/tui-regs.h (struct tui_data_window) <last_regs_line_no,
3170 line_from_reg_element_no, first_reg_element_no_inline,
3171 display_all_data, delete_data_content_windows,
3172 erase_data_content>: Now private.
3173
3174 2019-08-20 Tom Tromey <tom@tromey.com>
3175
3176 * tui/tui-wingeneral.c (box_win): Change type of highlight_flag.
3177 (tui_unhighlight_win, tui_highlight_win)
3178 (tui_win_info::make_window): Update.
3179 * tui/tui-data.h (HILITE, NO_HILITE): Remove.
3180
3181 2019-08-20 Tom Tromey <tom@tromey.com>
3182
3183 * tui/tui-data.h (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
3184 (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
3185 (MAX_PID_WIDTH): Move to tui-stack.c.
3186 * tui/tui-stack.c (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
3187 (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
3188 (MAX_PID_WIDTH): Move from tui-data.h.
3189
3190 2019-08-20 Tom Tromey <tom@tromey.com>
3191
3192 * tui/tui-wingeneral.h (tui_make_window): Don't declare.
3193 * tui/tui-wingeneral.c (box_win): Change type of win_info.
3194 (box_win): Update.
3195 (tui_gen_win_info::make_window): Rename from tui_make_window.
3196 (tui_win_info::make_window): New method.
3197 (tui_gen_win_info::make_visible): Update.
3198 * tui/tui-source.c (tui_source_window::set_contents): Update.
3199 * tui/tui-regs.c (tui_data_window::show_register_group): Update.
3200 (tui_data_window::display_registers_from): Update.
3201 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
3202 * tui/tui-data.h (struct tui_gen_win_info) <make_window>:
3203 Declare.
3204 <can_box>: Remove.
3205 <title>: Remove.
3206 (struct tui_win_info) <make_window>: Declare.
3207 <can_box>: Now virtual.
3208 <title>: New member.
3209 * tui/tui-data.c (~tui_gen_win_info): Don't free title.
3210 * tui/tui-command.c (tui_cmd_window::resize): Update.
3211
3212 2019-08-20 Tom Tromey <tom@tromey.com>
3213
3214 * tui/tui-regs.h (struct tui_data_window) <display_regs>: Remove.
3215 * tui/tui-regs.c (tui_data_window::show_registers): Update.
3216 (tui_data_window::check_register_values): Update.
3217
3218 2019-08-20 Tom Tromey <tom@tromey.com>
3219
3220 * tui/tui-regs.h (struct tui_data_window): Use
3221 DISABLE_COPY_AND_ASSIGN.
3222 <regs_content>: Change type, removing unique_ptr.
3223 <tui_data_window>: Add move constructor.
3224 * tui/tui-regs.c (tui_data_window::show_registers)
3225 (tui_data_window::show_register_group)
3226 (tui_data_window::display_registers_from)
3227 (tui_data_window::display_registers_from)
3228 (tui_data_window::first_data_item_displayed)
3229 (tui_data_window::delete_data_content_windows)
3230 (tui_data_window::rerender, tui_data_window::refresh_window)
3231 (tui_data_window::check_register_values): Update.
3232
3233 2019-08-20 Tom Tromey <tom@tromey.com>
3234
3235 * tui/tui-regs.h (struct tui_data_window) <show_registers,
3236 show_register_group>: Declare.
3237 (tui_show_register_group): Don't declare.
3238 * tui/tui-regs.c (tui_data_window::show_registers): Rename from
3239 tui_show_registers.
3240 (tui_data_window::show_register_group): Rename from
3241 tui_show_register_group.
3242 (tui_data_window::check_register_values, tui_reg_command):
3243 Update.
3244 * tui/tui-layout.c (tui_set_layout): Update.
3245
3246 2019-08-20 Tom Tromey <tom@tromey.com>
3247
3248 * tui/tui-regs.h (struct tui_data_window) <check_register_values>:
3249 Declare.
3250 (tui_check_register_values): Don't declare.
3251 * tui/tui-regs.c (tui_data_window::check_register_values): Rename
3252 from tui_check_register_values.
3253 * tui/tui-hooks.c (tui_register_changed): Update.
3254
3255 2019-08-20 Tom Tromey <tom@tromey.com>
3256
3257 * tui/tui-regs.c (tui_reg_layout): Move later.
3258 (tui_show_registers): Don't enable TUI mode or change layout.
3259
3260 2019-08-20 Tom Tromey <tom@tromey.com>
3261
3262 * tui/tui-regs.h (struct tui_data_item_window)
3263 <~tui_data_item_window>: Remove.
3264 <content>: Now a unique_xmalloc_ptr.
3265 * tui/tui-regs.c (tui_register_format): Return a
3266 unique_xmalloc_ptr.
3267 (tui_get_register): Update.
3268 (~tui_data_item_window): Remove.
3269 (tui_data_window::display_registers_from, tui_display_register):
3270 Update.
3271 * tui/tui-io.h (tui_expand_tabs): Update.
3272 * tui/tui-io.c (tui_expand_tabs): Return a unique_xmalloc_ptr.
3273 Remove "col" parameter.
3274
3275 2019-08-20 Tom Tromey <tom@tromey.com>
3276
3277 * tui/tui-regs.h (struct tui_data_item_window) <value>: Remove
3278 field.
3279 * tui/tui-regs.c (~tui_data_item_window): Update.
3280
3281 2019-08-20 Tom Tromey <tom@tromey.com>
3282
3283 * tui/tui-regs.c (tui_register_format, tui_get_register): Move
3284 earlier.
3285
3286 2019-08-20 Tom Tromey <tom@tromey.com>
3287
3288 * tui/tui-regs.c (tui_reg_command): Remove NULL check.
3289
3290 2019-08-20 Tom Tromey <tom@tromey.com>
3291
3292 * tui/tui-source.h (struct tui_source_window): Update.
3293 * tui/tui-regs.c (tui_show_registers): Update.
3294 * tui/tui-disasm.h (struct tui_disasm_window): Update.
3295 * tui/tui-data.h (NO_SRC_STRING, NO_DISASSEM_STRING)
3296 (NO_REGS_STRING): Remove defines.
3297
3298 2019-08-20 Conrad Meyer <cem@FreeBSD.org>
3299
3300 * remote.c (remote_target::remote_btrace_maybe_reopen): Avoid
3301 unnecessary thread walk if remote doesn't support the packet.
3302
3303 2019-08-19 Tom Tromey <tromey@adacore.com>
3304
3305 * python/py-value.c (value_has_field): Fix indentation.
3306
3307 2019-08-19 Tom Tromey <tromey@adacore.com>
3308
3309 * printcmd.c (do_one_display, info_display_command): Update.
3310 * block.h (contained_in): Return bool. Add allow_nested
3311 parameter.
3312 * block.c (contained_in): Return bool. Add allow_nested
3313 parameter.
3314
3315 2019-08-19 Tom Tromey <tom@tromey.com>
3316
3317 * configure: Rebuild.
3318 * configure.ac: Disallow the combination of -static-libstdc++ and
3319 source highlight.
3320 * source-cache.c (get_language_name): Handle rust.
3321 (source_cache::get_source_lines): Ignore highlighting exceptions.
3322
3323 2019-08-16 Tom Tromey <tom@tromey.com>
3324
3325 * tui/tui.h (enum tui_win_type) <EXEC_INFO_WIN>: Remove.
3326 * tui/tui-winsource.h (struct tui_exec_info_window): Remove.
3327 (struct tui_source_window_base) <make_visible, refresh_window,
3328 resize>: Remove methods.
3329 <execution_info>: Remove field.
3330 * tui/tui-winsource.c (tui_source_window_base::do_erase_source_content)
3331 (tui_show_source_line, tui_source_window_base)
3332 (~tui_source_window_base): Update.
3333 (tui_source_window_base::resize)
3334 (tui_source_window_base::make_visible)
3335 (tui_source_window_base::refresh_window): Remove.
3336 (tui_source_window_base::update_exec_info): Update.
3337 * tui/tui-source.c (tui_source_window::set_contents): Update.
3338 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
3339
3340 2019-08-16 Tom Tromey <tom@tromey.com>
3341
3342 * tui/tui-hooks.c (tui_remove_hooks): Don't set
3343 deprecated_query_hook.
3344
3345 2019-08-16 Tom Tromey <tom@tromey.com>
3346
3347 * tui/tui-winsource.c (tui_update_source_windows_with_addr)
3348 (tui_update_source_windows_with_line): Update.
3349 * tui/tui-source.h (struct tui_source_window)
3350 <show_symtab_source>: Declare.
3351 (tui_show_symtab_source): Don't declare.
3352 * tui/tui-source.c (tui_show_symtab_source): Rename from
3353 tui_show_symtab_source.
3354
3355 2019-08-16 Tom Tromey <tom@tromey.com>
3356
3357 * tui/tui-winsource.h (struct tui_source_window_base)
3358 <set_contents>: Declare.
3359 * tui/tui-winsource.c
3360 (tui_source_window_base::update_source_window_as_is): Update.
3361 * tui/tui-source.h (struct tui_source_window) <set_contents>:
3362 Declare.
3363 (tui_set_source_content): Don't declare.
3364 * tui/tui-source.c (tui_source_window::set_contents): Rename from
3365 tui_set_source_content.
3366 * tui/tui-disasm.h (struct tui_disasm_window) <set_contents>:
3367 Declare.
3368 (tui_set_disassem_content): Don't declare.
3369 * tui/tui-disasm.c (tui_disasm_window::set_contents): Rename from
3370 tui_set_disassem_content.
3371
3372 2019-08-16 Tom Tromey <tom@tromey.com>
3373
3374 * tui/tui-winsource.h (struct tui_source_window_base)
3375 <update_breakpoint_info>: Declare.
3376 (tui_update_breakpoint_info): Don't declare.
3377 * tui/tui-winsource.c (tui_source_window_base::update_source_window_as_is)
3378 (tui_update_all_breakpoint_info): Update.
3379 (tui_source_window_base::update_breakpoint_info): Rename from
3380 tui_update_breakpoint_info.
3381 (tui_source_window_base::update_exec_info): Update.
3382
3383 2019-08-16 Tom Tromey <tom@tromey.com>
3384
3385 * tui/tui-winsource.h (struct tui_source_window_base)
3386 <update_source_window>: Declare.
3387 (tui_update_source_window): Don't declare.
3388 * tui/tui-winsource.c
3389 (tui_source_window_base::update_source_window): Rename from
3390 tui_update_source_window.
3391 (tui_source_window_base::rerender): Update.
3392 * tui/tui-source.c (tui_source_window::maybe_update): Update.
3393 * tui/tui-disasm.c (tui_show_disassem)
3394 (tui_show_disassem_and_update_source)
3395 (tui_disasm_window::maybe_update): Update.
3396
3397 2019-08-16 Tom Tromey <tom@tromey.com>
3398
3399 * tui/tui-winsource.h (struct tui_source_window_base)
3400 <update_source_window_as_is>: Declare.
3401 (tui_update_source_window_as_is): Don't declare.
3402 * tui/tui-winsource.c (tui_update_source_window): Update
3403 (tui_source_window_base::update_source_window_as_is): Rename from
3404 tui_update_source_window_as_is.
3405 (tui_source_window_base::refill): Update.
3406 * tui/tui-source.c (tui_show_symtab_source): Update.
3407 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical):
3408 Update.
3409
3410 2019-08-16 Tom Tromey <tom@tromey.com>
3411
3412 * tui/tui-winsource.h (tui_update_source_window)
3413 (tui_update_source_window_as_is): Remove "noerror" parameter.
3414 * tui/tui-winsource.c (tui_update_source_window)
3415 (tui_update_source_window_as_is): Remove "noerror" parameter.
3416 (tui_update_source_windows_with_addr)
3417 (tui_update_source_windows_with_line)
3418 (tui_source_window_base::rerender)
3419 (tui_source_window_base::refill): Update.
3420 * tui/tui-source.h (tui_set_source_content)
3421 (tui_show_symtab_source): Remove "noerror" parameter.
3422 * tui/tui-source.c (tui_set_source_content): Remove "noerror"
3423 parameter.
3424 (tui_show_symtab_source): Likewise.
3425 (tui_source_window::maybe_update): Update.
3426 * tui/tui-disasm.c (tui_show_disassem)
3427 (tui_show_disassem_and_update_source)
3428 (tui_disasm_window::do_scroll_vertical)
3429 (tui_disasm_window::maybe_update): Update.
3430
3431 2019-08-16 Tom Tromey <tom@tromey.com>
3432
3433 * tui/tui.c (tui_is_window_visible): Update.
3434 * tui/tui-wingeneral.c (tui_make_window)
3435 (tui_gen_win_info::make_visible, tui_refresh_all): Update.
3436 * tui/tui-win.c (window_name_completer, tui_refresh_all_win)
3437 (tui_set_focus_command, tui_all_windows_info, update_tab_width)
3438 (tui_set_win_height_command, parse_scrolling_args): Update.
3439 * tui/tui-source.c (tui_source_window::style_changed): Update.
3440 * tui/tui-regs.c (tui_show_registers)
3441 (tui_data_window::first_data_item_displayed)
3442 (tui_data_window::delete_data_content_windows)
3443 (tui_check_register_values, tui_reg_command): Update.
3444 * tui/tui-disasm.c (tui_show_disassem): Update.
3445 * tui/tui-data.h (struct tui_gen_win_info) <is_visible>: New
3446 method.
3447 <is_visible>: Remove field.
3448 * tui/tui-data.c (tui_next_win, tui_prev_win)
3449 (tui_delete_invisible_windows): Update.
3450
3451 2019-08-16 Tom Tromey <tom@tromey.com>
3452
3453 * tui/tui-winsource.h (struct tui_source_window_base)
3454 <m_has_locator>: Remove.
3455 * tui/tui-layout.c (show_source_disasm_command, show_data)
3456 (show_source_or_disasm_and_command): Update.
3457
3458 2019-08-16 Alan Hayward <alan.hayward@arm.com>
3459
3460 * NEWS (Other MI changes): New subsection.
3461 * aarch64-tdep.c (aarch64_get_pc_address_flags): New function.
3462 (aarch64_gdbarch_init): Add aarch64_get_pc_address_flags.
3463 * arch-utils.c (default_get_pc_address_flags): New function.
3464 * arch-utils.h (default_get_pc_address_flags): New declaration.
3465 * gdbarch.sh: Add get_pc_address_flags.
3466 * gdbarch.c: Regenerate.
3467 * gdbarch.h: Likewise.
3468 * stack.c (print_pc): New function.
3469 (print_frame_info) (print_frame): Call print_pc.
3470
3471 2019-08-16 Tom de Vries <tdevries@suse.de>
3472
3473 * maint.c (maintenance_info_sections): Also handle !ALLOBJ case using
3474 print_objfile_section_info.
3475
3476 2019-08-15 Tom Tromey <tom@tromey.com>
3477
3478 * tui/tui-io.c (tui_puts_internal): Check TUI_CMD_WIN before
3479 calling update_cmdwin_start_line.
3480 * tui/tui-winsource.h (struct tui_source_window_base)
3481 <do_make_visible_with_new_height, set_new_height>: Don't declare.
3482 <rerender>: Declare.
3483 * tui/tui-winsource.c (tui_source_window_base::update_tab_width):
3484 Call rerender.
3485 (tui_source_window_base::set_new_height): Remove.
3486 (tui_source_window_base::rerender): Rename from
3487 do_make_visible_with_new_height.
3488 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Use
3489 resize method.
3490 (tui_win_info::make_invisible_and_set_new_height)
3491 (tui_win_info::make_visible_with_new_height): Remove.
3492 * tui/tui-stack.h (struct tui_locator_window) <rerender>:
3493 Declare.
3494 * tui/tui-stack.c (tui_locator_window::rerender): New method.
3495 * tui/tui-regs.h (struct tui_data_window) <set_new_height,
3496 do_make_visible_with_new_height>: Don't declare.
3497 <rerender>: Declare.
3498 * tui/tui-regs.c (tui_data_window::rerender): Rename from
3499 set_new_height.
3500 (tui_data_window::do_make_visible_with_new_height): Remove.
3501 * tui/tui-layout.c (show_source_disasm_command, show_data): Don't
3502 call tui_show_locator_content.
3503 (tui_gen_win_info::resize): Call rerender.
3504 (show_source_or_disasm_and_command): Don't call
3505 tui_show_locator_content.
3506 * tui/tui-data.h (struct tui_gen_win_info) <rerender>: New
3507 method.
3508 (struct tui_win_info) <rerender>: Declare.
3509 <set_new_height, make_invisible_and_set_new_height,
3510 make_visible_with_new_height>: Don't declare.
3511 * tui/tui-data.c (tui_win_list::rerender): New method.
3512 * tui/tui-command.h (struct tui_cmd_window)
3513 <do_make_visible_with_new_height>: Don't declare.
3514 * tui/tui-command.c
3515 (tui_cmd_window::do_make_visible_with_new_height): Remove.
3516
3517 2019-08-15 Tom Tromey <tromey@adacore.com>
3518
3519 * ada-exp.y (convert_char_literal): Handle "Q%c" encoding.
3520 * ada-lang.c (ada_enum_name): Likewise.
3521
3522 2019-08-15 Christian Biesinger <cbiesinger@google.com>
3523
3524 * python/lib/gdb/__init__.py (GdbOutputFile): Rename to have a
3525 leading underscore.
3526 (GdbOutputErrorFile): Likewise.
3527 (global scope): Adjust constructor calls to GdbOutput{,Error}File
3528 accordingly.
3529 (execute_unwinders): Rename to have a leading underscore.
3530 (auto_load_packages): Likewise.
3531 (global scope): Adjust call to auto_load_packages accordingly.
3532 (GdbSetPythonDirectory): Likewise.
3533 * python/py-unwind.c (pyuw_sniffer): Call _execute_unwinders
3534 instead of execute_unwinders.
3535
3536 2019-08-15 Tom Tromey <tom@tromey.com>
3537
3538 * tui/tui-layout.c (show_layout, show_source_disasm_command)
3539 (show_data): Don't change window visibility.
3540 (tui_gen_win_info::resize): Remove special case for command
3541 window. Use wresize, when available.
3542 (show_source_or_disasm_and_command): Don't change window
3543 visibility.
3544 * tui/tui-command.h (struct tui_cmd_window) <resize>: Declare.
3545 <make_visible>: New method.
3546 * tui/tui-command.c (tui_cmd_window::resize): New method.
3547
3548 2019-08-15 Tom Tromey <tom@tromey.com>
3549
3550 * tui/tui-winsource.h (struct tui_source_window_iterator): New.
3551 (struct tui_source_windows): New.
3552 * tui/tui-winsource.c (tui_display_main): Update.
3553 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
3554 (new_height_ok, parse_scrolling_args): Update.
3555 * tui/tui-layout.c (show_layout, show_data): Update.
3556 * tui/tui-data.h (tui_source_windows, tui_clear_source_windows)
3557 (tui_add_to_source_windows): Don't declare.
3558 * tui/tui-data.c (source_windows, tui_source_windows)
3559 (tui_clear_source_windows, tui_add_to_source_windows): Remove.
3560
3561 2019-08-15 Tom Tromey <tom@tromey.com>
3562
3563 * tui/tui-winsource.h (struct tui_source_window_base) <resize>:
3564 Rename from reset.
3565 * tui/tui-winsource.c (tui_source_window_base::resize): Rename.
3566 * tui/tui-layout.c (show_source_disasm_command, show_data):
3567 Update.
3568 (tui_gen_win_info::resize): Rename.
3569 (show_source_or_disasm_and_command): Update.
3570 * tui/tui-data.h (struct tui_gen_win_info) <resize>: Rename from
3571 reset.
3572
3573 2019-08-15 Tom Tromey <tom@tromey.com>
3574
3575 * tui/tui-stack.c (tui_initialize_static_data): Remove.
3576 * tui/tui-interp.c (tui_interp::init): Don't call
3577 tui_initialize_static_data.
3578 * tui/tui-data.h (tui_initialize_static_data): Don't declare.
3579
3580 2019-08-15 Tom Tromey <tom@tromey.com>
3581
3582 * tui/tui-layout.c (tui_default_win_viewport_height): Don't
3583 examine tui_win_list.
3584
3585 2019-08-15 Tom Tromey <tom@tromey.com>
3586
3587 * tui/tui-winsource.h (tui_clear_source_content): Don't declare.
3588 * tui/tui-winsource.c (tui_update_source_window_as_is): Don't call
3589 tui_clear_source_content.
3590 (tui_clear_source_content): Remove.
3591 (tui_source_window_base::do_erase_source_content): Hoist call to
3592 content.clear().
3593 * tui/tui-stack.c (tui_show_frame_info): Don't call
3594 tui_clear_source_content.
3595
3596 2019-08-15 Tom Tromey <tom@tromey.com>
3597
3598 * tui/tui-winsource.h (struct tui_source_window_base)
3599 <do_erase_source_content>: New method.
3600 <erase_source_content>: New method.
3601 (tui_erase_source_content): Don't declare.
3602 * tui/tui-winsource.c (tui_clear_source_content): Update.
3603 (tui_source_window_base::do_erase_source_content): Rename from
3604 tui_erase_source_content.
3605 (tui_source_window_base::show_source_content): Update.
3606 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
3607 * tui/tui-source.h (struct tui_source_window)
3608 <erase_source_content>: New method.
3609 * tui/tui-disasm.h (struct tui_disasm_window)
3610 <erase_source_content>: New method.
3611
3612 2019-08-15 Tom Tromey <tom@tromey.com>
3613
3614 * tui/tui-winsource.h (tui_alloc_source_buffer): Don't declare.
3615 (struct tui_source_element): Add DISABLE_COPY_AND_ASSIGN, and move
3616 constructor.
3617 * tui/tui-winsource.c (tui_alloc_source_buffer): Remove.
3618 * tui/tui-source.c (tui_set_source_content): Update.
3619 * tui/tui-disasm.c (tui_set_disassem_content): Update.
3620
3621 2019-08-15 Tom Tromey <tom@tromey.com>
3622
3623 * tui/tui-winsource.h (tui_line_is_displayed): Don't declare.
3624 * tui/tui-winsource.c (tui_line_is_displayed): Move to
3625 tui-source.c.
3626 * tui/tui-source.h (struct tui_source_window) <line_is_displayed>:
3627 Declare.
3628 * tui/tui-source.c (tui_source_window::line_is_displayed): New
3629 method.
3630 (tui_source_window::maybe_update): Update.
3631
3632 2019-08-15 Tom Tromey <tom@tromey.com>
3633
3634 * tui/tui-winsource.h (tui_addr_is_displayed): Don't declare.
3635 * tui/tui-winsource.c (tui_addr_is_displayed): Move to
3636 tui-disasm.c.
3637 * tui/tui-disasm.h (struct tui_disasm_window) <addr_is_displayed>:
3638 Declare.
3639 * tui/tui-disasm.c (tui_disasm_window::addr_is_displayed): New
3640 method.
3641 (tui_disasm_window::maybe_update): Update.
3642
3643 2019-08-15 Tom Tromey <tom@tromey.com>
3644
3645 * tui/tui-winsource.h (struct tui_source_window_base)
3646 <maybe_update>: Declare.
3647 * tui/tui-stack.c (tui_show_frame_info): Call maybe_update
3648 method.
3649 * tui/tui-source.h (struct tui_source_window) <maybe_update>:
3650 Declare.
3651 * tui/tui-source.c (tui_source_window::maybe_update): New method.
3652 * tui/tui-disasm.h (struct tui_disasm_window) <maybe_update>:
3653 Declare.
3654 * tui/tui-disasm.c (tui_disasm_window::maybe_update): New method.
3655
3656 2019-08-15 Tom Tromey <tom@tromey.com>
3657
3658 * tui/tui-stack.c (tui_make_status_line): Use string constructor.
3659
3660 2019-08-15 Tom Tromey <tom@tromey.com>
3661
3662 * tui/tui-wingeneral.c: Include tui-stack.h.
3663 * tui/tui-stack.h (MAX_LOCATOR_ELEMENT_LEN)
3664 (struct tui_locator_window): Move from tui-data.h.
3665 * tui/tui-stack.c (_locator, tui_locator_win_info_ptr)
3666 (tui_initialize_static_data): Move from tui-data.c.
3667 * tui/tui-data.h (MAX_LOCATOR_ELEMENT_LEN)
3668 (struct tui_locator_window): Move to tui-stack.c.
3669 * tui/tui-data.c (_locator, tui_locator_win_info_ptr)
3670 (tui_initialize_static_data): Move to tui-stack.c.
3671
3672 2019-08-15 Tom Tromey <tom@tromey.com>
3673
3674 * tui/tui-layout.c (show_source_disasm_command)
3675 (show_source_or_disasm_and_command): Use make_visible method, not
3676 tui_make_window.
3677 * tui/tui-command.h (struct tui_cmd_window) <make_visible>:
3678 Remove.
3679
3680 2019-08-15 Tom Tromey <tom@tromey.com>
3681
3682 * tui/tui-wingeneral.h (tui_make_window): Update.
3683 * tui/tui-wingeneral.c (tui_make_window): Remove "box_it"
3684 parameter.
3685 (tui_gen_win_info::make_visible): Update.
3686 * tui/tui-regs.c (tui_data_window::display_registers_from):
3687 Update.
3688 * tui/tui-layout.c (show_source_disasm_command)
3689 (show_source_or_disasm_and_command): Update.
3690 * tui/tui-data.h (struct tui_gen_win_info) <can_box>: New method.
3691 (enum tui_box): Remove.
3692 (struct tui_win_info) <can_box>: New method.
3693 * tui/tui-command.h (struct tui_cmd_window) <can_box>: New
3694 method.
3695
3696 2019-08-15 Tom de Vries <tdevries@suse.de>
3697
3698 * linux-nat-trad.c: Include gdbarch.h.
3699
3700 2019-08-14 Alan Hayward <alan.hayward@arm.com>
3701
3702 * aarch64-tdep.c (aarch64_analyze_prologue): Allow any valid
3703 register sizes.
3704
3705 2019-08-14 Tom Tromey <tromey@adacore.com>
3706
3707 * darwin-nat.c: Include gdbarch.h.
3708 * darwin-nat-info.c: Include gdbarch.h.
3709
3710 2019-08-13 Tom Tromey <tom@tromey.com>
3711
3712 * tui/tui-data.h (struct tui_gen_win_info) <last_visible_line>:
3713 Remove.
3714 * tui/tui-data.c (tui_initialize_static_data): Update.
3715
3716 2019-08-13 Tom Tromey <tom@tromey.com>
3717
3718 * tui/tui-winsource.h (struct tui_exec_info_window)
3719 <~tui_exec_info_window, maybe_allocate_content, get_content,
3720 m_content>: Remove.
3721 (struct tui_source_window_base) <set_exec_info_content,
3722 show_exec_info_content>: Don't declare.
3723 * tui/tui-winsource.c
3724 (tui_exec_info_window::maybe_allocate_content): Remove.
3725 (tui_source_window_base::update_exec_info): Rename from
3726 set_exec_info_content.
3727 (tui_source_window_base::show_exec_info_content)
3728 (tui_source_window_base::update_exec_info): Remove.
3729
3730 2019-08-13 Tom Tromey <tom@tromey.com>
3731
3732 * tui/tui-winsource.h (tui_clear_exec_info_content): Don't
3733 declare.
3734 * tui/tui-winsource.c (tui_update_source_window_as_is)
3735 (tui_update_source_windows_with_addr, tui_erase_source_content):
3736 Update.
3737 (tui_clear_exec_info_content): Remove.
3738
3739 2019-08-13 Tom Tromey <tom@tromey.com>
3740
3741 * tui/tui-winsource.h (tui_erase_exec_info_content): Don't
3742 declare.
3743 * tui/tui-winsource.c (tui_source_window_base::refresh_all): Don't
3744 call tui_erase_exec_info_content.
3745 (tui_clear_exec_info_content): Rename from
3746 tui_erase_exec_info_content.
3747 (tui_clear_exec_info_content): Delete.
3748
3749 2019-08-13 Tom Tromey <tom@tromey.com>
3750
3751 * tui/tui-winsource.h (struct tui_source_window_base)
3752 <show_exec_info_content>: Declare.
3753 (tui_show_exec_info_content): Don't declare.
3754 * tui/tui-winsource.c
3755 (tui_source_window_base::show_exec_info_content): Rename from
3756 tui_show_exec_info_content.
3757 (tui_source_window_base::update_exec_info): Update.
3758
3759 2019-08-13 Tom Tromey <tom@tromey.com>
3760
3761 * tui/tui-data.h (enum tui_bp_flag, tui_bp_flags, struct tui_source_element)
3762 (TUI_BP_HIT_POS, TUI_BP_BREAK_POS, TUI_EXEC_POS)
3763 (TUI_EXECINFO_SIZE, tui_exec_info_content): Move ...
3764 * tui/tui-winsource.h (enum tui_bp_flag, tui_bp_flags, struct
3765 tui_source_element, TUI_BP_HIT_POS, TUI_BP_BREAK_POS)
3766 (TUI_EXEC_POS, TUI_EXECINFO_SIZE, tui_exec_info_content):
3767 ... here.
3768
3769 2019-08-13 Tom Tromey <tom@tromey.com>
3770
3771 * tui/tui-winsource.h (struct tui_source_window_base)
3772 <update_exec_info>: Declare.
3773 (tui_update_exec_info): Don't declare.
3774 * tui/tui-winsource.c (tui_update_source_window_as_is)
3775 (tui_source_window_base::refresh_all)
3776 (tui_update_all_breakpoint_info): Update.
3777 (tui_source_window_base::update_exec_info): Rename from
3778 tui_update_exec_info.
3779 * tui/tui-stack.c (tui_show_frame_info): Update.
3780
3781 2019-08-13 Tom Tromey <tom@tromey.com>
3782
3783 * tui/tui-winsource.h (struct tui_source_window_base)
3784 <set_exec_info_content>: Declare.
3785 (tui_set_exec_info_content): Don't declare.
3786 * tui/tui-winsource.c
3787 (tui_source_window_base::set_exec_info_content): Rename from
3788 tui_set_exec_info_content.
3789 (tui_update_exec_info): Update.
3790
3791 2019-08-13 Tom Tromey <tom@tromey.com>
3792
3793 * tui/tui-winsource.h (struct tui_source_window_base)
3794 <show_source_content>: Declare.
3795 (tui_show_source_content): Don't declare.
3796 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
3797 (tui_source_window_base::show_source_content): Rename from
3798 tui_show_source_content.
3799 (tui_source_window_base::refresh_all): Update.
3800 * tui/tui-layout.c (show_source_disasm_command)
3801 (show_source_or_disasm_and_command): Update.
3802
3803 2019-08-13 Tom Tromey <tom@tromey.com>
3804
3805 * tui/tui-winsource.c (tui_erase_source_content)
3806 (tui_show_source_content, tui_source_window_base::refresh_all):
3807 Update.
3808 * tui/tui-wingeneral.h
3809 (tui_check_and_display_highlight_if_needed): Don't declare.
3810 * tui/tui-wingeneral.c
3811 (tui_win_info::check_and_display_highlight_if_needed): Rename from
3812 check_and_display_highlight_if_needed.
3813 * tui/tui-win.c (tui_rehighlight_all)
3814 (tui_win_info::make_visible_with_new_height): Update.
3815 * tui/tui-regs.c (tui_data_window::display_registers_from_line)
3816 (tui_data_window::erase_data_content)
3817 (tui_data_window::display_all_data): Update.
3818 * tui/tui-data.h (struct tui_win_info)
3819 <check_and_display_highlight_if_needed>: Declare.
3820
3821 2019-08-13 Tom Tromey <tom@tromey.com>
3822
3823 * tui/tui-win.c (tui_resize_all): Call
3824 tui_delete_invisible_windows.
3825 * tui/tui-layout.c (show_layout): Call
3826 tui_delete_invisible_windows.
3827 * tui/tui-data.h (tui_delete_invisible_windows): Declare.
3828 * tui/tui-data.c (tui_delete_invisible_windows): New function.
3829
3830 2019-08-13 Tom Tromey <tom@tromey.com>
3831
3832 * tui/tui-disasm.c (tui_show_disassem): Add assertion. Don't call
3833 tui_add_win_to_layout.
3834
3835 2019-08-13 Tom Tromey <tom@tromey.com>
3836
3837 * tui/tui-layout.h (tui_default_win_height): Don't declare.
3838 * tui/tui-layout.c (tui_default_win_height): Now static.
3839
3840 2019-08-13 Tom Tromey <tom@tromey.com>
3841
3842 * tui/tui-layout.c (show_layout): Unify all layout cases into a
3843 single switch.
3844 (show_source_disasm_command, show_source_or_disasm_and_command):
3845 Don't check current layout.
3846
3847 2019-08-13 Tom Tromey <tom@tromey.com>
3848
3849 * tui/tui-wingeneral.c (make_all_visible): Remove.
3850 (tui_make_all_invisible): Simplify.
3851 * tui/tui-layout.c (tui_make_all_invisible): Move from
3852 tui-wingeneral.c; simplify.
3853 (show_layout): Hoist call to tui_make_all_invisible.
3854 (show_data): Don't call tui_make_all_invisible.
3855
3856 2019-08-13 Tom Tromey <tom@tromey.com>
3857
3858 * tui/tui-wingeneral.h (tui_make_all_visible): Don't declare.
3859 * tui/tui-wingeneral.c (tui_make_all_visible): Remove.
3860
3861 2019-08-13 Tom Tromey <tom@tromey.com>
3862
3863 * tui/tui-layout.c (current_layout, tui_current_layout): Move from
3864 tui-data.c.
3865 (show_source_disasm_command, show_data)
3866 (show_source_or_disasm_and_command): Don't use
3867 tui_set_current_layout_to.
3868 * tui/tui-data.h (tui_set_current_layout_to): Don't declare.
3869 * tui/tui-data.c (current_layout, tui_current_layout): Move to
3870 tui-layout.c.
3871 (tui_set_current_layout_to): Remove.
3872
3873 2019-08-13 Tom Tromey <tom@tromey.com>
3874
3875 * tui/tui-layout.c (tui_set_layout): Update.
3876 * tui/tui-data.h (struct tui_layout_def): Remove.
3877 (tui_layout_def): Don't declare.
3878 * tui/tui-data.c (layout_def): Remove.
3879 (tui_layout_def): Remove.
3880
3881 2019-08-13 Tom Tromey <tom@tromey.com>
3882
3883 * tui/tui-winsource.h (struct tui_source_window_base)
3884 <clear_detail>: No longer "override".
3885 * tui/tui-regs.h (struct tui_data_window) <clear_detail>: Remove.
3886 * tui/tui-regs.c (tui_data_window::clear_detail): Remove.
3887 * tui/tui-data.h (struct tui_win_info) <clear_detail>: Remove.
3888 * tui/tui-command.h (struct tui_cmd_window) <clear_detail>:
3889 Remove.
3890 * tui/tui-command.c (tui_cmd_window::clear_detail): Remove.
3891
3892 2019-08-13 Tom Tromey <tromey@adacore.com>
3893
3894 * tracepoint.c: Don't include readline.h or history.h.
3895
3896 2019-08-12 Tom Tromey <tom@tromey.com>
3897
3898 * configure: Rebuild.
3899 * configure.ac: Check for readline 7.
3900 * NEWS: Mention readline 7 requirement.
3901 * README: Update.
3902
3903 2019-08-12 Tom Tromey <tom@tromey.com>
3904
3905 * mingw-hdep.c (gdb_select): Remove readline hack.
3906
3907 2019-08-09 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
3908
3909 * blockframe.c (find_pc_partial_function): Set *block to nullptr
3910 when the function fails.
3911
3912 2019-08-09 Andreas Arnez <arnez@linux.ibm.com>
3913
3914 * s390-tdep.c (s390_type_align): New function.
3915 (s390_gdbarch_init): Set it as type_align gdbarch method.
3916
3917 2019-08-09 Tom de Vries <tdevries@suse.de>
3918
3919 PR gdb/24591
3920 * dwarf2read.c (dwarf2_fetch_die_loc_sect_off): Adjust pc_high and
3921 pc_low with relocation offset.
3922
3923 2019-08-07 Tom Tromey <tromey@adacore.com>
3924
3925 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
3926 (print_frame_args): Update.
3927 * python/py-framefilter.c (py_print_single_arg, enumerate_args):
3928 Update.
3929 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
3930 * frame.h (struct frame_arg): Add initializers.
3931 <error>: Now a unique_xmalloc_ptr.
3932
3933 2019-08-07 Alan Hayward <alan.hayward@arm.com>
3934
3935 * NEWS: Expand the Pointer Authentication entry.
3936 * aarch64-tdep.c (aarch64_frame_unmask_address): Rename from this.
3937 (aarch64_frame_unmask_lr): ... to this.
3938 (aarch64_prologue_prev_register, aarch64_dwarf2_prev_register):
3939 Call aarch64_frame_unmask_lr.
3940 * frame.c (struct frame_info): Add "masked" variable.
3941 (frame_set_previous_pc_masked) (frame_get_pc_masked): New functions.
3942 (fprint_frame): Check for masked pc.
3943 * frame.h (frame_set_previous_pc_masked) (frame_get_pc_masked): New
3944 declarations.
3945 * python/py-framefilter.c (py_print_frame): Check for masked pc.
3946 * stack.c (print_frame): Check for masked pc.
3947
3948 2019-08-06 Tom Tromey <tom@tromey.com>
3949
3950 * stabsread.c (patch_block_stabs, read_one_struct_field)
3951 (read_enum_type): Use obstack_strndup.
3952 * rust-exp.y (rust_parser::copy_name): Use obstack_strndup.
3953 * gdb_obstack.h (obstack_strndup): Use obstack_strndup.
3954 * dwarf2read.c (guess_full_die_structure_name)
3955 (anonymous_struct_prefix): Use obstack_strndup.
3956 * dbxread.c (cp_set_block_scope): Use obstack_strndup.
3957 * c-exp.y (yylex): Use obstack_strndup.
3958 * ada-exp.y (write_object_renaming, write_ambiguous_var)
3959 (write_var_or_type): Use obstack_strndup.
3960
3961 2019-08-06 Tom Tromey <tom@tromey.com>
3962
3963 * symfile.c (reread_symbols): Use obstack_strdup.
3964 * stabsread.c (read_type): Use obstack_strdup.
3965 * gdb_obstack.h (obstack_strdup): New overload.
3966 * dwarf2read.c (dwarf2_compute_name, create_dwo_unit_in_dwp_v1)
3967 (create_dwo_unit_in_dwp_v2, build_error_marker_type)
3968 (dwarf2_canonicalize_name): Use obstack_strdup.
3969 * dbxread.c (read_dbx_symtab): Use obstack_strdup.
3970 * cp-support.c (inspect_type, replace_typedefs_qualified_name):
3971 Use obstack_strdup.
3972
3973 2019-08-06 Tom Tromey <tom@tromey.com>
3974
3975 * gdb_obstack.h (obstack_strdup): Define.
3976 * gdb_obstack.c (obstack_strdup): Don't define.
3977
3978 2019-08-06 Tom Tromey <tom@tromey.com>
3979
3980 * xcoffread.c (SYMNAME_ALLOC, process_xcoff_symbol): Use
3981 obstack_strdup.
3982 * typeprint.c (typedef_hash_table::find_global_typedef): Use
3983 obstack_strdup.
3984 * symfile.c (allocate_compunit_symtab): Use obstack_strdup.
3985 * stabsread.c (common_block_start): Use obstack_strdup.
3986 * objfiles.c (set_objfile_main_name, objfile): Use
3987 obstack_strdup.
3988 * namespace.c (add_using_directive): Use obstack_strdup.
3989 * mdebugread.c (parse_symbol, parse_type): Use obstack_strdup.
3990 * jit.c (finalize_symtab): Use obstack_strdup.
3991 * dwarf2read.c (fixup_go_packaging, dwarf2_physname)
3992 (guess_partial_die_structure_name, partial_die_info::fixup)
3993 (dwarf2_name): Use obstack_strdup.
3994 * coffread.c (coff_read_struct_type, coff_read_enum_type): Use
3995 obstack_strdup.
3996 * c-exp.y (scan_macro_expansion): Use obstack_strdup.
3997 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
3998 obstack_strdup.
3999 * ada-lang.c (ada_decode_symbol): Use obstack_strdup.
4000
4001 2019-08-07 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4002
4003 * unittests/help-doc-selftests.c: New file.
4004 * Makefile.in: Add the new file.
4005
4006 2019-08-07 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4007
4008 * cli/cli-decode.h (print_doc_line): Add for_value_prefix argument.
4009 * cli/cli-decode.c (print_doc_line): Likewise. It now prints
4010 the full first line, except when FOR_VALUE_PREFIX. In this case,
4011 the trailing '.' is not output, and the first character is uppercased.
4012 (print_help_for_command): Update call to print_doc_line.
4013 (print_doc_of_command): Likewise.
4014 * cli/cli-setshow.c (deprecated_show_value_hack): Likewise.
4015 * cli/cli-option.c (append_indented_doc): Do not append newline.
4016 (build_help_option): Append newline after first appended_indented_doc
4017 only if a second call is done.
4018 (build_help): Append 2 new lines before each option, except the first
4019 one.
4020 * compile/compile.c (_initialize_compile): Add new lines after
4021 %OPTIONS%, when not at the end of the help.
4022 Change help doc or code
4023 producing the help doc to respect the invariants.
4024 * maint-test-options.c (_initialize_maint_test_options): Likewise.
4025 Also removed the new line after 'Options:', as all other commands
4026 do not put an empty line between 'Options:' and the first option.
4027 * printcmd.c (_initialize_printcmd): Likewise.
4028 * stack.c (_initialize_stack): Likewise.
4029 * interps.c (interpreter_exec_cmd): Fix "Usage:" line that was
4030 incorrectly telling COMMAND is optional.
4031 * ada-lang.c (_initialize_ada_language): Change help doc or code
4032 producing the help doc to respect the invariants.
4033 * ada-tasks.c (_initialize_ada_tasks): Likewise.
4034 * breakpoint.c (_initialize_breakpoint): Likewise.
4035 * cli/cli-cmds.c (_initialize_cli_cmds): Likewise.
4036 * cli/cli-logging.c (_initialize_cli_logging): Likewise.
4037 * cli/cli-setshow.c (_initialize_cli_setshow): Likewise.
4038 * cli/cli-style.c (cli_style_option::add_setshow_commands,
4039 _initialize_cli_style): Likewise.
4040 * corelow.c (core_target_info): Likewise.
4041 * dwarf-index-cache.c (_initialize_index_cache): Likewise.
4042 * dwarf2read.c (_initialize_dwarf2_read): Likewise.
4043 * filesystem.c (_initialize_filesystem): Likewise.
4044 * frame.c (_initialize_frame): Likewise.
4045 * gnu-nat.c (add_task_commands): Likewise.
4046 * infcall.c (_initialize_infcall): Likewise.
4047 * infcmd.c (_initialize_infcmd): Likewise.
4048 * interps.c (_initialize_interpreter): Likewise.
4049 * language.c (_initialize_language): Likewise.
4050 * linux-fork.c (_initialize_linux_fork): Likewise.
4051 * maint-test-settings.c (_initialize_maint_test_settings): Likewise.
4052 * maint.c (_initialize_maint_cmds): Likewise.
4053 * memattr.c (_initialize_mem): Likewise.
4054 * printcmd.c (_initialize_printcmd): Likewise.
4055 * python/lib/gdb/function/strfns.py (_MemEq, _StrLen, _StrEq,
4056 _RegEx): Likewise.
4057 * ravenscar-thread.c (_initialize_ravenscar): Likewise.
4058 * record-btrace.c (_initialize_record_btrace): Likewise.
4059 * record-full.c (_initialize_record_full): Likewise.
4060 * record.c (_initialize_record): Likewise.
4061 * regcache-dump.c (_initialize_regcache_dump): Likewise.
4062 * regcache.c (_initialize_regcache): Likewise.
4063 * remote.c (add_packet_config_cmd, init_remote_threadtests,
4064 _initialize_remote): Likewise.
4065 * ser-tcp.c (_initialize_ser_tcp): Likewise.
4066 * serial.c (_initialize_serial): Likewise.
4067 * skip.c (_initialize_step_skip): Likewise.
4068 * source.c (_initialize_source): Likewise.
4069 * stack.c (_initialize_stack): Likewise.
4070 * symfile.c (_initialize_symfile): Likewise.
4071 * symtab.c (_initialize_symtab): Likewise.
4072 * target-descriptions.c (_initialize_target_descriptions): Likewise.
4073 * top.c (init_main): Likewise.
4074 * tracefile-tfile.c (tfile_target_info): Likewise.
4075 * tracepoint.c (_initialize_tracepoint): Likewise.
4076 * tui/tui-win.c (_initialize_tui_win): Likewise.
4077 * utils.c (add_internal_problem_command): Likewise.
4078 * valprint.c (value_print_option_defs): Likewise.
4079
4080 2019-08-06 Frank Ch. Eigler <fche@redhat.com>
4081
4082 PR build/24886
4083 * configure.ac: Drop enable-libmcheck support.
4084 * configure, config.in: Rebuild.
4085 * libmcheck.m4: Remove.
4086 * acinclude.m4: Don't include it.
4087 * Makefile.in: Don't distribute it.
4088 * top.c (print_gdb_configuration): Don't mention it.
4089
4090 2019-08-06 Tom Tromey <tom@tromey.com>
4091
4092 * utils.c (set_output_style): Sometimes pass stream to
4093 emit_style_escape.
4094 * ui-out.h (class ui_out) <can_emit_style_escape>: Declare.
4095 * record-btrace.c (btrace_insn_history): Update.
4096 * mi/mi-out.h (class mi_ui_out) <can_emit_style_escape>: New
4097 method.
4098 * disasm.h (gdb_pretty_print_disassembler): Add uiout parameter.
4099 Update initializers.
4100 <m_uiout>: New field.
4101 <m_di>: Move lower.
4102 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
4103 Remove "uiout" parameter.
4104 (dump_insns): Update.
4105 * cli-out.h (class cli_ui_out) <can_emit_style_escape>: Declare.
4106 * cli-out.c (cli_ui_out::can_emit_style_escape): New method.
4107
4108 2019-08-06 Christian Biesinger <cbiesinger@google.com>
4109
4110 * symtab.c (symbol_cache_lookup): Change int to enum block_enum.
4111 (error_in_psymtab_expansion): Likewise.
4112 (lookup_symbol_via_quick_fns): Likewise.
4113 (basic_lookup_transparent_type_quick): Likewise.
4114 (basic_lookup_transparent_type_1): Likewise.
4115
4116 2019-08-06 Tom Tromey <tromey@adacore.com>
4117
4118 * source.c (last_source_error): Now bool.
4119 (print_source_lines_base): Make "noprint" bool. Only open
4120 source file when last_source_visited changes.
4121
4122 2019-08-06 Tom Tromey <tromey@adacore.com>
4123
4124 * annotate.c (annotate_source_line): Use g_source_cache.
4125 * source-cache.c (source_cache::get_plain_source_lines): Change
4126 parameters. Populate m_offset_cache.
4127 (source_cache::ensure): New method.
4128 (source_cache::get_line_charpos): New method.
4129 (extract_lines): Move lower. Change parameters.
4130 (source_cache::get_source_lines): Move lower.
4131 * source-cache.h (class source_cache): Update comment.
4132 <get_line_charpos>: New method.
4133 <get_source_lines>: Update comment.
4134 <clear>: Clear m_offset_cache.
4135 <get_plain_source_lines>: Change parameters.
4136 <ensure>: New method
4137 <m_offset_cache>: New member.
4138 * source.c (forget_cached_source_info_for_objfile): Update.
4139 (info_source_command): Use g_source_cache.
4140 (find_source_lines, open_source_file_with_line_charpos): Remove.
4141 (print_source_lines_base, search_command_helper): Use g_source_cache.
4142 * source.h (open_source_file_with_line_charpos): Don't declare.
4143 * symtab.h (struct symtab) <nlines, line_charpos>: Remove.
4144 * tui/tui-source.c (tui_source_window::do_scroll_vertical):
4145 Use g_source_cache.
4146
4147 2019-08-06 Tom Tromey <tromey@adacore.com>
4148
4149 * source-cache.c (source_cache::get_plain_source_lines):
4150 Remove "first_line" and "last_line" parameters.
4151 (source_cache::get_source_lines): Cache plain text.
4152 * source-cache.h (class source_cache)
4153 <get_plain_source_lines>: Update.
4154
4155 2019-08-06 Tom Tromey <tromey@adacore.com>
4156
4157 * source-cache.c (extract_lines): No longer a method.
4158 Changed type of parameter. Include final newline.
4159 (selftests::extract_lines_test): New function.
4160 (_initialize_source_cache): Likewise.
4161 * source-cache.h (class source_cache)
4162 <extract_lines>: Don't declare.
4163
4164 2019-08-06 Tom Tromey <tromey@adacore.com>
4165
4166 * breakpoint.c (init_breakpoint_sal): Update.
4167 (breakpoint): Update.
4168 * breakpoint.h (struct breakpoint) <filter>: Now a
4169 unique_xmalloc_ptr.
4170
4171 2019-08-05 Christian Biesinger <cbiesinger@google.com>
4172
4173 * NEWS: Mention dictionary access on blocks.
4174 * python/py-block.c (blpy_getitem): New function.
4175 (block_object_as_mapping): New struct.
4176 (block_object_type): Use new struct for tp_as_mapping field.
4177
4178 2019-08-05 Christian Biesinger <cbiesinger@google.com>
4179
4180 * objfiles.h (objfile): Add a comment describing partial symbols.
4181
4182 2019-08-05 Tom Tromey <tromey@adacore.com>
4183
4184 * compile/compile.c (_initialize_compile): Use _(), not N_().
4185 * thread.c (_initialize_thread): Use _(), not N_().
4186 * stack.c (_initialize_stack): Use _(), not N_().
4187 * printcmd.c (_initialize_printcmd): Use _(), not N_().
4188
4189 2019-08-04 Simon Marchi <simon.marchi@polymtl.ca>
4190
4191 * dwarf2read.c (struct dw2_symtab_iterator):
4192 <want_specific_block>: Remove.
4193 <block_index>: Change type to gdb::optional.
4194 (dw2_symtab_iter_init): Remove WANT_SPECIFIC_BLOCK parameter,
4195 change type of BLOCK_INDEX parameter to gdb::optional.
4196 (dw2_symtab_iter_next): Re-write in function of gdb::optional.
4197 (dw2_lookup_symbol): Don't pass argument for
4198 WANT_SPECIFIC_BLOCK.
4199 (dw2_expand_symtabs_for_function): Don't pass argument for
4200 WANT_SPECIFIC_BLOCK, pass empty optional for BLOCK_INDEX.
4201 (class dw2_debug_names_iterator)
4202 <dw2_debug_names_iterator>: Remove WANT_SPECIFIC_BLOCK
4203 parameter, change BLOCK_INDEX type to gdb::optional.
4204 <m_want_specific_block>: Remove.
4205 <m_block_index>: Change type to gdb::optional.
4206 (dw2_debug_names_iterator::next): Change type of IS_STATIC to
4207 gdb::optional. Re-write in function of gdb::optional.
4208 (dw2_debug_names_lookup_symbol): Don't pass argument for
4209 WANT_SPECIFIC_BLOCK.
4210 (dw2_debug_names_expand_symtabs_for_function): Don't pass
4211 argument for WANT_SPECIFIC_BLOCK, pass empty optional for
4212 BLOCK_INDEX.
4213
4214 2019-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4215
4216 * NEWS: Mention changes to "info sources" command.
4217
4218 2019-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4219
4220 * symtab.c (filename_partial_match_opts): New struct type.
4221 (struct output_source_filename_data): New members
4222 regexp, c_regexp, partial_match.
4223 (output_source_filename): Use new members to decide to print file.
4224 (info_sources_option_defs): New variable.
4225 (make_info_sources_options_def_group, print_info_sources_header,
4226 info_sources_command_completer):
4227 New functions.
4228 (info_sources_command): Read new optional arguments.
4229 (_initialize_symtab): Update info sources help.
4230
4231 2019-08-02 Alexandre Oliva <oliva@adacore.com>
4232
4233 * ada-lang.c (exception_support_info_v0): Renamed from...
4234 (default_exception_support_info): ... this. Create new
4235 definition for v1.
4236 (ada_has_this_exception_support): Look up catch_handlers_sym.
4237 (ada_exception_support_info_sniffer): Try v0 after default.
4238
4239 2019-08-01 Tom Tromey <tromey@adacore.com>
4240
4241 * ia64-libunwind-tdep.h (struct libunwind_descr): Include
4242 gdbarch.h.
4243
4244 2019-08-01 Christian Biesinger <cbiesinger@google.com>
4245
4246 * s12z-tdep.c: Fix include path for s12z-opc.h.
4247
4248 2019-08-01 Alan Hayward <alan.hayward@arm.com>
4249
4250 * NEWS: Require GNU make 3.82.
4251
4252 2019-07-16 Tom Tromey <tom@tromey.com>
4253
4254 * tui/tui-wingeneral.h (tui_copy_win, tui_box_win): Don't
4255 declare.
4256
4257 2019-07-30 Tom Tromey <tromey@adacore.com>
4258
4259 * block.c (contained_in): Remove BLOCK_FUNCTION check.
4260
4261 2019-07-30 Kevin Buettner <kevinb@redhat.com>
4262
4263 * printcmd.c (print_address_symbolic): Print negative offsets.
4264 (build_address_symbolic): Force signed arithmetic when computing
4265 offset.
4266
4267 2019-07-30 Christian Biesinger <cbiesinger@google.com>
4268
4269 PR/24474: Add a function to lookup static variables.
4270 * NEWS: Mention this new function.
4271 * python/py-symbol.c (gdbpy_lookup_static_symbol): New function.
4272 * python/python-internal.h (gdbpy_lookup_static_symbol): New function.
4273 * python/python.c (python_GdbMethods): Add new function.
4274
4275 2019-07-29 Christian Biesinger <cbiesinger@google.com>
4276
4277 * NEWS: Mention new functions Objfile.lookup_{global,static}_symbol.
4278 * python/py-objfile.c (objfpy_lookup_global_symbol): New function.
4279 (objfpy_lookup_static_symbol): New function.
4280 (objfile_object_methods): Add new functions.
4281
4282 2019-07-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4283
4284 * NEWS: Mention 'set|show print frame-info'. Mention new
4285 'presence' value for 'frame-arguments'. Mention new '-frame-info'
4286 backtrace argument. Mention that python frame filtering code
4287 is now consistent with what 'backtrace' command prints.
4288
4289 2019-07-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4290
4291 * frame.h (enum print_what): New value 'SHORT_LOCATION', update
4292 comments.
4293 (print_frame_info_auto, print_frame_info_source_line,
4294 print_frame_info_location, print_frame_info_source_and_location,
4295 print_frame_info_location_and_address, print_frame_info_short_location):
4296 New declarations.
4297 (struct frame_print_options): New member print_frame_info.
4298 * extension.h (enum ext_lang_frame_args): New value CLI_PRESENCE.
4299 * stack.h (get_user_print_what_frame_info): New declaration.
4300 (frame_show_address): New declaration.
4301 * stack.c (print_frame_arguments_choices): New value 'presence'.
4302 (print_frame_info_auto, print_frame_info_source_line,
4303 print_frame_info_location, print_frame_info_source_and_location,
4304 print_frame_info_location_and_address, print_frame_info_short_location,
4305 print_frame_info_choices, print_frame_info_print_what): New definitions.
4306 (print_frame_args): Only print dots for args if print frame-arguments
4307 is 'presence'.
4308 (frame_print_option_defs): New element for "frame-info".
4309 (get_user_print_what_frame_info): New function.
4310 (frame_show_address): Make non static. Move comment to stack.h.
4311 (print_frame_info_to_print_what): New function.
4312 (print_frame_info): Update comment. Use fp_opts.print_frame_info
4313 to decide what to print.
4314 (backtrace_command_1): Handle the new print_frame_arguments_presence
4315 value.
4316 (_initialize_stack): Call add_setshow_enum_cmd for frame-info.
4317 * python/py-framefilter.c (py_print_args): Handle CLI_PRESENCE.
4318 (py_print_frame): In non-mi mode, use LOCATION as default for
4319 print_what, similarly to frame information printed directly by
4320 backtrace command. Handle frame-info user option in non MI mode.
4321
4322 2019-07-27 Kevin Buettner <kevinb@redhat.com>
4323
4324 * linux-thread-db.c (thread_db_target::thread_handle_to_thread_info):
4325 Add case for debugging 32-bit target on 64-bit host. Revise
4326 comment.
4327
4328 2019-07-27 Kevin Buettner <kevinb@redhat.com>
4329
4330 * infrun.c (fill_in_stop_func): Use find_pc_partial_function
4331 instead of find_function_entry_range_from_pc.
4332
4333 2019-07-27 Kevin Buettner <kevinb@redhat.com>
4334
4335 * stack.c (find_frame_funname): Remove code which preferred
4336 minsym over symtab sym in "certain pathological cases".
4337
4338 * valprint.h (build_address_symbolic): Add "prefer_sym_over_minsym"
4339 parameter. Change type of "do_demangle" to bool.
4340 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
4341 Pass suitable "prefer_sym_over_minsym" flag to
4342 build_address_symbolic(). Don't output "+" for negative offsets.
4343 * printcmd.c (print_address_symbolic): Update invocation of
4344 build_address_symbolic to include a "prefer_sym_over_minsym"
4345 flag.
4346 (build_address_symbolic): Add "prefer_sym_over_minsym" parameter.
4347 Restrict cases in which use of minimal symbol is preferred to that
4348 of a found symbol. Update comments.
4349
4350 * dwarf2-frame.c (dwarf2_frame_cache): Don't decode FDE instructions
4351 for entry pc when entry pc is out of range for that FDE.
4352
4353 2019-07-26 Brian Callahan <bcallah@openbsd.org>
4354
4355 PR gdb/24839:
4356 * gdb/obsd-nat.c (obsd_nat_target::pid_to_str): Fix typo in return
4357 type.
4358
4359 2019-07-25 Christian Biesinger <cbiesinger@google.com>
4360
4361 * python/py-objfile.c (add_separate_debug_file): Fix comment about
4362 this function's Python signature.
4363
4364
4365 2019-07-24 Christian Biesinger <cbiesinger@google.com>
4366
4367 * compile/compile-object-load.c (compile_object_load): Pass GLOBAL_SCOPE.
4368 * solib-spu.c (spu_lookup_lib_symbol): Pass GLOBAL_SCOPE.
4369 * solib-svr4.c (elf_lookup_lib_symbol): Pass GLOBAL_SCOPE.
4370 * symtab.c (lookup_global_symbol_from_objfile): Add a scope parameter.
4371 * symtab.h (lookup_global_symbol_from_objfile): Likewise.
4372
4373
4374 2019-07-24 Yoshinori Sato <ysato@users.sourceforge.jp>
4375
4376 * h8300-tdep.c (h8300_register_name_common): New.
4377 h8300_register_name): Use h8300_register_name_common.
4378 (h8300s_register_name): Likewise.
4379 (h8300sx_register_name): Likewise.
4380 (h8300h_register_nam): New.
4381 (h8300_gdbarch_init): Use h8300h_register_name in h8300h machine.
4382
4383
4384 2019-07-23 Srinath Parvathaneni <srinath.parvathaneni@arm.com>
4385
4386 * arm-tdep.c (arm_skip_cmse_entry): New function.
4387 (arm_is_sgstubs_section): New function.
4388 (arm_skip_stub): Add call to arm_skip_cmse_entry function.
4389
4390 2019-07-22 Tom Tromey <tom@tromey.com>
4391
4392 * tui/tui-win.c (tui_win_info::make_invisible_and_set_new_height):
4393 Don't self-assign.
4394
4395 2019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
4396
4397 * c-typeprint.c (c_print_typedef): Pass -1 instead of 0 to
4398 type_print.
4399
4400 2019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
4401
4402 * symtab.c (search_symbols): Adjust msymbol matching type arrays
4403 so that GDB doesn't match any msymbols when searching in the
4404 TYPES_DOMAIN.
4405 (print_symbol_info): Print using typedef_print or type_print based
4406 on the type of the symbol. Add updated FIXME comment moved from...
4407 (_initialize_symtab): ... move and update FIXME comment to above.
4408
4409 2019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
4410
4411 * NEWS: Mention adding -q option to "info types".
4412 * symtab.c (struct info_types_options): New struct.
4413 (info_types_options_defs): New variable.
4414 (make_info_types_options_def_group): New function.
4415 (info_types_command): Use gdb::option framework to parse options.
4416 (info_types_command_completer): New function.
4417 (_initialize_symtab): Extend the help text on "info types" and
4418 register command completer.
4419
4420 2019-07-21 Christian Biesinger <cbiesinger@google.com>
4421
4422 * symtab.c (lookup_symbol_in_objfile_symtabs): Change int to block_enum.
4423 (lookup_symbol_in_objfile): Change int to block_enum and add a
4424 gdb_assert to make sure block_index is GLOBAL_BLOCK or STATIC_BLOCK.
4425
4426 2019-07-20 Christian Biesinger <cbiesinger@google.com>
4427
4428 * MAINTAINERS (Write After Approval): Add self.
4429
4430 2019-07-19 Andrew Burgess <andrew.burgess@embecosm.com>
4431
4432 * riscv-tdep.c (riscv_push_dummy_code): Write a 4-byte nop
4433 instruction to the dummy code region.
4434
4435 2019-07-19 Tom Tromey <tromey@adacore.com>
4436
4437 * contrib/ari/gdb_ari.sh: Mention C++11, not ISO C 90.
4438 (ARGSUSED, PARAMS, __func__): Remove rules.
4439
4440 2019-07-19 Alan Hayward <alan.hayward@arm.com>
4441
4442 * arm-tdep.c (_initialize_arm_tdep): Remove xml tests.
4443 * features/arm/arm-with-iwmmxt.c: Remove.
4444 * features/arm/arm-with-iwmmxt.xml: Remove.
4445 * features/arm/arm-with-m-fpa-layout.c: Remove.
4446 * features/arm/arm-with-m-fpa-layout.xml: Remove.
4447 * features/arm/arm-with-m-vfp-d16.c: Remove.
4448 * features/arm/arm-with-m-vfp-d16.xml: Remove.
4449 * features/arm/arm-with-m.c: Remove.
4450 * features/arm/arm-with-m.xml: Remove.
4451 * features/arm/arm-with-neon.c: Remove.
4452 * features/arm/arm-with-neon.xml: Remove.
4453 * features/arm/arm-with-vfpv2.c: Remove.
4454 * features/arm/arm-with-vfpv2.xml: Remove.
4455 * features/arm/arm-with-vfpv3.c: Remove.
4456 * features/arm/arm-with-vfpv3.xml: Remove.
4457
4458 2019-07-19 Alan Hayward <alan.hayward@arm.com>
4459
4460 * arm-tdep.c (_initialize_arm_tdep): Add xml regression tests.
4461
4462 2019-07-19 Alan Hayward <alan.hayward@arm.com>
4463
4464 * arch/aarch32.c (aarch32_create_target_description): Create
4465 target descriptions using features.
4466 * arch/arm.c (arm_create_target_description)
4467 (arm_create_mprofile_target_description): Likewise.
4468 * arm-tdep.c (_initialize_arm_tdep): Remove tdesc init calls.
4469
4470 2019-07-19 Alan Hayward <alan.hayward@arm.com>
4471
4472 * Makefile.in: Add new files.
4473 * aarch32-tdep.c: New file.
4474 * aarch32-tdep.h: New file.
4475 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
4476 Call aarch32_read_description.
4477 * arch/aarch32.c: New file.
4478 * arch/aarch32.h: New file.
4479 * arch/arm.c (arm_create_target_description)
4480 (arm_create_mprofile_target_description): New function.
4481 * arch/arm.h (arm_fp_type, arm_m_profile_type): New enum.
4482 (arm_create_target_description)
4483 (arm_create_mprofile_target_description): New declaration.
4484 * arm-fbsd-tdep.c (arm_fbsd_read_description_auxv): Call
4485 read_description functions.
4486 * arm-linux-nat.c (arm_linux_nat_target::read_description):
4487 Likewise.
4488 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
4489 * arm-tdep.c (tdesc_arm_list): New variable.
4490 (arm_register_g_packet_guesses): Call create description functions.
4491 (arm_read_description) (arm_read_mprofile_description): New
4492 function.
4493 * arm-tdep.h (arm_read_description)
4494 (arm_read_mprofile_description): Add declaration.
4495 * configure.tgt: Add new files.
4496
4497 2019-07-18 Guillaume LABARTHE <guillaume.labarthe@gmail.com>
4498
4499 * top.c (new_ui_command): Open specified terminal just once.
4500
4501 2019-07-18 Tom Tromey <tromey@adacore.com>
4502
4503 * symtab.c (main_name): Constify return type.
4504 * symfile.c (set_initial_language): Update.
4505 * symtab.h (main_name): Constify return type.
4506
4507 2019-07-17 Tom Tromey <tom@tromey.com>
4508
4509 * tui/tui-winsource.c (tui_update_source_window)
4510 (tui_update_source_window_as_is)
4511 (tui_update_source_windows_with_line): Remove return.
4512 * tui/tui-disasm.c (tui_show_disassem)
4513 (tui_show_disassem_and_update_source): Remove return.
4514 * tui/tui.c (tui_reset): Remove return.
4515 * tui/tui-wingeneral.c
4516 (tui_check_and_display_highlight_if_needed): Remove return.
4517
4518 2019-07-17 Tom Tromey <tom@tromey.com>
4519
4520 * tui/tui-win.c (parse_scrolling_args): Throw separate errors.
4521
4522 2019-07-17 Tom Tromey <tom@tromey.com>
4523
4524 * tui/tui-winsource.h (struct tui_exec_info_window)
4525 (struct tui_source_window_base): Move from tui-data.h.
4526 * tui/tui-winsource.c: Move many method definitions from
4527 elsewhere. Remove "structuring" comments.
4528 * tui/tui-wingeneral.c (tui_source_window_base::make_visible)
4529 (tui_source_window_base::refresh_window): Move to
4530 tui-winsource.c.
4531 * tui/tui-win.c (tui_source_window_base::refresh_all)
4532 (tui_source_window_base::update_tab_width)
4533 (tui_source_window_base::set_new_height)
4534 (tui_source_window_base::do_make_visible_with_new_height): Move to
4535 tui-winsource.c.
4536 * tui/tui-source.h: Update.
4537 * tui/tui-source.c (tui_source_window_base::reset): Move to
4538 tui-winsource.c.
4539 * tui/tui-disasm.h: Update.
4540 * tui/tui-data.h (struct tui_exec_info_window): Move to
4541 tui-winsource.h.
4542 (struct tui_source_window_base): Likewise.
4543 * tui/tui-data.c (tui_source_window_base::clear_detail)
4544 (tui_source_window_base, ~tui_source_window_base): Move to
4545 tui-winsource.c.
4546
4547 2019-07-17 Tom Tromey <tom@tromey.com>
4548
4549 * tui/tui-win.c (tui_resize_all)
4550 (tui_source_window_base::update_tab_width)
4551 (tui_adjust_win_heights): Update.
4552 (tui_win_info::make_invisible_and_set_new_height): Rename from
4553 make_invisible_and_set_new_height.
4554 * tui/tui-data.h (struct tui_win_info)
4555 <make_invisible_and_set_new_height>: New method.
4556
4557 2019-07-17 Tom Tromey <tom@tromey.com>
4558
4559 * tui/tui.c: Update.
4560 * tui/tui-source.h (struct tui_source_window): Move from
4561 tui-data.h.
4562 * tui/tui-layout.c: Update.
4563 * tui/tui-disasm.c: Update.
4564 * tui/tui-data.h (struct tui_source_window): Move to
4565 tui-source.h.
4566
4567 2019-07-17 Tom Tromey <tom@tromey.com>
4568
4569 * tui/tui-disasm.h (struct tui_disasm_window): Move from
4570 tui-data.h.
4571 * tui/tui-data.h (struct tui_disasm_window): Move to
4572 tui-disasm.h.
4573
4574 2019-07-17 Tom Tromey <tom@tromey.com>
4575
4576 * tui/tui-regs.h (struct tui_data_item_window): Move from
4577 tui-data.h.
4578 * tui/tui-regs.c (tui_data_item_window): Move from tui-data.c.
4579 * tui/tui-data.h (struct tui_data_item_window): Move to
4580 tui-regs.h.
4581 * tui/tui-data.c (~tui_data_item_window): Move to tui-regs.c.
4582
4583 2019-07-17 Tom Tromey <tom@tromey.com>
4584
4585 * tui/tui.c: Update.
4586 * tui/tui-win.c (tui_cmd_window::do_make_visible_with_new_height)
4587 (tui_cmd_window::max_height): Move to tui-command.c.
4588 * tui/tui-layout.c: Update.
4589 * tui/tui-data.h (struct tui_cmd_window): Move to tui-command.h.
4590 * tui/tui-data.c (tui_cmd_window::clear_detail): Move to
4591 tui-command.c.
4592 * tui/tui-command.h (struct tui_cmd_window): Move from
4593 tui-data.h.
4594 * tui/tui-command.c: Remove "structuring" comments.
4595 (tui_cmd_window::clear_detail)
4596 (tui_cmd_window::do_make_visible_with_new_height)
4597 (tui_cmd_window::max_height): Move from elsewhere.
4598
4599 2019-07-17 Tom Tromey <tom@tromey.com>
4600
4601 * tui/tui-io.c (tui_dispatch_ctrl_char): Move from tui-command.c.
4602 Now static.
4603 * tui/tui-command.h (tui_dispatch_ctrl_char): Don't declare.
4604 * tui/tui-command.c (tui_dispatch_ctrl_char): Move to tui-io.c.
4605
4606 2019-07-17 Tom Tromey <tom@tromey.com>
4607
4608 * tui/tui.c: Update.
4609 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Move to
4610 tui-regs.c.
4611 * tui/tui-windata.h: Remove file.
4612 * tui/tui-windata.c: Remove file.
4613 * tui/tui-win.c (tui_data_window::set_new_height)
4614 (tui_data_window::do_make_visible_with_new_height): Move to
4615 tui-regs.c.
4616 * tui/tui-regs.h (struct tui_data_window): Move from tui-data.h.
4617 * tui/tui-regs.c: Remove "structuring" comments.
4618 (tui_data_window::first_data_item_displayed)
4619 (tui_data_window::delete_data_content_windows)
4620 (tui_data_window::erase_data_content)
4621 (tui_data_window::display_all_data)
4622 (tui_data_window::refresh_all)
4623 (tui_data_window::do_scroll_vertical)
4624 (tui_data_window::clear_detail, tui_data_window::set_new_height)
4625 (tui_data_window::do_make_visible_with_new_height)
4626 (tui_data_window::refresh_window): Move from elsewhere.
4627 (_initialize_tui_regs): Move to end of file.
4628 * tui/tui-layout.c: Update.
4629 * tui/tui-hooks.c: Update.
4630 * tui/tui-data.h (struct tui_data_window): Move to tui-regs.h.
4631 * tui/tui-data.c (tui_data_window::clear_detail): Move to
4632 tui-regs.c.
4633 * Makefile.in (SUBDIR_TUI_SRCS): Remove tui-windata.c.
4634
4635 2019-07-17 Tom Tromey <tom@tromey.com>
4636
4637 * tui/tui-io.c (tui_puts_internal): Call wrefresh if newline is
4638 seen.
4639
4640 2019-07-17 Tom Tromey <tom@tromey.com>
4641
4642 * tui/tui-win.c (tui_source_window_base::set_new_height)
4643 (tui_source_window_base::do_make_visible_with_new_height): Use
4644 m_has_locator field directly.
4645 * tui/tui-data.h (struct tui_win_info) <has_locator>: Remove
4646 method.
4647 (struct tui_source_window_base) <has_locator>: Likewise.
4648
4649 2019-07-17 Tom Tromey <tom@tromey.com>
4650
4651 * tui/tui-wingeneral.h (tui_make_visible, tui_make_invisible):
4652 Don't declare.
4653 * tui/tui-wingeneral.c (tui_make_visible, tui_make_invisible):
4654 Remove.
4655 * tui/tui-win.c (tui_source_window_base::set_new_height)
4656 (tui_source_window_base::set_new_height)
4657 (make_invisible_and_set_new_height)
4658 (tui_source_window_base::do_make_visible_with_new_height)
4659 (tui_source_window_base::do_make_visible_with_new_height):
4660 Update.
4661 * tui/tui-layout.c (show_source_disasm_command, show_data)
4662 (show_source_or_disasm_and_command): Update.
4663 * tui/tui-layout.c (show_layout): Update.
4664
4665 2019-07-17 Tom Tromey <tom@tromey.com>
4666
4667 * tui/tui-layout.c (make_data_window): Remove.
4668 (show_data): Unify creation and re-initialization cases.
4669
4670 2019-07-17 Tom Tromey <tom@tromey.com>
4671
4672 * tui/tui-layout.c (make_source_window, make_disasm_window):
4673 Remove.
4674 (show_data): Unify creation and re-initialization cases.
4675
4676 2019-07-17 Tom Tromey <tom@tromey.com>
4677
4678 * tui/tui-layout.c (make_command_window): Remove.
4679 (show_source_disasm_command, show_source_or_disasm_and_command):
4680 Unify creation and re-initialization cases.
4681
4682 2019-07-17 Tom Tromey <tom@tromey.com>
4683
4684 * tui/tui-layout.c (show_source_or_disasm_and_command): Unify
4685 creation and re-initialization cases.
4686
4687 2019-07-17 Tom Tromey <tom@tromey.com>
4688
4689 * tui/tui-regs.c (tui_get_register): Return void.
4690
4691 2019-07-17 Tom Tromey <tom@tromey.com>
4692
4693 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible):
4694 Simplify.
4695
4696 2019-07-17 Tom Tromey <tom@tromey.com>
4697
4698 * tui/tui-layout.c (show_source_disasm_command): Simplify window
4699 resetting.
4700
4701 2019-07-17 Tom Tromey <tom@tromey.com>
4702
4703 * tui/tui.h (tui_set_layout_by_name): Don't declare.
4704 * tui/tui-regs.c (tui_reg_layout): New function.
4705 (tui_show_registers, tui_reg_command): Use it.
4706 * tui/tui-layout.c (LAYOUT_USAGE): Remove.
4707 (tui_layout_command): Rename from tui_set_layout_by_name. Change
4708 parameters.
4709 (tui_layout_command): Remove.
4710
4711 2019-07-17 Tom Tromey <tom@tromey.com>
4712
4713 * tui/tui-layout.h (tui/tui-layout): Return void.
4714 * tui/tui-layout.c (tui_set_layout): Return void. Add assert.
4715
4716 2019-07-17 Tom Tromey <tom@tromey.com>
4717
4718 * tui/tui-layout.c (show_source_disasm_command, show_data):
4719 Update.
4720 (reset_locator): Remove.
4721 (show_source_or_disasm_and_command): Update.
4722
4723 2019-07-17 Tom Tromey <tom@tromey.com>
4724
4725 * tui/tui-source.c (tui_source_window_base::reset): Remove
4726 win_type parameter.
4727 * tui/tui-layout.c (make_command_window, make_source_window)
4728 (make_disasm_window, make_data_window)
4729 (show_source_disasm_command, show_data, tui_gen_win_info::reset)
4730 (reset_locator, show_source_or_disasm_and_command): Update.
4731 * tui/tui-data.h (struct tui_gen_win_info) <reset>: Remove
4732 win_type parameter.
4733 (struct tui_source_window_base) <reset>: Likewise.
4734
4735 2019-07-17 Tom Tromey <tom@tromey.com>
4736
4737 * tui/tui-layout.c (show_source_disasm_command): Use
4738 reset_locator.
4739 (reset_locator): New function.
4740 (init_and_make_win): Remove.
4741 (show_source_or_disasm_and_command): Use reset_locator.
4742
4743 2019-07-17 Tom Tromey <tom@tromey.com>
4744
4745 * tui/tui-winsource.c (tui_set_exec_info_content): Remove
4746 condition.
4747 * tui/tui-wingeneral.c (tui_source_window_base::make_visible):
4748 Remove condition.
4749 * tui/tui-source.c (tui_source_window_base::reset): New method.
4750 * tui/tui-layout.c (make_command_window): Don't call
4751 init_and_make_win.
4752 (make_source_window, make_disasm_window): Don't call
4753 make_source_or_disasm_window.
4754 (make_data_window): Don't call init_and_make_win. Change calling
4755 convention.
4756 (show_source_disasm_command, show_data): Simplify.
4757 (make_source_or_disasm_window): Remove.
4758 (show_source_or_disasm_and_command): Simplify.
4759 * tui/tui-data.h (struct tui_gen_win_info) <reset>: Now virtual.
4760 (struct tui_source_window_base) <reset>: Likewise.
4761 <execution_info>: Remove initializer.
4762 * tui/tui-data.c (tui_source_window_base): Initialize
4763 execution_info.
4764
4765 2019-07-17 Tom Tromey <tom@tromey.com>
4766
4767 * tui/tui-layout.c (tui_set_layout): Remove regs_populate
4768 variable.
4769
4770 2019-07-17 Tom Tromey <tom@tromey.com>
4771
4772 * tui/tui.c (tui_rl_other_window): Update.
4773 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Call
4774 superclass method first. Always iterate over regs_content.
4775 (tui_unhighlight_win, tui_highlight_win): Use refresh_window
4776 method.
4777 * tui/tui-win.c (tui_set_focus_command): Update.
4778
4779 2019-07-17 Tom Tromey <tom@tromey.com>
4780
4781 * tui/tui-win.c (tui_set_focus_command): Rename from
4782 tui_set_focus. Call tui_enable.
4783 (tui_set_focus_command): Remove.
4784
4785 2019-07-17 Tom Tromey <tom@tromey.com>
4786
4787 * tui/tui-winsource.c (tui_show_exec_info_content): Don't call
4788 refresh_window.
4789 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Call
4790 touchwin.
4791 (tui_data_window::refresh_window): Call refresh_window on data
4792 items. Always call superclass refresh_window.
4793 (tui_win_info::refresh): Remove.
4794 (tui_source_window_base::refresh_window): Update.
4795 (tui_refresh_all): Update.
4796 * tui/tui-layout.c (show_source_disasm_command): Remove call to
4797 refresh_window.
4798 (show_source_or_disasm_and_command): Likewise.
4799 * tui/tui-data.h (struct tui_win_info) <refresh>: Remove.
4800 (struct tui_source_window_base) <refresh>: Likewise.
4801
4802 2019-07-17 Tom Tromey <tom@tromey.com>
4803
4804 * tui/tui-winsource.c (tui_clear_source_content)
4805 (tui_show_source_content): Update.
4806 * tui/tui-source.c (tui_source_window::showing_source_p): Check
4807 whether content is empty.
4808 * tui/tui-data.h (struct tui_source_window_base) <content_in_use>:
4809 Remove.
4810
4811 2019-07-17 Tom Tromey <tom@tromey.com>
4812
4813 * tui/tui-winsource.c (tui_erase_source_content): Clear the
4814 window's contents.
4815 * tui/tui-source.h (tui_set_source_content_nil): Don't declare.
4816 * tui/tui-source.c (tui_set_source_content_nil): Remove.
4817
4818 2019-07-17 Tom Tromey <tom@tromey.com>
4819
4820 * tui/tui-data.h (UNDEFINED_ITEM): Remove define.
4821 (struct tui_data_item_window): Update.
4822
4823 2019-07-17 Tom Tromey <tom@tromey.com>
4824
4825 * tui/tui-data.h (MAX_CONTENT_COUNT, TUI_NULL_STR)
4826 (DEFAULT_HISTORY_COUNT, WITH_LOCATOR, NO_LOCATOR): Remove
4827 defines.
4828
4829 2019-07-17 Tom Tromey <tom@tromey.com>
4830
4831 * tui/tui-winsource.h (tui_erase_source_content)
4832 (tui_clear_source_content): Remove "display_prompt" parameter.
4833 * tui/tui-winsource.c (tui_update_source_window_as_is)
4834 (tui_update_source_windows_with_addr): Update.
4835 (tui_clear_source_content): Remove "display_prompt" parameter.
4836 (tui_erase_source_content): Likewise. Simplify.
4837 (tui_show_source_content): Update.
4838 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
4839 * tui/tui-stack.c (tui_show_frame_info): Update.
4840 * tui/tui-data.h (EMPTY_SOURCE_PROMPT, NO_EMPTY_SOURCE_PROMPT):
4841 Remove defines.
4842
4843 2019-07-17 Tom Tromey <tom@tromey.com>
4844
4845 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
4846 * tui/tui-disasm.h (tui_set_disassem_content): Add win_info
4847 parameter.
4848 * tui/tui-disasm.c (tui_set_disassem_content): Add win_info
4849 parameter.
4850
4851 2019-07-17 Tom Tromey <tom@tromey.com>
4852
4853 * tui/tui-winsource.c (tui_clear_source_content)
4854 (tui_show_source_content, tui_show_exec_info_content)
4855 (tui_clear_exec_info_content): Update.
4856 * tui/tui-stack.c (tui_show_locator_content): Update.
4857 (tui_show_frame_info): Update.
4858 * tui/tui-source.h (tui_source_window): Don't declare.
4859 * tui/tui-source.c (tui_source_window::showing_source_p): Rename
4860 from tui_source_is_displayed.
4861 * tui/tui-data.h (struct tui_gen_win_info) <content_in_use>:
4862 Remove field.
4863 (struct tui_source_window_base) <content_in_use>: New field. Now
4864 bool.
4865 (struct tui_source_window) <showing_source_p>: New method.
4866 (TUI_SRC_WIN): Change cast.
4867 * tui/tui-data.c (tui_initialize_static_data): Update.
4868
4869 2019-07-17 Tom Tromey <tom@tromey.com>
4870
4871 * tui/tui-winsource.c (tui_update_breakpoint_info): Use
4872 location_matches_p.
4873 * tui/tui-source.c (tui_source_window::location_matches_p): New
4874 method.
4875 * tui/tui-disasm.c (tui_disasm_window::location_matches_p): New
4876 method.
4877 * tui/tui-data.h (struct tui_source_window_base)
4878 <location_matches_p>: New method.
4879 (struct tui_source_window, struct tui_disasm_window)
4880 <location_matches_p>: Likewise.
4881
4882 2019-07-17 Tom Tromey <tom@tromey.com>
4883
4884 * tui/tui-win.c (tui_set_win_height_command): Rename from
4885 tui_set_win_height.
4886 (tui_set_win_height_command): Remove.
4887
4888 2019-07-17 Tom Tromey <tom@tromey.com>
4889
4890 * tui/tui-source.c (tui_source_window): New constructor. Add
4891 observer.
4892 (~tui_source_window): New destructor.
4893 (tui_source_window::style_changed): New method.
4894 * tui/tui-hooks.c (tui_redisplay_source): Remove.
4895 (tui_attach_detach_observers): Update.
4896 * tui/tui-data.h (struct tui_source_window): Make constructor not
4897 inline. Add destructor.
4898 (struct tui_source_window) <style_changed>: New method.
4899 <m_observable>: New member.
4900
4901 2019-07-17 Tom Tromey <tom@tromey.com>
4902
4903 * tui/tui-data.c (tui_clear_source_windows_detail): Fix typo.
4904 * tui/tui-win.c (tui_resize_all): Fix typo.
4905
4906 2019-07-17 Tom Tromey <tom@tromey.com>
4907
4908 * tui/tui-wingeneral.h (tui_refresh_all): Update.
4909 * tui/tui-wingeneral.c (make_all_visible): Use foreach.
4910 (tui_refresh_all): Remove "list" parameter. Use foreach.
4911 * tui/tui-win.c (window_name_completer): Use foreach.
4912 (tui_refresh_all_win, tui_rehighlight_all, tui_all_windows_info)
4913 (update_tab_width): Likewise.
4914 * tui/tui-layout.c (show_layout): Update.
4915 * tui/tui-data.h (class tui_window_iterator): New.
4916 (struct all_tui_windows): New.
4917 * tui/tui-data.c (tui_partial_win_by_name): Use foreach.
4918
4919 2019-07-17 Tom Tromey <tom@tromey.com>
4920
4921 * tui/tui-regs.c (tui_reg_next, tui_reg_prev): Add "current_group"
4922 parameter. Don't reference globals.
4923 (tui_reg_command): Update.
4924
4925 2019-07-17 Tom Tromey <tom@tromey.com>
4926
4927 * tui/tui-regs.c (tui_show_registers): Simplify.
4928
4929 2019-07-17 Tom Tromey <tom@tromey.com>
4930
4931 * tui/tui-regs.c (tui_show_registers): Update.
4932 (tui_show_register_group): Add win_info parameter.
4933
4934 2019-07-17 Tom Tromey <tom@tromey.com>
4935
4936 * tui/tui-regs.c (tui_data_window::display_reg_element_at_line):
4937 Rename from tui_display_reg_element_at_line.
4938 (tui_data_window::display_registers_from_line): Update.
4939 * tui/tui-data.h (struct tui_data_window)
4940 <display_reg_element_at_line>: New method.
4941
4942 2019-07-17 Tom Tromey <tom@tromey.com>
4943
4944 * tui/tui-regs.h (tui_display_registers_from)
4945 (tui_display_registers_from_line): Don't declare.
4946 * tui/tui-windata.c (tui_data_window::display_all_data)
4947 (tui_data_window::refresh_all)
4948 (tui_data_window::do_scroll_vertical): Update.
4949 * tui/tui-regs.c (tui_data_window::display_registers_from): Rename
4950 from tui_display_registers_from.
4951 (tui_display_reg_element_at_line): Update.
4952 (tui_data_window::display_registers_from_line): Rename from
4953 tui_display_registers_from_line.
4954 * tui/tui-data.h (struct tui_data_window) <display_registers_from,
4955 display_registers_from_line>: New methods.
4956
4957 2019-07-17 Tom Tromey <tom@tromey.com>
4958
4959 * tui/tui-windata.h (tui_erase_data_content): Don't declare.
4960 * tui/tui-windata.c (tui_data_window::erase_data_content): Rename
4961 from tui_erase_data_content.
4962 (tui_data_window::display_all_data)
4963 (tui_data_window::refresh_all)
4964 (tui_data_window::do_scroll_vertical): Update.
4965 * tui/tui-regs.c (tui_show_registers): Update.
4966 * tui/tui-data.h (struct tui_data_window) <erase_data_content>:
4967 New method.
4968
4969 2019-07-17 Tom Tromey <tom@tromey.com>
4970
4971 * tui/tui-windata.h (tui_delete_data_content_windows): Don't
4972 declare.
4973 * tui/tui-windata.c
4974 (tui_data_window::delete_data_content_windows): Rename from
4975 tui_delete_data_content_windows.
4976 (tui_data_window::display_all_data)
4977 (tui_data_window::do_scroll_vertical): Update.
4978 * tui/tui-data.h (struct tui_data_window)
4979 <delete_data_content_windows>: New method.
4980
4981 2019-07-17 Tom Tromey <tom@tromey.com>
4982
4983 * tui/tui-windata.h (tui_refresh_data_win): Don't declare.
4984 * tui/tui-regs.h (tui_first_reg_element_inline): Don't declare.
4985
4986 2019-07-17 Tom Tromey <tom@tromey.com>
4987
4988 * tui/tui-windata.h (tui_display_all_data): Don't declare.
4989 * tui/tui-windata.c (tui_data_window::display_all_data): Rename
4990 from tui_display_all_data.
4991 * tui/tui-win.c
4992 (tui_data_window::do_make_visible_with_new_height): Update.
4993 * tui/tui-regs.c (tui_show_registers): Update.
4994 * tui/tui-layout.c (tui_set_layout): Update.
4995 * tui/tui-data.h (struct tui_data_window) <display_all_data>: New
4996 method.
4997
4998 2019-07-17 Tom Tromey <tom@tromey.com>
4999
5000 * tui/tui-windata.h (tui_display_data_from): Don't declare.
5001 * tui/tui-windata.c (tui_display_data_from): Remove.
5002 (tui_data_window::refresh_all): Update.
5003
5004 2019-07-17 Tom Tromey <tom@tromey.com>
5005
5006 * tui/tui-windata.h (tui_display_data_from_line): Don't declare.
5007 * tui/tui-windata.c (tui_display_data_from_line): Remove.
5008 (tui_display_data_from, tui_data_window::do_scroll_vertical): Call
5009 tui_display_registers_from_line.
5010 * tui/tui-regs.h (tui_display_registers_from_line): Update.
5011 * tui/tui-regs.c (tui_display_registers_from_line): Remove
5012 "force_display" parameter.
5013
5014 2019-07-17 Tom Tromey <tom@tromey.com>
5015
5016 * tui/tui-regs.h (tui_first_reg_element_no_inline): Don't
5017 declare.
5018 * tui/tui-regs.c (tui_data_window::first_reg_element_no_inline):
5019 Rename from tui_first_reg_element_no_inline.
5020 (tui_display_reg_element_at_line)
5021 (tui_display_registers_from_line): Update.
5022 * tui/tui-data.h (struct tui_data_window)
5023 <first_reg_element_no_inline>: New method.
5024
5025 2019-07-17 Tom Tromey <tom@tromey.com>
5026
5027 * tui/tui-windata.c (tui_display_data_from)
5028 (tui_data_window::do_scroll_vertical): Update.
5029 * tui/tui-regs.h (tui_line_from_reg_element_no): Don't declare.
5030 * tui/tui-regs.c (tui_data_window::line_from_reg_element_no):
5031 Rename from tui_line_from_reg_element_no.
5032 (tui_display_registers_from_line): Update.
5033 * tui/tui-data.h (struct tui_data_window)
5034 <line_from_reg_element_no>: New method.
5035
5036 2019-07-17 Tom Tromey <tom@tromey.com>
5037
5038 * tui/tui-regs.h (tui_last_regs_line_no): Don't declare.
5039 * tui/tui-regs.c (tui_data_window::last_regs_line_no): Rename from
5040 tui_last_regs_line_no.
5041 (tui_display_reg_element_at_line)
5042 (tui_display_registers_from_line): Update.
5043 * tui/tui-data.h (struct tui_data_window) <last_regs_line_no>: New
5044 method.
5045
5046 2019-07-17 Tom Tromey <tom@tromey.com>
5047
5048 PR tui/24722:
5049 * tui/tui-winsource.h (tui_update_all_breakpoint_info)
5050 (tui_update_breakpoint_info): Add "being_deleted" parameter.
5051 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
5052 (tui_update_all_breakpoint_info): Add "being_deleted" parameter.
5053 (tui_update_breakpoint_info): Likewise.
5054 * tui/tui-hooks.c (tui_event_create_breakpoint)
5055 (tui_event_delete_breakpoint, tui_event_modify_breakpoint):
5056 Update.
5057
5058 2019-07-17 Tom Tromey <tom@tromey.com>
5059
5060 * tui/tui-stack.c (tui_show_frame_info): Consolidate "if"s.
5061
5062 2019-07-17 Tom Tromey <tom@tromey.com>
5063
5064 * tui/tui-winsource.c (tui_update_source_window_as_is)
5065 (tui_update_source_windows_with_addr): Update.
5066 * tui/tui-source.h (tui_set_source_content)
5067 (tui_show_symtab_source): Add "win_info" parameter.
5068 * tui/tui-source.c (tui_set_source_content): Add "win_info"
5069 parameter.
5070 (tui_show_symtab_source): Likewise.
5071
5072 2019-07-17 Tom Tromey <tom@tromey.com>
5073
5074 * tui/tui-wingeneral.c
5075 (tui_check_and_display_highlight_if_needed): Check can_highlight.
5076
5077 2019-07-17 Tom Tromey <tom@tromey.com>
5078
5079 * tui/tui-data.h (struct tui_win_info) <can_scroll>: New method.
5080 (struct tui_cmd_window) <can_scroll>: New method.
5081 * tui/tui-command.c (tui_dispatch_ctrl_char): Use can_scroll
5082 method.
5083
5084 2019-07-17 Tom Tromey <tromey@adacore.com>
5085
5086 * ui-out.h (class ui_out) <field_signed, field_fmt_signed,
5087 do_field_signed>: Rename. Change type of "value".
5088 * ui-out.c (ui_out::field_signed): Rename from field_int.
5089 Change type of "value".
5090 (ui_out::field_fmt_signed): Rename from field_fmt_int. Change
5091 type of "value".
5092 * tui/tui-out.h (class tui_ui_out) <do_field_signed>: Rename from
5093 do_field_int. Change type of "value".
5094 * tui/tui-out.c (tui_ui_out::do_field_signed): Rename from
5095 do_field_int. Change type of "value".
5096 * tracepoint.c (trace_status_mi, tfind_1)
5097 (print_one_static_tracepoint_marker): Update.
5098 * thread.c (print_thread_info_1, print_selected_thread_frame):
5099 Update.
5100 * stack.c (print_frame, print_frame_info): Update.
5101 * spu-tdep.c (info_spu_signal_command, info_spu_dma_cmdlist):
5102 Update.
5103 * source.c (print_source_lines_base): Update.
5104 * skip.c (info_skip_command): Update.
5105 * record-btrace.c (btrace_ui_out_decode_error)
5106 (btrace_call_history_src_line): Update.
5107 * python/py-framefilter.c (py_print_single_arg, py_print_frame):
5108 Update.
5109 * progspace.c (print_program_space): Update.
5110 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Update.
5111 * mi/mi-out.h (class mi_ui_out) <do_field_signed>: Rename from
5112 do_field_int. Change type of "value".
5113 * mi/mi-out.c (mi_ui_out::do_table_begin)
5114 (mi_ui_out::do_table_header): Update.
5115 (mi_ui_out::do_field_signed): Rename from do_field_int. Change
5116 type of "value".
5117 * mi/mi-main.c (mi_cmd_thread_list_ids, print_one_inferior)
5118 (mi_cmd_data_list_changed_registers, output_register)
5119 (mi_cmd_data_read_memory, mi_load_progress)
5120 (mi_cmd_trace_frame_collected): Update.
5121 * mi/mi-interp.c (mi_on_normal_stop_1, mi_output_solib_attribs):
5122 Update.
5123 * mi/mi-cmd-var.c (print_varobj, mi_cmd_var_create)
5124 (mi_cmd_var_delete, mi_cmd_var_info_num_children)
5125 (mi_cmd_var_list_children, varobj_update_one): Update.
5126 * mi/mi-cmd-stack.c (mi_cmd_stack_info_depth)
5127 (mi_cmd_stack_list_args, list_arg_or_local): Update.
5128 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Update.
5129 * inferior.c (print_inferior): Update.
5130 * gdb_bfd.c (print_one_bfd): Update.
5131 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
5132 Update.
5133 * darwin-nat-info.c (darwin_debug_regions_recurse): Update.
5134 * cli-out.h (class cli_ui_out) <do_field_signed>: Rename from
5135 do_field_int. Change type of "value".
5136 * cli-out.c (cli_ui_out::do_field_signed): Rename from
5137 do_field_int. Change type of "value".
5138 * breakpoint.c (watchpoint_check, print_breakpoint_location)
5139 (print_one_breakpoint_location, print_it_catch_fork)
5140 (print_one_catch_fork, print_it_catch_vfork)
5141 (print_one_catch_vfork, print_it_catch_solib)
5142 (print_it_catch_exec, print_it_ranged_breakpoint)
5143 (print_mention_watchpoint, print_mention_masked_watchpoint)
5144 (bkpt_print_it, update_static_tracepoint): Update.
5145 * break-catch-throw.c (print_it_exception_catchpoint): Update.
5146 * break-catch-syscall.c (print_it_catch_syscall): Update.
5147 * ada-tasks.c (print_ada_task_info): Update.
5148 * ada-lang.c (print_it_exception, print_mention_exception):
5149 Update.
5150
5151 2019-07-17 Andrew Burgess <andrew.burgess@embecosm.com>
5152
5153 PR breakpoints/24541
5154 * gdbarch.c: Regenerate.
5155 * gdbarch.h: Regenerate.
5156 * gdbarch.sh: Adjust return type and parameter types for
5157 'stap_adjust_register'.
5158 (i386_stap_adjust_register): Adjust signature and return new
5159 register name.
5160 * stap-probe.c (stap_parse_register_operand): Adjust use of
5161 'gdbarch_stap_adjust_register'.
5162
5163 2019-07-17 Tom Tromey <tromey@adacore.com>
5164
5165 * s390-linux-nat.c (s390_watch_area): Remove typedef. Don't
5166 declare VEC.
5167 (struct s390_debug_reg_state) <watch_areas, break_areas>: Now
5168 std::vector.
5169 (struct s390_process_info): Add initializers.
5170 (s390_add_process): Use new.
5171 (s390_linux_nat_target::low_forget_process): Use delete.
5172 (s390_linux_nat_target::low_new_fork)
5173 (s390_linux_nat_target::stopped_by_watchpoint)
5174 (s390_linux_nat_target::low_prepare_to_resume)
5175 (s390_linux_nat_target::insert_watchpoint)
5176 (s390_linux_nat_target::insert_hw_breakpoint)
5177 (s390_linux_nat_target::remove_watchpoint)
5178 (s390_linux_nat_target::remove_hw_breakpoint): Update.
5179
5180 2019-07-16 John Baldwin <jhb@FreeBSD.org>
5181
5182 * aarch64-fbsd-nat.c: Include regcache.h.
5183 (getregs_supplies, getfpregs_supplies): Remove unused gdbarch
5184 argument.
5185 (aarch64_fbsd_nat_target::fetch_registers)
5186 (aarch64_fbsd_nat_target::store_registers): Remove gdbarch
5187 variable.
5188 * arm-fbsd-nat.c, riscv-fbsd-nat.c: Likewise.
5189
5190 2019-07-16 John Baldwin <jhb@FreeBSD.org>
5191
5192 * fbsd-nat.c: Include gdbarch.h.
5193
5194 2019-07-15 Tom Tromey <tromey@adacore.com>
5195
5196 * mi/mi-out.c (mi_ui_out::do_field_int): Use plongest.
5197
5198 2019-07-15 Tom Tromey <tromey@adacore.com>
5199
5200 * mi/mi-out.h (class mi_ui_out) <do_field_unsigned>: Declare.
5201 * mi/mi-out.c (mi_ui_out::do_field_unsigned): New method.
5202 * cli-out.h (class cli_ui_out) <do_field_unsigned>: Declare.
5203 * cli-out.c (cli_ui_out::do_field_int): New method.
5204 * ui-out.c (ui_out::field_unsigned): New method.
5205 * symfile.c (generic_load): Use field_unsigned.
5206 (print_transfer_performance): Likewise.
5207 * record-btrace.c (ui_out_field_uint): Remove.
5208 (btrace_call_history_insn_range, btrace_call_history): Use
5209 field_unsigned.
5210 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn): Use
5211 field_unsigned.
5212 * ui-out.h (class ui_out) <field_unsigned>: New method.
5213 <do_field_unsigned>: Likewise.
5214
5215 2019-07-15 Tom Tromey <tromey@adacore.com>
5216
5217 * mi/mi-main.c (list_available_thread_groups): Use field_string.
5218 * mi/mi-interp.c (mi_memory_changed): Use field_string.
5219 * target.c (flash_erase_command): Use field_string.
5220 * infrun.c (print_signal_received_reason): Use field_string.
5221 * i386-tdep.c (i386_mpx_print_bounds): Use field_string.
5222 * breakpoint.c (maybe_print_thread_hit_breakpoint): Use
5223 field_string.
5224 * ada-tasks.c (print_ada_task_info): Use field_string.
5225
5226 2019-07-15 Tom Tromey <tromey@adacore.com>
5227
5228 * target.c (flash_erase_command): Use field_core_addr.
5229 * symfile.c (generic_load): Use field_core_addr.
5230 * sparc64-linux-tdep.c (sparc64_linux_handle_segmentation_fault):
5231 Use field_core_addr.
5232 * i386-linux-tdep.c (i386_linux_handle_segmentation_fault): Use
5233 field_core_addr.
5234
5235 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
5236
5237 * dwarf2loc.c (dwarf2_evaluate_property): Sign extend property
5238 value if its desired type is smaller than a CORE_ADDR and signed.
5239
5240 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
5241
5242 * dwarf2loc.c (dwarf2_evaluate_property): Update to take account
5243 of changes to field names, and use new is_reference field to
5244 decide if a property is a reference or not.
5245 * dwarf2loc.h (struct dwarf2_locexpr_baton): Add 'is_reference'
5246 field.
5247 (struct dwarf2_property_baton): Update header comment, rename
5248 'referenced_type' to 'property_type' and update comments.
5249 * dwarf2read.c (attr_to_dynamic_prop): Add extra parameter to hold
5250 default property type, store in property baton, update to take
5251 accound of renamed field.
5252 (read_func_scope): Update call to attr_to_dynamic_prop.
5253 (read_array_type): Likewise.
5254 (dwarf2_per_cu_addr_sized_int_type): New function.
5255 (read_subrange_index_type): Move type finding code to
5256 dwarf2_per_cu_addr_sized_int_type.
5257 (read_subrange_type): Update calls to attr_to_dynamic_prop.
5258 (dwarf2_per_cu_addr_type): New function.
5259 (set_die_type): Update calls to attr_to_dynamic_prop.
5260
5261 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
5262
5263 * dwarf2read.c (read_subrange_index_type): New function.
5264 (read_subrange_type): Move code into new function and call it.
5265 * gdbtypes.c (create_range_type): Add some asserts.
5266
5267 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
5268
5269 * dwarf2loc.c (dwarf2_evaluate_property): Change return type, and
5270 update return statements.
5271 * dwarf2loc.h (dwarf2_evaluate_property): Update return type on
5272 declaration, and update comment to match.
5273 * gdbtypes.c (resolve_dynamic_array): Update call to
5274 dwarf2_evaluate_property to match new return type.
5275
5276 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
5277
5278 * valarith.c (value_subscripted_rvalue): Change lowerbound
5279 parameter type from int to LONGEST.
5280 * value.h (value_subscripted_rvalue): Likewise in declaration.
5281
5282 2019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
5283
5284 * cli/cli-utils.c (info_print_command_completer): New function.
5285 * cli/cli-utils.h: Add 'completer.h' include, and forward
5286 declaration for 'struct cmd_list_element'.
5287 (info_print_command_completer): Declare.
5288 * stack.c (_initialize_stack): Add completer for 'info locals' and
5289 'info args'.
5290 * symtab.c (_initialize_symtab): Add completer for 'info
5291 variables' and 'info functions'.
5292 * NEWS: Mention completion for additional info commands.
5293
5294 2019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
5295
5296 * cli/cli-utils.c (extract_info_print_args): Delete.
5297 (extract_arg_maybe_quoted): Delete.
5298 (info_print_options_defs): New variable.
5299 (make_info_print_options_def_group): New function.
5300 (extract_info_print_options): Define new function.
5301 * cli/cli-utils.h (extract_info_print_args): Delete.
5302 (struct info_print_options): New structure.
5303 (extract_info_print_options): Declare new function.
5304 * stack.c (info_locals_command): Update to use new
5305 extract_info_print_options, also add a header comment.
5306 (info_args_command): Likewise.
5307 * symtab.c (info_variables_command): Likewise.
5308 (info_functions_command): Likewise.
5309
5310 2019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
5311
5312 * cli/cli-option.c (parse_option): Use extract_string_maybe_quoted
5313 to extract string arguments.
5314 * common/common-utils.c (extract_string_maybe_quoted): New function.
5315 * common/common-utils.h (extract_string_maybe_quoted): Declare.
5316
5317 2019-07-11 Tom Tromey <tromey@adacore.com>
5318
5319 * main.c (get_init_files): Use GDBINIT, not gdbinit.
5320 * auto-load.c (file_is_auto_load_safe): Use GDBINIT, not gdbinit.
5321 * top.h (gdbinit): Don't declare.
5322 * cli/cli-cmds.c (init_cli_cmds): Remove, merging contents
5323 into...
5324 (_initialize_cli_cmds): ...here. Use GDBINIT, not gdbinit.
5325 * top.c (gdb_init): Don't call init_cli_cmds.
5326 (gdbinit): Remove.
5327 * cli/cli-cmds.h (init_cli_cmds): Don't declare.
5328
5329 2019-07-11 Tom Tromey <tromey@adacore.com>
5330
5331 * python/py-inferior.c (add_thread_object): Don't use thread_obj
5332 after it has been moved.
5333
5334 2019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
5335
5336 * valops.c (value_must_coerce_to_target): Change return type to
5337 bool.
5338 * value.h (value_must_coerce_to_target): Likewise.
5339
5340 2019-07-10 Simon Marchi <simon.marchi@efficios.com>
5341
5342 * breakpoint.c (is_hardware_watchpoint): Remove
5343 forward-declaration.
5344 (is_masked_watchpoint): Change return type to bool.
5345 (is_tracepoint): Likewise.
5346 (is_breakpoint): Likewise.
5347 (is_hardware_watchpoint): Likewise.
5348 (is_watchpoint): Likewise.
5349 (is_no_memory_software_watchpoint): Likewise.
5350 (is_catchpoint): Likewise.
5351 (breakpoint_1): Make FILTER parameter's return type bool.
5352 is_masked_watchpoint): Change return type to bool.
5353 (save_breakpoints): Make FILTER parameter's return type bool.
5354 * breakpoint.h (is_breakpoint): Change return type to bool.
5355 (is_watchpoint): Likewise.
5356 (is_catchpoint): Likewise.
5357 (is_tracepoint): Likewise.
5358
5359 2019-07-10 Tom Tromey <tom@tromey.com>
5360
5361 * defs.h: Don't include gdbarch.h.
5362 * aarch64-ravenscar-thread.c, aarch64-tdep.c, alpha-bsd-tdep.h,
5363 alpha-linux-tdep.c, alpha-mdebug-tdep.c, arch-utils.h, arm-tdep.h,
5364 ax-general.c, btrace.c, buildsym-legacy.c, buildsym.h, c-lang.c,
5365 cli/cli-decode.h, cli/cli-dump.c, cli/cli-script.h,
5366 cli/cli-style.h, coff-pe-read.h, compile/compile-c-support.c,
5367 compile/compile-cplus.h, compile/compile-loc2c.c, corefile.c,
5368 cp-valprint.c, cris-linux-tdep.c, ctf.c, d-lang.c, d-namespace.c,
5369 dcache.c, dicos-tdep.c, dictionary.c, disasm-selftests.c,
5370 dummy-frame.c, dummy-frame.h, dwarf2-frame-tailcall.c,
5371 dwarf2expr.c, expression.h, f-lang.c, frame-base.c,
5372 frame-unwind.c, frv-linux-tdep.c, gdbarch-selftests.c, gdbtypes.h,
5373 go-lang.c, hppa-nbsd-tdep.c, hppa-obsd-tdep.c, i386-dicos-tdep.c,
5374 i386-tdep.h, ia64-vms-tdep.c, interps.h, language.c,
5375 linux-record.c, location.h, m2-lang.c, m32r-linux-tdep.c,
5376 mem-break.c, memattr.c, mn10300-linux-tdep.c, nios2-linux-tdep.c,
5377 objfiles.h, opencl-lang.c, or1k-linux-tdep.c, p-lang.c,
5378 parser-defs.h, ppc-tdep.h, probe.h, python/py-record-btrace.c,
5379 record-btrace.c, record.h, regcache-dump.c, regcache.h,
5380 riscv-fbsd-tdep.c, riscv-linux-tdep.c, rust-exp.y,
5381 sh-linux-tdep.c, sh-nbsd-tdep.c, source-cache.c,
5382 sparc-nbsd-tdep.c, sparc-obsd-tdep.c, sparc-ravenscar-thread.c,
5383 sparc64-fbsd-tdep.c, std-regs.c, target-descriptions.h,
5384 target-float.c, tic6x-linux-tdep.c, tilegx-linux-tdep.c, top.c,
5385 tracefile.c, trad-frame.c, type-stack.h, ui-style.c, utils.c,
5386 utils.h, valarith.c, valprint.c, varobj.c, x86-tdep.c,
5387 xml-support.h, xtensa-linux-tdep.c, cli/cli-cmds.h: Update.
5388 * s390-linux-nat.c, procfs.c, inf-ptrace.c: Likewise.
5389
5390 2019-07-10 Tom Tromey <tromey@adacore.com>
5391
5392 * ada-lang.h (is_ada_exception_catchpoint): Declare.
5393 * breakpoint.c (init_ada_exception_breakpoint): Register as
5394 bp_catchpoint.
5395 (print_one_breakpoint_location, print_one_breakpoint): Use
5396 is_ada_exception_catchpoint.
5397 * ada-lang.c (class ada_catchpoint_location): Pass
5398 bp_loc_software_breakpoint to bp_location constructor.
5399 (is_ada_exception_catchpoint): New function.
5400
5401 2019-07-10 Tom Tromey <tromey@adacore.com>
5402
5403 * arm-tdep.c (arm_exidx_entry_s): Remove typedef. Don't define
5404 VEC.
5405 (struct arm_exidx_entry): New method operator<.
5406 (struct arm_exidx_data) <section_maps>: Change type.
5407 (arm_exidx_data_free): Remove.
5408 (arm_exidx_data_key): Change type. Move lower.
5409 (arm_exidx_new_objfile): Update.
5410 (arm_compare_exidx_entries): Remove.
5411 (arm_find_exidx_entry, _initialize_arm_tdep)
5412
5413 2019-07-10 Tom Tromey <tromey@adacore.com>
5414
5415 * solib-spu.c (ocl_program_data_key): Change type.
5416 (append_ocl_sos, ocl_enable_break, _initialize_spu_solib):
5417 Update.
5418
5419 2019-07-10 Tom Tromey <tromey@adacore.com>
5420
5421 * solib-aix.c (lm_info_aix_p): Remove typedef. Don't define VEC.
5422 (struct solib_aix_inferior_data) <library_list>: Change type.
5423 (solib_aix_inferior_data_handle): Change type.
5424 (get_solib_aix_inferior_data): Update.
5425 (solib_aix_free_library_list): Remove.
5426 (library_list_start_library): Update.
5427 (solib_aix_parse_libraries, solib_aix_get_library_list): Change
5428 return type.
5429 (solib_aix_get_library_list)
5430 (solib_aix_solib_create_inferior_hook, solib_aix_current_sos)
5431 (solib_aix_normal_stop_observer, _initialize_solib_aix): Update.
5432
5433 2019-07-10 Tom Tromey <tromey@adacore.com>
5434
5435 * solib-dsbt.c (struct dsbt_info): Add initializers.
5436 (solib_dsbt_pspace_data): Change type.
5437 (dsbt_pspace_data_cleanup): Remove.
5438 (get_dsbt_info, _initialize_dsbt_solib): Update.
5439
5440 2019-07-10 Tom Tromey <tromey@adacore.com>
5441
5442 * spu-tdep.c (spu_overlay_data): Change type.
5443 (spu_get_overlay_table, spu_overlay_new_objfile)
5444 (_initialize_spu_tdep): Update.
5445
5446 2019-07-10 Tom Tromey <tromey@adacore.com>
5447
5448 * gdb-stabs.h (struct dbx_symfile_info): Add initializers and
5449 destructor.
5450 (dbx_objfile_data_key): Change type and declare later.
5451 (DBX_SYMFILE_INFO): Rewrite.
5452 * dbxread.c (dbx_objfile_data_key): Change type.
5453 (dbx_symfile_init): Update.
5454 (~dbx_symfile_info): Rename from dbx_free_symfile_info. Update.
5455 (coffstab_build_psymtabs, elfstab_build_psymtabs)
5456 (stabsect_build_psymtabs, _initialize_dbxread): Update.
5457
5458 2019-07-10 Tom Tromey <tromey@adacore.com>
5459
5460 * jit.c (jit_program_space_key): Change type. Move lower.
5461 (get_jit_program_space_data): Update.
5462 (jit_program_space_data_cleanup): Remove.
5463 (jit_breakpoint_deleted, free_objfile_data, _initialize_jit):
5464 Update.
5465 (struct jit_program_space_data): Add initializers.
5466
5467 2019-07-10 Tom Tromey <tromey@adacore.com>
5468
5469 * solib-darwin.c (struct darwin_info): Add initializers.
5470 (solib_darwin_pspace_data): Change type.
5471 (darwin_pspace_data_cleanup): Remove.
5472 (get_darwin_info, _initialize_darwin_solib): Update.
5473
5474 2019-07-10 Tom Tromey <tromey@adacore.com>
5475
5476 * remote-sim.c (struct sim_inferior_data): Add initializers,
5477 constructor, and destructor.
5478 (sim_inferior_data_key): Change type. Move lower.
5479 (check_for_duplicate_sim_descriptor): Update.
5480 (get_sim_inferior_data): Use new. Update.
5481 (~sim_inferior_data_cleanup): Rename from
5482 sim_inferior_data_cleanup. Simplify.
5483 (gdbsim_close_inferior, simulator_command)
5484 (sim_command_completer, _initialize_remote_sim): Update.
5485 (next_pid, INITIAL_PID): Move earlier.
5486
5487 2019-07-10 Tom Tromey <tromey@adacore.com>
5488
5489 * python/python-internal.h (create_thread_object): Return
5490 gdbpy_ref.
5491 * python/py-infthread.c (create_thread_object): Return gdbpy_ref.
5492 * python/py-inferior.c (struct threadlist_entry): Add
5493 constructor.
5494 <thread_obj>: Now a gdbpy_ref.
5495 (thread_to_thread_object): Update.
5496 (add_thread_object): Use new.
5497 (delete_thread_object): Use delete.
5498 (infpy_threads): Update.
5499 (py_free_inferior): Update. Construct "inf_obj" after acquiring
5500 GIL.
5501
5502 2019-07-10 Tom Tromey <tromey@adacore.com>
5503
5504 * valops.c (value_cast): Specialize error message for Ada.
5505
5506 2019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
5507
5508 * breakpoint.c (breakpoint_1): Update doc and parameter names.
5509
5510 2019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
5511
5512 * breakpoint.h (bpstat_explains_signal, bpstat_causes_stop,
5513 bpstat_should_step): Return bool, adjust comments.
5514 * breakpoint.c (bpstat_explains_signal, bpstat_causes_stop,
5515 bpstat_should_step): Likewise.
5516
5517 2019-07-10 Alan Hayward <alan.hayward@arm.com>
5518
5519 * features/Makefile: Use feature target descriptions for Arm.
5520 * features/arm/arm-core.c: Generate new file.
5521 * features/arm/arm-fpa.c: Likewise.
5522 * features/arm/arm-m-profile-with-fpa.xml: Likewise.
5523 * features/arm/arm-m-profile.c: Likewise.
5524 * features/arm/arm-vfpv2.c: Likewise.
5525 * features/arm/arm-vfpv3.c: Likewise.
5526 * features/arm/xscale-iwmmxt.c: Likewise.
5527 * target-descriptions.c (maint_print_c_tdesc_cmd): Add Arm.
5528
5529 2019-07-10 Alan Hayward <alan.hayward@arm.com>
5530
5531 * arm-linux-nat.c (arm_linux_nat_target::read_description): Check
5532 ptrace earlier.
5533
5534 2019-07-10 Alan Hayward <alan.hayward@arm.com>
5535
5536 * features/aarch64-pauth.c: Regenerate.
5537
5538 2019-07-09 Simon Marchi <simon.marchi@polymtl.ca>
5539
5540 * breakpoint.h (struct bpstat_what) <is_longjmp>: Change type to
5541 bool.
5542 (bpstat_what): Use false instead of 0.
5543
5544 2019-07-09 Pedro Alves <palves@redhat.com>
5545
5546 * break-catch-throw.c (is_exception_catchpoint): New.
5547 * breakpoint.c (print_one_breakpoint_location): New parameter
5548 'raw_loc'. Handle it. Use
5549 is_watchpoint/is_catchpoint/is_exception_catchpoint instead of
5550 looking at the breakpoint's type.
5551 (print_one_breakpoint): If handling "maint info breakpoints", also
5552 print locations of exception catchpoints.
5553 * breakpoint.h (is_exception_catchpoint): Declare.
5554
5555 2019-07-09 Pedro Alves <palves@redhat.com>
5556
5557 * break-catch-throw.c (print_one_exception_catchpoint): Skip the
5558 "addr" field.
5559 (allocate_location_exception_catchpoint): New.
5560 (handle_gnu_v3_exceptions): Don't reset 'type' to bp_breakpoint.
5561 (initialize_throw_catchpoint_ops): Install
5562 allocate_location_exception_catchpoint as allocate_location
5563 method.
5564 * breakpoint.c (bpstat_what) <bp_catch>: Set action to
5565 BPSTAT_WHAT_SINGLE if not stopping and the location's type is not
5566 bp_loc_other.
5567 (breakpoint_address_is_meaningful): Delete.
5568 (bl_address_is_meaningful): New.
5569 (breakpoint_locations_match): Adjust comment.
5570 (bp_location_from_bp_type): New, factored out of...
5571 (bp_location::bp_location(breakpoint *)): ... this.
5572 (bp_location::bp_location(breakpoint *, bp_loc_type)): New,
5573 factored out of...
5574 (bp_location::bp_location(breakpoint *)): ... this. Reimplement.
5575 (bp_loc_is_permanent): Use bl_address_is_meaningful instead of
5576 breakpoint_address_is_meaningful.
5577 (bp_locations_compare): Adjust comment.
5578 (update_global_location_list): Use bl_address_is_meaningful
5579 instead of breakpoint_address_is_meaningful.
5580 * breakpoint.h (bp_location::bp_location(breakpoint *)): New
5581 explicit.
5582 (bp_location::bp_location(breakpoint *, bp_loc_type)): Declare.
5583 * python/py-breakpoint.c (bppy_get_location): No longer check
5584 whether location is null.
5585
5586 2019-07-09 Pedro Alves <palves@redhat.com>
5587
5588 PR c++/15468
5589 * breakpoint.c (print_one_breakpoint_location): Remove
5590 single-location assert.
5591
5592 2019-07-09 Tom Tromey <tom@tromey.com>
5593
5594 * contrib/ari/gdb_ari.sh: Change common to gdbsupport.
5595 * configure: Rebuild.
5596 * configure.ac: Change common to gdbsupport.
5597 * gdbsupport: Rename from common.
5598 * acinclude.m4: Change common to gdbsupport.
5599 * Makefile.in (CONFIG_SRC_SUBDIR, COMMON_SFILES)
5600 (HFILES_NO_SRCDIR, stamp-version, ALLDEPFILES): Change common to
5601 gdbsupport.
5602 * aarch64-tdep.c, ada-lang.c, ada-lang.h, agent.c, alloc.c,
5603 amd64-darwin-tdep.c, amd64-dicos-tdep.c, amd64-fbsd-nat.c,
5604 amd64-fbsd-tdep.c, amd64-linux-nat.c, amd64-linux-tdep.c,
5605 amd64-nbsd-tdep.c, amd64-obsd-tdep.c, amd64-sol2-tdep.c,
5606 amd64-tdep.c, amd64-windows-tdep.c, arch-utils.c,
5607 arch/aarch64-insn.c, arch/aarch64.c, arch/aarch64.h, arch/amd64.c,
5608 arch/amd64.h, arch/arm-get-next-pcs.c, arch/arm-linux.c,
5609 arch/arm.c, arch/i386.c, arch/i386.h, arch/ppc-linux-common.c,
5610 arch/riscv.c, arch/riscv.h, arch/tic6x.c, arm-tdep.c, auto-load.c,
5611 auxv.c, ax-gdb.c, ax-general.c, ax.h, breakpoint.c, breakpoint.h,
5612 btrace.c, btrace.h, build-id.c, build-id.h, c-lang.h, charset.c,
5613 charset.h, cli/cli-cmds.c, cli/cli-cmds.h, cli/cli-decode.c,
5614 cli/cli-dump.c, cli/cli-option.h, cli/cli-script.c,
5615 coff-pe-read.c, command.h, compile/compile-c-support.c,
5616 compile/compile-c.h, compile/compile-cplus-symbols.c,
5617 compile/compile-cplus-types.c, compile/compile-cplus.h,
5618 compile/compile-loc2c.c, compile/compile.c, completer.c,
5619 completer.h, contrib/ari/gdb_ari.sh, corefile.c, corelow.c,
5620 cp-support.c, cp-support.h, cp-valprint.c, csky-tdep.c, ctf.c,
5621 darwin-nat.c, debug.c, defs.h, disasm-selftests.c, disasm.c,
5622 disasm.h, dtrace-probe.c, dwarf-index-cache.c,
5623 dwarf-index-cache.h, dwarf-index-write.c, dwarf2-frame.c,
5624 dwarf2expr.c, dwarf2loc.c, dwarf2read.c, event-loop.c,
5625 event-top.c, exceptions.c, exec.c, extension.h, fbsd-nat.c,
5626 features/aarch64-core.c, features/aarch64-fpu.c,
5627 features/aarch64-pauth.c, features/aarch64-sve.c,
5628 features/i386/32bit-avx.c, features/i386/32bit-avx512.c,
5629 features/i386/32bit-core.c, features/i386/32bit-linux.c,
5630 features/i386/32bit-mpx.c, features/i386/32bit-pkeys.c,
5631 features/i386/32bit-segments.c, features/i386/32bit-sse.c,
5632 features/i386/64bit-avx.c, features/i386/64bit-avx512.c,
5633 features/i386/64bit-core.c, features/i386/64bit-linux.c,
5634 features/i386/64bit-mpx.c, features/i386/64bit-pkeys.c,
5635 features/i386/64bit-segments.c, features/i386/64bit-sse.c,
5636 features/i386/x32-core.c, features/riscv/32bit-cpu.c,
5637 features/riscv/32bit-csr.c, features/riscv/32bit-fpu.c,
5638 features/riscv/64bit-cpu.c, features/riscv/64bit-csr.c,
5639 features/riscv/64bit-fpu.c, features/tic6x-c6xp.c,
5640 features/tic6x-core.c, features/tic6x-gp.c, filename-seen-cache.h,
5641 findcmd.c, findvar.c, fork-child.c, gcore.c, gdb_bfd.c, gdb_bfd.h,
5642 gdb_proc_service.h, gdb_regex.c, gdb_select.h, gdb_usleep.c,
5643 gdbarch-selftests.c, gdbthread.h, gdbtypes.h, gnu-nat.c,
5644 go32-nat.c, guile/guile.c, guile/scm-ports.c,
5645 guile/scm-safe-call.c, guile/scm-type.c, i386-fbsd-nat.c,
5646 i386-fbsd-tdep.c, i386-go32-tdep.c, i386-linux-nat.c,
5647 i386-linux-tdep.c, i386-tdep.c, i387-tdep.c,
5648 ia64-libunwind-tdep.c, ia64-linux-nat.c, inf-child.c,
5649 inf-ptrace.c, infcall.c, infcall.h, infcmd.c, inferior-iter.h,
5650 inferior.c, inferior.h, inflow.c, inflow.h, infrun.c, infrun.h,
5651 inline-frame.c, language.h, linespec.c, linux-fork.c, linux-nat.c,
5652 linux-tdep.c, linux-thread-db.c, location.c, machoread.c,
5653 macrotab.h, main.c, maint.c, maint.h, memattr.c, memrange.h,
5654 mi/mi-cmd-break.h, mi/mi-cmd-env.c, mi/mi-cmd-stack.c,
5655 mi/mi-cmd-var.c, mi/mi-interp.c, mi/mi-main.c, mi/mi-parse.h,
5656 minsyms.c, mips-linux-tdep.c, namespace.h,
5657 nat/aarch64-linux-hw-point.c, nat/aarch64-linux-hw-point.h,
5658 nat/aarch64-linux.c, nat/aarch64-sve-linux-ptrace.c,
5659 nat/amd64-linux-siginfo.c, nat/fork-inferior.c,
5660 nat/linux-btrace.c, nat/linux-btrace.h, nat/linux-namespaces.c,
5661 nat/linux-nat.h, nat/linux-osdata.c, nat/linux-personality.c,
5662 nat/linux-procfs.c, nat/linux-ptrace.c, nat/linux-ptrace.h,
5663 nat/linux-waitpid.c, nat/mips-linux-watch.c,
5664 nat/mips-linux-watch.h, nat/ppc-linux.c, nat/x86-dregs.c,
5665 nat/x86-dregs.h, nat/x86-linux-dregs.c, nat/x86-linux.c,
5666 nto-procfs.c, nto-tdep.c, objfile-flags.h, objfiles.c, objfiles.h,
5667 obsd-nat.c, observable.h, osdata.c, p-valprint.c, parse.c,
5668 parser-defs.h, ppc-linux-nat.c, printcmd.c, probe.c, proc-api.c,
5669 procfs.c, producer.c, progspace.h, psymtab.h,
5670 python/py-framefilter.c, python/py-inferior.c, python/py-ref.h,
5671 python/py-type.c, python/python.c, record-btrace.c, record-full.c,
5672 record.c, record.h, regcache-dump.c, regcache.c, regcache.h,
5673 remote-fileio.c, remote-fileio.h, remote-sim.c, remote.c,
5674 riscv-tdep.c, rs6000-aix-tdep.c, rust-exp.y, s12z-tdep.c,
5675 selftest-arch.c, ser-base.c, ser-event.c, ser-pipe.c, ser-tcp.c,
5676 ser-unix.c, skip.c, solib-aix.c, solib-target.c, solib.c,
5677 source-cache.c, source.c, source.h, sparc-nat.c, spu-linux-nat.c,
5678 stack.c, stap-probe.c, symfile-add-flags.h, symfile.c, symfile.h,
5679 symtab.c, symtab.h, target-descriptions.c, target-descriptions.h,
5680 target-memory.c, target.c, target.h, target/waitstatus.c,
5681 target/waitstatus.h, thread-iter.h, thread.c, tilegx-tdep.c,
5682 top.c, top.h, tracefile-tfile.c, tracefile.c, tracepoint.c,
5683 tracepoint.h, tui/tui-io.c, ui-file.c, ui-out.h,
5684 unittests/array-view-selftests.c,
5685 unittests/child-path-selftests.c, unittests/cli-utils-selftests.c,
5686 unittests/common-utils-selftests.c,
5687 unittests/copy_bitwise-selftests.c, unittests/environ-selftests.c,
5688 unittests/format_pieces-selftests.c,
5689 unittests/function-view-selftests.c,
5690 unittests/lookup_name_info-selftests.c,
5691 unittests/memory-map-selftests.c, unittests/memrange-selftests.c,
5692 unittests/mkdir-recursive-selftests.c,
5693 unittests/observable-selftests.c,
5694 unittests/offset-type-selftests.c, unittests/optional-selftests.c,
5695 unittests/parse-connection-spec-selftests.c,
5696 unittests/ptid-selftests.c, unittests/rsp-low-selftests.c,
5697 unittests/scoped_fd-selftests.c,
5698 unittests/scoped_mmap-selftests.c,
5699 unittests/scoped_restore-selftests.c,
5700 unittests/string_view-selftests.c, unittests/style-selftests.c,
5701 unittests/tracepoint-selftests.c, unittests/unpack-selftests.c,
5702 unittests/utils-selftests.c, unittests/xml-utils-selftests.c,
5703 utils.c, utils.h, valarith.c, valops.c, valprint.c, value.c,
5704 value.h, varobj.c, varobj.h, windows-nat.c, x86-linux-nat.c,
5705 xml-support.c, xml-support.h, xml-tdesc.h, xstormy16-tdep.c,
5706 xtensa-linux-nat.c, dwarf2read.h: Change common to gdbsupport.
5707
5708 2019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
5709
5710 * linespec.c (decode_digits_list_mode): Set explicit_line to a
5711 bool value.
5712 (decode_digits_ordinary): Set explicit_line field in sal.
5713 * symtab.c (skip_prologue_sal): Don't skip prologue for a
5714 symtab_and_line that was set on an explicit line number in
5715 assembler code. Do always update the recorded symtab and line if
5716 we do skip the prologue.
5717
5718 2019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
5719
5720 * breakpoint.c (set_breakpoint_location_function): Remove
5721 explicit_loc parameter.
5722 (momentary_breakpoint_from_master): Update call to
5723 set_breakpoint_location_function.
5724 (add_location_to_breakpoint): Likewise.
5725
5726 2019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
5727
5728 * riscv-tdep.c (riscv_features_from_gdbarch_info): Don't modify
5729 required features based on default bfd type when no specific bfd
5730 is present.
5731
5732 2019-07-08 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5733
5734 * NEWS: Mention that GDB printf and eval commands can now print
5735 C-style and Ada-style convenience var strings without
5736 calling the inferior.
5737 * printcmd.c (printf_c_string): Locally print GDB internal var
5738 instead of transiting via the inferior.
5739 (printf_wide_c_string): Likewise.
5740
5741 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5742
5743 PR breakpoints/25011
5744 * symfile.c (symbol_file_command): Call solib_create_inferior_hook.
5745
5746 2019-07-04 Tom Tromey <tom@tromey.com>
5747
5748 PR tui/24724:
5749 * tui/tui-winsource.c (tui_clear_source_content): Update.
5750 (tui_source_window_base::set_is_exec_point_at): Fix comment.
5751 (tui_update_breakpoint_info): Update.
5752 (tui_set_exec_info_content): Update.
5753 * tui/tui-source.c (tui_set_source_content_nil): Update.
5754 * tui/tui-disasm.c (tui_set_disassem_content): Don't set
5755 has_break.
5756 * tui/tui-data.h (enum tui_bp_flag): New.
5757 (tui_bp_flags): New enum flags type.
5758 (struct tui_source_element) <break_mode>: Change type. Rename
5759 from has_break.
5760 (TUI_BP_ENABLED, TUI_BP_DISABLED, TUI_BP_HIT)
5761 (TUI_BP_CONDITIONAL, TUI_BP_HARDWARE): Don't define. Now enum
5762 constants.
5763 * tui/tui-winsource.h: Fix comment.
5764
5765 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5766
5767 * aarch32-linux-nat.h (VFP_REGS_SIZE): Remove define.
5768 * aarch64-linux-nat.c (fetch_fpregs_from_thread)
5769 (store_fpregs_to_thread)
5770 (aarch64_linux_nat_target::read_description): Use ARM_VFP3_REGS_SIZE.
5771 * arch/arm.h (IWMMXT_VEC_REGISTER_SIZE, ARM_CORE_REGS_SIZE)
5772 (ARM_FP_REGS_SIZE, ARM_VFP2_REGS_SIZE, ARM_VFP3_REGS_SIZE)
5773 (IWMMXT_REGS_SIZE): Add define.
5774 * arm-linux-nat.c (IWMMXT_REGS_SIZE): Remove define.
5775 (fetch_vfp_regs, store_vfp_regs)
5776 (arm_linux_nat_target::read_description): Use ARM_VFP3_REGS_SIZE.
5777 * arm-tdep.c (arm_register_g_packet_guesses): Use new defines.
5778
5779 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5780
5781 * arch/arm-get-next-pcs.c (thumb_get_next_pcs_raw): Use ARM_
5782 defines.
5783 * arch/arm-linux.c (arm_linux_sigreturn_next_pc_offset): Likewise.
5784 * arch/arm.h (INT_REGISTER_SIZE) Rename from...
5785 (ARM_INT_REGISTER_SIZE): ...to this.
5786 (ARM_FP_REGISTER_SIZE) (ARM_VFP_REGISTER_SIZE): Add define.
5787 * arm-linux-tdep.c (ARM_LINUX_JB_ELEMENT_SIZE)
5788 (ARM_LINUX_SIZEOF_GREGSET, arm_linux_supply_gregset)
5789 (arm_linux_collect_gregset, supply_nwfpe_register)
5790 (collect_nwfpe_register, arm_linux_collect_nwfpe): Use ARM_
5791 defines.
5792 * arm-linux-tdep.h (ARM_LINUX_SIZEOF_NWFPE, NWFPE_FPSR_OFFSET)
5793 (NWFPE_FPCR_OFFSET, NWFPE_TAGS_OFFSET): Likewise
5794 * arm-nbsd-tdep.c (ARM_NBSD_JB_ELEMENT_SIZE): Likewise.
5795 * arm-tdep.c (arm_push_dummy_call, arm_extract_return_value)
5796 (arm_return_in_memory, arm_store_return_value)
5797 (arm_get_longjmp_target, arm_register_g_packet_guesses)
5798 (arm_record_ld_st_multiple): Likewise.
5799 * arm-tdep.h (FP_REGISTER_SIZE, VFP_REGISTER_SIZE): Remove.
5800 * arm-wince-tdep.c (ARM_WINCE_JB_ELEMENT_SIZE): Use ARM_ defines.
5801
5802 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5803
5804 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Use
5805 AARCH64_DISPLACED_MODIFIED_INSNS.
5806 * aarch64-tdep.c (struct aarch64_displaced_step_data)
5807 (aarch64_displaced_step_copy_insn): Likewise.
5808 * aarch64-tdep.h (DISPLACED_MODIFIED_INSNS): Rename from..
5809 (AARCH64_DISPLACED_MODIFIED_INSNS): ...to this.
5810 * arm-linux-tdep.c (arm_linux_cleanup_svc): Use
5811 ARM_DISPLACED_MODIFIED_INSNS.
5812 * arm-tdep.c (arm_gdbarch_init): Likewise.
5813 * arm-tdep.h (DISPLACED_MODIFIED_INSNS): Rename from..
5814 (ARM_DISPLACED_MODIFIED_INSNS): ...to this.
5815 (struct arm_displaced_step_closure): Use
5816 ARM_DISPLACED_MODIFIED_INSNS.
5817
5818 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5819
5820 * features/Makefile: Remove unused xml files.
5821 * features/aarch64.xml: Remove.
5822 * features/i386/amd64-avx-avx512-linux.xml: Remove.
5823 * features/i386/amd64-avx-avx512.xml: Remove.
5824 * features/i386/amd64-avx-linux.xml: Remove.
5825 * features/i386/amd64-avx-mpx-avx512-pku-linux.xml: Remove.
5826 * features/i386/amd64-avx-mpx-avx512-pku.xml: Remove.
5827 * features/i386/amd64-avx-mpx-linux.xml: Remove.
5828 * features/i386/amd64-avx-mpx.xml: Remove.
5829 * features/i386/amd64-avx.xml: Remove.
5830 * features/i386/amd64-linux.xml: Remove.
5831 * features/i386/amd64-mpx-linux.xml: Remove.
5832 * features/i386/amd64-mpx.xml: Remove.
5833 * features/i386/amd64.xml: Remove.
5834 * features/i386/i386-avx-avx512-linux.xml: Remove.
5835 * features/i386/i386-avx-avx512.xml: Remove.
5836 * features/i386/i386-avx-linux.xml: Remove.
5837 * features/i386/i386-avx-mpx-avx512-pku-linux.xml: Remove.
5838 * features/i386/i386-avx-mpx-avx512-pku.xml: Remove.
5839 * features/i386/i386-avx-mpx-linux.xml: Remove.
5840 * features/i386/i386-avx-mpx.xml: Remove.
5841 * features/i386/i386-avx.xml: Remove.
5842 * features/i386/i386-linux.xml: Remove.
5843 * features/i386/i386-mmx-linux.xml: Remove.
5844 * features/i386/i386-mmx.xml: Remove.
5845 * features/i386/i386-mpx-linux.xml: Remove.
5846 * features/i386/i386-mpx.xml: Remove.
5847 * features/i386/i386.xml: Remove.
5848 * features/i386/x32-avx-avx512-linux.xml: Remove.
5849 * features/i386/x32-avx-linux.xml: Remove.
5850 * features/i386/x32-linux.xml: Remove.
5851
5852 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5853
5854 * regformats/aarch64.dat: Remove.
5855 * regformats/i386/amd64-avx-avx512-linux.dat: Remove.
5856 * regformats/i386/amd64-avx-linux.dat: Remove.
5857 * regformats/i386/amd64-avx-mpx-avx512-pku-linux.dat: Remove.
5858 * regformats/i386/amd64-avx-mpx-linux.dat: Remove.
5859 * regformats/i386/amd64-linux.dat: Remove.
5860 * regformats/i386/amd64-mpx-linux.dat: Remove.
5861 * regformats/i386/amd64.dat: Remove.
5862 * regformats/i386/i386-avx-avx512-linux.dat: Remove.
5863 * regformats/i386/i386-avx-linux.dat: Remove.
5864 * regformats/i386/i386-avx-mpx-avx512-pku-linux.dat: Remove.
5865 * regformats/i386/i386-avx-mpx-linux.dat: Remove.
5866 * regformats/i386/i386-linux.dat: Remove.
5867 * regformats/i386/i386-mmx-linux.dat: Remove.
5868 * regformats/i386/i386-mpx-linux.dat: Remove.
5869 * regformats/i386/i386.dat: Remove.
5870 * regformats/i386/x32-avx-avx512-linux.dat: Remove.
5871 * regformats/i386/x32-avx-linux.dat: Remove.
5872 * regformats/i386/x32-linux.dat: Remove.
5873
5874 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5875
5876 * aarch64-tdep.c: Remove xml self tests.
5877 * amd64-linux-tdep.c: Likewise.
5878 * amd64-tdep.c: Likewise.
5879 * i386-linux-tdep.c: Likewise.
5880 * i386-tdep.c: Likewise.
5881
5882 2019-07-03 Pedro Alves <palves@redhat.com>
5883
5884 PR cli/24732
5885 * cli/cli-cmds.c (struct pipe_cmd_opts): New.
5886 (pipe_cmd_option_defs): New.
5887 (make_pipe_cmd_options_def_group): New.
5888 (pipe_command): Use gdb::option::process_options.
5889 (pipe_command_completer): New function.
5890 (_initialize_cli_cmds): Install completer for "pipe" command.
5891
5892 2019-07-03 Pedro Alves <palves@redhat.com>
5893
5894 * cli/cli-option.c (union option_value) <string>: New field.
5895 (struct option_def_and_value): Add ctor, move ctor, dtor and
5896 use DISABLE_COPY_AND_ASSIGN.
5897 (option_def_and_value::clear_value): New.
5898 (parse_option, save_option_value_in_ctx, get_val_type_str)
5899 (add_setshow_cmds_for_options): Handle var_string.
5900 * cli-option.h (union option_def::var_address) <string>: New
5901 field.
5902 (struct string_option_def): New.
5903 * maint-test-options.c (struct test_options_opts): Add default
5904 ctor and use DISABLE_COPY_AND_ASSIGN.
5905 <string_opt>: New field.
5906 (test_options_opts::~test_options_opts): New.
5907 (test_options_opts::dump): Also dump "-string".
5908 (test_options_option_defs): Install "string.
5909
5910 2019-07-03 Pedro Alves <palves@redhat.com>
5911
5912 * cli/cli-option.c (parse_option) <var_enum>: Don't return an
5913 option_value with a null enumeration.
5914 (complete_options): Save the option values in the context.
5915 (save_option_value_in_ctx): New, factored out from ...
5916 (process_options): ... here.
5917 * cli/cli-utils.c (get_ulongest): Don't advance PP until the end
5918 of the function.
5919 * maint-test-options.c (test_options_opts::dump): New, factored
5920 out from ...
5921 (maintenance_test_options_command_mode): ... here.
5922 (maintenance_test_options_command_completion_result): Delete.
5923 (maintenance_test_options_command_completion_text): Update
5924 comment.
5925 (maintenance_show_test_options_completion_result): Change
5926 prototype. Just print
5927 maintenance_test_options_command_completion_text.
5928 (save_completion_result): New.
5929 (maintenance_test_options_completer_mode): Pass options context to
5930 complete_options, and then save a dump.
5931 (_initialize_maint_test_options): Use add_cmd to install "maint
5932 show test-options-completion-result".
5933
5934 2019-07-03 Pedro Alves <palves@redhat.com>
5935
5936 * NEWS (New commands): Mention "with" and "maint with".
5937 * cli/cli-cmds.c (with_command_1, with_command_completer_1)
5938 (with_command, with_command_completer): New.
5939 (pipe_command): Adjust to new repeat_previous
5940 interface.
5941 (_initialize_cli_cmds): Install the "with" command and its "w"
5942 alias.
5943 * cli/cli-cmds.h (with_command_1, with_command_completer_1): New
5944 declarations.
5945 * cli/cli-setshow.c (parse_cli_var_uinteger)
5946 (parse_cli_var_zuinteger_unlimited, do_set_command): Handle empty
5947 argument strings for all var_types.
5948 (get_setshow_command_value_string): New, factored out from ...
5949 (do_show_command): ... this.
5950 * cli/cli-setshow.h: Include <string>.
5951 (get_setshow_command_value_string): Declare.
5952 * command.h (repeat_previous): Now returns const char *. Adjust
5953 comment.
5954 * maint.c: Include "cli/cli-cmds.h".
5955 (maintenance_with_cmd, maintenance_with_cmd_completer): New.
5956 (_initialize_maint_cmds): Register the "maintenance with" command.
5957 * top.c (repeat_previous): Move bits from pipe_command here:
5958 Return the saved command line, if any; error out if there's no
5959 command to relaunch.
5960
5961 2019-07-03 Pedro Alves <palves@redhat.com>
5962
5963 * NEWS (New commands): Mention "maint set/show test-settings"
5964 instead of "maint test-settings".
5965 * maint-test-settings.c (maintenance_test_settings_list): Delete.
5966 (maintenance_test_settings_set_list): Rename to ...
5967 (maintenance_set_test_settings_list): ... this.
5968 (maintenance_test_settings_show_list): Rename to ...
5969 (maintenance_show_test_settings_list): ... this.
5970 (maintenance_test_settings_cmd): Delete.
5971 (maintenance_test_settings_set_cmd): ...
5972 (maintenance_set_test_settings_cmd): ... this.
5973 (maintenance_test_settings_show_cmd): ...
5974 (maintenance_show_test_settings_cmd): ... this.
5975 (maintenance_test_settings_show_value_cmd):
5976 (maintenance_show_test_settings_value_cmd): ... this.
5977 (_initialize_maint_test_settings): No longer install the "maint
5978 test-settings" prefix command. Rename "maint test-settings set"
5979 to "maint set test-settings", and "maint test-settings show" to
5980 "maint show test-settings". Adjust all subcommands.
5981
5982 2019-07-03 Pedro Alves <palves@redhat.com>
5983
5984 * maint-test-settings.c: Fix file's intro comment. Replace all
5985 references to "test-options" with references to "test-settings",
5986 in comments.
5987
5988 2019-07-03 Pedro Alves <palves@redhat.com>
5989
5990 * maint-test-settings.c (maintenance_test_settings_xxx)
5991 (maintenance_test_settings_yyy, maintenance_test_settings_zzz):
5992 New.
5993 (maintenance_test_settings_enums): Use them.
5994 (maintenance_test_settings_enum): Default to
5995 maintenance_test_settings_xxx.
5996 (_initialize_maint_test_settings): Initialize
5997 MAINTENANCE_TEST_SETTINGS_FILENAME.
5998
5999 2019-07-02 Simon Marchi <simon.marchi@polymtl.ca>
6000
6001 * breakpoint.h (remove_breakpoints_inf): Change return type to
6002 void, move function documentation here.
6003 * breakpoint.c (remove_breakpoints_inf): Change return type to
6004 void, move function documentation to header.
6005
6006 2019-07-02 Pedro Alves <palves@redhat.com>
6007
6008 * NEWS (Completion improvements): Mention "info threads".
6009 * thread.c (struct info_threads_opts, info_threads_option_defs)
6010 (make_info_threads_options_def_group): New.
6011 (info_threads_command): Use gdb::option::process_options.
6012 (info_threads_command_completer): New.
6013 (_initialize_thread): Use gdb::option::build_help to build the
6014 help text for "info threads".
6015
6016 2019-07-02 Simon Marchi <simon.marchi@polymtl.ca>
6017
6018 * defs.h (generic_load): Move from here...
6019 * symfile.h (generic_load): ... to here. Rename name parameter
6020 to args.
6021 * symfile.c (generic_load): Add comment.
6022
6023 2019-07-01 Tom Tromey <tromey@adacore.com>
6024
6025 * dwarf2read.c
6026 (dw2_debug_names_iterator::find_vec_in_debug_names): Hoist
6027 declaration of without_params. Fix formatting.
6028
6029 2019-07-01 Tom Tromey <tromey@adacore.com>
6030
6031 * ada-exp.y (find_primitive_type): Update.
6032 * ada-lang.h (ada_lookup_symbol): Update.
6033 * ada-lang.c (ada_lookup_symbol): Remove "is_a_field_of_this"
6034 parameter.
6035 (ada_lookup_encoded_symbol, ada_lookup_symbol_nonlocal): Update.
6036
6037 2019-06-28 Sergio Durigan Junior <sergiodj@redhat.com>
6038
6039 PR breakpoints/24541
6040 * gdbarch.c: Regenerate.
6041 * gdbarch.h: Regenerate.
6042 * gdbarch.sh: Add 'stap_adjust_register'.
6043 * i386-tdep.c: Include '<unordered_set>'.
6044 (i386_stap_adjust_register): New function.
6045 (i386_elf_init_abi): Register 'i386_stap_adjust_register'.
6046 * stap-probe.c (stap_parse_register_operand): Call
6047 'gdbarch_stap_adjust_register'.
6048
6049 2019-06-28 Sergio Durigan Junior <sergiodj@redhat.com>
6050
6051 PR python/24742
6052 https://bugzilla.redhat.com/show_bug.cgi?id=1723564
6053 * python/python.c (do_start_initialization): Use 'xmalloc'
6054 instead of 'PyMem_Malloc'.
6055
6056 2019-06-28 Tom Tromey <tromey@adacore.com>
6057
6058 * dwarf2read.c (partial_die_info::read): Prefer the linkage name
6059 for Ada.
6060
6061 2019-06-27 Tom Tromey <tromey@adacore.com>
6062
6063 * arm-tdep.c (arm_objfile_data_key): Move lower. Change type to
6064 objfile_key.
6065 (arm_find_mapping_symbol, arm_record_special_symbol)
6066 (_initialize_arm_tdep): Update.
6067 (arm_objfile_data_free): Remove.
6068
6069 2019-06-27 Tom Tromey <tromey@adacore.com>
6070
6071 * cp-valprint.c (cp_print_value_fields): Pass opts, not options,
6072 to cp_print_static_field.
6073
6074 2019-06-26 Tom Tromey <tromey@adacore.com>
6075
6076 * minsyms.c (lookup_minimal_symbol_solib_trampoline): Remove.
6077 * minsyms.h (lookup_minimal_symbol_solib_trampoline): Don't
6078 declare.
6079
6080 2019-06-26 Alan Hayward <alan.hayward@arm.com>
6081
6082 * features/aarch64-core.c (create_feature_aarch64_core):
6083 Regenerate.
6084 * features/aarch64-core.xml: Add cpsr flags.
6085
6086 2019-06-26 Alan Hayward <alan.hayward@arm.com>
6087
6088 * arm-tdep.c (arm_gnu_triplet_regexp): New function.
6089 (arm_gdbarch_init): Add arm_gnu_triplet_regexp.
6090
6091 2019-06-25 Simon Marchi <simon.marchi@polymtl.ca>
6092
6093 * arm-tdep.c (struct arm_per_objfile) <section_maps_sorted>: New
6094 field.
6095 (arm_find_mapping_symbol): Sort mapping symbol vectors on first
6096 use.
6097 (arm_record_special_symbol): Don't insert new symbol in sorted
6098 position, push it at the end.
6099
6100 2019-06-25 Simon Marchi <simon.marchi@polymtl.ca>
6101
6102 * arm-tdep.c (struct arm_mapping_symbol) (operator <): New.
6103 (arm_mapping_symbol_s): Remove.
6104 (DEF_VEC_O(arm_mapping_symbol_s)): Remove.
6105 (arm_mapping_symbol_vec): New typedef.
6106 (struct arm_per_objfile): Add constructor.
6107 <section_maps>: Change type to
6108 std::unique_ptr<arm_mapping_symbol_vec[]>.
6109 (arm_compare_mapping_symbols): Remove.
6110 (arm_find_mapping_symbol): Adjust to section_maps type change.
6111 (arm_objfile_data_free): Call delete on arm_per_objfile.
6112 (arm_record_special_symbol): Adjust to section_maps type change.
6113 Allocate arm_per_objfile with new.
6114
6115 2019-06-25 Philippe Waroquiers <philippe.waroquiers@skynet.be>
6116
6117 * cli/cli-cmds.c (alias_command): Compare the alias prefix
6118 with the command prefix.
6119
6120 2019-06-25 Tom Tromey <tom@tromey.com>
6121
6122 * tui/tui-wingeneral.c (tui_delete_win): Remove "return".
6123 * tui/tui-data.c (~tui_gen_win_info): Remove "if".
6124
6125 2019-06-25 Tom Tromey <tom@tromey.com>
6126
6127 * tui/tui-layout.c (init_and_make_win): Assert on unrecognized
6128 type.
6129 * tui/tui-data.h (struct tui_gen_win_info): Make constructor
6130 protected.
6131
6132 2019-06-25 Tom Tromey <tom@tromey.com>
6133
6134 * tui/tui-winsource.c
6135 (tui_source_window_base::set_is_exec_point_at): Add check against
6136 LOA_ADDRESS.
6137
6138 2019-06-25 Tom Tromey <tom@tromey.com>
6139
6140 * tui/tui-source.c (tui_set_source_content): Don't check before
6141 xfree.
6142 * tui/tui-disasm.c (tui_disassemble): Don't check before xfree.
6143
6144 2019-06-25 Tom Tromey <tom@tromey.com>
6145
6146 * tui/tui-winsource.h (tui_update_source_window_as_is)
6147 (tui_alloc_source_buffer, tui_line_is_displayed)
6148 (tui_addr_is_displayed): Change type of win_info.
6149 * tui/tui-winsource.c (tui_update_source_window_as_is)
6150 (tui_clear_source_content, tui_show_source_line)
6151 (tui_show_source_content, tui_source_window_base::refill)
6152 (tui_source_window_base::set_is_exec_point_at)
6153 (tui_source_window_base::set_is_exec_point_at)
6154 (tui_update_breakpoint_info, tui_set_exec_info_content): Update.
6155 (tui_alloc_source_buffer, tui_line_is_displayed)
6156 (tui_addr_is_displayed): Change type of win_info. Update.
6157 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
6158 (tui_source_window_base::do_make_visible_with_new_height):
6159 Update.
6160 * tui/tui-source.c (tui_set_source_content)
6161 (tui_set_source_content_nil)
6162 (tui_source_window::do_scroll_vertical): Update.
6163 * tui/tui-layout.c (show_layout): Update.
6164 * tui/tui-disasm.c (tui_set_disassem_content)
6165 (tui_disasm_window::do_scroll_vertical): Update.
6166 * tui/tui-data.h (tui_win_content): Remove.
6167 (struct tui_gen_win_info) <content, content_size>: Remove.
6168 (struct tui_source_element): Add initializers and destructor.
6169 (union tui_which_element, struct tui_win_element): Remove.
6170 (struct tui_source_window_base) <content>: New field.
6171 (struct tui_data_window): Remove destructor.
6172 (tui_alloc_content, tui_free_win_content)
6173 (tui_free_all_source_wins_content): Don't declare.
6174 * tui/tui-data.c (tui_initialize_static_data): Update.
6175 (init_content_element, tui_alloc_content): Remove.
6176 (~tui_gen_win_info): Update.
6177 (~tui_data_window, tui_free_all_source_wins_content)
6178 (tui_free_win_content, free_content, free_content_elements):
6179 Remove.
6180
6181 2019-06-25 Tom Tromey <tom@tromey.com>
6182
6183 * tui/tui-winsource.h (tui_clear_source_content)
6184 (tui_erase_source_content, tui_show_source_content): Change type
6185 of win_info.
6186 * tui/tui-winsource.c (tui_clear_source_content)
6187 (tui_erase_source_content, tui_show_source_content): Change type
6188 of win_info.
6189 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
6190 * tui/tui-source.h (tui_set_source_content_nil): Change type of
6191 win_info.
6192 * tui/tui-source.c (tui_set_source_content_nil): Change type of
6193 win_info.
6194 * tui/tui-layout.c (show_source_or_disasm_and_command): Update.
6195
6196 2019-06-25 Tom Tromey <tom@tromey.com>
6197
6198 * tui/tui-winsource.c (tui_clear_source_content)
6199 (tui_source_window_base::set_is_exec_point_at): Update.
6200 * tui/tui-source.c (tui_set_source_content_nil): Update.
6201 * tui/tui-data.h (struct tui_source_element) <is_exec_point>: Now
6202 a bool.
6203 * tui/tui-data.c (init_content_element): Update.
6204
6205 2019-06-25 Tom Tromey <tom@tromey.com>
6206
6207 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Update.
6208 * tui/tui-win.c (make_invisible_and_set_new_height): Update.
6209 * tui/tui-layout.c (init_and_make_win): Update.
6210 * tui/tui.h (enum tui_win_type): Update.
6211 * tui/tui-data.h (tui_win_is_auxiliary): Rename from
6212 tui_win_is_auxillary.
6213 * tui/tui-data.c (tui_win_is_auxiliary): Rename from
6214 tui_win_is_auxillary.
6215
6216 2019-06-25 Tom Tromey <tom@tromey.com>
6217
6218 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Update.
6219 * tui/tui-windata.c (tui_data_window::first_data_item_displayed)
6220 (tui_delete_data_content_windows, tui_display_all_data)
6221 (tui_data_window::do_scroll_vertical, tui_display_data_from):
6222 Update.
6223 * tui/tui-win.c (tui_data_window::set_new_height): Simplify.
6224 * tui/tui-regs.c (tui_last_regs_line_no)
6225 (tui_line_from_reg_element_no, tui_first_reg_element_no_inline)
6226 (tui_show_registers): Update.
6227 (tui_show_register_group): Return void. Update.
6228 (tui_display_registers_from, tui_display_reg_element_at_line)
6229 (tui_display_registers_from_line, tui_check_register_values):
6230 Update.
6231 * tui/tui-data.h (union tui_which_element) <data_window>: Remove
6232 member.
6233 (struct tui_data_window) <regs_content>: Now a std::vector.
6234 <regs_content_count>: Remove.
6235 (tui_add_content_elements, tui_free_data_content): Don't declare.
6236 * tui/tui-data.c (tui_data_window::clear_detail): Update.
6237 (init_content_element): Remove DATA_WIN case. Add assert.
6238 (tui_add_content_elements): Remove.
6239 (tui_data_window): Update.
6240 (tui_free_data_content): Remove.
6241 (free_content_elements): Remove DATA_WIN case.
6242
6243 2019-06-25 Tom Tromey <tom@tromey.com>
6244
6245 * tui/tui-data.c (tui_data_item_window): Update.
6246 * tui/tui-windata.h (tui_check_data_values): Don't declare.
6247 * tui/tui-windata.c (tui_display_all_data)
6248 (tui_display_data_from_line): Update.
6249 (tui_check_data_values): Remove.
6250 * tui/tui-regs.c (tui_show_register_group)
6251 (tui_display_reg_element_at_line): Update.
6252 * tui/tui-hooks.c (tui_register_changed)
6253 (tui_refresh_frame_and_register_information): Call
6254 tui_check_register_values.
6255 * tui/tui-data.h (struct tui_data_window) <data_content,
6256 data_content_count, data_type>: Remove.
6257 (enum tui_data_type): Remove.
6258
6259 * tui/tui-data.c (tui_data_window::clear_detail)
6260 (~tui_data_window): Update.
6261
6262 2019-06-25 Tom Tromey <tom@tromey.com>
6263
6264 * tui/tui-windata.h (tui_first_data_item_displayed): Don't
6265 declare.
6266 * tui/tui-windata.c (tui_data_window::first_data_item_displayed):
6267 Rename from tui_first_data_item_displayed. Update.
6268 (tui_data_window::refresh_all)
6269 (tui_data_window::do_scroll_vertical): Update.
6270 * tui/tui-data.h (struct tui_data_window)
6271 <first_data_item_displayed>: Declare new method.
6272
6273 2019-06-25 Tom Tromey <tom@tromey.com>
6274
6275 * tui/tui-data.h (tui_init_generic_part): Don't declare.
6276 * tui/tui-data.c (tui_init_generic_part): Remove, moving
6277 contents...
6278 (tui_initialize_static_data): ...here.
6279
6280 2019-06-25 Tom Tromey <tom@tromey.com>
6281
6282 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
6283 (tui_display_registers_from, tui_check_register_values): Update.
6284 (tui_display_register): Remove win_info parameter; update.
6285 (tui_get_register): Change type of parameters.
6286 * tui/tui-data.h (struct tui_data_element): Remove.
6287 (union tui_which_element) <data>: Remove.
6288 <data_window>: Change type.
6289 (struct tui_data_item_window): New.
6290 * tui/tui-data.c (init_content_element): Remove DATA_ITEM_WIN
6291 case. Add assert.
6292 (~tui_data_item_window): New destructor.
6293 (free_content_elements): Remove DATA_ITEM_WIN case.
6294
6295 2019-06-25 Tom Tromey <tom@tromey.com>
6296
6297 * tui/tui.h (enum tui_win_type) <MAX_WINDOWS, UNDEFINED_WIN>:
6298 Remove.
6299
6300 2019-06-25 Tom Tromey <tom@tromey.com>
6301
6302 * tui/tui-data.h (struct tui_command_element): Remove.
6303 (union tui_which_element) <command>: Remove.
6304 * tui/tui-data.c (init_content_element): Remove CMD_WIN case. Add
6305 assert.
6306 (free_content_elements): Remove CMD_WIN case.
6307
6308 2019-06-25 Tom Tromey <tom@tromey.com>
6309
6310 * tui/tui-layout.c (tui_set_layout): Update.
6311 * tui/tui-data.h (struct tui_layout_def) <split>: Remove.
6312 * tui/tui-data.c (layout_def): Update.
6313
6314 2019-06-25 Tom Tromey <tom@tromey.com>
6315
6316 * tui/tui-wingeneral.c (tui_refresh_all): Update.
6317 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
6318 (tui_source_window_base::set_new_height): Update.
6319 * tui/tui-stack.c (tui_make_status_line): Change parameter type.
6320 Update.
6321 (tui_set_locator_fullname, tui_set_locator_info)
6322 (tui_show_frame_info): Update.
6323 * tui/tui-source.c (tui_set_source_content)
6324 (tui_source_is_displayed): Update.
6325 * tui/tui-layout.c (show_source_disasm_command, show_data)
6326 (show_source_or_disasm_and_command): Update.
6327 * tui/tui-disasm.c (tui_set_disassem_content)
6328 (tui_get_begin_asm_address): Update.
6329 * tui/tui-data.h (struct tui_locator_element): Remove.
6330 (union tui_which_element) <locator>: Remove.
6331 (struct tui_locator_window): New.
6332 (tui_locator_win_info_ptr): Change return type.
6333 * tui/tui-data.c (_locator): Change type.
6334 (tui_locator_win_info_ptr): Change return type.
6335 (init_content_element): Remove LOCATOR_WIN case. Add assert.
6336 (tui_alloc_content): Add assert.
6337
6338 2019-06-25 Tom Tromey <tom@tromey.com>
6339
6340 * tui/tui-winsource.c
6341 (tui_exec_info_window::maybe_allocate_content): New method.
6342 (tui_set_exec_info_content, tui_show_exec_info_content): Update.
6343 * tui/tui-layout.c (init_and_make_win): Add EXEC_INFO_WIN case.
6344 (make_source_or_disasm_window): Add cast.
6345 * tui/tui-data.h (union tui_which_element) <simple_string>:
6346 Remove.
6347 (struct tui_source_info): New.
6348 (struct tui_source_window_base) <execution_info>: Change type.
6349 * tui/tui-data.c (init_content_element): Remove EXEC_INFO_WIN
6350 case, and add assert.
6351 (tui_alloc_content): Add assert.
6352
6353 2019-06-25 Tom Tromey <tom@tromey.com>
6354
6355 * tui/tui-data.h (tui_alloc_win_info): Don't declare.
6356 * tui/tui-layout.c (init_and_make_win): Use "new" directly.
6357 * tui/tui-data.c (tui_alloc_win_info): Remove.
6358
6359 2019-06-25 Tom Tromey <tom@tromey.com>
6360
6361 * tui/tui-win.c (tui_set_win_focus_to): Don't check window type.
6362 * tui/tui-wingeneral.c (tui_unhighlight_win): Check
6363 can_highlight.
6364
6365 2019-06-25 Tom Tromey <tom@tromey.com>
6366
6367 * tui/tui-win.c (tui_source_window_base::update_tab_width): Call
6368 make_visible_with_new_height method.
6369 (tui_win_info::make_visible_with_new_height): New method.
6370 (tui_source_window_base::do_make_visible_with_new_height)
6371 (tui_data_window::do_make_visible_with_new_height)
6372 (tui_cmd_window::do_make_visible_with_new_height): New methods.
6373 (make_visible_with_new_height): Remove.
6374 (tui_resize_all, tui_adjust_win_heights): Use
6375 make_visible_with_new_height method.
6376 * tui/tui-data.h (struct tui_win_info)
6377 <do_make_visible_with_new_height, make_visible_with_new_height>:
6378 New methods.
6379 (struct tui_source_window_base, struct tui_data_window)
6380 (struct tui_cmd_window) <do_make_visible_with_new_height>: New
6381 methods.
6382
6383 2019-06-25 Tom Tromey <tom@tromey.com>
6384
6385 * tui/tui-win.c (tui_source_window_base::update_tab_width): New
6386 method.
6387 (update_tab_width): Call update_tab_width method.
6388 * tui/tui-data.h (struct tui_win_info)
6389 (struct tui_source_window_base) <update_tab_width>: New methods.
6390
6391 2019-06-25 Tom Tromey <tom@tromey.com>
6392
6393 * tui/tui-wingeneral.h (tui_make_window): Change type of "box_it"
6394 parameter.
6395 * tui/tui-wingeneral.c (tui_make_window): Change type of "box_it"
6396 parameter.
6397 (tui_gen_win_info::make_visible): Update.
6398 * tui/tui-layout.c (init_and_make_win): Change type of "box_it"
6399 parameter.
6400 * tui/tui-data.h (enum tui_box): New enum.
6401 (BOX_WINDOW, DONT_BOX_WINDOW): Remove defines.
6402
6403 2019-06-25 Tom Tromey <tom@tromey.com>
6404
6405 * tui/tui-layout.c (make_source_or_disasm_window): Always use
6406 init_and_make_win for EXEC_INFO_WIN.
6407 * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>: No
6408 longer inline.
6409 (struct tui_win_info) <~tui_win_info>: Inline.
6410 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
6411 Don't declare.
6412 * tui/tui-data.c (source_win, disasm_win): Remove globals.
6413 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
6414 Remove.
6415 (tui_initialize_static_data): Update.
6416 (~tui_gen_win_info): Handle more cleanup here.
6417 (~tui_source_window_base): Delete "execution_info".
6418 (~tui_win_info): Move code to ~tui_gen_win_info; remove.
6419
6420 2019-06-25 Tom Tromey <tom@tromey.com>
6421
6422 * tui/tui-layout.c (make_command_window): Don't set
6423 can_highlight.
6424 (show_source_disasm_command): Call the reset method.
6425 (show_data): Don't set can_highlight. Call the reset method.
6426 (tui_gen_win_info::reset): Rename from init_gen_win_info
6427 (init_and_make_win): Simplify. Return tui_gen_win_info.
6428 (show_source_or_disasm_and_command): Call the reset method.
6429 * tui/tui-data.h (struct tui_gen_win_info) <reset>: New method.
6430 (struct tui_cmd_window): Set can_highlight.
6431
6432 2019-06-25 Tom Tromey <tom@tromey.com>
6433
6434 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Rename
6435 from make_visible.
6436 (tui_make_visible, tui_make_invisible): Rewrite.
6437 (tui_win_info::make_visible): Remove.
6438 (tui_source_window_base::make_visible): Update.
6439 * tui/tui-data.h (struct tui_gen_win_info) <make_visible>: New
6440 method. Moved from...
6441 (struct tui_win_info) <make_visible>: ...here.
6442
6443 2019-06-25 Tom Tromey <tom@tromey.com>
6444
6445 * tui/tui-winsource.c
6446 (tui_source_window_base::do_scroll_horizontal): Remove direction
6447 parameter.
6448 * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Remove
6449 direction parameter.
6450 * tui/tui-win.c (tui_win_info::forward_scroll)
6451 (tui_win_info::backward_scroll, tui_win_info::left_scroll)
6452 (tui_win_info::right_scroll): Update.
6453 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Remove
6454 direction parameter.
6455 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Remove
6456 direction parameter.
6457 * tui/tui-data.h (enum tui_scroll_direction): Remove.
6458 (struct tui_win_info) <do_scroll_vertical, do_scroll_horizontal>:
6459 Remove direction parameter.
6460 (struct tui_source_window_base, struct tui_source_window)
6461 (struct tui_disasm_window, struct tui_data_window)
6462 (struct tui_cmd_window): Update.
6463
6464 2019-06-25 Tom Tromey <tom@tromey.com>
6465
6466 * tui/tui-winsource.h (tui_set_exec_info_content)
6467 (tui_show_exec_info_content, tui_erase_exec_info_content)
6468 (tui_clear_exec_info_content, tui_update_exec_info): Change
6469 argument to tui_source_window_base.
6470 * tui/tui-winsource.c (tui_set_exec_info_content)
6471 (tui_show_exec_info_content, tui_erase_exec_info_content)
6472 (tui_clear_exec_info_content, tui_update_exec_info): Change
6473 argument to tui_source_window_base.
6474
6475 2019-06-25 Tom Tromey <tom@tromey.com>
6476
6477 * tui/tui-winsource.h (tui_set_exec_info_content): Return void.
6478 * tui/tui-winsource.c (tui_set_exec_info_content): Return void.
6479
6480 2019-06-25 Tom Tromey <tom@tromey.com>
6481
6482 * tui/tui-winsource.c (tui_set_exec_info_content): Remove NULL
6483 check.
6484
6485 2019-06-25 Tom Tromey <tom@tromey.com>
6486
6487 * tui/tui-winsource.h (tui_alloc_source_buffer): Change return
6488 type to void.
6489 * tui/tui-winsource.c (tui_alloc_source_buffer): Change return
6490 type to void.
6491 * tui/tui-source.c (tui_set_source_content): Update.
6492 * tui/tui-disasm.c (tui_set_disassem_content): Update.
6493
6494 2019-06-25 Tom Tromey <tom@tromey.com>
6495
6496 * tui/tui-win.c (window_name_completer, tui_set_focus)
6497 (tui_all_windows_info): Use name method.
6498 * tui/tui-data.h (struct tui_gen_win_info)
6499 (struct tui_source_window, struct tui_disasm_window)
6500 (struct tui_data_window, struct tui_cmd_window) <name>: New
6501 method.
6502 (tui_win_name): Don't declare.
6503 * tui/tui-data.c (tui_partial_win_by_name): Use name method.
6504 (tui_win_name): Remove.
6505
6506 2019-06-25 Tom Tromey <tom@tromey.com>
6507
6508 * tui/tui-winsource.h (tui_update_source_window)
6509 (tui_update_source_window_as_is): Change parameter type.
6510 * tui/tui-winsource.c (tui_update_source_window): Change win_info
6511 to be a tui_source_window_base.
6512 (tui_update_source_window_as_is): Likewise.
6513 * tui/tui-win.c (make_visible_with_new_height): Update.
6514
6515 2019-06-25 Tom Tromey <tom@tromey.com>
6516
6517 * tui/tui-winsource.c (tui_erase_source_content)
6518 (tui_show_source_content, tui_show_exec_info_content)
6519 (tui_erase_exec_info_content): Use refresh_window method.
6520 * tui/tui-wingeneral.h (tui_refresh_win): Don't declare.
6521 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Rename
6522 from tui_refresh_win.
6523 (tui_data_window::refresh_window): New method.
6524 (tui_win_info::refresh, tui_source_window_base::refresh)
6525 (tui_refresh_all): Use refresh_window method.
6526 * tui/tui-stack.c (tui_show_locator_content): Call refresh_window
6527 method.
6528 * tui/tui-regs.c (tui_display_register): Call refresh_window
6529 method.
6530 * tui/tui-layout.c (show_source_disasm_command)
6531 (show_source_or_disasm_and_command): Call refresh_window method.
6532 * tui/tui-data.h (struct tui_gen_win_info)
6533 (struct tui_data_window, struct tui_cmd_window) <refresh_window>:
6534 New method.
6535
6536 2019-06-25 Tom Tromey <tom@tromey.com>
6537
6538 * tui/tui.c (tui_rl_other_window, tui_enable)
6539 (tui_is_window_visible, tui_get_command_dimension): Update.
6540 * tui/tui-winsource.c (tui_update_source_window_as_is)
6541 (tui_clear_source_content, tui_erase_source_content)
6542 (tui_show_source_line, tui_source_window_base::refill)
6543 (tui_source_window_base::do_scroll_horizontal)
6544 (tui_source_window_base::set_is_exec_point_at)
6545 (tui_update_breakpoint_info, tui_set_exec_info_content)
6546 (tui_alloc_source_buffer, tui_line_is_displayed)
6547 (tui_addr_is_displayed): Update.
6548 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win)
6549 (tui_check_and_display_highlight_if_needed)
6550 (tui_win_info::make_visible, tui_win_info::refresh)
6551 (tui_refresh_all): Update.
6552 * tui/tui-windata.c (tui_first_data_item_displayed)
6553 (tui_delete_data_content_windows, tui_erase_data_content)
6554 (tui_display_all_data, tui_data_window::refresh_all)
6555 (tui_check_data_values): Update.
6556 * tui/tui-win.c (window_name_completer, tui_update_gdb_sizes)
6557 (tui_set_win_focus_to, tui_win_info::forward_scroll)
6558 (tui_win_info::backward_scroll, tui_refresh_all_win)
6559 (tui_resize_all, tui_set_focus, tui_all_windows_info)
6560 (update_tab_width, tui_set_win_height, tui_adjust_win_heights)
6561 (tui_source_window_base::set_new_height)
6562 (tui_data_window::set_new_height)
6563 (make_invisible_and_set_new_height)
6564 (make_visible_with_new_height, new_height_ok)
6565 (parse_scrolling_args): Update.
6566 * tui/tui-stack.c (tui_show_frame_info): Update.
6567 * tui/tui-source.c (tui_set_source_content)
6568 (tui_set_source_content_nil, tui_source_is_displayed)
6569 (tui_source_window::do_scroll_vertical): Update.
6570 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
6571 (tui_display_registers_from, tui_display_reg_element_at_line)
6572 (tui_check_register_values, tui_reg_command): Update.
6573 * tui/tui-layout.c (tui_default_win_height)
6574 (show_source_disasm_command, show_data, init_and_make_win)
6575 (show_source_or_disasm_and_command): Update.
6576 * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts)
6577 (tui_redisplay_readline, tui_mld_flush)
6578 (tui_mld_erase_entire_line, tui_mld_getc, tui_cont_sig)
6579 (tui_getc): Update.
6580 * tui/tui-disasm.c (tui_set_disassem_content)
6581 (tui_disasm_window::do_scroll_vertical): Update.
6582 * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>:
6583 Now virtual.
6584 (struct tui_win_info): Derive from tui_gen_win_info.
6585 <~tui_win_info>: Mark as override.
6586 <generic>: Remove member.
6587 * tui/tui-data.c (tui_cmd_window::clear_detail, tui_next_win)
6588 (tui_prev_win, tui_partial_win_by_name, tui_win_info)
6589 (~tui_data_window, ~tui_win_info)
6590 (tui_free_all_source_wins_content): Update.
6591 * tui/tui-command.c (tui_refresh_cmd_win): Update.
6592
6593 2019-06-25 Tom Tromey <tom@tromey.com>
6594
6595 * tui/tui-layout.c (init_and_make_win): Use new.
6596 * tui/tui-data.h (struct tui_gen_win_info): Add constructor,
6597 destructor, initializers.
6598 (tui_alloc_generic_win_info): Don't declare.
6599 * tui/tui-data.c (_locator): Add argument to constructor.
6600 (source_win, disasm_win): New globals.
6601 (exec_info): Remove.
6602 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
6603 Update.
6604 (tui_alloc_generic_win_info): Remove.
6605 (init_content_element): Use new.
6606 (tui_win_info::tui_win_info): Update.
6607 (free_content_elements) <case DATA_WIN>: Use delete.
6608
6609 2019-06-25 Tom Tromey <tom@tromey.com>
6610
6611 * tui/tui-wingeneral.c (tui_refresh_win): Update.
6612 * tui/tui-windata.c (tui_first_data_item_displayed)
6613 (tui_delete_data_content_windows): Update.
6614 * tui/tui-win.c (tui_data_window::set_new_height): Update.
6615 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
6616 (tui_display_registers_from, tui_check_register_values): Update.
6617 * tui/tui-data.h (union tui_which_element) <data_window>: Now a
6618 pointer.
6619 * tui/tui-data.c (init_content_element): Update. Allocate the new
6620 window.
6621 (tui_free_data_content): Update.
6622 (free_content_elements) <case DATA_WIN>: Free the window.
6623
6624 2019-06-25 Tom Tromey <tom@tromey.com>
6625
6626 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win):
6627 Update.
6628 * tui/tui-layout.c (make_command_window)
6629 (show_source_disasm_command, show_data, init_and_make_win)
6630 (show_source_or_disasm_and_command): Update.
6631 * tui/tui-data.h (struct tui_win_info) <set_highlight>: New
6632 method.
6633 <can_highight, is_highlighted>: Now bool.
6634 (tui_set_win_highlight): Don't declare.
6635 * tui/tui-data.c (tui_set_win_highlight): Remove.
6636
6637 2019-06-25 Tom Tromey <tom@tromey.com>
6638
6639 * tui/tui-wingeneral.c (make_visible): Remove check of window
6640 type.
6641
6642 2019-06-25 Tom Tromey <tom@tromey.com>
6643
6644 * tui/tui-win.c (tui_win_info::max_height)
6645 (tui_cmd_window::max_height): New methods.
6646 (new_height_ok): Call max_height.
6647 * tui/tui-data.h (struct tui_win_info, struct tui_cmd_window)
6648 <max_height>: New method.
6649
6650 2019-06-25 Tom Tromey <tom@tromey.com>
6651
6652 * tui/tui-win.c (tui_source_window_base::set_new_height)
6653 (tui_data_window::set_new_height): New methods.
6654 (make_invisible_and_set_new_height): Call set_new_height method.
6655 * tui/tui-data.h (struct tui_win_info)
6656 (struct tui_source_window_base, struct tui_data_window)
6657 <set_new_height>: New method.
6658
6659 2019-06-25 Tom Tromey <tom@tromey.com>
6660
6661 * tui/tui.c (tui_rl_other_window): Call the refresh_all method.
6662 * tui/tui-windata.c (tui_data_window::refresh_all): Rename from
6663 tui_refresh_data_win.
6664 * tui/tui-win.c (tui_source_window_base::refresh_all): New
6665 method.
6666 (tui_refresh_all_win): Call the refresh_all method.
6667 (tui_set_focus): Likewise.
6668 * tui/tui-data.h (struct tui_win_info) <refresh_all>: New method.
6669 (struct tui_source_window_base, struct tui_data_window) <refresh>:
6670 Likewise.
6671
6672 2019-06-25 Tom Tromey <tom@tromey.com>
6673
6674 * tui/tui-winsource.h (tui_refill_source_window)
6675 (tui_set_is_exec_point_at): Don't declare.
6676 * tui/tui-winsource.c (tui_update_source_windows_with_addr)
6677 (tui_source_window_base::refill): Rename from
6678 tui_refill_source_window.
6679 (tui_source_window_base::do_scroll_horizontal): Update.
6680 (tui_source_window_base::set_is_exec_point_at): Rename from
6681 tui_set_is_exec_point_at.
6682 (tui_update_all_breakpoint_info): Update.
6683 * tui/tui-stack.c (tui_show_frame_info): Update.
6684 * tui/tui-layout.c (show_data): Add cast.
6685 * tui/tui-hooks.c (tui_redisplay_source): Call refill method.
6686 * tui/tui-data.h (struct tui_source_window_base) <refill,
6687 set_is_exec_point_at>: New methods.
6688 (tui_source_windows, tui_add_to_source_windows): Update types.
6689 (tui_add_to_source_windows): Remove redundant declaration.
6690 * tui/tui-data.c (source_windows): Store tui_source_window_base.
6691 (tui_source_windows): Change return type.
6692 (tui_clear_source_windows_detail): Update.
6693 (tui_add_to_source_windows): Change type of parameter.
6694 (tui_free_all_source_wins_content): Update.
6695
6696 2019-06-25 Tom Tromey <tom@tromey.com>
6697
6698 * tui/tui-wingeneral.c (tui_win_info::refresh)
6699 (tui_source_window_base::refresh): New methods.
6700 (tui_refresh_all): Call the refresh method.
6701 * tui/tui-data.h (struct tui_win_info)
6702 (struct tui_source_window_base) <refresh>: New method.
6703
6704 2019-06-25 Tom Tromey <tom@tromey.com>
6705
6706 * tui/tui.h (tui_is_window_visible): Return bool.
6707 * tui/tui.c (tui_is_window_visible): Return bool.
6708 * tui/tui-wingeneral.c (tui_make_window, make_visible)
6709 (tui_make_visible, tui_make_invisible)
6710 (tui_win_info::make_visible)
6711 (tui_source_window_base::make_visible, make_all_visible)
6712 (tui_make_all_visible, tui_make_all_invisible): Update.
6713 * tui/tui-windata.c (tui_delete_data_content_windows): Update.
6714 * tui/tui-data.h (struct tui_gen_win_info) <is_visible>: Now
6715 bool.
6716 (struct tui_win_info, struct tui_source_window_base)
6717 (struct tui_cmd_window) <make_visible>: Change parameter to bool.
6718 * tui/tui-data.c (tui_init_generic_part): Update.
6719
6720 2019-06-25 Tom Tromey <tom@tromey.com>
6721
6722 * tui/tui-wingeneral.c (tui_win_info::make_visible)
6723 (tui_source_window_base::make_visible): New methods.
6724 (make_all_visible): Make method call.
6725 * tui/tui-data.h (struct tui_win_info) <make_visible>: New method.
6726 (struct tui_source_window_base, struct tui_cmd_window): Override
6727 make_visible.
6728 (tui_win_is_source_type): Don't declare.
6729 * tui/tui-data.c (tui_win_is_source_type): Remove.
6730
6731 2019-06-25 Tom Tromey <tom@tromey.com>
6732
6733 * tui/tui-layout.c (show_source_or_disasm_and_command): Remove
6734 NULL check.
6735
6736 2019-06-25 Tom Tromey <tom@tromey.com>
6737
6738 * tui/tui-data.h (struct tui_data_window, struct tui_cmd_window):
6739 Inline constructor. Add initializers for members.
6740 * tui/tui-data.c (tui_data_window, tui_cmd_window): Remove
6741 constructors; now inline in class.
6742
6743 2019-06-25 Tom Tromey <tom@tromey.com>
6744
6745 * tui/tui-regs.c (tui_show_registers): Update.
6746 * tui/tui-data.h (struct tui_data_window) <display_regs>: Now
6747 bool.
6748 * tui/tui-data.c (tui_data_window::clear_detail)
6749 (tui_data_window): Update.
6750
6751 2019-06-25 Tom Tromey <tom@tromey.com>
6752
6753 * tui/tui-windata.c (tui_display_all_data)
6754 (tui_display_data_from_line, tui_display_data_from)
6755 (tui_check_data_values, tui_data_window::do_scroll_vertical):
6756 Update.
6757 * tui/tui-regs.c (tui_last_regs_line_no)
6758 (tui_line_from_reg_element_no, tui_first_reg_element_no_inline)
6759 (tui_show_registers, tui_show_register_group)
6760 (tui_display_registers_from, tui_display_reg_element_at_line)
6761 (tui_display_registers_from_line, tui_check_register_values)
6762 (tui_reg_next, tui_reg_prev): Update.
6763 * tui/tui-layout.c (tui_set_layout, show_data): Update.
6764 * tui/tui-data.h (struct tui_data_info): Remove. Move contents to
6765 tui_data_window.
6766 (struct tui_win_info) <detail>: Remove. Add new fields from
6767 tui_data_info.
6768 (TUI_DATA_WIN): Add cast.
6769 * tui/tui-data.c (tui_data_window::clear_detail, tui_data_window)
6770 (~tui_data_window): Simplify.
6771
6772 2019-06-25 Tom Tromey <tom@tromey.com>
6773
6774 * tui/tui-layout.c (show_source_disasm_command)
6775 (show_source_or_disasm_and_command): Update.
6776 * tui/tui-io.c (update_cmdwin_start_line)
6777 (tui_redisplay_readline): Update.
6778 * tui/tui-data.h (struct tui_command_info): Remove.
6779 (struct tui_win_info) <detail>: Remove command_info member.
6780 (struct tui_data_window) <start_line>: New member, from
6781 tui_command_info.
6782 (TUI_CMD_WIN): Add casts.
6783
6784 2019-06-25 Tom Tromey <tom@tromey.com>
6785
6786 * tui/tui-winsource.c (tui_update_source_window)
6787 (tui_refill_source_window)
6788 (tui_source_window_base::do_scroll_horizontal)
6789 (tui_update_breakpoint_info, tui_set_exec_info_content)
6790 (tui_show_exec_info_content, tui_erase_exec_info_content)
6791 (tui_clear_exec_info_content): Update.
6792 * tui/tui-wingeneral.c (make_all_visible, tui_refresh_all):
6793 Update.
6794 * tui/tui-win.c (make_invisible_and_set_new_height)
6795 (make_visible_with_new_height): Update.
6796 * tui/tui-source.c (tui_set_source_content)
6797 (tui_show_symtab_source): Update.
6798 * tui/tui-layout.c (extract_display_start_addr)
6799 (show_source_disasm_command, show_data)
6800 (make_source_or_disasm_window)
6801 (show_source_or_disasm_and_command): Update.
6802 * tui/tui-disasm.c (tui_set_disassem_content): Simplify.
6803 (tui_disasm_window::do_scroll_vertical): Remove shadowing
6804 "gdbarch".
6805 * tui/tui-data.h (struct tui_source_info): Remove. Move contents
6806 to tui_source_window_base.
6807 (struct tui_win_info) <detail>: Remove source_info member.
6808 (struct tui_source_window_base) <has_locator>: Inline.
6809 Move contents from tui_source_info; rename has_locator member to
6810 m_has_locator.
6811 (TUI_SRC_WIN, TUI_DISASM_WIN): Add casts.
6812 * tui/tui-data.c (tui_source_window_base::has_locator): Move to
6813 header file.
6814 (tui_source_window_base::clear_detail, ~tui_source_window_base):
6815 Simplify.
6816 (tui_free_all_source_wins_content): Cast to
6817 tui_source_window_base.
6818
6819 2019-06-25 Tom Tromey <tom@tromey.com>
6820
6821 * tui/tui-win.c (make_invisible_and_set_new_height)
6822 (make_visible_with_new_height): Call has_locator method.
6823 * tui/tui-layout.c (show_source_disasm_command, show_data)
6824 (show_source_or_disasm_and_command): Update for bool change.
6825 * tui/tui-data.h (struct tui_source_info) <has_locator>: Now bool.
6826 (tui_win_info) <has_locator>: New method.
6827 (struct tui_source_window_base) <has_locator>: New method.
6828 (tui_win_has_locator): Don't declare.
6829 * tui/tui-data.c (tui_source_window_base::has_locator): Rename
6830 from tui_win_has_locator.
6831 (tui_source_window_base): Use false, not FALSE.
6832
6833 2019-06-25 Tom Tromey <tom@tromey.com>
6834
6835 * tui/tui-data.h (tui_clear_win_detail): Don't declare.
6836 * tui/tui-data.c (tui_clear_source_windows_detail): Call the
6837 clear_detail method directly.
6838 (tui_clear_win_detail): Remove.
6839
6840 2019-06-25 Tom Tromey <tom@tromey.com>
6841
6842 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Use
6843 "this", not TUI_DISASM_WIN.
6844
6845 2019-06-25 Tom Tromey <tom@tromey.com>
6846
6847 * tui/tui-winsource.h (tui_horizontal_source_scroll): Don't
6848 declare.
6849 * tui/tui-winsource.c
6850 (tui_source_window_base::do_scroll_horizontal): Rename from
6851 tui_horizontal_source_scroll.
6852 * tui/tui-windata.h (tui_vertical_data_scroll): Don't declare.
6853 * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Rename
6854 from tui_vertical_data_scroll.
6855 * tui/tui-win.h (tui_scroll): Don't declare.
6856 * tui/tui-win.c (tui_win_info::forward_scroll)
6857 (tui_win_info::backward_scroll, tui_win_info::left_scroll)
6858 (tui_win_info::right_scroll): Rename and update.
6859 (tui_scroll_forward_command, tui_scroll_backward_command)
6860 (tui_scroll_left_command, tui_scroll_right_command): Update.
6861 (tui_scroll): Remove.
6862 * tui/tui-source.h: Don't declare tui_vertical_source_scroll.
6863 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Rename
6864 from tui_vertical_source_scroll.
6865 * tui/tui-disasm.h (tui_vertical_disassem_scroll): Don't declare.
6866 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Rename
6867 from tui_vertical_disassem_scroll.
6868 * tui/tui-data.h (struct tui_win_info) <do_scroll_vertical,
6869 do_scroll_horizontal>: New methods.
6870 <forward_scroll, backward_scroll, left_scroll, right_scroll>:
6871 Likewise.
6872 (struct tui_source_window_base): Add do_scroll_horizontal.
6873 (struct tui_source_window, struct tui_disasm_window): Add
6874 do_scroll_vertical.
6875 (struct tui_data_window, struct tui_cmd_window): Add
6876 do_scroll_horizontal and do_scroll_vertical.
6877 * tui/tui-command.c (tui_dispatch_ctrl_char): Use method calls.
6878
6879 2019-06-25 Tom Tromey <tom@tromey.com>
6880
6881 * tui/tui-data.h (struct tui_source_window_base): New struct.
6882 (struct tui_source_window): Derive from tui_source_window_base.
6883 (struct tui_disasm_window): New struct.
6884 * tui/tui-data.c (tui_source_window_base::clear_detail): Rename
6885 from tui_source_window::clear_detail.
6886 (tui_source_window_base): Rename from tui_source_window.
6887 (~tui_source_window_base): Rename from ~tui_source_window.
6888 (tui_alloc_win_info): Create a tui_disasm_window.
6889
6890 2019-06-25 Tom Tromey <tom@tromey.com>
6891
6892 * tui/tui-data.h (struct tui_source_window)
6893 (struct tui_data_window): Declare destructors.
6894 * tui/tui-data.c (~tui_source_window, ~tui_data_window): New
6895 destructors.
6896 (tui_win_info): Simplify.
6897
6898 2019-06-25 Tom Tromey <tom@tromey.com>
6899
6900 * tui/tui-winsource.c (tui_display_main)
6901 (tui_update_source_windows_with_addr)
6902 (tui_update_all_breakpoint_info): Update.
6903 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
6904 (new_height_ok, parse_scrolling_args): Update.
6905 * tui/tui-stack.c (tui_show_frame_info): Update.
6906 * tui/tui-data.h (struct tui_list): Remove.
6907 (tui_source_windows): Return a reference to a std::vector.
6908 * tui/tui-data.c (source_windows): Now a std::vector.
6909 (tui_source_windows): Change return type.
6910 (tui_clear_source_windows): Rewrite.
6911 (tui_clear_source_windows_detail, tui_add_to_source_windows)
6912 (tui_free_all_source_wins_content): Rewrite.
6913
6914 2019-06-25 Tom Tromey <tom@tromey.com>
6915
6916 * tui/tui-data.h (struct tui_win_info, struct tui_source_window)
6917 (struct tui_data_window, struct tui_cmd_window): Declare
6918 clear_detail method.
6919 * tui/tui-data.c (tui_source_window::clear_detail)
6920 (tui_cmd_window::clear_detail, tui_data_window::clear_detail): New
6921 methods.
6922 (tui_clear_win_detail): Simplify.
6923
6924 2019-06-25 Tom Tromey <tom@tromey.com>
6925
6926 * tui/tui-layout.c (make_source_window, make_disasm_window)
6927 (make_source_or_disasm_window): Remove win_info_ptr parameter.
6928 Return the new window.
6929 (show_source_disasm_command, show_data)
6930 (show_source_or_disasm_and_command): Update.
6931
6932 2019-06-25 Tom Tromey <tom@tromey.com>
6933
6934 * tui/tui-layout.c (make_command_window): Remove win_info_ptr
6935 parameter. Return the new window.
6936 (show_source_disasm_command): Update and remove NULL check.
6937 (show_source_or_disasm_and_command): Update.
6938
6939 2019-06-25 Tom Tromey <tom@tromey.com>
6940
6941 * tui/tui-layout.c (init_and_make_win): Remove NULL check.
6942
6943 2019-06-25 Tom Tromey <tom@tromey.com>
6944
6945 * tui/tui-data.h (struct tui_win_info): Make constructor
6946 protected. Make destructor virtual. Add initializers.
6947 (tui_source_window, tui_data_window, tui_cmd_window): New
6948 classes.
6949 * tui/tui-data.c (tui_win_info): Rename from init_win_info. Now a
6950 constructor. Add "type" parameter.
6951 (tui_source_window, tui_data_window, tui_cmd_window): New
6952 constructors.
6953 (tui_alloc_win_info): Instantiate the appropriate subclass.
6954
6955 2019-06-25 Tom Tromey <tom@tromey.com>
6956
6957 * tui/tui-win.c (tui_resize_all): Use delete.
6958 * tui/tui-data.h (struct tui_win_info) <~tui_win_info>: Declare
6959 destructor.
6960 (tui_free_window): Don't declare.
6961 * tui/tui-data.c (~tui_win_info): Rename from tui_free_window.
6962 Update.
6963
6964 2019-06-25 Tom Tromey <tom@tromey.com>
6965
6966 * tui/tui-data.h (struct tui_win_info): Add constructor.
6967 * tui/tui-data.c (tui_alloc_win_info): Use new.
6968 (tui_free_window): Use delete.
6969
6970 2019-06-22 Tom Tromey <tom@tromey.com>
6971
6972 * tui/tui-windata.h (tui_first_data_element_no_in_line): Don't
6973 declare.
6974 * tui/tui-windata.c (tui_first_data_element_no_in_line): Remove.
6975
6976 2019-06-22 Tom Tromey <tom@tromey.com>
6977
6978 * tui/tui-data.h (tui_del_window, tui_del_data_windows): Don't
6979 declare.
6980 * tui/tui-data.c (tui_del_window, tui_del_data_windows): Remove.
6981
6982 2019-06-22 Tom de Vries <tdevries@suse.de>
6983
6984 * dwarf2read.c (create_addrmap_from_aranges)
6985 (read_debug_names_from_section): Print ptrdiff_t using '%s' and plongest
6986 instead of '%zu'.
6987
6988 2019-06-21 Simon Marchi <simon.marchi@efficios.com>
6989
6990 * dwarf2read.h (dwarf2_section_info_def): Remove.
6991 (DEF_VEC_O (dwarf2_section_info_def)): Remove.
6992 * dwarf2read.c (struct dwo_sections) <types>: Change type to
6993 std::vector<dwarf2_section_info>.
6994 (struct dwo_file) <~dwo_file>: Remove.
6995 (dwarf2_per_objfile::~dwarf2_per_objfile): Don't manually free
6996 types field.
6997 (dwarf2_per_objfile::locate_sections): Adjust to std::vector.
6998 (dwarf2_read_debug_names): Likewise.
6999 (create_debug_types_hash_table): Change parameter type to
7000 array_view, adjust code accordingly.
7001 (dwarf2_locate_dwo_sections): Adjust to std::vector.
7002 (partial_die_info::fixup): Likewise.
7003 (determine_prefix): Likewise.
7004 * dwarf-index-write.c (write_psymtabs_to_index): Adjust.
7005
7006 2019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
7007
7008 * dwarf2read.c (struct dwo_file) <dbfd>: Change type to
7009 gdb_bfd_ref_ptr.
7010 <~dwo_file>: Remove call to gdb_bfd_unref.
7011 (open_and_init_dwo_file): Move gdb_bfd_ref_ptr into dbfd field. Call
7012 gdb_bfd_ref_ptr::get.
7013
7014 2019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
7015
7016 * dwarf2read.h (struct dwarf2_per_objfile) <dwo_files>: Change
7017 type to htab_up.
7018 * dwarf2read.c (struct dwo_file): Initialize fields.
7019 <~dwo_file>: New.
7020 (free_dwo_file): Remove, move content to ~dwo_file.
7021 (struct dwo_file_deleter): Remove.
7022 (dwo_file_up>: Remove custom deleter.
7023 (free_dwo_files): Remove.
7024 (dwarf2_per_objfile::~dwarf2_per_objfile): Don't explicitly free
7025 dwo_files.
7026 (process_skeletonless_type_units): Call unique_ptr::get.
7027 (allocate_dwo_file_hash_table): Add deleter to created hash
7028 table. Change return type to htab_up.
7029 (lookup_dwo_file_slot): Don't memset dwo_file, call
7030 unique_ptr::get.
7031 (create_dwo_unit_in_dwp_v1): Allocate dwo_file with new.
7032 (create_dwo_unit_in_dwp_v2): Likewise.
7033 (open_and_init_dwo_file): Likewise.
7034 (free_dwo_file_from_slot): Remove.
7035
7036 2019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
7037
7038 * dwarf2read.h (struct dwarf2_section_info) <readin,
7039 is_virtual>: Change type to bool.
7040 * dwarf2read.c (dwarf2_read_section, create_dwp_v2_section): Use
7041 true instead of 1.
7042
7043 2019-06-19 Tom Tromey <tom@tromey.com>
7044
7045 * tui/tui-data.h (tui_init_content_element): Don't declare.
7046
7047 2019-06-19 Tom Tromey <tom@tromey.com>
7048
7049 * tui/tui-data.h (tui_init_win_info): Don't declare.
7050
7051 2019-06-19 Tom de Vries <tdevries@suse.de>
7052
7053 * dwarf2read.h (abstract_to_concrete): Change type to
7054 std::unordered_map<sect_offset, std::vector<sect_offset>,
7055 gdb::hash_enum<sect_offset>>.
7056
7057 2019-06-19 Tom Tromey <tromey@adacore.com>
7058
7059 * ada-lang.c (ada_evaluate_subexp) <case OP_ATR_FIRST>: Handle
7060 EVAL_AVOID_SIDE_EFFECTS specially.
7061
7062 2019-06-19 Tom Tromey <tromey@adacore.com>
7063
7064 * source-cache.c (highlighter): New global.
7065 (source_cache::get_source_lines): Create a highlighter on demand.
7066
7067 2019-06-18 Andrew Burgess <andrew.burgess@embecosm.com>
7068
7069 * defs.h (deprecated_interactive_hook): Delete declaration.
7070 * interps.c (clear_interpreter_hooks): Remove use of
7071 deprecated_interactive_hook.
7072 * top.c (deprecated_interactive_hook): Delete definition.
7073 * utils.c (maybe_quit): Remove use of deprecated_interactive_hook.
7074
7075 2019-06-18 Tom de Vries <tdevries@suse.de>
7076
7077 PR gdb/24515
7078 * dwarf2read.h (abstract_to_concrete): Change type from
7079 std::unordered_map<die_info_ptr, std::vector<die_info_ptr>> to
7080 std::unordered_map<sect_offset, std::vector<sect_offset>>.
7081 * dwarf2read.c (read_variable): Update.
7082 (dwarf2_fetch_die_loc_sect_off): Update.
7083
7084 2019-06-17 Tom de Vries <tdevries@suse.de>
7085
7086 PR gdb/24617
7087 * common/pathstuff.c (child_path): Make sure parent_len > 0 before
7088 accessing parent[parent_len - 1].
7089
7090 2019-06-17 Paul Pluzhnikov <ppluzhnikov@google.com>
7091
7092 PR gdb/24364
7093 * gdb/dtrace-probe.c (dtrace_static_probe_ops::get_probe): Don't
7094 call dtrace_process_dof with NULL dof.
7095
7096 2019-06-16 Tom de Vries <tdevries@suse.de>
7097
7098 PR gdb/24445
7099 * contrib/gdb-add-index.sh: Update to handle dwz-m-ed executable.
7100
7101 2019-06-16 Tom Tromey <tom@tromey.com>
7102
7103 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win)
7104 (make_all_visible): Use address of member.
7105
7106 2019-06-16 Tom Tromey <tom@tromey.com>
7107
7108 * tui/tui-data.c (tui_clear_win_detail, init_win_info)
7109 (tui_free_window, free_content, free_content_elements): Remove
7110 unnecessary cast.
7111 * tui/tui-windata.c (tui_display_all_data): Remove unnecessary
7112 cast.
7113 * tui/tui-regs.c (tui_show_register_group)
7114 (tui_display_registers_from, tui_display_reg_element_at_line):
7115 Remove unnecessary cast.
7116
7117 2019-06-16 Andrew Burgess <andrew.burgess@embecosm.com>
7118
7119 * linux-nat.c (normal_mask): Delete.
7120 (_initialize_linux_nat): Don't initialise normal_mask.
7121
7122 2019-06-16 Simon Marchi <simon.marchi@polymtl.ca>
7123
7124 PR gdb/24445
7125 * dwarf-index-write.h (write_psymtabs_to_index): Add
7126 dwz_basename parameter.
7127 * dwarf-index-write.c (write_gdbindex): Move file writing to
7128 write_gdbindex_1. Change return type void.
7129 (assert_file_size): Move up, remove filename parameter.
7130 (write_gdbindex_1): New function.
7131 (write_debug_names): Change return type to void, call
7132 assert_file_size.
7133 (struct index_wip_file): New struct.
7134 (write_psymtabs_to_index): Add dwz_basename parameter. Move
7135 file logic to index_wip_file. Write index for dwz file if
7136 needed.
7137 (save_gdb_index_command): Pass basename of dwz file, if present.
7138 * dwarf-index-cache.c (index_cache::store): Obtain and pass
7139 build-id of dwz file, if present.
7140 * dwarf2read.c (struct dwz_file): Move to dwarf2read.h.
7141 (dwarf2_get_dwz_file): Likewise.
7142 * dwarf2read.h (struct dwz_file): Move from dwarf2read.c.
7143 (dwarf2_get_dwz_file): Likewise.
7144
7145 2019-06-16 Tom Tromey <tom@tromey.com>
7146
7147 * coffread.c (process_coff_symbol): Use xstrdup.
7148 * value.c (create_internalvar): Use xstrdup.
7149
7150 2019-06-16 Tom Tromey <tom@tromey.com>
7151
7152 * valops.c (value_cast, value_slice): Remove unnecessary cast.
7153 * breakpoint.c (stopin_command, stopat_command)
7154 (until_break_command, decode_location_default): Remove unnecessary
7155 cast.
7156 * utils.c (subset_compare): Remove unnecessary cast.
7157 * ada-lang.c (ada_update_initial_language): Remove unnecessary
7158 cast.
7159 * linespec.c (decode_line_with_last_displayed): Remove unnecessary
7160 cast.
7161 * infcmd.c (path_command): Remove unnecessary cast.
7162 * coffread.c (decode_type): Remove unnecessary cast.
7163 * xcoffread.c (read_xcoff_symtab): Remove unnecessary cast.
7164 * mipsread.c (mipscoff_symfile_read): Remove unnecessary cast.
7165 * tui/tui-stack.c (tui_show_locator_content)
7166 (tui_show_frame_info): Remove unnecessary cast.
7167 * tui/tui-win.c (tui_scroll_forward_command)
7168 (tui_scroll_backward_command, tui_set_focus, tui_set_win_height)
7169 (parse_scrolling_args): Remove unnecessary cast.
7170 * tui/tui-data.c (init_win_info, tui_del_window)
7171 (tui_free_window, tui_del_data_windows, tui_free_data_content)
7172 (free_content_elements): Remove unnecessary cast.
7173 * tui/tui-windata.c (tui_first_data_item_displayed): Remove
7174 unnecessary cast.
7175 * tui/tui-source.c (tui_set_source_content)
7176 (tui_vertical_source_scroll): Remove unnecessary cast.
7177 * tui/tui-layout.c (tui_default_win_height): Remove unnecessary
7178 cast.
7179 * tui/tui-io.c (tui_initialize_io): Remove unnecessary cast.
7180 * tui/tui-regs.c (tui_display_registers_from)
7181 (tui_display_register): Remove unnecessary cast.
7182 * tui/tui-wingeneral.c (tui_refresh_win, tui_delete_win)
7183 (tui_unhighlight_win, tui_highlight_win, tui_make_window)
7184 (make_visible): Remove unnecessary cast.
7185 * tui/tui-winsource.c (tui_erase_source_content)
7186 (tui_update_breakpoint_info, tui_set_exec_info_content): Remove
7187 unnecessary cast.
7188 * ax-gdb.c (agent_command_1): Remove unnecessary cast.
7189 * cli/cli-setshow.c (cmd_show_list): Remove unnecessary cast.
7190 * stabsread.c (read_type, read_array_type, read_range_type):
7191 Remove unnecessary cast.
7192 * mdebugread.c (mdebug_build_psymtabs): Remove unnecessary cast.
7193 (parse_symbol, parse_type, upgrade_type, parse_external)
7194 (parse_partial_symbols, psymtab_to_symtab_1, cross_ref): Remove
7195 unnecessary cast.
7196 * gdb_bfd.c (gdb_bfd_map_section): Remove unnecessary cast.
7197
7198 2019-06-16 Tom Tromey <tom@tromey.com>
7199
7200 * tui/tui-data.c (tui_alloc_generic_win_info)
7201 (tui_alloc_win_info, tui_add_content_elements): Remove NULL
7202 checks.
7203
7204 2019-06-16 Bernhard Heckel <bernhard.heckel@intel.com>
7205 Andrew Burgess <andrew.burgess@embecosm.com>
7206
7207 * f-typeprint.c (f_print_type): Don't return early for not
7208 associated or not allocated types.
7209 (f_type_print_varspec_suffix): Add print_rank parameter and print
7210 ranks of array types in case they dangling.
7211 (f_type_print_base): Add print_rank parameter.
7212
7213 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
7214
7215 * NEWS: Mention new MI commands.
7216 * break-catch-throw.c (enum exception_event_kind): Move to
7217 breakpoint.h.
7218 (print_mention_exception_catchpoint): Output text as a single
7219 message.
7220 (catch_exception_command_1): Rename to...
7221 (catch_exception_event): ...this, make non-static, update header
7222 command, and change some parameter types.
7223 (catch_catch_command): Update for changes to
7224 catch_exception_command_1.
7225 (catch_throw_command): Likewise.
7226 (catch_rethrow_command): Likewise.
7227 * breakpoint.c (enum exception_event_kind): Delete.
7228 * breakpoint.h (enum exception_event_kind): Moved here from
7229 break-catch-throw.c.
7230 (catch_exception_event): Declare.
7231 * mi/mi-cmd-catch.c (mi_cmd_catch_exception_event): New function.
7232 (mi_cmd_catch_throw): New function.
7233 (mi_cmd_catch_rethrow): New function.
7234 (mi_cmd_catch_catch): New function.
7235 * mi/mi-cmds.c (mi_cmds): Add 'catch-throw', 'catch-rethrow', and
7236 'catch-catch' entries.
7237 * mi/mi-cmds.h (mi_cmd_catch_throw): Declare.
7238 (mi_cmd_catch_rethrow): Declare.
7239 (mi_cmd_catch_catch): Declare.
7240
7241 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
7242
7243 * annotate.c (annotate_source_line): Change return type to void,
7244 update implementation to match.
7245 * annotate.h (annotate_source_line): Change return type to void,
7246 update header comment.
7247 * stack.c (print_frame_info): Don't change what frame information
7248 is printed based on whether annotations are on or not.
7249
7250 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
7251
7252 * annotate.c: Add 'source.h' and 'objfiles.h' includes.
7253 (annotate_source): Make static.
7254 (annotate_source_line): Moved from source.c and renamed from
7255 identify_source_line. Update the return type.
7256 * annotate.h (annotate_source): Delete declaration.
7257 (annotate_source_line): Declaration moved from source.h, and
7258 renamed from identify_source_line. Return type updated.
7259 * source.c (identify_source_line): Moved to annotate.c and renamed
7260 to annotate_source_line.
7261 (info_line_command): Remove check of annotation_level.
7262 * source.h (identify_source_line): Move declaration to annotate.h
7263 and rename to annotate_source_line.
7264 * stack.c: Add 'annotate.h' include.
7265 (print_frame_info): Remove check of annotation_level before
7266 calling annotate_source_line.
7267
7268 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
7269
7270 * source-cache.c (source_cache::get_plain_source_lines): Use
7271 open_source_file_with_line_charpos instead of just
7272 open_source_file, remove call to find_source_lines.
7273 (source_cache::get_source_lines): Likewise.
7274 * source.c (find_source_lines): Make static.
7275 (get_filename_and_charpos): Renamed into...
7276 (open_source_file_with_line_charpos): ..this along with changes to
7277 return a scoped_fd, and some other minor clean ups.
7278 (identify_source_line): Use open_source_file_with_line_charpos.
7279 (search_command_helper): Use open_source_file_with_line_charpos
7280 instead of just open_source_file, remove call to
7281 find_source_lines.
7282 * source.h (open_source_file_with_line_charpos): Declare new
7283 function.
7284 (find_source_lines): Delete declaration.
7285
7286 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
7287
7288 * source.c (get_filename_and_charpos): Remove fullname
7289 parameter.
7290 (identify_source_line): Update call to get_filename_and_charpos.
7291
7292 2019-06-14 Tom Tromey <tromey@adacore.com>
7293
7294 PR gdb/24502:
7295 * ui-style.h (skip_ansi_escape): Update comment.
7296 * ui-file.h (class no_terminal_escape_file): New class.
7297 * ui-file.c (no_terminal_escape_file::write)
7298 (no_terminal_escape_file::puts): New methods.
7299 * cli/cli-logging.c (handle_redirections): Use
7300 no_terminal_escape_file.
7301
7302 2019-06-14 Tom Tromey <tromey@adacore.com>
7303
7304 * NEWS: Move convenience variable news above Python news.
7305
7306 2019-06-14 Tom Tromey <tom@tromey.com>
7307
7308 * gnulib: Move directory to top-level.
7309 * configure.ac: Don't configure gnulib.
7310 * configure: Rebuild.
7311 * common/common-defs.h: Use new path to gnulib.
7312 * Makefile.in (GNULIB_BUILDDIR): Now ../gnulib.
7313 (GNULIB_H): Remove.
7314 (INCGNU): Look in new gnulib location.
7315 (HFILES_NO_SRCDIR): Remove gnulib files.
7316 (SUBDIR, REQUIRED_SUBDIRS): Remove gnulib.
7317 (generated_files): Remove GNULIB_H.
7318 ($(LIBGNU), all-lib): Remove targets.
7319 (distclean): Don't mention GNULIB_BUILDDIR.
7320 ($(GNULIB_BUILDDIR)/Makefile): Remove target.
7321
7322 2019-06-14 Tom Tromey <tromey@adacore.com>
7323
7324 * symfile.c (add_symbol_file_command): Remove obsolete comment.
7325 Warn if symbol file does not provide any symbols.
7326
7327 2019-06-14 Tom Tromey <tromey@adacore.com>
7328
7329 * source.c (find_and_open_source): Respect basenames_may_differ.
7330
7331 2019-06-14 Andrew Burgess <andrew.burgess@embecosm.com>
7332
7333 * annotate.c (annotate_breakpoints_invalid): Make use of
7334 scoped_restore_terminal_state.
7335 (annotate_frames_invalid): Likewise.
7336
7337 2019-06-14 Tom Tromey <tromey@adacore.com>
7338
7339 * ada-lang.c (ada_evaluate_subexp) <case BINOP_ASSIGN>: Always
7340 allow assignment to an internalvar.
7341
7342 2019-06-14 Tom Tromey <tromey@adacore.com>
7343
7344 * ada-lex.l: Allow "_" in attribute names.
7345
7346 2019-06-14 Tom Tromey <tromey@adacore.com>
7347
7348 PR gdb/24653:
7349 * regcache.c (registers_changed): Don't call alloca.
7350 * top.c (execute_command): Don't call alloca.
7351
7352 2019-06-13 Pedro Alves <palves@redhat.com>
7353
7354 * cli/cli-setshow.c (cli/cli-setshow.c): New parameter
7355 'expression'. When parsing an expression, error out if there's
7356 junk after "unlimited".
7357 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
7358 (do_set_command): Adjust calls to is_unlimited_literal.
7359
7360 2019-06-13 Pedro Alves <palves@redhat.com>
7361
7362 * compile/compile.c (make_compile_options_def_group): Add braces
7363 around array_view initializer.
7364 * thread.c (make_thread_apply_all_options_def_group)
7365 (make_thread_apply_all_options_def_group): Likewise.
7366
7367 2019-06-13 Pedro Alves <palves@redhat.com>
7368
7369 * NEWS (New commands): Mention "maint test-options
7370 require-delimiter", "maint test-options unknown-is-error", "maint
7371 test-options unknown-is-operand" and "maint show
7372 test-options-completion-result".
7373 (New command options, command completion): New section.
7374 (Completion improvements): New section.
7375 Mention that you can abbreviate "unlimited".
7376
7377 2019-06-13 Pedro Alves <palves@redhat.com>
7378
7379 * cli/cli-utils.c (parse_flags, parse_flags_qcs): Delete.
7380 * cli/cli-utils.h (parse_flags, parse_flags_qcs): Delete.
7381 * unittests/cli-utils-selftests.c (test_parse_flags)
7382 (test_parse_flags_qcs): Delete.
7383 (test_cli_utils): Don't call deleted functions.
7384
7385 2019-06-13 Pedro Alves <palves@redhat.com>
7386
7387 * thread.c: Include "cli/cli-option.h".
7388 (tp_array_compar_ascending): Global.
7389 (tp_array_compar): Delete function.
7390 (tp_array_compar_ascending, tp_array_compar_descending): New
7391 functions.
7392 (ascending_option_def, qcs_flag_option_def)
7393 (thr_qcs_flags_option_defs)
7394 (make_thread_apply_all_options_def_group)
7395 (make_thread_apply_options_def_group): New.
7396 (thread_apply_all_command): Use gdb::option::process_options.
7397 (thread_apply_command_completer)
7398 (thread_apply_all_command_completer): New.
7399 (thread_apply_command): Use gdb::option::process_options.
7400 (_initialize_thread): Delete THREAD_APPLY_FLAGS_HELP, replace it
7401 with a new THREAD_APPLY_OPTION_HELP. Use gdb::option::build_help
7402 to generate help text of "thread apply". Adjust "taas"'s help.
7403 * tid-parse.c (tid_range_parser::in_thread_range): New method.
7404 * tid-parse.h (tid_range_parser::in_thread_range): New method.
7405
7406 2019-06-13 Pedro Alves <palves@redhat.com>
7407
7408 * thread.c (thread_apply_command): Check for invalid TID with
7409 isdigit instead of !isalpha.
7410
7411 2019-06-13 Pedro Alves <palves@redhat.com>
7412
7413 * cli/cli-utils.c (parse_flags_qcs): Use validate_flags_qcs.
7414 (validate_flags_qcs): New.
7415 * cli/cli-utils.h (struct qcs_flags): Change field types to int.
7416 (validate_flags_qcs): Declare.
7417 * stack.c (qcs_flag_option_def, fr_qcs_flags_option_defs): New.
7418 (make_frame_apply_options_def_group): New.
7419 (frame_apply_command_count): Process options with
7420 gdb::option::process_options.
7421 (frame_apply_completer): New.
7422 (frame_apply_level_completer, frame_apply_all_completer)
7423 (frame_apply_completer): New.
7424 (_initialize_stack): Update help of "frame apply", "frame apply
7425 level", "frame apply all" and "faas" to mention supported options
7426 and install command completers.
7427 * stack.h (frame_apply_all_completer): Declare.
7428 * thread.c: Include "stack.h".
7429 (tfaas_command): Add "--".
7430 (_initialize_thread): Update help "tfaas" to mention supported
7431 options and install command completer.
7432
7433 2019-06-13 Pedro Alves <palves@redhat.com>
7434
7435 * completer.c (complete_nested_command_line): New.
7436 (gdb_completion_word_break_characters_throw): Add assertion.
7437 * completer.h (complete_nested_command_line): Declare.
7438
7439 2019-06-13 Pedro Alves <palves@redhat.com>
7440
7441 * stack.c (parse_backtrace_qualifiers): New.
7442 (backtrace_command): Use it.
7443 (backtrace_command_completer): Complete on qualifiers.
7444
7445 2019-06-13 Pedro Alves <palves@redhat.com>
7446
7447 * frame.c: Include "cli/cli-option.h.
7448 (user_set_backtrace_options): New.
7449 (backtrace_past_main, backtrace_past_entry, backtrace_limit):
7450 Delete.
7451 (get_prev_frame): Adjust.
7452 (boolean_option_def, uinteger_option_def)
7453 (set_backtrace_option_defs): New.
7454 (_initialize_frame): Adjust and use
7455 gdb::option::add_setshow_cmds_for_options to install "set
7456 backtrace past-main" and "set backtrace past-entry".
7457 * frame.h: Include "cli/cli-option.h".
7458 (struct frame_print_options): Forward declare.
7459 (print_frame_arguments_all, print_frame_arguments_scalars)
7460 (print_frame_arguments_none): Declare.
7461 (print_entry_values): Delete declaration.
7462 (struct frame_print_options, user_frame_print_options): New.
7463 (struct set_backtrace_options): New.
7464 (set_backtrace_option_defs, user_set_backtrace_options): Declare.
7465 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
7466 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
7467 (mi_cmd_stack_list_variables): Pass down USER_FRAME_PRINT_OPTIONS.
7468 (list_args_or_locals): Add frame_print_options parameter.
7469 (mi_cmd_stack_info_frame): Pass down USER_FRAME_PRINT_OPTIONS.
7470 * python/py-framefilter.c (enumerate_args): Pass down
7471 USER_FRAME_PRINT_OPTIONS.
7472 * stack.c: Include "cli/cli-option.h".
7473 (print_frame_arguments_all, print_frame_arguments_scalars)
7474 (print_frame_arguments_none): Declare.
7475 (print_raw_frame_arguments, print_entry_values): Delete.
7476 (user_frame_print_options): New.
7477 (boolean_option_def, enum_option_def, frame_print_option_defs):
7478 New.
7479 (struct backtrace_cmd_options): New.
7480 (bt_flag_option_def): New.
7481 (backtrace_command_option_defs): New.
7482 (print_stack_frame): Pass down USER_FRAME_PRINT_OPTIONS.
7483 (print_frame_arg, read_frame_arg, print_frame_args)
7484 (print_frame_info, print_frame): Add frame_print_options parameter
7485 and use it.
7486 (info_frame_command_core): Pass down USER_FRAME_PRINT_OPTIONS.
7487 (backtrace_command_1): Add frame_print_options and
7488 backtrace_cmd_options parameters and use them.
7489 (make_backtrace_options_def_group): New.
7490 (backtrace_command): Process command options with
7491 gdb::option::process_options.
7492 (backtrace_command_completer): New.
7493 (_initialize_stack): Extend "backtrace"'s help to mention
7494 supported options. Install completer for "backtrace".
7495 Install some settings commands with add_setshow_cmds_for_options.
7496
7497 2019-06-13 Pedro Alves <palves@redhat.com>
7498
7499 * NEWS (Changed commands): Mention set/show print raw-frame-arguments,
7500 and that "set/show print raw frame-arguments" are now deprecated.
7501
7502 * cli/cli-decode.c (add_setshow_boolean_cmd): Now returns the
7503 command.
7504 * command.h (add_setshow_boolean_cmd): Return cmd_list_element *.
7505 * stack.c (_initialize_stack): Install "set/show print
7506 raw-frame-arguments", and deprecate "set/show print raw
7507 frame-arguments".
7508 * valprint.c (_initialize_valprint): Deprecate "set/show print
7509 raw".
7510
7511 2019-06-13 Pedro Alves <palves@redhat.com>
7512
7513 * compile/compile.c (struct compile_options): New.
7514 (compile_flag_option_def, compile_command_option_defs)
7515 (make_compile_options_def_group): New.
7516 (compile_file_command): Handle options with
7517 gdb::option::process_options.
7518 (compile_file_command_completer): New function.
7519 (compile_code_command): Handle options with
7520 gdb::option::process_options.
7521 (compile_code_command_completer): New function.
7522 (_initialize_compiler): Install completers for "compile code" and
7523 "compile file". Mention available options in "compile code" and
7524 "compile code"'s help.
7525 * completer.c (advance_to_completion_word): New, factored out from
7526 ...
7527 (advance_to_expression_complete_word_point): ... this.
7528 (advance_to_filename_complete_word_point): New.
7529 * completer.h (advance_to_filename_complete_word_point): New
7530 declaration.
7531
7532 2019-06-13 Pedro Alves <palves@redhat.com>
7533
7534 * compile/compile.c: Include "cli/cli-option.h".
7535 (compile_print_value): Scope data pointer is now a
7536 value_print_options pointer; adjust.
7537 (compile_print_command): Process options. Scope data pointer is
7538 now a value_print_options pointer; adjust.
7539 (_initialize_compile): Update "compile print"'s help to include
7540 supported options. Install a completer for "compile print".
7541 * cp-valprint.c (show_vtblprint, show_objectprint)
7542 (show_static_field_print): Delete.
7543 (_initialize_cp_valprint): Don't install "set print
7544 static-members", "set print vtbl", "set print object" here.
7545 * printcmd.c: Include "cli/cli-option.h" and
7546 "common/gdb_optional.h".
7547 (print_command_parse_format): Rework to fill in a
7548 value_print_options instead of a format_data.
7549 (print_value): Change parameter type from format_data pointer to
7550 value_print_options reference. Adjust.
7551 (print_command_1): Process options. Adjust to pass down a
7552 value_print_options.
7553 (print_command_completer): New.
7554 (_initialize_printcmd): Install print_command_completer as
7555 handle_brkchars completer for the "print" command. Update
7556 "print"'s help to include supported options.
7557 * valprint.c: Include "cli/cli-option.h".
7558 (show_vtblprint, show_objectprint, show_static_field_print): Moved
7559 here from cp-valprint.c.
7560 (boolean_option_def, uinteger_option_def)
7561 (value_print_option_defs, make_value_print_options_def_group):
7562 New. Use gdb::option::add_setshow_cmds_for_options to install
7563 "set print elements", "set print null-stop", "set print repeats",
7564 "set print pretty", "set print union", "set print array", "set
7565 print address", "set print symbol", "set print array-indexes".
7566 * valprint.h: Include <string> and "cli/cli-option.h".
7567 (make_value_print_options_def_group): Declare.
7568 (print_value): Change parameter type from format_data pointer to
7569 value_print_options reference.
7570 (print_command_completer): Declare.
7571
7572 2019-06-13 Pedro Alves <palves@redhat.com>
7573
7574 * Makefile.in (SUBDIR_CLI_SRCS): Add cli/cli-option.c.
7575 (COMMON_SFILES): Add maint-test-settings.c.
7576 * cli/cli-decode.c (boolean_enums): New global, factored out from
7577 ...
7578 (add_setshow_boolean_cmd): ... here.
7579 * cli/cli-decode.h (boolean_enums): Declare.
7580 * cli/cli-option.c: New file.
7581 * cli/cli-option.h: New file.
7582 * cli/cli-setshow.c (parse_cli_boolean_value(const char **)): New,
7583 factored out from ...
7584 (parse_cli_boolean_value(const char *)): ... this.
7585 (is_unlimited_literal): Change parameter type to pointer to
7586 pointer. Adjust and advance ARG pointer.
7587 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
7588 (parse_cli_var_enum): New, factored out from ...
7589 (do_set_command): ... this. Adjust.
7590 * cli/cli-setshow.h (parse_cli_boolean_value)
7591 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
7592 (parse_cli_var_enum): Declare.
7593 * cli/cli-utils.c: Include "cli/cli-option.h".
7594 (get_ulongest): New.
7595 * cli/cli-utils.h (get_ulongest): Declare.
7596 (check_for_argument): New overloads.
7597 * maint-test-options.c: New file.
7598
7599 2019-06-13 Pedro Alves <palves@redhat.com>
7600
7601 * cli/cli-utils.c (number_or_range_parser::get_number): Do not
7602 parse a range if "-" is at the end of the string.
7603
7604 2019-06-13 Pedro Alves <palves@redhat.com>
7605
7606 * cli/cli-setshow.c (parse_auto_binary_operation)
7607 (parse_cli_boolean_value): Don't allow "o".
7608
7609 2019-06-13 Pedro Alves <palves@redhat.com>
7610
7611 * Makefile.in (COMMON_SFILES): Add maint-test-settings.c.
7612 * NEWS: Mention maint test-settings KIND.
7613 * maint-test-settings.c: New file.
7614
7615 2019-06-13 Pedro Alves <palves@redhat.com>
7616
7617 * cli/cli-decode.c (add_setshow_cmd_full): Remove "show"
7618 completer.
7619 (add_setshow_string_cmd, add_setshow_string_noescape_cmd): Remove
7620 "set" completers.
7621
7622 2019-06-13 Pedro Alves <palves@redhat.com>
7623
7624 * cli/cli-setshow.c (do_set_command) <var_enum>: Detect junk
7625 after item.
7626
7627 2019-06-13 Pedro Alves <palves@redhat.com>
7628
7629 * cli/cli-setshow.c (is_unlimited_literal): Allow abbreviations.
7630
7631 2019-06-13 Pedro Alves <palves@redhat.com>
7632
7633 * ax-gdb.c (agent_command_1): Remove skip_spaces call.
7634 * breakpoint.c (watch_maybe_just_location): Remove skip_spaces
7635 call.
7636 * cli/cli-cmds.c (apropos_command): Remove skip_spaces call.
7637 * cli/cli-utils.c (extract_info_print_args): Remove skip_spaces
7638 calls.
7639 (check_for_argument): Skip spaces after argument.
7640
7641 2019-06-13 Pedro Alves <palves@redhat.com>
7642
7643 * thread.c (thread_apply_command): Adjust TID parsing.
7644 * tid-parse.c (tid_range_parser::finished): Ensure parsing end is
7645 detected before end of string.
7646 (tid_is_in_list): Error out if LIST is invalid.
7647
7648 2019-06-13 Pedro Alves <palves@redhat.com>
7649
7650 * completer.c (complete_line_internal_1): Rewind completion word
7651 point.
7652 (completion_tracker::advance_custom_word_point_by): Change
7653 parameter type to int.
7654 * completer.h (completion_tracker::advance_custom_word_point_by):
7655 Likewise.
7656
7657 2019-06-13 Pedro Alves <palves@redhat.com>
7658
7659 * completer.c (advance_to_completion_word): Handle delimiters.
7660
7661 2019-06-11 Bernhard Heckel <bernhard.heckel@intel.com>
7662
7663 * dwarf2read.c (add_partial_symbol): Skip nameless modules.
7664
7665 2019-06-11 Tom Tromey <tom@tromey.com>
7666
7667 * common/common-utils.c (xmalloc, xrealloc, xcalloc)
7668 (xmalloc_failed): Move to alloc.c.
7669 * alloc.c: New file.
7670 * Makefile.in (COMMON_SFILES): Add alloc.c.
7671
7672 2019-06-11 Tom Tromey <tom@tromey.com>
7673
7674 * nat/linux-waitpid.c: Don't include server.h.
7675 (linux_debug): Remove.
7676 (my_waitpid): Update.
7677
7678 2019-06-11 Tom Tromey <tromey@adacore.com>
7679
7680 * infcall.c (_initialize_infcall): Remove trailing newline from
7681 help.
7682 * user-regs.c (_initialize_user_regs): Remove trailing newline
7683 from help.
7684 * typeprint.c (_initialize_typeprint): Remove trailing newline
7685 from help.
7686 * reverse.c (_initialize_reverse): Remove trailing newlines from
7687 help.
7688 * tracepoint.c (_initialize_tracepoint): Remove trailing newlines
7689 from help.
7690 * language.c (add_set_language_command): Remove trailing newline
7691 from help.
7692 * infcmd.c (_initialize_infcmd): Remove trailing newlines from
7693 help.
7694 * disasm.c (_initialize_disasm): Remove trailing newline from
7695 help.
7696 * top.c (init_main): Remove trailing newline from help.
7697 * interps.c (_initialize_interpreter): Remove trailing newline
7698 from help.
7699 * btrace.c (_initialize_btrace): Remove trailing newlines from
7700 help.
7701 * breakpoint.c (_initialize_breakpoint): Remove trailing newline
7702 from help.
7703 * python/python.c (_initialize_python): Remove trailing newline
7704 from help.
7705 * spu-tdep.c (_initialize_spu_tdep): Remove trailing newlines from
7706 help.
7707 * tui/tui-win.c (_initialize_tui_win): Remove trailing newlines
7708 from help. Reformat some text.
7709 * tui/tui-stack.c (_initialize_tui_stack): Remove trailing newline
7710 from help.
7711 * tui/tui-layout.c (_initialize_tui_layout): Remove trailing
7712 newline from help.
7713
7714 2019-06-11 Tom Tromey <tromey@adacore.com>
7715
7716 * darwin-nat.c (darwin_decode_exception_message)
7717 (darwin_decode_message, darwin_nat_target::kill): Fix shadowing.
7718
7719 2019-06-10 Andrew Burgess <andrew.burgess@embecosm.com>
7720
7721 * valops.c (value_slice): Check for not allocated or not
7722 associated values.
7723
7724 2019-06-10 Tom de Vries <tdevries@suse.de>
7725
7726 PR gdb/24618
7727 * dwarf2read.c (struct mapped_index::symbol_name_slot_invalid): Make
7728 sure an empty slot (defined by a 32-bit zero pair) is recognized as
7729 invalid.
7730
7731 2019-06-10 Tom de Vries <tdevries@suse.de>
7732
7733 PR gdb/24611
7734 * linespec.c (linespec_lexer_lex_string): Remove incorrect
7735 "++(PARSER_STREAM (parser))" for "[abi"-prefixed colon. Add assert.
7736
7737 2019-06-10 Tom de Vries <tdevries@suse.de>
7738
7739 PR symtab/24545
7740 * symtab.c (struct demangled_name_entry): Add language field.
7741 (symbol_set_names): Revert "[gdb/symtab] Fix language of duplicate
7742 static minimal symbol". Set and use language field.
7743
7744 2019-06-10 Tom Tromey <tromey@adacore.com>
7745
7746 * ada-lang.c (_initialize_ada_language): Update help text.
7747
7748 2019-06-10 Tom Tromey <tromey@adacore.com>
7749
7750 * m32c-tdep.c (m32c_m16c_address_to_pointer): Don't end warning
7751 with a newline.
7752 * guile/guile.c (handle_boot_error): Don't end warning with a
7753 newline.
7754 * cli/cli-cmds.c (exit_status_set_internal_vars): Don't end
7755 warning with a newline.
7756 * s12z-tdep.c (s12z_skip_prologue): Don't end warning with a
7757 newline.
7758 (s12z_frame_cache): Likewise.
7759 * dwarf-index-cache.c (index_cache::store): Don't end warning with
7760 a newline.
7761 * solib-svr4.c (disable_probes_interface): Don't end warning with
7762 a newline.
7763 * nat/fork-inferior.c (fork_inferior): Don't end warning with a
7764 newline.
7765 * python/python.c (do_finish_initialization): Don't end warning
7766 with a newline.
7767
7768 2019-06-10 Tom Tromey <tom@tromey.com>
7769
7770 * python/py-breakpoint.c (gdbpy_breakpoint_created)
7771 (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
7772 gdbpy_enter.
7773
7774 2019-06-10 Tom Tromey <tromey@adacore.com>
7775
7776 * elfread.c (elf_read_minimal_symbols): Don't set the dbx objfile
7777 data.
7778 (elf_new_init): Don't call stabsread_new_init.
7779 * dbxread.c (coffstab_build_psymtabs): Set dbx objfile data.
7780 (elfstab_build_psymtabs): Likewise. Call stabsread_new_init.
7781 * coffread.c (coff_symfile_init): Don't set the dbx objfile data.
7782
7783 2019-06-10 Tom de Vries <tdevries@suse.de>
7784
7785 PR symtab/16264
7786 PR symtab/24517
7787 * dwarf2read.c (read_func_scope): Handle DW_AT_main_subprogram.
7788
7789 2019-06-06 Руслан Ижбулатов <lrn1986@gmail.com>
7790
7791 * source.c (find_and_open_source): Also rewrite relative file
7792 names.
7793
7794 2019-04-26 Amos Bird <amosbird@gmail.com>
7795
7796 * annotate.c (annotate_thread_exited): Add "thread-exited"
7797 annotation.
7798
7799 2019-06-06 Tom Tromey <tromey@adacore.com>
7800
7801 * maint.h (class scoped_command_stats): Use
7802 DISABLE_COPY_AND_ASSIGN.
7803 <print_time>: New method.
7804 * maint.c (scoped_command_stats, ~scoped_command_stats): Call
7805 print_time.
7806 (scoped_command_stats::print_time): New method.
7807
7808 2019-06-05 Andrew Burgess <andrew.burgess@embecosm.com>
7809
7810 * riscv-tdep.c (riscv_insn::decode): Gracefully ignore
7811 instructions of lengths 6 or 8 bytes.
7812
7813 2019-06-04 Pedro Alves <palves@redhat.com>
7814
7815 * common/gdb_unique_ptr.h (make_unique_xstrdup): New.
7816
7817 * ada-lang.c (catch_ada_completer): Use make_unique_xstrdup.
7818 * breakpoint.c (condition_completer): Likewise.
7819 * cli/cli-dump.c (scan_expression): Likewise.
7820 * common/filestuff.c (mkdir_recursive): Likewise.
7821 * common/gdb_tilde_expand.c (gdb_tilde_expand_up)
7822 * common/pathstuff.c (gdb_realpath, gdb_realpath_keepfile)
7823 (gdb_abspath): Likewise.
7824 * compile/compile-cplus-types.c
7825 (compile_cplus_instance::decl_name): Likewise.
7826 * completer.c (complete_explicit_location):
7827 (signal_completer, reg_or_group_completer_1): Likewise.
7828 * cp-support.c (cp_remove_params_if_any): Likewise.
7829 * fbsd-tdep.c (fbsd_core_vnode_path): Likewise.
7830 * guile/scm-safe-call.c (gdbscm_safe_eval_string): Likewise.
7831 * infcmd.c (strip_bg_char): Likewise.
7832 * linespec.c (copy_token_string): Likewise.
7833 * mi/mi-main.c (output_cores): Likewise.
7834 * psymtab.c (psymtab_search_name):
7835 * symfile.c (test_set_ext_lang_command): Likewise.
7836 * target.c (target_fileio_read_stralloc): Likewise.
7837 * tui/tui-regs.c (tui_reggroup_completer): Likewise.
7838 * value.c (complete_internalvar): Likewise.
7839
7840 2019-06-04 Christian Biesinger <cbiesinger@google.com>
7841
7842 Add objfile property to gdb.Type.
7843 * NEWS: Mention Python API addition.
7844 * python/py-type.c (typy_get_objfile): New method.
7845
7846 2019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7847
7848 * NEWS: Mention the new set|show style [title|highlight].
7849 Mention changes to "show style", "help" and "apropos".
7850
7851 2019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7852
7853 * cli/cli-decode.h (apropos_cmd): Add verbose argument.
7854 * cli/cli-decode.c (apropos_cmd): Likewise. Use print_doc_of_command
7855 instead of print_help_for_command.
7856 (print_doc_of_command): New function.
7857 (help_list): Add 'apropos -v word' suggestion.
7858 (print_help_for_command): Style the command name using title style.
7859 * cli/cli-cmds.c (apropos_command): Parse optional -v flag.
7860 (_initialize_cli_cmds): Describe -v in apropos_command help.
7861
7862 2019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7863
7864 * cli/cli-style.h (cli_style_option): Add name in constructor,
7865 add m_name class member, add constructor with intensity,
7866 add name class function.
7867 (cli_style_option::add_setshow_commands): Remove name argument.
7868 (highlight_style, title_style): New styles.
7869 * cli/cli-style.c (do_show): New function that shows a style
7870 characteristic styling the style name with itself.
7871 (set_style_name): New function.
7872 (STYLE_ADD_SETSHOW_COMMANDS): Remove NAME arguments.
7873 Update all callers according to the changes in cli/cli-style.h.
7874 * utils.h (fputs_highlighted): New function.
7875 * utils.c (fputs_highlighted): Likewise.
7876
7877 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7878
7879 * NEWS: Mention new pipe command and new convenience variables.
7880
7881 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7882
7883 * cli/cli-cmds.c (pipe_command): New function.
7884 (_initialize_cli_cmds): Call add_com for pipe_command.
7885 Define | as an alias for pipe.
7886 (exit_status_set_internal_vars): New function.
7887 (shell_escape): Call exit_status_set_internal_vars.
7888 cli/cli-decode.c (find_command_name_length): Recognize | as
7889 a single character command.
7890
7891 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7892
7893 * gdbcmd.h (execute_command_to_ui_file): New declaration.
7894 top.c (execute_command_to_ui_file): New function, mostly a copy
7895 of execute_command_to_string.
7896 (execute_command_to_string): Implement by calling
7897 execute_command_to_ui_file.
7898
7899 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7900
7901 * top.h (saved_command_line): Remove declaration.
7902 * top.c (previous_saved_command_line, previous_repeat_arguments):
7903 New variables.
7904 (saved_command_line): Make static, define together with other
7905 'repeat variables'.
7906 (dont_repeat): Clear repeat_arguments.
7907 (repeat_previous, get_saved_command_line, save_command_line):
7908 New functions.
7909 (gdb_init): Initialize saved_command_line
7910 and previous_saved_command_line.
7911 * main.c (captured_main_1): Remove saved_command_line initialization.
7912 * event-top.c (handle_line_of_input): Update to use
7913 the new 'repeat' related functions instead of direct access to
7914 saved_command_line.
7915 * command.h (repeat_previous, get_saved_command_line,
7916 save_command_line): New declarations.
7917 (dont_repeat): Add comment.
7918
7919 2019-05-30 Tom Tromey <tromey@adacore.com>
7920
7921 * gdbtypes.h (struct range_bounds) <flag_upper_bound_is_count>:
7922 Fix comment.
7923 (TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED): Rewrite comment.
7924
7925 2019-05-30 Jan Vrany <jan.vrany@fit.cvut.cz>
7926
7927 PR cli/24587
7928 * completer.c (complete): Initialize variable word.
7929
7930 2019-05-29 Sergio Durigan Junior <sergiodj@redhat.com>
7931
7932 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192
7933 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1715008
7934 * dwarf2read.c (dwarf_decode_macro_bytes): Move check to see if
7935 'body' is NULL to the outter 'if', protecting the '!is_define'
7936 situation as well.
7937
7938 2019-05-29 Tom Tromey <tromey@adacore.com>
7939
7940 * dwarf2read.c (partial_die_parent_scope): Call dwarf_tag_name.
7941 (dwarf_unknown): New function.
7942 (dwarf_tag_name, dwarf_attr_name, dwarf_form_name)
7943 (dwarf_type_encoding_name): Use dwarf_unknown.
7944
7945 2019-05-29 Tom Tromey <tromey@adacore.com>
7946
7947 PR c++/20020:
7948 * cp-valprint.c (cp_print_value_fields): Call
7949 cp_print_static_field inside "try".
7950
7951 2019-05-29 Tom Tromey <tromey@adacore.com>
7952
7953 * inflow.c (struct terminal_info): Add default operator=.
7954 * configure: Rebuild.
7955 * warning.m4 (AM_GDB_WARNINGS): Add -Wdeprecated-copy,
7956 -Wdeprecated-copy-dtor, -Wredundant-move.
7957
7958 2019-05-29 Tom Tromey <tromey@adacore.com>
7959
7960 * NEWS: Add entry.
7961 * infcmd.c (print_return_value_1): Handle finish_print
7962 option.
7963 (show_print_finish): New function.
7964 (_initialize_infcmd): Add "set/show print finish" commands.
7965 * valprint.c (user_print_options): Initialize new member.
7966 * valprint.h (struct value_print_options) <finish_print>: New
7967 member.
7968
7969 2019-05-28 Tom Tromey <tromey@adacore.com>
7970
7971 * ada-lang.c (ada_remove_Xbn_suffix)
7972 (find_old_style_renaming_symbol)
7973 (parse_old_style_renaming): Remove.
7974 (ada_find_renaming_symbol): Don't call
7975 find_old_style_renaming_symbol.
7976 (ada_is_renaming_symbol): Rename from
7977 ada_find_renaming_symbol. Remove "block" parameter. Return
7978 bool. Now static.
7979 (ada_read_var_value): Update and simplify.
7980 * ada-exp.y (write_var_or_type): Remove old code.
7981
7982 2019-05-28 Alan Hayward <alan.hayward@arm.com>
7983
7984 PR gdb/25010
7985 * event-top.c: Remove include comment.
7986 * inflow.c (class scoped_ignore_sigttou): Move from here...
7987 * inflow.h (class scoped_ignore_sigttou): ...to here.
7988 * ser-unix.c (hardwire_drain_output): Block SIGTTOU during drain.
7989 * top.c: Remove include comment.
7990
7991 2019-05-27 Tom Tromey <tom@tromey.com>
7992
7993 * NEWS: Fix typo.
7994
7995 2019-05-22 Tom Tromey <tromey@adacore.com>
7996
7997 * target.c (target_follow_exec): Constify parameter.
7998 * target-delegates.c: Rebuild.
7999 * remote.c (remote_target::follow_exec): Constify parameter.
8000 * infrun.c (follow_exec): Constify parameter.
8001 * target.h (struct target_ops) <follow_exec>: Constify parameter.
8002 (target_follow_exec): Likewise.
8003
8004 2019-05-22 Alan Hayward <alan.hayward@arm.com>
8005
8006 * aarch64-tdep.c (aarch64_execute_dwarf_cfa_vendor_op): Treat
8007 DW_CFA_AARCH64_negate_ra_state as nop on non pauth targets.
8008
8009 2019-05-22 Alan Hayward <alan.hayward@arm.com>
8010
8011 * NEWS: Add debugredirect and testsuite sections.
8012
8013 2019-05-22 Simon Cook <simon.cook@embecosm.com>
8014
8015 * riscv-tdep.c (riscv_gdbarch_init): Support determining flen from
8016 target descriptions using exclusively floating point register name
8017 aliases.
8018
8019 2019-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
8020
8021 PR gdb/18644:
8022 * f-lang.c (build_fortran_types): Handle the case where
8023 gdbarch_floatformat_for_type returns a nullptr.
8024
8025 2019-05-21 Tom de Vries <tdevries@suse.de>
8026
8027 PR cli/24587
8028 * cli/cli-cmds.c (complete_command): Fix use of unitialized variable.
8029
8030 2019-05-18 Andrew Burgess <andrew.burgess@embecosm.com>
8031
8032 PR gdb/18644:
8033 * f-lang.c (build_fortran_types): Use floatformats_ia64_quad for
8034 16-byte floats.
8035 * i386-tdep.c (i386_floatformat_for_type): Use
8036 floatformats_ia64_quad for the 16-byte floating point component
8037 within a fortran 32-byte complex number.
8038
8039 2019-05-18 Andrew Burgess <andrew.burgess@embecosm.com>
8040
8041 * dwarf2read.c (struct cu_partial_die_info): Add constructor,
8042 delete default constructor.
8043 (find_partial_die): Update to return const struct.
8044 (partial_die_parent_scope): Move variable declaration into scope
8045 of its use and change its type to auto.
8046 (guess_partial_die_structure_name): Likewise.
8047 (partial_die_info::fixup): Likewise.
8048
8049 2019-05-17 Tom Tromey <tromey@adacore.com>
8050
8051 * source.c (find_and_open_source): Remove cast.
8052
8053 2019-05-17 Tom Tromey <tromey@adacore.com>
8054
8055 * annotate.c (annotate_source): Make "filename" const.
8056 * annotate.h (annotate_source): Use const.
8057
8058 2019-05-17 Alan Hayward <alan.hayward@arm.com>
8059
8060 * disasm.c (set_disassembler_options): Send errors to stderr.
8061
8062 2019-05-17 Alan Hayward <alan.hayward@arm.com>
8063
8064 * cli/cli-interp.c (struct saved_output_files): Add saved entry.
8065 (cli_interp_base::set_logging): Check debug_redirect.
8066 * cli/cli-interp.h (set_logging): Add debug_redirect parameter.
8067 * cli/cli-logging.c (debug_redirect): Add static variable.
8068 (pop_output_files): Add default param.
8069 (handle_redirections): Print debug setting.
8070 (show_logging_command): Likewise.
8071 (_initialize_cli_logging): Add debugredirect command.
8072 * interps.c (current_interp_set_logging): Add debug_redirect
8073 parameter.
8074 * interps.h (set_logging): Add debug_redirect parameter.
8075 (current_interp_set_logging): Likewise.
8076 * mi/mi-common.h: Likewise.
8077 * mi/mi-interp.c (mi_interp::set_logging): Likewise.
8078
8079 2019-05-17 Alan Hayward <alan.hayward@arm.com>
8080 Tom Tromey <tromey@adacore.com>
8081
8082 * cli/cli-interp.c (cli_interp_base::set_logging): Create tee_file
8083 directly.
8084 * cli/cli-interp.h (make_logging_output): Remove declaration.
8085 * cli/cli-logging.c (make_logging_output): Remove function.
8086 * mi/mi-interp.c (mi_interp::set_logging): Create tee_file
8087 directly.
8088 * ui-file.c (tee_file::tee_file): Remove bools.
8089 (tee_file::~tee_file): Remove deletes.
8090 * ui-file.h (tee_file): Remove bools.
8091
8092 2019-01-28 Jan Vrany <jan.vrany@fit.cvut.cz>
8093
8094 * mi/mi-cmds.h (mi_cmd_complete): New function.
8095 * mi/mi-main.c (mi_cmd_complete): Likewise.
8096 * mi/mi-cmds.c: Define new MI command -complete.
8097 * NEWS: Mention new -complete command.
8098
8099 2019-01-24 Jan Vrany <jan.vrany@fit.cvut.cz>
8100
8101 * completer.h (complete): New function.
8102 * completer.c (complete): Likewise.
8103 * cli/cli-cmds.c: (complete_command): Update to use new complete()
8104 function defined in completer.h.
8105
8106 2019-05-17 Jan Vrany <jan.vrany@fit.cvut.cz>
8107
8108 * MAINTAINERS (Write After Approval): Add myself.
8109
8110 2019-05-17 Tom de Vries <tdevries@suse.de>
8111
8112 PR gdb/24094
8113 * dwarf2read.c (struct cu_partial_die_info): New struct.
8114 (find_partial_die): Return cu_partial_die_info.
8115 (partial_die_parent_scope, guess_partial_die_structure_name)
8116 (partial_die_info::fixup): Handle new return type of find_partial_die.
8117
8118 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
8119
8120 PR breakpoints/24541
8121 * stap-probe.c (stap_parse_register_operand): Make "regname" an
8122 "std::string", simplifying the algorithm.
8123
8124 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
8125
8126 * stap-probe.c (handle_stap_probe): Fix complaint formatting.
8127 (stap_static_probe_ops::get_probes): Likewise.
8128
8129 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
8130
8131 * stap-probe.c (stap_parse_register_operand): Make "if (*p->arg ==
8132 '-')" and "else if".
8133 (stap_parse_single_operand): Join checks for
8134 "gdbarch_stap_parse_special_token_p" and
8135 "gdbarch_stap_parse_special_token" in the same "if" statement.
8136 Invert check when verifying for operation on register
8137 displacement.
8138
8139 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
8140
8141 * stap-probe.c (stap_get_opcode): Update comment.
8142 (stap_get_expected_argument_type): Likewise.
8143 (handle_stap_probe): Likewise.
8144
8145 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
8146
8147 * i386-tdep.c (i386_stap_parse_special_token_triplet): Change
8148 return type to 'bool'. Adjust comment. Use 'bool' when
8149 appropriate.
8150 (i386_stap_parse_special_token_three_arg_disp): Likewise.
8151 * stap-probe.c (stap_parse_argument_1): Likewise.
8152 (stap_is_operator): Likewise.
8153 (stap_is_generic_prefix): Likewise.
8154 (stap_is_register_prefix): Likewise.
8155 (stap_is_register_indirection_prefix): Likewise.
8156 (stap_is_integer_prefix): Likewise.
8157 (stap_generic_check_suffix): Likewise.
8158 (stap_check_integer_suffix): Likewise.
8159 (stap_check_register_suffix): Likewise.
8160 (stap_check_register_indirection_suffix): Likewise.
8161 (stap_parse_register_operand): Likewise.
8162 (stap_parse_single_operand): Likewise.
8163 (stap_parse_argument_1): Likewise.
8164 (stap_probe::get_argument_count): Likewise.
8165 (stap_is_operator): Likewise.
8166
8167 2019-05-16 Tom Tromey <tromey@adacore.com>
8168
8169 * darwin-nat.c (thread_info_from_private_thread_info): Add struct
8170 keyword to foreach.
8171
8172 2019-05-15 Simon Marchi <simon.marchi@efficios.com>
8173
8174 * linux-thread-db.c (try_thread_db_load_1): Change return type
8175 to bool.
8176 (try_thread_db_load): Likewise.
8177 (try_thread_db_load_from_pdir_1): Likewise.
8178 (try_thread_db_load_from_pdir): Likewise.
8179 (try_thread_db_load_from_sdir): Likewise.
8180 (try_thread_db_load_from_dir): Likewise.
8181 (thread_db_load_search): Likewise.
8182 (has_libpthread): Likewise.
8183 (thread_db_load): Likewise.
8184
8185 2019-05-15 Sergio Durigan Junior <sergiodj@redhat.com>
8186
8187 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192
8188 * dwarf2read.c (parse_macro_definition): Check whether 'body' is
8189 NULL, and complain/return if that's the case.
8190
8191 2019-05-15 John Darrington <john@darrington.wattle.id.au>
8192
8193 * s12z-tdep.c (push_pull_get_stack_adjustment): New function.
8194 (advance, posn, abstract_read_memory): New functions.
8195 [struct mem_read_abstraction]: New struct.
8196 (s12z_frame_cache): Use opcodes API to interpret stack frame code.
8197
8198 2019-05-14 Tom Tromey <tromey@adacore.com>
8199
8200 * ada-lang.c (coerce_unspec_val_to_type): Only set address when
8201 value is not lval_memory.
8202
8203 2019-05-14 Tom Tromey <tromey@adacore.com>
8204
8205 * solib.c (info_sharedlibrary_command): Style the file name.
8206
8207 2019-05-14 Alan Hayward <alan.hayward@arm.com>
8208
8209 * aarch64-tdep.c (aarch64_vnh_type): Add half view.
8210 (aarch64_vnv_type): Likewise.
8211 * target-descriptions.c (make_gdb_type): Add TDESC_TYPE_IEEE_HALF.
8212 * common/tdesc.c: Likewise.
8213 * common/tdesc.h (enum tdesc_type_kind): Likewise.
8214 * features/aarch64-fpu.c (create_feature_aarch64_fpu): Regenerate.
8215 * features/aarch64-fpu.xml: Add ieee half view.
8216 * features/aarch64-sve.c (create_feature_aarch64_fpu): Likewise.
8217 * gdbtypes.c (gdbtypes_post_init): Add builtin_half
8218 * gdbtypes.h (struct builtin_type): Likewise.
8219 (struct objfile_type): Likewise.
8220
8221 2019-05-12 Paul Naert <paul.naert@polymtl.ca>
8222
8223 * language.c (language_sniff_from_mangled_name): Fix "langauge"
8224 typo.
8225 * location.h (string_to_event_location): Likewise.
8226
8227 2019-05-11 Joel Brobecker <brobecker@adacore.com>
8228
8229 GDB 8.3 released.
8230
8231 2019-05-10 Simon Marchi <simon.marchi@efficios.com>
8232
8233 * breakpoint.h (fix_multi_location_breakpoint_output_globally):
8234 New variable declaration.
8235 * breakpoint.c (fix_multi_location_breakpoint_output_globally):
8236 New variable.
8237 (print_one_breakpoint): Use ui_out::test_flags and new global
8238 variable to compute use_fixed_output.
8239 * mi/mi-main.h (mi_multi_location_breakpoint_output_fixed):
8240 Remove.
8241 * mi/mi-main.c (fix_multi_location_breakpoint_output): Remove.
8242 (mi_multi_location_breakpoint_output_fixed): Remove.
8243 (mi_cmd_fix_multi_location_breakpoint_output): Adjust to set the
8244 new variable.
8245 * mi/mi-out.c (mi_ui_out::mi_ui_out): Set
8246 fix_multi_location_breakpoint_output flag if version >= 3.
8247 * ui-out.h (enum ui_out_flag)
8248 <fix_multi_location_breakpoint_output>: New enumerator.
8249
8250 2019-05-10 Simon Marchi <simon.marchi@efficios.com>
8251
8252 * contrib/cc-with-tweaks.sh: Validate dwz's work.
8253
8254 2019-05-10 Tom Tromey <tromey@adacore.com>
8255
8256 * ada-lang.c (catch_ada_completer): New function.
8257 (_initialize_ada_language): Use it.
8258
8259 2019-05-10 Tom Tromey <tromey@adacore.com>
8260
8261 * thread.c (print_thread_info): Make "requested_threads" const.
8262 * gdbthread.h (print_thread_info): Make "requested_threads"
8263 const.
8264 * ada-tasks.c (print_ada_task_info): Make "taskno_str" const.
8265 * ada-lang.h (print_ada_task_info): Make "taskno_str" const.
8266
8267 2019-05-08 Tom Tromey <tom@tromey.com>
8268
8269 * gdbtypes.c (objfile_type_data): Change type.
8270 (objfile_type, _initialize_gdbtypes): Update.
8271
8272 2019-05-08 Tom Tromey <tom@tromey.com>
8273
8274 * dwarf2-frame.c (dwarf2_frame_objfile_data): Change type.
8275 (dwarf2_frame_find_fde, dwarf2_build_frame_info)
8276 (_initialize_dwarf2_frame): Update.
8277
8278 2019-05-08 Tom Tromey <tom@tromey.com>
8279
8280 * objc-lang.c (objc_objfile_data): Change type.
8281 (find_methods): Update.
8282 (_initialize_objc_lang): Remove.
8283
8284 2019-05-08 Tom Tromey <tom@tromey.com>
8285
8286 * stabsread.c (rs6000_builtin_type_data): Change type.
8287 (rs6000_builtin_type, _initialize_stabsread): Update.
8288
8289 2019-05-08 Tom Tromey <tom@tromey.com>
8290
8291 * mips-tdep.c (mips_pdr_data): Remove.
8292 (_initialize_mips_tdep): Update.
8293
8294 2019-05-08 Tom Tromey <tom@tromey.com>
8295
8296 * hppa-tdep.c (hppa_objfile_priv_data): Change type.
8297 (hppa_init_objfile_priv_data, read_unwind_info)
8298 (find_unwind_entry, _initialize_hppa_tdep): Update.
8299
8300 2019-05-08 Tom Tromey <tom@tromey.com>
8301
8302 * elfread.c (elf_objfile_gnu_ifunc_cache_data): Change type.
8303 (elf_gnu_ifunc_record_cache): Update. Don't allocate hash table
8304 on obstack.
8305 (elf_gnu_ifunc_resolve_by_cache, _initialize_elfread): Update.
8306
8307 2019-05-08 Tom Tromey <tom@tromey.com>
8308
8309 * mdebugread.c (basic_type_data): Change type.
8310 (basic_type, _initialize_mdebugread): Update.
8311
8312 2019-05-08 Tom Tromey <tom@tromey.com>
8313
8314 * common/gdb_unique_ptr.h (struct noop_deleter): New.
8315
8316 2019-05-08 Tom Tromey <tom@tromey.com>
8317
8318 * nto-tdep.c (nto_inferior_data_reg): Change type.
8319 (nto_inferior_data): Update.
8320 (nto_inferior_data_cleanup, nto_new_inferior_data)
8321 (_initialize_nto_tdep): Remove.
8322 * nto-tdep.h (struct nto_inferior_data): Add initializers.
8323
8324 2019-05-08 Tom Tromey <tom@tromey.com>
8325
8326 * ada-lang.c (struct ada_inferior_data): Add initializers.
8327 (ada_inferior_data): Change type.
8328 (ada_inferior_data_cleanup): Remove.
8329 (get_ada_inferior_data, ada_inferior_exit)
8330 (struct ada_pspace_data): Add initializers, destructor.
8331 (ada_pspace_data_handle): Change type.
8332 (get_ada_pspace_data): Update.
8333 (ada_pspace_data_cleanup): Remove.
8334
8335 2019-05-08 Tom Tromey <tom@tromey.com>
8336
8337 * coffread.c (struct coff_symfile_info): Add initializers.
8338 (coff_objfile_data_key): Move lower. Change type.
8339 (coff_symfile_init, coff_symfile_read, _initialize_coffread):
8340 Update.
8341 (coff_free_info): Remove.
8342
8343 2019-05-08 Tom Tromey <tom@tromey.com>
8344
8345 * fbsd-tdep.c (struct fbsd_pspace_data): Add initializers.
8346 (fbsd_pspace_data_handle): Move lower. Change type.
8347 (get_fbsd_pspace_data): Update.
8348 (fbsd_pspace_data_cleanup): Remove.
8349 (_initialize_fbsd_tdep): Update.
8350
8351 2019-05-08 Tom Tromey <tom@tromey.com>
8352
8353 * ada-tasks.c (ada_tasks_pspace_data_handle): Change type.
8354 (get_ada_tasks_pspace_data): Update.
8355 (ada_tasks_pspace_data_cleanup): Remove.
8356 (_initialize_tasks): Update.
8357 (ada_tasks_inferior_data_handle): Change type.
8358 (get_ada_tasks_inferior_data): Update.
8359 (ada_tasks_inferior_data_cleanup): Remove.
8360 (struct ada_tasks_pspace_data): Add initializers.
8361
8362 2019-05-08 Tom Tromey <tom@tromey.com>
8363
8364 * symfile.h (struct sym_probe_fns) <sym_get_probes>: Change type.
8365 * symfile-debug.c (debug_sym_get_probes): Change type.
8366 * stap-probe.c (handle_stap_probe):
8367 (stap_static_probe_ops::get_probes): Change type.
8368 * probe.h (class static_probe_ops) <get_probes>: Change type.
8369 * probe.c (class any_static_probe_ops) <get_probes>: Change type.
8370 (parse_probes_in_pspace): Update.
8371 (find_probes_in_objfile, find_probe_by_pc, collect_probes):
8372 Update.
8373 (any_static_probe_ops::get_probes): Change type.
8374 * elfread.c (elfread_data): New typedef.
8375 (probe_key): Change type.
8376 (elf_get_probes): Likewise. Update.
8377 (probe_key_free): Remove.
8378 (_initialize_elfread): Update.
8379 * dtrace-probe.c (class dtrace_static_probe_ops) <get_probes>:
8380 Change type.
8381 (dtrace_process_dof_probe, dtrace_process_dof)
8382 (dtrace_static_probe_ops::get_probe): Change type.
8383
8384 2019-05-08 Tom Tromey <tom@tromey.com>
8385
8386 * xcoffread.c (struct xcoff_symfile_info): Rename from
8387 coff_symfile_info. Add initializers.
8388 (xcoff_objfile_data_key): Move lower. Change type.
8389 (XCOFF_DATA): Rewrite.
8390 (xcoff_free_info): Remove.
8391 (xcoff_symfile_init, _initialize_xcoffread, read_xcoff_symtab)
8392 (read_symbol, read_symbol_lineno, find_linenos, init_stringtab)
8393 (xcoff_initial_scan): Update.
8394
8395 2019-05-08 Tom Tromey <tom@tromey.com>
8396
8397 * solib-svr4.c (struct svr4_info): Add initializers and
8398 destructor.
8399 <probes_table>: Now an htab_up.
8400 (solib_svr4_pspace_data): Change type.
8401 (free_probes_table): Simplify.
8402 (~svr4_info): Rename from svr4_pspace_data_cleanup.
8403 (get_svr4_info, probes_table_htab_remove_objfile_probes)
8404 (probes_table_remove_objfile_probes, register_solib_event_probe)
8405 (solib_event_probe_at, svr4_update_solib_event_breakpoint)
8406 (_initialize_svr4_solib): Update.
8407
8408 2019-05-08 Tom Tromey <tom@tromey.com>
8409
8410 * remote.c (remote_pspace_data): Change type.
8411 (remote_pspace_data_cleanup): Remove.
8412 (get_remote_exec_file, set_pspace_remote_exec_file)
8413 (_initialize_remote): Update.
8414
8415 2019-05-08 Tom Tromey <tom@tromey.com>
8416
8417 * breakpoint.c (breakpoint_objfile_key): Change type.
8418 (get_breakpoint_objfile_data): Update.
8419 (free_breakpoint_objfile_data): Remove.
8420 (_initialize_breakpoint): Update.
8421
8422 2019-05-08 Tom Tromey <tom@tromey.com>
8423
8424 * linux-tdep.c (struct linux_info): Add initializers.
8425 (linux_inferior_data): Move. Change type.
8426 (invalidate_linux_cache_inf): Update.
8427 (linux_inferior_data_cleanup): Remove.
8428 (get_linux_inferior_data, _initialize_linux_tdep): Update.
8429
8430 2019-05-08 Tom Tromey <tom@tromey.com>
8431
8432 * auxv.c (auxv_inferior_data): Move. Change type.
8433 (auxv_inferior_data_cleanup): Remove.
8434 (invalidate_auxv_cache_inf): Rewrite.
8435 (get_auxv_inferior_data, _initialize_auxv): Update.
8436
8437 2019-05-08 Tom Tromey <tom@tromey.com>
8438
8439 * symfile-debug.c (struct debug_sym_fns_data): Add initializers.
8440 (symfile_debug_objfile_data_key): Change type.
8441 (symfile_debug_installed, debug_qf_has_symbols)
8442 (debug_qf_find_last_source_symtab)
8443 (debug_qf_forget_cached_source_info)
8444 (debug_qf_map_symtabs_matching_filename, debug_qf_lookup_symbol)
8445 (debug_qf_print_stats, debug_qf_dump)
8446 (debug_qf_expand_symtabs_for_function)
8447 (debug_qf_expand_all_symtabs)
8448 (debug_qf_expand_symtabs_with_fullname)
8449 (debug_qf_map_matching_symbols)
8450 (debug_qf_expand_symtabs_matching)
8451 (debug_qf_find_pc_sect_compunit_symtab)
8452 (debug_qf_map_symbol_filenames)
8453 (debug_qf_find_compunit_symtab_by_address, debug_sym_get_probes)
8454 (debug_sym_new_init, debug_sym_init, debug_sym_read)
8455 (debug_sym_read_psymbols, debug_sym_finish, debug_sym_offsets)
8456 (debug_sym_read_linetable, debug_sym_relocate): Update.
8457 (symfile_debug_free_objfile): Remove.
8458 (install_symfile_debug_logging, _initialize_symfile_debug):
8459 Update.
8460
8461 2019-05-08 Tom Tromey <tom@tromey.com>
8462
8463 * dwarf2read.h (struct dwarf2_per_objfile): Don't inherit from
8464 allocate_on_obstack.
8465 * dwarf2read.c (dwarf2_objfile_data_key): Change type.
8466 (get_dwarf2_per_objfile): Update.
8467 (set_dwarf2_per_objfile): Remove.
8468 (dwarf2_has_info, dwarf2_get_section_info): Update.
8469 (dwarf2_free_objfile): Remove.
8470 (_initialize_dwarf2_read): Update.
8471
8472 2019-05-08 Tom Tromey <tom@tromey.com>
8473
8474 * auto-load.c (struct auto_load_pspace_info): Add destructor and
8475 initializers.
8476 <unsupported_script_warning_printed,
8477 script_not_found_warning_printed>: Now bool.
8478 (auto_load_pspace_data): Change type.
8479 (~auto_load_pspace_info): Rename from
8480 auto_load_pspace_data_cleanup.
8481 (get_auto_load_pspace_data, init_loaded_scripts_info)
8482 (clear_section_scripts, maybe_print_unsupported_script_warning)
8483 (maybe_print_script_not_found_warning, _initialize_auto_load):
8484 Update.
8485
8486 2019-05-08 Tom Tromey <tom@tromey.com>
8487
8488 * objfiles.c (objfile_pspace_info): Add destructor and
8489 initializers.
8490 (objfiles_pspace_data): Change type.
8491 (~objfile_pspace_info): Rename from objfiles_pspace_data_cleanup.
8492 (get_objfile_pspace_data): Update.
8493 (objfiles_bfd_data): Change type.
8494 (get_objfile_bfd_data): Update.
8495 (objfile_bfd_data_free, _initialize_objfiles): Remove.
8496
8497 2019-05-08 Tom Tromey <tom@tromey.com>
8498
8499 * break-catch-syscall.c (catch_syscall_inferior_data): Move.
8500 Change type.
8501 (get_catch_syscall_inferior_data): Update.
8502 (catch_syscall_inferior_data_cleanup): Remove.
8503 (_initialize_break_catch_syscall): Update.
8504
8505 2019-05-08 Tom Tromey <tom@tromey.com>
8506
8507 * inflow.c (struct terminal_info): Add destructor and
8508 initializers.
8509 (inflow_inferior_data): Change type.
8510 (~terminal_info): Rename from inflow_inferior_data_cleanup.
8511 (get_inflow_inferior_data, inflow_inferior_exit)
8512 (swap_terminal_info, _initialize_inflow): Update.
8513
8514 2019-05-08 Tom Tromey <tom@tromey.com>
8515
8516 * target-dcache.c (target_dcache_cleanup): Remove.
8517 (target_dcache_aspace_key): Change type.
8518 (target_dcache_init_p, target_dcache_invalidate)
8519 (target_dcache_get, target_dcache_get_or_init)
8520 (_initialize_target_dcache): Update.
8521 * dcache.h (struct dcache_deleter): New.
8522
8523 2019-05-08 Tom Tromey <tom@tromey.com>
8524
8525 * symtab.c (struct symbol_cache): Add destructor and
8526 initializers.
8527 (symbol_cache_key): Move. Change type.
8528 (make_symbol_cache, free_symbol_cache): Remove.
8529 (get_symbol_cache): Update.
8530 (symbol_cache_cleanup): Remove.
8531 (ALL_PSPACES, symbol_cache_flush)
8532 (maintenance_print_symbol_cache)
8533 (maintenance_print_symbol_cache_statistics, _initialize_symtab):
8534 Update.
8535
8536 2019-05-08 Tom Tromey <tom@tromey.com>
8537
8538 * symtab.c (struct main_info): Add destructor and initializers.
8539 (main_progspace_key): Move. Change type.
8540 (get_main_info): Update.
8541 (main_info_cleanup): Remove.
8542 (_initialize_symtab): Update.
8543
8544 2019-05-08 Tom Tromey <tom@tromey.com>
8545
8546 * registry.h (DECLARE_REGISTRY): Define the _key class.
8547
8548 2019-05-08 Andrew Burgess <andrew.burgess@embecosm.com>
8549
8550 * NEWS: Merge two 'New commands' sections.
8551
8552 2019-05-08 Joel Brobecker <brobecker@adacore.com>
8553
8554 * ada-valprint.c (ada_val_print_gnat_array): Remove language
8555 parameter and use Ada language definition instead.
8556 (ada_val_print_ptr): Remove unused language parameter.
8557 (ada_val_print_num): Remove language parameter and use Ada language
8558 definition instead.
8559 (ada_val_print_enum, ada_val_print_flt): Remove unused language
8560 parameter.
8561 (ada_val_print_struct_union, ada_val_print_ref): Remove language
8562 parameter and use Ada language definition instead.
8563 (ada_val_print_1): Update all ada_val_print_xxx calls.
8564 Remove language parameter.
8565 (ada_val_print): Update ada_val_print_1 call.
8566
8567 2019-05-08 Tom Tromey <tromey@adacore.com>
8568
8569 * remote.c (remote_hw_watchpoint_limit)
8570 (remote_hw_watchpoint_length_limit, remote_hw_breakpoint_limit):
8571 Now static.
8572
8573 2019-05-08 Tom Tromey <tromey@adacore.com>
8574
8575 * maint.c (_initialize_maint_cmds): Move initialization code to
8576 remote.c.
8577 (watchdog, show_watchdog): Move to remote.c.
8578 * remote.c (watchdog, show_watchdog): Move from maint.c. Make
8579 "watchdog" static.
8580 (_initialize_remote): Move initialization code from maint.c.
8581 * defs.h (watchdog): Don't declare.
8582
8583 2019-05-08 Tom Tromey <tromey@adacore.com>
8584
8585 * tui/tui-interp.c: Include main.h.
8586 * interps.c: Include main.h.
8587 * main.h (interpreter_p): Declare.
8588 * defs.h (interpreter_p): Don't declare.
8589
8590 2019-05-08 Tom Tromey <tromey@adacore.com>
8591
8592 * dwarf2loc.c: Include dwarf2read.h.
8593 * defs.h (read_unsigned_leb128): Don't declare.
8594 * dwarf2read.h (read_unsigned_leb128): Declare.
8595
8596 2019-05-08 Tom Tromey <tromey@adacore.com>
8597
8598 * utils.c (fputs_maybe_filtered): Call can_emit_style_escape as a
8599 method.
8600
8601 2019-05-08 Tom Tromey <tromey@adacore.com>
8602
8603 * utils.c (fputs_maybe_filtered): Reset style after paging, even
8604 when no wrap column is set.
8605
8606 2019-05-08 Tom Tromey <tromey@adacore.com>
8607
8608 * c-lang.c (c_get_string): Handle non-C-style arrays.
8609
8610 2019-05-08 Tom Tromey <tromey@adacore.com>
8611
8612 * typeprint.c (print_offset_data::update): Print the bit offset,
8613 not the number of bits remaining.
8614
8615 2019-05-08 Tom Tromey <tromey@adacore.com>
8616
8617 * typeprint.c (print_offset_data::maybe_print_hole): Add extra
8618 padding at end of comment.
8619
8620 2019-05-08 Tom Tromey <tromey@adacore.com>
8621
8622 * dwarf2loc.c (dwarf2_evaluate_property) <PROP_ADDR_OFFSET>:
8623 Compare main types.
8624
8625 2019-05-06 Tom Tromey <tom@tromey.com>
8626
8627 * common/scoped_mmap.c: Include common-defs.h.
8628 * common/scoped_mmap.h: Don't include config.h.
8629
8630 2019-05-04 Tom Tromey <tom@tromey.com>
8631
8632 * aarch64-tdep.c (stack_item_t): Remove typedef and DEF_VEC.
8633 (struct aarch64_call_info): Add initializers.
8634 <si>: Now a std::vector.
8635 (pass_on_stack, aarch64_push_dummy_call): Update.
8636
8637 2019-05-04 Simon Marchi <simon.marchi@efficios.com>
8638 Tom Tromey <tom@tromey.com>
8639
8640 * ppc-linux-nat.c (thread_points_p): Remove typedef and DEF_VEC.
8641 (ppc_threads): Now a std::vector. Now static.
8642 (hwdebug_find_thread_points_by_tid)
8643 (ppc_linux_nat_target::low_new_thread, ppc_linux_thread_exit):
8644 Update.
8645
8646 2019-05-04 Tom Tromey <tom@tromey.com>
8647
8648 * arc-tdep.c (arc_tdesc_init): Return bool.
8649
8650 2019-05-04 Tom Tromey <tom@tromey.com>
8651
8652 * arm-linux-nat.c (arm_linux_nat_target::can_use_hw_breakpoint):
8653 Use gdb_assert_not_reached.
8654
8655 2019-05-04 Tom Tromey <tom@tromey.com>
8656
8657 * compile/compile-cplus-types.c (compile_cplus_convert_enum): Use
8658 "false".
8659
8660 2019-05-04 Tom Tromey <tom@tromey.com>
8661
8662 * arc-tdep.c (arc_tdesc_init): Use bool.
8663
8664 2019-05-04 Tom Tromey <tom@tromey.com>
8665
8666 * stack.c (select_frame_for_mi): Use "false", not "FALSE".
8667
8668 2019-05-04 Tom Tromey <tom@tromey.com>
8669
8670 * cli/cli-cmds.c (valid_command_p): Return bool.
8671
8672 2019-05-04 Tom Tromey <tom@tromey.com>
8673
8674 * cli/cli-decode.c (valid_user_defined_cmd_name_p): Return bool.
8675 * command.h (valid_user_defined_cmd_name_p): Channge return type.
8676
8677 2019-05-04 Raul Tambre <raul@tambre.ee>
8678
8679 * python/lib/gdb/prompt.py (_ExtendedPrompt)
8680 <before_prompt_hook, get_show_string>: Fix incorrect use of 'is'
8681 operator for comparison.
8682
8683 2019-05-04 Tom Tromey <tom@tromey.com>
8684
8685 * psymtab.c (psymbol_name_matches, match_partial_symbol)
8686 (lookup_partial_symbol, print_partial_symbols)
8687 (recursively_search_psymtabs, sort_pst_symbols, psymbol_hash)
8688 (psymbol_compare): Update.
8689 (add_psymbol_to_bcache): Clear the entire psymbol.
8690 (maintenance_check_psymtabs): Update.
8691 * psympriv.h (struct partial_symbol): Don't derive from
8692 general_symbol_info.
8693 <obj_section, unrelocated_address, address,
8694 set_unrelocated_address>: Update.
8695 <ginfo>: New member.
8696 * dwarf-index-write.c (write_psymbols, debug_names::insert)
8697 (debug_names::write_psymbols): Update.
8698
8699 2019-05-04 Tom de Vries <tdevries@suse.de>
8700
8701 * contrib/cc-with-tweaks.sh: Support -n arg.
8702
8703 2019-05-04 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8704
8705 * corelow.c (core_target::detach): Ensure frame cache and
8706 register caches are cleared.
8707 inferior.c (exit_inferior_1): Likewise.
8708
8709 2019-05-03 Sandra Loosemore <sandra@codesourcery.com>
8710 Tom Tromey <tom@tromey.com>
8711
8712 * dictionary.c (collate_pending_symbols_by_language): Remove
8713 "struct" from foreach.
8714 * symtab.c (lookup_global_symbol_from_objfile)
8715 (lookup_symbol_in_objfile_from_linkage_name): Remove "struct" from
8716 foreach.
8717 * ser-tcp.c (net_open): Remove "struct" from foreach.
8718 * objfiles.c (objfile_relocate, objfile_rebase)
8719 (objfile_has_symbols): Remove "struct" from foreach.
8720 * minsyms.c (lookup_minimal_symbol_by_pc_section): Remove "struct"
8721 from foreach.
8722 * dwarf2read.c (handle_struct_member_die): Remove "struct" from
8723 foreach.
8724 * darwin-nat.c (thread_info_from_private_thread_info): Remove
8725 "struct" from foreach.
8726 * ada-lang.c (create_excep_cond_exprs)
8727 (ada_exception_catchpoint_cond_string): Remove "struct" from
8728 foreach.
8729
8730 2019-05-03 Tom Tromey <tromey@adacore.com>
8731
8732 * ada-exp.y (convert_char_literal): Check suffix of each
8733 enumerator.
8734
8735 2019-05-03 Dilyan Palauzov <dilyan.palauzov@aegee.org>
8736
8737 PR ada/21406:
8738 * ada-exp.y (yywrap): Don't define.
8739 * ada-lex.l (%option): Add noyywrap
8740 (yywrap): Remove.
8741
8742 2019-05-03 Eli Zaretskii <eliz@gnu.org>
8743
8744 * common/common-defs.h [__MINGW32__ || __CYGWIN__]: Define
8745 _WIN32_WINNT to the XP level, unless already defined to a higher
8746 level.
8747
8748 * unittests/parse-connection-spec-selftests.c:
8749 * ser-tcp.c:
8750 * common/netstuff.c [USE_WIN32API]: Remove the _WIN32_WINNT
8751 override.
8752
8753 * symfile.c (find_separate_debug_file): Remove colon from the
8754 drive spec of DOS/Windows file names of the target, so that the
8755 file name produced from DEBUGDIR and the target's directory will
8756 be valid on DOS/Windows systems.
8757
8758 2019-05-02 Andrew Burgess <andrew.burgess@embecosm.com>
8759
8760 * rust-lang.c (val_print_struct): Handle printing structures
8761 containing strings.
8762
8763 2019-05-02 Tom Tromey <tromey@adacore.com>
8764
8765 * valarith.c (_initialize_valarith): Remove.
8766
8767 2019-05-01 Tom Tromey <tromey@adacore.com>
8768
8769 * ada-lang.c (ada_value_primitive_field): Treat more fields as
8770 bitfields.
8771
8772 2019-05-01 Tom Tromey <tromey@adacore.com>
8773
8774 * ada-lang.c (ada_value_assign): Correctly compute starting offset
8775 for big-endian copies.
8776
8777 2019-04-30 Ali Tamur <tamur@google.com>
8778 * gdb/dwarf2read.c (read_3_bytes): New declaration.
8779 (read_attribute_value): Added DW_FORM_strx1-4 cases.
8780 (read_3_bytes): New function.
8781
8782 2019-04-30 Joel Brobecker <brobecker@adacore.com>
8783
8784 * windows-nat.c (main_thread_id): Delete.
8785 (handle_output_debug_string): Replace main_thread_id by
8786 current_event.dwThreadId.
8787 (fake_create_process): Likewise.
8788 (get_windows_debug_event) <CREATE_PROCESS_DEBUG_EVENT>:
8789 Do not set main_thread_id.
8790 <LOAD_DLL_DEBUG_EVENT>: Replace main_thread_id by
8791 current_event.dwThreadId.
8792 <UNLOAD_DLL_DEBUG_EVENT>: Likewise.
8793
8794 2019-04-30 Joel Brobecker <brobecker@adacore.com>
8795
8796 * windows-nat.c (get_windows_debug_event) <EXIT_PROCESS_DEBUG_EVENT>:
8797 Use current_event.dwThreadId instead of main_thread_id.
8798
8799 2019-04-30 Tom Tromey <tromey@adacore.com>
8800
8801 * ada-lang.c (ada_lookup_simple_minsyms): New function.
8802 (create_excep_cond_exprs): Iterate over program spaces.
8803 (ada_exception_catchpoint_cond_string): Examine all minimal
8804 symbols for exception types.
8805
8806 2019-04-30 Tom Tromey <tromey@adacore.com>
8807
8808 PR c++/24470:
8809 * dwarf2read.c (process_structure_scope): Handle case where type
8810 has template parameters but no symbol was created.
8811
8812 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8813 Chris January <chris.january@arm.com>
8814
8815 * f-typeprint.c (f_type_print_base): Print 'allocatable' type
8816 qualifier.
8817 * gdbtypes.h (TYPE_IS_ALLOCATABLE): Define.
8818
8819 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8820
8821 * f-typeprint.c (f_print_type): Update rules for printing
8822 whitespace.
8823 (f_type_print_varspec_suffix): Likewise.
8824
8825 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8826 Chris January <chris.january@arm.com>
8827
8828 * f-typeprint.c (f_type_print_varspec_suffix): Handle printing
8829 function arguments.
8830
8831 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8832
8833 * f-lang.c (build_fortran_types): Change name of void type to
8834 lower case.
8835 * f-typeprint.c (f_type_print_base): Print the name of the void
8836 type, rather than a fixed string.
8837 * f-valprint.c (f_decorations): Use lower case void string.
8838
8839 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8840 Chris January <chris.january@arm.com>
8841
8842 * dwarf2read.c (dwarf2_init_complex_target_type): Use different
8843 types for Fortran.
8844
8845 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8846 Chris January <chris.january@arm.com>
8847 David Lecomber <david.lecomber@arm.com>
8848
8849 * f-exp.y (BINOP_INTRINSIC): New token.
8850 (exp): New parser rule handling BINOP_INTRINSIC.
8851 (f77_keywords): Add new builtin procedures.
8852 * f-lang.c (evaluate_subexp_f): Handle BINOP_MOD, UNOP_FORTRAN_CEILING,
8853 UNOP_FORTRAN_FLOOR, BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
8854 (operator_length_f): Handle UNOP_FORTRAN_CEILING,
8855 UNOP_FORTRAN_FLOOR, BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
8856 (print_unop_subexp_f): New function.
8857 (print_binop_subexp_f): New function.
8858 (print_subexp_f): Handle UNOP_FORTRAN_CEILING, UNOP_FORTRAN_FLOOR,
8859 BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
8860 (dump_subexp_body_f): Likewise.
8861 (operator_check_f): Likewise.
8862 * fortran-operator.def: Add UNOP_FORTRAN_CEILING, UNOP_FORTRAN_FLOOR,
8863 BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX
8864
8865 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8866
8867 * gdb/expprint.c (dump_subexp_body_standard): Remove use of
8868 UNOP_KIND.
8869 * gdb/expression.h (exp_opcode): Include 'fortran-operator.def'.
8870 * gdb/f-exp.y (exp): Rename UNOP_KIND to UNOP_FORTRAN_KIND.
8871 * gdb/f-lang.c (evaluate_subexp_f): Likewise.
8872 (operator_length_f): New fuction.
8873 (print_subexp_f): New function.
8874 (op_name_f): New function.
8875 (dump_subexp_body_f): New function.
8876 (operator_check_f): New function.
8877 (exp_descriptor_f): Replace standard expression handling functions
8878 with new functions.
8879 * gdb/fortran-operator.def: New file.
8880 * gdb/parse.c (operator_length_standard): Remove use of UNOP_KIND.
8881 * gdb/std-operator.def: Remove UNOP_KIND.
8882
8883 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8884
8885 * std-operator.def: Remove unbalanced, stray double quote
8886 character.
8887
8888 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8889 Chris January <chris.january@arm.com>
8890 Daniel Everett <daniel.everett@arm.com>
8891 Nick Forrington <nick.forrington@arm.com>
8892 Richard Bunt <richard.bunt@arm.com>
8893
8894 * cp-valprint.c (cp_print_value_fields): Allow an additional level
8895 of depth when printing anonymous structs or unions.
8896 * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer):
8897 Don't print either the top-level value, or the children if the
8898 max-depth is exceeded.
8899 (ppscm_print_children): When printing the key of a map, allow one
8900 extra level of depth.
8901 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Don't
8902 print either the top-level value, or the children if the max-depth
8903 is exceeded.
8904 (print_children): When printing the key of a map, allow one extra
8905 level of depth.
8906 * python/py-value.c (valpy_format_string): Add max_depth keyword.
8907 * valprint.c: (PRINT_MAX_DEPTH_DEFAULT): Define.
8908 (user_print_options): Initialise max_depth field.
8909 (val_print_scalar_or_string_type_p): New function.
8910 (val_print): Check to see if the max depth has been reached.
8911 (val_print_check_max_depth): Define new function.
8912 (show_print_max_depth): New function.
8913 (_initialize_valprint): Add 'print max-depth' option.
8914 * valprint.h (struct value_print_options) <max_depth>: New field.
8915 (val_print_check_max_depth): Declare new function.
8916 * NEWS: Document new feature.
8917
8918 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8919
8920 * ada-lang.c (ada_language_defn): Initialise new field.
8921 * c-lang.c (c_is_string_type_p): New function.
8922 (c_language_defn): Initialise new field.
8923 (cplus_language_defn): Initialise new field.
8924 (asm_language_defn): Initialise new field.
8925 (minimal_language_defn): Initialise new field.
8926 * c-lang.h (c_is_string_type_p): Declare new function.
8927 * d-lang.c (d_language_defn): Initialise new field.
8928 * f-lang.c (f_is_string_type_p): New function.
8929 (f_language_defn): Initialise new field.
8930 * go-lang.c (go_is_string_type_p): New function.
8931 (go_language_defn): Initialise new field.
8932 * language.c (default_is_string_type_p): New function.
8933 (unknown_language_defn): Initialise new field.
8934 (auto_language_defn): Initialise new field.
8935 * language.h (struct language_defn) <la_is_string_type_p>: New
8936 member variable.
8937 (default_is_string_type_p): Declare new function.
8938 * m2-lang.c (m2_language_defn): Initialise new field.
8939 * objc-lang.c (objc_language_defn): Initialise new field.
8940 * opencl-lang.c (opencl_language_defn): Initialise new field.
8941 * p-lang.c (pascal_is_string_type_p): New function.
8942 (pascal_language_defn): Initialise new field.
8943 * rust-lang.c (rust_is_string_type_p): New function.
8944 (rust_language_defn): Initialise new field.
8945
8946 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8947
8948 * language.h (struct language_defn) <la_struct_too_deep_ellipsis>:
8949 New field.
8950 * ada-lang.c (ada_language_defn): Initialise new field.
8951 * c-lang.c (c_language_defn): Likewise.
8952 (cplus_language_defn): Likewise.
8953 (asm_language_defn): Likewise.
8954 (minimal_language_defn): Likewise.
8955 * d-lang.c (d_language_defn): Likewise.
8956 * f-lang.c (f_language_defn): Likewise.
8957 * go-lang.c (go_language_defn): Likewise.
8958 * language.c (unknown_language_defn): Likewise.
8959 (auto_language_defn): Likewise.
8960 * m2-lang.c (m2_language_defn): Likewise.
8961 * objc-lang.c (objc_language_defn): Likewise.
8962 * opencl-lang.c (opencl_language_defn): Likewise.
8963 * p-lang.c (pascal_language_defn): Likewise.
8964 * rust-lang.c (rust_language_defn): Likewise.
8965
8966 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8967
8968 * ada-lang.c (ada_is_character_type): Change return type to bool.
8969 (ada_is_string_type): Likewise.
8970 * ada-lang.h (ada_is_character_type): Update declaration
8971 (ada_is_string_type): Likewise.
8972
8973 2019-04-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8974
8975 Support style in 'frame|thread apply'
8976
8977 * gdbcmd.h (execute_command_to_string): New term_out parameter.
8978 * record.c (record_start, record_stop): Update callers of
8979 execute_command_to_string with false.
8980 * guile/guile.c (gdbscm_execute_gdb_command): Likewise.
8981 * ui-file.h (class ui_file): New term_out and can_emit_style_escape
8982 methods.
8983 (class string_file): New constructor with term_out parameter.
8984 Override methods term_out and can_emit_style_escape. New member
8985 term_out.
8986 (class stdio_file): Override can_emit_style_escape.
8987 (class tee_file): Override term_out and can_emit_style_escape.
8988 * utils.h (can_emit_style_escape): Remove.
8989 * utils.c (can_emit_style_escape): Likewise.
8990 Update all callers of can_emit_style_escape (SOMESTREAM) to
8991 SOMESTREAM->can_emit_style_escape.
8992 * source-cache.c (source_cache::get_source_lines): Likewise.
8993 * stack.c (frame_apply_command_count): Call execute_command_to_string
8994 passing the term_out characteristic of the current gdb_stdout.
8995 * thread.c (thr_try_catch_cmd): Likewise.
8996 * top.c (execute_command_to_string): pass term_out parameter
8997 to construct the string_file for the command output.
8998 * ui-file.c (term_cli_styling): New function (most code moved
8999 from utils.c can_emit_style_escape).
9000 (string_file::string_file, string_file::can_emit_style_escape,
9001 stdio_file::can_emit_style_escape, tee_file::term_out,
9002 tee_file::can_emit_style_escape): New functions.
9003
9004 2019-04-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9005
9006 * NEWS: Mention the new set|show may-call-functions.
9007 * infcall.c (may_call_functions_p): New variable.
9008 (show_may_call_functions_p): New function.
9009 (call_function_by_hand_dummy): Throws an error if not
9010 may-call-functions.
9011 (_initialize_infcall): Call add_setshow_boolean_cmd for
9012 may-call-functions.
9013
9014 2019-04-25 Keith Seitz <keiths@redhat.com>
9015
9016 PR c++/24367
9017 * cp-support.c (inspect_type): Don't attempt substitutions
9018 of symbol with the same name.
9019
9020 2019-04-25 Tom Tromey <tromey@adacore.com>
9021
9022 PR gdb/24475:
9023 * event-top.c (gdb_rl_callback_handler): Make "gdb_rl_expt"
9024 static.
9025
9026 2019-04-25 Tom Tromey <tromey@adacore.com>
9027
9028 * xml-support.c (struct gdb_xml_parser) <set_error>: Take an
9029 rvalue reference.
9030 (gdb_xml_start_element_wrapper, gdb_xml_end_element_wrapper)
9031 (gdb_xml_parser::parse): Use std::move.
9032 * python/python-internal.h (gdbpy_convert_exception): Take a const
9033 reference.
9034 * python/py-value.c (valpy_getitem, valpy_nonzero): Use
9035 std::move.
9036 * python/py-utils.c (gdbpy_convert_exception): Take a const
9037 reference.
9038 * python/py-inferior.c (infpy_write_memory, infpy_search_memory):
9039 Use std::move.
9040 * python/py-breakpoint.c (bppy_set_condition, bppy_set_commands):
9041 Use std::move.
9042 * mi/mi-main.c (mi_print_exception): Take a const reference.
9043 * main.c (handle_command_errors): Take a const reference.
9044 * linespec.c (parse_linespec): Use std::move.
9045 * infcall.c (run_inferior_call): Use std::move.
9046 (call_function_by_hand_dummy): Use std::move.
9047 * exec.c (try_open_exec_file): Use std::move.
9048 * exceptions.h (exception_print, exception_fprintf)
9049 (exception_print_same): Update.
9050 * exceptions.c (print_exception, exception_print)
9051 (exception_fprintf, exception_print_same): Change parameters to
9052 const reference.
9053 * event-top.c (gdb_rl_callback_read_char_wrapper): Update.
9054 * common/new-op.c: Use std::move.
9055 * common/common-exceptions.h (struct gdb_exception): Add move
9056 constructor.
9057 (struct gdb_exception_error, struct gdb_exception_quit, struct
9058 gdb_quit_bad_alloc): Change constructor to move constructor.
9059 (throw_exception): Change parameter to rvalue reference.
9060 * common/common-exceptions.c (throw_exception): Take rvalue
9061 reference.
9062 * cli/cli-interp.c (safe_execute_command): Use std::move.
9063 * breakpoint.c (insert_bp_location, location_to_sals): Use
9064 std::move.
9065
9066 2019-04-25 Tom Tromey <tromey@adacore.com>
9067
9068 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception)
9069 (gdbscm_throw_gdb_exception): Take a gdbscm_gdb_exception.
9070 * guile/scm-block.c, guile/scm-breakpoint.c, guile/scm-cmd.c,
9071 guile/scm-disasm.c, guile/scm-frame.c, guile/scm-lazy-string.c,
9072 guile/scm-math.c, guile/scm-param.c, guile/scm-ports.c,
9073 guile/scm-symbol.c, guile/scm-symtab.c, guile/scm-type.c,
9074 guile/scm-value.c: Use unpack.
9075 * guile/guile-internal.h (gdbscm_scm_from_gdb_exception): Take a
9076 gdbscm_gdb_exception.
9077 (gdbscm_throw_gdb_exception): Likewise.
9078 (struct gdbscm_gdb_exception): New.
9079 (unpack): New function.
9080 (gdbscm_wrap): Use unpack.
9081
9082 2019-04-25 Tom Tromey <tromey@adacore.com>
9083
9084 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept)
9085 (gdb_rl_callback_handler): Use std::move.
9086 * common/common-exceptions.h (struct gdb_exception): Add move
9087 assignment operator.
9088 (throw_exception_sjlj): Change "exception" to const reference.
9089 * common/common-exceptions.c (exceptions_state_mc_catch): Update.
9090 (throw_exception_sjlj): Change "exception" to const reference.
9091
9092 2019-04-25 Tom Tromey <tromey@adacore.com>
9093
9094 * xml-support.c (gdb_xml_parser::gdb_xml_parser): Update.
9095 * python/py-value.c (valpy_getitem, valpy_nonzero): Update.
9096 * python/py-inferior.c (infpy_write_memory, infpy_search_memory):
9097 Update.
9098 * python/py-breakpoint.c (bppy_set_condition, bppy_set_commands):
9099 Update.
9100 * mi/mi-interp.c (mi_interp::exec): Update.
9101 * linespec.c (parse_linespec): Update.
9102 * infcall.c (run_inferior_call): Update.
9103 * guile/scm-value.c (gdbscm_value_to_lazy_string): Update.
9104 * guile/scm-symbol.c (gdbscm_lookup_symbol)
9105 (gdbscm_lookup_global_symbol): Update.
9106 * guile/scm-param.c (gdbscm_parameter_value): Update.
9107 * guile/scm-frame.c (gdbscm_frame_read_register)
9108 (gdbscm_frame_read_var): Update.
9109 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Update.
9110 * exec.c (try_open_exec_file): Update.
9111 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept)
9112 (gdb_rl_callback_handler): Update.
9113 * common/common-exceptions.h (exception_none): Don't declare.
9114 * common/common-exceptions.c (exception_none): Don't define.
9115 (struct catcher) <exception>: Update.
9116 * cli/cli-interp.c (safe_execute_command): Update.
9117 * breakpoint.c (insert_bp_location, location_to_sals): Update.
9118
9119 2019-04-25 Ali Tamur <tamur@google.com>
9120
9121 * dwarf2read.c (skip_one_die): Add DW_FORM_strx.
9122 (read_attribute_value): Likewise.
9123 (dwarf2_read_addr_index): Update comment.
9124 (read_str_index): Add DW_FORM_strx.
9125 (dwarf2_string_attr): Likewise.
9126 (dwarf2_const_value_attr): Likewise.
9127 (dump_die_shallow): Likewise.
9128 (dwarf2_fetch_constant_bytes): Likewise.
9129 (skip_form_bytes): Likewise.
9130 * testsuite/lib/dwarf.exp (_handle_DW_FORM): Add DW_FORM_strx.
9131
9132 2019-04-25 Sergio Durigan Junior <sergiodj@redhat.com>
9133
9134 PR corefiles/11608
9135 PR corefiles/18187
9136 * linux-tdep.c (dump_mapping_p): Add new parameters ADDR and
9137 OFFSET. Verify if current mapping contains an ELF header.
9138 (linux_find_memory_regions_full): Adjust call to
9139 dump_mapping_p.
9140
9141 2019-04-25 Sandra Loosemore <sandra@codesourcery.com>
9142 Kang Li <kanglictf@gmail.com>
9143
9144 PR gdb/21600
9145
9146 * dwarf2-frame.c (read_initial_length): Be consistent about using
9147 unsigned representation of length.
9148 (decode_frame_entry_1): Likewise. Check for wraparound of
9149 end pointer as well as buffer overflow.
9150
9151 2019-04-24 Sergio Durigan Junior <sergiodj@redhat.com>
9152
9153 * aarch64-tdep.c (aarch64_gdbarch_init): Use "pulongest" to print
9154 "vq".
9155
9156 2019-04-24 Tom Tromey <tromey@adacore.com>
9157
9158 * amd64-tdep.c (amd64_has_unaligned_fields): Ignore bitfields.
9159
9160 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9161
9162 * s12z-tdep.c (s12z_unwind_pc): Delete.
9163 (s12z_unwind_sp): Delete.
9164 (s12z_gdbarch_init): Don't register deleted functions with
9165 gdbarch.
9166
9167 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9168
9169 * rl78-tdep.c (rl78_unwind_sp): Delete.
9170 (rl78_gdbarch_init): Don't register deleted function with gdbarch.
9171
9172 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9173
9174 * xstormy16-tdep.c (xstormy16_unwind_sp): Delete.
9175 (xstormy16_unwind_pc): Delete.
9176 (xstormy16_dummy_id): Delete.
9177 (xstormy16_gdbarch_init): Don't register deleted functions with
9178 gdbarch.
9179
9180 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9181
9182 * vax-tdep.c (vax_unwind_pc): Delete.
9183 (vax_gdbarch_init): Don't register deleted function with gdbarch.
9184
9185 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9186
9187 * v850-tdep.c (v850_unwind_sp): Delete.
9188 (v850_unwind_pc): Delete.
9189 (v850_dummy_id): Delete.
9190 (v850_gdbarch_init): Don't register deleted functions with
9191 gdbarch.
9192
9193 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9194
9195 * tilegx-tdep.c (tilegx_unwind_sp): Delete.
9196 (tilegx_unwind_pc): Delete.
9197 (tilegx_unwind_dummy_id): Delete.
9198 (tilegx_gdbarch_init): Don't register deleted functions with
9199 gdbarch.
9200
9201 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9202
9203 * tic6x-tdep.c (tic6x_unwind_sp): Delete.
9204 (tic6x_dummy_id): Delete.
9205 (tic6x_gdbarch_init): Don't register deleted functions with
9206 gdbarch.
9207
9208 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9209
9210 * sparc-tdep.c (sparc_unwind_pc): Delete.
9211 (sparc32_gdbarch_init): Don't register deleted function with
9212 gdbarch.
9213
9214 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9215
9216 * sh-tdep.c (sh_unwind_sp): Delete.
9217 (sh_unwind_pc): Delete.
9218 (sh_dummy_id): Delete.
9219 (sh_gdbarch_init): Don't register deleted functions with
9220 gdbarch.
9221
9222 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9223
9224 * score-tdep.c (score_unwind_sp): Delete.
9225 (score_unwind_pc): Delete.
9226 (score_dummy_id): Delete.
9227 (score_gdbarch_init): Don't register deleted functions with
9228 gdbarch.
9229
9230 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9231
9232 * rx-tdep.c (rx_unwind_pc): Delete.
9233 (rx_unwind_sp): Delete.
9234 (rx_dummy_id): Delete.
9235 (rx_gdbarch_init): Don't register deleted functions with
9236 gdbarch. Update comment.
9237
9238 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9239
9240 * rs6000-tdep.c (rs6000_unwind_pc): Delete.
9241 (rs6000_dummy_id): Delete.
9242 (rs6000_gdbarch_init): Don't register deleted functions with
9243 gdbarch.
9244
9245 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9246
9247 * or1k-tdep.c (or1k_dummy_id): Delete.
9248 (or1k_gdbarch_init): Don't register deleted function with gdbarch.
9249
9250 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9251
9252 * nios2-tdep.c (nios2_dummy_id): Delete.
9253 (nios2_unwind_sp): Delete.
9254 (nios2_gdbarch_init): Don't register deleted functions with
9255 gdbarch.
9256
9257 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9258
9259 * nds32-tdep.c (nds32_dummy_id): Delete.
9260 (nds32_unwind_pc): Delete.
9261 (nds32_unwind_sp): Delete.
9262 (nds32_gdbarch_init): Don't register deleted functions with
9263 gdbarch.
9264
9265 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9266
9267 * msp430-tdep.c (msp430_unwind_pc): Delete.
9268 (msp430_unwind_sp): Delete.
9269 (msp430_dummy_id): Delete.
9270 (msp430_gdbarch_init): Don't register deleted functions with
9271 gdbarch.
9272
9273 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9274
9275 * moxie-tdep.c (moxie_unwind_sp): Delete.
9276 (moxie_unwind_pc): Delete.
9277 (moxie_dummy_id): Delete.
9278 (moxie_gdbarch_init): Don't register deleted functions with
9279 gdbarch.
9280
9281 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9282
9283 * mn10300-tdep.c (mn10300_dummy_id): Delete.
9284 (mn10300_unwind_pc): Delete.
9285 (mn10300_unwind_sp): Delete.
9286 (mn10300_push_dummy_call): Use gdbarch_unwind_sp not
9287 mn10300_unwind_sp.
9288 (mn10300_frame_unwind_init): Don't register deleted functions with
9289 gdbarch.
9290
9291 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9292
9293 * mep-tdep.c (mep_unwind_pc): Delete.
9294 (mep_unwind_sp): Delete.
9295 (mep_dummy_id): Delete.
9296 (mep_gdbarch_init): Don't register deleted functions with
9297 gdbarch.
9298
9299 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9300
9301 * m68hc11-tdep.c (m68hc11_unwind_pc): Delete.
9302 (m68hc11_unwind_sp): Delete.
9303 (m68hc11_gdbarch_init): Don't register deleted functions with
9304 gdbarch.
9305
9306 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9307
9308 * m32r-tdep.c (m32r_unwind_sp): Delete.
9309 (m32r_unwind_pc): Delete.
9310 (m32r_dummy_id): Delete.
9311 (m32r_gdbarch_init): Don't register deleted functions with
9312 gdbarch.
9313
9314 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9315
9316 * m32c-tdep.c (m32c_unwind_pc): Delete.
9317 (m32c_unwind_sp): Delete.
9318 (m32c_dummy_id): Delete.
9319 (m32c_gdbarch_init): Don't register deleted functions with
9320 gdbarch.
9321
9322 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9323
9324 * gdb/lm32-tdep.c (lm32_unwind_sp): Delete.
9325 (lm32_unwind_pc): Delete.
9326 (lm32_dummy_id): Delete.
9327 (lm32_gdbarch_init): Don't register deleted functions with
9328 gdbarch.
9329
9330 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9331
9332 * gdb/iq2000-tdep.c (iq2000_unwind_sp): Delete.
9333 (iq2000_unwind_pc): Delete.
9334 (iq2000_dummy_id): Delete.
9335 (iq2000_gdbarch_init): Don't register deleted functions with
9336 gdbarch.
9337
9338 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9339
9340 * nds32-tdep.c (nds32_type_align): Delete.
9341 (nds32_push_dummy_call): Use type_align instead.
9342
9343 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9344
9345 * arm-tdep.c (arm_type_align): Only handle vector override case.
9346 (arm_push_dummy_call): Use type_align.
9347 (arm_gdbarch_init): Register arm_type_align gdbarch function.
9348
9349 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9350
9351 * aarch64-tdep.c (aarch64_type_align): Only handle vector override
9352 case.
9353 (pass_on_stack): Use type_align.
9354 (aarch64_gdbarch_init): Register aarch64_type_align gdbarch
9355 function.
9356
9357 2019-04-23 Tom Tromey <tromey@adacore.com>
9358
9359 * dwarf2read.c (line_header::file_name_at): Remove unused
9360 overload.
9361
9362 2019-04-23 Tom de Vries <tdevries@suse.de>
9363
9364 PR gdb/24438
9365 * contrib/cc-with-tweaks.sh: Remove superfluous .alt file after dwz
9366 invocation.
9367
9368
9369 2019-03-27 Ali Tamur <tamur@google.com>
9370
9371 * dwarf2-frame.c(dwarf_expr_executor::get_addr_index): Update comment
9372 * dwarf2expr.c(dwarf_expr_context::execute_stack_op): Add DW_OP_addrx
9373 * dwarf2expr.h(dwarf_expr_context::offset): Update comment
9374 (dwarf_expr_context::get_addr_index): Likewise
9375 * dwarf2loc.c(dwarf_evaluate_loc_desc::get_addr_index): Likewise
9376 (symbol_needs_eval_context::get_addr_index): Likewise
9377 (disassemble_dwarf_expression): Add DW_OP_addrx
9378 * dwarf2read.c(attr_value_as_address): Add DW_FORM_addrx
9379 (read_cutu_die_from_dwo): Update comment
9380 (skip_one_die): Add DW_FORM_addrx
9381 (read_attribute_value): Likewise
9382 (var_decode_location): Add DW_OP_addrx
9383 (dwarf2_const_value_attr): Add DW_FORM_addrx
9384 (dump_die_shallow): Likewise
9385 (dwarf2_fetch_constant_bytes): Likewise
9386 (decode_locdesc): Add DW_OP_addrx
9387 (skip_form_bytes): Add DW_FORM_addrx
9388
9389 2019-04-22 Ali Tamur <tamur@google.com>
9390
9391 * MAINTAINERS (Write After Approval): Add self.
9392
9393 2019-04-22 Simon Marchi <simon.marchi@efficios.com>
9394
9395 * solib-svr4.c (get_svr4_info): Add pspace parameter.
9396 (svr4_keep_data_in_core): Pass current_program_space to get_svr4_info.
9397 (open_symbol_file_object): Likewise.
9398 (svr4_default_sos): Add info parameter.
9399 (svr4_read_so_list): Likewise.
9400 (svr4_current_sos_direct): Adjust functions calls to pass down
9401 info.
9402 (svr4_current_sos_1): Add info parameter.
9403 (svr4_current_sos): Call get_svr4_info, pass info down to
9404 svr4_current_sos_1.
9405 (svr4_fetch_objfile_link_map): Pass objfile->pspace to
9406 get_svr4_info.
9407 (svr4_in_dynsym_resolve_code): Pass current_program_space to
9408 get_svr4_info.
9409 (probes_table_htab_remove_objfile_probes): Pass objfile->pspace
9410 to get_svr4_info.
9411 (probes_table_remove_objfile_probes): Likewise.
9412 (register_solib_event_probe): Add info parameter.
9413 (solist_update_incremental): Pass info parameter down to
9414 svr4_read_so_list.
9415 (disable_probes_interface): Add info parameter.
9416 (svr4_handle_solib_event): Pass current_program_space to
9417 get_svr4_info. Adjust disable_probes_interface cleanup.
9418 (svr4_create_probe_breakpoints): Add info parameter, pass it
9419 down to register_solib_event_probe.
9420 (svr4_create_solib_event_breakpoints): Add info parameter,
9421 pass it down to svr4_create_probe_breakpoints.
9422 (enable_break): Pass info down to
9423 svr4_create_solib_event_breakpoints.
9424 (svr4_solib_create_inferior_hook): Pass current_program_space to
9425 get_svr4_info.
9426 (svr4_clear_solib): Likewise.
9427
9428 2019-04-22 Pedro Alves <palves@redhat.com>
9429
9430 * solib-svr4.c (svr4_free_objfile_observer): New.
9431 (probe_and_action::objfile): New field.
9432 (probes_table_htab_remove_objfile_probes)
9433 (probes_table_remove_objfile_probes): New functions.
9434 (register_solib_event_probe): Add 'objfile' parameter. Store it
9435 in the new probe_and_action. Don't store the probe in 'lookup'.
9436 (svr4_create_probe_breakpoints): Pass objfile to
9437 register_solib_event_probe.
9438 (_initialize_svr4_solib): Register a free_objfile observer.
9439
9440 2019-04-19 Tom Tromey <tom@tromey.com>
9441
9442 * common/queue.h: Remove.
9443
9444 2019-04-19 Tom Tromey <tom@tromey.com>
9445
9446 * event-loop.c: Don't include "common/queue.h".
9447
9448 2019-04-19 Tom Tromey <tom@tromey.com>
9449
9450 * remote.c (remote_target): Use delete.
9451 * remote-notif.h: Include <list>, not "common/queue.h".
9452 (notif_client_p): Remove typedef.
9453 (remote_notif_state): Add constructor, destructor, initializer.
9454 <notif_queue>: Now a std::list.
9455 (remote_notif_state_xfree): Don't declare.
9456 * remote-notif.c (remote_notif_process, handle_notification)
9457 (remote_notif_state_allocate): Update.
9458 (~remote_notif_state): Rename from remote_notif_state_xfree.
9459
9460 2019-04-19 Tom Tromey <tom@tromey.com>
9461
9462 * symfile.c (reread_symbols): Update.
9463 * objfiles.c (objfile_register_static_link)
9464 (objfile_lookup_static_link): Update
9465 (~objfile) Don't delete static_links.
9466 * objfiles.h (struct objfile) <static_links>: Now an htab_up.
9467
9468 2019-04-19 Tom Tromey <tom@tromey.com>
9469
9470 * type-stack.h (struct type_stack) <insert>: Constify string.
9471 * type-stack.c (type_stack::insert): Constify string.
9472 * gdbtypes.h (lookup_template_type): Update.
9473 (address_space_name_to_int): Update.
9474 * gdbtypes.c (address_space_name_to_int): Make space_identifier
9475 const.
9476 (lookup_template_type): Make name const.
9477 * c-exp.y: Update rules.
9478 (lex_one_token, classify_name, classify_inner_name)
9479 (c_print_token): Update.
9480 * p-exp.y: Update rules.
9481 (yylex): Update.
9482 * f-exp.y: Update rules.
9483 (yylex): Update.
9484 * d-exp.y: Update rules.
9485 (lex_one_token, classify_name, classify_inner_name): Update.
9486 * parse.c (write_dollar_variable, copy_name): Return std::string.
9487 * parser-defs.h (copy_name): Change return type.
9488 * m2-exp.y: Update rules.
9489 (yylex): Update.
9490 * go-exp.y (lex_one_token): Update.
9491 Update rules.
9492 (classify_unsafe_function, classify_packaged_name)
9493 (classify_name, yylex): Update.
9494
9495 2019-04-19 Sergei Trofimovich <siarheit@google.com>
9496
9497 * configure.ac: add --enable-source-highlight switch.
9498 * configure: Regenerate.
9499 * top.c (print_gdb_version): plumb --enable-source-highlight
9500 status to "show configuration".
9501
9502 2019-04-19 Tom Tromey <tromey@adacore.com>
9503
9504 * ada-lang.c (ada_is_variant_part, ada_to_fixed_type_1):
9505 Check ADA_TYPE_P.
9506 (empty_record, ada_template_to_fixed_record_type_1)
9507 (template_to_static_fixed_type)
9508 (to_record_with_fixed_variant_part): Use INIT_NONE_SPECIFIC.
9509 * cp-abi.c (value_rtti_type): Check HAVE_CPLUS_STRUCT.
9510 * gdbtypes.h (INIT_NONE_SPECIFIC, ADA_TYPE_P): New
9511 macros.
9512
9513 2019-04-19 Ilya Yu. Malakhov <malakhov@mcst.ru>
9514
9515 PR symtab/24423:
9516 * source.c (print_source_lines_base): Advance "iter" when a
9517 control character is seen.
9518
9519 2019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9520
9521 * inferior.h (struct infcall_suspend_state_deleter):
9522 Catch exception in destructor to avoid crash.
9523
9524 2019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9525
9526 * cli/cli-cmds.c (_initialize_cli_cmds): Move "shell" "!" alias
9527 close to the add_com "shell".
9528
9529 2019-04-18 Tom Tromey <tromey@adacore.com>
9530
9531 * process-stratum-target.h (class process_stratum_target)
9532 <stratum>: Add "final".
9533
9534 2019-04-17 Tom Tromey <tromey@adacore.com>
9535
9536 * dwarf2read.c (dwarf2_init_complex_target_type): Check "tt"
9537 against nullptr before use.
9538
9539 2019-04-17 Alan Hayward <alan.hayward@arm.com>
9540
9541 * nat/linux-waitpid.c (linux_debug): Call debug_vprintf.
9542
9543 2019-04-17 Jim Wilson <jimw@sifive.com>
9544 Andrew Burgess <andrew.burgess@embecosm.com>
9545
9546 * riscv-tdep.c (riscv_breakpoint_kind_from_pc): Hanndle case where
9547 code read might fail, assume 4-byte breakpoint in that case.
9548
9549 2019-04-15 Leszek Swirski <leszeks@google.com>
9550
9551 * amd64-tdep.c (amd64_classify_aggregate): Use cp_pass_by_reference
9552 rather than a hand-rolled POD check when checking for forced MEMORY
9553 classification.
9554
9555 2019-04-15 Alan Hayward <alan.hayward@arm.com>
9556
9557 * aarch64-linux-nat.c (store_sveregs_to_thread): Set vector length.
9558 * nat/aarch64-sve-linux-ptrace.c (aarch64_sve_set_vq): New
9559 function.
9560 (aarch64_sve_regs_copy_to_reg_buf): Remove VG checks.
9561 (aarch64_sve_regs_copy_from_reg_buf): Likewise.
9562 * nat/aarch64-sve-linux-ptrace.h (aarch64_sve_set_vq): New
9563 declaration.
9564
9565 2019-04-15 Alan Hayward <alan.hayward@arm.com>
9566
9567 * aarch64-linux-nat.c
9568 (aarch64_linux_nat_target::thread_architecture): Add override.
9569 * aarch64-tdep.c (aarch64_gdbarch_init): Ensure different tdesc for
9570 each VQ.
9571
9572 2019-04-15 Alan Hayward <alan.hayward@arm.com>
9573
9574 * aarch64-tdep.c (aarch64_gdbarch_init): Move gdbarch lookup.
9575
9576 2019-04-13 Andrew Burgess <andrew.burgess@embecosm.com>
9577
9578 * dwarf2read.c (dwarf2_init_complex_target_type): Handle complex
9579 target types of size 96-bits, add some additional comments, and
9580 check that the builtin type we found was the correct size.
9581
9582 2019-04-12 Eli Zaretskii <eliz@gnu.org>
9583
9584 * utils.c (prompt_for_continue): Don't restore the styling at the
9585 end, as applied_style has the wrong value. This fixes styling in
9586 long lists of file names that are interrupted by the "Continue?"
9587 prompt.
9588
9589 2019-04-12 Andrew Burgess <andrew.burgess@embecosm.com>
9590
9591 * ada-lang.c (ada_language_defn): Remove use of LANG_MAGIC.
9592 * c-lang.c (c_language_defn): Likewise.
9593 (cplus_language_defn): Likewise.
9594 (asm_language_defn): Likewise.
9595 (minimal_language_defn): Likewise.
9596 * d-lang.c (d_language_defn): Likewise.
9597 * f-lang.c (f_language_defn): Likewise.
9598 * go-lang.c (go_language_defn): Likewise.
9599 * language.c (unknown_language_defn): Likewise.
9600 (auto_language_defn): Likewise.
9601 * language.h (struct language_defn): Remove la_magic field.
9602 (LANG_MAGIC): Delete.
9603 * m2-lang.c (m2_language_defn): Remove use of LANG_MAGIC.
9604 * objc-lang.c (objc_language_defn): Likewise.
9605 * opencl-lang.c (opencl_language_defn): Likewise.
9606 * p-lang.c (pascal_language_defn): Likewise.
9607 * rust-lang.c (rust_language_defn): Likewise.
9608
9609 2019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
9610
9611 * riscv-tdep.c (riscv_type_align): New function.
9612 (riscv_type_alignment): Delete.
9613 (riscv_arg_location): Use 'type_align'.
9614 (riscv_gdbarch_init): Register riscv_type_align gdbarch function.
9615
9616 2019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
9617
9618 * gdbtypes.c (type_align): A struct with no non-static fields also
9619 has alignment of 1.
9620
9621 2019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
9622
9623 * riscv-tdep.c (riscv_call_arg_complex_float): Fix offset of first
9624 component to 0.
9625 (riscv_struct_info::riscv_struct_info): Initialise m_offsets
9626 member.
9627 (riscv_struct_info::analyse): New implementation using new
9628 analyse_inner member function.
9629 (riscv_struct_info::field_offset): New member function.
9630 (riscv_struct_info::m_offsets): New member variable.
9631 (riscv_struct_info::analyse_inner): New private member function,
9632 takes the old implementation of riscv_struct_info::analyse but
9633 extended to track field offsets.
9634 (riscv_call_arg_struct): Update the struct folding special cases
9635 to handle cases where empty C++ structs, which are non-zero
9636 length, are found.
9637 (riscv_arg_location): Initialise the length of each location, a
9638 non-zero length now indicates the location is in use.
9639 (riscv_push_dummy_call): Allow for the first location having a
9640 non-zero offset when setting up arguments.
9641 (riscv_return_value): Likewise, but for return values.
9642
9643 2019-04-11 Tom Tromey <tromey@adacore.com>
9644
9645 * utils.c (internal_vproblem): Make "msg" const.
9646
9647 2019-04-11 Alan Hayward <alan.hayward@arm.com>
9648
9649 * aarch64-tdep.c (aarch64_analyze_prologue_test): Reset saved regs.
9650 * trad-frame.c (trad_frame_reset_saved_regs): New function.
9651 (trad_frame_alloc_saved_regs): Call trad_frame_reset_saved_regs.
9652 * trad-frame.h (trad_frame_reset_saved_regs): New declaration.
9653
9654 2019-04-10 Kevin Buettner <kevinb@redhat.com>
9655
9656 * amd64-linux-nat.c (amd64_linux_collect_native_gregset): New
9657 function.
9658 (fill_gregset): Call amd64_linux_collect_native_gregset instead
9659 of amd64_collect_native_gregset.
9660 (amd64_linux_nat_target::store_registers): Likewise.
9661
9662 2019-04-10 Tom Tromey <tom@tromey.com>
9663
9664 * symtab.c (lookup_global_symbol_from_objfile)
9665 (lookup_symbol_in_objfile_from_linkage_name): Use the iterator.
9666 * objfiles.h (class separate_debug_iterator): New.
9667 (class separate_debug_range): New.
9668 (struct objfile) <separate_debug_objfiles>: New method.
9669 (objfile_separate_debug_iterate): Don't declare.
9670 * objfiles.c (separate_debug_iterator::operator++): Rename from
9671 objfile_separate_debug_iterate.
9672 (objfile_relocate, objfile_rebase, objfile_has_symbols): Use the
9673 iterator.
9674 * minsyms.c (lookup_minimal_symbol_by_pc_section): Use the
9675 iterator.
9676
9677 2019-04-10 Tom Tromey <tom@tromey.com>
9678
9679 * symfile.c (reread_symbols): Remove old comment.
9680 * objfiles.c (free_all_objfiles): Fix a typo.
9681
9682 2019-04-10 Tom Tromey <tom@tromey.com>
9683
9684 * ia64-tdep.c (ia64_get_dyn_info_list): Use foreach.
9685 * minsyms.c (lookup_minimal_symbol): Use foreach.
9686 (lookup_minimal_symbol_text, lookup_minimal_symbol_by_pc_name)
9687 (lookup_minimal_symbol_solib_trampoline): Likewise.
9688 * symfile.c (reread_symbols): Use foreach.
9689
9690 2019-04-09 Ivan Begert <ivanbegert@gmail.com>
9691 Tom Tromey <tromey@adacore.com>
9692
9693 PR rust/24414:
9694 * rust-exp.y (rust_parser::lex_number): Use strtoulst.
9695 (rust_lex_int_test): Change "value" to be LONGEST.
9696 (rust_lex_tests): Add test for long integer literal.
9697
9698 2019-04-09 Tom Tromey <tromey@adacore.com>
9699
9700 * remote.c (remote_target::remote_add_inferior): Change fake_pid_p
9701 to bool.
9702 (extended_remote_target::attach): Update.
9703 (remote_target::remote_notice_new_inferior): Update.
9704 (remote_target::add_current_inferior_and_thread): Update.
9705 * inferior.c (exit_inferior_1): Use "false".
9706 * corelow.c (add_to_thread_list): Make fake_pid_p bool.
9707
9708 2019-04-09 Simon Marchi <simon.marchi@efficios.com>
9709
9710 * infcmd.c (run_command_1): Pass -qualified to tbreak when using
9711 the "start" command.
9712
9713 2019-04-08 Kevin Buettner <kevinb@redhat.com>
9714
9715 * python/py-inferior.c (infpy_thread_from_thread_handle):
9716 Adjust comments to reflect renaming of thread_from_thread_handle
9717 to thread_from_handle. Adjust keywords. Fix type error message.
9718 (inferior_object_methods): Add thread_from_handle. Retain
9719 thread_from_thread_handle, but mark it as deprecated.
9720
9721 2019-04-08 Kevin Buettner <kevinb@redhat.com>
9722
9723 * gdbthread.h (find_thread_by_handle): Revise declaration.
9724 * thread.c (find_thread_by_handle): Likewise. Adjust
9725 implementation too.
9726 * python/py-inferior.c (infpy_thread_from_thread_handle): Add
9727 support for buffer objects as handles.
9728
9729 2019-04-08 Kevin Buettner <kevinb@redhat.com>
9730
9731 * python/py-infthread.c (thpy_thread_handle): New function.
9732 (thread_object_methods): Register thpy_thread_handle.
9733
9734 2019-04-08 Kevin Buettner <kevinb@redhat.com>
9735
9736 * gdbthread.h (thread_to_thread_handle): Declare.
9737 * thread.c (gdbtypes.h): Include.
9738 (thread_to_thread_handle): New function.
9739
9740 * target.h (struct target_ops): Add thread_info_to_thread_handle.
9741 (target_thread_info_to_thread_handle): Declare.
9742 * target.c (target_thread_info_to_thread_handle): New function.
9743 * target-debug.h (target_debug_print_gdb_byte_vector): Define.
9744 * target-delegates.c: Regenerate.
9745
9746 * linux-thread-db.c (class thread_db_target): Add method
9747 thread_info_to_thread_handle.
9748 (thread_db_target::thread_info_to_thread_handle): Define.
9749 * remote.c (class remote_target): Add new method
9750 thread_info_to_thread_handle.
9751 (remote_target::thread_info_to_thread_handle): Define.
9752
9753 2019-04-08 Pedro Alves <palves@redhat.com>
9754
9755 * common/common-exceptions.c (throw_exception): Don't create
9756 named object to throw; throw directly.
9757 (throw_it): Likewise. Don't initialize gdb_exception::message
9758 here, with new; pass FMT and AP to the ctor instead.
9759 * common/common-exceptions.h: Include <string>.
9760 (gdb_exception::gdb_exception(enum return_reason, enum errors,
9761 const char *, va_list)): New ctor. Use std::make_shared.
9762 (gdb_exception_error::gdb_exception_error(enum return_reason, enum
9763 errors)): Delete.
9764 (gdb_exception_error::gdb_exception_error(enum errors, const char
9765 *, va_list)): New.
9766 (gdb_exception_error::gdb_exception_error(const gdb_exception &)):
9767 Add assertion.
9768 (gdb_exception_quit::gdb_exception_quit(enum return_reason, enum
9769 errors)): Delete.
9770 (gdb_exception_quit::gdb_exception_quit(const char *, va_list)): New.
9771 (gdb_exception_quit::gdb_exception_quit(const gdb_exception &)):
9772 Add assertion.
9773
9774 2019-04-08 Tom Tromey <tom@tromey.com>
9775
9776 * valops.c (value_rtti_indirect_type): Replace throw_exception
9777 with throw.
9778 * tracefile-tfile.c (tfile_target_open): Replace throw_exception
9779 with throw.
9780 * thread.c (thr_try_catch_cmd): Replace throw_exception with
9781 throw.
9782 * target.c (target_translate_tls_address): Replace throw_exception
9783 with throw.
9784 * stack.c (frame_apply_command_count): Replace throw_exception
9785 with throw.
9786 * solib-spu.c (append_ocl_sos): Replace throw_exception with
9787 throw.
9788 * s390-tdep.c (s390_frame_unwind_cache): Replace throw_exception
9789 with throw.
9790 * rs6000-tdep.c (rs6000_frame_cache)
9791 (rs6000_epilogue_frame_cache): Replace throw_exception with throw.
9792 * remote.c: Replace throw_exception with throw.
9793 * record-full.c (record_full_message, record_full_wait_1)
9794 (record_full_restore): Replace throw_exception with throw.
9795 * record-btrace.c:
9796 (get_thread_current_frame_id, record_btrace_start_replaying)
9797 (cmd_record_btrace_bts_start, cmd_record_btrace_pt_start)
9798 (cmd_record_btrace_start): Replace throw_exception with throw.
9799 * parse.c (parse_exp_in_context_1): Replace throw_exception with
9800 throw.
9801 * linux-nat.c (detach_one_lwp, linux_resume_one_lwp)
9802 (resume_stopped_resumed_lwps): Replace throw_exception with throw.
9803 * linespec.c:
9804 (find_linespec_symbols): Replace throw_exception with throw.
9805 * infrun.c (displaced_step_prepare, resume): Replace
9806 throw_exception with throw.
9807 * infcmd.c (post_create_inferior): Replace throw_exception with
9808 throw.
9809 * inf-loop.c (inferior_event_handler): Replace throw_exception
9810 with throw.
9811 * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache)
9812 (i386_sigtramp_frame_cache): Replace throw_exception with throw.
9813 * frame.c (frame_unwind_pc, get_prev_frame_if_no_cycle)
9814 (get_prev_frame_always, get_frame_pc_if_available)
9815 (get_frame_address_in_block_if_available, get_frame_language):
9816 Replace throw_exception with throw.
9817 * frame-unwind.c (frame_unwind_try_unwinder): Replace
9818 throw_exception with throw.
9819 * eval.c (fetch_subexp_value, evaluate_var_value)
9820 (evaluate_funcall, evaluate_subexp_standard): Replace
9821 throw_exception with throw.
9822 * dwarf2loc.c (call_site_find_chain)
9823 (dwarf2_evaluate_loc_desc_full, dwarf2_locexpr_baton_eval):
9824 Replace throw_exception with throw.
9825 * dwarf2-frame.c (dwarf2_frame_cache): Replace throw_exception
9826 with throw.
9827 * darwin-nat.c (darwin_attach_pid): Replace throw_exception with
9828 throw.
9829 * cp-abi.c (baseclass_offset): Replace throw_exception with throw.
9830 * completer.c (complete_line_internal): Replace throw_exception
9831 with throw.
9832 * compile/compile-object-run.c (compile_object_run): Replace
9833 throw_exception with throw.
9834 * cli/cli-script.c (process_next_line): Replace throw_exception
9835 with throw.
9836 * btrace.c (btrace_compute_ftrace_pt, btrace_compute_ftrace)
9837 (btrace_enable, btrace_maint_update_pt_packets): Replace
9838 throw_exception with throw.
9839 * breakpoint.c (create_breakpoint, save_breakpoints): Replace
9840 throw_exception with throw.
9841 * break-catch-throw.c (re_set_exception_catchpoint): Replace
9842 throw_exception with throw.
9843 * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache)
9844 (amd64_epilogue_frame_cache): Replace throw_exception with throw.
9845 * aarch64-tdep.c (aarch64_make_prologue_cache)
9846 (aarch64_make_stub_cache): Replace throw_exception with throw.
9847
9848 2019-04-08 Tom Tromey <tom@tromey.com>
9849
9850 * common/common-exceptions.c (throw_exception): Rename from
9851 throw_exception_cxx. Remove old copy. Make argument const.
9852 (throw_it): Create and throw exception objects directly.
9853 * common/common-exceptions.h (throw_exception): Make argument
9854 const.
9855 (struct gdb_exception_error): Add constructor.
9856 (struct gdb_exception_quit): Add constructor.
9857
9858 2019-04-08 Tom Tromey <tom@tromey.com>
9859
9860 * common/common-exceptions.h (exception_rethrow): Don't declare.
9861 (TRY_SJLJ): Update comment.
9862 (TRY, CATCH, END_CATCH): Remove.
9863 * common/common-exceptions.c (exception_rethrow): Remove.
9864
9865 2019-04-08 Tom Tromey <tom@tromey.com>
9866
9867 * common/common-exceptions.h (gdb_exception_RETURN_MASK_ALL):
9868 Remove.
9869 (gdb_exception_error): Rename from
9870 gdb_exception_RETURN_MASK_ERROR.
9871 (gdb_exception_quit): Rename from gdb_exception_RETURN_MASK_QUIT.
9872 (gdb_quit_bad_alloc): Update.
9873 * aarch64-tdep.c: Update.
9874 * ada-lang.c: Update.
9875 * ada-typeprint.c: Update.
9876 * ada-valprint.c: Update.
9877 * amd64-tdep.c: Update.
9878 * arch-utils.c: Update.
9879 * break-catch-throw.c: Update.
9880 * breakpoint.c: Update.
9881 * btrace.c: Update.
9882 * c-varobj.c: Update.
9883 * cli/cli-cmds.c: Update.
9884 * cli/cli-interp.c: Update.
9885 * cli/cli-script.c: Update.
9886 * common/common-exceptions.c: Update.
9887 * common/new-op.c: Update.
9888 * common/selftest.c: Update.
9889 * compile/compile-c-symbols.c: Update.
9890 * compile/compile-cplus-symbols.c: Update.
9891 * compile/compile-object-load.c: Update.
9892 * compile/compile-object-run.c: Update.
9893 * completer.c: Update.
9894 * corelow.c: Update.
9895 * cp-abi.c: Update.
9896 * cp-support.c: Update.
9897 * cp-valprint.c: Update.
9898 * darwin-nat.c: Update.
9899 * disasm-selftests.c: Update.
9900 * dtrace-probe.c: Update.
9901 * dwarf-index-cache.c: Update.
9902 * dwarf-index-write.c: Update.
9903 * dwarf2-frame-tailcall.c: Update.
9904 * dwarf2-frame.c: Update.
9905 * dwarf2loc.c: Update.
9906 * dwarf2read.c: Update.
9907 * eval.c: Update.
9908 * event-loop.c: Update.
9909 * event-top.c: Update.
9910 * exec.c: Update.
9911 * f-valprint.c: Update.
9912 * fbsd-tdep.c: Update.
9913 * frame-unwind.c: Update.
9914 * frame.c: Update.
9915 * gdbtypes.c: Update.
9916 * gnu-v3-abi.c: Update.
9917 * guile/guile-internal.h: Update.
9918 * guile/scm-block.c: Update.
9919 * guile/scm-breakpoint.c: Update.
9920 * guile/scm-cmd.c: Update.
9921 * guile/scm-disasm.c: Update.
9922 * guile/scm-frame.c: Update.
9923 * guile/scm-lazy-string.c: Update.
9924 * guile/scm-math.c: Update.
9925 * guile/scm-param.c: Update.
9926 * guile/scm-ports.c: Update.
9927 * guile/scm-pretty-print.c: Update.
9928 * guile/scm-symbol.c: Update.
9929 * guile/scm-symtab.c: Update.
9930 * guile/scm-type.c: Update.
9931 * guile/scm-value.c: Update.
9932 * i386-linux-tdep.c: Update.
9933 * i386-tdep.c: Update.
9934 * inf-loop.c: Update.
9935 * infcall.c: Update.
9936 * infcmd.c: Update.
9937 * infrun.c: Update.
9938 * jit.c: Update.
9939 * language.c: Update.
9940 * linespec.c: Update.
9941 * linux-fork.c: Update.
9942 * linux-nat.c: Update.
9943 * linux-tdep.c: Update.
9944 * linux-thread-db.c: Update.
9945 * main.c: Update.
9946 * mi/mi-cmd-break.c: Update.
9947 * mi/mi-cmd-stack.c: Update.
9948 * mi/mi-interp.c: Update.
9949 * mi/mi-main.c: Update.
9950 * objc-lang.c: Update.
9951 * p-valprint.c: Update.
9952 * parse.c: Update.
9953 * ppc-linux-tdep.c: Update.
9954 * printcmd.c: Update.
9955 * python/py-arch.c: Update.
9956 * python/py-breakpoint.c: Update.
9957 * python/py-cmd.c: Update.
9958 * python/py-finishbreakpoint.c: Update.
9959 * python/py-frame.c: Update.
9960 * python/py-framefilter.c: Update.
9961 * python/py-gdb-readline.c: Update.
9962 * python/py-inferior.c: Update.
9963 * python/py-infthread.c: Update.
9964 * python/py-lazy-string.c: Update.
9965 * python/py-linetable.c: Update.
9966 * python/py-objfile.c: Update.
9967 * python/py-param.c: Update.
9968 * python/py-prettyprint.c: Update.
9969 * python/py-progspace.c: Update.
9970 * python/py-record-btrace.c: Update.
9971 * python/py-record.c: Update.
9972 * python/py-symbol.c: Update.
9973 * python/py-type.c: Update.
9974 * python/py-unwind.c: Update.
9975 * python/py-utils.c: Update.
9976 * python/py-value.c: Update.
9977 * python/python.c: Update.
9978 * record-btrace.c: Update.
9979 * record-full.c: Update.
9980 * remote-fileio.c: Update.
9981 * remote.c: Update.
9982 * riscv-tdep.c: Update.
9983 * rs6000-aix-tdep.c: Update.
9984 * rs6000-tdep.c: Update.
9985 * rust-exp.y: Update.
9986 * rust-lang.c: Update.
9987 * s390-tdep.c: Update.
9988 * selftest-arch.c: Update.
9989 * solib-dsbt.c: Update.
9990 * solib-frv.c: Update.
9991 * solib-spu.c: Update.
9992 * solib-svr4.c: Update.
9993 * solib.c: Update.
9994 * sparc64-linux-tdep.c: Update.
9995 * stack.c: Update.
9996 * symfile-mem.c: Update.
9997 * symmisc.c: Update.
9998 * target.c: Update.
9999 * thread.c: Update.
10000 * top.c: Update.
10001 * tracefile-tfile.c: Update.
10002 * tui/tui.c: Update.
10003 * typeprint.c: Update.
10004 * unittests/cli-utils-selftests.c: Update.
10005 * unittests/parse-connection-spec-selftests.c: Update.
10006 * valops.c: Update.
10007 * valprint.c: Update.
10008 * value.c: Update.
10009 * varobj.c: Update.
10010 * windows-nat.c: Update.
10011 * x86-linux-nat.c: Update.
10012 * xml-support.c: Update.
10013
10014 2019-04-08 Tom Tromey <tom@tromey.com>
10015
10016 * xml-support.c: Use C++ exception handling.
10017 * x86-linux-nat.c: Use C++ exception handling.
10018 * windows-nat.c: Use C++ exception handling.
10019 * varobj.c: Use C++ exception handling.
10020 * value.c: Use C++ exception handling.
10021 * valprint.c: Use C++ exception handling.
10022 * valops.c: Use C++ exception handling.
10023 * unittests/parse-connection-spec-selftests.c: Use C++ exception
10024 handling.
10025 * unittests/cli-utils-selftests.c: Use C++ exception handling.
10026 * typeprint.c: Use C++ exception handling.
10027 * tui/tui.c: Use C++ exception handling.
10028 * tracefile-tfile.c: Use C++ exception handling.
10029 * top.c: Use C++ exception handling.
10030 * thread.c: Use C++ exception handling.
10031 * target.c: Use C++ exception handling.
10032 * symmisc.c: Use C++ exception handling.
10033 * symfile-mem.c: Use C++ exception handling.
10034 * stack.c: Use C++ exception handling.
10035 * sparc64-linux-tdep.c: Use C++ exception handling.
10036 * solib.c: Use C++ exception handling.
10037 * solib-svr4.c: Use C++ exception handling.
10038 * solib-spu.c: Use C++ exception handling.
10039 * solib-frv.c: Use C++ exception handling.
10040 * solib-dsbt.c: Use C++ exception handling.
10041 * selftest-arch.c: Use C++ exception handling.
10042 * s390-tdep.c: Use C++ exception handling.
10043 * rust-lang.c: Use C++ exception handling.
10044 * rust-exp.y: Use C++ exception handling.
10045 * rs6000-tdep.c: Use C++ exception handling.
10046 * rs6000-aix-tdep.c: Use C++ exception handling.
10047 * riscv-tdep.c: Use C++ exception handling.
10048 * remote.c: Use C++ exception handling.
10049 * remote-fileio.c: Use C++ exception handling.
10050 * record-full.c: Use C++ exception handling.
10051 * record-btrace.c: Use C++ exception handling.
10052 * python/python.c: Use C++ exception handling.
10053 * python/py-value.c: Use C++ exception handling.
10054 * python/py-utils.c: Use C++ exception handling.
10055 * python/py-unwind.c: Use C++ exception handling.
10056 * python/py-type.c: Use C++ exception handling.
10057 * python/py-symbol.c: Use C++ exception handling.
10058 * python/py-record.c: Use C++ exception handling.
10059 * python/py-record-btrace.c: Use C++ exception handling.
10060 * python/py-progspace.c: Use C++ exception handling.
10061 * python/py-prettyprint.c: Use C++ exception handling.
10062 * python/py-param.c: Use C++ exception handling.
10063 * python/py-objfile.c: Use C++ exception handling.
10064 * python/py-linetable.c: Use C++ exception handling.
10065 * python/py-lazy-string.c: Use C++ exception handling.
10066 * python/py-infthread.c: Use C++ exception handling.
10067 * python/py-inferior.c: Use C++ exception handling.
10068 * python/py-gdb-readline.c: Use C++ exception handling.
10069 * python/py-framefilter.c: Use C++ exception handling.
10070 * python/py-frame.c: Use C++ exception handling.
10071 * python/py-finishbreakpoint.c: Use C++ exception handling.
10072 * python/py-cmd.c: Use C++ exception handling.
10073 * python/py-breakpoint.c: Use C++ exception handling.
10074 * python/py-arch.c: Use C++ exception handling.
10075 * printcmd.c: Use C++ exception handling.
10076 * ppc-linux-tdep.c: Use C++ exception handling.
10077 * parse.c: Use C++ exception handling.
10078 * p-valprint.c: Use C++ exception handling.
10079 * objc-lang.c: Use C++ exception handling.
10080 * mi/mi-main.c: Use C++ exception handling.
10081 * mi/mi-interp.c: Use C++ exception handling.
10082 * mi/mi-cmd-stack.c: Use C++ exception handling.
10083 * mi/mi-cmd-break.c: Use C++ exception handling.
10084 * main.c: Use C++ exception handling.
10085 * linux-thread-db.c: Use C++ exception handling.
10086 * linux-tdep.c: Use C++ exception handling.
10087 * linux-nat.c: Use C++ exception handling.
10088 * linux-fork.c: Use C++ exception handling.
10089 * linespec.c: Use C++ exception handling.
10090 * language.c: Use C++ exception handling.
10091 * jit.c: Use C++ exception handling.
10092 * infrun.c: Use C++ exception handling.
10093 * infcmd.c: Use C++ exception handling.
10094 * infcall.c: Use C++ exception handling.
10095 * inf-loop.c: Use C++ exception handling.
10096 * i386-tdep.c: Use C++ exception handling.
10097 * i386-linux-tdep.c: Use C++ exception handling.
10098 * guile/scm-value.c: Use C++ exception handling.
10099 * guile/scm-type.c: Use C++ exception handling.
10100 * guile/scm-symtab.c: Use C++ exception handling.
10101 * guile/scm-symbol.c: Use C++ exception handling.
10102 * guile/scm-pretty-print.c: Use C++ exception handling.
10103 * guile/scm-ports.c: Use C++ exception handling.
10104 * guile/scm-param.c: Use C++ exception handling.
10105 * guile/scm-math.c: Use C++ exception handling.
10106 * guile/scm-lazy-string.c: Use C++ exception handling.
10107 * guile/scm-frame.c: Use C++ exception handling.
10108 * guile/scm-disasm.c: Use C++ exception handling.
10109 * guile/scm-cmd.c: Use C++ exception handling.
10110 * guile/scm-breakpoint.c: Use C++ exception handling.
10111 * guile/scm-block.c: Use C++ exception handling.
10112 * guile/guile-internal.h: Use C++ exception handling.
10113 * gnu-v3-abi.c: Use C++ exception handling.
10114 * gdbtypes.c: Use C++ exception handling.
10115 * frame.c: Use C++ exception handling.
10116 * frame-unwind.c: Use C++ exception handling.
10117 * fbsd-tdep.c: Use C++ exception handling.
10118 * f-valprint.c: Use C++ exception handling.
10119 * exec.c: Use C++ exception handling.
10120 * event-top.c: Use C++ exception handling.
10121 * event-loop.c: Use C++ exception handling.
10122 * eval.c: Use C++ exception handling.
10123 * dwarf2read.c: Use C++ exception handling.
10124 * dwarf2loc.c: Use C++ exception handling.
10125 * dwarf2-frame.c: Use C++ exception handling.
10126 * dwarf2-frame-tailcall.c: Use C++ exception handling.
10127 * dwarf-index-write.c: Use C++ exception handling.
10128 * dwarf-index-cache.c: Use C++ exception handling.
10129 * dtrace-probe.c: Use C++ exception handling.
10130 * disasm-selftests.c: Use C++ exception handling.
10131 * darwin-nat.c: Use C++ exception handling.
10132 * cp-valprint.c: Use C++ exception handling.
10133 * cp-support.c: Use C++ exception handling.
10134 * cp-abi.c: Use C++ exception handling.
10135 * corelow.c: Use C++ exception handling.
10136 * completer.c: Use C++ exception handling.
10137 * compile/compile-object-run.c: Use C++ exception handling.
10138 * compile/compile-object-load.c: Use C++ exception handling.
10139 * compile/compile-cplus-symbols.c: Use C++ exception handling.
10140 * compile/compile-c-symbols.c: Use C++ exception handling.
10141 * common/selftest.c: Use C++ exception handling.
10142 * common/new-op.c: Use C++ exception handling.
10143 * cli/cli-script.c: Use C++ exception handling.
10144 * cli/cli-interp.c: Use C++ exception handling.
10145 * cli/cli-cmds.c: Use C++ exception handling.
10146 * c-varobj.c: Use C++ exception handling.
10147 * btrace.c: Use C++ exception handling.
10148 * breakpoint.c: Use C++ exception handling.
10149 * break-catch-throw.c: Use C++ exception handling.
10150 * arch-utils.c: Use C++ exception handling.
10151 * amd64-tdep.c: Use C++ exception handling.
10152 * ada-valprint.c: Use C++ exception handling.
10153 * ada-typeprint.c: Use C++ exception handling.
10154 * ada-lang.c: Use C++ exception handling.
10155 * aarch64-tdep.c: Use C++ exception handling.
10156
10157 2019-04-08 Tom Tromey <tom@tromey.com>
10158
10159 * xml-support.c (gdb_xml_parser::parse): Update.
10160 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
10161 * value.c (show_convenience): Update.
10162 * unittests/cli-utils-selftests.c (test_number_or_range_parser)
10163 (test_parse_flags_qcs): Update.
10164 * thread.c (thr_try_catch_cmd): Update.
10165 * target.c (target_translate_tls_address): Update.
10166 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
10167 (info_frame_command_core, frame_apply_command_count): Update.
10168 * rust-exp.y (rust_lex_exception_test): Update.
10169 * riscv-tdep.c (riscv_print_one_register_info): Update.
10170 * remote.c (remote_target::enable_btrace): Update.
10171 * record-btrace.c (record_btrace_enable_warn): Update.
10172 * python/py-utils.c (gdbpy_convert_exception): Update.
10173 * printcmd.c (do_one_display, print_variable_and_value): Update.
10174 * mi/mi-main.c (mi_print_exception): Update.
10175 * mi/mi-interp.c (mi_cmd_interpreter_exec): Use SCOPE_EXIT.
10176 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
10177 * linux-nat.c (linux_nat_target::attach): Update.
10178 * linux-fork.c (class scoped_switch_fork_info): Update.
10179 * infrun.c (displaced_step_prepare): Update.
10180 * infcall.c (call_function_by_hand_dummy): Update.
10181 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception): Update.
10182 * gnu-v3-abi.c (print_one_vtable): Update.
10183 * frame.c (get_prev_frame_always): Update.
10184 * f-valprint.c (info_common_command_for_block): Update.
10185 * exec.c (try_open_exec_file): Update.
10186 * exceptions.c (print_exception, exception_print)
10187 (exception_fprintf, exception_print_same): Update.
10188 * dwarf2-frame.c (dwarf2_build_frame_info): Update.
10189 * dwarf-index-cache.c (index_cache::store)
10190 (index_cache::lookup_gdb_index): Update.
10191 * darwin-nat.c (maybe_cache_shell): Update.
10192 * cp-valprint.c (cp_print_value_fields): Update.
10193 * compile/compile-cplus-symbols.c (gcc_cplus_convert_symbol)
10194 (gcc_cplus_symbol_address): Update.
10195 * compile/compile-c-symbols.c (gcc_convert_symbol)
10196 (gcc_symbol_address, generate_c_for_for_one_variable): Update.
10197 * common/selftest.c: Update.
10198 * common/common-exceptions.h (struct gdb_exception) <message>: Now
10199 a std::string.
10200 (exception_try_scope_entry, exception_try_scope_exit): Don't
10201 declare.
10202 (struct exception_try_scope): Remove.
10203 (TRY): Don't use exception_try_scope.
10204 (struct gdb_exception): Add constructor, operator=.
10205 <what>: New method.
10206 (struct gdb_exception_RETURN_MASK_ALL)
10207 (struct gdb_exception_RETURN_MASK_ERROR)
10208 (struct gdb_exception_RETURN_MASK_QUIT): Add constructor.
10209 (struct gdb_quit_bad_alloc): Update.
10210 * common/common-exceptions.c (exception_none): Change
10211 initializer.
10212 (struct catcher) <state, exception>: Initialize inline.
10213 <prev>: Remove member.
10214 (current_catcher): Remove.
10215 (catchers): New global.
10216 (exceptions_state_mc_init): Simplify.
10217 (catcher_pop): Remove.
10218 (exceptions_state_mc, exceptions_state_mc_catch): Update.
10219 (try_scope_depth, exception_try_scope_entry)
10220 (exception_try_scope_exit): Remove.
10221 (throw_exception_sjlj): Update.
10222 (exception_messages, exception_messages_size): Remove.
10223 (throw_it): Simplify.
10224 (gdb_exception_sliced_copy): Remove.
10225 (throw_exception_cxx): Update.
10226 * cli/cli-script.c (script_from_file): Update.
10227 * breakpoint.c (insert_bp_location, update_breakpoint_locations):
10228 Update.
10229 * ada-valprint.c (ada_val_print): Update.
10230 * ada-lang.c (ada_to_fixed_type_1, ada_exception_name_addr)
10231 (create_excep_cond_exprs): Update.
10232
10233 2019-04-08 Tom Tromey <tom@tromey.com>
10234
10235 * common/common-exceptions.h (GDB_XCPT_SJMP, GDB_XCPT_TRY)
10236 (GDB_XCPT_RAW_TRY, GDB_XCPT): Remove.
10237 (TRY, CATCH, END_CATCH): Remove some definitions.
10238 * common/common-exceptions.c: Don't use GDB_XCPT.
10239 (catcher_list_size): Remove.
10240 (throw_exception, throw_it): Simplify.
10241
10242 2019-04-05 Tom Tromey <tom@tromey.com>
10243
10244 Revert the header-sorting patch.
10245 * ft32-tdep.c: Revert.
10246 * frv-tdep.c: Revert.
10247 * frv-linux-tdep.c: Revert.
10248 * frame.c: Revert.
10249 * frame-unwind.c: Revert.
10250 * frame-base.c: Revert.
10251 * fork-child.c: Revert.
10252 * findvar.c: Revert.
10253 * findcmd.c: Revert.
10254 * filesystem.c: Revert.
10255 * filename-seen-cache.h: Revert.
10256 * filename-seen-cache.c: Revert.
10257 * fbsd-tdep.c: Revert.
10258 * fbsd-nat.h: Revert.
10259 * fbsd-nat.c: Revert.
10260 * f-valprint.c: Revert.
10261 * f-typeprint.c: Revert.
10262 * f-lang.c: Revert.
10263 * extension.h: Revert.
10264 * extension.c: Revert.
10265 * extension-priv.h: Revert.
10266 * expprint.c: Revert.
10267 * exec.h: Revert.
10268 * exec.c: Revert.
10269 * exceptions.c: Revert.
10270 * event-top.c: Revert.
10271 * event-loop.c: Revert.
10272 * eval.c: Revert.
10273 * elfread.c: Revert.
10274 * dwarf2read.h: Revert.
10275 * dwarf2read.c: Revert.
10276 * dwarf2loc.c: Revert.
10277 * dwarf2expr.h: Revert.
10278 * dwarf2expr.c: Revert.
10279 * dwarf2-frame.c: Revert.
10280 * dwarf2-frame-tailcall.c: Revert.
10281 * dwarf-index-write.h: Revert.
10282 * dwarf-index-write.c: Revert.
10283 * dwarf-index-common.c: Revert.
10284 * dwarf-index-cache.h: Revert.
10285 * dwarf-index-cache.c: Revert.
10286 * dummy-frame.c: Revert.
10287 * dtrace-probe.c: Revert.
10288 * disasm.h: Revert.
10289 * disasm.c: Revert.
10290 * disasm-selftests.c: Revert.
10291 * dictionary.c: Revert.
10292 * dicos-tdep.c: Revert.
10293 * demangle.c: Revert.
10294 * dcache.h: Revert.
10295 * dcache.c: Revert.
10296 * darwin-nat.h: Revert.
10297 * darwin-nat.c: Revert.
10298 * darwin-nat-info.c: Revert.
10299 * d-valprint.c: Revert.
10300 * d-namespace.c: Revert.
10301 * d-lang.c: Revert.
10302 * ctf.c: Revert.
10303 * csky-tdep.c: Revert.
10304 * csky-linux-tdep.c: Revert.
10305 * cris-tdep.c: Revert.
10306 * cris-linux-tdep.c: Revert.
10307 * cp-valprint.c: Revert.
10308 * cp-support.c: Revert.
10309 * cp-namespace.c: Revert.
10310 * cp-abi.c: Revert.
10311 * corelow.c: Revert.
10312 * corefile.c: Revert.
10313 * continuations.c: Revert.
10314 * completer.h: Revert.
10315 * completer.c: Revert.
10316 * complaints.c: Revert.
10317 * coffread.c: Revert.
10318 * coff-pe-read.c: Revert.
10319 * cli-out.h: Revert.
10320 * cli-out.c: Revert.
10321 * charset.c: Revert.
10322 * c-varobj.c: Revert.
10323 * c-valprint.c: Revert.
10324 * c-typeprint.c: Revert.
10325 * c-lang.c: Revert.
10326 * buildsym.c: Revert.
10327 * buildsym-legacy.c: Revert.
10328 * build-id.h: Revert.
10329 * build-id.c: Revert.
10330 * btrace.c: Revert.
10331 * bsd-uthread.c: Revert.
10332 * breakpoint.h: Revert.
10333 * breakpoint.c: Revert.
10334 * break-catch-throw.c: Revert.
10335 * break-catch-syscall.c: Revert.
10336 * break-catch-sig.c: Revert.
10337 * blockframe.c: Revert.
10338 * block.c: Revert.
10339 * bfin-tdep.c: Revert.
10340 * bfin-linux-tdep.c: Revert.
10341 * bfd-target.c: Revert.
10342 * bcache.c: Revert.
10343 * ax-general.c: Revert.
10344 * ax-gdb.h: Revert.
10345 * ax-gdb.c: Revert.
10346 * avr-tdep.c: Revert.
10347 * auxv.c: Revert.
10348 * auto-load.c: Revert.
10349 * arm-wince-tdep.c: Revert.
10350 * arm-tdep.c: Revert.
10351 * arm-symbian-tdep.c: Revert.
10352 * arm-pikeos-tdep.c: Revert.
10353 * arm-obsd-tdep.c: Revert.
10354 * arm-nbsd-tdep.c: Revert.
10355 * arm-nbsd-nat.c: Revert.
10356 * arm-linux-tdep.c: Revert.
10357 * arm-linux-nat.c: Revert.
10358 * arm-fbsd-tdep.c: Revert.
10359 * arm-fbsd-nat.c: Revert.
10360 * arm-bsd-tdep.c: Revert.
10361 * arch-utils.c: Revert.
10362 * arc-tdep.c: Revert.
10363 * arc-newlib-tdep.c: Revert.
10364 * annotate.h: Revert.
10365 * annotate.c: Revert.
10366 * amd64-windows-tdep.c: Revert.
10367 * amd64-windows-nat.c: Revert.
10368 * amd64-tdep.c: Revert.
10369 * amd64-sol2-tdep.c: Revert.
10370 * amd64-obsd-tdep.c: Revert.
10371 * amd64-obsd-nat.c: Revert.
10372 * amd64-nbsd-tdep.c: Revert.
10373 * amd64-nbsd-nat.c: Revert.
10374 * amd64-nat.c: Revert.
10375 * amd64-linux-tdep.c: Revert.
10376 * amd64-linux-nat.c: Revert.
10377 * amd64-fbsd-tdep.c: Revert.
10378 * amd64-fbsd-nat.c: Revert.
10379 * amd64-dicos-tdep.c: Revert.
10380 * amd64-darwin-tdep.c: Revert.
10381 * amd64-bsd-nat.c: Revert.
10382 * alpha-tdep.c: Revert.
10383 * alpha-obsd-tdep.c: Revert.
10384 * alpha-nbsd-tdep.c: Revert.
10385 * alpha-mdebug-tdep.c: Revert.
10386 * alpha-linux-tdep.c: Revert.
10387 * alpha-linux-nat.c: Revert.
10388 * alpha-bsd-tdep.c: Revert.
10389 * alpha-bsd-nat.c: Revert.
10390 * aix-thread.c: Revert.
10391 * agent.c: Revert.
10392 * addrmap.c: Revert.
10393 * ada-varobj.c: Revert.
10394 * ada-valprint.c: Revert.
10395 * ada-typeprint.c: Revert.
10396 * ada-tasks.c: Revert.
10397 * ada-lang.c: Revert.
10398 * aarch64-tdep.c: Revert.
10399 * aarch64-ravenscar-thread.c: Revert.
10400 * aarch64-newlib-tdep.c: Revert.
10401 * aarch64-linux-tdep.c: Revert.
10402 * aarch64-linux-nat.c: Revert.
10403 * aarch64-fbsd-tdep.c: Revert.
10404 * aarch64-fbsd-nat.c: Revert.
10405 * aarch32-linux-nat.c: Revert.
10406
10407 2019-04-05 Tom Tromey <tom@tromey.com>
10408
10409 * ft32-tdep.c: Sort headers.
10410 * frv-tdep.c: Sort headers.
10411 * frv-linux-tdep.c: Sort headers.
10412 * frame.c: Sort headers.
10413 * frame-unwind.c: Sort headers.
10414 * frame-base.c: Sort headers.
10415 * fork-child.c: Sort headers.
10416 * findvar.c: Sort headers.
10417 * findcmd.c: Sort headers.
10418 * filesystem.c: Sort headers.
10419 * filename-seen-cache.h: Sort headers.
10420 * filename-seen-cache.c: Sort headers.
10421 * fbsd-tdep.c: Sort headers.
10422 * fbsd-nat.h: Sort headers.
10423 * fbsd-nat.c: Sort headers.
10424 * f-valprint.c: Sort headers.
10425 * f-typeprint.c: Sort headers.
10426 * f-lang.c: Sort headers.
10427 * extension.h: Sort headers.
10428 * extension.c: Sort headers.
10429 * extension-priv.h: Sort headers.
10430 * expprint.c: Sort headers.
10431 * exec.h: Sort headers.
10432 * exec.c: Sort headers.
10433 * exceptions.c: Sort headers.
10434 * event-top.c: Sort headers.
10435 * event-loop.c: Sort headers.
10436 * eval.c: Sort headers.
10437 * elfread.c: Sort headers.
10438 * dwarf2read.h: Sort headers.
10439 * dwarf2read.c: Sort headers.
10440 * dwarf2loc.c: Sort headers.
10441 * dwarf2expr.h: Sort headers.
10442 * dwarf2expr.c: Sort headers.
10443 * dwarf2-frame.c: Sort headers.
10444 * dwarf2-frame-tailcall.c: Sort headers.
10445 * dwarf-index-write.h: Sort headers.
10446 * dwarf-index-write.c: Sort headers.
10447 * dwarf-index-common.c: Sort headers.
10448 * dwarf-index-cache.h: Sort headers.
10449 * dwarf-index-cache.c: Sort headers.
10450 * dummy-frame.c: Sort headers.
10451 * dtrace-probe.c: Sort headers.
10452 * disasm.h: Sort headers.
10453 * disasm.c: Sort headers.
10454 * disasm-selftests.c: Sort headers.
10455 * dictionary.c: Sort headers.
10456 * dicos-tdep.c: Sort headers.
10457 * demangle.c: Sort headers.
10458 * dcache.h: Sort headers.
10459 * dcache.c: Sort headers.
10460 * darwin-nat.h: Sort headers.
10461 * darwin-nat.c: Sort headers.
10462 * darwin-nat-info.c: Sort headers.
10463 * d-valprint.c: Sort headers.
10464 * d-namespace.c: Sort headers.
10465 * d-lang.c: Sort headers.
10466 * ctf.c: Sort headers.
10467 * csky-tdep.c: Sort headers.
10468 * csky-linux-tdep.c: Sort headers.
10469 * cris-tdep.c: Sort headers.
10470 * cris-linux-tdep.c: Sort headers.
10471 * cp-valprint.c: Sort headers.
10472 * cp-support.c: Sort headers.
10473 * cp-namespace.c: Sort headers.
10474 * cp-abi.c: Sort headers.
10475 * corelow.c: Sort headers.
10476 * corefile.c: Sort headers.
10477 * continuations.c: Sort headers.
10478 * completer.h: Sort headers.
10479 * completer.c: Sort headers.
10480 * complaints.c: Sort headers.
10481 * coffread.c: Sort headers.
10482 * coff-pe-read.c: Sort headers.
10483 * cli-out.h: Sort headers.
10484 * cli-out.c: Sort headers.
10485 * charset.c: Sort headers.
10486 * c-varobj.c: Sort headers.
10487 * c-valprint.c: Sort headers.
10488 * c-typeprint.c: Sort headers.
10489 * c-lang.c: Sort headers.
10490 * buildsym.c: Sort headers.
10491 * buildsym-legacy.c: Sort headers.
10492 * build-id.h: Sort headers.
10493 * build-id.c: Sort headers.
10494 * btrace.c: Sort headers.
10495 * bsd-uthread.c: Sort headers.
10496 * breakpoint.h: Sort headers.
10497 * breakpoint.c: Sort headers.
10498 * break-catch-throw.c: Sort headers.
10499 * break-catch-syscall.c: Sort headers.
10500 * break-catch-sig.c: Sort headers.
10501 * blockframe.c: Sort headers.
10502 * block.c: Sort headers.
10503 * bfin-tdep.c: Sort headers.
10504 * bfin-linux-tdep.c: Sort headers.
10505 * bfd-target.c: Sort headers.
10506 * bcache.c: Sort headers.
10507 * ax-general.c: Sort headers.
10508 * ax-gdb.h: Sort headers.
10509 * ax-gdb.c: Sort headers.
10510 * avr-tdep.c: Sort headers.
10511 * auxv.c: Sort headers.
10512 * auto-load.c: Sort headers.
10513 * arm-wince-tdep.c: Sort headers.
10514 * arm-tdep.c: Sort headers.
10515 * arm-symbian-tdep.c: Sort headers.
10516 * arm-pikeos-tdep.c: Sort headers.
10517 * arm-obsd-tdep.c: Sort headers.
10518 * arm-nbsd-tdep.c: Sort headers.
10519 * arm-nbsd-nat.c: Sort headers.
10520 * arm-linux-tdep.c: Sort headers.
10521 * arm-linux-nat.c: Sort headers.
10522 * arm-fbsd-tdep.c: Sort headers.
10523 * arm-fbsd-nat.c: Sort headers.
10524 * arm-bsd-tdep.c: Sort headers.
10525 * arch-utils.c: Sort headers.
10526 * arc-tdep.c: Sort headers.
10527 * arc-newlib-tdep.c: Sort headers.
10528 * annotate.h: Sort headers.
10529 * annotate.c: Sort headers.
10530 * amd64-windows-tdep.c: Sort headers.
10531 * amd64-windows-nat.c: Sort headers.
10532 * amd64-tdep.c: Sort headers.
10533 * amd64-sol2-tdep.c: Sort headers.
10534 * amd64-obsd-tdep.c: Sort headers.
10535 * amd64-obsd-nat.c: Sort headers.
10536 * amd64-nbsd-tdep.c: Sort headers.
10537 * amd64-nbsd-nat.c: Sort headers.
10538 * amd64-nat.c: Sort headers.
10539 * amd64-linux-tdep.c: Sort headers.
10540 * amd64-linux-nat.c: Sort headers.
10541 * amd64-fbsd-tdep.c: Sort headers.
10542 * amd64-fbsd-nat.c: Sort headers.
10543 * amd64-dicos-tdep.c: Sort headers.
10544 * amd64-darwin-tdep.c: Sort headers.
10545 * amd64-bsd-nat.c: Sort headers.
10546 * alpha-tdep.c: Sort headers.
10547 * alpha-obsd-tdep.c: Sort headers.
10548 * alpha-nbsd-tdep.c: Sort headers.
10549 * alpha-mdebug-tdep.c: Sort headers.
10550 * alpha-linux-tdep.c: Sort headers.
10551 * alpha-linux-nat.c: Sort headers.
10552 * alpha-bsd-tdep.c: Sort headers.
10553 * alpha-bsd-nat.c: Sort headers.
10554 * aix-thread.c: Sort headers.
10555 * agent.c: Sort headers.
10556 * addrmap.c: Sort headers.
10557 * ada-varobj.c: Sort headers.
10558 * ada-valprint.c: Sort headers.
10559 * ada-typeprint.c: Sort headers.
10560 * ada-tasks.c: Sort headers.
10561 * ada-lang.c: Sort headers.
10562 * aarch64-tdep.c: Sort headers.
10563 * aarch64-ravenscar-thread.c: Sort headers.
10564 * aarch64-newlib-tdep.c: Sort headers.
10565 * aarch64-linux-tdep.c: Sort headers.
10566 * aarch64-linux-nat.c: Sort headers.
10567 * aarch64-fbsd-tdep.c: Sort headers.
10568 * aarch64-fbsd-nat.c: Sort headers.
10569 * aarch32-linux-nat.c: Sort headers.
10570
10571 2019-04-04 Tom Tromey <tom@tromey.com>
10572
10573 * varobj.c (varobj_create): Update.
10574 * rust-exp.y (struct rust_parser) <update_innermost_block,
10575 lookup_symbol>: New methods.
10576 (rust_parser::update_innermost_block, rust_parser::lookup_symbol):
10577 Rename.
10578 (rust_parser::rust_lookup_type)
10579 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
10580 * printcmd.c (display_command, do_one_display): Update.
10581 * parser-defs.h (struct parser_state) <parser_state>: Add
10582 "tracker" parameter.
10583 (block_tracker): New member.
10584 (class innermost_block_tracker) <innermost_block_tracker>: Add
10585 "types" parameter.
10586 <reset>: Remove method.
10587 (innermost_block): Don't declare.
10588 (null_post_parser): Update.
10589 * parse.c (innermost_block): Remove global.
10590 (write_dollar_variable): Update.
10591 (parse_exp_1, parse_exp_in_context): Add "tracker" parameter.
10592 Remove "tracker_types" parameter.
10593 (parse_expression): Add "tracker" parameter.
10594 (parse_expression_for_completion): Update.
10595 (null_post_parser): Add "tracker" parameter.
10596 * p-exp.y: Update rules.
10597 * m2-exp.y: Update rules.
10598 * language.h (struct language_defn) <la_post_parser>: Add
10599 "tracker" parameter.
10600 * go-exp.y: Update rules.
10601 * f-exp.y: Update rules.
10602 * expression.h (parse_expression, parse_exp_1): Add "tracker"
10603 parameter.
10604 * d-exp.y: Update rules.
10605 * c-exp.y: Update rules.
10606 * breakpoint.c (set_breakpoint_condition): Create an
10607 innermost_block_tracker.
10608 (watch_command_1): Likewise.
10609 * ada-lang.c (resolve): Add "tracker" parameter.
10610 (resolve_subexp): Likewise.
10611 * ada-exp.y (write_var_from_sym): Update.
10612
10613 2019-04-04 Tom Tromey <tom@tromey.com>
10614
10615 * type-stack.h: New file.
10616 * type-stack.c: New file.
10617 * parser-defs.h (enum type_pieces, union type_stack_elt): Move to
10618 type-stack.h.
10619 (insert_into_type_stack, insert_type, push_type, push_type_int)
10620 (insert_type_address_space, pop_type, pop_type_int)
10621 (pop_typelist, pop_type_stack, append_type_stack)
10622 (push_type_stack, get_type_stack, push_typelist)
10623 (follow_type_instance_flags, follow_types): Don't declare.
10624 * parse.c (type_stack): Remove global.
10625 (parse_exp_in_context): Update.
10626 (insert_into_type_stack, insert_type, push_type, push_type_int)
10627 (insert_type_address_space, pop_type, pop_type_int)
10628 (pop_typelist, pop_type_stack, append_type_stack)
10629 (push_type_stack, get_type_stack, push_typelist)
10630 (follow_type_instance_flags, follow_types): Remove (moved to
10631 type-stack.c).
10632 * f-exp.y (type_stack): New global.
10633 Update rules.
10634 (push_kind_type, f_parse): Update.
10635 * d-exp.y (type_stack): New global.
10636 Update rules.
10637 (d_parse): Update.
10638 * c-exp.y (struct c_parse_state) <type_stack>: New member.
10639 Update rules.
10640 * Makefile.in (COMMON_SFILES): Add type-stack.c.
10641 (HFILES_NO_SRCDIR): Add type-stack.h.
10642
10643 2019-04-04 Tom Tromey <tom@tromey.com>
10644
10645 * rust-exp.y (rust_parser::lex_identifier, rustyylex)
10646 (rust_parser::convert_ast_to_expression, rust_parse)
10647 (rust_lex_test_completion, rust_lex_tests): Update.
10648 * parser-defs.h (struct expr_completion_state): New.
10649 (struct parser_state) <parser_state>: Add completion parameter.
10650 <mark_struct_expression, mark_completion_tag>: New methods.
10651 <parse_completion, m_completion_state>: New members.
10652 (prefixify_expression, null_post_parser): Update.
10653 (mark_struct_expression, mark_completion_tag): Don't declare.
10654 * parse.c (parse_completion, expout_last_struct)
10655 (expout_tag_completion_type, expout_completion_name): Remove
10656 globals.
10657 (parser_state::mark_struct_expression)
10658 (parser_state::mark_completion_tag): Now methods.
10659 (prefixify_expression): Add last_struct parameter.
10660 (prefixify_subexp): Likewise.
10661 (parse_exp_1): Update.
10662 (parse_exp_in_context): Add cstate parameter. Update.
10663 (parse_expression_for_completion): Create an
10664 expr_completion_state.
10665 (null_post_parser): Add "completion" parameter.
10666 * p-exp.y: Update rules.
10667 (yylex): Update.
10668 * language.h (struct language_defn) <la_post_parser>: Add
10669 "completing" parameter.
10670 * go-exp.y: Update rules.
10671 (lex_one_token): Update.
10672 * expression.h (parse_completion): Don't declare.
10673 * d-exp.y: Update rules.
10674 (lex_one_token): Update rules.
10675 * c-exp.y: Update rules.
10676 (lex_one_token): Update.
10677 * ada-lang.c (resolve): Add "parse_completion" parameter.
10678 (resolve_subexp): Likewise.
10679 (ada_resolve_function): Likewise.
10680
10681 2019-04-04 Tom Tromey <tom@tromey.com>
10682
10683 * parser-defs.h (struct parser_state) <start_arglist,
10684 end_arglist>: New methods.
10685 <arglist_len, m_funcall_chain>: New members.
10686 (arglist_len, start_arglist, end_arglist): Don't declare.
10687 * parse.c (arglist_len, funcall_chain): Remove global.
10688 (start_arglist, end_arglist): Remove functions.
10689 (parse_exp_in_context): Update.
10690 * p-exp.y: Update rules.
10691 * m2-exp.y: Update rules.
10692 * go-exp.y: Update rules.
10693 * f-exp.y: Update rules.
10694 * d-exp.y: Update rules.
10695 * c-exp.y: Update rules.
10696
10697 2019-04-04 Tom Tromey <tom@tromey.com>
10698
10699 * rust-exp.y (struct rust_parser) <lex_hex, lex_escape,
10700 lex_operator, push_back>: New methods.
10701 Update all rules.
10702 (rust_parser::lex_hex, lex_escape): Rename and update.
10703 (rust_parser::lex_string, rust_parser::lex_identifier): Update.
10704 (rust_parser::lex_operator): Rename and update.
10705 (rust_parser::lex_number, rustyylex, rustyyerror)
10706 (rust_lex_test_init, rust_lex_test_sequence)
10707 (rust_lex_test_push_back, rust_lex_tests): Update.
10708 * parser-defs.h (struct parser_state) <parser_state>: Add "input"
10709 parameter.
10710 <lexptr, prev_lexptr>: New members.
10711 (lexptr, prev_lexptr): Don't declare.
10712 * parse.c (lexptr, prev_lexptr): Remove globals.
10713 (parse_exp_in_context): Update.
10714 * p-exp.y (yylex, yyerror): Update.
10715 * m2-exp.y (parse_number, yylex, yyerror): Update.
10716 * go-exp.y (lex_one_token, yyerror): Update.
10717 * f-exp.y (match_string_literal, yylex, yyerror): Update.
10718 * d-exp.y (lex_one_token, yyerror): Update.
10719 * c-exp.y (scan_macro_expansion, finished_macro_expansion)
10720 (lex_one_token, yyerror): Update.
10721 * ada-lex.l (YY_INPUT): Update.
10722 (rewind_to_char): Update.
10723 * ada-exp.y (yyerror): Update.
10724
10725 2019-04-04 Tom Tromey <tom@tromey.com>
10726
10727 * rust-exp.y (rustyylex, rust_lex_tests): Update.
10728 * parser-defs.h (struct parser_state) <parser_state>: Add new
10729 parameter.
10730 <comma_terminates>: New member.
10731 (comma_terminates): Don't declare global.
10732 * parse.c (comma_terminates): Remove global.
10733 (parse_exp_in_context): Update.
10734 * p-exp.y (yylex): Update.
10735 * m2-exp.y (yylex): Update.
10736 * go-exp.y (lex_one_token): Update.
10737 * f-exp.y (yylex): Update.
10738 * d-exp.y (lex_one_token): Update.
10739 * c-exp.y (lex_one_token): Update.
10740 * ada-lex.l: Update.
10741
10742 2019-04-04 Tom Tromey <tom@tromey.com>
10743
10744 * rust-exp.y (struct rust_parser) <paren_depth>: New member.
10745 (rustyylex, rust_lex_test_init, rust_lex_test_one)
10746 (rust_lex_test_sequence, rust_lex_test_push_back): Update.
10747 * parser-defs.h (paren_depth): Don't declare.
10748 * parse.c (paren_depth): Remove global.
10749 (parse_exp_in_context): Update.
10750 * p-exp.y (paren_depth): New global.
10751 (pascal_parse): Initialize it.
10752 * m2-exp.y (paren_depth): New global.
10753 (m2_parse): Initialize it.
10754 * go-exp.y (paren_depth): New global.
10755 (go_parse): Initialize it.
10756 * f-exp.y (paren_depth): New global.
10757 (f_parse): Initialize it.
10758 * d-exp.y (paren_depth): New global.
10759 (d_parse): Initialize it.
10760 * c-exp.y (paren_depth): New global.
10761 (c_parse): Initialize it.
10762 * ada-lex.l (paren_depth): New global.
10763 (lexer_init): Initialize it.
10764
10765 2019-04-04 Tom Tromey <tom@tromey.com>
10766
10767 * rust-exp.y (rust_parser::crate_name, rust_parser::super_name)
10768 (rust_parser::convert_ast_to_type)
10769 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
10770 * parser-defs.h (struct parser_state) <parser_state>: Add
10771 parameters. Initialize new members.
10772 <expression_context_block, expression_context_pc>: New members.
10773 * parse.c (expression_context_block, expression_context_pc):
10774 Remove globals.
10775 (parse_exp_in_context): Update.
10776 * p-exp.y: Update all rules.
10777 (yylex): Update.
10778 * m2-exp.y: Update all rules.
10779 (yylex): Update.
10780 * go-exp.y (yylex): Update.
10781 * f-exp.y (yylex): Update.
10782 * d-exp.y: Update all rules.
10783 (yylex): Update.
10784 * c-exp.y: Update all rules.
10785 (lex_one_token, classify_name, yylex, c_parse): Update.
10786 * ada-exp.y (write_var_or_type, write_name_assoc): Update.
10787
10788 2019-04-04 Tom Tromey <tom@tromey.com>
10789
10790 * gdbarch.h, gdbarch.c: Rebuild.
10791 * gdbarch.sh (dtrace_parse_probe_argument): Change type.
10792 * stap-probe.h:
10793 (struct stap_parse_info): Replace "parser_state" with
10794 "expr_builder".
10795 * parser-defs.h (struct expr_builder): Rename from "parser_state".
10796 (parser_state): New class.
10797 * parse.c (expr_builder): Rename.
10798 (expr_builder::release): Rename.
10799 (write_exp_elt, write_exp_elt_opcode, write_exp_elt_sym)
10800 (write_exp_elt_msym, write_exp_elt_block, write_exp_elt_objfile)
10801 (write_exp_elt_longcst, write_exp_elt_floatcst)
10802 (write_exp_elt_type, write_exp_elt_intern, write_exp_string)
10803 (write_exp_string_vector, write_exp_bitstring)
10804 (write_exp_msymbol, mark_struct_expression)
10805 (write_dollar_variable)
10806 (insert_type_address_space, increase_expout_size): Replace
10807 "parser_state" with "expr_builder".
10808 * dtrace-probe.c: Replace "parser_state" with "expr_builder".
10809 * amd64-linux-tdep.c (amd64_dtrace_parse_probe_argument): Replace
10810 "parser_state" with "expr_builder".
10811
10812 2019-04-04 Tom Tromey <tom@tromey.com>
10813
10814 * rust-exp.y: Replace "parse_language" with method call.
10815 * p-exp.y:
10816 (yylex): Replace "parse_language" with method call.
10817 * m2-exp.y:
10818 (yylex): Replace "parse_language" with method call.
10819 * go-exp.y (classify_name): Replace "parse_language" with method
10820 call.
10821 * f-exp.y (yylex): Replace "parse_language" with method call.
10822 * d-exp.y (lex_one_token): Replace "parse_language" with method
10823 call.
10824 * c-exp.y:
10825 (lex_one_token, classify_name, yylex): Replace "parse_language"
10826 with method call.
10827 * ada-exp.y (find_primitive_type, type_char)
10828 (type_system_address): Replace "parse_language" with method call.
10829
10830 2019-04-04 Tom Tromey <tom@tromey.com>
10831
10832 * rust-exp.y: Replace "parse_gdbarch" with method call.
10833 * parse.c (write_dollar_variable, insert_type_address_space):
10834 Replace "parse_gdbarch" with method call.
10835 * p-exp.y (parse_type, yylex): Replace "parse_gdbarch" with method
10836 call.
10837 * objc-lang.c (end_msglist): Replace "parse_gdbarch" with method
10838 call.
10839 * m2-exp.y (parse_type, parse_m2_type, yylex): Replace
10840 "parse_gdbarch" with method call.
10841 * go-exp.y (parse_type, classify_name): Replace "parse_gdbarch"
10842 with method call.
10843 * f-exp.y (parse_type, parse_f_type, yylex): Replace
10844 "parse_gdbarch" with method call.
10845 * d-exp.y (parse_type, parse_d_type, lex_one_token): Replace
10846 "parse_gdbarch" with method call.
10847 * c-exp.y (parse_type, parse_number, classify_name): Replace
10848 "parse_gdbarch" with method call.
10849 * ada-lex.l: Replace "parse_gdbarch" with method call.
10850 * ada-exp.y (parse_type, find_primitive_type, type_char)
10851 (type_system_address): Replace "parse_gdbarch" with method call.
10852
10853 2019-04-04 Tom Tromey <tom@tromey.com>
10854
10855 * dtrace-probe.c (dtrace_probe::build_arg_exprs): Update.
10856 * stap-probe.c (stap_parse_argument): Update.
10857 * stap-probe.h (struct stap_parse_info) <stap_parse_info>: Remove
10858 initial_size parameter.
10859 * rust-exp.y (rust_lex_tests): Update.
10860 * parse.c (parser_state): Update.
10861 (parse_exp_in_context): Update.
10862 * parser-defs.h (struct parser_state) <parser_state>: Remove
10863 "initial_size" parameter.
10864
10865 2019-04-04 Tom Tromey <tom@tromey.com>
10866
10867 * parser-defs.h (increase_expout_size): Don't declare.
10868 * parse.c (increase_expout_size): Now static.
10869
10870 2019-04-04 Thomas Schwinge <thomas@codesourcery.com>
10871
10872 * gnu-nat.c (gnu_nat_target::wait): Fix
10873 target_waitstatus_to_string call.
10874
10875 2019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
10876
10877 * eval.c (evaluate_subexp_standard): Handle internal functions
10878 during Fortran function call handling.
10879
10880 2019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
10881
10882 * NEWS: Mention new internal functions.
10883 * dwarf2read.c (dwarf2_init_complex_target_type): New function.
10884 (read_base_type): Use dwarf2_init_complex_target_type.
10885 * value.c (creal_internal_fn): New function.
10886 (cimag_internal_fn): New function.
10887 (_initialize_values): Register new internal functions.
10888
10889 2019-04-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10890
10891 * infrun.c (stop_all_threads): If debug_infrun, always
10892 trace the wait status after wait_one, using
10893 target_waitstatus_to_string and target_pid_to_str.
10894 (handle_inferior_event): Replace various trace of
10895 wait status kind by a single trace.
10896 * gdb/gnu-nat.c (gnu_nat_target::wait): Replace local
10897 wait status kind image by target_waitstatus_to_string.
10898 * target/waitstatus.c (target_waitstatus_to_string): Fix
10899 obsolete comment.
10900
10901 2019-04-01 Tom Tromey <tromey@adacore.com>
10902
10903 PR symtab/23331:
10904 * dwarf2read.c (partial_die_info::read): Handle DW_AT_ranges.
10905
10906 2019-04-01 Sergio Durigan Junior <sergiodj@redhat.com>
10907 Pedro Alves <palves@redhat.com>
10908
10909 * top.c (quit_force): Call 'finalize_values'.
10910 * value.c (finalize_values): New function.
10911 * value.h (finalize_values): Declare.
10912
10913 2019-03-30 Eli Zaretskii <eliz@gnu.org>
10914
10915 * NEWS: Announce $_gdb_major and $_gdb_minor.
10916
10917 * top.c (init_gdb_version_vars): New function.
10918 (gdb_init): Call init_gdb_version_vars.
10919
10920 2019-03-29 Tom Tromey <tromey@adacore.com>
10921
10922 * printcmd.c (_initialize_printcmd): Add usage lines. Update some
10923 help text. Remove dead code.
10924
10925 2019-03-29 Keith Seitz <keiths@redhat.com>
10926
10927 From Siddhesh Poyarekar:
10928 * f-lang.h (f77_get_upperbound): Return LONGEST.
10929 (f77_get_lowerbound): Likewise.
10930 * f-typeprint.c (f_type_print_varspec_suffix): Expand
10931 UPPER_BOUND and LOWER_BOUND to LONGEST. Use plongest to format
10932 print them.
10933 (f_type_print_base): Expand UPPER_BOUND to LONGEST. Use
10934 plongest to format print it.
10935 * f-valprint.c (f77_get_lowerbound): Return LONGEST.
10936 (f77_get_upperbound): Likewise.
10937 (f77_get_dynamic_length_of_aggregate): Expand UPPER_BOUND,
10938 LOWER_BOUND to LONGEST.
10939 (f77_create_arrayprint_offset_tbl): Likewise.
10940
10941 2019-03-29 Keith Seitz <keiths@redhat.com>
10942
10943 * ada-lang.c (ada_template_to_fixed_record_type_1): Use
10944 %s/pulongest for TYPE_LENGTH instead of %d in format
10945 strings.
10946 * ada-typerint.c (ada_print_type): Likewise.
10947 * amd64-windows-tdep.c (amd64_windows_store_arg_in_reg): Likewise.
10948 * compile/compile-c-support.c (generate_register_struct): Likewise.
10949 * gdbtypes.c (recursive_dump_type): Likewise.
10950 * gdbtypes.h (struct type) <length>: Change type to ULONGEST.
10951 * m2-typeprint.c (m2_array): Use %s/pulongest for TYPE_LENGTH
10952 instead of %d in format strings.
10953 * riscv-tdep.c (riscv_type_alignment): Cast second argument
10954 to std::min to ULONGEST.
10955 * symmisc.c (print_symbol): Use %s/pulongest for TYPE_LENGTH
10956 instead of %d in format strings.
10957 * tracepoint.c (info_scope_command): Likewise.
10958 * typeprint.c (print_offset_data::update)
10959 (print_offset_data::finish): Likewise.
10960 * xtensa-tdep.c (xtensa_store_return_value)
10961 (xtensa_push_dummy_call): Likewise.
10962
10963 2019-03-28 Jon Turney <jon.turney@dronecode.org.uk>
10964
10965 * windows-nat.c (display_selector): Fixed format specifications
10966 for 64-bit Cygwin.
10967
10968 2019-03-28 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10969
10970 * infrun.c (follow_exec): Call target_terminal::ours_for_output.
10971
10972 2019-03-28 Sandra Loosemore <sandra@codesourcery.com>
10973
10974 * nios2-tdep.h (struct gdbarch_tdep): Add is_kernel_helper.
10975 * nios2-tdep.c (nios2_get_next_pc): Skip over kernel helpers.
10976 * nios2-linux-tdep.c (nios2_linux_is_kernel_helper): New.
10977 (nios2_linux_init_abi): Install it.
10978
10979 2019-03-28 Alan Hayward <alan.hayward@arm.com>
10980
10981 * aarch64-tdep.c (aarch64_vnv_type): Use vector types.
10982
10983 2019-03-28 Alan Hayward <alan.hayward@arm.com>
10984
10985 * features/aarch64-sve.c (create_feature_aarch64_sve): Add q view.
10986
10987 2019-03-24 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10988 Tom Tromey <tromey@adacore.com>
10989
10990 * minsyms.c (minimal_symbol_upper_bound): Fix buffer overflow.
10991
10992 2019-03-26 Joel Brobecker <brobecker@adacore.com>
10993
10994 * gdb-gdb.py.in (StructMainTypePrettyPrinter.bound_img): New method.
10995 (StructMainTypePrettyPrinter.bounds_img): Use new "bound_img"
10996 method to compute the bounds of range types. Also print "[evaluated]"
10997 if the bounds' values come from a dynamic evaluation.
10998
10999 2019-03-26 Andrew Burgess <andrew.burgess@embecosm.com>
11000
11001 * cp-valprint.c (cp_print_value_fields): Don't print trailing
11002 whitespace when pretty printing is on.
11003
11004 2019-03-26 Alan Hayward <alan.hayward@arm.com>
11005
11006 * ppc-linux-nat.c: Add include.
11007
11008 2019-03-26 Alan Hayward <alan.hayward@arm.com>
11009
11010 * NEWS: Mention AArch64 Pointer Authentication.
11011
11012 2019-03-26 Alan Hayward <alan.hayward@arm.com>
11013
11014 * arm-linux-nat.c: Add include.
11015
11016 2019-03-25 Simon Marchi <simon.marchi@polymtl.ca>
11017
11018 * source-cache.c (source_cache::get_source_lines): Re-read
11019 fullname after calling open_source_file.
11020
11021 2019-03-25 John Baldwin <jhb@FreeBSD.org>
11022
11023 * NEWS: Mention TLS support for FreeBSD.
11024
11025 2019-03-25 Tom Tromey <tromey@adacore.com>
11026
11027 * minsyms.c (BUNCH_SIZE): Update comment.
11028 (~minimal_symbol_reader): Remove old comment.
11029 (compact_minimal_symbols): Update comment.
11030 (minimal_symbol_reader::install): Remove old comment. Update
11031 other comments.
11032
11033 2019-03-25 Alan Hayward <alan.hayward@arm.com>
11034
11035 * s390-linux-nat.c: Add include.
11036
11037 2019-03-25 Alan Hayward <alan.hayward@arm.com>
11038
11039 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
11040 Call linux_get_hwcap.
11041 * aarch64-linux-tdep.c (aarch64_linux_core_read_description):
11042 Likewise.
11043 (aarch64_linux_get_hwcap): Remove function.
11044 * aarch64-linux-tdep.h (aarch64_linux_get_hwcap): Remove
11045 declaration.
11046 * arm-linux-nat.c (arm_linux_nat_target::read_description):Call
11047 linux_get_hwcap.
11048 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
11049 * linux-tdep.c (linux_get_hwcap): Add function.
11050 (linux_get_hwcap2): Likewise.
11051 * linux-tdep.h (linux_get_hwcap): Add declaration.
11052 (linux_get_hwcap2): Likewise.
11053 * ppc-linux-nat.c (ppc_linux_get_hwcap): Remove function.
11054 (ppc_linux_get_hwcap2): Likewise.
11055 (ppc_linux_nat_target::region_ok_for_hw_watchpoint): Call
11056 linux_get_hwcap.
11057 (ppc_linux_nat_target::insert_watchpoint): Likewise.
11058 (ppc_linux_nat_target::watchpoint_addr_within_range): Likewise.
11059 (ppc_linux_nat_target::read_description): Likewise.
11060 * ppc-linux-tdep.c (ppc_linux_core_read_description): Likewise.
11061 * s390-linux-nat.c: Likewise.
11062 * s390-linux-tdep.c (s390_core_read_description): Likewise.
11063
11064 2019-03-24 Tom Tromey <tom@tromey.com>
11065
11066 * ada-lang.c (standard_lookup): Simplify initialization.
11067 (ada_lookup_symbol_nonlocal): Simplify return.
11068 * solib-spu.c (spu_lookup_lib_symbol): Simplify return.
11069 * solib-darwin.c (darwin_lookup_lib_symbol): Simplify return.
11070 * solib-svr4.c (elf_lookup_lib_symbol): Simplify return.
11071 * rust-lang.c (rust_lookup_symbol_nonlocal): Simplify
11072 initialization.
11073 * solib.c (solib_global_lookup): Simplify.
11074 * symtab.c (null_block_symbol): Remove.
11075 (symbol_cache_lookup): Simplify returns.
11076 (lookup_language_this): Simplify returns.
11077 (lookup_symbol_aux): Simplify return.
11078 (lookup_local_symbol): Simplify returns.
11079 (lookup_global_symbol_from_objfile): Simplify return.
11080 (lookup_symbol_in_objfile_symtabs)
11081 (lookup_symbol_in_objfile_from_linkage_name): Simplify return.
11082 (lookup_symbol_via_quick_fns, lookup_symbol_in_static_block)
11083 (lookup_static_symbol, lookup_global_symbol): Simplify return.
11084 * cp-namespace.c (cp_lookup_bare_symbol)
11085 (cp_search_static_and_baseclasses, cp_lookup_symbol_via_imports)
11086 (cp_lookup_symbol_via_all_imports, cp_lookup_nested_symbol_1)
11087 (cp_lookup_nested_symbol): Don't use null_block_symbol.
11088 (cp_lookup_symbol_via_imports): Simplify initialization.
11089 (find_symbol_in_baseclass): Likewise.
11090 * symtab.h (null_block_symbol): Remove.
11091 * d-namespace.c (d_lookup_symbol): Don't use null_block_symbol.
11092 (d_lookup_nested_symbol, d_lookup_symbol_imports)
11093 (d_lookup_symbol_module): Likewise.
11094 (find_symbol_in_baseclass): Simplify initialization.
11095
11096 2019-03-24 Tom Tromey <tom@tromey.com>
11097
11098 * expression.h: Don't include symtab.h.
11099 (struct block): Forward declare.
11100
11101 2019-03-24 Tom Tromey <tom@tromey.com>
11102
11103 * c-exp.y (typebase): Remove casts.
11104 * gdbtypes.c (lookup_unsigned_typename, )
11105 (lookup_signed_typename): Remove cast.
11106 * eval.c (parse_to_comma_and_eval): Remove cast.
11107 * parse.c (write_dollar_variable): Remove cast.
11108 * block.h (struct block) <superblock>: Now const.
11109 * symfile-debug.c (debug_qf_map_matching_symbols): Update.
11110 * psymtab.c (psym_map_matching_symbols): Make "block" const.
11111 (map_block): Make "block" const.
11112 * symfile.h (struct quick_symbol_functions)
11113 <map_matching_symbols>: Constify block argument to "callback".
11114 * symtab.c (basic_lookup_transparent_type_quick): Make "block"
11115 const.
11116 (find_pc_sect_compunit_symtab): Make "b" const.
11117 (find_symbol_at_address): Likewise.
11118 (search_symbols): Likewise.
11119 * dwarf2read.c (dw2_lookup_symbol): Make "block" const.
11120 (dw2_debug_names_lookup_symbol): Likewise.
11121 (dw2_map_matching_symbols): Update.
11122 * p-valprint.c (pascal_val_print): Remove "block".
11123 * ada-lang.c (ada_add_global_exceptions): Make "b" const.
11124 (aux_add_nonlocal_symbols): Make "block" const.
11125 (resolve_subexp): Remove cast.
11126 * linespec.c (iterate_over_all_matching_symtabs): Make "block"
11127 const.
11128 (iterate_over_file_blocks): Likewise.
11129 * f-exp.y (%union) <bval>: Remove.
11130 * coffread.c (patch_opaque_types): Make "b" const.
11131 * spu-tdep.c (spu_catch_start): Make "block" const.
11132 * c-valprint.c (print_unpacked_pointer): Remove "block".
11133 * symmisc.c (dump_symtab_1): Make "b" const.
11134 (block_depth): Make "block" const.
11135 * d-exp.y (%union) <bval>: Remove.
11136 * cp-support.h (cp_lookup_rtti_type): Update.
11137 * cp-support.c (cp_lookup_rtti_type): Make "block" const.
11138 * psymtab.c (psym_lookup_symbol): Make "block" const.
11139 (maintenance_check_psymtabs): Make "b" const.
11140 * python/py-framefilter.c (extract_sym): Make "sym_block" const.
11141 (enumerate_locals, enumerate_args): Update.
11142 * python/py-symtab.c (stpy_global_block): Make "block" const.
11143 (stpy_static_block): Likewise.
11144 * inline-frame.c (block_starting_point_at): Make "new_block"
11145 const.
11146 * block.c (find_block_in_blockvector): Make return type const.
11147 (blockvector_for_pc_sect): Make "b" const.
11148 (find_block_in_blockvector): Make "b" const.
11149
11150 2019-03-23 Tom Tromey <tom@tromey.com>
11151
11152 * varobj.c (varobj_create): Update.
11153 * symfile.c (clear_symtab_users): Don't reset innermost_block.
11154 * printcmd.c (display_command, do_one_display): Don't reset
11155 innermost_block.
11156 * parser-defs.h (enum innermost_block_tracker_type): Move to
11157 expression.h.
11158 (innermost_block): Update comment.
11159 * parse.c (parse_exp_1): Add tracker_types parameter.
11160 (parse_exp_in_context): Rename from parse_exp_in_context_1. Add
11161 tracker_types parameter. Reset innermost_block.
11162 (parse_exp_in_context): Remove.
11163 (parse_expression_for_completion): Update.
11164 * objfiles.c (~objfile): Don't reset expression_context_block or
11165 innermost_block.
11166 * expression.h (enum innermost_block_tracker_type): Move from
11167 parser-defs.h.
11168 (parse_exp_1): Add tracker_types parameter.
11169 * breakpoint.c (set_breakpoint_condition, watch_command_1): Don't
11170 reset innermost_block.
11171
11172 2019-03-23 Tom Tromey <tom@tromey.com>
11173
11174 * objfiles.h: Include bcache.h.
11175
11176 2019-03-23 Tom Tromey <tom@tromey.com>
11177
11178 * linespec.c (get_current_search_block): Use
11179 scoped_restore_current_language.
11180 * symmisc.c (dump_symtab): Use scoped_restore_current_language.
11181
11182 2019-03-22 Alan Hayward <alan.hayward@arm.com>
11183 Jiong Wang <jiong.wang@arm.com>
11184
11185 * aarch64-linux-tdep.c
11186 (aarch64_linux_iterate_over_regset_sections): Check for pauth
11187 section.
11188 * aarch64-linux-tdep.h (AARCH64_LINUX_SIZEOF_PAUTH): New define.
11189
11190 2019-03-22 Alan Hayward <alan.hayward@arm.com>
11191 Jiong Wang <jiong.wang@arm.com>
11192
11193 * aarch64-tdep.c (aarch64_analyze_prologue): Check for pauth
11194 instructions.
11195 (aarch64_analyze_prologue_test): Add PACIASP test.
11196 (aarch64_prologue_prev_register): Unmask PC value.
11197
11198 2019-03-22 Alan Hayward <alan.hayward@arm.com>
11199 Jiong Wang <jiong.wang@arm.com>
11200
11201 * aarch64-tdep.c (aarch64_frame_unmask_address): New function.
11202 (aarch64_dwarf2_prev_register): Unmask PC value.
11203 (aarch64_dwarf2_frame_init_reg): Init pauth registers.
11204 (aarch64_execute_dwarf_cfa_vendor_op): Check for
11205 DW_CFA_AARCH64_negate_ra_state.
11206 (aarch64_gdbarch_init): Add aarch64_execute_dwarf_cfa_vendor_op.
11207
11208 2019-03-22 Alan Hayward <alan.hayward@arm.com>
11209 Jiong Wang <jiong.wang@arm.com>
11210
11211 * aarch64-tdep.c (aarch64_dwarf_reg_to_regnum): Check for pauth
11212 registers.
11213 (aarch64_pseudo_register_name): Likewise.
11214 (aarch64_pseudo_register_type): Likewise.
11215 (aarch64_pseudo_register_reggroup_p): Likewise.
11216 (aarch64_gdbarch_init): Add pauth registers.
11217 * aarch64-tdep.h (AARCH64_DWARF_PAUTH_RA_STATE): New define.
11218 (AARCH64_DWARF_PAUTH_DMASK): Likewise.
11219 (AARCH64_DWARF_PAUTH_CMASK): Likewise.
11220 (struct gdbarch_tdep): Add regnum for ra_state.
11221
11222 2019-03-22 Alan Hayward <alan.hayward@arm.com>
11223 Jiong Wang <jiong.wang@arm.com>
11224
11225 * arch/aarch64.h (AARCH64_PAUTH_REGS_SIZE): New define.
11226
11227 2019-03-22 Alan Hayward <alan.hayward@arm.com>
11228 Jiong Wang <jiong.wang@arm.com>
11229
11230 * aarch64-linux-nat.c (fetch_pauth_masks_from_thread): New
11231 function.
11232 (aarch64_linux_nat_target::fetch_registers): Read pauth registers.
11233 * aarch64-tdep.c (aarch64_cannot_store_register): New function.
11234 (aarch64_gdbarch_init): Add puth registers.
11235 * aarch64-tdep.h (struct gdbarch_tdep): Add pauth features.
11236 * arch/aarch64.h (AARCH64_PAUTH_DMASK_REGNUM): New define.
11237 (AARCH64_PAUTH_CMASK_REGNUM): Likewise.
11238
11239 2019-03-22 Alan Hayward <alan.hayward@arm.com>
11240 Jiong Wang <jiong.wang@arm.com>
11241
11242 * aarch64-linux-nat.c
11243 (aarch64_linux_nat_target::read_description): Read PACA hwcap.
11244 * aarch64-linux-tdep.c
11245 (aarch64_linux_core_read_description): Likewise.
11246 (aarch64_linux_get_hwcap): New function.
11247 * aarch64-linux-tdep.h (AARCH64_HWCAP_PACA): New define.
11248 (aarch64_linux_get_hwcap): New declaration.
11249
11250 2019-03-22 Alan Hayward <alan.hayward@arm.com>
11251 Jiong Wang <jiong.wang@arm.com>
11252
11253 * aarch64-linux-nat.c
11254 (aarch64_linux_nat_target::read_description): Add pauth param.
11255 * aarch64-linux-tdep.c
11256 (aarch64_linux_core_read_description): Likewise.
11257 * aarch64-tdep.c (struct target_desc): Add in pauth.
11258 (aarch64_read_description): Add pauth param.
11259 (aarch64_gdbarch_init): Likewise.
11260 * aarch64-tdep.h (aarch64_read_description): Likewise.
11261 * arch/aarch64.c (aarch64_create_target_description): Likewise.
11262 * arch/aarch64.h (aarch64_create_target_description): Likewise.
11263 * features/Makefile: Add new files.
11264 * features/aarch64-pauth.c: New file.
11265 * features/aarch64-pauth.xml: New file.
11266
11267 2019-03-20 Tom Tromey <tromey@adacore.com>
11268
11269 * infrun.c (handle_inferior_event): Rename from
11270 handle_inferior_event_1. Create a scoped_value_mark.
11271 (handle_inferior_event): Remove.
11272
11273 2019-03-19 Tom Tromey <tromey@adacore.com>
11274
11275 * mi/mi-interp.c (mi_on_normal_stop_1): Only show displays once.
11276 * infrun.h (print_stop_event): Add "displays" parameter.
11277 * infrun.c (print_stop_event): Add "displays" parameter.
11278
11279 2019-03-19 Pedro Alves <palves@redhat.com>
11280
11281 * tui/tui-out.c (tui_ui_out::do_field_string): Simplify.
11282 (tui_ui_out::do_text): Add comments. Reset M_LINE to 0 instead of
11283 to -1. Fix TABs vs spaces.
11284 (tui_ui_out::tui_ui_out): Don't initialize fields here.
11285 * tui/tui-out.h (tui_ui_out) Add intro comments.
11286 <m_line, m_start_of_line>: In-class initialize, and add describing
11287 comment.
11288
11289 2019-03-18 Alan Hayward <alan.hayward@arm.com>
11290
11291 * arm-linux-nat.c (arm_linux_insert_hw_breakpoint1): Fix
11292 variable names.
11293 (arm_linux_remove_hw_breakpoint1): Use a gdb::function_view.
11294
11295 2019-03-18 Pedro Alves <palves@redhat.com>
11296 Eli Zaretskii <eliz@gnu.org>
11297
11298 * tui/tui-out.c (tui_ui_out::tui_ui_out): Fix initialization of
11299 m_line and m_start_of_line.
11300
11301 2019-03-18 Eli Zaretskii <eliz@gnu.org>
11302
11303 * tui/tui-io.c (gdb_wgetch): Don't echo CR.
11304 (tui_getc): When gdb_wgetch returns a CR, behave the same as when
11305 it returns a newline. This fixes a regression in TU mode, whereby
11306 the next line is output on the same screen line as the user input.
11307
11308 2019-03-18 Tom Tromey <tromey@adacore.com>
11309
11310 * minsyms.c (minimal_symbol_reader::install): Remove call to
11311 obstack_blank.
11312
11313 2019-03-18 Pedro Alves <palves@redhat.com>
11314
11315 * tui/tui-io.c (reverse_mode_p, reverse_save_bg, reverse_save_fg):
11316 New globals.
11317 (apply_style): New, factored out from ...
11318 (apply_ansi_escape): ... this. Handle reverse video mode.
11319 (tui_set_reverse_mode): New function.
11320 * tui/tui-io.h (tui_set_reverse_mode): New declaration.
11321 * tui/tui-winsource.c (tui_show_source_line): Use
11322 tui_set_reverse_mode instead of setting A_STANDOUT.
11323 * ui-style.h (struct ui_file_style) <set_reverse, set_fg, set_bg>:
11324 New setter methods.
11325
11326 2019-03-18 Hannes Domani <ssbssa@yahoo.de>
11327
11328 * tui/tui-source.c (copy_source_line): Fix handling of 'column'.
11329 Handle tabs.
11330
11331 2019-03-18 Tom Tromey <tromey@adacore.com>
11332
11333 * ada-lang.c (empty_array): Add "high" parameter.
11334 (ada_evaluate_subexp): Update.
11335
11336 2019-03-17 Sergei Trofimovich <siarheit@google.com>
11337
11338 * unittests/string_view-selftests.c: Define
11339 _initialize_string_view_selftests unconditionally.
11340
11341 2019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
11342
11343 PR gdb/24350
11344 * windows-nat.c (windows_make_so): Remove unused text_vma variable.
11345
11346 2019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
11347
11348 PR gdb/24351
11349 * windows-nat.c (display_selector): Fix format specifiers.
11350
11351 2019-03-17 Eli Zaretskii <eliz@gnu.org>
11352
11353 * tui/tui-winsource.c (tui_set_is_exec_point_at): Call
11354 tui_refill_source_window instead of tui_refresh_win, to update the
11355 current execution line. This fixes redisplay of the current line
11356 when stepping through the code with "next" or "step".
11357
11358 2019-03-16 Eli Zaretskii <eliz@gnu.org>
11359
11360 * source-cache.c (source_cache::get_source_lines): Call
11361 find_source_lines to initialize s->nlines. This fixes vertical
11362 scrolling of TUI source window when the DOWN arrow is pressed.
11363
11364 2019-03-16 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11365
11366 * auto-load.c (_initialize_auto_load): Fix 'This options has'.
11367 linux-thread-db.c (_initialize_thread_db): Likewise.
11368
11369 2019-03-16 Eli Zaretskii <eliz@gnu.org>
11370
11371 * tui/tui-winsource.c (tui_show_source_line): Revert "Use
11372 wclrtoeol in tui_show_source_line". This reverts changes made in
11373 commit 4a3045920bbe4e50a0f4920b0fdc4e88ef23015c.
11374
11375 2019-03-15 Tom Tromey <tom@tromey.com>
11376
11377 * symtab.h (struct minimal_symbol): Derive from
11378 general_symbol_info.
11379 (MSYMBOL_VALUE, MSYMBOL_VALUE_RAW_ADDRESS)
11380 (MSYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_BYTES)
11381 (MSYMBOL_BLOCK_VALUE, MSYMBOL_VALUE_CHAIN, MSYMBOL_LANGUAGE)
11382 (MSYMBOL_SECTION, MSYMBOL_OBJ_SECTION, MSYMBOL_NATURAL_NAME)
11383 (MSYMBOL_LINKAGE_NAME, MSYMBOL_DEMANGLED_NAME)
11384 (MSYMBOL_SEARCH_NAME): Update.
11385 (MSYMBOL_SET_LANGUAGE, MSYMBOL_SET_NAMES): Remove.
11386 * solib.c (gdb_bfd_lookup_symbol_from_symtab): Don't use memset.
11387 * minsyms.c (minimal_symbol_reader::record_full): Update.
11388
11389 2019-03-15 Tom Tromey <tom@tromey.com>
11390
11391 * minsyms.c (minimal_symbol_reader::install): Use memcpy.
11392
11393 2019-03-15 Tom Tromey <tom@tromey.com>
11394
11395 * objfiles.h (struct objfile_per_bfd_storage) <msymbols>: Now a
11396 unique_xmalloc_ptr.
11397 (objfile::msymbols_range::begin, objfile::msymbols_range::end):
11398 Update.
11399 * minsyms.c (lookup_minimal_symbol_by_pc_section)
11400 (build_minimal_symbol_hash_tables)
11401 (minimal_symbol_reader::install): Update.
11402
11403 2019-03-15 Tom Tromey <tom@tromey.com>
11404
11405 * symtab.c (create_demangled_names_hash): Update.
11406 (symbol_set_names): Update.
11407 * objfiles.h (struct objfile_per_bfd_storage)
11408 <demangled_names_hash>: Now an htab_up.
11409 * objfiles.c (objfile_per_bfd_storage): Simplify.
11410
11411 2019-03-15 Tom Tromey <tom@tromey.com>
11412
11413 * objfiles.h (struct objfile_per_bfd_storage): Declare
11414 destructor.
11415 * objfiles.c (objfile_per_bfd_storage::~objfile_per_bfd_storage):
11416 New.
11417 (get_objfile_bfd_data): Use new. Don't initialize
11418 language_of_main.
11419 (free_objfile_per_bfd_storage): Remove.
11420 (objfile_bfd_data_free, objfile::~objfile): Use delete.
11421
11422 2019-03-15 Tom Tromey <tom@tromey.com>
11423
11424 * symfile.c (reread_symbols): Update.
11425 * objfiles.c (objfile::objfile): Update.
11426 * minsyms.h (terminate_minimal_symbol_table): Don't declare.
11427 * minsyms.c (lookup_minimal_symbol_by_pc_section): Update
11428 comment.
11429 (minimal_symbol_reader::install): Update.
11430 (terminate_minimal_symbol_table): Remove.
11431 * jit.c (jit_object_close_impl): Update.
11432
11433 2019-03-15 Tom Tromey <tom@tromey.com>
11434
11435 * minsyms.c (minimal_symbol_reader::record_full): Remove some
11436 initializations.
11437
11438 2019-03-15 Tom Tromey <tom@tromey.com>
11439
11440 * objfiles.h (struct objfile_per_bfd_storage)
11441 <demangled_hash_languages>: Now a bitset.
11442 * minsyms.c (add_minsym_to_demangled_hash_table): Update.
11443 (lookup_minimal_symbol): Update.
11444
11445 2019-03-15 Tom Tromey <tom@tromey.com>
11446
11447 * minsyms.h (class minimal_symbol_reader) <record_with_info>:
11448 Don't return the symbol.
11449 * coffread.c (record_minimal_symbol): Use record_full.
11450
11451 2019-03-14 Eli Zaretskii <eliz@gnu.org>
11452
11453 The MS-Windows port of ncurses fails to switch to a color pair if
11454 one or both of the colors are the implicit default colors. This
11455 change records the default colors when TUI is initialized, and
11456 then specifies them explicitly when a color pair uses the default
11457 colors. This allows color styling in TUI mode on MS-Windows.
11458
11459 * tui/tui-io.c [__MINGW32__]: Include windows.h. Declare
11460 ncurses_norm_attr.
11461 (tui_initialize_io) [__MINGW32__]: Record the default terminal
11462 colors in ncurses_norm_attr.
11463 (apply_ansi_escape) [__MINGW32__]: If a color in a color pair is
11464 "none", replace it with the default color recorded in
11465 ncurses_norm_attr.
11466
11467 2019-03-14 Tom Tromey <tromey@adacore.com>
11468
11469 * source-cache.h (class source_cache) <get_source_lines>: Return
11470 std::string.
11471 * source-cache.c (source_cache::extract_lines): Handle case where
11472 first_pos==npos. Return std::string.
11473 (source_cache::get_source_lines): Update.
11474
11475 2019-03-14 Tom Tromey <tromey@adacore.com>
11476
11477 * NEWS: Add item for "style sources" commands.
11478 * source-cache.c (source_cache::get_source_lines): Check
11479 source_styling.
11480 * cli/cli-style.c (source_styling): New global.
11481 (_initialize_cli_style): Add "style sources" commands.
11482 (show_style_sources): New function.
11483 * cli/cli-style.h (source_styling): Declare.
11484
11485 2019-03-14 Pedro Alves <palves@redhat.com>
11486 Tom Tromey <tromey@adacore.com>
11487
11488 * tui/tui-winsource.h (tui_refill_source_window): Declare.
11489 * tui/tui-winsource.c (tui_refill_source_window): New function,
11490 from...
11491 (tui_horizontal_source_scroll): ... here. Move some logic.
11492 * cli/cli-style.c (set_style_enabled): Notify new observable.
11493 * tui/tui-hooks.c (tui_redisplay_source): New function.
11494 (tui_attach_detach_observers): Attach or detach
11495 tui_redisplay_source.
11496 * observable.h (source_styling_changed): New observable.
11497 * observable.c: Define source_styling_changed observable.
11498
11499 2019-03-13 Tom Tromey <tromey@adacore.com>
11500
11501 * i386-gnu-nat.c (i386_gnu_nat_target::fetch_registers)
11502 (i386_gnu_nat_target::store_registers): Update.
11503 * target-debug.h (target_debug_print_std_string): New macro.
11504 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
11505 * windows-tdep.c (display_one_tib): Update.
11506 * tui/tui-stack.c (tui_make_status_line): Update.
11507 * top.c (print_inferior_quit_action): Update.
11508 * thread.c (thr_try_catch_cmd): Update.
11509 (add_thread_with_info): Update.
11510 (thread_target_id_str): Update.
11511 (thr_try_catch_cmd): Update.
11512 (thread_command): Update.
11513 (thread_find_command): Update.
11514 * record-btrace.c (record_btrace_target::info_record)
11515 (record_btrace_resume_thread, record_btrace_target::resume)
11516 (record_btrace_cancel_resume, record_btrace_step_thread)
11517 (record_btrace_target::wait, record_btrace_target::wait)
11518 (record_btrace_target::wait, record_btrace_target::stop): Update.
11519 * progspace.c (print_program_space): Update.
11520 * process-stratum-target.c
11521 (process_stratum_target::thread_address_space): Update.
11522 * linux-fork.c (linux_fork_mourn_inferior)
11523 (detach_checkpoint_command, info_checkpoints_command)
11524 (linux_fork_context): Update.
11525 (linux_fork_detach): Update.
11526 (class scoped_switch_fork_info): Update.
11527 (delete_checkpoint_command): Update.
11528 * infrun.c (follow_fork_inferior): Update.
11529 (follow_fork_inferior): Update.
11530 (proceed_after_vfork_done): Update.
11531 (handle_vfork_child_exec_or_exit): Update.
11532 (follow_exec): Update.
11533 (displaced_step_prepare_throw): Update.
11534 (displaced_step_restore): Update.
11535 (start_step_over): Update.
11536 (resume_1): Update.
11537 (clear_proceed_status_thread): Update.
11538 (proceed): Update.
11539 (print_target_wait_results): Update.
11540 (do_target_wait): Update.
11541 (context_switch): Update.
11542 (stop_all_threads): Update.
11543 (restart_threads): Update.
11544 (finish_step_over): Update.
11545 (handle_signal_stop): Update.
11546 (switch_back_to_stepped_thread): Update.
11547 (keep_going_pass_signal): Update.
11548 (print_exited_reason): Update.
11549 (normal_stop): Update.
11550 * inferior.c (inferior_pid_to_str): Change return type.
11551 (print_selected_inferior): Update.
11552 (add_inferior): Update.
11553 (detach_inferior): Update.
11554 * dummy-frame.c (fprint_dummy_frames): Update.
11555 * dcache.c (dcache_info_1): Update.
11556 * btrace.c (btrace_enable, btrace_disable, btrace_teardown)
11557 (btrace_fetch, btrace_clear): Update.
11558 * linux-tdep.c (linux_core_pid_to_str): Change return type.
11559 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): Change return
11560 type.
11561 * fbsd-tdep.c (fbsd_core_pid_to_str): Change return type.
11562 * sol2-tdep.h (sol2_core_pid_to_str): Change return type.
11563 * sol2-tdep.c (sol2_core_pid_to_str): Change return type.
11564 * gdbarch.c, gdbarch.h: Rebuild.
11565 * gdbarch.sh (core_pid_to_str): Change return type.
11566 * windows-nat.c (struct windows_nat_target) <pid_to_str>: Change
11567 return type.
11568 (windows_nat_target::pid_to_str): Change return type.
11569 (windows_delete_thread): Update.
11570 (windows_nat_target::attach): Update.
11571 (windows_nat_target::files_info): Update.
11572 * target-delegates.c: Rebuild.
11573 * sol-thread.c (class sol_thread_target) <pid_to_str>: Change
11574 return type.
11575 (sol_thread_target::pid_to_str): Change return type.
11576 * remote.c (class remote_target) <pid_to_str>: Change return
11577 type.
11578 (remote_target::pid_to_str): Change return type.
11579 (extended_remote_target::attach, remote_target::remote_stop_ns)
11580 (remote_target::remote_notif_remove_queued_reply)
11581 (remote_target::push_stop_reply, remote_target::disable_btrace):
11582 Update.
11583 (extended_remote_target::attach): Update.
11584 * remote-sim.c (struct gdbsim_target) <pid_to_str>: Change return
11585 type.
11586 (gdbsim_target::pid_to_str): Change return type.
11587 * ravenscar-thread.c (struct ravenscar_thread_target)
11588 <pid_to_str>: Change return type.
11589 (ravenscar_thread_target::pid_to_str): Change return type.
11590 * procfs.c (class procfs_target) <pid_to_str>: Change return
11591 type.
11592 (procfs_target::pid_to_str): Change return type.
11593 (procfs_target::attach): Update.
11594 (procfs_target::detach): Update.
11595 (procfs_target::fetch_registers): Update.
11596 (procfs_target::store_registers): Update.
11597 (procfs_target::wait): Update.
11598 (procfs_target::files_info): Update.
11599 * obsd-nat.c (obsd_nat_target::pid_to_str): Change return type.
11600 * nto-procfs.c (struct nto_procfs_target) <pid_to_str>: Change
11601 return type.
11602 (nto_procfs_target::pid_to_str): Change return type.
11603 (nto_procfs_target::files_info, nto_procfs_target::attach): Update.
11604 * linux-thread-db.c (class thread_db_target) <pid_to_str>: Change
11605 return type.
11606 * linux-nat.c (linux_nat_target::pid_to_str): Change return type.
11607 (exit_lwp): Update.
11608 (attach_proc_task_lwp_callback, get_detach_signal)
11609 (detach_one_lwp, resume_lwp, linux_nat_target::resume)
11610 (linux_nat_target::resume, wait_lwp, stop_callback)
11611 (maybe_clear_ignore_sigint, stop_wait_callback, status_callback)
11612 (save_stop_reason, select_event_lwp, linux_nat_filter_event)
11613 (linux_nat_wait_1, resume_stopped_resumed_lwps)
11614 (linux_nat_target::wait, linux_nat_stop_lwp): Update.
11615 * inf-ptrace.c (inf_ptrace_target::pid_to_str): Change return
11616 type.
11617 (inf_ptrace_target::attach): Update.
11618 (inf_ptrace_target::files_info): Update.
11619 * go32-nat.c (struct go32_nat_target) <pid_to_str>: Change return
11620 type.
11621 (go32_nat_target::pid_to_str): Change return type.
11622 * gnu-nat.c (gnu_nat_target::pid_to_str): Change return type.
11623 (gnu_nat_target::wait): Update.
11624 (gnu_nat_target::wait): Update.
11625 (gnu_nat_target::resume): Update.
11626 * fbsd-nat.c (fbsd_nat_target::pid_to_str): Change return type.
11627 (fbsd_nat_target::wait): Update.
11628 * darwin-nat.c (darwin_nat_target::pid_to_str): Change return
11629 type.
11630 (darwin_nat_target::attach): Update.
11631 * corelow.c (class core_target) <pid_to_str>: Change return type.
11632 (core_target::pid_to_str): Change return type.
11633 * target.c (normal_pid_to_str): Change return type.
11634 (default_pid_to_str): Likewise.
11635 (target_pid_to_str): Change return type.
11636 (target_translate_tls_address): Update.
11637 (target_announce_detach): Update.
11638 * bsd-uthread.c (struct bsd_uthread_target) <pid_to_str>: Change
11639 return type.
11640 (bsd_uthread_target::pid_to_str): Change return type.
11641 * bsd-kvm.c (class bsd_kvm_target) <pid_to_str>: Change return
11642 type.
11643 (bsd_kvm_target::pid_to_str): Change return type.
11644 * aix-thread.c (class aix_thread_target) <pid_to_str>: Change
11645 return type.
11646 (aix_thread_target::pid_to_str): Change return type.
11647 * target.h (struct target_ops) <pid_to_str>: Change return type.
11648 (target_pid_to_str, normal_pid_to_str): Likewise.
11649 * obsd-nat.h (class obsd_nat_target) <pid_to_str>: Change return
11650 type.
11651 * linux-nat.h (class linux_nat_target) <pid_to_str>: Change return
11652 type.
11653 * inf-ptrace.h (struct inf_ptrace_target) <pid_to_str>: Change
11654 return type.
11655 * gnu-nat.h (struct gnu_nat_target) <pid_to_str>: Change return
11656 type.
11657 * fbsd-nat.h (class fbsd_nat_target) <pid_to_str>: Change return
11658 type.
11659 * darwin-nat.h (class darwin_nat_target) <pid_to_str>: Change
11660 return type.
11661
11662 2019-03-13 Simon Marchi <simon.marchi@ericsson.com>
11663
11664 * NEWS: Mention that the new default MI version is 3. Mention
11665 changes to the output of commands and events that deal with
11666 multi-location breakpoints.
11667 * breakpoint.c: Include "mi/mi-out.h".
11668 (print_one_breakpoint): Change output syntax if using MI version
11669 >= 3.
11670 * mi/mi-main.h (mi_cmd_fix_multi_location_breakpoint_output):
11671 New.
11672 (mi_multi_location_breakpoint_output_fixed): New.
11673 * mi/mi-main.c (fix_multi_location_breakpoint_output): New.
11674 (mi_cmd_fix_multi_location_breakpoint_output): New.
11675 (mi_multi_location_breakpoint_output_fixed): New.
11676 * mi/mi-cmds.c (mi_cmds): Register command
11677 -fix-multi-location-breakpoint-output.
11678 * mi/mi-out.c (mi_out_new): Instantiate version 3 when using
11679 interpreter "mi".
11680
11681 2019-03-13 Simon Marchi <simon.marchi@polymtl.ca>
11682
11683 * mi/mi-out.h (mi_out_new): Change parameter to const char *.
11684 * mi/mi-out.c (mi_out_new): Change parameter to const char *,
11685 instantiate mi_ui_out based on interpreter name.
11686 * mi/mi-interp.c (mi_interp::init): Use the new mi_out_new.
11687 * mi/mi-main.c (mi_load_progress): Likewise.
11688
11689 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11690
11691 * NEWS: Combine separate "New targets" sections for 8.3.
11692
11693 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11694
11695 * ppc-fbsd-tdep.c (ppcfbsd_get_thread_local_address): New.
11696 (ppcfbsd_init_abi): Install gdbarch
11697 "fetch_tls_load_module_address" and "get_thread_local_address"
11698 methods.
11699
11700 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11701
11702 * riscv-fbsd-tdep.c (riscv_fbsd_get_thread_local_address): New.
11703 (riscv_fbsd_init_abi): Install gdbarch
11704 "fetch_tls_load_module_address" and "get_thread_local_address"
11705 methods.
11706
11707 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11708
11709 * i386-fbsd-tdep.c (i386fbsd_get_thread_local_address): New.
11710 (i386fbsd_init_abi): Install gdbarch
11711 "fetch_tls_load_module_address" and "get_thread_local_address"
11712 methods.
11713
11714 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11715
11716 * amd64-fbsd-tdep.c (amd64fbsd_get_thread_local_address): New.
11717 (amd64fbsd_init_abi): Install gdbarch
11718 "fetch_tls_load_module_address" and "get_thread_local_address"
11719 methods.
11720
11721 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11722
11723 * fbsd-tdep.c (fbsd_pspace_data_handle): New variable.
11724 (struct fbsd_pspace_data): New type.
11725 (get_fbsd_pspace_data, fbsd_pspace_data_cleanup)
11726 (fbsd_read_integer_by_name, fbsd_fetch_rtld_offsets)
11727 (fbsd_get_tls_index, fbsd_get_thread_local_address): New function.
11728 (_initialize_fbsd_tdep): Initialize 'fbsd_pspace_data_handle'.
11729 * fbsd-tdep.c (fbsd_get_thread_local_address): New prototype.
11730
11731 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11732
11733 * gdbtypes.c (lookup_struct_elt): New function.
11734 (lookup_struct_elt_type): Reimplement via lookup_struct_elt.
11735 * gdbtypes.h (struct struct_elt): New type.
11736 (lookup_struct_elt): New prototype.
11737
11738 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11739
11740 * gdbtypes.c (lookup_struct_elt_type): Update comment and
11741 remove disabled code block.
11742
11743 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11744
11745 * gdbarch.sh (get_thread_local_address): New method.
11746 * gdbarch.h, gdbarch.c: Regenerate.
11747 * target.c (target_translate_tls_address): Use
11748 gdbarch_get_thread_local_address if present instead of
11749 target::get_thread_local_address.
11750
11751 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11752
11753 * target.h (target::get_thread_local_address): Update comment.
11754
11755 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11756
11757 * solib-svr4.c (svr4_fetch_objfile_link_map): Look for
11758 objfile->separate_debug_objfile_backlink if not NULL.
11759
11760 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11761
11762 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
11763 tdep->fsbase_regnum instead of constants for fs_base and gs_base.
11764 (amd64bsd_store_inferior_registers): Likewise.
11765 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
11766 Enable segment base registers.
11767 * i386-bsd-nat.c (i386bsd_fetch_inferior_registers): Use
11768 PT_GETFSBASE and PT_GETGSBASE.
11769 (i386bsd_store_inferior_registers): Use PT_SETFSBASE and
11770 PT_SETGSBASE.
11771 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Enable
11772 segment base registers.
11773 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
11774
11775 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11776
11777 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
11778 Update calls to i386_target_description to add 'segments'
11779 parameter.
11780 * amd64-tdep.c (amd64_init_abi): Set tdep->fsbase_regnum. Don't
11781 add segment base registers.
11782 * arch/i386.c (i386_create_target_description): Add 'segments'
11783 parameter to enable segment base registers.
11784 * arch/i386.h (i386_create_target_description): Likewise.
11785 * features/i386/32bit-segments.xml: New file.
11786 * features/i386/32bit-segments.c: Generate.
11787 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Update
11788 call to i386_target_description to add 'segments' parameter.
11789 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
11790 * i386-go32-tdep.c (i386_go32_init_abi): Likewise.
11791 * i386-linux-tdep.c (i386_linux_read_description): Likewise.
11792 * i386-tdep.c (i386_validate_tdesc_p): Add segment base registers
11793 if feature is present.
11794 (i386_gdbarch_init): Pass I386_NUM_REGS to set_gdbarch_num_regs.
11795 Add 'segments' parameter to call to i386_target_description.
11796 (i386_target_description): Add 'segments' parameter to enable
11797 segment base registers.
11798 (_initialize_i386_tdep) [GDB_SELF_TEST]: Add 'segments' parameter
11799 to call to i386_target_description.
11800 * i386-tdep.h (struct gdbarch_tdep): Add 'fsbase_regnum'.
11801 (enum i386_regnum): Add I386_FSBASE_REGNUM and I386_GSBASE_REGNUM.
11802 Define I386_NUM_REGS.
11803 (i386_target_description): Add 'segments' parameter to enable
11804 segment base registers.
11805
11806 2019-03-12 Eli Zaretskii <eliz@gnu.org>
11807
11808 PR/24325
11809 * source-cache.c: #undef open and close, to avoid unresolved
11810 externals during linking.
11811
11812 2019-03-12 Tom Tromey <tromey@adacore.com>
11813
11814 * remote.c (magic_null_ptid, not_sent_ptid, any_thread_ptid): Now
11815 const. Add initializers.
11816 (_initialize_remote): Don't initialize ptid globals.
11817
11818 2019-03-12 Pedro Alves <palves@redhat.com>
11819
11820 * yy-remap.h [TEST_CPNAMES] (YYFPRINTF): Don't define.
11821
11822 2019-03-12 Pedro Alves <palves@redhat.com>
11823
11824 * cp-name-parser.y (main): Remove unused 'len' variable.
11825
11826 2019-03-12 Tom Tromey <tromey@adacore.com>
11827
11828 * common/ptid.c (null_ptid, minus_one_ptid): Now const.
11829 * common/ptid.h (null_ptid, minus_one_ptid): Now const.
11830
11831 2019-03-12 Tom Tromey <tromey@adacore.com>
11832
11833 * linux-nat.c (iterate_over_lwps): Update.
11834 (stop_callback): Remove parameter.
11835 (stop_wait_callback, detach_callback, resume_set_callback)
11836 (select_singlestep_lwp_callback, set_ignore_sigint)
11837 (status_callback, resumed_callback, resume_clear_callback)
11838 (kill_callback, kill_wait_callback, linux_nat_stop_lwp): Remove
11839 data parameter.
11840 (linux_nat_target::detach, linux_nat_target::resume)
11841 (linux_stop_and_wait_all_lwps, select_event_lwp)
11842 (linux_nat_filter_event, linux_nat_wait_1)
11843 (linux_nat_target::kill, linux_nat_target::stop)
11844 (linux_nat_target::stop): Update.
11845 (linux_nat_resume_callback): Change type.
11846 (resume_stopped_resumed_lwps, count_events_callback)
11847 (select_event_lwp_callback): Likewise.
11848 (linux_stop_lwp, linux_nat_stop_lwp): Update.
11849 * arm-linux-nat.c (struct update_registers_data): Remove.
11850 (update_registers_callback): Change type.
11851 (arm_linux_insert_hw_breakpoint1): Update.
11852 * nat/x86-linux-dregs.c (update_debug_registers_callback): Remove
11853 parameter.
11854 (x86_linux_dr_set_addr): Update.
11855 (x86_linux_dr_set_control): Update.
11856 * nat/linux-nat.h (iterate_over_lwps_ftype): Remove parameter.
11857 (iterate_over_lwps): Use gdb::function_view.
11858 * nat/aarch64-linux-hw-point.c (struct
11859 aarch64_dr_update_callback_param): Remove.
11860 (debug_reg_change_callback): Change type.
11861 (aarch64_notify_debug_reg_change): Update.
11862 * s390-linux-nat.c (s390_refresh_per_info): Update.
11863
11864 2019-03-11 Tom Tromey <tromey@adacore.com>
11865
11866 * dwarf2read.c (dwarf2_find_containing_comp_unit): Remove
11867 redundant assignment to "this_cu".
11868
11869 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11870
11871 * gdbtypes.c (rank_one_type): Remove unnecessary cases from switch.
11872
11873 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11874
11875 * gdbtypes.c (rank_one_type_parm_set): New function extracted
11876 from...
11877 (rank_one_type): ... this.
11878
11879 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11880
11881 * gdbtypes.c (rank_one_type_parm_struct): New function extracted
11882 from...
11883 (rank_one_type): ... this.
11884
11885 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11886
11887 * gdbtypes.c (rank_one_type_parm_complex): New function extracted
11888 from...
11889 (rank_one_type): ... this.
11890
11891 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11892
11893 * gdbtypes.c (rank_one_type_parm_float): New function extracted
11894 from...
11895 (rank_one_type): ... this.
11896
11897 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11898
11899 * gdbtypes.c (rank_one_type_parm_bool): New function extracted
11900 from...
11901 (rank_one_type): ... this.
11902
11903 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11904
11905 * gdbtypes.c (rank_one_type_parm_range): New function extracted
11906 from...
11907 (rank_one_type): ... this.
11908
11909 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11910
11911 * gdbtypes.c (rank_one_type_parm_char): New function extracted
11912 from...
11913 (rank_one_type): ... this.
11914
11915 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11916
11917 * gdbtypes.c (rank_one_type_parm_enum): New function extracted
11918 from...
11919 (rank_one_type): ... this.
11920
11921 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11922
11923 * gdbtypes.c (rank_one_type_parm_int): New function extracted
11924 from...
11925 (rank_one_type): ... this.
11926
11927 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11928
11929 * gdbtypes.c (rank_one_type_parm_func): New function extracted
11930 from...
11931 (rank_one_type): ... this.
11932
11933 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11934
11935 * gdbtypes.c (rank_one_type_parm_array): New function extracted
11936 from...
11937 (rank_one_type): ... this.
11938
11939 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11940
11941 * gdbtypes.c (rank_one_type_parm_ptr): New function extracted
11942 from...
11943 (rank_one_type): ... this.
11944
11945 2019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11946
11947 * inferior.c (initialize_inferiors): Ensure 'help set/show print
11948 inferior-events' shows the example events.
11949
11950 2019-03-08 Eli Zaretskii <eliz@gnu.org>
11951
11952 Support styling on native MS-Windows console
11953
11954 PR/24315
11955 * utils.c (can_emit_style_escape) [_WIN32]: Don't disable styling
11956 on MS-Windows if $TERM is not defined.
11957
11958 * cli/cli-style.c: Set cli_styling to 1 in the MinGW build.
11959
11960 * posix-hdep.c (gdb_console_fputs):
11961 * mingw-hdep.c (rgb_to_16colors, gdb_console_fputs): New
11962 functions.
11963 * ui-file.h (gdb_console_fputs): Add prototype.
11964
11965 * ui-file.c (stdio_file::puts): Call gdb_console_fputs, and fall
11966 back to fputs only if the former returns zero.
11967
11968 2019-03-07 Tom Tromey <tom@tromey.com>
11969
11970 * symmisc.c (print_symbol_bcache_statistics): Update.
11971 (print_objfile_statistics): Update.
11972 * symfile.c (allocate_symtab): Update.
11973 * stabsread.c: Don't include bcache.h.
11974 * psymtab.h (struct psymbol_bcache): Don't declare.
11975 (class psymtab_storage) <psymbol_cache>: Now a bcache.
11976 (psymbol_bcache_init, psymbol_bcache_free)
11977 (psymbol_bcache_get_bcache): Don't declare.
11978 * psymtab.c (struct psymbol_bcache): Remove.
11979 (psymtab_storage::psymtab_storage): Update.
11980 (psymtab_storage::~psymtab_storage): Update.
11981 (psymbol_bcache_init, psymbol_bcache_free)
11982 (psymbol_bcache_get_bcache, psymbol_bcache_full): Remove.
11983 (add_psymbol_to_bcache): Update.
11984 (allocate_psymtab): Update.
11985 * objfiles.h (struct objfile_per_bfd_storage) <filename_cache,
11986 macro_cache>: No longer pointers.
11987 * objfiles.c (get_objfile_bfd_data): Don't call bcache_xmalloc.
11988 (free_objfile_per_bfd_storage): Don't call bcache_xfree.
11989 * macrotab.c (macro_bcache): Update.
11990 * macroexp.c: Don't include bcache.h.
11991 * gdbtypes.c (check_types_worklist): Update.
11992 (types_deeply_equal): Remove TRY/CATCH. Update.
11993 * elfread.c (elf_symtab_read): Update.
11994 * dwarf2read.c: Don't include bcache.h.
11995 * buildsym.c (buildsym_compunit::get_macro_table): Update.
11996 * bcache.h (bcache, bcache_full, bcache_xffree, bcache_xmalloc)
11997 (print_bcache_statistics, bcache_memory_used): Don't declare.
11998 (struct bcache): Move from bcache.c. Add constructor, destructor,
11999 methods. Rename all data members.
12000 * bcache.c (struct bcache): Move to bcache.h.
12001 (bcache::expand_hash_table): Rename from expand_hash_table.
12002 (bcache): Remove.
12003 (bcache::insert): Rename from bcache_full.
12004 (bcache::compare): Rename from bcache_compare.
12005 (bcache_xmalloc): Remove.
12006 (bcache::~bcache): Rename from bcache_xfree.
12007 (bcache::print_statistics): Rename from print_bcache_statistics.
12008 (bcache::memory_used): Rename from bcache_memory_used.
12009
12010 2019-03-07 Pedro Alves <palves@redhat.com>
12011
12012 * infrun.c (normal_stop): Also check for
12013 TARGET_WAITKIND_NO_RESUMED before referring to inferior_thread().
12014
12015 2019-03-07 Andrew Burgess <andrew.burgess@embecosm.com>
12016
12017 * f-lang.c (value_from_host_double): Moved to...
12018 * value.c (value_from_host_double): ...here.
12019 * value.h (value_from_host_double): Declare.
12020 * guile/scm-math.c (vlscm_convert_typed_number): Use
12021 value_from_host_double.
12022 (vlscm_convert_number): Likewise.
12023 * guile/scm-value.c (gdbscm_value_to_real): Likewise.
12024 * python/py-value.c (convert_value_from_python): Likewise.
12025
12026 2019-03-06 Tom Tromey <tom@tromey.com>
12027
12028 * gcore.c (write_gcore_file): Use SCOPE_EXIT.
12029
12030 2019-03-06 Tom Tromey <tom@tromey.com>
12031
12032 * utils.h (free_current_contents): Don't declare.
12033 * utils.c (free_current_contents): Remove.
12034
12035 2019-03-06 Tom Tromey <tom@tromey.com>
12036
12037 * top.c (quit_force): Update.
12038 * main.c (captured_command_loop): Update.
12039 * common/new-op.c (operator new): Update.
12040 * common/common-exceptions.c (struct catcher)
12041 <save_cleanup_chain>: Remove member.
12042 (exceptions_state_mc_init): Update.
12043 (exception_try_scope_entry): Return nullptr.
12044 (exception_try_scope_exit, exception_rethrow)
12045 (throw_exception_sjlj, throw_exception_cxx): Update.
12046 * common/cleanups.h (make_cleanup, make_cleanup_dtor)
12047 (all_cleanups, do_cleanups, discard_cleanups)
12048 (discard_final_cleanups, save_cleanups, save_final_cleanups)
12049 (restore_cleanups, restore_final_cleanups): Don't declare.
12050 (do_final_cleanups): Remove parameter.
12051 * common/cleanups.c (cleanup_chain, make_cleanup)
12052 (make_cleanup_dtor, all_cleanups, do_cleanups)
12053 (discard_my_cleanups, discard_cleanups)
12054 (discard_final_cleanups, save_my_cleanups, save_cleanups)
12055 (save_final_cleanups, restore_my_cleanups, restore_cleanups)
12056 (null_cleanup): Remove.
12057 (do_final_cleanups): Remove parameter.
12058
12059 2019-03-06 Tom Tromey <tom@tromey.com>
12060
12061 * remote.c (remote_target::remote_parse_stop_reply): Use
12062 unique_xmalloc_ptr.
12063
12064 2019-03-06 Tom Tromey <tom@tromey.com>
12065
12066 * stabsread.c (struct stabs_field_info): Rename from field_info.
12067 <list, fnlist>: Add initializers.
12068 <obstack>: New member.
12069 (read_member_functions, read_struct_fields, read_baseclasses):
12070 Allocate on obstack. Don't use cleanups.
12071 (read_one_struct_field, read_member_functions, read_struct_fields)
12072 (read_baseclasses, read_tilde_fields, attach_fn_fields_to_type)
12073 (attach_fields_to_type, read_cpp_abbrev, read_member_functions)
12074 (read_struct_type): Update.
12075
12076 2019-03-06 Tom Tromey <tom@tromey.com>
12077
12078 * nat/linux-namespaces.c (linux_mntns_access_fs): Use SCOPE_EXIT.
12079 * common/filestuff.h (make_cleanup_close): Don't declare.
12080 * common/filestuff.c (do_close_cleanup, make_cleanup_close):
12081 Remove.
12082
12083 2019-03-06 Tom Tromey <tom@tromey.com>
12084
12085 * solib-aix.c: Use make_scope_exit.
12086
12087 2019-03-06 Tom Tromey <tom@tromey.com>
12088
12089 * solib-svr4.c (svr4_parse_libraries, svr4_current_sos_direct):
12090 Use make_scope_exit.
12091
12092 2019-03-06 Tom Tromey <tom@tromey.com>
12093
12094 * solib-svr4.c (disable_probes_interface): Remove parameter.
12095 (svr4_handle_solib_event): Use make_scope_exit.
12096
12097 2019-03-06 Tom Tromey <tom@tromey.com>
12098
12099 * remote.c (struct stop_reply_deleter): Remove.
12100 (stop_reply_up): Update.
12101 (struct stop_reply): Derive from notif_event. Don't typedef.
12102 <regcache>: Now a std::vector.
12103 (stop_reply_xfree): Remove.
12104 (stop_reply::~stop_reply): Rename from stop_reply_dtr.
12105 (remote_notif_stop_alloc_reply): Return a unique_ptr. Use new.
12106 (remote_target::discard_pending_stop_replies): Use delete.
12107 (remote_target::remote_parse_stop_reply): Update.
12108 (remote_target::process_stop_reply): Update.
12109 * remote-notif.h (struct notif_event): Add virtual destructor.
12110 Remove "dtr" member.
12111 (struct notif_client) <alloc_event>: Return a unique_ptr.
12112 (notif_event_xfree): Don't declare.
12113 (notif_event_up): New typedef.
12114 * remote-notif.c (remote_notif_ack, remote_notif_parse): Update.
12115 (notif_event_xfree, do_notif_event_xfree): Remove.
12116 (remote_notif_state_xfree): Update.
12117
12118 2019-03-06 Tom Tromey <tom@tromey.com>
12119
12120 * infrun.c (displaced_step_clear_cleanup): Now a
12121 forward_scope_exit type.
12122 (displaced_step_prepare_throw): Update.
12123 (displaced_step_fixup): Update.
12124
12125 2019-03-06 Tom Tromey <tom@tromey.com>
12126
12127 * inferior.h (class inferior): Update comment.
12128 * gdbthread.h (class thread_info): Update comment.
12129
12130 2019-03-06 Joel Brobecker <brobecker@adacore.com>
12131 Tom Tromey <tom@tromey.com>
12132
12133 * stabsread.h (struct stab_section_list): Remove.
12134 (coffstab_build_psymtabs): Update.
12135 * dbxread.c (symbuf_sections): Now a std::vector.
12136 (sect_idx): New global.
12137 (fill_symbuf): Update.
12138 (coffstab_build_psymtabs): Change type of stabsects parameter.
12139 Update.
12140 * coffread.c (struct coff_symfile_info) <stabsects>: Now a
12141 std::vector.
12142 (linetab, linetab_offset, linetab_size, stringtab): Move earlier.
12143 (coff_locate_sections): Update.
12144 (coff_symfile_read): Remove cleanups. Update.
12145 (init_stringtab): Add storage parameter.
12146 (free_stringtab, free_stringtab_cleanup): Remove.
12147 (init_lineno): Add storage parameter.
12148 (free_linetab, free_linetab_cleanup): Remove.
12149
12150 2019-03-06 Pedro Alves <palves@redhat.com>
12151
12152 * linux-fork.c (fork_info::clobber_regs): Delete.
12153 (fork_load_infrun_state): Remove reference to 'clobber_regs'.
12154 (fork_save_infrun_state): Remove 'clobber_regs' parameter. Update
12155 comment. Adjust.
12156 (scoped_switch_fork_info::scoped_switch_fork_info)
12157 (checkpoint_command, linux_fork_context): Adjust
12158 fork_save_infrun_state calls.
12159
12160 2019-03-06 Pedro Alves <palves@redhat.com>
12161
12162 * linux-fork.c (inf_has_multiple_thread_cb): Delete.
12163 (inf_has_multiple_threads): Return 'bool' and rewrite using
12164 inferior_info::threads().
12165
12166 2019-03-06 Pedro Alves <palves@redhat.com>
12167
12168 * linux-fork.c: Include <list>.
12169 (fork_list): Now a std::list instance.
12170 (fork_info): Add ctor, dtor, and in-class initialize all fields.
12171 (forks_exist_p, find_last_fork): Adjust.
12172 (new_fork): Delete.
12173 (one_fork_p): New.
12174 (add_fork): Adjust.
12175 (free_fork): Delete, folded into fork_info::~fork_info().
12176 (delete_fork, find_fork_ptid, find_fork_id, find_fork_pid):
12177 Adjust.
12178 (init_fork_list): Delete.
12179 (linux_fork_killall, linux_fork_mourn_inferior)
12180 (linux_fork_detach, info_checkpoints_command): Adjust.
12181 (_initialize_linux_fork): No longer call init_fork_list.
12182
12183 2019-03-06 Pedro Alves <palves@redhat.com>
12184
12185 * linux-fork.c (new_fork): New, split out of ...
12186 (add_fork): ... this. Return void. Move "first fork" special
12187 case from here, to ...
12188 (checkpoint_command): ... here.
12189 * linux-linux.h (add_fork): Return void.
12190
12191 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12192
12193 * f-exp.y (direct_abs_decl): Handle TYPE*SIZE type names.
12194
12195 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12196 Chris January <chris.january@arm.com>
12197 David Lecomber <david.lecomber@arm.com>
12198
12199 * f-exp.y: New token, UNOP_INTRINSIC.
12200 (exp): New pattern using UNOP_INTRINSIC token.
12201 (f77_keywords): Add 'abs' keyword.
12202 * f-lang.c: Add 'target-float.h' and 'math.h' includes.
12203 (value_from_host_double): New function.
12204 (evaluate_subexp_f): Support UNOP_ABS.
12205
12206 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12207
12208 * f-lang.c (build_fortran_types): Use TYPE_CODE_CHAR for character
12209 types.
12210
12211 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12212
12213 * f-exp.y (convert_to_kind_type): Handle integer (kind=8).
12214 * f-lang.c (build_fortran_types): Setup builtin_integer_s8.
12215 * f-lang.h (struct builtin_f_type): Add builtin_integer_s8 field.
12216
12217 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12218
12219 * f-exp.y (convert_to_kind_type): Handle more type kinds.
12220
12221 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12222 Chris January <chris.january@arm.com>
12223
12224 * expprint.c (dump_subexp_body_standard): Support UNOP_KIND.
12225 * f-exp.y: Define 'KIND' token.
12226 (exp): New pattern for KIND expressions.
12227 (ptype): Handle types with a kind extension.
12228 (direct_abs_decl): Extend to spot kind extensions.
12229 (f77_keywords): Add 'kind' to the list.
12230 (push_kind_type): New function.
12231 (convert_to_kind_type): New function.
12232 * f-lang.c (evaluate_subexp_f): Support UNOP_KIND.
12233 * parse.c (operator_length_standard): Likewise.
12234 * parser-defs.h (enum type_pieces): Add tp_kind.
12235 * std-operator.def: Add UNOP_KIND.
12236
12237 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12238
12239 * f-exp.y (f_parse): Set yydebug.
12240
12241 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12242
12243 * f-lang.c (evaluate_subexp_f): New function.
12244 (exp_descriptor_f): New global.
12245 (f_language_defn): Use exp_descriptor_f instead of
12246 exp_descriptor_standard.
12247
12248 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12249
12250 * f-exp.y (struct token): Add comments.
12251 (dot_ops): Remove uppercase versions and the end marker.
12252 (f77_keywords): Likewise.
12253 (yylex): Use ARRAY_SIZE to iterate over dot_ops, assert all
12254 entries in the dot_ops array are case insensitive, and use
12255 strncasecmp to compare strings. Also some whitespace cleanup in
12256 this area. Similar for the f77_keywords array, except entries in
12257 this list might be case sensitive.
12258
12259 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12260
12261 * f-exp.y (struct f77_boolean_val): Add comments.
12262 (boolean_values): Remove uppercase versions, and end marker.
12263 (yylex): Use ARRAY_SIZE for iterating over boolean_values array,
12264 and use strncasecmp to achieve case insensitivity. Additionally,
12265 perform whitespace cleanup around this code.
12266
12267 2019-03-06 Tom Tromey <tromey@adacore.com>
12268
12269 * remote-sim.c (gdbsim_target_open): Use result of
12270 gdb_argv::release.
12271
12272 2019-03-06 Richard Bunt <richard.bunt@arm.com>
12273 Dirk Schubert <dirk.schubert@arm.com>
12274 Chris January <chris.january@arm.com>
12275
12276 * eval.c (evaluate_subexp_standard): Call Fortran argument
12277 wrapping logic.
12278 * f-lang.c (struct value): A value which can be passed into a
12279 Fortran function call.
12280 (fortran_argument_convert): Wrap Fortran arguments in a pointer
12281 where appropriate.
12282 (struct type): Value ready for a Fortran function call.
12283 (fortran_preserve_arg_pointer): Undo check_typedef, the pointer
12284 is needed.
12285 * f-lang.h (fortran_argument_convert): Declaration.
12286 (fortran_preserve_arg_pointer): Declaration.
12287 * infcall.c (value_arg_coerce): Call Fortran argument logic.
12288
12289 2019-03-05 Tom Tromey <tromey@adacore.com>
12290
12291 * python/py-prettyprint.c (print_string_repr): Remove #if.
12292 * python/py-utils.c (unicode_to_encoded_string): Remove #if.
12293
12294 2019-03-05 Tom Tromey <tromey@adacore.com>
12295
12296 * target.c (the_dummy_target): Move later. Change type to
12297 "dummy_target".
12298 (initialize_targets): Don't initialize the_dummy_target.
12299
12300 2019-03-05 Tom Tromey <tromey@adacore.com>
12301
12302 * gdb_bfd.c (gdb_bfd_fdopenr): Remove.
12303 * gdb_bfd.h (gdb_bfd_fdopenr): Don't declare.
12304
12305 2019-03-05 Tom Tromey <tromey@adacore.com>
12306
12307 * windows-nat.c (windows_nat_target::attach)
12308 (windows_nat_target::detach): Don't call gdb_flush.
12309 * valprint.c (generic_val_print, val_print, val_print_string):
12310 Don't call gdb_flush.
12311 * utils.c (defaulted_query): Don't call gdb_flush.
12312 * typeprint.c (print_type_scalar): Don't call gdb_flush.
12313 * target.c (target_announce_detach): Don't call gdb_flush.
12314 * sparc64-tdep.c (adi_print_versions): Don't call gdb_flush.
12315 * remote.c (extended_remote_target::attach): Don't call
12316 gdb_flush.
12317 * procfs.c (procfs_target::detach): Don't call gdb_flush.
12318 * printcmd.c (do_examine): Don't call gdb_flush.
12319 (info_display_command): Don't call gdb_flush.
12320 * p-valprint.c (pascal_val_print): Don't call gdb_flush.
12321 * nto-procfs.c (nto_procfs_target::attach): Don't call gdb_flush.
12322 * memattr.c (info_mem_command): Don't call gdb_flush.
12323 * mdebugread.c (mdebug_build_psymtabs): Don't call gdb_flush.
12324 * m2-valprint.c (m2_val_print): Don't call gdb_flush.
12325 * infrun.c (follow_exec, handle_command): Don't call gdb_flush.
12326 * inf-ptrace.c (inf_ptrace_target::attach): Don't call gdb_flush.
12327 * hppa-tdep.c (unwind_command): Don't call gdb_flush.
12328 * gnu-nat.c (gnu_nat_target::attach): Don't call gdb_flush.
12329 (gnu_nat_target::detach): Don't call gdb_flush.
12330 * f-valprint.c (f_val_print): Don't call gdb_flush.
12331 * darwin-nat.c (darwin_nat_target::attach): Don't call gdb_flush.
12332 * cli/cli-script.c (read_command_lines): Don't call gdb_flush.
12333 * cli/cli-cmds.c (shell_escape, print_disassembly): Don't call
12334 gdb_flush.
12335 * c-valprint.c (c_val_print): Don't call gdb_flush.
12336 * ada-valprint.c (ada_print_scalar): Don't call gdb_flush.
12337
12338 2019-03-05 Tom Tromey <tromey@adacore.com>
12339
12340 * varobj.c (update_dynamic_varobj_children): Update.
12341 (install_default_visualizer): Use reset, not release.
12342 * value.c (set_internalvar): Update.
12343 * dwarf2loc.c (value_of_dwarf_reg_entry): Update.
12344 * common/gdb_ref_ptr.h (class ref_ptr) <release>: Add
12345 ATTRIBUTE_UNUSED_RESULT.
12346
12347 2019-03-05 Tom Tromey <tromey@adacore.com>
12348
12349 * remote.c (class scoped_remote_fd) <release>: Add
12350 ATTRIBUTE_UNUSED_RESULT.
12351
12352 2019-03-05 Tom Tromey <tromey@adacore.com>
12353
12354 * macroexp.c (struct macro_buffer) <release>: Add
12355 ATTRIBUTE_UNUSED_RESULT.
12356
12357 2019-03-05 Tom Tromey <tromey@adacore.com>
12358
12359 * nat/linux-btrace.c (linux_enable_bts, linux_enable_pt): Update.
12360 * common/scoped_mmap.h (class scoped_mmap) <release>: Add
12361 ATTRIBUTE_UNUSED_RESULT.
12362
12363 2019-03-05 Tom Tromey <tromey@adacore.com>
12364
12365 * common/scoped_fd.h (class scoped_fd) <release>: Add
12366 ATTRIBUTE_UNUSED_RESULT.
12367
12368 2019-03-05 Tom Tromey <tromey@adacore.com>
12369
12370 * parser-defs.h (struct parser_state) <release>: Add
12371 ATTRIBUTE_UNUSED_RESULT.
12372
12373 2019-03-05 Tom Tromey <tromey@adacore.com>
12374
12375 * utils.h (class gdb_argv) <release>: Add
12376 ATTRIBUTE_UNUSED_RESULT.
12377 * common/common-defs.h (ATTRIBUTE_UNUSED_RESULT): Define.
12378
12379 2019-03-02 Eli Zaretskii <eliz@gnu.org>
12380
12381 * xml-syscall.c (xml_list_syscalls_by_group): Drop 'struct' from
12382 for-loop range, to avoid compiler warnings.
12383
12384 * tui/tui.c (tui_enable) [__MINGW32__]: Don't declare 'cap', to
12385 avoid compiler warnings about unused variables.
12386
12387 * NEWS: Mention end of support for native debugging on MS-Windows
12388 before XP.
12389
12390 PR gdb/24292
12391 * common/netstuff.c:
12392 * gdbserver/gdbreplay.c
12393 * gdbserver/remote-utils.c:
12394 * ser-tcp.c:
12395 * unittests/parse-connection-spec-selftests.c [USE_WIN32API]:
12396 Include ws2tcpip.h instead of wsiapi.h and winsock2.h. Redefine
12397 _WIN32_WINNT to 0x0501 if defined to a smaller value, as
12398 'getaddrinfo' and 'freeaddrinfo' were not available before
12399 Windows XP, and mingw.org's MinGW headers by default define
12400 _WIN32_WINNT to 0x500.
12401
12402 2019-03-01 Gary Benson <gbenson@redhat.com>
12403
12404 * coffread.c (coff_start_symtab): Remove unnecessary xstrdup.
12405
12406 2019-02-28 Brian Vandenberg <phantall@gmail.com>
12407 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
12408
12409 PR gdb/8527
12410 * procfs.c (proc_wait_for_stop): Wrap write of PCWSTOP in
12411 set_sigint_trap, clear_sigint_trap.
12412
12413 2019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12414
12415 * target.c (target_detach): Clear the regcache and the
12416 frame cache.
12417
12418 2019-02-27 Pedro Alves <palves@redhat.com>
12419
12420 * utils.c (set_screen_size): When we cap the height/width sizes,
12421 tweak the corresponding command variable to show "unlimited":
12422
12423 2019-02-27 Saagar Jha <saagar@saagarjha.com>
12424 Pedro Alves <palves@redhat.com>
12425
12426 * utils.c (set_screen_size): Reduce "infinite" rows and columns
12427 before calling rl_set_screen_size.
12428
12429 2019-02-27 Tom Tromey <tromey@adacore.com>
12430
12431 * configure.ac (HAVE_LIBPYTHON2_4, HAVE_LIBPYTHON2_5): Never
12432 define.
12433 * python/py-value.c: Remove Python 2.4 workaround.
12434 * python/py-utils.c (gdb_pymodule_addobject): Remove Python 2.4
12435 workaround.
12436 * python/py-type.c (convert_field, gdbpy_initialize_types): Remove
12437 Python 2.4 workaround.
12438 * python/python-internal.h: Remove Python 2.4 comment.
12439 (Py_ssize_t): Don't define.
12440 (PyVarObject_HEAD_INIT, Py_TYPE): Don't define.
12441 (gdb_Py_DECREF): Remove Python 2.4 workaround.
12442 (gdb_PyObject_GetAttrString, PyObject_GetAttrString): Remove.
12443 (gdb_PyObject_HasAttrString, PyObject_HasAttrString): Remove.
12444 * python/python.c (do_start_initialization): Remove Python 2.4
12445 workaround.
12446 * python/py-prettyprint.c (class dummy_python_frame): Remove.
12447 (print_children): Remove Python 2.4 workaround.
12448 * python/py-inferior.c (buffer_procs): Remove Python 2.4
12449 workaround.
12450 (CHARBUFFERPROC_NAME): Remove.
12451 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Remove
12452 Python 2.4 workaround.
12453
12454 2019-02-27 Kevin Buettner <kevinb@redhat.com>
12455
12456 * NEWS: Note minimum Python version.
12457
12458 2019-02-27 Kevin Buettner <kevinb@redhat.com>
12459
12460 * python/py-inferior.c (infpy_write_memory): Remove non-IS_PY3K
12461 code from these functions. Remove corresponding ifdefs. Use
12462 Py_buffer_up instead of explicit calls to PyBuffer_Release.
12463 Remove gotos and target of gotos.
12464 (infpy_search_memory): Likewise.
12465
12466 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12467
12468 * gdb/hppa-tdep.c (hppa_dummy_id): Delete.
12469 (hppa_gdbarch_init): Don't register deleted functions with
12470 gdbarch.
12471
12472 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12473
12474 * gdb/h8300-tdep.c (h8300_unwind_pc): Delete.
12475 (h8300_unwind_sp): Delete.
12476 (h8300_dummy_id): Delete.
12477 (h8300_gdbarch_init): Don't register deleted functions with
12478 gdbarch.
12479
12480 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12481
12482 * gdb/ft32-tdep.c (ft32_dummy_id): Delete.
12483 (ft32_unwind_pc): Delete.
12484 (ft32_unwind_sp): Delete.
12485 (ft32_gdbarch_init): Don't register deleted functions with
12486 gdbarch.
12487
12488 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12489
12490 * gdb/frv-tdep.c (frv_dummy_id): Delete.
12491 (frv_unwind_pc): Delete.
12492 (frv_unwind_sp): Delete.
12493 (frv_gdbarch_init): Don't register deleted functions with
12494 gdbarch.
12495
12496 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12497
12498 * gdb/riscv-tdep.c (riscv_dummy_id): Delete.
12499 (riscv_unwind_pc): Delete.
12500 (riscv_unwind_sp): Delete.
12501 (riscv_gdbarch_init): Don't register deleted functions with
12502 gdbarch.
12503
12504 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12505
12506 * gdb/csky-tdep.c (csky_dummy_id): Delete.
12507 (csky_unwind_pc): Delete.
12508 (csky_unwind_sp): Delete.
12509 (csky_gdbarch_init): Don't register deleted functions with
12510 gdbarch.
12511
12512 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12513
12514 * gdb/cris-tdep.c (cris_dummy_id): Delete.
12515 (cris_unwind_pc): Delete.
12516 (cris_unwind_sp): Delete.
12517 (cris_gdbarch_init): Don't register deleted functions with
12518 gdbarch.
12519
12520 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12521
12522 * gdb/bfin-tdep.c (bfin_dummy_id): Delete.
12523 (bfin_unwind_pc): Delete.
12524 (bfin_gdbarch_init): Don't register deleted functions with gdbarch.
12525
12526 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12527
12528 * gdb/arm-tdep.c (arm_dummy_id): Delete.
12529 (arm_unwind_pc): Delete.
12530 (arm_unwind_sp): Delete.
12531 (arm_gdbarch_init): Don't register deleted functions with gdbarch.
12532
12533 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12534
12535 * gdb/arc-tdep.c (arc_dummy_id): Delete.
12536 (arc_unwind_pc): Delete.
12537 (arc_unwind_sp): Delete.
12538 (arc_gdbarch_init): Don't register deleted functions with gdbarch.
12539
12540 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12541
12542 * gdb/alpha-tdep.c (alpha_dummy_id): Delete.
12543 (alpha_unwind_pc): Delete.
12544 (alpha_gdbarch_init): Don't register deleted functions with
12545 gdbarch.
12546
12547 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12548
12549 * gdb/aarch64-tdep.c (aarch64_dummy_id): Delete.
12550 (aarch64_unwind_pc): Delete.
12551 (aarch64_unwind_sp): Delete.
12552 (aarch64_gdbarch_init): Don't register deleted functions with
12553 gdbarch.
12554
12555 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12556
12557 * gdbtypes.c (type_align): Don't consider static members when
12558 computing structure alignment.
12559
12560 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12561
12562 * arc-tdep.c (arc_type_align): Provide alignment for basic types,
12563 return 0 for other types.
12564 * arch-utils.c (default_type_align): Always return 0.
12565 * gdbarch.h: Regenerate.
12566 * gdbarch.sh (type_align): Extend comment.
12567 * gdbtypes.c (type_align): Add additional comments, always call
12568 gdbarch_type_align before applying the default rules.
12569 * i386-tdep.c (i386_type_align): Return 0 as the default rule,
12570 generic code will then apply a suitable default.
12571 * nios2-tdep.c (nios2_type_align): Provide alignment for basic
12572 types, return 0 for other types.
12573
12574 2019-02-27 Joel Brobecker <brobecker@adacore.com>
12575
12576 * NEWS: Create a new section for the next release branch.
12577 Rename the section of the current branch, now that it has
12578 been cut.
12579
12580 2019-02-27 Joel Brobecker <brobecker@adacore.com>
12581
12582 GDB 8.3 branch created (143420fb0d5ae54323ba9953f0818c194635228d):
12583 * version.in: Bump version to 8.3.50.DATE-git.
12584
12585 2019-02-26 Simon Marchi <simon.marchi@efficios.com>
12586
12587 * aix-thread.c (ptid_cmp): Remove unused variable.
12588 (get_signaled_thread): Likewise.
12589 (store_regs_user_thread): Likewise.
12590 (store_regs_kernel_thread): Likewise.
12591 (fetch_regs_kernel_thread): Remove shadowed variable.
12592
12593 2019-02-26 Andrew Burgess <andrew.burgess@embecosm.com>
12594
12595 * features/riscv/32bit-cpu.xml: Add register numbers.
12596 * features/riscv/32bit-fpu.c: Regenerate.
12597 * features/riscv/32bit-fpu.xml: Add register numbers.
12598 * features/riscv/64bit-cpu.xml: Add register numbers.
12599 * features/riscv/64bit-fpu.c: Regenerate.
12600 * features/riscv/64bit-fpu.xml: Add register numbers.
12601
12602 2019-02-26 Kevin Buettner <kevinb@redhat.com>
12603
12604 * NEWS: Mention two argument form of gdb.Value constructor.
12605 * python/py-value.c (convert_buffer_and_type_to_value): New
12606 function.
12607 (valpy_new): Parse arguments via gdb_PyArg_ParseTupleAndKeywords.
12608 Add support for handling an optional second argument. Call
12609 convert_buffer_and_type_to_value as appropriate.
12610 * python/python-internal.h (Py_buffer_deleter): New struct.
12611 (Py_buffer_up): New typedef.
12612
12613 2019-02-25 John Baldwin <jhb@FreeBSD.org>
12614
12615 * dwarf2read.c (dwarf2_get_dwz_file): Reset dwz_bfd to nullptr
12616 instead of releasing ownership.
12617
12618 2019-02-25 Jordan Rupprecht <rupprecht@google.com>
12619
12620 * dwarf2read.c (open_and_init_dwp_file): Call
12621 elf_numsections instead of bfd_count_sections to initialize
12622 dwp_file->num_sections.
12623
12624 2019-02-25 Tom Tromey <tromey@adacore.com>
12625
12626 * solib-darwin.c (darwin_get_dyld_bfd): Don't release dyld_bfd.
12627
12628 2019-02-23 Sergio Durigan Junior <sergiodj@redhat.com>
12629
12630 * gcore.in: Add '--readnever' option when invoking GDB.
12631
12632 2019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
12633
12634 * MAINTAINERS: Update my email address.
12635
12636 2019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
12637
12638 * build-id.c (build_id_to_debug_bfd_1): New function.
12639 (build_id_to_debug_bfd): Look for separate debug file in
12640 sysroot.
12641
12642 2019-02-22 Andrew Burgess <andrew.burgess@embecosm.com>
12643
12644 * gdbarch.sh: Update the copyright year range that is placed into
12645 generated files.
12646
12647 2019-02-22 Keith Seitz <keiths@redhat.com>
12648
12649 PR symtab/23853
12650 * linespec.c (create_sals_line_offset): Search for the default
12651 symtab's filename instead of its fullname.
12652
12653 2019-02-21 Alan Hayward <alan.hayward@arm.com>
12654
12655 * NEWS: Update style defaults.
12656
12657 2019-02-21 Alan Hayward <alan.hayward@arm.com>
12658
12659 * main.c (captured_main_1): Disable styling in batch mode.
12660
12661 2019-02-20 Tom Tromey <tom@tromey.com>
12662
12663 * symtab.c (symtab_symbol_info): Fix typos.
12664
12665 2019-02-20 Tom Tromey <tromey@adacore.com>
12666
12667 * findcmd.c (_initialize_mem_search): Use upper case for
12668 metasyntactic variables.
12669
12670 2019-02-20 Alan Hayward <alan.hayward@arm.com>
12671
12672 * aarch64-tdep.c (aarch64_add_reggroups): New function.
12673 (aarch64_gdbarch_init): Call aarch64_add_reggroups.
12674
12675 2019-02-19 Simon Marchi <simon.marchi@polymtl.ca>
12676
12677 * top.h (source_file_name): Change to std::string.
12678 * top.c (source_file_name): Likewise.
12679 (command_line_input): Adjust.
12680 * cli/cli-script.c (script_from_file): Adjust.
12681
12682 2019-02-19 Tom Tromey <tromey@adacore.com>
12683
12684 * ravenscar-thread.c
12685 (ravenscar_thread_target::update_thread_list): Don't call
12686 ada_build_task_list.
12687 * ada-lang.h (ada_build_task_list): Don't declare.
12688 * ada-tasks.c (struct ada_tasks_inferior_data)
12689 <task_list_valid_p>: Now bool.
12690 (read_known_tasks, ada_task_list_changed)
12691 (ada_tasks_invalidate_inferior_data): Update.
12692 (read_known_tasks_array): Return bool.
12693 (read_known_tasks_list): Likewise.
12694 (read_known_tasks): Return void.
12695 (ada_build_task_list): Now static.
12696
12697 2019-02-18 Andrew Burgess <andrew.burgess@embecosm.com>
12698
12699 * gdbtypes.c (type_align): Allow alignment of TYPE_CODE_METHODPTR
12700 and TYPE_CODE_MEMBERPTR to be overridden by the gdbarch.
12701
12702 2019-02-18 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12703
12704 * ada-task.c (_initialize_tasks): Use 'with_cleanup' register
12705 variant for ada_tasks_pspace_data_handle and
12706 ada_tasks_inferior_data_handle.
12707 (ada_tasks_pspace_data_cleanup): New function.
12708 (ada_tasks_inferior_data_cleanup): New function.
12709
12710 2019-02-17 Tom Tromey <tom@tromey.com>
12711
12712 * macrotab.h (macro_source_fullname): Return a std::string.
12713 * macrotab.c (macro_include, check_for_redefinition)
12714 (macro_undef, macro_lookup_definition, foreach_macro)
12715 (foreach_macro_in_scope): Update.
12716 (macro_source_fullname): Return a std::string.
12717 * macrocmd.c (show_pp_source_pos): Update.
12718
12719 2019-02-17 Tom Tromey <tom@tromey.com>
12720
12721 * macrocmd.c (show_pp_source_pos): Style the file names.
12722
12723 2019-02-17 Tom Tromey <tom@tromey.com>
12724
12725 PR tui/24197:
12726 * tui/tui-source.c (tui_set_source_content_nil): Rewrite.
12727
12728 2019-02-17 Tom Tromey <tom@tromey.com>
12729
12730 * ada-lang.c (user_select_syms): Use filtered printing.
12731 * utils.c (wrap_style): New global.
12732 (desired_style): Remove.
12733 (emit_style_escape): Add stream parameter.
12734 (set_output_style, reset_terminal_style, prompt_for_continue):
12735 Update.
12736 (flush_wrap_buffer): Only flush gdb_stdout.
12737 (wrap_here): Set wrap_style.
12738 (fputs_maybe_filtered): Clear the wrap buffer on exception. Don't
12739 treat escape sequences as a character. Change when wrap buffer is
12740 flushed.
12741 (fputs_styled): Do not set the output style when the default is
12742 requested.
12743 * ui-style.h (struct ui_file_style) <is_default>: New method.
12744 * source.c (print_source_lines_base): Emit escape sequences in one
12745 piece.
12746
12747 2019-02-17 Joel Brobecker <brobecker@adacore.com>
12748
12749 * gdbtypes.c (type_align): Handle TYPE_CODE_RANGE the same as
12750 integers and enumeration types.
12751
12752 2019-02-17 Joel Brobecker <brobecker@adacore.com>
12753
12754 * ada-lang.c (standard_lookup): Use ada_lookup_encoded_symbol
12755 instead of lookup_symbol_in_language
12756 (do_exact_match): New function.
12757 (ada_get_symbol_name_matcher): Return do_exact_match when
12758 doing a verbatim match.
12759
12760 2019-02-15 Tom Tromey <tromey@adacore.com>
12761
12762 * ravenscar-thread.c (ravenscar_thread_target::resume)
12763 (ravenscar_thread_target::wait): Special case wildcard requests.
12764
12765 2019-02-15 Tom Tromey <tromey@adacore.com>
12766
12767 * ravenscar-thread.c (base_ptid): Remove.
12768 (struct ravenscar_thread_target) <close>: New method.
12769 <m_base_ptid>: New member.
12770 <update_inferior_ptid, active_task, task_is_currently_active,
12771 runtime_initialized>: Declare methods.
12772 <ravenscar_thread_target>: Add constructor.
12773 (ravenscar_thread_target::task_is_currently_active)
12774 (ravenscar_thread_target::update_inferior_ptid)
12775 (ravenscar_runtime_initialized): Rename. Now methods.
12776 (ravenscar_thread_target::resume, ravenscar_thread_target::wait)
12777 (ravenscar_thread_target::update_thread_list): Update.
12778 (ravenscar_thread_target::active_task): Now method.
12779 (ravenscar_thread_target::store_registers)
12780 (ravenscar_thread_target::prepare_to_store)
12781 (ravenscar_thread_target::prepare_to_store)
12782 (ravenscar_thread_target::mourn_inferior): Update.
12783 (ravenscar_inferior_created): Use "new" to create target.
12784 (ravenscar_thread_target::get_ada_task_ptid): Update.
12785 (_initialize_ravenscar): Don't initialize base_ptid.
12786 (ravenscar_ops): Remove global.
12787
12788 2019-02-15 Tom Tromey <tromey@adacore.com>
12789
12790 * target.h (push_target): Declare new overload.
12791 * target.c (push_target): New overload, taking an rvalue reference.
12792 * remote.c (remote_target::open_1): Use push_target overload.
12793 * corelow.c (core_target_open): Use push_target overload.
12794
12795 2019-02-15 Tom Tromey <tromey@adacore.com>
12796
12797 * ravenscar-thread.c (is_ravenscar_task)
12798 (ravenscar_task_is_currently_active): Return bool.
12799 (ravenscar_update_inferior_ptid, get_running_thread_msymbol)
12800 (_initialize_ravenscar): Remove "(void)".
12801 (has_ravenscar_runtime, ravenscar_runtime_initialized): Likewise.
12802 Return bool.
12803
12804 2019-02-15 Tom Tromey <tromey@adacore.com>
12805
12806 * ravenscar-thread.c (ravenscar_runtime_initializer)
12807 (has_ravenscar_runtime, get_running_thread_id)
12808 (ravenscar_thread_target::resume): Fix indentation.
12809
12810 2019-02-15 Tom Tromey <tromey@adacore.com>
12811
12812 * sparc-ravenscar-thread.c (struct sparc_ravenscar_ops): Derive
12813 from ravenscar_arch_ops.
12814 (sparc_ravenscar_ops::fetch_registers)
12815 (sparc_ravenscar_ops::store_registers): Now methods.
12816 (sparc_ravenscar_prepare_to_store): Remove.
12817 (sparc_ravenscar_ops): Redefine.
12818 * ravenscar-thread.h (struct ravenscar_arch_ops): Add virtual
12819 methods and destructor. Remove members.
12820 * ravenscar-thread.c (ravenscar_thread_target::fetch_registers)
12821 (ravenscar_thread_target::store_registers)
12822 (ravenscar_thread_target::prepare_to_store): Update.
12823 * ppc-ravenscar-thread.c (ppc_ravenscar_generic_prepare_to_store):
12824 Remove.
12825 (struct ppc_ravenscar_powerpc_ops): Derive from
12826 ravenscar_arch_ops.
12827 (ppc_ravenscar_powerpc_ops::fetch_registers)
12828 (ppc_ravenscar_powerpc_ops::store_registers): Now methods.
12829 (ppc_ravenscar_powerpc_ops): Redefine.
12830 (struct ppc_ravenscar_e500_ops): Derive from ravenscar_arch_ops.
12831 (ppc_ravenscar_e500_ops::fetch_registers)
12832 (ppc_ravenscar_e500_ops::store_registers): Now methods.
12833 (ppc_ravenscar_e500_ops): Redefine.
12834 * aarch64-ravenscar-thread.c
12835 (aarch64_ravenscar_generic_prepare_to_store): Remove.
12836 (struct aarch64_ravenscar_ops): Derive from ravenscar_arch_ops.
12837 (aarch64_ravenscar_fetch_registers)
12838 (aarch64_ravenscar_store_registers): Now methods.
12839 (aarch64_ravenscar_ops): Redefine.
12840
12841 2019-02-15 Tom Tromey <tromey@adacore.com>
12842
12843 * ravenscar-thread.c (ravenscar_thread_target::stopped_by_sw_breakpoint)
12844 (ravenscar_thread_target::stopped_by_hw_breakpoint)
12845 (ravenscar_thread_target::stopped_by_watchpoint)
12846 (ravenscar_thread_target::stopped_data_address)
12847 (ravenscar_thread_target::core_of_thread): Use scoped_restore.
12848
12849 2019-02-15 Tom Tromey <tromey@adacore.com>
12850
12851 * ravenscar-thread.c: Fix some typos.
12852
12853 2019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12854 Tom Tromey <tromey@adacore.com>
12855
12856 * ada-lang.c (ada_exception_sal): Change addr_string to a
12857 std::string.
12858 (create_ada_exception_catchpoint): Update.
12859
12860 2019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12861 Tom Tromey <tromey@adacore.com>
12862
12863 * breakpoint.c (~bp_location): Rename from bp_location_dtor.
12864 (bp_location_ops): Remove.
12865 (base_breakpoint_allocate_location): Update.
12866 (free_bp_location): Update.
12867 * ada-lang.c (class ada_catchpoint_location)
12868 <ada_catchpoint_location>: Remove ops parameter.
12869 (ada_catchpoint_location_dtor): Remove.
12870 (ada_catchpoint_location_ops): Remove.
12871 (allocate_location_exception): Update.
12872 * breakpoint.h (struct bp_location_ops): Remove.
12873 (class bp_location) <bp_location>: Remove bp_location_ops
12874 parameter.
12875 <~bp_location>: Add destructor.
12876 <ops>: Remove.
12877
12878 2019-02-14 Thomas Schwinge <thomas@codesourcery.com>
12879 Pedro Alves <palves@redhat.com>
12880
12881 * remote.c (remote_target::remote_parse_stop_reply): Avoid using
12882 'PATH_MAX'.
12883
12884 2019-02-14 David Michael <fedora.dm0@gmail.com>
12885 Samuel Thibault <samuel.thibault@gnu.org>
12886 Thomas Schwinge <thomas@codesourcery.com>
12887
12888 * gnu-nat.c (S_proc_getmsgport_reply, S_proc_task2proc_reply)
12889 (S_proc_pid2proc_reply): Adjust to Hurd "proc" interface changes.
12890
12891 2019-02-14 Thomas Schwinge <thomas@codesourcery.com>
12892
12893 * gnu-nat.c (gnu_write_inferior, parse_int_arg, _parse_bool_arg)
12894 (check_empty): Use "const char *".
12895
12896 * gnu-nat.c (gnu_nat_target::detach): Instead of
12897 'detach_inferior (pid)' call
12898 'detach_inferior (find_inferior_pid (pid))'.
12899
12900 * configure.nat [gdb_host == i386gnu] (NATDEPFILES): Add
12901 'nat/fork-inferior.o'.
12902 * gnu-nat.c: #include "nat/fork-inferior.h".
12903
12904 * gnu-nat.c (gnu_nat_target::detach): Instead of
12905 'inf_child_maybe_unpush_target (ops)' call 'maybe_unpush_target'.
12906 * gnu-nat.h: #include "inf-child.h".
12907 * i386-gnu-nat.c (gnu_fetch_registers): Rename/move to
12908 'i386_gnu_nat_target::fetch_registers'.
12909 (gnu_store_registers): Rename/move to
12910 'i386_gnu_nat_target::store_registers'.
12911
12912 * config/i386/nm-i386gnu.h: Don't "#include" any files.
12913 * gnu-nat.h (mach_thread_info): New function.
12914 * gnu-nat.c (thread_takeover_sc_cmd): Use it.
12915
12916 * config/i386/nm-i386gnu.h (gnu_target_pid_to_str): Remove.
12917
12918 2019-02-14 Frederic Konrad <konrad@adacore.com>
12919
12920 * riscv-rdep.c (riscv_type_alignment): Handle TYPE_CODE_RANGE.
12921
12922 2019-02-14 Joel Brobecker <brobecker@adacore.com>
12923
12924 * windows-nat.c (windows_add_thread): Add new parameter
12925 "main_thread_p" with default value set to false. Update
12926 function documentation as well as all callers.
12927 (windows_delete_thread): Likewise.
12928 (fake_create_process): Update call to windows_add_thread.
12929 (get_windows_debug_event) <CREATE_THREAD_DEBUG_EVENT>
12930 <CREATE_PROCESS_DEBUG_EVENT>: Likewise.
12931 <EXIT_THREAD_DEBUG_EVENT, EXIT_PROCESS_DEBUG_EVENT>: Update
12932 call to windows_delete_thread.
12933
12934 2019-02-13 Simon Marchi <simon.marchi@ericsson.com>
12935
12936 * MAINTAINERS: Add Andrew Burgess as global maintainer.
12937
12938 2019-02-12 John Baldwin <jhb@FreeBSD.org>
12939
12940 * symfile.c (find_separate_debug_file): Use canonical path of
12941 sysroot with child_path instead of gdb_sysroot if it is valid.
12942
12943 2019-02-12 John Baldwin <jhb@FreeBSD.org>
12944
12945 * symfile.c (find_separate_debug_file): Use child_path to
12946 determine if an object file is under a sysroot.
12947
12948 2019-02-12 John Baldwin <jhb@FreeBSD.org>
12949
12950 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
12951 unittests/child-path-selftests.c.
12952 * common/pathstuff.c (child_path): New function.
12953 * common/pathstuff.h (child_path): New prototype.
12954 * unittests/child-path-selftests.c: New file.
12955
12956 2019-02-12 John Baldwin <jhb@FreeBSD.org>
12957
12958 * symfile.c (find_separate_debug_file): Look for separate debug
12959 files in debug directories under the sysroot.
12960
12961 2019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12962
12963 * symtab.h (struct minimal_symbol data_p): New const method.
12964 (struct minimal_symbol text_p): Likewise.
12965 * symtab.c (output_source_filename): Use file name style
12966 to print file name.
12967 (print_symbol_info): Likewise.
12968 (print_msymbol_info): Use address style to print addresses.
12969 Use function name style to print executable text symbols.
12970 (expand_symtab_containing_pc): Use data_p.
12971 (find_pc_sect_compunit_symtab): Likewise.
12972
12973 2019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12974
12975 * breakpoint.c (describe_other_breakpoints): Use address style
12976 to print addresses.
12977 (say_where): Likewise.
12978
12979 2019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12980
12981 * ada-typeprint.c (print_func_type): Print function name
12982 style to print function name.
12983 * c-typeprint.c (c_print_type_1): Likewise.
12984
12985 2019-02-11 Alan Hayward <alan.hayward@arm.com>
12986
12987 * aarch64-linux-tdep.c (aarch64_linux_get_syscall_number): Check
12988 for execve.
12989
12990 2019-02-10 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12991
12992 * c-exp.y (direct_abs_decl): Use emplace_back to record the
12993 type_stack.
12994
12995 2019-02-10 Joel Brobecker <brobecker@adacore.com>
12996
12997 * ada-varobj.c (ada_value_is_changeable_p): Add handling of
12998 TYPE_CODE_REF types.
12999
13000 2019-02-08 Jim Wilson <jimw@sifive.com>
13001
13002 * riscv-linux-tdep.c (riscv_linux_fregmap): New.
13003 (riscv_linux_fregset): New.
13004 (riscv_linux_iterate_over_regset_sections): Call cb for .reg2 section.
13005
13006 2019-02-07 Tom Tromey <tom@tromey.com>
13007
13008 * thread.c (thread_cancel_execution_command): Update.
13009 * thread-fsm.h (struct thread_fsm): Add constructor, destructor,
13010 methods.
13011 (struct thread_fsm_ops): Remove.
13012 (thread_fsm_ctor, thread_fsm_delete, thread_fsm_clean_up)
13013 (thread_fsm_should_stop, thread_fsm_return_value)
13014 (thread_fsm_set_finished, thread_fsm_finished_p)
13015 (thread_fsm_async_reply_reason, thread_fsm_should_notify_stop):
13016 Don't declare.
13017 * mi/mi-interp.c (mi_on_normal_stop_1): Update.
13018 * infrun.c (clear_proceed_status_thread)
13019 (clean_up_just_stopped_threads_fsms, fetch_inferior_event)
13020 (print_stop_event): Update.
13021 * infcmd.c (struct step_command_fsm): Inherit from thread_fsm.
13022 Add constructor.
13023 (step_command_fsm_ops): Remove.
13024 (new_step_command_fsm): Remove.
13025 (step_1): Update.
13026 (step_command_fsm::should_stop): Rename from
13027 step_command_fsm_should_stop.
13028 (step_command_fsm::clean_up): Rename from
13029 step_command_fsm_clean_up.
13030 (step_command_fsm::do_async_reply_reason): Rename from
13031 step_command_fsm_async_reply_reason.
13032 (struct until_next_fsm): Inherit from thread_fsm. Add
13033 constructor.
13034 (until_next_fsm_ops): Remove.
13035 (new_until_next_fsm): Remove.
13036 (until_next_fsm::should_stop): Rename from
13037 until_next_fsm_should_stop.
13038 (until_next_fsm::clean_up): Rename from until_next_fsm_clean_up.
13039 (until_next_fsm::do_async_reply_reason): Rename from
13040 until_next_fsm_async_reply_reason.
13041 (struct finish_command_fsm): Inherit from thread_fsm. Add
13042 constructor. Change type of breakpoint.
13043 (finish_command_fsm_ops): Remove.
13044 (new_finish_command_fsm): Remove.
13045 (finish_command_fsm::should_stop): Rename from
13046 finish_command_fsm_should_stop.
13047 (finish_command_fsm::clean_up): Rename from
13048 finish_command_fsm_clean_up.
13049 (finish_command_fsm::return_value): Rename from
13050 finish_command_fsm_return_value.
13051 (finish_command_fsm::do_async_reply_reason): Rename from
13052 finish_command_fsm_async_reply_reason.
13053 (finish_command): Update.
13054 * infcall.c (struct call_thread_fsm): Inherit from thread_fsm.
13055 Add constructor.
13056 (call_thread_fsm_ops): Remove.
13057 (call_thread_fsm::call_thread_fsm): Rename from
13058 new_call_thread_fsm.
13059 (call_thread_fsm::should_stop): Rename from
13060 call_thread_fsm_should_stop.
13061 (call_thread_fsm::should_notify_stop): Rename from
13062 call_thread_fsm_should_notify_stop.
13063 (run_inferior_call, call_function_by_hand_dummy): Update.
13064 * cli/cli-interp.c (should_print_stop_to_console): Update.
13065 * breakpoint.c (struct until_break_fsm): Inherit from thread_fsm.
13066 Add constructor. Change type of location_breakpoint,
13067 caller_breakpoint.
13068 (until_break_fsm_ops): Remove.
13069 (new_until_break_fsm): Remove.
13070 (until_break_fsm::should_stop): Rename from
13071 until_break_fsm_should_stop.
13072 (until_break_fsm::clean_up): Rename from
13073 until_break_fsm_clean_up.
13074 (until_break_fsm::do_async_reply_reason): Rename from
13075 until_break_fsm_async_reply_reason.
13076 (until_break_command): Update.
13077 * thread-fsm.c: Remove.
13078 * Makefile.in (COMMON_SFILES): Remove thread-fsm.c.
13079
13080 2019-02-07 Tom Tromey <tom@tromey.com>
13081
13082 * yy-remap.h: Add include guard.
13083 * xtensa-tdep.h: Add include guard.
13084 * xcoffread.h: Rename include guard.
13085 * varobj-iter.h: Add include guard.
13086 * tui/tui.h: Rename include guard.
13087 * tui/tui-winsource.h: Rename include guard.
13088 * tui/tui-wingeneral.h: Rename include guard.
13089 * tui/tui-windata.h: Rename include guard.
13090 * tui/tui-win.h: Rename include guard.
13091 * tui/tui-stack.h: Rename include guard.
13092 * tui/tui-source.h: Rename include guard.
13093 * tui/tui-regs.h: Rename include guard.
13094 * tui/tui-out.h: Rename include guard.
13095 * tui/tui-layout.h: Rename include guard.
13096 * tui/tui-io.h: Rename include guard.
13097 * tui/tui-hooks.h: Rename include guard.
13098 * tui/tui-file.h: Rename include guard.
13099 * tui/tui-disasm.h: Rename include guard.
13100 * tui/tui-data.h: Rename include guard.
13101 * tui/tui-command.h: Rename include guard.
13102 * tic6x-tdep.h: Add include guard.
13103 * target/waitstatus.h: Rename include guard.
13104 * target/wait.h: Rename include guard.
13105 * target/target.h: Rename include guard.
13106 * target/resume.h: Rename include guard.
13107 * target-float.h: Rename include guard.
13108 * stabsread.h: Add include guard.
13109 * rs6000-tdep.h: Add include guard.
13110 * riscv-fbsd-tdep.h: Add include guard.
13111 * regformats/regdef.h: Rename include guard.
13112 * record.h: Rename include guard.
13113 * python/python.h: Rename include guard.
13114 * python/python-internal.h: Rename include guard.
13115 * python/py-stopevent.h: Rename include guard.
13116 * python/py-ref.h: Rename include guard.
13117 * python/py-record.h: Rename include guard.
13118 * python/py-record-full.h: Rename include guard.
13119 * python/py-record-btrace.h: Rename include guard.
13120 * python/py-instruction.h: Rename include guard.
13121 * python/py-events.h: Rename include guard.
13122 * python/py-event.h: Rename include guard.
13123 * procfs.h: Add include guard.
13124 * proc-utils.h: Add include guard.
13125 * p-lang.h: Add include guard.
13126 * or1k-tdep.h: Rename include guard.
13127 * observable.h: Rename include guard.
13128 * nto-tdep.h: Rename include guard.
13129 * nat/x86-linux.h: Rename include guard.
13130 * nat/x86-linux-dregs.h: Rename include guard.
13131 * nat/x86-gcc-cpuid.h: Add include guard.
13132 * nat/x86-dregs.h: Rename include guard.
13133 * nat/x86-cpuid.h: Rename include guard.
13134 * nat/ppc-linux.h: Rename include guard.
13135 * nat/mips-linux-watch.h: Rename include guard.
13136 * nat/linux-waitpid.h: Rename include guard.
13137 * nat/linux-ptrace.h: Rename include guard.
13138 * nat/linux-procfs.h: Rename include guard.
13139 * nat/linux-osdata.h: Rename include guard.
13140 * nat/linux-nat.h: Rename include guard.
13141 * nat/linux-namespaces.h: Rename include guard.
13142 * nat/linux-btrace.h: Rename include guard.
13143 * nat/glibc_thread_db.h: Rename include guard.
13144 * nat/gdb_thread_db.h: Rename include guard.
13145 * nat/gdb_ptrace.h: Rename include guard.
13146 * nat/fork-inferior.h: Rename include guard.
13147 * nat/amd64-linux-siginfo.h: Rename include guard.
13148 * nat/aarch64-sve-linux-sigcontext.h: Rename include guard.
13149 * nat/aarch64-sve-linux-ptrace.h: Rename include guard.
13150 * nat/aarch64-linux.h: Rename include guard.
13151 * nat/aarch64-linux-hw-point.h: Rename include guard.
13152 * mn10300-tdep.h: Add include guard.
13153 * mips-linux-tdep.h: Add include guard.
13154 * mi/mi-parse.h: Rename include guard.
13155 * mi/mi-out.h: Rename include guard.
13156 * mi/mi-main.h: Rename include guard.
13157 * mi/mi-interp.h: Rename include guard.
13158 * mi/mi-getopt.h: Rename include guard.
13159 * mi/mi-console.h: Rename include guard.
13160 * mi/mi-common.h: Rename include guard.
13161 * mi/mi-cmds.h: Rename include guard.
13162 * mi/mi-cmd-break.h: Rename include guard.
13163 * m2-lang.h: Add include guard.
13164 * location.h: Rename include guard.
13165 * linux-record.h: Rename include guard.
13166 * linux-nat.h: Add include guard.
13167 * linux-fork.h: Add include guard.
13168 * i386-darwin-tdep.h: Rename include guard.
13169 * hppa-linux-offsets.h: Add include guard.
13170 * guile/guile.h: Rename include guard.
13171 * guile/guile-internal.h: Rename include guard.
13172 * gnu-nat.h: Rename include guard.
13173 * gdb-stabs.h: Rename include guard.
13174 * frv-tdep.h: Add include guard.
13175 * f-lang.h: Add include guard.
13176 * event-loop.h: Add include guard.
13177 * darwin-nat.h: Rename include guard.
13178 * cp-abi.h: Rename include guard.
13179 * config/sparc/nm-sol2.h: Rename include guard.
13180 * config/nm-nto.h: Rename include guard.
13181 * config/nm-linux.h: Add include guard.
13182 * config/i386/nm-i386gnu.h: Rename include guard.
13183 * config/djgpp/nl_types.h: Rename include guard.
13184 * config/djgpp/langinfo.h: Rename include guard.
13185 * compile/gcc-cp-plugin.h: Add include guard.
13186 * compile/gcc-c-plugin.h: Add include guard.
13187 * compile/compile.h: Rename include guard.
13188 * compile/compile-object-run.h: Rename include guard.
13189 * compile/compile-object-load.h: Rename include guard.
13190 * compile/compile-internal.h: Rename include guard.
13191 * compile/compile-cplus.h: Rename include guard.
13192 * compile/compile-c.h: Rename include guard.
13193 * common/xml-utils.h: Rename include guard.
13194 * common/x86-xstate.h: Rename include guard.
13195 * common/version.h: Rename include guard.
13196 * common/vec.h: Rename include guard.
13197 * common/tdesc.h: Rename include guard.
13198 * common/selftest.h: Rename include guard.
13199 * common/scoped_restore.h: Rename include guard.
13200 * common/scoped_mmap.h: Rename include guard.
13201 * common/scoped_fd.h: Rename include guard.
13202 * common/safe-iterator.h: Rename include guard.
13203 * common/run-time-clock.h: Rename include guard.
13204 * common/refcounted-object.h: Rename include guard.
13205 * common/queue.h: Rename include guard.
13206 * common/ptid.h: Rename include guard.
13207 * common/print-utils.h: Rename include guard.
13208 * common/preprocessor.h: Rename include guard.
13209 * common/pathstuff.h: Rename include guard.
13210 * common/observable.h: Rename include guard.
13211 * common/netstuff.h: Rename include guard.
13212 * common/job-control.h: Rename include guard.
13213 * common/host-defs.h: Rename include guard.
13214 * common/gdb_wait.h: Rename include guard.
13215 * common/gdb_vecs.h: Rename include guard.
13216 * common/gdb_unlinker.h: Rename include guard.
13217 * common/gdb_unique_ptr.h: Rename include guard.
13218 * common/gdb_tilde_expand.h: Rename include guard.
13219 * common/gdb_sys_time.h: Rename include guard.
13220 * common/gdb_string_view.h: Rename include guard.
13221 * common/gdb_splay_tree.h: Rename include guard.
13222 * common/gdb_setjmp.h: Rename include guard.
13223 * common/gdb_ref_ptr.h: Rename include guard.
13224 * common/gdb_optional.h: Rename include guard.
13225 * common/gdb_locale.h: Rename include guard.
13226 * common/gdb_assert.h: Rename include guard.
13227 * common/filtered-iterator.h: Rename include guard.
13228 * common/filestuff.h: Rename include guard.
13229 * common/fileio.h: Rename include guard.
13230 * common/environ.h: Rename include guard.
13231 * common/common-utils.h: Rename include guard.
13232 * common/common-types.h: Rename include guard.
13233 * common/common-regcache.h: Rename include guard.
13234 * common/common-inferior.h: Rename include guard.
13235 * common/common-gdbthread.h: Rename include guard.
13236 * common/common-exceptions.h: Rename include guard.
13237 * common/common-defs.h: Rename include guard.
13238 * common/common-debug.h: Rename include guard.
13239 * common/cleanups.h: Rename include guard.
13240 * common/buffer.h: Rename include guard.
13241 * common/btrace-common.h: Rename include guard.
13242 * common/break-common.h: Rename include guard.
13243 * cli/cli-utils.h: Rename include guard.
13244 * cli/cli-style.h: Rename include guard.
13245 * cli/cli-setshow.h: Rename include guard.
13246 * cli/cli-script.h: Rename include guard.
13247 * cli/cli-interp.h: Rename include guard.
13248 * cli/cli-decode.h: Rename include guard.
13249 * cli/cli-cmds.h: Rename include guard.
13250 * charset-list.h: Add include guard.
13251 * buildsym-legacy.h: Rename include guard.
13252 * bfin-tdep.h: Add include guard.
13253 * ax.h: Rename include guard.
13254 * arm-linux-tdep.h: Add include guard.
13255 * arm-fbsd-tdep.h: Add include guard.
13256 * arch/xtensa.h: Rename include guard.
13257 * arch/tic6x.h: Add include guard.
13258 * arch/i386.h: Add include guard.
13259 * arch/arm.h: Rename include guard.
13260 * arch/arm-linux.h: Rename include guard.
13261 * arch/arm-get-next-pcs.h: Rename include guard.
13262 * arch/amd64.h: Add include guard.
13263 * arch/aarch64-insn.h: Rename include guard.
13264 * arch-utils.h: Rename include guard.
13265 * annotate.h: Add include guard.
13266 * amd64-darwin-tdep.h: Rename include guard.
13267 * aarch64-linux-tdep.h: Add include guard.
13268 * aarch64-fbsd-tdep.h: Add include guard.
13269 * aarch32-linux-nat.h: Add include guard.
13270
13271 2019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13272
13273 * macrotab.c (macro_define_internal): New function that
13274 factorizes macro_define_object_internal and macro_define_function
13275 code.
13276 (macro_define_object_internal): Use macro_define_internal.
13277 (macro_define_function): Likewise.
13278
13279 2019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13280
13281 * macrocmd.c (extract_identifier): Return
13282 a gdb::unique_xmalloc_ptr<char> instead of a char *, and update
13283 callers.
13284
13285 2019-02-06 John Baldwin <jhb@FreeBSD.org>
13286
13287 * fbsd-nat.c (fbsd_fetch_cmdline): Join arguments with spaces.
13288
13289 2019-02-05 Tom Tromey <tom@tromey.com>
13290
13291 * target.c (target_stack::unpush): Move assertion earlier.
13292
13293 2019-01-30 Tom Tromey <tom@tromey.com>
13294
13295 PR python/23615:
13296 * python/python.c (execute_gdb_command): Use gdbpy_allow_threads.
13297 (gdbpy_parse_and_eval): Likewise.
13298 * python/python-internal.h (gdbpy_allow_threads): New class.
13299
13300 2019-01-28 John Baldwin <jhb@FreeBSD.org>
13301
13302 * aarch64-fbsd-tdep.c (aarch64_fbsd_gregmap)
13303 (aarch64_fbsd_fpregmap): Move earlier.
13304 (AARCH64_MCONTEXT_REG_SIZE, AARCH64_MCONTEXT_FPREG_SIZE): Delete.
13305 (aarch64_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
13306 instead of individual calls to trad_frame_set_reg_addr.
13307 * arm-fbsd-tdep.c (arm_fbsd_gregmap, arm_fbsd_vfpregmap): Move
13308 earlier.
13309 (ARM_MCONTEXT_REG_SIZE, ARM_MCONTEXT_VFP_REG_SIZE): Delete.
13310 (arm_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
13311 instead of individual calls to trad_frame_set_reg_addr.
13312
13313 2019-01-28 Alan Hayward <alan.hayward@arm.com>
13314
13315 * CONTRIBUTE: Replace contribution list with wiki link.
13316
13317 2019-01-25 Tom Tromey <tom@tromey.com>
13318
13319 * Makefile.in (GDB_CFLAGS): Don't add -I for common.
13320
13321 2019-01-25 Tom Tromey <tom@tromey.com>
13322
13323 * xtensa-linux-nat.c: Fix common/ includes.
13324 * xml-support.h: Fix common/ includes.
13325 * xml-support.c: Fix common/ includes.
13326 * x86-linux-nat.c: Fix common/ includes.
13327 * windows-nat.c: Fix common/ includes.
13328 * varobj.h: Fix common/ includes.
13329 * varobj.c: Fix common/ includes.
13330 * value.c: Fix common/ includes.
13331 * valops.c: Fix common/ includes.
13332 * utils.c: Fix common/ includes.
13333 * unittests/xml-utils-selftests.c: Fix common/ includes.
13334 * unittests/utils-selftests.c: Fix common/ includes.
13335 * unittests/unpack-selftests.c: Fix common/ includes.
13336 * unittests/tracepoint-selftests.c: Fix common/ includes.
13337 * unittests/style-selftests.c: Fix common/ includes.
13338 * unittests/string_view-selftests.c: Fix common/ includes.
13339 * unittests/scoped_restore-selftests.c: Fix common/ includes.
13340 * unittests/scoped_mmap-selftests.c: Fix common/ includes.
13341 * unittests/scoped_fd-selftests.c: Fix common/ includes.
13342 * unittests/rsp-low-selftests.c: Fix common/ includes.
13343 * unittests/parse-connection-spec-selftests.c: Fix common/
13344 includes.
13345 * unittests/optional-selftests.c: Fix common/ includes.
13346 * unittests/offset-type-selftests.c: Fix common/ includes.
13347 * unittests/observable-selftests.c: Fix common/ includes.
13348 * unittests/mkdir-recursive-selftests.c: Fix common/ includes.
13349 * unittests/memrange-selftests.c: Fix common/ includes.
13350 * unittests/memory-map-selftests.c: Fix common/ includes.
13351 * unittests/lookup_name_info-selftests.c: Fix common/ includes.
13352 * unittests/function-view-selftests.c: Fix common/ includes.
13353 * unittests/environ-selftests.c: Fix common/ includes.
13354 * unittests/copy_bitwise-selftests.c: Fix common/ includes.
13355 * unittests/common-utils-selftests.c: Fix common/ includes.
13356 * unittests/cli-utils-selftests.c: Fix common/ includes.
13357 * unittests/array-view-selftests.c: Fix common/ includes.
13358 * ui-file.c: Fix common/ includes.
13359 * tui/tui-io.c: Fix common/ includes.
13360 * tracepoint.h: Fix common/ includes.
13361 * tracepoint.c: Fix common/ includes.
13362 * tracefile-tfile.c: Fix common/ includes.
13363 * top.h: Fix common/ includes.
13364 * top.c: Fix common/ includes.
13365 * thread.c: Fix common/ includes.
13366 * target/waitstatus.h: Fix common/ includes.
13367 * target/waitstatus.c: Fix common/ includes.
13368 * target.h: Fix common/ includes.
13369 * target.c: Fix common/ includes.
13370 * target-memory.c: Fix common/ includes.
13371 * target-descriptions.c: Fix common/ includes.
13372 * symtab.h: Fix common/ includes.
13373 * symfile.c: Fix common/ includes.
13374 * stap-probe.c: Fix common/ includes.
13375 * spu-linux-nat.c: Fix common/ includes.
13376 * sparc-nat.c: Fix common/ includes.
13377 * source.c: Fix common/ includes.
13378 * solib.c: Fix common/ includes.
13379 * solib-target.c: Fix common/ includes.
13380 * ser-unix.c: Fix common/ includes.
13381 * ser-tcp.c: Fix common/ includes.
13382 * ser-pipe.c: Fix common/ includes.
13383 * ser-base.c: Fix common/ includes.
13384 * selftest-arch.c: Fix common/ includes.
13385 * s12z-tdep.c: Fix common/ includes.
13386 * rust-exp.y: Fix common/ includes.
13387 * rs6000-aix-tdep.c: Fix common/ includes.
13388 * riscv-tdep.c: Fix common/ includes.
13389 * remote.c: Fix common/ includes.
13390 * remote-notif.h: Fix common/ includes.
13391 * remote-fileio.h: Fix common/ includes.
13392 * remote-fileio.c: Fix common/ includes.
13393 * regcache.h: Fix common/ includes.
13394 * regcache.c: Fix common/ includes.
13395 * record-btrace.c: Fix common/ includes.
13396 * python/python.c: Fix common/ includes.
13397 * python/py-type.c: Fix common/ includes.
13398 * python/py-inferior.c: Fix common/ includes.
13399 * progspace.h: Fix common/ includes.
13400 * producer.c: Fix common/ includes.
13401 * procfs.c: Fix common/ includes.
13402 * proc-api.c: Fix common/ includes.
13403 * printcmd.c: Fix common/ includes.
13404 * ppc-linux-nat.c: Fix common/ includes.
13405 * parser-defs.h: Fix common/ includes.
13406 * osdata.c: Fix common/ includes.
13407 * obsd-nat.c: Fix common/ includes.
13408 * nat/x86-linux.c: Fix common/ includes.
13409 * nat/x86-linux-dregs.c: Fix common/ includes.
13410 * nat/x86-dregs.h: Fix common/ includes.
13411 * nat/x86-dregs.c: Fix common/ includes.
13412 * nat/ppc-linux.c: Fix common/ includes.
13413 * nat/mips-linux-watch.h: Fix common/ includes.
13414 * nat/mips-linux-watch.c: Fix common/ includes.
13415 * nat/linux-waitpid.c: Fix common/ includes.
13416 * nat/linux-ptrace.h: Fix common/ includes.
13417 * nat/linux-ptrace.c: Fix common/ includes.
13418 * nat/linux-procfs.c: Fix common/ includes.
13419 * nat/linux-personality.c: Fix common/ includes.
13420 * nat/linux-osdata.c: Fix common/ includes.
13421 * nat/linux-namespaces.c: Fix common/ includes.
13422 * nat/linux-btrace.h: Fix common/ includes.
13423 * nat/linux-btrace.c: Fix common/ includes.
13424 * nat/fork-inferior.c: Fix common/ includes.
13425 * nat/amd64-linux-siginfo.c: Fix common/ includes.
13426 * nat/aarch64-sve-linux-ptrace.c: Fix common/ includes.
13427 * nat/aarch64-linux.c: Fix common/ includes.
13428 * nat/aarch64-linux-hw-point.h: Fix common/ includes.
13429 * nat/aarch64-linux-hw-point.c: Fix common/ includes.
13430 * namespace.h: Fix common/ includes.
13431 * mips-linux-tdep.c: Fix common/ includes.
13432 * minsyms.c: Fix common/ includes.
13433 * mi/mi-parse.h: Fix common/ includes.
13434 * mi/mi-main.c: Fix common/ includes.
13435 * mi/mi-cmd-env.c: Fix common/ includes.
13436 * memrange.h: Fix common/ includes.
13437 * memattr.c: Fix common/ includes.
13438 * maint.h: Fix common/ includes.
13439 * maint.c: Fix common/ includes.
13440 * main.c: Fix common/ includes.
13441 * machoread.c: Fix common/ includes.
13442 * location.c: Fix common/ includes.
13443 * linux-thread-db.c: Fix common/ includes.
13444 * linux-nat.c: Fix common/ includes.
13445 * linux-fork.c: Fix common/ includes.
13446 * inline-frame.c: Fix common/ includes.
13447 * infrun.c: Fix common/ includes.
13448 * inflow.c: Fix common/ includes.
13449 * inferior.h: Fix common/ includes.
13450 * inferior.c: Fix common/ includes.
13451 * infcmd.c: Fix common/ includes.
13452 * inf-ptrace.c: Fix common/ includes.
13453 * inf-child.c: Fix common/ includes.
13454 * ia64-linux-nat.c: Fix common/ includes.
13455 * i387-tdep.c: Fix common/ includes.
13456 * i386-tdep.c: Fix common/ includes.
13457 * i386-linux-tdep.c: Fix common/ includes.
13458 * i386-linux-nat.c: Fix common/ includes.
13459 * i386-go32-tdep.c: Fix common/ includes.
13460 * i386-fbsd-tdep.c: Fix common/ includes.
13461 * i386-fbsd-nat.c: Fix common/ includes.
13462 * guile/scm-type.c: Fix common/ includes.
13463 * guile/guile.c: Fix common/ includes.
13464 * go32-nat.c: Fix common/ includes.
13465 * gnu-nat.c: Fix common/ includes.
13466 * gdbthread.h: Fix common/ includes.
13467 * gdbarch-selftests.c: Fix common/ includes.
13468 * gdb_usleep.c: Fix common/ includes.
13469 * gdb_select.h: Fix common/ includes.
13470 * gdb_bfd.c: Fix common/ includes.
13471 * gcore.c: Fix common/ includes.
13472 * fork-child.c: Fix common/ includes.
13473 * findvar.c: Fix common/ includes.
13474 * fbsd-nat.c: Fix common/ includes.
13475 * event-top.c: Fix common/ includes.
13476 * event-loop.c: Fix common/ includes.
13477 * dwarf2read.c: Fix common/ includes.
13478 * dwarf2loc.c: Fix common/ includes.
13479 * dwarf2-frame.c: Fix common/ includes.
13480 * dwarf-index-cache.c: Fix common/ includes.
13481 * dtrace-probe.c: Fix common/ includes.
13482 * disasm-selftests.c: Fix common/ includes.
13483 * defs.h: Fix common/ includes.
13484 * csky-tdep.c: Fix common/ includes.
13485 * cp-valprint.c: Fix common/ includes.
13486 * cp-support.h: Fix common/ includes.
13487 * cp-support.c: Fix common/ includes.
13488 * corelow.c: Fix common/ includes.
13489 * completer.h: Fix common/ includes.
13490 * completer.c: Fix common/ includes.
13491 * compile/compile.c: Fix common/ includes.
13492 * compile/compile-loc2c.c: Fix common/ includes.
13493 * compile/compile-cplus-types.c: Fix common/ includes.
13494 * compile/compile-cplus-symbols.c: Fix common/ includes.
13495 * command.h: Fix common/ includes.
13496 * cli/cli-dump.c: Fix common/ includes.
13497 * cli/cli-cmds.c: Fix common/ includes.
13498 * charset.c: Fix common/ includes.
13499 * build-id.c: Fix common/ includes.
13500 * btrace.h: Fix common/ includes.
13501 * btrace.c: Fix common/ includes.
13502 * breakpoint.h: Fix common/ includes.
13503 * breakpoint.c: Fix common/ includes.
13504 * ax.h:
13505 (enum agent_op): Fix common/ includes.
13506 * ax-general.c (struct aop_map): Fix common/ includes.
13507 * ax-gdb.c: Fix common/ includes.
13508 * auxv.c: Fix common/ includes.
13509 * auto-load.c: Fix common/ includes.
13510 * arm-tdep.c: Fix common/ includes.
13511 * arch/riscv.c: Fix common/ includes.
13512 * arch/ppc-linux-common.c: Fix common/ includes.
13513 * arch/i386.c: Fix common/ includes.
13514 * arch/arm.c: Fix common/ includes.
13515 * arch/arm-linux.c: Fix common/ includes.
13516 * arch/arm-get-next-pcs.c: Fix common/ includes.
13517 * arch/amd64.c: Fix common/ includes.
13518 * arch/aarch64.c: Fix common/ includes.
13519 * arch/aarch64-insn.c: Fix common/ includes.
13520 * arch-utils.c: Fix common/ includes.
13521 * amd64-windows-tdep.c: Fix common/ includes.
13522 * amd64-tdep.c: Fix common/ includes.
13523 * amd64-sol2-tdep.c: Fix common/ includes.
13524 * amd64-obsd-tdep.c: Fix common/ includes.
13525 * amd64-nbsd-tdep.c: Fix common/ includes.
13526 * amd64-linux-tdep.c: Fix common/ includes.
13527 * amd64-linux-nat.c: Fix common/ includes.
13528 * amd64-fbsd-tdep.c: Fix common/ includes.
13529 * amd64-fbsd-nat.c: Fix common/ includes.
13530 * amd64-dicos-tdep.c: Fix common/ includes.
13531 * amd64-darwin-tdep.c: Fix common/ includes.
13532 * agent.c: Fix common/ includes.
13533 * ada-lang.h: Fix common/ includes.
13534 * ada-lang.c: Fix common/ includes.
13535 * aarch64-tdep.c: Fix common/ includes.
13536
13537 2019-01-25 Tom Tromey <tom@tromey.com>
13538
13539 * common/create-version.sh: Use common/version.h.
13540
13541 2019-01-24 Pedro Alves <palves@redhat.com>
13542
13543 * infrun.c (signal_stop, signal_print, signal_program)
13544 (signal_catch, signal_pass): Now arrays instead of pointers.
13545 (update_signals_program_target, do_target_resume)
13546 (signal_catch_update, handle_command, _initialize_infrun): Adjust.
13547 * linux-nat.c (linux_nat_target::pass_signals)
13548 (linux_nat_target::create_inferior, linux_nat_target::attach):
13549 Adjust.
13550 * linux-nat.h (linux_nat_target::pass_signals): Adjust.
13551 * nto-procfs.c (nto_procfs_target::pass_signals): Adjust.
13552 * procfs.c (procfs_target::pass_signals): Adjust.
13553 * record-full.c (record_full_target::resume): Adjust.
13554 * remote.c (remote_target::pass_signals)
13555 (remote_target::program_signals): Adjust.
13556 * target-debug.h (target_debug_print_signals): Now takes a
13557 gdb::array_view as parameter. Adjust.
13558 * target.h (target_ops) <pass_signals, program_signals>: Replace
13559 pointer and length parameters with gdb::array_view.
13560 (target_pass_signals, target_program_signals): Likewise.
13561 * target-delegates.c: Regenerate.
13562
13563 2019-01-24 Pedro Alves <palves@redhat.com>
13564
13565 * common/forward-scope-exit.h
13566 (forward_scope_exit::forward_scope_exit): Pass arguments to
13567 m_bind_function directly, instead of creating a std::bind and
13568 copying that.
13569
13570 2019-01-24 Alan Hayward <alan.hayward@arm.com>
13571
13572 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
13573 for static members.
13574 (pass_in_v_vfp_candidate): Likewise.
13575
13576 2019-01-23 Tom Tromey <tom@tromey.com>
13577 Pedro Alves <palves@redhat.com>
13578
13579 * regcache.c (class regcache_invalidator): Remove.
13580 (regcache::raw_write): Use make_scope_exit.
13581
13582 2019-01-23 Tom Tromey <tom@tromey.com>
13583
13584 * ui-out.h (class ui_out_emit_type): Update comment.
13585
13586 2019-01-23 Tom Tromey <tom@tromey.com>
13587
13588 * infrun.c (fetch_inferior_event): Update comment.
13589
13590 2019-01-23 Tom Tromey <tom@tromey.com>
13591 Pedro Alves <palves@redhat.com>
13592
13593 * infrun.c (reinstall_readline_callback_handler_cleanup): Remove
13594 parameter.
13595 (fetch_inferior_event): Use SCOPE_EXIT.
13596
13597
13598 2019-01-23 Tom Tromey <tom@tromey.com>
13599 Pedro Alves <palves@redhat.com>
13600
13601 * infrun.c (disable_thread_events): Delete.
13602 (stop_all_threads): Use SCOPE_EXIT.
13603
13604 2019-01-23 Tom Tromey <tom@tromey.com>
13605 Pedro Alves <palves@redhat.com>
13606
13607 * symfile.c: Include forward-scope-exit.h.
13608 (clear_symtab_users_cleanup): Replace forward declaration with
13609 a FORWARD_SCOPE_EXIT.
13610 (syms_from_objfile_1): Use the forward_scope_exit and
13611 gdb::optional instead of cleanup_function.
13612 (reread_symbols): Use the forward_scope_exit instead of
13613 cleanup_function.
13614 (clear_symtab_users_cleanup): Remove function.
13615
13616 2019-01-23 Tom Tromey <tom@tromey.com>
13617 Pedro Alves <palves@redhat.com>
13618
13619 * linux-nat.c: Include scope-exit.h.
13620 (cleanup_target_stop): Remove.
13621 (linux_nat_target::static_tracepoint_markers_by_strid): Use
13622 SCOPE_EXIT.
13623
13624 2019-01-23 Tom Tromey <tom@tromey.com>
13625 Pedro Alves <palves@redhat.com>
13626
13627 * infcall.c (cleanup_delete_std_terminate_breakpoint): Remove.
13628 (call_function_by_hand_dummy): Use SCOPE_EXIT.
13629
13630 2019-01-23 Tom Tromey <tom@tromey.com>
13631 Andrew Burgess <andrew.burgess@embecosm.com>
13632 Pedro Alves <palves@redhat.com>
13633
13634 * infrun.c (fetch_inferior_event): Use scope_exit.
13635 * utils.h (make_bpstat_clear_actions_cleanup): Don't declare.
13636 * top.c (execute_command): Use scope_exit.
13637 * breakpoint.c (bpstat_do_actions): Use scope_exit.
13638 * utils.c (do_bpstat_clear_actions_cleanup)
13639 (make_bpstat_clear_actions_cleanup): Remove.
13640
13641 2019-01-23 Tom Tromey <tom@tromey.com>
13642 Pedro Alves <palves@redhat.com>
13643
13644 * infrun.c: Include "common/scope-exit.h"
13645 (delete_just_stopped_threads_infrun_breakpoints_cleanup): Remove.
13646 (wait_for_inferior): Use SCOPE_EXIT.
13647 (fetch_inferior_event): Use scope_exit.
13648
13649 2019-01-23 Tom Tromey <tom@tromey.com>
13650 Pedro Alves <palves@redhat.com>
13651
13652 * breakpoint.c (create_breakpoint): Remove cleanup.
13653
13654 2019-01-23 Tom Tromey <tom@tromey.com>
13655 Andrew Burgess <andrew.burgess@embecosm.com>
13656 Pedro Alves <palves@redhat.com>
13657
13658 2019-01-23 Pedro Alves <palves@redhat.com>
13659
13660 * gdbarch-selftests.c (struct on_exit): Use SCOPE_EXIT.
13661
13662 2019-01-23 Pedro Alves <palves@redhat.com>
13663 Andrew Burgess <andrew.burgess@embecosm.com>
13664
13665 * gdbthread.h: Include "common/forward-scope-exit.h".
13666 (scoped_finish_thread_state): Redefine custom class in terms of
13667 forward_scope_exit.
13668
13669 2019-01-23 Pedro Alves <palves@redhat.com>
13670 Andrew Burgess <andrew.burgess@embecosm.com>
13671
13672 * common/forward-scope-exit.h: New file.
13673
13674 2019-01-23 Pedro Alves <palves@redhat.com>
13675 Andrew Burgess <andrew.burgess@embecosm.com>
13676 Tom Tromey <tom@tromey.com>
13677
13678 * common/scope-exit.h: New file.
13679
13680 2019-01-23 Pedro Alves <palves@redhat.com>
13681
13682 * common/preprocessor.h (ESC): Rename to ...
13683 (ESC_PARENS): ... this.
13684 * common/valid-expr.h (CHECK_VALID_EXPR_1, CHECK_VALID_EXPR_2)
13685 (CHECK_VALID_EXPR_3, CHECK_VALID_EXPR_4): Adjust.
13686
13687 2019-01-23 Tom Tromey <tom@tromey.com>
13688
13689 * language.h (class scoped_switch_to_sym_language_if_auto):
13690 Initialize m_lang in both cases.
13691
13692 2019-01-23 Alan Hayward <alan.hayward@arm.com>
13693
13694 * nat/aarch64-linux.c (aarch64_linux_new_thread): Replace XNEW
13695 with XCNEW.
13696
13697 2019-01-22 Tom Tromey <tom@tromey.com>
13698
13699 * corelow.c: Do not include sys/file.h.
13700
13701 2019-01-22 Tom Tromey <tom@tromey.com>
13702
13703 * tui/tui-wingeneral.h: Include gdb_curses.h.
13704
13705 2019-01-22 Tom Tromey <tom@tromey.com>
13706
13707 * source-cache.h (class source_cache) <get_source_lines,
13708 get_plain_source_lines, extract_lines>: Rename "lines" parameter.
13709
13710 2019-01-22 Tom Tromey <tom@tromey.com>
13711
13712 * remote-fileio.h (struct remote_target): Declare.
13713
13714 2019-01-22 Tom Tromey <tom@tromey.com>
13715
13716 * python/py-arch.c: Do not include py-ref.h.
13717 * python/py-bpevent.c: Do not include py-ref.h.
13718 * python/py-cmd.c: Do not include py-ref.h.
13719 * python/py-continueevent.c: Do not include py-ref.h.
13720 * python/py-event.h: Do not include py-ref.h.
13721 * python/py-evtregistry.c: Do not include py-ref.h.
13722 * python/py-finishbreakpoint.c: Do not include py-ref.h.
13723 * python/py-frame.c: Do not include py-ref.h.
13724 * python/py-framefilter.c: Do not include py-ref.h.
13725 * python/py-function.c: Do not include py-ref.h.
13726 * python/py-infevents.c: Do not include py-ref.h.
13727 * python/py-linetable.c: Do not include py-ref.h.
13728 * python/py-objfile.c: Do not include py-ref.h.
13729 * python/py-param.c: Do not include py-ref.h.
13730 * python/py-prettyprint.c: Do not include py-ref.h.
13731 * python/py-progspace.c: Do not include py-ref.h.
13732 * python/py-symbol.c: Do not include py-ref.h.
13733 * python/py-symtab.c: Do not include py-ref.h.
13734 * python/py-type.c: Do not include py-ref.h.
13735 * python/py-unwind.c: Do not include py-ref.h.
13736 * python/py-utils.c: Do not include py-ref.h.
13737 * python/py-value.c: Do not include py-ref.h.
13738 * python/py-varobj.c: Do not include py-ref.h.
13739 * python/py-xmethods.c: Do not include py-ref.h.
13740 * python/python.c: Do not include py-ref.h.
13741 * varobj.c: Do not include py-ref.h.
13742
13743 2019-01-22 Tom Tromey <tom@tromey.com>
13744
13745 * objfiles.h (struct objfile_per_bfd_storage): Use "struct"
13746 keyword for bcache.
13747
13748 2019-01-22 Tom Tromey <tom@tromey.com>
13749
13750 * compile/compile-cplus-types.c: Remove a comment by #include.
13751
13752 2019-01-22 Tom Tromey <tom@tromey.com>
13753
13754 * compile/gcc-c-plugin.h: Include compile-internal.h.
13755
13756 2019-01-22 Tom Tromey <tom@tromey.com>
13757
13758 * stabsread.c (EXTERN): Do not define.
13759 (symnum, next_symbol_text_func, processing_gcc_compilation)
13760 (within_function, global_sym_chain, global_stabs)
13761 (previous_stab_code, this_object_header_files)
13762 (n_this_object_header_files)
13763 (n_allocated_this_object_header_files): Define.
13764 * stabsread.h (EXTERN): Never define. Use "extern".
13765
13766 2019-01-22 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13767
13768 * event-top.c (handle_line_of_input): use unique_xmalloc_ptr for
13769 history_value.
13770
13771 2019-01-21 Tom Tromey <tom@tromey.com>
13772
13773 * ui-out.c: Fix includes.
13774 * tui/tui-source.c: Fix includes.
13775 * target.c: Fix includes.
13776 * remote.c: Fix includes.
13777 * regcache.c: Fix includes.
13778 * python/py-block.c: Fix includes.
13779 * printcmd.c: Fix includes.
13780 * or1k-tdep.c: Fix includes.
13781 * mi/mi-main.c: Fix includes.
13782 * m32r-tdep.c: Fix includes.
13783 * csky-tdep.c: Fix includes.
13784 * compile/compile-cplus-types.c: Fix includes.
13785 * cli/cli-interp.c: Fix includes.
13786
13787 2019-01-21 Alan Hayward <alan.hayward@arm.com>
13788
13789 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
13790 for padding.
13791
13792 2019-01-16 Tom Tromey <tom@tromey.com>
13793
13794 * objfiles.h (struct minimal_symbol_iterator): Rename. Move
13795 earlier.
13796 (struct objfile) <msymbols_range>: Move from top level.
13797 <msymbols>: New method.
13798 (class objfile_msymbols): Remove.
13799 * symtab.c (default_collect_symbol_completion_matches_break_on):
13800 Update.
13801 * symmisc.c (dump_msymbols): Update.
13802 * stabsread.c (scan_file_globals): Update.
13803 * objc-lang.c (info_selectors_command, info_classes_command)
13804 (find_methods): Update.
13805 * minsyms.c (find_solib_trampoline_target): Update.
13806 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Update.
13807 * coffread.c (coff_symfile_read): Update.
13808 * ada-lang.c (ada_lookup_simple_minsym)
13809 (ada_collect_symbol_completion_matches): Update.
13810
13811 2019-01-16 Tom Tromey <tom@tromey.com>
13812
13813 * objfiles.h (class objfile_msymbols) <iterator>: Change argument
13814 type. Remove no-argument constructor.
13815 <iterator::operator++>: Simplify.
13816 <begin>: Update.
13817 <end>: Use minimal_symbol_count.
13818
13819 2019-01-16 Tom Tromey <tom@tromey.com>
13820
13821 * objfiles.h (struct objfile) <psymtabs>: New method.
13822 (class objfile_psymtabs): Remove.
13823 * psymtab.h (class psymtab_storage) <partial_symtab_range>: New
13824 typedef.
13825 <range>: New method.
13826 (require_partial_symbols): Change return type.
13827 * psymtab.c (require_partial_symbols)
13828 (psym_expand_symtabs_matching): Update.
13829 * mdebugread.c (parse_partial_symbols): Update.
13830 * dbxread.c (dbx_end_psymtab): Update.
13831
13832 2019-01-15 Tom Tromey <tom@tromey.com>
13833
13834 * symtab.c (lookup_objfile_from_block)
13835 (lookup_symbol_in_objfile_symtabs)
13836 (basic_lookup_transparent_type_1, find_pc_sect_compunit_symtab)
13837 (find_line_symtab, info_sources_command)
13838 (default_collect_symbol_completion_matches_break_on)
13839 (make_source_files_completion_list): Update.
13840 * symmisc.c (print_objfile_statistics, dump_objfile)
13841 (maintenance_print_symbols, maintenance_info_symtabs)
13842 (maintenance_check_symtabs, maintenance_info_line_tables):
13843 Update.
13844 * source.c (select_source_symtab)
13845 (forget_cached_source_info_for_objfile): Update.
13846 * objfiles.h (class objfile_compunits): Remove.
13847 (struct objfile) <compunits_range>: New typedef.
13848 (compunits): New method.
13849 * objfiles.c (objfile_relocate1): Update.
13850 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
13851 * maint.c (count_symtabs_and_blocks): Update.
13852 * linespec.c (iterate_over_all_matching_symtabs): Update.
13853 * cp-support.c (add_symbol_overload_list_qualified): Update.
13854 * coffread.c (coff_symtab_read): Update.
13855 * ada-lang.c (add_nonlocal_symbols)
13856 (ada_collect_symbol_completion_matches)
13857 (ada_add_global_exceptions): Update.
13858
13859 2019-01-15 Tom Tromey <tom@tromey.com>
13860
13861 * progspace.h (program_space) <objfiles_safe_range>: New
13862 typedef.
13863 <objfiles_safe>: New method.
13864 * objfiles.h (class all_objfiles_safe): Remove.
13865 * objfiles.c (free_all_objfiles, objfile_purge_solibs): Update.
13866 * jit.c (jit_inferior_exit_hook): Update.
13867
13868 2019-01-17 Tom Tromey <tom@tromey.com>
13869
13870 * progspace.h (program_space) <objfiles_range>: New typedef.
13871 <objfiles>: New method.
13872 <objfiles_head>: Rename from objfiles.
13873 (object_files): Update.
13874 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Update.
13875 * guile/scm-pretty-print.c
13876 (ppscm_find_pretty_printer_from_objfiles): Update.
13877 * guile/scm-objfile.c (gdbscm_objfiles): Update.
13878 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers):
13879 Update.
13880 * python/py-progspace.c (pspy_get_objfiles): Update.
13881 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
13882 Update.
13883 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
13884 (objfpy_lookup_objfile_by_build_id): Update.
13885 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
13886 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
13887 Update.
13888 * symtab.c (iterate_over_symtabs, matching_obj_sections)
13889 (expand_symtab_containing_pc, lookup_objfile_from_block)
13890 (lookup_static_symbol, basic_lookup_transparent_type)
13891 (find_pc_sect_compunit_symtab, find_symbol_at_address)
13892 (find_line_symtab, info_sources_command)
13893 (default_collect_symbol_completion_matches_break_on)
13894 (make_source_files_completion_list, find_main_name): Update.
13895 * symmisc.c (print_symbol_bcache_statistics)
13896 (print_objfile_statistics, maintenance_print_symbols)
13897 (maintenance_print_msymbols, maintenance_print_objfiles)
13898 (maintenance_info_symtabs, maintenance_check_symtabs)
13899 (maintenance_expand_symtabs, maintenance_info_line_tables):
13900 Update.
13901 * symfile.c (remove_symbol_file_command, overlay_invalidate_all)
13902 (find_pc_overlay, find_pc_mapped_section, list_overlays_command)
13903 (map_overlay_command, unmap_overlay_command)
13904 (simple_overlay_update, expand_symtabs_matching)
13905 (map_symbol_filenames): Update.
13906 * symfile-debug.c (set_debug_symfile): Update.
13907 * spu-tdep.c (spu_overlay_update, spu_objfile_from_frame):
13908 Update.
13909 * source.c (select_source_symtab, forget_cached_source_info):
13910 Update.
13911 * solib.c (solib_read_symbols): Update.
13912 * solib-spu.c (append_ocl_sos): Update.
13913 * psymtab.c (maintenance_print_psymbols)
13914 (maintenance_info_psymtabs, maintenance_check_psymtabs): Update.
13915 * probe.c (parse_probes_in_pspace, find_probe_by_pc): Update.
13916 * printcmd.c (info_symbol_command): Update.
13917 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created):
13918 Update.
13919 * objfiles.h (class all_objfiles): Remove.
13920 * objfiles.c (have_partial_symbols, have_full_symbols)
13921 (have_minimal_symbols, qsort_cmp, update_section_map)
13922 (shared_objfile_contains_address_p)
13923 (default_iterate_over_objfiles_in_search_order): Update.
13924 * objc-lang.c (info_selectors_command, info_classes_command)
13925 (find_methods): Update.
13926 * minsyms.c (find_solib_trampoline_target): Update.
13927 * maint.c (maintenance_info_sections)
13928 (maintenance_translate_address, count_symtabs_and_blocks):
13929 Update.
13930 * main.c (captured_main_1): Update.
13931 * linux-thread-db.c (try_thread_db_load_from_pdir)
13932 (has_libpthread): Update.
13933 * linespec.c (iterate_over_all_matching_symtabs)
13934 (search_minsyms_for_name): Update.
13935 * jit.c (jit_find_objf_with_entry_addr): Update.
13936 * hppa-tdep.c (find_unwind_entry)
13937 (hppa_lookup_stub_minimal_symbol): Update.
13938 * gcore.c (gcore_create_callback, objfile_find_memory_regions):
13939 Update.
13940 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
13941 (elf_gnu_ifunc_resolve_by_got): Update.
13942 * dwarf2-frame.c (dwarf2_frame_find_fde): Update.
13943 * dwarf-index-write.c (save_gdb_index_command): Update.
13944 * cp-support.c (add_symbol_overload_list_qualified): Update.
13945 * breakpoint.c (create_overlay_event_breakpoint)
13946 (create_longjmp_master_breakpoint)
13947 (create_std_terminate_master_breakpoint)
13948 (create_exception_master_breakpoint): Update.
13949 * blockframe.c (find_pc_partial_function): Update.
13950 * ada-lang.c (ada_lookup_simple_minsym, add_nonlocal_symbols)
13951 (ada_collect_symbol_completion_matches)
13952 (ada_add_global_exceptions): Update.
13953
13954 2019-01-17 Tom Tromey <tom@tromey.com>
13955
13956 * solib-target.c (lm_info_target_p): Remove typedef. Don't
13957 declare VEC.
13958 (solib_target_parse_libraries): Change return type.
13959 (library_list_start_segment, library_list_start_section)
13960 (library_list_end_library, library_list_start_library); Update.
13961 (solib_target_free_library_list): Remove.
13962 (solib_target_parse_libraries): Remove cleanup. Change return
13963 type.
13964 (solib_target_current_sos): Update.
13965
13966 2019-01-17 Tom Tromey <tromey@bapiya>
13967
13968 * valprint.c: Replace "the the" with "the".
13969 * symtab.c: Replace "the the" with "the".
13970 * solib.c: Replace "the the" with "the".
13971 * solib-dsbt.c: Replace "the the" with "the".
13972 * linespec.c: Replace "the the" with "the".
13973 * dwarf2loc.h: Replace "the the" with "the".
13974 * amd64-windows-tdep.c: Replace "the the" with "the".
13975 * aarch64-tdep.c: Replace "the the" with "the".
13976
13977 2019-01-16 Keith Seitz <keiths@redhat.com>
13978
13979 PR gdb/23773
13980 * dwarf2read.c (dwarf2_cu) <ancestor>: New field.
13981 <builder>: Rename to ..
13982 <m_builder>: ... this and make private.
13983 (dwarf2_cu::get_builder): New method. Change all users of
13984 `builder' to use this method.
13985 (dwarf2_start_symtab): Move to ...
13986 (dwarf2_cu::start_symtab): ... here. Update all callers
13987 (setup_type_unit_groups): Move to ...
13988 (dwarf2_cu::setup_type_unit_groups): ... here. Update all
13989 callers.
13990 (dwarf2_cu::reset_builder): New method.
13991 (process_full_compunit, process_full_type_unit): Use
13992 dwarf2_cu::reset_builder.
13993 (follow_die_offset): Record the ancestor CU if it is different
13994 from the followed DIE's CU.
13995 (follow_die_sig_1): Likewise.
13996
13997 2019-01-15 Tom Tromey <tom@tromey.com>
13998
13999 * remote.c (class remote_state) <buf>: Now a char_vector.
14000 <buf_size>: Remove.
14001 (remote_target::getpkt): Change type of buf. Remove sizeof_buf
14002 parameter.
14003 (remote_target::getpkt_or_notif_sane_1)
14004 (remote_target::getpkt_sane)
14005 (remote_target::getpkt_or_notif_sane): Likewise.
14006 (class remote_target) <putpkt>: New overload.
14007 (remote_target::read_frame): Change type of "buf_p". Remove
14008 sizeof_p parameter.
14009 (packet_ok): New overload.
14010 (packet_check_result): New overload.
14011 Update all uses.
14012
14013 2019-01-14 Tom Tromey <tom@tromey.com>
14014
14015 * remote-notif.c (handle_notification, remote_notif_ack)
14016 (remote_notif_parse): Make "buf" const.
14017 * remote-notif.h (struct notif_client) <parse, ack>: Make "buf"
14018 const.
14019 (remote_notif_parse, remote_notif_ack, handle_notification):
14020 Likewise.
14021 * remote.c (remote_notif_stop_parse): Make "buf" const.
14022 (remote_target::remote_parse_stop_reply): Make "buf" const.
14023 (remote_notif_stop_ack): Make "buf" const.
14024
14025 2019-01-14 Tom Tromey <tom@tromey.com>
14026
14027 * remote.c (remote_console_output): Make parameter const.
14028
14029 2019-01-14 Tom Tromey <tom@tromey.com>
14030
14031 * target-debug.h (target_debug_print_signals): Constify.
14032 * nto-procfs.c (nto_procfs_target::pass_signals): Update.
14033 * procfs.c (procfs_target::pass_signals): Update.
14034 * linux-nat.c (linux_nat_target::pass_signals): Update.
14035 * linux-nat.h (class linux_nat_target) <pass_signals>: Update.
14036 * target-delegates.c: Rebuild.
14037 * remote.c (remote_target::program_signals): Update.
14038 (remote_target::pass_signals): Update.
14039 * target.c (target_pass_signals): Constify argument.
14040 (target_program_signals): Likewise.
14041 * target.h (struct target_ops) <pass_signals, program_signals>:
14042 Constify argument.
14043 (target_pass_signals, target_program_signals): Constify argument.
14044
14045 2019-01-14 Tom Tromey <tom@tromey.com>
14046
14047 PR tui/28819:
14048 * tui/tui-io.c (gdb_wgetch): Print \r when needed.
14049
14050 2019-01-14 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
14051
14052 * ppc-tdep.h (struct gdbarch_tdep) <ppc_v0_alias_regnum>: New
14053 field.
14054 * rs6000-tdep.c: Include reggroups.h.
14055 (IS_V_ALIAS_PSEUDOREG): Define.
14056 (rs6000_register_name): Return names for the "vX" aliases.
14057 (rs6000_pseudo_register_type): Return type for the "vX" aliases.
14058 (rs6000_pseudo_register_reggroup_p): Restore. Handle "vX"
14059 aliases. Call default_register_reggroup_p for all other
14060 pseudo-registers.
14061 (v_alias_pseudo_register_read, v_alias_pseudo_register_write):
14062 New functions.
14063 (rs6000_pseudo_register_read, rs6000_pseudo_register_write):
14064 Handle "vX" aliases.
14065 (v_alias_pseudo_register_collect): New function.
14066 (rs6000_ax_pseudo_register_collect): Handle "vX" aliases.
14067 (rs6000_gdbarch_init): Initialize "vX" aliases as
14068 pseudo-registers. Restore registration of
14069 rs6000_pseudo_register_reggroup_p with
14070 set_tdesc_pseudo_register_reggroup_p.
14071
14072 2019-01-13 Max Filippov <jcmvbkbc@gmail.com>
14073
14074 * xtensa-linux-tdep.c (xtensa_linux_init_abi): Update
14075 tdep->num_pseudo_regs. Add calls to set_gdbarch_num_regs and
14076 set_gdbarch_num_pseudo_regs.
14077
14078 2019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14079
14080 * cli/cli-style.h (class cli_style_option): <add_setshow_commands>
14081 Remove arg prefixname, add do_set and do_show.
14082 Add member functions set_list and show_list.
14083 * cli/cli-style.c (class cli_style_option): Update accordingly.
14084 (style_set_list): Move to file scope.
14085 (style_show_list): Likewise.
14086 (set_style): Call help_list.
14087 (show_style): Call cmd_show_list.
14088 (_initialize_cli_style): New macro STYLE_ADD_SETSHOW_COMMANDS.
14089 Update to use the new macro.
14090
14091 2019-10-12 Joel Brobecker <brobecker@adacore.com>
14092
14093 * ada-lang.c (_initialize_ada_language): Expand the help text
14094 for the "catch exception" command.
14095
14096 2019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14097
14098 * symtab.c (matching_obj_sections): Initialize obj,
14099 declare it closer to its usage.
14100
14101 2019-01-10 Tom Tromey <tom@tromey.com>
14102
14103 * thread-iter.h (inf_threads_iterator): Use next_iterator.
14104 (basic_inf_threads_range): Remove.
14105 (inf_threads_range, inf_non_exited_threads_range)
14106 (safe_inf_threads_range): Use next_adapter.
14107
14108 2019-01-10 Keith Seitz <keiths@redhat.com>
14109
14110 PR gdb/23712
14111 PR symtab/23010
14112 * dwarf2read.c (dw2_add_symbol_to_list): Remove.
14113 (fixup_go_packaging, new_symbol): Use add_symbol_to_list.
14114
14115 2019-01-10 Keith Seitz <keiths@redhat.com>
14116
14117 PR gdb/23712
14118 PR symtab/23010
14119 * dictionary.c (pending_to_vector): Remove.
14120 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
14121 Remove _1 suffix, replacing functions of the same name. Update
14122 all callers.
14123 (dict_create_hashed, dict_create_hashed_expandable)
14124 (dict_create_linear, dict_create_linear_expandable, dict_free)
14125 (dict_add_symbol, dict_add_pending, dict_size, dict_empty):
14126 Make functions static.
14127
14128 2019-01-10 Keith Seitz <keiths@redhat.com>
14129
14130 PR gdb/23712
14131 PR symtab/23010
14132 * dictionary.h (struct dictionary): Replace declaration with
14133 multidictionary.
14134 (dict_create_hashed, dict_create_hashed_expandable)
14135 (dict_create_linear, dict_create_linear_expandable)
14136 (dict_free, dict_add_symbol, dict_add_pending, dict_empty)
14137 (dict_iterator_first, dict_iterator_next, dict_iter_match_first)
14138 (dict_iter_match_next, dict_size): Rename to "mdict_" versions
14139 taking multidictionary argument.
14140 [ALL_DICT_SYMBOLS]: Update for multidictionary.
14141 * block.h (struct block) <dict>: Change to multidictionary
14142 and rename `multidict'.
14143 * block.c, buildsym.c, jit.c, mdebugread.c, objfiles.c,
14144 symmisc.c: Update all dictionary references to multidictionary.
14145
14146 2019-01-10 Keith Seitz <keiths@redhat.com>
14147
14148 PR gdb/23712
14149 PR symtab/23010
14150 * dictionary.c: Include unordered_map.
14151 (pending_to_vector): New function.
14152 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
14153 Rewrite the non-"_1" functions to take vector instead
14154 of linked list.
14155 (dict_create_hashed, dict_create_linear, dict_add_pending): Use the
14156 "new" _1 versions of the same name.
14157 (multidictionary): Define.
14158 (std::hash<enum language): New definition.
14159 (collate_pending_symbols_by_language, mdict_create_hashed)
14160 (mdict_create_hashed_expandable, mdict_create_linear)
14161 (mdict_create_linear_expandable, mdict_free)
14162 (find_language_dictionary, create_new_language_dictionary)
14163 (mdict_add_symbol, mdict_add_pending, mdict_iterator_first)
14164 (mdict_iterator_next, mdict_iter_match_first, mdict_iter_match_next)
14165 (mdict_size, mdict_empty): New functions.
14166 * dictionary.h (mdict_iterator): Define.
14167
14168 2019-01-10 Pedro Alves <palves@redhat.com>
14169
14170 * breakpoint.c (read_uploaded_action)
14171 (create_tracepoint_from_upload): Adjust to use
14172 gdb::unique_xmalloc_ptr.
14173 * ctf.c (ctf_write_uploaded_tp):
14174 (SET_ARRAY_FIELD): Use emplace_back.
14175 (SET_STRING_FIELD): Adjust to use gdb::unique_xmalloc_ptr.
14176 * tracefile-tfile.c (tfile_write_uploaded_tp):
14177 * tracepoint.c (parse_tracepoint_definition): Adjust to use
14178 gdb::unique_xmalloc_ptr.
14179 * tracepoint.h (struct uploaded_tp) <cond, actions, step_actions,
14180 at_string, cond_string, cmd_strings>: Replace char pointers
14181 with gdb::unique_xmalloc_ptr.
14182
14183 2019-01-10 Pedro Alves <palves@redhat.com>
14184
14185 * solib-target.c (library_list_start_library): Don't xstrdup name.
14186
14187 2019-01-10 Pedro Alves <palves@redhat.com>
14188
14189 * mdebugread.c (parse_partial_symbols): Use
14190 gdb::unique_xmalloc_ptr to manage heap-allocated 'stabsstring'.
14191
14192 2019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
14193
14194 * linux-fork.c (scoped_switch_fork_info)
14195 <~scoped_switch_fork_info>: Fix incorrect variable name.
14196
14197 2019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
14198
14199 * linux-fork.c (scoped_switch_fork_info)
14200 <scoped_switch_fork_info>: Make explicit.
14201 <~scoped_switch_fork_info>: Wrap core in TRY/CATCH.
14202
14203 2019-01-10 Tom Tromey <tom@tromey.com>
14204
14205 * objfiles.h (objfile::reset_psymtabs): Update.
14206 * objfiles.c (objfile::objfile): Update.
14207 * psymtab.h (psymtab_storage::obstack): Update.
14208 (psymtab_storage::m_obstack): Use gdb::optional.
14209 (class psymtab_storage): Update comment. Remove objfile
14210 parameter.
14211 * psymtab.c (psymtab_storage::psymtab_storage): Update.
14212
14213 2019-01-10 Tom Tromey <tom@tromey.com>
14214
14215 * psymtab.h (psymtab_storage::allocate_psymtab): New method.
14216 <free_psymtabs>: Now private.
14217 * psymtab.c (psymtab_storage::allocate_psymtab): Implement.
14218 (allocate_psymtab): Use new method.
14219
14220 2019-01-10 Tom Tromey <tom@tromey.com>
14221
14222 * xcoffread.c (xcoff_end_psymtab): Use allocate_dependencies.
14223 * psymtab.h (psymtab_storage::allocate_dependencies): New method.
14224 * mdebugread.c (parse_partial_symbols): Use
14225 allocate_dependencies.
14226 * dwarf2read.c (dwarf2_create_include_psymtab): Use
14227 allocate_dependencies.
14228 (process_psymtab_comp_unit_reader)
14229 (build_type_psymtab_dependencies): Likewise.
14230 * dbxread.c (dbx_end_psymtab): Use allocate_dependencies.
14231
14232 2019-01-10 Tom Tromey <tom@tromey.com>
14233
14234 * psymtab.c (add_psymbol_to_bcache): Pass psymtab obstack to
14235 PSYMBOL_SET_LANGUAGE.
14236 (allocate_psymtab): Allocate psymtab on the psymtab obstack.
14237
14238 2019-01-10 Tom Tromey <tom@tromey.com>
14239
14240 * psymtab.h (psymtab_storage::obstack): New method.
14241 <m_obstack>: Rename from obstack; now private.
14242 * psymtab.c (psymtab_storage): Update.
14243 * dwarf2read.c (create_addrmap_from_index)
14244 (create_addrmap_from_aranges, dwarf2_build_psymtabs_hard):
14245 Update.
14246
14247 2019-01-10 Tom Tromey <tom@tromey.com>
14248
14249 * symfile.c (reread_symbols): Call objfile->reset_psymtabs.
14250 * objfiles.h (objfile::reset_psymtabs): New method.
14251
14252 2019-01-10 Tom Tromey <tom@tromey.com>
14253
14254 * symmisc.c (print_symbol_bcache_statistics): Update.
14255 (print_objfile_statistics): Update.
14256 * symfile.c (reread_symbols): Update.
14257 * psymtab.h (class psymtab_storage): New.
14258 * psymtab.c (psymtab_storage): New constructor.
14259 (~psymtab_storage): New destructor.
14260 (require_partial_symbols): Update.
14261 (ALL_OBJFILE_PSYMTABS_REQUIRED): Rewrite.
14262 (find_pc_sect_psymtab, find_pc_sect_psymbol)
14263 (match_partial_symbol, lookup_partial_symbol, dump_psymtab)
14264 (psym_dump, recursively_search_psymtabs, psym_has_symbols)
14265 (psym_find_compunit_symtab_by_address, sort_pst_symbols)
14266 (start_psymtab_common, end_psymtab_common)
14267 (add_psymbol_to_bcache, add_psymbol_to_list, init_psymbol_list)
14268 (allocate_psymtab): Update.
14269 (psymtab_storage::discard_psymtab): Rename from discard_psymtab.
14270 Update.
14271 (dump_psymtab_addrmap, maintenance_print_psymbols)
14272 (maintenance_check_psymtabs): Update.
14273 (class objfile_psymtabs): Move to objfiles.h.
14274 * psympriv.h (discard_psymtab): Now inline.
14275 (psymtab_discarder::psymtab_discarder): Update.
14276 (psymtab_discarder::~psymtab_discarder): Update.
14277 (ALL_OBJFILE_PSYMTABS): Rewrite.
14278 * objfiles.h (struct objfile) <psymtabs, psymtabs_addrmap,
14279 free_psymtabs, psymbol_cache, global_psymbols, static_psymbols>:
14280 Remove fields.
14281 <partial_symtabs>: New field.
14282 (class objfile_psymtabs): Move from psymtab.h. Update.
14283 * objfiles.c (objfile::objfile): Initialize partial_symtabs, not
14284 psymbol_cache.
14285 (objfile::~objfile): Don't destroy psymbol_cache.
14286 * mdebugread.c (parse_partial_symbols): Update.
14287 * dwarf2read.c (create_addrmap_from_index)
14288 (create_addrmap_from_aranges, dw2_find_pc_sect_compunit_symtab)
14289 (process_psymtab_comp_unit_reader, dwarf2_build_psymtabs_hard)
14290 (add_partial_subprogram, dwarf2_ranges_read): Update.
14291 * dwarf-index-write.c (write_address_map)
14292 (write_one_signatured_type, recursively_write_psymbols)
14293 (class debug_names, class debug_names, write_psymtabs_to_index):
14294 Update.
14295
14296 2019-01-10 Tom Tromey <tom@tromey.com>
14297
14298 * symtab.h (SYMBOL_SET_NAMES): Update.
14299 (symbol_set_names): Update.
14300 (MSYMBOL_SET_NAMES): Update.
14301 * symtab.c (symbol_set_names): Change argument to be an
14302 objfile_per_bfd_storage.
14303 * psymtab.c (add_psymbol_to_bcache): Update.
14304 * psympriv.h (PSYMBOL_SET_NAMES): Take per_bfd argument.
14305
14306 2019-01-10 Tom Tromey <tom@tromey.com>
14307
14308 * symtab.c (create_demangled_names_hash): Change argument to be an
14309 objfile_per_bfd_storage.
14310 (symbol_set_names): Update.
14311
14312 2019-01-10 Tom Tromey <tom@tromey.com>
14313
14314 * xcoffread.c (xcoff_initial_scan): Unconditionally call
14315 init_psymbol_list.
14316 * psymtab.c (init_psymbol_list): Do nothing if already called.
14317 * psympriv.h (init_psymbol_list): Add comment.
14318 * dwarf2read.c (dwarf2_build_psymtabs): Unconditionally call
14319 init_psymbol_list.
14320 * dbxread.c (dbx_symfile_read): Unconditionally call
14321 init_psymbol_list.
14322
14323 2019-01-10 Tom Tromey <tom@tromey.com>
14324
14325 * xcoffread.c (scan_xcoff_symtab): Update.
14326 * psymtab.c (add_psymbol_to_list): Replace "list" parameter with
14327 "where".
14328 * mdebugread.c (parse_partial_symbols)
14329 (handle_psymbol_enumerators): Update.
14330 * dwarf2read.c (add_partial_symbol, load_partial_dies): Update.
14331 * dbxread.c (read_dbx_symtab): Update.
14332 * psympriv.h (psymbol_placement): New enum.
14333 (add_psymbol_to_list): Update.
14334
14335 2019-01-10 Tom Tromey <tom@tromey.com>
14336
14337 * xcoffread.c (xcoff_start_psymtab): Remove global_psymbols and
14338 static_psymbols parameters.
14339 (scan_xcoff_symtab): Update.
14340 * psymtab.c (start_psymtab_common): Remove global_psymbols and
14341 static_psymbols parameters.
14342 * psympriv.h (start_psymtab_common): Update.
14343 * mdebugread.c (parse_partial_symbols): Update.
14344 * dwarf2read.c (create_partial_symtab): Update.
14345 * dbxread.c (read_dbx_symtab): Update.
14346 (start_psymtab): Remove global_psymbols and static_psymbols
14347 parameters.
14348
14349 2019-01-10 Tom Tromey <tom@tromey.com>
14350
14351 * xcoffread.c (xcoff_end_psymtab): Remove some initializations.
14352 * psymtab.c (allocate_psymtab): Add comment.
14353 * psympriv.h (allocate_psymtab): Add comment.
14354 * dwarf2read.c (dwarf2_create_include_psymtab): Remove some
14355 initializations.
14356 * dbxread.c (dbx_end_psymtab): Remove some initializations.
14357
14358 2019-01-10 Tom Tromey <tom@tromey.com>
14359
14360 * symfile.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
14361 Don't declare.
14362 * mipsread.c: Include mdebugread.h.
14363 * mdebugread.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
14364 Declare.
14365 * elfread.c: Include mdebugread.h.
14366
14367 2019-01-09 Tom Tromey <tom@tromey.com>
14368
14369 * dbxread.c (dbx_end_psymtab): Use objfile_psymtabs.
14370 * mdebugread.c (parse_partial_symbols): Use objfile_psymtabs.
14371 * psymtab.c (ALL_OBJFILE_PSYMTABS_REQUIRED): Remove.
14372 (psym_map_symtabs_matching_filename, find_pc_sect_psymtab)
14373 (psym_lookup_symbol, psym_find_last_source_symtab)
14374 (psym_forget_cached_source_info, psym_print_stats)
14375 (psym_expand_symtabs_for_function, psym_expand_all_symtabs)
14376 (psym_expand_symtabs_with_fullname, psym_map_symbol_filenames)
14377 (psym_map_matching_symbols, psym_expand_symtabs_matching)
14378 (psym_find_compunit_symtab_by_address)
14379 (maintenance_print_psymbols, maintenance_info_psymtabs)
14380 (maintenance_check_psymtabs): Use ranged for.
14381 * psymtab.h (class objfile_psymtabs): New.
14382 (require_partial_symbols): Return objfile_psymtabs.
14383 * psympriv.h (ALL_OBJFILE_PSYMTABS): Remove.
14384
14385 2019-01-09 Tom Tromey <tom@tromey.com>
14386
14387 * symfile.c (overlay_invalidate_all, find_pc_overlay)
14388 (find_pc_mapped_section, list_overlays_command)
14389 (map_overlay_command, unmap_overlay_command)
14390 (simple_overlay_update): Use all_objfiles.
14391 * spu-tdep.c (spu_overlay_update): Use all_objfiles.
14392 * printcmd.c (info_symbol_command): Use all_objfiles.
14393 * objfiles.h (ALL_OBJSECTIONS): Remove.
14394 * maint.c (maintenance_translate_address): Use all_objfiles.
14395 * gcore.c (gcore_create_callback): Use all_objfiles.
14396 (objfile_find_memory_regions): Likewise.
14397
14398 2019-01-09 Tom Tromey <tom@tromey.com>
14399
14400 * symtab.c (find_line_symtab, info_sources_command)
14401 (make_source_files_completion_list): Use objfile_compunits.
14402 * source.c (select_source_symtab): Use objfile_compunits.
14403 * objfiles.h (struct objfile): Update comment.
14404 (ALL_OBJFILES): Remove.
14405 (ALL_FILETABS): Remove.
14406 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Use
14407 objfile_compunits.
14408
14409 2019-01-09 Tom Tromey <tom@tromey.com>
14410
14411 * symmisc.c (print_objfile_statistics, dump_objfile)
14412 (maintenance_print_symbols): Use compunit_filetabs.
14413 * source.c (forget_cached_source_info_for_objfile): Use
14414 compunit_filetabs.
14415 * objfiles.h (ALL_OBJFILE_FILETABS): Remove.
14416 (ALL_FILETABS): Use compunit_filetabs.
14417 * objfiles.c (objfile_relocate1): Use compunit_filetabs.
14418 * coffread.c (coff_symtab_read): Use compunit_filetabs.
14419
14420 2019-01-09 Tom Tromey <tom@tromey.com>
14421
14422 * symtab.h (ALL_COMPUNIT_FILETABS): Remove.
14423 (compunit_filetabs): New.
14424 * symtab.c (iterate_over_some_symtabs, find_pc_sect_line): Use
14425 compunit_filetabs.
14426 (info_sources_command, make_source_files_completion_list): Remove
14427 declaration.
14428 * symmisc.c (print_objfile_statistics, dump_objfile)
14429 (maintenance_print_symbols): Remove declaration.
14430 (maintenance_info_symtabs): Use compunit_filetabs.
14431 (maintenance_info_line_tables): Likewise.
14432 * source.c (select_source_symtab): Change local variable name.
14433 (forget_cached_source_info_for_objfile): Remove declaration.
14434 * objfiles.h (ALL_OBJFILE_FILETABS): Use compunit_filetabs.
14435 * objfiles.c (objfile_relocate1): Remove declaration.
14436 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
14437 declaration.
14438 * maint.c (count_symtabs_and_blocks): Use compunit_filetabs.
14439 * coffread.c (coff_symtab_read): Remove declaration.
14440 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
14441 compunit_filetabs.
14442
14443 2019-01-09 Tom Tromey <tom@tromey.com>
14444
14445 * symtab.c (lookup_objfile_from_block)
14446 (find_pc_sect_compunit_symtab, search_symbols)
14447 (default_collect_symbol_completion_matches_break_on): Use
14448 objfile_compunits.
14449 * objfiles.h (ALL_COMPUNITS): Remove.
14450 * maint.c (count_symtabs_and_blocks): Use objfile_compunits.
14451 * cp-support.c (add_symbol_overload_list_qualified): Use
14452 objfile_compunits.
14453 * ada-lang.c (ada_collect_symbol_completion_matches)
14454 (ada_add_global_exceptions): Use objfile_compunits.
14455
14456 2019-01-09 Tom Tromey <tom@tromey.com>
14457
14458 * source.c (select_source_symtab)
14459 (forget_cached_source_info_for_objfile): Remove declaration.
14460 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
14461 declaration.
14462 * maint.c (count_symtabs_and_blocks): Remove declaration.
14463 * cp-support.c (add_symbol_overload_list_qualified): Remove
14464 declaration.
14465 * coffread.c (coff_symtab_read): Remove declaration.
14466 * symtab.c (lookup_symbol_in_objfile_symtabs)
14467 (basic_lookup_transparent_type_1): Use objfile_compunits.
14468 (lookup_objfile_from_block, find_pc_sect_compunit_symtab)
14469 (info_sources_command, search_symbols)
14470 (default_collect_symbol_completion_matches_break_on)
14471 (make_source_files_completion_list): Remove declaration.
14472 * ada-lang.c (add_nonlocal_symbols): Use objfile_compunits.
14473 (ada_collect_symbol_completion_matches)
14474 (ada_add_global_exceptions): Remove declaration.
14475 * linespec.c (iterate_over_all_matching_symtabs): Use
14476 objfile_compunits.
14477 * objfiles.h (ALL_OBJFILE_COMPUNITS): Remove.
14478 (class objfile_compunits): New.
14479 (ALL_COMPUNITS): Use objfile_compunits.
14480 * symmisc.c (print_objfile_statistics, maintenance_info_symtabs)
14481 (maintenance_check_symtabs, maintenance_info_line_tables): Use
14482 objfile_compunits.
14483 * objfiles.c (objfile_relocate1): Use objfile_compunits.
14484
14485 2019-01-09 Tom Tromey <tom@tromey.com>
14486
14487 * symtab.c (search_symbols)
14488 (default_collect_symbol_completion_matches_break_on): Use
14489 objfile_msymbols.
14490 * ada-lang.c (ada_lookup_simple_minsym)
14491 (ada_collect_symbol_completion_matches): Use objfile_msymbols.
14492 * minsyms.c (find_solib_trampoline_target): Use objfile_msymbols.
14493 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Use
14494 objfile_msymbols.
14495 * coffread.c (coff_symfile_read): Use objfile_msymbols.
14496 * symmisc.c (dump_msymbols): Use objfile_msymbols.
14497 * objc-lang.c (find_methods): Use objfile_msymbols.
14498 (info_selectors_command, info_classes_command): Likewise.
14499 * stabsread.c (scan_file_globals): Use objfile_msymbols.
14500 * objfiles.h (class objfile_msymbols): New.
14501 (ALL_OBJFILE_MSYMBOLS): Remove.
14502 (ALL_MSYMBOLS): Remove.
14503
14504 2019-01-09 Tom Tromey <tom@tromey.com>
14505
14506 * common/next-iterator.h (next_adapter): Add Iterator template
14507 parameter.
14508 * objfiles.h (ALL_OBJFILES_SAFE): Remove.
14509 (class all_objfiles_safe): New.
14510 * jit.c (jit_inferior_exit_hook): Use all_objfiles_safe.
14511 * objfiles.c (put_objfile_before): Update comment.
14512 (add_separate_debug_objfile): Likewise.
14513 (free_all_objfiles): Use all_objfiles_safe.
14514 (objfile_purge_solibs): Likewise.
14515
14516 2019-01-09 Tom Tromey <tom@tromey.com>
14517
14518 * symtab.c (iterate_over_symtabs, matching_obj_sections)
14519 (expand_symtab_containing_pc, lookup_static_symbol)
14520 (basic_lookup_transparent_type, find_pc_sect_compunit_symtab)
14521 (find_symbol_at_address, find_line_symtab, find_main_name): Use
14522 all_objfiles.
14523 * probe.c (find_probe_by_pc, collect_probes): Use all_objfiles.
14524 * breakpoint.c (create_overlay_event_breakpoint)
14525 (create_longjmp_master_breakpoint)
14526 (create_std_terminate_master_breakpoint)
14527 (create_exception_master_breakpoint): Use all_objfiles.
14528 * linux-thread-db.c (try_thread_db_load_from_pdir)
14529 (has_libpthread): Use all_objfiles.
14530 * ada-lang.c (add_nonlocal_symbols): Use all_objfiles.
14531 * linespec.c (iterate_over_all_matching_symtabs)
14532 (search_minsyms_for_name): Use all_objfiles.
14533 * maint.c (maintenance_info_sections): Use all_objfiles.
14534 * main.c (captured_main_1): Use all_objfiles.
14535 * spu-tdep.c (spu_objfile_from_frame): Use all_objfiles.
14536 * guile/scm-objfile.c (gdbscm_objfiles): Use all_objfiles.
14537 * guile/scm-pretty-print.c
14538 (ppscm_find_pretty_printer_from_objfiles): Use all_objfiles.
14539 * solib-spu.c (append_ocl_sos): Use all_objfiles.
14540 * symmisc.c (maintenance_print_symbols): Use all_objfiles.
14541 (maintenance_print_msymbols): Use all_objfiles.
14542 * source.c (select_source_symtab): Use all_objfiles.
14543 * jit.c (jit_find_objf_with_entry_addr): Use all_objfiles.
14544 * symfile.c (remove_symbol_file_command)
14545 (expand_symtabs_matching, map_symbol_filenames): Use
14546 all_objfiles.
14547 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created): Use
14548 all_objfiles.
14549 * dwarf2-frame.c (dwarf2_frame_find_fde): Use all_objfiles.
14550 * objc-lang.c (find_methods): Use all_objfiles.
14551 * objfiles.c (have_partial_symbols, have_full_symbols)
14552 (have_minimal_symbols, qsort_cmp)
14553 (default_iterate_over_objfiles_in_search_order): Use
14554 all_objfiles.
14555 * hppa-tdep.c (find_unwind_entry): Use all_objfiles.
14556 * psymtab.c (maintenance_print_psymbols): Use all_objfiles.
14557 (maintenance_check_psymtabs): Use all_objfiles.
14558 (ALL_PSYMTABS): Remove.
14559 * compile/compile-object-run.c (do_module_cleanup): Use
14560 all_objfiles.
14561 * blockframe.c (find_pc_partial_function): Use all_objfiles.
14562 * cp-support.c (add_symbol_overload_list_qualified): Use
14563 all_objfiles.
14564 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
14565 Use all_objfiles.
14566 * dwarf-index-write.c (save_gdb_index_command): Use all_objfiles.
14567 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): Use
14568 all_objfiles.
14569 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
14570 (objfpy_lookup_objfile_by_build_id): Use all_objfiles.
14571 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
14572 Uses all_objfiles.
14573 * solib.c (solib_read_symbols): Use all_objfiles
14574
14575 2019-01-09 Tom Tromey <tom@tromey.com>
14576
14577 * probe.c (parse_probes_in_pspace): Use all_objfiles.
14578 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Use
14579 all_objfiles.
14580 * objfiles.h (ALL_PSPACE_OBJFILES): Remove.
14581 * symmisc.c (print_symbol_bcache_statistics)
14582 (print_objfile_statistics, maintenance_print_objfiles)
14583 (maintenance_info_symtabs, maintenance_check_symtabs)
14584 (maintenance_expand_symtabs, maintenance_info_line_tables): Use
14585 all_objfiles.
14586 * source.c (forget_cached_source_info): Use all_objfiles.
14587 * symfile-debug.c (set_debug_symfile): Use all_objfiles.
14588 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
14589 (elf_gnu_ifunc_resolve_by_got): Use all_objfiles.
14590 * objfiles.c (update_section_map): Use all_objfiles.
14591 (shared_objfile_contains_address_p): Likewise.
14592 * psymtab.c (maintenance_info_psymtabs): Use all_objfiles.
14593 * python/py-progspace.c (pspy_get_objfiles): Use all_objfiles.
14594
14595 2019-01-09 Tom Tromey <tom@tromey.com>
14596
14597 * common/next-iterator.h: New file.
14598 * objfiles.h (class all_objfiles): New.
14599 (struct objfile_iterator): New.
14600
14601 2019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14602
14603 * NEWS: Move the description of the changed "frame", "select-frame",
14604 and "info frame" commands to the Changed commands section.
14605
14606 2019-01-09 Simon Marchi <simon.marchi@ericsson.com>
14607
14608 * gdbtypes.c (check_stub_method_group): Remove handling of old
14609 mangling schemes.
14610 * linespec.c (find_methods): Likewise.
14611 * stabsread.c (read_member_functions): Likewise.
14612 * valops.c (search_struct_method): Likewise.
14613 (value_struct_elt_for_reference): Likewise.
14614 * NEWS: Mention this change.
14615
14616 2019-01-09 Andrew Burgess <andrew.burgess@embecosm.com>
14617
14618 * cli/cli-cmds.c (list_command): Pass a source_lines_range to
14619 print_source_lines.
14620 * source.c (print_source_lines_base): Update line number check.
14621 (print_source_lines): New function.
14622 (source_lines_range::source_lines_range): New function.
14623 * source.h (class source_lines_range): New class.
14624 (print_source_lines): New declaration.
14625
14626 2019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14627
14628 * linespec.c (linespec_state_destructor): Free self->canonical_names.
14629
14630 2019-01-08 Tom Tromey <tom@tromey.com>
14631 Simon Marchi <simon.marchi@ericsson.com>
14632
14633 PR gdb/24060
14634 * ada-exp.y (DOLLAR_VARIABLE): Rename from SPECIAL_VARIABLE.
14635 * ada-lex.l (DOLLAR_VARIABLE): Likewise.
14636 * c-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
14637 * f-exp.y (DOLLAR_VARIABLE): Likewise.
14638 * m2-exp.y (DOLLAR_VARIABLE): Rename from INTERNAL_VAR.
14639 * p-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
14640
14641 2019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
14642
14643 * source.c (select_source_symtab): Move header comment to
14644 declaration in source.h.
14645 (forget_cached_source_info_for_objfile): Likewise.
14646 (forget_cached_source_info): Likewise.
14647 (identify_source_line): Likewise.
14648 * source.h (identify_source_line): Move declaration from symtab.h
14649 and add comment from source.c
14650 (print_source_lines): Likewise.
14651 (forget_cached_source_info_for_objfile): Likewise.
14652 (forget_cached_source_info): Likewise.
14653 (select_source_symtab): Likewise.
14654 (enum print_source_lines_flag): Move definition from symtab.h.
14655 * symtab.h (identify_source_line): Move declaration to source.h.
14656 (print_source_lines): Likewise.
14657 (forget_cached_source_info_for_objfile): Likewise.
14658 (forget_cached_source_info): Likewise.
14659 (select_source_symtab): Likewise.
14660 (enum print_source_lines_flag): Move definition to source.h.
14661 * tui/tui-hooks.c: Add 'source.h' include.
14662
14663 2019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
14664
14665 * source.c (print_source_lines_base): Handle requests to print
14666 reverse line number sequences, and guard against empty lines
14667 string.
14668
14669 2019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
14670
14671 * source.c (print_source_lines_base): Fix skip of '\r' if next
14672 character is '\n'.
14673
14674 2019-01-06 Tom Tromey <tom@tromey.com>
14675
14676 * c-exp.y (struct c_parse_state) <macro_original_text,
14677 expansion_obstack>: New member.
14678 (macro_original_text, expansion_obstack): Remove globals.
14679 (scan_macro_expansion, scanning_macro_expansion)
14680 (finished_macro_expansion): Update.
14681 (scan_macro_cleanup): Remove.
14682 (yylex, c_parse): Update.
14683
14684 2019-01-06 Tom Tromey <tom@tromey.com>
14685
14686 * c-exp.y (struct c_parse_state) <strings>: New member.
14687 (operator_stoken): Update.
14688
14689 2019-01-06 Tom Tromey <tom@tromey.com>
14690
14691 * parser-defs.h (type_ptr): Remove typedef. Don't declare VEC.
14692 (union type_stack_elt) <typelist_val>: Now a pointer to
14693 std::vector.
14694 (type_stack_cleanup): Don't declare.
14695 (push_typelist): Update.
14696 * parse.c (pop_typelist): Return a std::vector.
14697 (push_typelist): Take a std::vector.
14698 (follow_types): Update. Do not free args.
14699 (type_stack_cleanup): Remove.
14700 * c-exp.y (struct c_parse_state): New.
14701 (cpstate): New global.
14702 (type_aggregate_p, exp, ptr_operator, parameter_typelist)
14703 (nonempty_typelist): Update.
14704 (func_mod): Create a new vector.
14705 (c_parse): Create a c_parse_state.
14706 (check_parameter_typelist): Do not delete params.
14707 (function_method): Update. Do not delete type_list.
14708
14709 2019-01-06 Tom Tromey <tom@tromey.com>
14710
14711 PR gdb/28155:
14712 * python/py-finishbreakpoint.c (bpfinishpy_init): Use
14713 check_typedef.
14714 * infcmd.c (finish_command_fsm_should_stop): Use check_typedef.
14715 (print_return_value): Likewise.
14716
14717 2019-01-05 Tom Tromey <tom@tromey.com>
14718
14719 * contrib/cleanup_check.py: Remove.
14720 * contrib/gcc-with-excheck: Remove.
14721 * contrib/exsummary.py: Remove.
14722 * contrib/excheck.py: Remove.
14723
14724 2019-01-05 Joel Brobecker <brobecker@adacore.com>
14725
14726 * thread.c (delete_thread_1): Add gdb_assert that THR is not
14727 NULL. Initialize tpprev to NULL instead of assigning it
14728 to NULL on the next statement.
14729 * windows-nat.c (windows_delete_thread): Remove check for
14730 main_thread_id before printing thread exit notifications.
14731 (get_windows_debug_event) <EXIT_THREAD_DEBUG_EVENT>:
14732 Remove thread ID check against main_thread_id.
14733 <CREATE_PROCESS_DEBUG_EVENT>: Remove call to
14734 windows_delete_thread.
14735 <EXIT_PROCESS_DEBUG_EVENT>: Add call to windows_delete_thread.
14736
14737 2019-01-04 Tom Tromey <tom@tromey.com>
14738
14739 * compile/compile.c (_initialize_compile): Use upper case for
14740 metasyntactic variables.
14741 * symmisc.c (_initialize_symmisc): Use upper case for
14742 metasyntactic variables.
14743 * psymtab.c (_initialize_psymtab): Use upper case for
14744 metasyntactic variables.
14745 * demangle.c (demangle_command): Use upper case for metasyntactic
14746 variables.
14747 (_initialize_demangler): Likewise.
14748 * ax-gdb.c (_initialize_ax_gdb): Use upper case for metasyntactic
14749 variables.
14750
14751 2019-01-03 Tom Tromey <tom@tromey.com>
14752
14753 * tui/tui-source.c (tui_set_source_content): Use xstrdup.
14754
14755 2019-01-03 Tom Tromey <tom@tromey.com>
14756
14757 * python/py-symtab.c (salpy_str): Update.
14758 (struct salpy_sal_object) <symtab>: Now a PyObject.
14759 (salpy_dealloc): Update.
14760 (del_objfile_sal): Use gdbpy_ref.
14761
14762 2019-01-03 Tom Tromey <tom@tromey.com>
14763
14764 * python/py-type.c (convert_field): Use new_reference. Return
14765 gdbpy_ref.
14766 (make_fielditem): Return gdbpy_ref.
14767 (typy_fields): Update.
14768 (typy_getitem): Update.
14769 (field_name): Return gdbpy_ref. Use new_reference.
14770 (typy_iterator_iternext): Update.
14771
14772 2019-01-03 Tom Tromey <tom@tromey.com>
14773
14774 * python/py-record.c (gdbpy_stop_recording): Use Py_RETURN_NONE.
14775
14776 2019-01-03 Tom Tromey <tom@tromey.com>
14777
14778 * python/py-value.c (valpy_dealloc): Use Py_XDECREF.
14779 * python/py-type.c (typy_fields_items): Use gdbpy_ref.
14780 * python/py-progspace.c (pspy_set_printers): Use gdbpy_ref.
14781 (pspy_set_frame_filters, pspy_set_frame_unwinders)
14782 (pspy_set_type_printers): Likewise.
14783 * python/py-function.c (fnpy_init): Use gdbpy_ref.
14784 * python/py-cmd.c (cmdpy_init): Use gdbpy_ref.
14785 * python/py-objfile.c (objfpy_set_printers): Use gdbpy_ref.
14786 (objfpy_set_frame_filters, objfpy_set_frame_unwinders)
14787 (objfpy_set_type_printers): Likewise.
14788
14789 2019-01-03 Tom Tromey <tom@tromey.com>
14790
14791 * python/python.c (gdbpy_enter, ~gdbpy_enter): Update.
14792 (gdbpy_print_stack): Use gdbpy_err_fetch.
14793 * python/python-internal.h (class gdbpy_err_fetch): New class.
14794 (class gdbpy_enter) <m_error_type, m_error_value,
14795 m_error_traceback>: Remove.
14796 <m_error>: New member.
14797 (gdbpy_exception_to_string): Don't declare.
14798 * python/py-varobj.c (py_varobj_iter_next): Use gdbpy_err_fetch.
14799 * python/py-value.c (convert_value_from_python): Use
14800 gdbpy_err_fetch.
14801 * python/py-utils.c (gdbpy_err_fetch::to_string): Rename from
14802 gdbpy_exception_to_string.
14803 (gdbpy_handle_exception): Use gdbpy_err_fetch.
14804 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
14805 gdbpy_err_fetch.
14806
14807 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14808
14809 * linux-nat.c (delete_lwp_cleanup): Delete.
14810 (struct lwp_deleter): New struct.
14811 (lwp_info_up): New typedef.
14812 (linux_nat_target::follow_fork): Delete cleanup, and make use of
14813 lwp_info_up.
14814
14815 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14816
14817 * linux-fork.c (class scoped_switch_fork_info): New class.
14818 (inferior_call_waitpid): Update to use scoped_switch_fork_info.
14819
14820 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14821
14822 * valops.c (find_overload_match): Remove use of null_cleanup, and
14823 calls to do_cleanups.
14824
14825 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14826
14827 * compile/compile-cplus-types.c
14828 (compile_cplus_instance::decl_name): Handle changes to
14829 cp_func_name.
14830 * cp-support.c (cp_func_name): Update header comment, update
14831 return type.
14832 * cp-support.h (cp_func_name): Update return type in declaration.
14833 * valops.c (find_overload_match): Move temp_func local to top
14834 level of function and change its type. Use temp_func to hold and
14835 delete temporary string obtained from cp_func_name.
14836
14837 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14838
14839 * remote.c (remote_target::remote_check_symbols): Convert `msg` to
14840 gdb::char_vector, remove cleanup, and update uses of `msg`.
14841
14842 2019-01-03 Jim Wilson <jimw@sifive.com>
14843
14844 * riscv-tdep.c (riscv_freg_feature): Drop s0 name from f8.
14845
14846 2019-01-02 Tom Tromey <tom@tromey.com>
14847
14848 * xml-tdesc.c (xml_cache): Hold a target_desc_up.
14849 (tdesc_parse_xml): Remove cleanups.
14850 * target-descriptions.h (make_cleanup_free_target_description):
14851 Don't declare.
14852 (target_desc_deleter): New struct.
14853 (target_desc_up): New typedef.
14854 * target-descriptions.c (target_desc_deleter::operator()): Rename
14855 from free_target_description.
14856 (make_cleanup_free_target_description): Remove.
14857
14858 2019-01-02 Tom Tromey <tom@tromey.com>
14859
14860 * linespec.c (struct linespec_parser): Rename from ls_parser. Add
14861 constructor, destructor.
14862 (linespec_parser): Remove typedef.
14863 (~linespec_parser): Rename from linespec_parser_delete.
14864 (linespec_lex_to_end, linespec_complete_label)
14865 (linespec_complete): Update.
14866 (decode_line_full): Remove cleanups.
14867 (decode_line_1): Update.
14868
14869 2019-01-02 Tom Tromey <tom@tromey.com>
14870
14871 * python/python-internal.h (inferior_to_inferior_object): Change
14872 return type.
14873 * python/py-exitedevent.c (create_exited_event_object): Update.
14874 * python/py-inferior.c (inferior_to_inferior_object): Return
14875 gdbpy_ref.
14876 (python_new_inferior, python_inferior_deleted)
14877 (thread_to_thread_object, delete_thread_object)
14878 (build_inferior_list, gdbpy_selected_inferior): Update.
14879 * python/py-infthread.c (create_thread_object): Update. Also fail
14880 if inferior_to_inferior_object fails.
14881
14882 2019-01-02 Simon Marchi <simon.marchi@ericsson.com>
14883
14884 * inferior.h (class inferior) <displaced_step_state>: New field.
14885 * infrun.h (struct displaced_step_state): Move here from
14886 infrun.c. Initialize fields, add constructor.
14887 <inf>: Remove field.
14888 <reset>: New method.
14889 * infrun.c (struct displaced_step_inferior_state): Move to
14890 infrun.h.
14891 (displaced_step_inferior_states): Remove.
14892 (get_displaced_stepping_state): Adust.
14893 (displaced_step_in_progress_any_inferior): Adjust.
14894 (displaced_step_in_progress_thread): Adjust.
14895 (displaced_step_in_progress): Adjust.
14896 (add_displaced_stepping_state): Remove.
14897 (get_displaced_step_closure_by_addr): Adjust.
14898 (remove_displaced_stepping_state): Remove.
14899 (infrun_inferior_exit): Call displaced_step_state.reset.
14900 (use_displaced_stepping): Don't check for NULL.
14901 (displaced_step_prepare_throw): Call
14902 get_displaced_stepping_state.
14903 (displaced_step_fixup): Don't check for NULL.
14904 (prepare_for_detach): Don't check for NULL.
14905
14906 2019-01-02 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14907
14908 * infcall.c (call_function_by_hand_dummy): cleanup/destroy sm
14909 in case of call that did not complete.
14910
14911 2019-01-02 Andrey Utkin <autkin@undo.io>
14912
14913 * symfile.c (find_separate_debug_file): Fix search of debug files for
14914 remote debuggee.
14915
14916 2019-01-02 Tom Tromey <tom@tromey.com>
14917
14918 * python/py-inferior.c (gdbpy_initialize_inferior): Fix
14919 indentation.
14920 * python/py-frame.c (frapy_older): Remove cast.
14921 (frapy_newer): Likewise.
14922 * python/py-breakpoint.c (local_setattro): Remove cast.
14923 * python/py-arch.c (archpy_name): Remove local variable.
14924 * python/py-type.c (gdbpy_lookup_type): Remove cast.
14925
14926 2019-01-02 Joel Brobecker <brobecker@adacore.com>
14927
14928 * unittests/basic_string_view/element_access/char/empty.cc:
14929 Fix year range in copyright header.
14930
14931 2019-01-01 Andrew Burgess <andrew.burgess@embecosm.com>
14932
14933 * arch/riscv.h (struct riscv_gdbarch_features) <hw_float_abi>:
14934 Delete.
14935 <operator==>: Update with for removed field.
14936 <hash>: Likewise.
14937 * riscv-tdep.h (struct gdbarch_tdep) <features>: Renamed to...
14938 <isa_features>: ...this.
14939 <abi_features>: New field.
14940 (riscv_isa_flen): Update comment.
14941 (riscv_abi_xlen): New declaration.
14942 (riscv_abi_flen): New declaration.
14943 * riscv-tdep.c (riscv_isa_xlen): Update to get answer from
14944 isa_features.
14945 (riscv_abi_xlen): New function.
14946 (riscv_isa_flen): Update to get answer from isa_features.
14947 (riscv_abi_flen): New function.
14948 (riscv_has_fp_abi): Update to get answer from abi_features.
14949 (riscv_call_info::riscv_call_info): Use abi xlen and flen, not isa
14950 xlen and flen.
14951 (riscv_call_info) <xlen, flen>: Update comment.
14952 (riscv_call_arg_struct): Remove invalid assertions
14953 (riscv_features_from_gdbarch_info): Update now hw_float_abi field
14954 is removed.
14955 (riscv_gdbarch_init): Gather isa features and abi features
14956 separately, ensure both match on the gdbarch when reusing an old
14957 gdbarch. Relax an error check to allow 32-bit abi float to run on
14958 a target with 64-bit float hardware.
14959
14960 2019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14961
14962 * source.c (search_command_helper): Stop reverse search
14963 when line 1 has been searched.
14964
14965 2019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14966
14967 * record-full.c (record_full_base_target::close): Rewrite
14968 record_full_core_buf_list free logic.
14969
14970 2019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14971
14972 * break-catch-syscall.c (print_one_catch_syscall): xfree
14973 the last text.
14974
14975 2019-01-01 Joel Brobecker <brobecker@adacore.com>
14976
14977 * top.c (print_gdb_version): Update Copyright year in version
14978 message.
14979
14980 2019-01-01 Joel Brobecker <brobecker@adacore.com>
14981
14982 Update copyright year range in all GDB files.
14983
14984 2019-01-01, 19 Joel Brobecker <brobecker@adacore.com>
14985
14986 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2018.
14987
14988 For older changes see ChangeLog-2018.
14989 \f
14990 Local Variables:
14991 mode: change-log
14992 left-margin: 8
14993 fill-column: 74
14994 version-control: never
14995 coding: utf-8
14996 End:
14997
This page took 0.337331 seconds and 4 git commands to generate.