Make struct symbol inherit from general_symbol_info
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2019-11-12 Christian Biesinger <cbiesinger@google.com>
2
3 * ada-exp.y (write_ambiguous_var): Update.
4 * buildsym.c (add_symbol_to_list): Update.
5 * dwarf2read.c (read_variable): Update.
6 (new_symbol): Update.
7 * jit.c (finalize_symtab): Update.
8 * language.c (language_alloc_type_symbol): Update.
9 * symtab.c (fixup_symbol_section): Update.
10 (initialize_objfile_symbol_1): Move code to...
11 (initialize_objfile_symbol): ...here. Remove now-unnecessary memset.
12 (allocate_symbol): Update.
13 (allocate_template_symbol): Update.
14 (get_symbol_address): Update.
15 * symtab.h (struct symbol): Inherit from general_symbol_info instead
16 of having as a field, and add a constructor.
17 (SYMBOL_VALUE): Update.
18 (SYMBOL_VALUE_ADDRESS): Update.
19 (SET_SYMBOL_VALUE_ADDRESS): Update.
20 (SYMBOL_VALUE_BYTES): Update.
21 (SYMBOL_VALUE_COMMON_BLOCK): Update.
22 (SYMBOL_BLOCK_VALUE): Update.
23 (SYMBOL_VALUE_CHAIN): Update.
24 (SYMBOL_LANGUAGE): Update.
25 (SYMBOL_SECTION): Update.
26 (SYMBOL_OBJ_SECTION): Update.
27 (SYMBOL_SET_LANGUAGE): Update.
28 (SYMBOL_SET_LINKAGE_NAME): Update.
29 (SYMBOL_SET_NAMES): Update.
30 (SYMBOL_NATURAL_NAME): Update.
31 (SYMBOL_LINKAGE_NAME): Update.
32 (SYMBOL_DEMANGLED_NAME): Update.
33 (SYMBOL_SEARCH_NAME): Update.
34 (SYMBOL_MATCHES_SEARCH_NAME): Update.
35 (struct symbol): Update.
36 (struct template_symbol): Update.
37 (struct rust_vtable_symbol): Update.
38 * xcoffread.c (SYMBOL_DUP): Update.
39
40 2019-11-12 Tom Tromey <tom@tromey.com>
41
42 * tui/tui-layout.c (show_layout): Set current_layout.
43 (show_source_disasm_command, show_data)
44 (show_source_or_disasm_and_command): Don't set current_layout.
45
46 2019-11-12 Tom Tromey <tom@tromey.com>
47
48 * tui/tui-layout.c (_initialize_tui_layout): Move to end.
49
50 2019-11-12 Tom Tromey <tom@tromey.com>
51
52 * tui/tui-win.c (resize_message): New global.
53 (show_tui_resize_message): New function.
54 (tui_async_resize_screen): Print message if requested.
55 (_initialize_tui_win): Add tui-resize-message setting.
56 * NEWS: Add entry for new commands.
57
58 2019-11-11 Tom Tromey <tom@tromey.com>
59
60 * tui/tui.c (tui_initialize_readline): Add new bindable readline
61 functions.
62
63 2019-11-11 Christian Biesinger <cbiesinger@google.com>
64
65 * nat/linux-osdata.c (user_from_uid): Use getpwuid_r.
66
67 2019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
68
69 * python/py-symbol.c (gdbpy_lookup_static_symbols): New
70 function.
71 * python/python-internal.h (gdbpy_lookup_static_symbols):
72 Declare new function.
73 * python/python.c (python_GdbMethods): Add
74 gdb.lookup_static_symbols method.
75 * NEWS: Mention gdb.lookup_static_symbols.
76
77 2019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
78
79 * python/py-symbol.c (gdbpy_lookup_static_symbol): Lookup in
80 static block of current object file first. Also fix typo in
81 header comment.
82
83 2019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
84
85 * stack.c (set_last_displayed_sal): Delete.
86 (last_displayed_sal_valid): Delete.
87 (last_displayed_pspace): Delete.
88 (last_displayed_addr): Delete.
89 (last_displayed_symtab): Delete.
90 (last_displayed_line): Delete.
91 (class last_displayed_symtab_info_type): New.
92 (last_displayed_symtab_info): New static global variable.
93 (print_frame_info): Call methods on last_displayed_symtab_info.
94 (clear_last_displayed_sal): Update header comment, and make use of
95 last_displayed_symtab_info.
96 (last_displayed_sal_is_valid): Likewise.
97 (get_last_displayed_pspace): Likewise.
98 (get_last_displayed_addr): Likewise.
99 (get_last_displayed_symtab): Likewise.
100 (get_last_displayed_line): Likewise.
101 (get_last_displayed_sal): Likewise.
102 * stack.h (clear_last_displayed_sal): Update header comment.
103 (last_displayed_sal_is_valid): Likewise.
104 (get_last_displayed_pspace): Likewise.
105 (get_last_displayed_addr): Likewise.
106 (get_last_displayed_symtab): Likewise.
107 (get_last_displayed_line): Likewise.
108 (get_last_displayed_sal): Likewise.
109
110 2019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
111
112 * stack.c (frame_show_address): Convert return type to bool.
113 * stack.h (frame_show_address): Likewise, and update header
114 comment.
115
116 2019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
117
118 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add new file to the list.
119 * unittests/vec-utils-selftests.c: New file.
120 * gdbsupport/gdb_vecs.h (unordered_remove): Avoid self move assign.
121
122 2019-11-10 Tom Tromey <tom@tromey.com>
123
124 * tui/tui-wingeneral.c (tui_unhighlight_win): Use can_box.
125 (tui_highlight_win): Likewise.
126 (tui_win_info::check_and_display_highlight_if_needed): Likewise.
127 * tui/tui-data.h (struct tui_win_info) <can_highlight>: Remove.
128 * tui/tui-command.h (struct tui_cmd_window) <tui_cmd_window>:
129 Don't set can_highlight.
130
131 2019-11-10 Tom Tromey <tom@tromey.com>
132
133 * cli/cli-style.h (class cli_style_option) <cli_style_option>:
134 Remove unused declaration.
135
136 2019-11-08 Tom Tromey <tromey@adacore.com>
137
138 * top.c (read_command_file): Update.
139 (command_line_input): Make return type const.
140 * python/py-gdb-readline.c: Update.
141 * linespec.c (decode_line_2): Update.
142 * defs.h (command_line_input): Make return type const.
143 * cli/cli-script.c (read_next_line): Make return type const.
144 * ada-lang.c (get_selections): Update.
145
146 2019-11-06 Christian Biesinger <cbiesinger@google.com>
147
148 * linux-tdep.c (linux_info_proc): Use strtok_r instead of strtok.
149 * mi/mi-main.c (output_cores): Likewise.
150 * nat/linux-osdata.c (linux_xfer_osdata_cpus): Likewise.
151 (linux_xfer_osdata_modules): Likewise.
152 * remote.c (register_remote_support_xml): Likewise.
153 * sparc64-tdep.c (adi_is_addr_mapped): Likewise.
154 * xml-syscall.c (syscall_create_syscall_desc): Likewise.
155
156 2019-11-06 Tom Tromey <tom@tromey.com>
157
158 * tui/tui-interp.c: Don't include readline.h.
159 * tui/tui-hooks.c: Don't include readline.h.
160 * symmisc.c: Include tilde.h, not readline.h.
161 * symfile.c: Include tilde.h, not readline.h.
162 * source.c: Include tilde.h, not readline.h.
163 * solib.c: Include tilde.h, not readline.h.
164 * psymtab.c: Include tilde.h, not readline.h.
165 * exec.c: Include tilde.h, not readline.h.
166 * corelow.c: Include tilde.h, not readline.h.
167 * cli/cli-dump.c: Include tilde.h, not readline.h.
168 * cli/cli-cmds.c: Don't include readline.h.
169
170 2019-11-05 Tom Tromey <tom@tromey.com>
171
172 * tui/tui-disasm.c (struct tui_asm_line) <addr_size>: New member.
173 (tui_disassemble): Set addr_size.
174 (tui_disasm_window::set_contents): Use addr_size.
175
176 2019-11-05 Tom Tromey <tom@tromey.com>
177
178 * rust-lang.c (rust_language_defn): Update.
179 * python/py-value.c (valpy_string): Call c_get_string.
180 * p-lang.c (pascal_language_defn): Update.
181 * opencl-lang.c (opencl_language_defn): Update.
182 * objc-lang.c (objc_language_defn): Update.
183 * m2-lang.c (m2_language_defn): Update.
184 * language.c (unknown_language_defn, auto_language_defn): Update.
185 (default_get_string): Remove.
186 * guile/scm-value.c (gdbscm_value_to_string): Use c_get_string.
187 * go-lang.c (go_language_defn): Update.
188 * f-lang.c (f_language_defn): Update.
189 * d-lang.c (d_language_defn): Update.
190 * c-lang.c (c_language_defn, cplus_language_defn)
191 (asm_language_defn, minimal_language_defn): Update.
192 * ada-lang.c (ada_language_defn): Update.
193 * language.h (struct language_defn) <la_get_string>: Remove.
194 (LA_GET_STRING): Remove.
195 (default_get_string): Don't declare.
196
197 2019-11-05 Tom Tromey <tom@tromey.com>
198
199 * tui/tui-source.h (struct tui_source_window): Inline
200 constructor. Remove destructor.
201 <style_changed, m_observable>: Move to superclass.
202 * tui/tui-winsource.h (tui_copy_source_line): Declare.
203 (struct tui_source_window_base): Move private members to end.
204 <style_changed, m_observable>: Move from tui_source_window.
205 * tui/tui-winsource.c (tui_copy_source_line): Move from
206 tui-source.c. Rename from copy_source_line. Add special handling
207 for negative line number.
208 (tui_source_window_base::style_changed): Move from
209 tui_source_window.
210 (tui_source_window_base): Register observer.
211 (~tui_source_window_base): New.
212 * tui/tui-source.c (copy_source_line): Move to tui-winsource.c;
213 rename.
214 (tui_source_window::set_contents): Use tui_copy_source_line.
215 (tui_source_window::tui_source_window): Move to tui-source.h.
216 (tui_source_window::~tui_source_window): Remove.
217 (tui_source_window::style_changed): Move to superclass.
218 * tui/tui-disasm.c (tui_disassemble): Create string file with
219 styling, when possible. Add "addr_size" parameter.
220 (tui_disasm_window::set_contents): Use tui_copy_source_line.
221 Don't compute maximum size.
222 (len_without_escapes): New function
223
224 2019-11-05 Tom Tromey <tom@tromey.com>
225
226 * tui/tui-winsource.h (struct tui_source_element) <line>: Now a
227 std::string.
228 * tui/tui-winsource.c (tui_show_source_line): Update.
229 * tui/tui-source.c (tui_source_window::set_contents): Update.
230 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
231
232 2019-11-05 Christian Biesinger <cbiesinger@google.com>
233
234 * symtab.h (gdb_static_assert): Put && operator at the beginning
235 of the line instead of the end.
236
237 2019-11-04 Christian Biesinger <cbiesinger@google.com>
238
239 * psympriv.h: Add static_asserts for sizeof (general_symbol_info)
240 and sizeof (symbol).
241 * symtab.h: Add a static_assert for sizeof (partial_symbol).
242
243 2019-11-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
244
245 * NEWS (Changes since GDB 8.3): Document Solaris 10 removal.
246 * configure.host: Mark *-*-solaris2.10* obsolete.
247 * configure.tgt: Mark Solaris < 11 obsolete.
248 * MAINTAINERS (Target Instruction Set Architectures) <sparc>:
249 Update target triplet.
250
251 2019-11-01 Tom Tromey <tromey@adacore.com>
252
253 * utils.c (print_sys_errmsg): Simplify.
254
255 2019-11-01 Tom Tromey <tromey@adacore.com>
256
257 * gdbsupport/mingw-strerror.c (safe_strerror): Constify result.
258
259 2019-11-01 Christian Biesinger <cbiesinger@google.com>
260
261 * configure: Regenerate.
262 * configure.ac: Remove check for strerror_r.
263 * gdbsupport/common.m4: Check for strerror_r.
264
265 2019-11-01 Luis Machado <luis.machado@linaro.org>
266
267 PR gdb/25124
268
269 * arm-tdep.c (arm_per_objfile): Rename to ...
270 (arm_per_bfd): ... this.
271 (arm_objfile_data_key): Rename to ...
272 (arm_bfd_data_key): ... this.
273 (arm_find_mapping_symbol): Adjust access to new bfd_key-based
274 data.
275 (arm_record_special_symbol): Likewise.
276
277 2019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
278
279 * ada-typeprint.c (ada_print_typedef): Don't print newline at the
280 end.
281 * c-typeprint.c (c_print_typedef): Likewise.
282 * f-typeprint.c (f_print_typedef): Likewise.
283 * m2-typeprint.c (m2_print_typedef): Likewise.
284 * p-typeprint.c (pascal_print_typedef): Likewise.
285 * rust-lang.c (rust_print_typedef): Likewise.
286 * symtab.c (print_symbol_info): Print a newline after calling
287 typedef_print.
288
289 2019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
290
291 * symtab.c (info_module_cmdlist): New variable.
292 (info_module_command): New function.
293 (search_module_symbols): New function.
294 (info_module_subcommand): New function.
295 (struct info_modules_var_func_options): New struct.
296 (info_modules_var_func_options_defs): New variable.
297 (make_info_modules_var_func_options_def_group): New function.
298 (info_module_functions_command): New function.
299 (info_module_variables_command): New function.
300 (info_module_var_func_command_completer): New function.
301 (_initialize_symtab): Register new 'info module functions' and
302 'info module variables' commands.
303 * symtab.h (typedef symbol_search_in_module): New typedef.
304 (search_module_symbols): Declare new function.
305 * NEWS: Mention new commands.
306
307 2019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
308
309 * dwarf2read.c (dw2_symtab_iter_next): Handle MODULE_DOMAIN.
310 (dw2_expand_marked_cus): Handle MODULES_DOMAIN.
311 (dw2_debug_names_iterator::next): Handle MODULE_DOMAIN and
312 MODULES_DOMAIN.
313 (scan_partial_symbols): Only create partial module symbols for non
314 declarations.
315 * psymtab.c (recursively_search_psymtabs): Handle MODULE_DOMAIN
316 and MODULES_DOMAIN.
317 * symtab.c (search_domain_name): Likewise.
318 (search_symbols): Likewise.
319 (print_symbol_info): Likewise.
320 (symtab_symbol_info): Likewise.
321 (info_modules_command): New function.
322 (_initialize_symtab): Register 'info modules' command.
323 * symtab.h (enum search_domain): Add MODULES_DOMAIN.
324 * NEWS: Mention new 'info modules' command.
325
326 2019-10-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
327
328 * NEWS: Mention $_gdb_setting, $_gdb_setting_str, $_gdb_maint_setting
329 and $_gdb_maint_setting_str.
330
331 2019-10-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
332
333 * cli/cli-cmds.c (setting_cmd, value_from_setting)
334 (gdb_setting_internal_fn, gdb_maint_setting_internal_fn)
335 (str_value_from_setting, gdb_setting_str_internal_fn)
336 (gdb_maint_setting_str_internal_fn): New functions.
337 (_initialize_cli_cmds): Define the new convenience functions.
338 * gdb/cli/cli-setshow.h (get_setshow_command_value_string): Constify.
339 * gdb/cli/cli-setshow.c (get_setshow_command_value_string): Constify.
340
341 2019-10-31 Christian Biesinger <cbiesinger@google.com>
342
343 * agent.c (set_can_use_agent): When the setting is turned on,
344 look up agent symbols if we don't have them yet.
345 (agent_new_objfile): Don't look up agent symbols when the agent
346 setting is off.
347
348 2019-10-31 Christian Biesinger <cbiesinger@google.com>
349
350 * config.in: Regenerate.
351
352 2019-10-31 Christian Biesinger <cbiesinger@google.com>
353
354 * configure: Regenerate.
355 * configure.ac: Check for strerror_r.
356 * gdbsupport/common-utils.h (safe_strerror): Change return value
357 to const char * and document that this function is now threadsafe.
358 * gdbsupport/posix-strerror.c (safe_strerror): Make buf
359 thread_local and call strerror_r, if available.
360 * utils.c (perror_string): Update.
361 (print_sys_errmsg): Update.
362
363 2019-10-31 Luis Machado <luis.machado@linaro.org>
364
365 * arm-tdep.c (arm_exidx_data_key): Use bfd_key instead of
366 objfile_key.
367 (arm_exidx_new_objfile): Adjust to use objfile->obfd instead of
368 objfile to fetch per-bfd data.
369 (arm_find_exidx_entry): Likewise.
370
371 2019-10-31 Christian Biesinger <cbiesinger@google.com>
372
373 * gdbsupport/agent.c (debug_agent): Change type to bool.
374 (use_agent): Likewise.
375 (all_agent_symbols_look_up): Likewise.
376 (agent_loaded_p): Change return value to bool.
377 (agent_look_up_symbols): Update.
378 (agent_capability_check): Change return value to bool.
379 * gdbsupport/agent.h (agent_loaded_p): Likewise.
380 (debug_agent): Change type to bool.
381 (use_agent): Likewise.
382 (agent_capability_check): Change return value to bool.
383
384 2019-10-30 Christian Biesinger <cbiesinger@google.com>
385
386 * minsyms.c (clear_minimal_symbol_hash_tables): New function.
387 (build_minimal_symbol_hash_tables): Code to clear the table moved
388 to clear_minimal_symbol_hash_tables.
389 (minimal_symbol_reader::install): Call clear_minimal_symbol_hash_tables
390 when needed.
391
392 2019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
393
394 * infcmd.c: Remove includes.
395 * infrun.c: Remove includes.
396
397 2019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
398
399 * ada-lang.h (GROW_VECT): Move to ada-lang.c.
400 (grow_vect): Remove declaration.
401 (ada_type_of_array): Remove declaration.
402 (ada_update_initial_language): Remove declaration.
403 (ada_fold_name): Remove declaration.
404 (ada_fill_in_ada_prototype): Remove declaration.
405 (user_select_syms): Remove declaration.
406 (get_selections): Remove declaration.
407 (ada_tag_type): Remove declaration.
408 (ada_value_tag): Remove declaration.
409 (ada_is_others_clause): Remove declaration.
410 (ada_in_variant): Remove declaration.
411 (ada_value_struct_elt): Remove declaration.
412 (ada_attribute_name): Remove declaration.
413 (ada_system_address_type): Remove declaration.
414 * ada-lang.c (ada_watch_location_expression): Make static.
415 (GROW_VECT): Move here from ada-lang.h.
416 (grow_vect): Make static.
417 (ada_update_initial_language): Make static.
418 (ada_fold_name): Make static.
419 (ada_type_of_array): Make static.
420 (encoded_ordered_before): Move up.
421 (sort_choices): Move up.
422 (print_signatures): Move up.
423 (ada_print_symbol_signature): Move up.
424 (get_selections): Move up and make static.
425 (user_select_syms): Move up and make static.
426 (ada_value_struct_elt): Move up and make static.
427 (ada_tag_type): Make static.
428 (ada_value_tag): Make static.
429 (ada_is_others_clause): Make static.
430 (ada_in_variant): Make static.
431 (ada_attribute_name): Make static.
432
433 2019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
434
435 * ada-lang.c: Remove includes.
436 * ada-typeprint.c: Remove includes.
437 * ada-valprint.c: Remove includes.
438
439 2019-10-29 Simon Marchi <simon.marchi@efficios.com>
440
441 * addrmap.c: Add static assertions of type size, moved from
442 _initialize_addrmap.
443 (_initialize_addrmap): Remove.
444
445 2019-10-29 Christian Biesinger <cbiesinger@google.com>
446
447 * coffread.c (record_minimal_symbol): Update.
448 (process_coff_symbol): Update.
449 * dbxread.c (read_dbx_symtab): Update.
450 * dwarf2read.c (add_partial_symbol): Update.
451 (fixup_go_packaging): Update.
452 (load_partial_dies): Update.
453 (new_symbol): Update.
454 * elfread.c (record_minimal_symbol): Change signature to use
455 gdb::string_view instead of name+len.
456 (elf_symtab_read): Update.
457 (elf_rel_plt_read): Update.
458 * mdebugread.c (parse_partial_symbols): Update.
459 (handle_psymbol_enumerators): Update.
460 (new_symbol): Update.
461 * minsyms.c (minimal_symbol_reader::record_full): Change signature
462 to use gdb::string_view instead of name+len.
463 * minsyms.h (class minimal_symbol_reader) <record_full>: Likewise.
464 * psympriv.h (add_psymbol_to_list): Likewise.
465 * psymtab.c (add_psymbol_to_bcache): Likewise.
466 (add_psymbol_to_list): Likewise.
467 * stabsread.c (define_symbol): Update.
468 * symtab.c (symbol_set_names): Change signature to use gdb::string_view.
469 * symtab.h (SYMBOL_SET_NAMES): Likewise.
470 (symbol_set_names): Likewise.
471 * xcoffread.c (scan_xcoff_symtab): Update.
472
473 2019-10-29 Christian Biesinger <cbiesinger@google.com>
474
475 * symtab.h (symbol_set_names): Document that copy_name must be
476 set to true for non-nullterminated strings.
477 * symtab.c (symbol_set_names): Only make a nullterminated copy of
478 linkage_name if the entry was not found and we need to demangle.
479
480 2019-10-29 Christian Biesinger <cbiesinger@google.com>
481
482 * Makefile.in (HFILES_NO_SRCDIR): Add gdb_binary_search.h.
483 * dwarf2-frame.c (bsearch_fde_cmp): Update.
484 (dwarf2_frame_find_fde): Replace bsearch with gdb::binary_search.
485 * gdbsupport/gdb_binary_search.h: New file.
486
487 2019-10-29 Christian Biesinger <cbiesinger@google.com>
488
489 * NEWS: Mention new --with-system-gdbinit-dir option.
490 * config.in: Regenerate.
491 * configure: Regenerate.
492 * configure.ac: Add new option --with-system-gdbinit-dir.
493 * extension.c (get_ext_lang_of_file): Return extension_language_gdb
494 for a ".gdb" suffix.
495 * main.c (get_init_files): Change system_gdbinit argument to
496 a vector and return the files in SYSTEM_GDBINIT_DIR in
497 addition to SYSTEM_GDBINIT.
498 (captured_main_1): Update.
499 (print_gdb_help): Update.
500 * top.c (print_gdb_configuration): Also print the value of
501 SYSTEM_GDBINIT_DIR.
502
503 2019-10-28 Christian Biesinger <cbiesinger@google.com>
504
505 * gdbsupport/common-utils.h (startswith): Add an overloaded version
506 that takes gdb::string_view arguments.
507
508 2019-10-26 Tom de Vries <tdevries@suse.de>
509
510 * aarch64-linux-tdep.c: Fix typos in comments.
511 * aarch64-tdep.c: Same.
512 * ada-lang.c: Same.
513 * amd64-nat.c: Same.
514 * arc-tdep.c: Same.
515 * arch/aarch64-insn.c: Same.
516 * block.c: Same.
517 * breakpoint.h: Same.
518 * btrace.h: Same.
519 * c-varobj.c: Same.
520 * cli/cli-decode.c: Same.
521 * cli/cli-script.c: Same.
522 * cli/cli-utils.h: Same.
523 * coff-pe-read.c: Same.
524 * coffread.c: Same.
525 * compile/compile-cplus-symbols.c: Same.
526 * compile/compile-object-run.c: Same.
527 * completer.c: Same.
528 * corelow.c: Same.
529 * cp-support.c: Same.
530 * demangle.c: Same.
531 * dwarf-index-write.c: Same.
532 * dwarf2-frame.c: Same.
533 * dwarf2-frame.h: Same.
534 * eval.c: Same.
535 * frame-base.h: Same.
536 * frame.h: Same.
537 * gdbcmd.h: Same.
538 * gdbtypes.h: Same.
539 * gnu-nat.c: Same.
540 * guile/scm-objfile.c: Same.
541 * i386-tdep.c: Same.
542 * i386-tdep.h: Same.
543 * infcall.c: Same.
544 * infcall.h: Same.
545 * linux-nat.c: Same.
546 * m68k-tdep.c: Same.
547 * macroexp.c: Same.
548 * memattr.c: Same.
549 * mi/mi-cmd-disas.c: Same.
550 * mi/mi-getopt.h: Same.
551 * mi/mi-main.c: Same.
552 * minsyms.c: Same.
553 * nat/aarch64-sve-linux-sigcontext.h: Same.
554 * objfiles.h: Same.
555 * ppc-linux-nat.c: Same.
556 * ppc-linux-tdep.c: Same.
557 * ppc-tdep.h: Same.
558 * progspace.h: Same.
559 * prologue-value.h: Same.
560 * python/py-evtregistry.c: Same.
561 * python/py-instruction.h: Same.
562 * record-btrace.c: Same.
563 * record-full.c: Same.
564 * remote.c: Same.
565 * rs6000-tdep.c: Same.
566 * ser-tcp.c: Same.
567 * sol-thread.c: Same.
568 * sparc-sol2-tdep.c: Same.
569 * sparc64-tdep.c: Same.
570 * stabsread.c: Same.
571 * symfile.c: Same.
572 * symtab.h: Same.
573 * target.c: Same.
574 * tracepoint.c: Same.
575 * tui/tui-data.h: Same.
576 * tui/tui-io.c: Same.
577 * tui/tui-win.c: Same.
578 * tui/tui.c: Same.
579 * unittests/rsp-low-selftests.c: Same.
580 * user-regs.h: Same.
581 * utils.c: Same.
582 * utils.h: Same.
583 * valarith.c: Same.
584 * valops.c: Same.
585 * valprint.c: Same.
586 * valprint.h: Same.
587 * value.c: Same.
588 * value.h: Same.
589 * varobj.c: Same.
590 * x86-nat.h: Same.
591 * xtensa-tdep.c: Same.
592
593 2019-10-25 Ali Tamur <tamur@google.com>
594
595 * charset.c (find_charset_names): Reflect API change.
596
597 2019-10-25 Christian Biesinger <cbiesinger@google.com>
598
599 * symtab.c (struct demangled_name_entry): Change demangled name
600 to a unique_xmalloc_ptr<char>, now that we don't allocate it as
601 part of the struct anymore.
602 (symbol_set_names): No longer obstack allocate + copy the demangled
603 name, just store the allocated name from bfd.
604
605 2019-10-25 Tom Tromey <tromey@adacore.com>
606
607 * dwarf2-frame.c (dwarf2_cie_table): Now a typedef.
608 (bsearch_cie_cmp, add_cie): Remove.
609 (find_cie): Reimplement.
610 (decode_frame_entry_1, decode_frame_entry): Change type. Update.
611 (dwarf2_build_frame_info): Update.
612
613 2019-10-24 H.J. Lu <hongjiu.lu@intel.com>
614
615 PR gdb/25126
616 * symfile.c (reread_symbols): Call forget_cached_source_info to
617 clear the stale source cache.
618
619 2019-10-24 Christian Biesinger <cbiesinger@google.com>
620
621 * configure: Regenerate.
622 * configure.ac: Remove code that sets python_has_threads.
623
624 2019-10-24 Christian Biesinger <cbiesinger@google.com>
625
626 * config.in: Regenerate.
627 * configure: Regenerate.
628 * configure.ac: Remove the code that uses sed to get the python
629 version and defines HAVE_LIBPYTHON2_6 / HAVE_LIBPYTHON2_7.
630
631 2019-10-24 Andrew Burgess <andrew.burgess@embecosm.com>
632
633 * python/py-progspace.c (pspy_block_for_pc): Return None for all
634 error paths.
635
636 2019-10-23 Tom Tromey <tom@tromey.com>
637
638 * arc-tdep.c: Remove ".." from include.
639 * frv-tdep.c: Remove ".." from include.
640 * lm32-tdep.c: Remove ".." from include.
641 * microblaze-tdep.c: Remove ".." from include.
642 * or1k-tdep.h: Remove ".." from include.
643 * s12z-tdep.c: Remove ".." from include.
644 * Makefile.in (OPCODES_CFLAGS): Add comment.
645 (TOP_CFLAGS): New variable.
646 (INTERNAL_CFLAGS_BASE): Add TOP_CFLAGS.
647
648 2019-10-23 Tom Tromey <tom@tromey.com>
649
650 * Makefile.in (READLINE_DIR): Update.
651
652 2019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
653
654 * infcall.c (call_function_by_hand_dummy): Fix the function
655 comment. And extract out a code section into...
656 (reserve_stack_space): ...this new function.
657
658 2019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
659
660 * infcall.c (value_arg_coerce): Remove an unused parameter.
661 (call_function_by_hand_dummy): Update the call to
662 'value_arg_coerce'.
663
664 2019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
665
666 * infcall.c (call_function_by_hand_dummy): Refactor.
667
668 2019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
669
670 * MAINTAINERS (Write After Approval): Add Tankut Baris Aktemur.
671
672 2019-10-23 Tom Tromey <tom@tromey.com>
673
674 * configure: Rebuild.
675 * configure.ac: Don't check for sigprocmask.
676 * gdbsupport/common.m4 (GDB_AC_COMMON): Check for sigprocmask.
677
678 2019-10-23 Tom Tromey <tom@tromey.com>
679
680 * configure: Rebuild.
681 * acinclude.m4: Use m4_include, not sinclude.
682
683 2019-10-23 Tom de Vries <tdevries@suse.de>
684
685 PR breakpoints/24687
686 * symtab.c (iterate_over_some_symtabs): Apply gdb_realpath on fullname.
687
688 2019-10-22 Christian Biesinger <cbiesinger@google.com>
689
690 * symtab.c (struct demangled_name_entry) <language>: Change from
691 bitfield to regular variable.
692
693 2019-10-22 Christian Biesinger <cbiesinger@google.com>
694
695 * symtab.c (struct demangled_name_entry): Add a constructor.
696 (free_demangled_name_entry): New function to call the destructor
697 for demangled_name_entry.
698 (create_demangled_names_hash): Pass free_demangled_name_entry to
699 htab_create_alloc.
700 (symbol_set_names): Call placement new for demangled_name_entry.
701 * utils.c: No longer include xxhash.h here, now that fast_hash
702 is inlined in the header.
703 * utils.h: Instead, include it here.
704
705 2019-10-22 Christian Biesinger <cbiesinger@google.com>
706
707 * Makefile.in: Link with libxxhash.
708 * config.in: Regenerate.
709 * configure: Regenerate.
710 * configure.ac: Search for libxxhash.
711 * utils.c (fast_hash): Use xxhash if present.
712
713 2019-10-22 Christian Biesinger <cbiesinger@google.com>
714
715 * utils.h (fast_hash): New function.
716 * symtab.c (hash_demangled_name_entry): Call new function
717 fast_hash.
718
719 2019-10-22 Christian Biesinger <cbiesinger@google.com>
720
721 * symtab.c (struct demangled_name_entry): Change type of mangled
722 to gdb::string_view. Also adds a constructor that takes the
723 mangled name.
724 (hash_demangled_name_entry): Update.
725 (eq_demangled_name_entry): Update.
726 (free_demangled_name_entry): New function to call the destructor
727 now that this is not a POD anymore.
728 (create_demangled_names_hash): Pass free_demangled_name_entry to
729 htab_create_alloc.
730 (symbol_set_names): Update.
731
732 2019-10-21 Ali Tamur <tamu@google.com>
733
734 * dwarf2read.c (dir_index): Change type.
735 (file_name_index): Likewise.
736 (line_header::include_dir_at): Change comment and implementation on
737 whether it is DWARF 5.
738 (line_header::is_valid_file_index): New function.
739 (line_header::file_name_at): Change comment and implementation on
740 whether it is DWARF 5.
741 (line_header::file_names): Change to private field renamed as
742 m_file_names and introduce a new accessor method.
743 (line_header::file_names_size): New method.
744 (line_header::include_dirs): Change to private field and rename as
745 m_include_dirs.
746 (dw2_get_file_names_reader): Define local var at a smaller scope and
747 reflect API change.
748 (dwarf2_cu::setup_type_unit_groups): Reflect API change.
749 (process_structure_scope): Likewise.
750 (line_header::add_include_dir): Change message and reflect renaming.
751 (line_header::add_file_name): Likewise.
752 (read_formatted_entries): Handle DW_FORM_data16.
753 (dwarf_decode_line_header): Fix line header length calculation.
754 (psymtab_include_file_name): Change comment and API.
755 (lnp_state_machine::m_file): Update comment and reflect type change.
756 (lnp_state_machine::record_line): Reflect type change.
757 (dwarf_decode_lines): Reflect API change.
758 (file_file_name): Likewise.
759 (file_full_name): Likewise.
760
761 2019-10-21 Andrew Burgess <andrew.burgess@embecosm.com>
762
763 * objfiles.c (sort_cmp): Ensure that !(a < a) holds true.
764
765 2019-10-21 Tom Tromey <tom@tromey.com>
766
767 * tui/tui-winsource.h (tui_exec_info_content): Remove typedef.
768
769 2019-10-21 Tom Tromey <tom@tromey.com>
770
771 * configure.ac (nm.h): Conditionally create nm.h link. Subst
772 NM_H. Use AC_CONFIG_LINKS.
773 * configure: Rebuild.
774 * Makefile.in (NM_H): New variable.
775 (generated_files): Add NM_H. Remove gcore.
776 (nm.h, stamp-nmh): New targets.
777
778 2019-10-20 Tom Tromey <tom@tromey.com>
779
780 * objfiles.h (unlink_objfile, put_objfile_before): Don't declare.
781 * objfiles.c (unlink_objfile): Move earlier. Now static. Remove
782 obsolete comment.
783 (put_objfile_before): Now static.
784
785 2019-10-19 Simon Marchi <simon.marchi@polymtl.ca>
786
787 * gdbsupport/common-utils.h (startswith): Change return type to
788 bool.
789
790 2019-10-19 Christian Biesinger <cbiesinger@google.com>
791
792 * bcache.c (bcache::print_statistics): Use std::sort instead of qsort.
793 * breakpoint.c (bp_locations_compare): Rename to...
794 (bp_location_is_less_than): ...this, and change to std::sort semantics.
795 (update_global_location_list): Use std::sort instead of qsort.
796 * buildsym.c (compare_line_numbers): Rename to...
797 (lte_is_less_than): ...this, and change to std::sort semantics.
798 (buildsym_compunit::end_symtab_with_blockvector): Use std::sort
799 instead of qsort.
800 * disasm.c (compare_lines): Rename to...
801 (line_is_less_than): ...this, and change to std::sort semantics.
802 (do_mixed_source_and_assembly_deprecated): Call std::sort instead
803 of qsort.
804 * dwarf2-frame.c (qsort_fde_cmp): Rename to...
805 (fde_is_less_than): ...this, and change to std::sort semantics.
806 (dwarf2_build_frame_info): Call std::sort instead of qsort.
807 * mdebugread.c (compare_blocks):
808 (block_is_less_than): ...this, and change to std::sort semantics.
809 (sort_blocks): Call std::sort instead of qsort.
810 * objfiles.c (qsort_cmp): Rename to...
811 (sort_cmp): ...this, and change to std::sort semantics.
812 (update_section_map): Call std::sort instead of qsort.
813 * remote.c (compare_pnums): Remove.
814 (map_regcache_remote_table): Call std::sort instead of qsort.
815 * utils.c (compare_positive_ints): Remove.
816 * utils.h (compare_positive_ints): Remove.
817 * xcoffread.c (compare_lte): Remove.
818 (arrange_linetable): Call std::sort instead of qsort.
819
820 2019-10-19 Sergio Durigan Junior <sergiodj@redhat.com>
821
822 * symfile.c (init_entry_point_info): Fix typo.
823 * i386-darwin-tdep.c (darwin_dwarf_signal_frame_p): Fix typo.
824
825 2019-10-18 Tom de Vries <tdevries@suse.de>
826
827 * aarch64-tdep.c: Fix typos in comments.
828 * ada-lang.c: Same.
829 * ada-tasks.c: Same.
830 * alpha-tdep.c: Same.
831 * alpha-tdep.h: Same.
832 * amd64-nat.c: Same.
833 * amd64-windows-tdep.c: Same.
834 * arc-tdep.c: Same.
835 * arc-tdep.h: Same.
836 * arch-utils.c: Same.
837 * arm-nbsd-tdep.c: Same.
838 * arm-tdep.c: Same.
839 * ax-gdb.c: Same.
840 * blockframe.c: Same.
841 * btrace.c: Same.
842 * c-varobj.c: Same.
843 * coff-pe-read.c: Same.
844 * coffread.c: Same.
845 * cris-tdep.c: Same.
846 * darwin-nat.c: Same.
847 * dbxread.c: Same.
848 * dcache.c: Same.
849 * disasm.c: Same.
850 * dtrace-probe.c: Same.
851 * dwarf-index-write.c: Same.
852 * dwarf2-frame-tailcall.c: Same.
853 * dwarf2-frame.c: Same.
854 * dwarf2read.c: Same.
855 * eval.c: Same.
856 * exceptions.c: Same.
857 * fbsd-tdep.c: Same.
858 * findvar.c: Same.
859 * frame.c: Same.
860 * frv-tdep.c: Same.
861 * gnu-v3-abi.c: Same.
862 * go32-nat.c: Same.
863 * h8300-tdep.c: Same.
864 * hppa-tdep.c: Same.
865 * i386-linux-tdep.c: Same.
866 * i386-tdep.c: Same.
867 * ia64-libunwind-tdep.c: Same.
868 * ia64-tdep.c: Same.
869 * infcmd.c: Same.
870 * infrun.c: Same.
871 * linespec.c: Same.
872 * linux-nat.c: Same.
873 * linux-thread-db.c: Same.
874 * machoread.c: Same.
875 * mdebugread.c: Same.
876 * mep-tdep.c: Same.
877 * mn10300-tdep.c: Same.
878 * namespace.c: Same.
879 * objfiles.c: Same.
880 * opencl-lang.c: Same.
881 * or1k-tdep.c: Same.
882 * osabi.c: Same.
883 * ppc-linux-nat.c: Same.
884 * ppc-linux-tdep.c: Same.
885 * ppc-sysv-tdep.c: Same.
886 * printcmd.c: Same.
887 * procfs.c: Same.
888 * record-btrace.c: Same.
889 * record-full.c: Same.
890 * remote-fileio.c: Same.
891 * remote.c: Same.
892 * rs6000-tdep.c: Same.
893 * s12z-tdep.c: Same.
894 * score-tdep.c: Same.
895 * ser-base.c: Same.
896 * ser-go32.c: Same.
897 * skip.c: Same.
898 * sol-thread.c: Same.
899 * solib-svr4.c: Same.
900 * solib.c: Same.
901 * source.c: Same.
902 * sparc-nat.c: Same.
903 * sparc-sol2-tdep.c: Same.
904 * sparc-tdep.c: Same.
905 * sparc64-tdep.c: Same.
906 * stabsread.c: Same.
907 * stack.c: Same.
908 * symfile.c: Same.
909 * symtab.c: Same.
910 * target-descriptions.c: Same.
911 * target-float.c: Same.
912 * thread.c: Same.
913 * utils.c: Same.
914 * valops.c: Same.
915 * valprint.c: Same.
916 * value.c: Same.
917 * varobj.c: Same.
918 * windows-nat.c: Same.
919 * xcoffread.c: Same.
920 * xstormy16-tdep.c: Same.
921 * xtensa-tdep.c: Same.
922
923 2019-10-17 Tom Tromey <tromey@adacore.com>
924
925 * configure: Rebuild.
926 * configure.ac: Use AC_CONFIG_HEADERS. Create stamp-h there, not
927 in AC_CONFIG_FILES invocation.
928 * Makefile.in (Makefile, data-directory/Makefile, stamp-h): Use
929 new-style config.status invocation.
930
931 2019-10-17 Tom de Vries <tdevries@suse.de>
932
933 * arm-nbsd-nat.c: Fix typos in comments.
934 * arm-tdep.c: Same.
935 * darwin-nat-info.c: Same.
936 * dwarf2read.c: Same.
937 * elfread.c: Same.
938 * event-top.c: Same.
939 * findvar.c: Same.
940 * gdbtypes.c: Same.
941 * hppa-tdep.c: Same.
942 * i386-tdep.c: Same.
943 * jit.c: Same.
944 * main.c: Same.
945 * mdebugread.c: Same.
946 * moxie-tdep.c: Same.
947 * nto-procfs.c: Same.
948 * osabi.c: Same.
949 * ppc-linux-tdep.c: Same.
950 * remote.c: Same.
951 * riscv-tdep.c: Same.
952 * s390-tdep.c: Same.
953 * sh-tdep.c: Same.
954 * sparc-linux-tdep.c: Same.
955 * sparc-nat.c: Same.
956 * stack.c: Same.
957 * target-descriptions.c: Same.
958 * top.c: Same.
959 * varobj.c: Same.
960
961 2019-10-16 Tom Tromey <tom@tromey.com>
962
963 * objfiles.h (struct objfile) <original_name>: Now const.
964
965 2019-10-16 Christian Biesinger <cbiesinger@google.com>
966
967 * gdbsupport/gdb_setjmp.h (SIGSETJMP): Allow passing in the value to
968 pass on to sigsetjmp's second argument.
969 * cp-support.c (gdb_demangle): Unblock SIGSEGV if we caught a crash.
970
971 2019-10-16 Keith Seitz <keiths@redhat.com>
972
973 PR gdb/23567
974 * dwarf2read.c (dwarf2_per_objfile::locate_sections): Discard
975 sections whose size is greater than the file size.
976
977 2019-10-16 Jim Wilson <jimw@sifive.com>
978
979 * riscv-tdep.c (riscv_gcc_target_options): New.
980 (riscv_gnu_triplet_regexp): New.
981 (riscv_gdbarch_init): Call set_gdbarch_gcc_triplet_options and
982 set_gdbarch_gnu_triplet_regexp.
983
984 2019-10-16 Christian Biesinger <cbiesinger@google.com>
985
986 * Makefile.in: Add xml-builtin.h.
987 * features/feature_to_c.sh: Add an include for xml-builtin.h
988 to ensure that the compiler checks that the types match.
989 * xml-builtin.h: New file.
990 * xml-support.c (fetch_xml_builtin): Add missing const.
991 * xml-support.h: Remove declaration of xml_builtins.
992
993 2019-10-16 Tom de Vries <tdevries@suse.de>
994
995 PR tdep/25096
996 * amd64-tdep.c (amd64_classify_aggregate_field): Factor out of ...
997 (amd64_classify_aggregate): ... here.
998 (amd64_classify_aggregate_field): Handled fiels of nested structs
999 recursively.
1000
1001 2019-10-16 Tom de Vries <tdevries@suse.de>
1002
1003 PR tdep/24104
1004 * amd64-tdep.c (amd64_push_arguments): Handle AMD64_NO_CLASS in loop
1005 that handles 'theclass'.
1006
1007 2019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
1008
1009 * linespec.c (decode_digits_ordinary): Update comment.
1010 * make-target-delegates: No longer need to handle VEC case.
1011 * memrange.c (normalize_mem_ranges): Update comment.
1012 * namespace.c (add_using_directive): Update comment.
1013 * objc-lang.c (uniquify_strings): Update comment.
1014 * ppc-linux-nat.c (struct thread_points): Update comment.
1015 * probe.h (find_probes_in_objfile): Update comment.
1016 * target.h (enum flash_preserve_mode): Update comment.
1017 * varobj.c (varobj_restrict_range): Update comment.
1018 * varobj.h (varobj_list_children): Update comment.
1019
1020 2019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
1021
1022 * Makefile.in: Remove references to vec.h and vec.c.
1023 * aarch64-tdep.c: No longer include vec.h.
1024 * ada-lang.c: Likewise.
1025 * ada-lang.h: Likewise.
1026 * arm-tdep.c: Likewise.
1027 * ax.h: Likewise.
1028 * breakpoint.h: Likewise.
1029 * charset.c: Likewise.
1030 * cp-support.h: Likewise.
1031 * dtrace-probe.c: Likewise.
1032 * dwarf2read.c: Likewise.
1033 * extension.h: Likewise.
1034 * gdb_bfd.c: Likewise.
1035 * gdbsupport/gdb_vecs.h: Likewise.
1036 * gdbsupport/vec.c: Remove.
1037 * gdbsupport/vec.h: Remove.
1038 * gdbthread.h: Likewise.
1039 * guile/scm-type.c: Likewise.
1040 * inline-frame.c: Likewise.
1041 * machoread.c: Likewise.
1042 * memattr.c: Likewise.
1043 * memrange.h: Likewise.
1044 * namespace.h: Likewise.
1045 * nat/linux-btrace.h: Likewise.
1046 * osdata.c: Likewise.
1047 * parser-defs.h: Likewise.
1048 * progspace.h: Likewise.
1049 * python/py-type.c: Likewise.
1050 * record-btrace.c: Likewise.
1051 * rust-exp.y: Likewise.
1052 * solib-target.c: Likewise.
1053 * stap-probe.c: Likewise.
1054 * target-descriptions.c: Likewise.
1055 * target-memory.c: Likewise.
1056 * target.h: Likewise.
1057 * varobj.c: Likewise.
1058 * varobj.h: Likewise.
1059 * xml-support.h: Likewise.
1060
1061 2019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
1062
1063 * gdb/dwarf2read.c (dwarf2_per_objfile::~dwarf2_per_objfile):
1064 Update for new std::vector based implementation.
1065 (process_psymtab_comp_unit_reader): Likewise.
1066 (scan_partial_symbols): Likewise.
1067 (recursively_compute_inclusions): Likewise.
1068 (compute_compunit_symtab_includes): Likewise.
1069 (process_imported_unit_die): Likewise.
1070 (queue_and_load_dwo_tu): Likewise.
1071 (follow_die_sig_1): Likewise.
1072 * gdb/dwarf2read.h: Remove DEF_VEC_P.
1073 (typedef dwarf2_per_cu_ptr): Remove.
1074 (struct dwarf2_per_cu_data) <imported_symtabs_empty>: New
1075 function.
1076 (struct dwarf2_per_cu_data) <imported_symtabs_push>: New function.
1077 (struct dwarf2_per_cu_data) <imported_symtabs_size>: New function.
1078 (struct dwarf2_per_cu_data) <imported_symtabs_free>: New function.
1079 (struct dwarf2_per_cu_data) <imported_symtabs>: Change to
1080 std::vector.
1081
1082 2019-10-15 Tom Tromey <tromey@adacore.com>
1083
1084 * windows-nat.c (windows_nat_target::resume): Use %x when logging
1085 TID.
1086
1087 2019-10-15 Tom Tromey <tromey@adacore.com>
1088
1089 * windows-nat.c (windows_nat_target::fetch_registers)
1090 (windows_nat_target::store_registers): Rename "pid" to "tid".
1091
1092 2019-10-15 Tom Tromey <tromey@adacore.com>
1093
1094 * gdbarch.h, gdbarch.c: Rebuild.
1095 * gdbarch.sh (gcc_target_options): Change return type to
1096 std::string.
1097 * compile/compile.c (get_args): Update.
1098 * nios2-tdep.c (nios2_gcc_target_options): Return std::string.
1099 * arm-linux-tdep.c (arm_linux_gcc_target_options): Return
1100 std::string.
1101 * aarch64-linux-tdep.c (aarch64_linux_gcc_target_options): Return
1102 std::string.
1103 * arch-utils.c (default_gcc_target_options): Return std::string.
1104 * arch-utils.h (default_gcc_target_options): Return std::string.
1105 * s390-tdep.c (s390_gcc_target_options): Return std::string.
1106
1107 2019-10-15 Christian Biesinger <cbiesinger@google.com>
1108
1109 * breakpoint.c (breakpoint_chain): Make static.
1110 * tui/tui-winsource.c: Call iterate_over_breakpoints instead
1111 of accessing breakpoint_chain.
1112
1113 2019-10-15 Christian Biesinger <cbiesinger@google.com>
1114
1115 * breakpoint.c (iterate_over_breakpoints): Change function pointer
1116 to a gdb::function_view and return value to bool.
1117 * breakpoint.h (iterate_over_breakpoints): Likewise.
1118 * dummy-frame.c (pop_dummy_frame_bpt): Update.
1119 (pop_dummy_frame): Update.
1120 * guile/scm-breakpoint.c (bpscm_build_bp_list): Update.
1121 (gdbscm_breakpoints): Update.
1122 * python/py-breakpoint.c (build_bp_list): Update.
1123 (gdbpy_breakpoints): Update.
1124 * python/py-finishbreakpoint.c (bpfinishpy_detect_out_scope_cb):
1125 Update.
1126 (bpfinishpy_handle_stop): Update.
1127 (bpfinishpy_handle_exit): Update.
1128 * solib-svr4.c (svr4_update_solib_event_breakpoint): Update.
1129 (svr4_update_solib_event_breakpoints): Update.
1130
1131 2019-10-15 Andreas Arnez <arnez@linux.ibm.com>
1132
1133 * s390-tdep.c (s390_effective_inner_type): Ignore static fields
1134 when unwrapping single-field structs.
1135
1136 2019-10-14 Simon Marchi <simon.marchi@polymtl.ca>
1137
1138 * dwarf2read.c: Remove includes.
1139
1140 2019-10-13 Simon Marchi <simon.marchi@polymtl.ca>
1141
1142 * ui-out.c (ui_out::call_do_message): Silence
1143 -Wformat-nonliteral warning.
1144
1145 2019-10-12 Simon Marchi <simon.marchi@polymtl.ca>
1146
1147 * breakpoint.c: Remove some includes: continuations.h, skip.h,
1148 mi/mi-main.h, readline/readline.h, readline/history.h. Add
1149 include: readline/tilde.h.
1150
1151 2019-10-12 Christian Biesinger <cbiesinger@google.com>
1152
1153 * remote.c (remote_target::get_trace_status): Remove declaration of
1154 trace_regblock_size.
1155
1156 2019-10-12 Christian Biesinger <cbiesinger@google.com>
1157
1158 * cli/cli-cmds.c (max_user_call_depth): Move comment to header.
1159 (show_user): Remove declaration of cmdlist.
1160 * cli/cli-cmds.h (max_user_call_depth): Declare.
1161 * cli/cli-script.c (execute_user_command): Remove declaration
1162 of max_user_call_depth.
1163
1164 2019-10-11 Jim Wilson <jimw@sifive.com>
1165
1166 * gdbsupport/print-utils.h (pulongest): Fix comment.
1167 (plongest): Likewise.
1168 (phex): Add missing comment, mention leading zeros.
1169 (phex_nz): Add mention of no leading zeros to comment.
1170
1171 * riscv-tdep.c (riscv_push_dummy_code): Change %lld to %s and use
1172 plongest instead of unsigned long long cast.
1173
1174 2019-10-10 Christian Biesinger <cbiesinger@google.com>
1175
1176 * main.c (captured_main_1): Include gdbtk.h and remove declarations
1177 for external_editor_command and gdbtk_test.
1178
1179 2019-10-10 Christian Biesinger <cbiesinger@google.com>
1180
1181 * mi/mi-cmd-var.c (varobjdebug): Remove declaration.
1182 * varobj.c (varobjdebug): Move comment to...
1183 * varobj.h (varobjdebug): ...here, and declare.
1184
1185 2019-10-09 Tom Tromey <tom@tromey.com>
1186
1187 * tui/tui-regs.c (tui_data_window::show_registers): Don't call
1188 erase_data_content.
1189
1190 2019-10-09 Tom Tromey <tom@tromey.com>
1191
1192 * tui/tui-wingeneral.h (tui_delete_win): Don't declare.
1193 * tui/tui-stack.c (tui_locator_window::rerender): Update.
1194 * tui/tui-command.c (tui_cmd_window::resize)
1195 (tui_refresh_cmd_win): Update.
1196 * tui/tui-win.c (tui_resize_all, tui_set_focus_command): Update.
1197 * tui/tui.c (tui_rl_other_window, tui_enable): Update.
1198 * tui/tui-data.c (~tui_gen_win_info): Remove.
1199 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
1200 * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts)
1201 (tui_redisplay_readline, tui_mld_flush)
1202 (tui_mld_erase_entire_line, tui_mld_getc, tui_getc): Update.
1203 * tui/tui-regs.c (tui_data_window::delete_data_content_windows)
1204 (tui_data_window::erase_data_content)
1205 (tui_data_item_window::rerender)
1206 (tui_data_item_window::refresh_window): Update.
1207 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window)
1208 (box_win, tui_gen_win_info::make_window)
1209 (tui_gen_win_info::make_visible): Update.
1210 (tui_delete_win): Remove.
1211 * tui/tui-winsource.c
1212 (tui_source_window_base::do_erase_source_content): Update.
1213 (tui_show_source_line, tui_source_window_base::update_tab_width)
1214 (tui_source_window_base::update_exec_info): Update.
1215 * tui/tui-data.h (struct curses_deleter): New.
1216 (struct tui_gen_win_info) <handle>: Now a unique_ptr.
1217 (struct tui_gen_win_info) <~tui_gen_win_info>: Define.
1218
1219 2019-10-09 Tom Tromey <tom@tromey.com>
1220
1221 * tui/tui-wingeneral.h (struct tui_gen_win_info): Don't declare.
1222
1223 2019-10-09 Tom Tromey <tom@tromey.com>
1224
1225 * tui/tui-data.c (tui_win_is_auxiliary): Remove.
1226 * tui/tui-data.h (tui_win_is_auxiliary): Don't declare.
1227
1228 2019-10-09 Tom Tromey <tom@tromey.com>
1229
1230 * tui/tui-disasm.c (tui_get_low_disassembly_address): Compute
1231 window height directly.
1232 * tui/tui-layout.h (tui_default_win_viewport_height): Don't
1233 declare.
1234 * tui/tui-layout.c (tui_default_win_height): Remove.
1235 (tui_default_win_viewport_height): Remove.
1236
1237 2019-10-09 Tom Tromey <tom@tromey.com>
1238
1239 * tui/tui.h: Remove comments.
1240
1241 2019-10-09 Tom de Vries <tdevries@suse.de>
1242
1243 * python/lib/gdb/printer/bound_registers.py: Use
1244 '^builtin_type_bound128' as regexp argument for
1245 add_builtin_pretty_printer.
1246
1247 2019-10-09 Christian Biesinger <cbiesinger@google.com>
1248
1249 * guile/guile.c (guile_extension_script_ops): Remove forward
1250 declaration and mark as static.
1251 (guile_script_ops): Likewise.
1252 (extension_language_guile): Move further down in the file so
1253 it can reference the definitions for guile_{extension_,}script_ops.
1254
1255 2019-10-09 Andreas Arnez <arnez@linux.ibm.com>
1256
1257 * s390-tdep.c (390_process_record): Handle new arch13 instructions
1258 except SORTL, DFLTCC, and KDSA.
1259
1260 2019-10-08 Tom Tromey <tromey@adacore.com>
1261
1262 * windows-nat.c (struct windows_thread_info_struct) <sf>: Remove.
1263 (struct safe_symbol_file_add_args): Remove.
1264
1265 2019-10-08 Tom Tromey <tromey@adacore.com>
1266
1267 * windows-nat.c: Don't include buildsym-legacy.h.
1268
1269 2019-10-08 Tom Tromey <tromey@adacore.com>
1270
1271 * contrib/ari/gdb_ari.sh (%p): Allow gdb-specific %p extensions.
1272
1273 2019-10-08 Christian Biesinger <cbiesinger@google.com>
1274
1275 * gdbtypes.c (overload_debug): Move comment to header.
1276 * gdbtypes.h (overload_debug): Declare.
1277 * valops.c: Remove declaration of overload_debug, instead
1278 include gdbtypes.h.
1279
1280 2019-10-08 Christian Biesinger <cbiesinger@google.com>
1281
1282 * language.c (show_language_command): Pass lang_frame_mismatch_warn
1283 through _().
1284 (lang_frame_mismatch_warn): Make const, mark with N_(), and
1285 move comment...
1286 * language.h (lang_frame_mismatch_warn): ... here. Also add
1287 declaration.
1288 * top.c (lang_frame_mismatch_warn): Remove declaration.
1289 (check_frame_language_change): Pass lang_frame_mismatch_warn
1290 through _().
1291
1292 2019-10-07 Christian Biesinger <cbiesinger@google.com>
1293
1294 * c-lang.h (vtbl_ptr_name): Declare.
1295 * cp-valprint.c (vtbl_ptr_name): Remove "extern" now that we get
1296 it from the header.
1297 * stabsread.c (define_symbol): Remove declaration of vtbl_ptr_name.
1298
1299 2019-10-07 Christian Biesinger <cbiesinger@google.com>
1300
1301 * charset.c (your_gdb_wchar_t_is_bogus): Replace with a
1302 gdb_static_assert.
1303
1304 2019-10-07 Weimin Pan <weimin.pan@oracle.com>
1305
1306 * ../Makefile.def (dependencies): Add all-libctf to all-gdb
1307 * ../Makefile.in: Add "all-gdb: maybe-all-libctf"
1308 * ctfread.c: New file.
1309 * ctfread.h: New file.
1310 * elfread.c: Include ctfread.h.
1311 (struct elfinfo text_p): New member ctfsect.
1312 (elf_locate_sections): Mark CTF section.
1313 (elf_symfile_read): Call elfctf_build_psymtabs.
1314 * Makefile.in (LIBCTF): Add.
1315 (CLIBS): Use it.
1316 (CDEPS): Likewise.
1317 (DIST): Add ctfread.c.
1318
1319 2019-10-07 Andrew Burgess <andrew.burgess@embecosm.com>
1320
1321 * ctfread.c (struct nextfield): Renamed to ...
1322 (struct ctf_nextfield): ... this.
1323 (struct field_info): Renamed to ...
1324 (strut ctf_field_info): ... this.
1325 (attach_fields_to_type): Update for renamed structures.
1326 (ctf_add_member_cb): Likewise.
1327 (ctf_add_enum_member_cb): Likewise.
1328 (process_struct_members): Likewise.
1329 (process_enum_type): Likewise.
1330
1331 2019-10-07 Weimin Pan <weimin.pan@oracle.com>
1332
1333 * tracectf.h: Rename, was ctf.h.
1334 * tracectf.c: Rename, was ctf.c, replace ctf.h with tracectf.h.
1335 * tracefile.c: Likewise.
1336 * tracepoint.c: Remove unused include ctf.h.
1337 * mi/mi-main.c: Likewise.
1338 * Makefile.in Replace ctf.c with tracectf.c.
1339
1340 2019-10-06 Joel Brobecker <brobecker@adacore.com>
1341
1342 * version.in: Change version number to "9.0.50.DATE-git".
1343
1344 2019-10-03 Tom Tromey <tom@tromey.com>
1345
1346 PR rust/24976:
1347 * dwarf2read.c (quirk_rust_enum): Handle single-element unions.
1348
1349 2019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
1350
1351 * f-lang.c (f_language_defn): Use cp_get_symbol_name_matcher and
1352 cp_search_name_hash.
1353 * NEWS: Add entry about nested function support.
1354
1355 2019-10-03 Bernhard Heckel <bernhard.heckel@intel.com>
1356 Andrew Burgess <andrew.burgess@embecosm.com>
1357
1358 * cp-namespace.c (cp_search_static_and_baseclasses): Only search
1359 for nested static variables when searchin VAR_DOMAIN.
1360 * dwarf2read.c (add_partial_symbol): Add nested subroutines to the
1361 global scope, update comment.
1362 (add_partial_subprogram): Call add_partial_subprogram recursively
1363 for nested subroutines when processinng Fortran.
1364 (load_partial_dies): Process the child entities of a subprogram
1365 when processing Fortran.
1366 (partial_die_parent_scope): Handle building scope
1367 for Fortran nested functions.
1368 (process_die): Record that nested functions have a scope.
1369 (new_symbol): Always record Fortran subprograms on the global
1370 symbol list.
1371 (determine_prefix): How to build the prefix for Fortran
1372 subprograms.
1373
1374 2019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
1375
1376 * linux-nat.c (linux_nat_filter_event): Don't ignore SIGSTOP if we
1377 have just sent the thread a SIGSTOP and are waiting for it to
1378 arrive.
1379
1380 2019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
1381
1382 * btrace.c (btrace_add_pc): Remove whitespace before the template
1383 parameter in 'std::vector <...>'.
1384 (parse_xml_btrace_block): Likewise.
1385 (btrace_maint_decode_pt): Likewise.
1386 (btrace_maint_update_packets): Likewise.
1387 (btrace_maint_print_packets): Likewise.
1388 * btrace.h (struct btrace_maint_info): Likewise.
1389 * dwarf2read.c (struct type_unit_group): Likewise.
1390 (build_type_psymtabs_reader): Likewise.
1391 * gdbsupport/btrace-common.c (btrace_data_append): Likewise.
1392 * gdbsupport/btrace-common.h (struct btrace_data_bts): Likewise.
1393 * nat/linux-btrace.c (perf_event_read_bts): Likewise.
1394
1395 2019-10-03 Tom de Vries <tdevries@suse.de>
1396
1397 * cli/cli-style.c (_initialize_cli_style): Adding a '.' at the end of
1398 the first line of the help text for set/show style metadata.
1399
1400 2019-10-02 Tom Tromey <tromey@adacore.com>
1401
1402 * Makefile.in (COMMON_SFILES): Add common-inferior.c.
1403 * gdbsupport/common-inferior.c: New file.
1404 * infcmd.c (startup_with_shell): Don't define.
1405 * nat/fork-inferior.h (startup_with_shell): Don't declare.
1406 * gdbsupport/common-inferior.h (startup_with_shell): Declare.
1407 * inferior.h (startup_with_shell): Don't declare.
1408
1409 2019-10-02 Christian Biesinger <cbiesinger@google.com>
1410
1411 * gdbsupport/gdb_assert.h: Include errors.h.
1412 * gdbsupport/gdb_string_view.h: Include gdb_assert.h.
1413
1414 2019-10-02 Tom Tromey <tromey@adacore.com>
1415
1416 * NEWS: Add $_ada_exception entry.
1417 * ada-lang.c (struct ada_catchpoint): Add constructor.
1418 <m_kind>: New member.
1419 (allocate_location_exception, re_set_exception): Remove
1420 "ex" parameter.
1421 (should_stop_exception): Compute $_ada_exception.
1422 (check_status_exception, print_it_exception)
1423 (print_one_exception, print_mention_exception): Remove
1424 "ex" parameter.
1425 (allocate_location_catch_exception, re_set_catch_exception)
1426 (check_status_exception, print_it_catch_exception)
1427 (print_one_catch_exception, print_mention_catch_exception)
1428 (print_recreate_catch_exception)
1429 (allocate_location_catch_exception_unhandled)
1430 (re_set_catch_exception_unhandled)
1431 (check_status_exception, print_it_catch_exception_unhandled)
1432 (print_one_catch_exception_unhandled)
1433 (print_mention_catch_exception_unhandled)
1434 (print_recreate_catch_exception_unhandled)
1435 (allocate_location_catch_assert, re_set_catch_assert)
1436 (check_status_assert, print_it_catch_assert)
1437 (print_one_catch_assert, print_mention_catch_assert)
1438 (print_recreate_catch_assert)
1439 (allocate_location_catch_handlers, re_set_catch_handlers)
1440 (check_status_handlers, print_it_catch_handlers)
1441 (print_one_catch_handlers, print_mention_catch_handlers)
1442 (print_recreate_catch_handlers): Remove.
1443 (create_ada_exception_catchpoint): Update.
1444 (initialize_ada_catchpoint_ops): Update.
1445
1446 2019-10-02 Tom Tromey <tromey@adacore.com>
1447
1448 * ada-lang.c (ada_lookup_simple_minsyms): Remove.
1449 (create_excep_cond_exprs): Simplify exception string computation.
1450 (ada_exception_catchpoint_cond_string): Likewise.
1451
1452 2019-10-02 Tom Tromey <tromey@adacore.com>
1453
1454 * symmisc.c (dump_msymbols): Don't use MSYMBOL_VALUE_ADDRESS.
1455 * ada-lang.c (lesseq_defined_than): Handle
1456 LOC_STATIC.
1457 * dwarf2read.c (dwarf2_per_objfile): Add can_copy
1458 parameter.
1459 (dwarf2_has_info): Likewise.
1460 (new_symbol): Set maybe_copied on symbol when
1461 appropriate.
1462 * dwarf2read.h (dwarf2_per_objfile): Add can_copy
1463 parameter.
1464 <can_copy>: New member.
1465 * elfread.c (record_minimal_symbol): Set maybe_copied
1466 on symbol when appropriate.
1467 (elf_symfile_read): Update call to dwarf2_has_info.
1468 * minsyms.c (lookup_minimal_symbol_linkage): New
1469 function.
1470 * minsyms.h (lookup_minimal_symbol_linkage): Declare.
1471 * symtab.c (get_symbol_address, get_msymbol_address):
1472 New functions.
1473 * symtab.h (get_symbol_address, get_msymbol_address):
1474 Declare.
1475 (SYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_ADDRESS): Handle
1476 maybe_copied.
1477 (struct symbol, struct minimal_symbol) <maybe_copied>:
1478 New member.
1479
1480 2019-10-02 Tom Tromey <tromey@adacore.com>
1481
1482 * source.c (struct current_source_location): New.
1483 (current_source_key): New global.
1484 (current_source_symtab, current_source_line)
1485 (current_source_pspace): Remove.
1486 (get_source_location): New function.
1487 (get_current_source_symtab_and_line)
1488 (set_default_source_symtab_and_line)
1489 (set_current_source_symtab_and_line)
1490 (clear_current_source_symtab_and_line, select_source_symtab)
1491 (info_source_command, print_source_lines_base)
1492 (info_line_command, search_command_helper, _initialize_source):
1493 Update.
1494
1495 2019-10-02 Tom Tromey <tromey@adacore.com>
1496
1497 * source.c (select_source_symtab): Don't call
1498 decode_line_with_current_source.
1499
1500 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
1501
1502 * symtab.c (lookup_global_symbol): Search global block.
1503
1504 2019-10-02 Tom Tromey <tromey@adacore.com>
1505
1506 * coffread.c (process_coff_symbol): Update.
1507 * dwarf2read.c (var_decode_location, new_symbol): Update.
1508 * mdebugread.c (parse_symbol): Update.
1509 * objfiles.c (relocate_one_symbol): Update.
1510 * stabsread.c (define_symbol, fix_common_block)
1511 (scan_file_globals): Update.
1512 * symtab.h (SYMBOL_VALUE_ADDRESS): Expand to an rvalue.
1513 (SET_SYMBOL_VALUE_ADDRESS): New macro.
1514 * xcoffread.c (process_xcoff_symbol): Update.
1515
1516 2019-10-02 Andreas Arnez <arnez@linux.ibm.com>
1517
1518 * MAINTAINERS: Update my email address.
1519
1520 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
1521
1522 * dwarf2read.c (struct type_unit_group) <tus>: Convert to
1523 std::vector.
1524 (build_type_psymtabs_reader): Update for std::vector.
1525 (build_type_psymtab_dependencies): Likewise.
1526 * dwarf2read.h: Remove use of DEF_VEC_P.
1527 (typedef sig_type_ptr): Delete.
1528
1529 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
1530
1531 * btrace.c (btrace_maint_clear): Update to handle change from VEC
1532 to std::vector.
1533 (btrace_maint_decode_pt): Likewise, and move allocation of the
1534 vector outside of the loop.
1535 (btrace_maint_update_packets): Update to handle change from VEC to
1536 std::vector.
1537 (btrace_maint_print_packets): Likewise.
1538 (maint_info_btrace_cmd): Likewise.
1539 * btrace.h: Remove use of DEF_VEC_O.
1540 (typedef btrace_pt_packet_s): Delete.
1541 (struct btrace_maint_info) <packets>: Change fromm VEC to
1542 std::vector.
1543 * gdbsupport/btrace-common.h: Remove 'vec.h' include.
1544
1545 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
1546
1547 * btrace.c (btrace_compute_ftrace_bts): Update for std::vector,
1548 make accesses into the vector constant references.
1549 (btrace_add_pc): Update for std::vector.
1550 (btrace_stitch_bts): Likewise.
1551 (parse_xml_btrace_block): Likewise.
1552 (btrace_maint_update_packets): Likewise.
1553 (btrace_maint_print_packets): Likewise.
1554 (maint_info_btrace_cmd): Likewise.
1555 * gdbsupport/btrace-common.c (btrace_data::fini): Update for
1556 std::vector.
1557 (btrace_data::empty): Likewise.
1558 (btrace_data_append): Likewise.
1559 * gdbsupport/btrace-common.h: Remove use of DEF_VEC_O.
1560 (typedef btrace_block_s): Delete.
1561 (struct btrace_block): Add constructor.
1562 (struct btrace_data_bts) <blocks>: Change to std::vector.
1563 * nat/linux-btrace.c (perf_event_read_bts): Update for
1564 std::vector.
1565 (linux_read_bts): Likewise.
1566
1567 2019-10-01 Tom Tromey <tom@tromey.com>
1568
1569 * cli/cli-logging.c (show_logging_filename): Use styled_string.
1570
1571 2019-10-01 Tom Tromey <tom@tromey.com>
1572
1573 * stack.c (print_frame, info_frame_command_core): Use
1574 styled_string.
1575 * linux-thread-db.c (try_thread_db_load_1)
1576 (try_thread_db_load_from_pdir_1): Use styled_string.
1577 * auto-load.c (file_is_auto_load_safe, execute_script_contents)
1578 (auto_load_section_scripts, info_auto_load_local_gdbinit)
1579 (maybe_print_unsupported_script_warning)
1580 (maybe_print_script_not_found_warning): Use styled_string.
1581 * ada-lang.c (user_select_syms): Use styled_string.
1582
1583 2019-10-01 Tom Tromey <tom@tromey.com>
1584
1585 * p-lang.c (pascal_printstr): Use metadata style.
1586 * value.c (show_convenience): Use metadata style.
1587 * valprint.c (valprint_check_validity, val_print_optimized_out)
1588 (val_print_not_saved, val_print_unavailable)
1589 (val_print_invalid_address, generic_val_print, val_print)
1590 (value_check_printable, val_print_array_elements): Use metadata
1591 style.
1592 * ui-out.h (class ui_out) <field_fmt>: New overload.
1593 <do_field_fmt>: Add style parameter.
1594 * ui-out.c (ui_out::field_fmt): New overload.
1595 * typeprint.c (type_print_unknown_return_type)
1596 (val_print_not_allocated, val_print_not_associated): Use metadata
1597 style.
1598 * tui/tui-out.h (class tui_ui_out) <do_field_fmt>: Add style
1599 parameter.
1600 * tui/tui-out.c (tui_ui_out::do_field_fmt): Update.
1601 * tracepoint.c (tvariables_info_1): Use metadata style.
1602 * stack.c (print_frame_arg, print_frame_info, print_frame)
1603 (info_frame_command_core): Use metadata style.
1604 * skip.c (info_skip_command): Use metadata style.
1605 * rust-lang.c (rust_print_enum): Use metadata style.
1606 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
1607 metadata style.
1608 * python/py-framefilter.c (py_print_single_arg): Use metadata
1609 style.
1610 * printcmd.c (do_one_display, print_variable_and_value): Use
1611 metadata style.
1612 * p-valprint.c (pascal_val_print)
1613 (pascal_object_print_value_fields): Use metadata style.
1614 * p-typeprint.c (pascal_type_print_base): Use metadata style.
1615 * mi/mi-out.h (class mi_ui_out) <do_field_fmt>: Add style
1616 parameter.
1617 * mi/mi-out.c (mi_ui_out::do_field_fmt): Update.
1618 * m2-valprint.c (m2_print_long_set): Use metadata style.
1619 * m2-typeprint.c (m2_print_type): Use metadata style.
1620 * infcmd.c (print_return_value_1): Use metadata style.
1621 * gnu-v3-abi.c (print_one_vtable): Use metadata style.
1622 * f-valprint.c (info_common_command_for_block): Use metadata
1623 style.
1624 * f-typeprint.c (f_type_print_base): Use metadata style.
1625 * expprint.c (print_subexp_standard): Use metadata style.
1626 * cp-valprint.c (cp_print_value_fields): Use metadata style.
1627 * cli/cli-style.h (class cli_style_option): Add constructor.
1628 (metadata_style): Declare.
1629 * cli/cli-style.c (metadata_style): New global.
1630 (_initialize_cli_style): Register metadata style.
1631 * cli-out.h (class cli_ui_out) <do_field_fmt>: Add style
1632 parameter.
1633 * cli-out.c (cli_ui_out::do_field_fmt): Update.
1634 * c-typeprint.c (c_type_print_base_struct_union)
1635 (c_type_print_base_1): Use metadata style.
1636 * breakpoint.c (watchpoint_value_print)
1637 (print_one_breakpoint_location): Use metadata style.
1638 * break-catch-syscall.c (print_one_catch_syscall): Use metadata
1639 style.
1640 * break-catch-sig.c (signal_catchpoint_print_one): Use metadata
1641 style.
1642 * ada-valprint.c (val_print_packed_array_elements, printstr)
1643 (print_field_values, ada_val_print_ref, ada_val_print): Use
1644 metadata style.
1645 * ada-typeprint.c (print_array_type, ada_print_type): Use metadata
1646 style.
1647 * ada-tasks.c (print_ada_task_info, info_task): Use metadata
1648 style.
1649 * ada-lang.c (user_select_syms): Use metadata style.
1650
1651 2019-10-01 Tom Tromey <tom@tromey.com>
1652
1653 * cli/cli-cmds.c (pwd_command): Style output.
1654
1655 2019-10-01 Pedro Alves <palves@redhat.com>
1656 Tom Tromey <tom@tromey.com>
1657
1658 * symtab.c (print_symbol_info): Use %ps.
1659 (print_msymbol_info): Use %ps.
1660 * symfile.c (symbol_file_add_with_addrs): Use %ps.
1661 * printcmd.c (print_variable_and_value): Use %ps.
1662 * macrocmd.c (show_pp_source_pos): Use %ps.
1663 * infrun.c (print_exited_reason): Use ui_out::message.
1664 * breakpoint.c (watchpoint_check, print_one_breakpoint_location)
1665 (describe_other_breakpoints): Use ui_out::message and new
1666 formats.
1667 (say_where): Use new formats.
1668 (bkpt_print_it, tracepoint_print_one_detail): Use ui_out::message
1669 and new formats.
1670
1671 2019-10-01 Pedro Alves <palves@redhat.com>
1672 Tom Tromey <tom@tromey.com>
1673
1674 * unittests/format_pieces-selftests.c: Add gdb_format parameter.
1675 (test_gdb_formats): New function.
1676 (run_tests): Call it.
1677 (test_format_specifier): Update.
1678 * utils.h (fputs_filtered): Update comment.
1679 (vfprintf_styled, vfprintf_styled_no_gdbfmt)
1680 (fputs_styled_unfiltered): Declare.
1681 * utils.c (fputs_styled_unfiltered): New function.
1682 (vfprintf_maybe_filtered): Add gdbfmt parameter.
1683 (vfprintf_filtered): Update.
1684 (vfprintf_unfiltered, vprintf_filtered): Update.
1685 (vfprintf_styled, vfprintf_styled_no_gdbfmt): New functions.
1686 * ui-out.h (enum ui_out_flag) <unfiltered_output,
1687 disallow_ui_out_field>: New constants.
1688 (enum class field_kind): New.
1689 (struct base_field_s, struct signed_field_s): New.
1690 (signed_field): New function.
1691 (struct string_field_s): New.
1692 (string_field): New function.
1693 (struct styled_string_s): New.
1694 (styled_string): New function.
1695 (class ui_out) <message>: Add comment.
1696 <vmessage, call_do_message>: New methods.
1697 <do_message>: Add style parameter.
1698 * ui-out.c (ui_out::call_do_message, ui_out::vmessage): New
1699 methods.
1700 (ui_out::message): Rewrite.
1701 * mi/mi-out.h (class mi_ui_out) <do_message>: Add style
1702 parameter.
1703 * mi/mi-out.c (mi_ui_out::do_message): Add style parameter.
1704 * gdbsupport/format.h (class format_pieces) <format_pieces>: Add
1705 gdb_extensions parameter.
1706 (class format_piece): Add parameter to constructor.
1707 (n_int_args): New field.
1708 * gdbsupport/format.c (format_pieces::format_pieces): Add
1709 gdb_extensions parameter. Handle '*'.
1710 * cli-out.h (class cli_ui_out) <do_message>: Add style parameter.
1711 * cli-out.c (cli_ui_out::do_message): Add style parameter. Call
1712 vfprintf_styled_no_gdbfmt.
1713 (cli_ui_out::do_field_string, cli_ui_out::do_spaces)
1714 (cli_ui_out::do_text, cli_ui_out::field_separator): Allow
1715 unfiltered output.
1716 * ui-style.h (struct ui_file_style) <ptr>: New method.
1717
1718 2019-10-01 Tom Tromey <tom@tromey.com>
1719
1720 * unittests/format_pieces-selftests.c: Update. Add final format.
1721 * gdbsupport/format.c (format_pieces::format_pieces): Don't add
1722 empty literal pieces.
1723
1724 2019-10-01 Tom Tromey <tom@tromey.com>
1725
1726 * ui-out.h (enum class ui_out_style_kind): Remove.
1727 (class ui_out) <field_string, field_stsream, do_field_string>:
1728 Change type of "style".
1729 * ui-out.c (ui_out::field_core_addr, ui_out::field_stream)
1730 (ui_out::field_string): Update.
1731 * tui/tui-out.h (class tui_ui_out) <do_field_string>: Change type
1732 of "style".
1733 * tui/tui-out.c (tui_ui_out::do_field_string): Update.
1734 * tracepoint.c (print_one_static_tracepoint_marker): Update.
1735 * stack.c (print_frame_arg, print_frame_info, print_frame):
1736 Update.
1737 * source.c (print_source_lines_base): Update.
1738 * solib.c (info_sharedlibrary_command): Update.
1739 * skip.c (info_skip_command): Update.
1740 * record-btrace.c (btrace_call_history_src_line)
1741 (btrace_call_history): Update.
1742 * python/py-framefilter.c (py_print_frame): Update.
1743 * mi/mi-out.h (class mi_ui_out) <do_field_string>: Change type of
1744 "style".
1745 * mi/mi-out.c (mi_ui_out::do_table_header)
1746 (mi_ui_out::do_field_signed, mi_ui_out::do_field_unsigned)
1747 (mi_ui_out::do_field_string): Update.
1748 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
1749 Update.
1750 * cli-out.h (class cli_ui_out) <do_field_string>: Change type of
1751 "style".
1752 * cli-out.c (cli_ui_out::do_table_header)
1753 (cli_ui_out::do_field_signed, cli_ui_out::do_field_unsigned)
1754 (cli_ui_out::do_field_skip, cli_ui_out::do_field_string)
1755 (cli_ui_out::do_field_fmt): Update.
1756 * breakpoint.c (print_breakpoint_location): Update.
1757 (update_static_tracepoint): Update.
1758
1759 2019-10-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1760
1761 * main.c (relocate_gdbinit_path_maybe_in_datadir): Remove std::string
1762 conversion of gdb_datadir.
1763 (captured_main_1): Remove xstrdup when assigning to gdb_datadir,
1764 remove not needed c_str ().
1765
1766 2019-09-30 Ali Tamur <tamur@google.com>
1767
1768 * dwarf2read.c (skip_one_die): Handle DW_FORM_strx forms.
1769 (dwarf2_string_attr): Likewise.
1770
1771 2019-09-30 Ali Tamur <tamur@google.com>
1772
1773 * dwarf2read.c (process_full_comp_unit): Remove whitespace at the EOL.
1774 (process_full_type_unit): Likewise.
1775 (dump_die_shallow): Likewise.
1776 (cu_debug_loc_section): Likewise.
1777
1778 2019-09-28 Christian Biesinger <cbiesinger@google.com>
1779
1780 * minsyms.c (compare_minimal_symbols): Rename to...
1781 (minimal_symbol_is_less_than): ...this, and adjust to STL
1782 conventions (return bool, take arguments as references)
1783 (minimal_symbol_reader::install): Call std::sort instead
1784 of qsort.
1785
1786 2019-09-29 Christian Biesinger <cbiesinger@google.com>
1787
1788 * minsyms.h (msymbol_hash): Document that this is a case-insensitive
1789 hash and why.
1790 * objfiles.h (struct objfile_per_bfd_storage) <demangled_names_hash,
1791 msymbol_hash, msymbol_demangled_hash>: Improve comments.
1792
1793 2019-09-30 Simon Marchi <simon.marchi@polymtl.ca>
1794
1795 * psymtab.c (add_psymbol_to_list): Move comment to psympriv.h.
1796 * psympriv.h (add_psymbol_to_list): Move comment here and update
1797 it.
1798
1799 2019-09-29 Tom de Vries <tdevries@suse.de>
1800
1801 * contrib/cc-with-tweaks.sh (get_tmpdir): New function.
1802 Use $tmpdir/$(basename "$output_file").dwz instead of
1803 "${output_file}.dwz".
1804
1805 2019-09-28 Simon Marchi <simon.marchi@polymtl.ca>
1806
1807 PR gdb/25045
1808 * hppa-linux-nat.c: Include gdbarch.h.
1809
1810 2019-09-26 Christian Biesinger <cbiesinger@google.com>
1811
1812 * blockframe.c (find_pc_partial_function): Change return type to bool.
1813 * elfread.c (elf_gnu_ifunc_resolve_name): Likewise.
1814 * minsyms.c (in_gnu_ifunc_stub): Likewise.
1815 (stub_gnu_ifunc_resolve_name): Likewise.
1816 * symtab.c (compare_filenames_for_search): Likewise.
1817 (compare_glob_filenames_for_search): Likewise.
1818 (matching_obj_sections): Likewise.
1819 (symbol_matches_domain): Likewise.
1820 (find_line_symtab): Change out param EXACT_MATCH to bool *.
1821 (find_line_pc): Change return type to bool.
1822 (find_line_pc_range): Likewise.
1823 (producer_is_realview): Likewise.
1824 * symtab.h (symbol_matches_domain): Likewise.
1825 (find_pc_partial_function): Likewise.
1826 (find_pc_line_pc_range): Likewise.
1827 (in_gnu_ifunc_stub): Likewise.
1828 (struct gnu_ifunc_fns) <gnu_ifunc_resolve_name>: Likewise.
1829 (find_line_pc): Likewise.
1830 (find_line_pc_range): Likewise.
1831 (matching_obj_sections): Likewise.
1832 (find_line_symtab): Change out parameter to bool.
1833 (producer_is_realview): Change return type to bool.
1834 (compare_filenames_for_search): Likewise.
1835 (compare_glob_filenames_for_search): Likewise.
1836
1837 2019-09-26 Tom Tromey <tom@tromey.com>
1838
1839 * Makefile.in (COMMON_SFILES): Remove gdb_usleep.c.
1840 (HFILES_NO_SRCDIR): Remove gdb_usleep.h.
1841 * gdb_usleep.h: Remove.
1842 * gdb_usleep.c: Remove.
1843 * utils.c: Don't include gdb_usleep.h.
1844
1845 2019-09-26 Tom Tromey <tromey@adacore.com>
1846
1847 * python/py-type.c (type_to_type_object): Call check_typedef
1848 for stub types.
1849
1850 2019-09-26 Tom Tromey <tom@tromey.com>
1851
1852 * utils.h (initialize_utils): Don't declare.
1853 * top.c (gdb_init): Don't call initialize_utils.
1854 * utils.c (initialize_utils): Remove. Move contents...
1855 (_initialize_utils): ... here.
1856
1857 2019-09-25 Tom Tromey <tom@tromey.com>
1858
1859 * python/py-objfile.c (objfpy_get_build_id): Use bin2hex.
1860 * utils.h (make_hex_string): Don't declare.
1861 * utils.c (make_hex_string): Remove.
1862
1863 2019-09-24 Tom de Vries <tdevries@suse.de>
1864
1865 PR gdb/23815
1866 * amd64-linux-nat.c (amd64_linux_nat_target::fetch_registers):
1867 Initialize xstateregs before ptrace PTRACE_GETREGSET call.
1868
1869 2019-09-23 Dimitar Dimitrov <dimitar@dinux.eu>
1870
1871 * NEWS: Mention new simulator port for PRU.
1872
1873 2019-09-23 Christian Biesinger <cbiesinger@google.com>
1874
1875 * ada-exp.y (write_object_remaining): Update.
1876 * ada-lang.c (ada_decode): Return a std::string instead of a char*
1877 and eliminate the static buffer.
1878 (ada_decode_symbol): Update.
1879 (ada_la_decode): Update.
1880 (ada_sniff_from_mangled_name): Update.
1881 (is_valid_name_for_wild_match): Update.
1882 (ada_lookup_name_info::matches): Update and simplify.
1883 (name_matches_regex): Update.
1884 (ada_add_global_exceptions): Update.
1885 * ada-lang.h (ada_decode): Update signature.
1886 * ada-varobj.c (ada_varobj_describe_simple_array_child): Update.
1887 * dwarf-index-write.c (debug_names::insert): Update.
1888
1889 2019-09-21 Simon Marchi <simon.marchi@polymtl.ca>
1890
1891 * solib-svr4.c (svr4_iterate_over_objfiles_in_search_order): Fix
1892 formatting.
1893
1894 2019-09-21 Simon Marchi <simon.marchi@polymtl.ca>
1895
1896 * breakpoint.h (bp_location) <inserted, permanent, duplicate>:
1897 Change "nonzero" to "true" in documentation.
1898
1899 2019-09-20 Christian Biesinger <cbiesinger@google.com>
1900
1901 * solib-darwin.c (darwin_lookup_lib_symbol): Remove.
1902 (_initialize_darwin_solib): Don't set
1903 darwin_so_ops.lookup_lib_global_symbol.
1904 * solib-svr4.c (set_solib_svr4_fetch_link_map_offsets): Call
1905 set_gdbarch_iterate_over_objfiles_in_search_order.
1906 (elf_lookup_lib_symbol): Rename to...
1907 (svr4_iterate_over_objfiles_in_search_order): this, and update
1908 to iterate semantics.
1909 (_initialize_svr4_solib): Don't set lookup_lib_global_symbol.
1910 * solib.c (solib_global_lookup): Remove.
1911 * solist.h (struct target_so_ops): Remove lookup_lib_global_symbol.
1912 (solib_global_lookup): Remove.
1913 * symtab.c (lookup_global_or_static_symbol): Remove call to
1914 solib_global_lookup.
1915
1916 2019-09-20 Joel Brobecker <brobecker@adacore.com>
1917
1918 * NEWS: Move entries about default MI version now being
1919 version 3, and about the GDB/MI fix for multi-location
1920 breakpoints to the "since GDB 8.3" section.
1921
1922 2019-09-20 Joel Brobecker <brobecker@adacore.com>
1923
1924 GDB 8.3.1 released.
1925
1926 2019-09-20 Ulrich Weigand <uweigand@de.ibm.com>
1927
1928 * NEWS: Mention that Cell/B.E. debugging support was removed.
1929 * MAINTAINERS: Remove spu target.
1930
1931 * config/djgpp/fnchange.lst: Remove entries for removed files.
1932
1933 * Makefile.in (ALL_TARGET_OBS): Remove solib-spu.o,
1934 spu-multiarch.o, and spu-tdep.o.
1935 (HFILES_NO_SRCDIR): Remove solib-spu.h and spu-tdep.h.
1936 (ALLDEPFILES): Remove solib-spu.c, spu-linux-nat.c,
1937 spu-multiarch.c, and spu-tdep.c.
1938 * spu-linux-nat.c: Remove file.
1939 * spu-multiarch.c: Remove file.
1940 * spu-tdep.c: Remove file.
1941 * spu-tdep.h: Remove file.
1942 * solib-spu.c: Remove file.
1943 * solib-spu.h: Remove file.
1944
1945 * configure.host (powerpc64*-*-linux*): Remove Cell/B.E. support.
1946 * configure.nat (spu-linux): Remove.
1947 * configure.tgt (powerpc*-*-linux*): Remove solib-spu.o and
1948 solib-multiarch.o from gdb_target_obs.
1949 (spu*-*-*): Remove.
1950
1951 * arch/ppc-linux-common.h (struct ppc_linux_features): Remove "cell"
1952 feature flag.
1953 (ppc_linux_no_features): Update.
1954 * arch/ppc-linux-common.c (ppc_linux_match_description): Remove
1955 Cell/B.E. support.
1956 * arch/ppc-linux-tdesc.h (tdesc_powerpc_cell32l): Remove declaration.
1957 (tdesc_powerpc_cell64l): Likewise.
1958 * nat/ppc-linux.h (PPC_FEATURE_CELL): Remove.
1959 * ppc-linux-nat.c (ppc_linux_nat_target::read_description): Remove
1960 Cell/B.E. support.
1961 * ppc-linux-tdep.h: Do not include "solib-spu.h" or "spu-tdep.h".
1962 Do not include "features/rs6000/powerpc-cell32l.c" or
1963 "features/rs6000/powerpc-cell64l.c".
1964 (ppc_linux_spu_section): Remove.
1965 (ppc_linux_core_read_description): Remove Cell/B.E. support.
1966 (spe_context_objfile, spe_context_lm_addr, spe_context_offset,
1967 spe_context_cache_ptid, spe_context_cache_ptid): Remove.
1968 (ppc_linux_spe_context_lookup): Remove.
1969 (ppc_linux_spe_context_inferior_created): Remove.
1970 (ppc_linux_spe_context_solib_loaded): Remove.
1971 (ppc_linux_spe_context_solib_unloaded): Remove.
1972 (ppc_linux_spe_context): Remove.
1973 (struct ppu2spu_cache): Remove.
1974 (ppu2spu_prev_arch, ppu2spu_this_id, ppu2spu_prev_register): Remove.
1975 (struct ppu2spu_data): Remove.
1976 (ppu2spu_unwind_register, ppu2spu_sniffer, ppu2spu_dealloc_cache,
1977 ppu2spu_unwind): Remove.
1978 (ppc_linux_init_abi): Remove Cell/B.E. support.
1979 * rs6000-tdep.h (rs6000_gdbarch_init): Remove Cell/B.E. support.
1980
1981 * features/Makefile (rs6000/powerpc-cell32l-expedite): Remove.
1982 (rs6000/powerpc-cell64l-expedite): Likewise
1983 (WHICH): Remove rs6000/powerpc-cell32l and rs6000/powerpc-cell64l.
1984 (XMLTOC): Remove rs6000/powerpc-cell32l.xml and
1985 rs6000/powerpc-cell64l.xml.
1986 * features/rs6000/powerpc-cell32l.xml: Remove.
1987 * features/rs6000/powerpc-cell64l.xml: Likewise.
1988 * features/rs6000/powerpc-cell32l.c: Remove generated file.
1989 * features/rs6000/powerpc-cell64l.c: Likewise.
1990 * regformats/rs6000/powerpc-cell32l.dat: Remove generated file.
1991 * regformats/rs6000/powerpc-cell64l.dat: Likewise.
1992 * regformats/reg-spu.dat: Remove.
1993
1994 * target.h (enum target_object): Remove TARGET_OBJECT_SPU.
1995 * corelow.c (struct spuid_list): Remove.
1996 (add_to_spuid_list): Remove.
1997 (core_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
1998 * remote.c (PACKET_qXfer_spu_read, PACKET_qXfer_spu_write): Remove.
1999 (remote_protocol_features): Remove associated entries.
2000 (_initialize_remote): No longer initialize them.
2001 (remote_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
2002 * linux-nat.c (SPUFS_MAGIC): Remove.
2003 (linux_proc_xfer_spu): Remove.
2004 (spu_enumerate_spu_ids): Remove.
2005 (linux_nat_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
2006 * linux-tdep.c (-linux_spu_make_corefile_notes): Remove.
2007 (linux_make_corefile_notes): No longer call it.
2008
2009 * regcache.c (cooked_read_test): Remove bfd_arch_spu special case.
2010 (cooked_write_test): Likewise.
2011
2012 2019-09-20 Tom Tromey <tom@tromey.com>
2013
2014 * NEWS: Mention case-sensitivity of TUI commands.
2015 * tui/tui-win.c (tui_set_focus_command): Now case-sensitive.
2016 (tui_set_win_height_command, parse_scrolling_args): Likewise.
2017 * tui/tui-layout.c (tui_layout_command): Now case-sensitive.
2018
2019 2019-09-20 Tom Tromey <tom@tromey.com>
2020
2021 * tui/tui-source.c (tui_source_window::set_contents): Use
2022 make_unique_xstrdup.
2023 * tui/tui-disasm.c (tui_disasm_window::set_contents): Use
2024 make_unique_xstrdup.
2025
2026 2019-09-20 Tom Tromey <tom@tromey.com>
2027
2028 * tui/tui-data.c: Remove separator comments.
2029 * tui/tui-layout.c: Remove separator comments.
2030 * tui/tui-win.c: Remove separator comments.
2031 * tui/tui-wingeneral.c: Remove separator comments.
2032
2033 2019-09-20 Tom Tromey <tom@tromey.com>
2034
2035 * tui/tui.h (strcat_to_buf): Don't declare.
2036 * tui/tui.c (strcat_to_buf): Remove.
2037
2038 2019-09-20 Tom Tromey <tom@tromey.com>
2039
2040 * tui/tui-source.h (struct tui_source_window) <m_fullname>: Rename
2041 from "fullname".
2042 * tui/tui-source.c (tui_source_window::set_contents)
2043 (tui_source_window::location_matches_p)
2044 (tui_source_window::maybe_update): Update.
2045
2046 2019-09-20 Tom Tromey <tom@tromey.com>
2047
2048 * tui/tui-regs.h (struct tui_data_window) <get_current_group>:
2049 Update.
2050 <m_regs_content, m_regs_column_count, m_current_group>: Add "m_"
2051 prefix.
2052 * tui/tui-regs.c (tui_data_window::last_regs_line_no)
2053 (tui_data_window::line_from_reg_element_no)
2054 (tui_data_window::first_reg_element_no_inline)
2055 (tui_data_window::show_registers)
2056 (tui_data_window::show_register_group)
2057 (tui_data_window::display_registers_from)
2058 (tui_data_window::display_registers_from_line)
2059 (tui_data_window::first_data_item_displayed)
2060 (tui_data_window::delete_data_content_windows)
2061 (tui_data_window::erase_data_content)
2062 (tui_data_window::do_scroll_vertical)
2063 (tui_data_window::refresh_window)
2064 (tui_data_window::check_register_values): Update.
2065
2066 2019-09-20 Tom Tromey <tom@tromey.com>
2067
2068 * tui/tui-stack.h (MAX_LOCATOR_ELEMENT_LEN): Remove define.
2069 (struct tui_locator_window) <full_name, proc_name>: Now
2070 std::string.
2071 * tui/tui-stack.c (tui_locator_window::make_status_line)
2072 (tui_locator_window::set_locator_fullname)
2073 (tui_locator_window::set_locator_info): Update.
2074 * tui/tui-source.c (tui_source_window::set_contents)
2075 (tui_source_window::showing_source_p): Update.
2076
2077 2019-09-20 Tom Tromey <tom@tromey.com>
2078
2079 * tui/tui-stack.c (tui_locator_window::set_locator_fullname):
2080 Don't call tui_locator_win_info_ptr.
2081
2082 2019-09-20 Tom Tromey <tom@tromey.com>
2083
2084 * tui/tui-win.c (tui_resize_all): Don't call refresh.
2085
2086 2019-09-20 Tom Tromey <tom@tromey.com>
2087
2088 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Use 1 as
2089 height for locator.
2090 * tui/tui-stack.c (tui_locator_window::rerender): Call scrollok.
2091 * tui/tui-layout.c (show_source_disasm_command, show_data)
2092 (show_source_or_disasm_and_command): Use 1 as height for locator.
2093
2094 2019-09-20 Tom Tromey <tom@tromey.com>
2095
2096 * tui/tui.c (tui_enable): Update.
2097 * tui/tui-win.c (tui_sigwinch_handler, tui_async_resize_screen):
2098 Update.
2099 * tui/tui-data.h (tui_win_resized, tui_set_win_resized_to):
2100 Update.
2101 * tui/tui-data.c (win_resized): Now bool.
2102 (tui_win_resized): Return bool.
2103 (tui_set_win_resized_to): Accept a bool.
2104
2105 2019-09-20 Tom Tromey <tom@tromey.com>
2106
2107 * tui/tui-regs.h (struct tui_data_window) <show_register_group>:
2108 Change type of "refresh_values_only".
2109 * tui/tui-regs.c (tui_data_window::show_register_group): Change
2110 type of "refresh_values_only".
2111
2112 2019-09-20 Tom Tromey <tom@tromey.com>
2113
2114 * tui/tui-disasm.c (struct tui_asm_line) <addr_string, insn>: Now
2115 std::string.
2116 (tui_disassemble): Add "pos" parameter.
2117 (tui_disasm_window::set_contents): Simplify.
2118
2119 2019-09-20 Tom Tromey <tom@tromey.com>
2120
2121 * tui/tui-winsource.h (struct tui_source_window_base)
2122 <show_source_content>: Now private.
2123 * tui/tui-winsource.c
2124 (tui_source_window_base::show_source_content): Don't handle empty
2125 content case.
2126
2127 2019-09-20 Tom Tromey <tom@tromey.com>
2128
2129 * tui/tui-layout.c (show_source_disasm_command)
2130 (show_source_or_disasm_and_command): Don't call
2131 show_source_content.
2132
2133 2019-09-20 Tom Tromey <tom@tromey.com>
2134
2135 * tui/tui-stack.h (struct tui_locator_window) <make_status_line>:
2136 Declare.
2137 * tui/tui-stack.c (tui_locator_window::make_status_line): Rename
2138 from tui_make_status_line.
2139 (tui_locator_window::rerender): Update.
2140
2141 2019-09-20 Tom Tromey <tom@tromey.com>
2142
2143 * tui/tui-stack.c (tui_make_status_line): Return std::string.
2144 (tui_locator_window::rerender): Update.
2145
2146 2019-09-20 Tom Tromey <tom@tromey.com>
2147
2148 * tui/tui-winsource.h (struct tui_source_window_base)
2149 <~tui_source_window_base>: Don't declare.
2150 <fullname>: Remove.
2151 * tui/tui-winsource.c (~tui_source_window_base): Remove.
2152 * tui/tui-source.h (struct tui_source_window) <fullname>: New
2153 member.
2154 * tui/tui-source.c (tui_source_window::set_contents): Update.
2155 (tui_source_window::location_matches_p)
2156 (tui_source_window::maybe_update): Update.
2157
2158 2019-09-20 Tom Tromey <tom@tromey.com>
2159
2160 * tui/tui-winsource.h (~tui_source_element): Remove.
2161 (tui_source_element): Update.
2162 (struct tui_source_element) <line>: Now a unique_xmalloc_ptr.
2163 * tui/tui-winsource.c (tui_show_source_line): Update.
2164 * tui/tui-source.c (tui_source_window::set_contents): Update.
2165 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
2166
2167 2019-09-20 Tom Tromey <tom@tromey.com>
2168
2169 * tui/tui-data.h (tui_clear_source_windows_detail): Don't
2170 declare.
2171 * tui/tui-layout.c (tui_add_win_to_layout): Don't call
2172 tui_clear_source_windows_detail.
2173 * tui/tui-winsource.h (struct tui_source_window_base)
2174 <clear_detail>: Don't declare.
2175 * tui/tui-winsource.c (tui_source_window_base::clear_detail):
2176 Remove.
2177 * tui/tui-data.c (tui_clear_source_windows_detail): Remove.
2178
2179 2019-09-20 Tom Tromey <tromey@adacore.com>
2180
2181 PR ada/24919:
2182 * block.c (contained_in): Fix final return value.
2183
2184 2019-09-20 Alan Modra <amodra@gmail.com>
2185
2186 * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Use bfd_set_usrdata.
2187 * dwarf2read.c (dwarf2_read_gdb_index, dwarf2_read_debug_names),
2188 (read_indirect_string_from_dwz): Use bfd accessor.
2189 * dwarf2read.h (struct dwz_file <filename>): Likewise.
2190 * machoread.c (macho_symfile_read_all_oso): Likewise.
2191 * solib.c (solib_bfd_open): Likewise.
2192
2193 2019-09-19 Christian Biesinger <cbiesinger@google.com>
2194
2195 * eval.c: Move declaration of overload_resolution to...
2196 * value.h: ...here.
2197
2198 2019-09-19 Christian Biesinger <cbiesinger@google.com>
2199
2200 * arm-linux-nat.c: Remove extern declaration for arm_apcs_32.
2201 * arm-linux-tdep.c: Likewise.
2202 * arm-nbsd-nat.c: Likewise.
2203 * arm-tdep.h: Declare arm_apcs_32.
2204 * arm-tdep.c: Move documentation for arm_apcs_32 to arm-tdep.h.
2205
2206 2019-09-19 Christian Biesinger <cbiesinger@google.com>
2207
2208 * dwarf2loc.c: Remove extern declaration of dwarf_always_disassemble.
2209 * dwarf2read.h: Declare dwarf_always_disassemble.
2210
2211 2019-09-19 Tom de Vries <tdevries@suse.de>
2212
2213 PR gdb/25009
2214 * source-cache.c (source_cache::ensure): Catch exception thrown during
2215 construction of the highlighter.
2216
2217 2019-09-18 Alan Modra <amodra@gmail.com>
2218
2219 * aarch64-linux-tdep.c, * arm-tdep.c, * auto-load.c,
2220 * coff-pe-read.c, * coffread.c, * corelow.c, * dbxread.c,
2221 * dicos-tdep.c, * dwarf2-frame.c, * dwarf2read.c, * elfread.c,
2222 * exec.c, * fbsd-tdep.c, * gcore.c, * gdb_bfd.c, * gdb_bfd.h,
2223 * hppa-tdep.c, * i386-cygwin-tdep.c, * i386-fbsd-tdep.c,
2224 * i386-linux-tdep.c, * jit.c, * linux-tdep.c, * machoread.c,
2225 * maint.c, * mdebugread.c, * minidebug.c, * mips-linux-tdep.c,
2226 * mips-sde-tdep.c, * mips-tdep.c, * mipsread.c, * nto-tdep.c,
2227 * objfiles.c, * objfiles.h, * osabi.c, * ppc-linux-tdep.c,
2228 * ppc64-tdep.c, * record-btrace.c, * record-full.c, * remote.c,
2229 * rs6000-aix-tdep.c, * rs6000-tdep.c, * s390-linux-tdep.c,
2230 * s390-tdep.c, * solib-aix.c, * solib-dsbt.c, * solib-frv.c,
2231 * solib-spu.c, * solib-svr4.c, * solib-target.c,
2232 * spu-linux-nat.c, * spu-tdep.c, * symfile-mem.c, * symfile.c,
2233 * symmisc.c, * symtab.c, * target.c, * windows-nat.c,
2234 * xcoffread.c, * cli/cli-dump.c, * compile/compile-object-load.c,
2235 * mi/mi-interp.c: Update throughout for bfd section macro and
2236 function changes.
2237 * gcore (gcore_create_callback): Use bfd_set_section_lma.
2238 * spu-tdep.c (spu_overlay_new_objfile): Likewise.
2239
2240 2019-09-18 Tom Tromey <tom@tromey.com>
2241
2242 * NEWS: Add entry.
2243 * tui/tui.c (tui_initialize_readline): Set name of keymap. Do not
2244 call rl_initialize.
2245 (tui_enable): Do not call rl_initialize.
2246
2247 2019-09-18 Christian Groessler <chris@groessler.org>
2248
2249 * alpha-linux-nat.c: Include gdbarch.h.
2250
2251 2019-09-18 Simon Marchi <simon.marchi@polymtl.ca>
2252
2253 * ui-file.c: Include cli/cli-style.h.
2254 (term_cli_styling): Remove cli_styling declaration.
2255
2256 2019-09-18 Alan Modra <amodra@gmail.com>
2257
2258 * arm-tdep.c (arm_record_special_symbol): Update bfd_get_section
2259 to bfd_asymbol_section.
2260
2261 2019-09-18 Alan Modra <amodra@gmail.com>
2262
2263 * amd64-dicos-tdep.c (amd64_dicos_osabi_sniffer): Constify target.
2264 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
2265 * i386-dicos-tdep.c (i386_dicos_osabi_sniffer): Likewise.
2266
2267 2019-09-18 Alan Modra <amodra@gmail.com>
2268
2269 * solib-spu.c (spu_bfd_open): Use bfd_set_filename.
2270 * spu-linux-nat.c (spu_bfd_open): Likewise.
2271
2272 2019-09-18 Christian Biesinger <cbiesinger@google.com>
2273
2274 * dwarf2loc.c: Change extern declaration of dwarf_always_disassemble
2275 to bool to match definition in dwarf2read.c.
2276
2277 2019-09-17 Christian Biesinger <cbiesinger@google.com>
2278
2279 * ada-lang.c (ada_ignore_descriptive_types_p): Change to bool.
2280 (print_signatures): Likewise.
2281 (trust_pad_over_xvs): Likewise.
2282 * arch/aarch64-insn.c (aarch64_debug): Likewise.
2283 * arch/aarch64-insn.h (aarch64_debug): Likewise.
2284 * arm-linux-nat.c (arm_apcs_32): Likewise.
2285 * arm-linux-tdep.c (arm_apcs_32): Likewise.
2286 * arm-nbsd-nat.c (arm_apcs_32): Likewise.
2287 * arm-tdep.c (arm_debug): Likewise.
2288 (arm_apcs_32): Likewise.
2289 * auto-load.c (debug_auto_load): Likewise.
2290 (auto_load_gdb_scripts): Likewise.
2291 (global_auto_load): Likewise.
2292 (auto_load_local_gdbinit): Likewise.
2293 (auto_load_local_gdbinit_loaded): Likewise.
2294 * auto-load.h (global_auto_load): Likewise.
2295 (auto_load_local_gdbinit): Likewise.
2296 (auto_load_local_gdbinit_loaded): Likewise.
2297 * breakpoint.c (disconnected_dprintf): Likewise.
2298 (breakpoint_proceeded): Likewise.
2299 (automatic_hardware_breakpoints): Likewise.
2300 (always_inserted_mode): Likewise.
2301 (target_exact_watchpoints): Likewise.
2302 (_initialize_breakpoint): Update.
2303 * breakpoint.h (target_exact_watchpoints): Change to bool.
2304 * btrace.c (maint_btrace_pt_skip_pad): Likewise.
2305 * cli/cli-cmds.c (trace_commands): Likewise.
2306 * cli/cli-cmds.h (trace_commands): Likewise.
2307 * cli/cli-decode.c (add_setshow_boolean_cmd): Change int* argument
2308 to bool*.
2309 * cli/cli-logging.c (logging_overwrite): Change to bool.
2310 (logging_redirect): Likewise.
2311 (debug_redirect): Likewise.
2312 * cli/cli-option.h (option_def) <boolean>: Change return type to bool*.
2313 (struct boolean_option_def) <get_var_address_cb_>: Change return type
2314 to bool.
2315 <boolean_option_def>: Update.
2316 (struct flag_option_def): Change default type of Context to bool
2317 from int.
2318 <flag_option_def>: Change return type of var_address_cb_ to bool*.
2319 * cli/cli-setshow.c (do_set_command): Cast to bool* instead of int*.
2320 (get_setshow_command_value_string): Likewise.
2321 * cli/cli-style.c (cli_styling): Change to bool.
2322 (source_styling): Likewise.
2323 * cli/cli-style.h (source_styling): Likewise.
2324 (cli_styling): Likewise.
2325 * cli/cli-utils.h (struct qcs_flags) <quiet, cont, silent>: Change
2326 to bool.
2327 * command.h (var_types): Update comment.
2328 (add_setshow_boolean_cmd): Change int* var argument to bool*.
2329 * compile/compile-cplus-types.c (debug_compile_cplus_types): Change to
2330 bool.
2331 (debug_compile_cplus_scopes): Likewise.
2332 * compile/compile-internal.h (compile_debug): Likewise.
2333 * compile/compile.c (compile_debug): Likewise.
2334 (struct compile_options) <raw>: Likewise.
2335 * cp-support.c (catch_demangler_crashes): Likewise.
2336 * cris-tdep.c (usr_cmd_cris_version_valid): Likewise.
2337 (usr_cmd_cris_dwarf2_cfi): Likewise.
2338 * csky-tdep.c (csky_debug): Likewise.
2339 * darwin-nat.c (enable_mach_exceptions): Likewise.
2340 * dcache.c (dcache_enabled_p): Likewise.
2341 * defs.h (info_verbose): Likewise.
2342 * demangle.c (demangle): Likewise.
2343 (asm_demangle): Likewise.
2344 * dwarf-index-cache.c (debug_index_cache): Likewise.
2345 * dwarf2-frame.c (dwarf2_frame_unwinders_enabled_p): Likewise.
2346 * dwarf2-frame.h (dwarf2_frame_unwinders_enabled_p): Likewise.
2347 * dwarf2read.c (check_physname): Likewise.
2348 (use_deprecated_index_sections): Likewise.
2349 (dwarf_always_disassemble): Likewise.
2350 * eval.c (overload_resolution): Likewise.
2351 * event-top.c (set_editing_cmd_var): Likewise.
2352 (exec_done_display_p): Likewise.
2353 * event-top.h (set_editing_cmd_var): Likewise.
2354 (exec_done_display_p): Likewise.
2355 * exec.c (write_files): Likewise.
2356 * fbsd-nat.c (debug_fbsd_lwp): Likewise
2357 (debug_fbsd_nat): Likewise.
2358 * frame.h (struct frame_print_options) <print_raw_frame_arguments>:
2359 Likewise.
2360 (struct set_backtrace_options) <backtrace_past_main>: Likewise.
2361 <backtrace_past_entry> Likewise.
2362 * gdb-demangle.h (demangle): Likewise.
2363 (asm_demangle): Likewise.
2364 * gdb_bfd.c (bfd_sharing): Likewise.
2365 * gdbcore.h (write_files): Likewise.
2366 * gdbsupport/common-debug.c (show_debug_regs): Likewise.
2367 * gdbsupport/common-debug.h (show_debug_regs): Likewise.
2368 * gdbthread.h (print_thread_events): Likewise.
2369 * gdbtypes.c (opaque_type_resolution): Likewise.
2370 (strict_type_checking): Likewise.
2371 * gnu-nat.c (gnu_debug_flag): Likewise.
2372 * guile/scm-auto-load.c (auto_load_guile_scripts): Likewise.
2373 * guile/scm-param.c (pascm_variable): Add boolval.
2374 (add_setshow_generic): Update.
2375 (pascm_param_value): Update.
2376 (pascm_set_param_value_x): Update.
2377 * hppa-tdep.c (hppa_debug): Change to bool..
2378 * infcall.c (may_call_functions_p): Likewise.
2379 (coerce_float_to_double_p): Likewise.
2380 (unwind_on_signal_p): Likewise.
2381 (unwind_on_terminating_exception_p): Likewise.
2382 * infcmd.c (startup_with_shell): Likewise.
2383 * inferior.c (print_inferior_events): Likewise.
2384 * inferior.h (startup_with_shell): Likewise.
2385 (print_inferior_events): Likewise.
2386 * infrun.c (step_stop_if_no_debug): Likewise.
2387 (detach_fork): Likewise.
2388 (debug_displaced): Likewise.
2389 (disable_randomization): Likewise.
2390 (non_stop): Likewise.
2391 (non_stop_1): Likewise.
2392 (observer_mode): Likewise.
2393 (observer_mode_1): Likewise.
2394 (set_observer_mode): Update.
2395 (sched_multi): Change to bool.
2396 * infrun.h (debug_displaced): Likewise.
2397 (sched_multi): Likewise.
2398 (step_stop_if_no_debug): Likewise.
2399 (non_stop): Likewise.
2400 (disable_randomization): Likewise.
2401 * linux-tdep.c (use_coredump_filter): Likewise.
2402 (dump_excluded_mappings): Likewise.
2403 * linux-thread-db.c (auto_load_thread_db): Likewise.
2404 (check_thread_db_on_load): Likewise.
2405 * main.c (captured_main_1): Update.
2406 * maint-test-options.c (struct test_options_opts) <flag_opt, xx1_opt,
2407 xx2_opt, boolean_opt>: Change to bool.
2408 * maint-test-settings.c (maintenance_test_settings_boolean): Likewise.
2409 * maint.c (maintenance_profile_p): Likewise.
2410 (per_command_time): Likewise.
2411 (per_command_space): Likewise.
2412 (per_command_symtab): Likewise.
2413 * memattr.c (inaccessible_by_default): Likewise.
2414 * mi/mi-main.c (mi_async): Likewise.
2415 (mi_async_1): Likewise.
2416 * mips-tdep.c (mips64_transfers_32bit_regs_p): Likewise.
2417 * nat/fork-inferior.h (startup_with_shell): Likewise.
2418 * nat/linux-namespaces.c (debug_linux_namespaces): Likewise.
2419 * nat/linux-namespaces.h (debug_linux_namespaces): Likewise.
2420 * nios2-tdep.c (nios2_debug): Likewise.
2421 * or1k-tdep.c (or1k_debug): Likewise.
2422 * parse.c (parser_debug): Likewise.
2423 * parser-defs.h (parser_debug): Likewise.
2424 * printcmd.c (print_symbol_filename): Likewise.
2425 * proc-api.c (procfs_trace): Likewise.
2426 * python/py-auto-load.c (auto_load_python_scripts): Likewise.
2427 * python/py-param.c (union parmpy_variable): Add "bool boolval" field.
2428 (set_parameter_value): Update.
2429 (add_setshow_generic): Update.
2430 * python/py-value.c (copy_py_bool_obj): Change argument from int*
2431 to bool*.
2432 * python/python.c (gdbpy_parameter_value): Cast to bool* instead of
2433 int*.
2434 * ravenscar-thread.c (ravenscar_task_support): Change to bool.
2435 * record-btrace.c (record_btrace_target::store_registers): Update.
2436 * record-full.c (record_full_memory_query): Change to bool.
2437 (record_full_stop_at_limit): Likewise.
2438 * record-full.h (record_full_memory_query): Likewise.
2439 * remote-notif.c (notif_debug): Likewise.
2440 * remote-notif.h (notif_debug): Likewise.
2441 * remote.c (use_range_stepping): Likewise.
2442 (interrupt_on_connect): Likewise.
2443 (remote_break): Likewise.
2444 * ser-tcp.c (tcp_auto_retry): Likewise.
2445 * ser-unix.c (serial_hwflow): Likewise.
2446 * skip.c (debug_skip): Likewise.
2447 * solib-aix.c (solib_aix_debug): Likewise.
2448 * spu-tdep.c (spu_stop_on_load_p): Likewise.
2449 (spu_auto_flush_cache_p): Likewise.
2450 * stack.c (struct backtrace_cmd_options) <full, no_filters, hide>:
2451 Likewise.
2452 (struct info_print_options) <quiet>: Likewise.
2453 * symfile-debug.c (debug_symfile): Likewise.
2454 * symfile.c (auto_solib_add): Likewise.
2455 (separate_debug_file_debug): Likewise.
2456 * symfile.h (auto_solib_add): Likewise.
2457 (separate_debug_file_debug): Likewise.
2458 * symtab.c (basenames_may_differ): Likewise.
2459 (struct filename_partial_match_opts) <dirname, basename>: Likewise.
2460 (struct info_print_options) <quiet, exclude_minsyms>: Likewise.
2461 (struct info_types_options) <quiet>: Likewise.
2462 * symtab.h (demangle): Likewise.
2463 (basenames_may_differ): Likewise.
2464 * target-dcache.c (stack_cache_enabled_1): Likewise.
2465 (code_cache_enabled_1): Likewise.
2466 * target.c (trust_readonly): Likewise.
2467 (may_write_registers): Likewise.
2468 (may_write_memory): Likewise.
2469 (may_insert_breakpoints): Likewise.
2470 (may_insert_tracepoints): Likewise.
2471 (may_insert_fast_tracepoints): Likewise.
2472 (may_stop): Likewise.
2473 (auto_connect_native_target): Likewise.
2474 (target_stop_and_wait): Update.
2475 (target_async_permitted): Change to bool.
2476 (target_async_permitted_1): Likewise.
2477 (may_write_registers_1): Likewise.
2478 (may_write_memory_1): Likewise.
2479 (may_insert_breakpoints_1): Likewise.
2480 (may_insert_tracepoints_1): Likewise.
2481 (may_insert_fast_tracepoints_1): Likewise.
2482 (may_stop_1): Likewise.
2483 * target.h (target_async_permitted): Likewise.
2484 (may_write_registers): Likewise.
2485 (may_write_memory): Likewise.
2486 (may_insert_breakpoints): Likewise.
2487 (may_insert_tracepoints): Likewise.
2488 (may_insert_fast_tracepoints): Likewise.
2489 (may_stop): Likewise.
2490 * thread.c (struct info_threads_opts) <show_global_ids>: Likewise.
2491 (make_thread_apply_all_options_def_group): Change argument from int*
2492 to bool*.
2493 (thread_apply_all_command): Update.
2494 (print_thread_events): Change to bool.
2495 * top.c (confirm): Likewise.
2496 (command_editing_p): Likewise.
2497 (history_expansion_p): Likewise.
2498 (write_history_p): Likewise.
2499 (info_verbose): Likewise.
2500 * top.h (confirm): Likewise.
2501 (history_expansion_p): Likewise.
2502 * tracepoint.c (disconnected_tracing): Likewise.
2503 (circular_trace_buffer): Likewise.
2504 * typeprint.c (print_methods): Likewise.
2505 (print_typedefs): Likewise.
2506 * utils.c (debug_timestamp): Likewise.
2507 (sevenbit_strings): Likewise.
2508 (pagination_enabled): Likewise.
2509 * utils.h (sevenbit_strings): Likewise.
2510 (pagination_enabled): Likewise.
2511 * valops.c (overload_resolution): Likewise.
2512 * valprint.h (struct value_print_options) <prettyformat_arrays,
2513 prettyformat_structs, vtblprint, unionprint, addressprint, objectprint,
2514 stop_print_at_null, print_array_indexes, deref_ref, static_field_print,
2515 pascal_static_field_print, raw, summary, symbol_print, finish_print>:
2516 Likewise.
2517 * windows-nat.c (new_console): Likewise.
2518 (cygwin_exceptions): Likewise.
2519 (new_group): Likewise.
2520 (debug_exec): Likewise.
2521 (debug_events): Likewise.
2522 (debug_memory): Likewise.
2523 (debug_exceptions): Likewise.
2524 (useshell): Likewise.
2525 * windows-tdep.c (maint_display_all_tib): Likewise.
2526 * xml-support.c (debug_xml): Likewise.
2527
2528 2019-09-17 Mike Gulick <mgulick@mathworks.com>
2529
2530 * source.c (prepare_path_for_appending): New function.
2531 (openp): Make use of new function.
2532 (find_and_open_source): Search for the compilation directory and
2533 source file as a relative path beneath the directory search path.
2534
2535 2019-09-17 Andrew Burgess <andrew.burgess@embecosm.com>
2536
2537 * source-cache.c (source_cache::get_line_charpos): Catch
2538 exceptions and return false, this matches the behaviour documented
2539 in the header file.
2540
2541 2019-09-17 Joel Brobecker <brobecker@adacore.com>
2542
2543 * ada-tasks.c (info_task): Remove quoting of the task's name.
2544
2545 2019-09-16 Christian Biesinger <cbiesinger@google.com>
2546
2547 * symfile.c (auto_solib_add): Replace comment with a reference
2548 to the header file.
2549
2550 2019-09-14 Christian Biesinger <cbiesinger@google.com>
2551
2552 * NEWS: Mention that gdb can now be compiled with Python 3
2553 on Windows.
2554
2555 2019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
2556
2557 * maint.c (maint_print_section_data::maint_print_section_data):
2558 Force use of 'float log10 (float)' by casting the argument to
2559 float.
2560
2561 2019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
2562
2563 * maint.c: Add 'cmath' include.
2564 (struct maint_print_section_data): New structure.
2565 (print_section_index): New function.
2566 (print_bfd_section_info): Add header comment, small whitespace
2567 cleanup, and update to call new print_section_index function.
2568 (print_objfile_section_info): Likewise.
2569 (maint_obj_section_from_bfd_section): New function.
2570 (print_bfd_section_info_maybe_relocated): New function.
2571 (maintenance_info_sections): Add header comment, always use
2572 bfd_map_over_sections instead of ALL_OBJFILE_OSECTIONS.
2573
2574 2019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
2575
2576 * psymtab.c (find_pc_sect_psymtab): Move baseaddr local into more
2577 inner scope, add check that the objfile has psymtabs before
2578 checking psymtabs_addrmap.
2579 * psymtab.h (psymtab_storage) <psymtabs_addrmap>: Extend comment.
2580
2581 2019-09-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2582
2583 * NEWS: Announce that Ada task names are now shown at more places,
2584 and between quotes (except in info task output).
2585 * gdb/ada-tasks.c (task_to_str): New function.
2586 (display_current_task_id): Call task_to_str.
2587 (task_command_1): Likewise.
2588 (print_ada_task_info): In non-mi mode, Properly align headers and data
2589 when task-id length is > 9 (9 is the default for a 32 bits CORE_ADDR).
2590
2591 2019-09-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2592
2593 * procfs.c (procfs_target::wait) <PR_FAULTED>: Get signal from
2594 prstatus.pr_lwp.pr_info instead of making it up.
2595
2596 2019-09-11 Christian Biesinger <cbiesinger@google.com>
2597
2598 * auto-load.c (auto_load_expand_dir_vars): Update.
2599 * defs.h (gdb_datadir): Change to std::string.
2600 (python_libdir): Likewise.
2601 (relocate_gdb_directory): Change return type to std::string.
2602 * guile/guile.c (gdbscm_data_directory): Update.
2603 (initialize_scheme_side): Update.
2604 * jit.c (jit_reader_dir): Change to std::string.
2605 (jit_reader_load_command): Update.
2606 * main.c (gdb_datadir): Change to std::string.
2607 (python_libdir): Likewise.
2608 (set_gdb_data_directory): Update.
2609 (relocate_path): Change to return std::string.
2610 (relocate_gdb_directory): Change to return std::string.
2611 (relocate_gdbinit_path_maybe_in_datadir): Update.
2612 (captured_main_1): Update.
2613 * python/python.c (do_start_initialization): Update.
2614 * top.c (show_gdb_datadir): Update.
2615 * xml-syscall.c (xml_init_syscalls_info): Update.
2616 (init_syscalls_info): Update.
2617
2618 2019-09-11 Christian Biesinger <cbiesinger@google.com>
2619
2620 * main.c (relocate_gdbinit_path_maybe_in_datadir): Factor this code
2621 out of get_init_files.
2622 (get_init_files): Update.
2623
2624 2019-09-11 Christian Biesinger <cbiesinger@google.com>
2625
2626 * main.c (get_init_files): Change to use std::string.
2627 (captured_main_1): Update.
2628 (print_gdb_help): Update.
2629
2630 2019-09-11 Ali Tamur <tamur@google.com>
2631
2632 *gdb/target-float.c (host_float_ops<T>::to_longest): Update
2633 implementation.
2634
2635 2019-09-11 Christian Biesinger <cbiesinger@google.com>
2636
2637 * dbxread.c (read_dbx_symtab): Update.
2638 * dwarf2read.c (load_partial_dies): Update.
2639 * mdebugread.c (parse_partial_symbols): Update.
2640 (handle_psymbol_enumerators): Update.
2641 * psympriv.h (add_psymbol_to_list): Change type of copy_names to bool.
2642 * psymtab.c (add_psymbol_to_bcache): Likewise.
2643 (add_psymbol_to_list): Likewise.
2644 * symtab.c (symbol_set_names): Likewise.
2645 * symtab.h (symbol_set_names): Likewise.
2646 * xcoffread.c (scan_xcoff_symtab): Update.
2647
2648 2019-09-11 Tom Tromey <tom@tromey.com>
2649
2650 * symfile-mem.c (symbol_file_add_from_memory): Use
2651 bfd_set_filename.
2652 * solib-darwin.c (darwin_bfd_open): Use bfd_set_filename.
2653 * solib-aix.c (solib_aix_bfd_open): Use bfd_set_filename.
2654
2655 2019-09-10 Tom Tromey <tromey@adacore.com>
2656
2657 * dwarf-index-write.c (write_psymbols): Extend error message.
2658 (debug_names::insert): Add Ada code.
2659 (debug_names::write_psymbols): Remove Ada check.
2660 (debug_names) <m_string_obstack>: New member.
2661 * dwarf2read.c (gdb_index_symbol_name_matcher): Remove.
2662 (gdb_index_symbol_name_matcher::matches): Remove.
2663 (mapped_index_base::find_name_components_bounds): Add "lang"
2664 parameter.
2665 (mapped_index_base::build_name_components): Also split names
2666 according to Ada syntax.
2667 (dw2_expand_symtabs_matching_symbol): Loop over languages. Change
2668 type of "match_callback".
2669 (check_match, check_find_bounds_finds)
2670 (dw2_expand_symtabs_matching): Update.
2671 (dw2_debug_names_iterator): Add new constructor.
2672 (dw2_debug_names_map_matching_symbols): New function.
2673 (dw2_debug_names_expand_symtabs_matching): Update.
2674 (dwarf2_debug_names_functions): Use
2675 dw2_debug_names_map_matching_symbols.
2676
2677 2019-09-10 Tom Tromey <tromey@adacore.com>
2678
2679 * dwarf2read.c (dw2_get_file_names_reader): Add the
2680 CU's file name to the results.
2681
2682 2019-09-10 Tom Tromey <tromey@adacore.com>
2683
2684 * ada-lang.c (add_nonlocal_symbols): Combine calls to
2685 map_matching_symbols. Update.
2686 * dwarf2read.c (dw2_map_matching_symbols): Update.
2687 * psymtab.c (match_partial_symbol): Change type; update.
2688 (psym_map_matching_symbols): Likewise.
2689 * symfile-debug.c (debug_qf_map_matching_symbols): Change
2690 type; update.
2691 * symfile.h (struct quick_symbol_functions)
2692 <map_matching_symbols>: Change "name" to be a lookup_name_info.
2693 Remove "match".
2694
2695 2019-09-10 Tom Tromey <tromey@adacore.com>
2696
2697 * psymtab.c (map_block): Remove.
2698 (psym_map_matching_symbols): Use iterate_over_symbols_terminated.
2699 * symtab.c (iterate_over_symbols_terminated): New function.
2700 * symtab.c (iterate_over_symbols_terminated): Declare.
2701
2702 2019-09-10 Tom Tromey <tromey@adacore.com>
2703
2704 * ada-lang.c (ada_iterate_over_symbols): Return bool.
2705 * language.h (struct language_defn) <la_iterate_over_symbols>:
2706 Return bool.
2707 * symtab.c (iterate_over_symbols): Return bool.
2708 * symtab.h (iterate_over_symbols): Return bool.
2709
2710 2019-09-10 Tom Tromey <tromey@adacore.com>
2711
2712 * ada-lang.c (aux_add_nonlocal_symbols): Change type.
2713 (add_nonlocal_symbols): Update.
2714 * dwarf2read.c (dw2_map_matching_symbols): Change type.
2715 * psymtab.c (map_block, psym_map_matching_symbols): Change type.
2716 * symfile-debug.c (debug_qf_map_matching_symbols): Change type.
2717 * symfile.h (struct quick_symbol_functions) <map_matching_symbols>:
2718 Change type of "callback". Remove "data".
2719
2720
2721 2019-09-09 Ali Tamur <tamur@google.com>
2722
2723 * dwarf2read.c (comp_unit_head): Update comment.
2724 (dwarf2_dwo_name): New function declaration.
2725 (dwarf_unit_type_name): New function declaration.
2726 (read_comp_unit_head): Add support for new compilation units,
2727 DW_UT_partial, DW_UT_skeleton, DW_UT_split_compile, DW_UT_split_type.
2728 Particularly, DW_UT_skeleton and DW_UT_split_compile have dwo_id
2729 (currently named as "signature") in their header. Also clarify error
2730 messages.
2731 (lookup_dwo_id): New function. Returns the dwo id of the given
2732 compile unit.
2733 (lookup_dwo_unit): Use the new lookup_dwo_id function.
2734 (init_cutu_and_read_dies): Use the new dwarf2_dwo_name and lookup_dwo_id
2735 functions.
2736 (create_dwo_cu_reader): Use the added lookup_dwo_id function.
2737 (dwarf2_dwo_name): Get the dwo name if present.
2738 (dwarf_unit_type_name): Convert DW_UT_* types to string for diagnostic
2739 purposes.
2740
2741 2019-09-09 Tom Tromey <tom@tromey.com>
2742
2743 * tui/tui-win.c (tui_all_windows_info): Use ui_out.
2744
2745 2019-09-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2746
2747 * python/python.c (do_start_initialization): Make progname_copy static,
2748 to avoid a leak report.
2749
2750 2019-09-08 Tom Tromey <tom@tromey.com>
2751
2752 * tui/tui-wingeneral.c (box_win): Truncate long window titles.
2753
2754 2019-09-07 Simon Marchi <simon.marchi@efficios.com>
2755
2756 * dwarf2read.c (struct dw2_symtab_iterator) <block_index>:
2757 Change type to gdb::optional<block_enum>.
2758 (dw2_symtab_iter_init): Change block_index parameter type
2759 to gdb::optional<block_enum>.
2760 (dw2_lookup_symbol): Change block_index parameter
2761 type to block_enum.c
2762 (dw2_debug_names_lookup_symbol): Likewise.
2763 * psymtab.c (psym_lookup_symbol): Likewise.
2764 * symfile-debug.c (debug_qf_lookup_symbol): Likewise.
2765 * symfile.h (struct quick_symbol_functions) <lookup_symbol>:
2766 Likewise.
2767
2768 2019-09-06 Christian Biesinger <cbiesinger@google.com>
2769
2770 * defs.h (relocate_gdb_directory): Change int to bool in
2771 signature and rename flag to relocatable.
2772 * main.c (relocate_path): Likewise.
2773 (relocate_gdb_directory): Likewise.
2774
2775 2019-09-06 Alan Modra <amodra@gmail.com>
2776
2777 * coffread.c (coff_symfile_read): Constify filename variable.
2778 * dbxread.c (dbx_symfile_init, coffstab_build_psymtabs),
2779 (elfstab_build_psymtabs, stabsect_build_psymtabs): Likewise.
2780 * gdb_bfd.c (gdb_bfd_close_or_warn): Likewise.
2781 * solib.c (reload_shared_libraries_1): Likewise.
2782 * symfile.c (reread_symbols): Likewise.
2783 * solib-aix.c (solib_aix_bfd_open): Add cast for xfree of filename.
2784 * solib-darwin.c (darwin_bfd_open): Likewise.
2785 * symfile-mem.c (symbol_file_add_from_memory): Likewise.
2786
2787 2019-09-03 Andrew Burgess <andrew.burgess@embecosm.com>
2788
2789 * psymtab.c (print_partial_symbols): Handle missing domain_enum
2790 values MODULE_DOMAIN and COMMON_BLOCK_DOMAIN.
2791
2792 2019-09-03 Tom Tromey <tromey@adacore.com>
2793
2794 * ada-valprint.c (ada_val_print_num): Don't recurse for range
2795 types.
2796 (has_negatives): Unbias a range type bound.
2797 * dwarf2read.c (read_subrange_type): Handle DW_AT_GNU_bias.
2798 * gdbtypes.c (operator==): Handle new field.
2799 (create_range_type): Add "bias" parameter.
2800 (create_static_range_type, resolve_dynamic_range): Update.
2801 * gdbtypes.h (struct range_bounds) <bias>: New member.
2802 (create_range_type): Add bias parameter.
2803 * printcmd.c (print_scalar_formatted): Unbias range types.
2804 * value.c (unpack_long): Unbias range types.
2805 (pack_long): Bias range types.
2806
2807 2019-09-02 Alan Hayward <alan.hayward@arm.com>
2808
2809 * solib-svr4.c (svr4_find_and_create_probe_breakpoints): Check all
2810 probe arguments.
2811
2812 2019-09-02 Alan Hayward <alan.hayward@arm.com>
2813
2814 * break-catch-throw.c (fetch_probe_arguments): Use gdbarch.
2815 * dtrace-probe.c (dtrace_probe::get_argument_count): Likewise.
2816 * probe.c (probe_safe_evaluate_at_pc) (compute_probe_arg)
2817 (compile_probe_arg): Likewise.
2818 * probe.h (get_argument_count): Likewise.
2819 * solib-svr4.c (solib_event_probe_action): Likewise.
2820 * stap-probe.c (stap_probe::get_argument_count): Likewise.
2821
2822 2019-09-02 Alan Hayward <alan.hayward@arm.com>
2823
2824 * solib-svr4.c (svr4_find_and_create_probe_breakpoints): Move
2825 code to here...
2826 (svr4_create_solib_event_breakpoints): ...from here.
2827
2828 2019-08-30 Sergio Durigan Junior <sergiodj@redhat.com>
2829
2830 * nat/fork-inferior.c (trace_start_error): Remove "\nError: "
2831 suffix from warning message.
2832
2833 2019-08-30 Tom Tromey <tom@tromey.com>
2834
2835 * tui/tui-winsource.h (struct tui_source_window_base)
2836 <refresh_all>: Don't declare.
2837 * tui/tui-winsource.c (tui_source_window_base::refresh_all):
2838 Remove.
2839 * tui/tui-win.c (tui_refresh_all_win): Don't call refresh_all or
2840 tui_show_locator_content.
2841 * tui/tui-regs.h (struct tui_data_window) <refresh_all>: Don't
2842 declare.
2843 * tui/tui-regs.c (tui_data_window::refresh_all): Remove.
2844 * tui/tui-data.h (struct tui_win_info) <refresh_all>: Don't
2845 declare.
2846
2847 2019-08-30 Tom Tromey <tom@tromey.com>
2848
2849 * tui/tui-io.c (tui_cont_sig): Don't call wrefresh.
2850
2851 2019-08-30 Tom Tromey <tom@tromey.com>
2852
2853 * tui/tui-stack.c (_initialize_tui_stack): Move later.
2854 Remove unnecessary forward declarations.
2855
2856 2019-08-30 Tom Tromey <tom@tromey.com>
2857
2858 * tui/tui-stack.c (tui_locator_window::set_locator_fullname): Call
2859 rerender.
2860 (tui_update_locator_fullname, tui_show_frame_info): Don't call
2861 tui_show_locator_content.
2862
2863 2019-08-30 Tom Tromey <tom@tromey.com>
2864
2865 * tui/tui-stack.c (tui_show_locator_content): Move lower. Rewrite.
2866 (tui_locator_window::rerender): Rewrite using body of previous
2867 tui_show_locator_content.
2868
2869 2019-08-30 Tom Tromey <tom@tromey.com>
2870
2871 * tui/tui-stack.h (struct tui_locator_window) <set_locator_info,
2872 set_locator_fullname>: New methods.
2873 * tui/tui-stack.c (tui_locator_window::set_locator_fullname):
2874 Rename from tui_set_locator_fullname.
2875 (tui_locator_window::set_locator_info): Rename from
2876 tui_set_locator_info. Return bool.
2877 (tui_update_locator_fullname, tui_show_frame_info): Update.
2878
2879 2019-08-30 Tom Tromey <tom@tromey.com>
2880
2881 * tui/tui-layout.c (show_layout): Don't call tui_refresh_all.
2882
2883 2019-08-30 Tom Tromey <tom@tromey.com>
2884
2885 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Don't
2886 call touchwin.
2887
2888 2019-08-30 Tom Tromey <tom@tromey.com>
2889
2890 * tui/tui-wingeneral.c (box_win): Assume win_info and
2891 win_info->handle cannot be NULL.
2892
2893 2019-08-30 Tom Tromey <tom@tromey.com>
2894
2895 * tui/tui-regs.h (struct tui_data_item_window) <rerender,
2896 refresh_window>: Declare.
2897 * tui/tui-regs.c (tui_data_window::display_registers_from): Call
2898 resize.
2899 (tui_data_item_window::rerender): Rename from
2900 tui_display_register.
2901 (tui_data_item_window::refresh_window): New method.
2902 * tui/tui-layout.c (tui_gen_win_info::resize): Do nothing on
2903 no-op.
2904
2905 2019-08-30 Tom Tromey <tom@tromey.com>
2906
2907 * tui/tui-regs.h (struct tui_data_window) <regs_content,
2908 regs_column_count, current_group>: Move later. Now private.
2909 <get_current_group>: New method.
2910 * tui/tui-regs.c (tui_reg_command): Update.
2911 * tui/tui-layout.c (tui_set_layout): Update.
2912
2913 2019-08-30 Tom Tromey <tom@tromey.com>
2914
2915 * tui/tui-regs.c (tui_data_window::display_registers_from_line)
2916 (tui_data_window::rerender): Don't call
2917 check_and_display_highlight_if_needed.
2918 (tui_data_window::refresh_all): Remove call to
2919 erase_data_content.
2920
2921 2019-08-30 Tom Tromey <tom@tromey.com>
2922
2923 * tui/tui-regs.c (tui_data_window::last_regs_line_no)
2924 (tui_data_window::display_registers_from)
2925 (tui_data_window::display_reg_element_at_line)
2926 (tui_data_window::display_registers_from_line): Remove checks of
2927 "empty".
2928
2929 2019-08-30 Tom Tromey <tom@tromey.com>
2930
2931 * tui/tui-regs.h (struct tui_data_window) <display_all_data>:
2932 Don't declare.
2933 * tui/tui-regs.c (tui_data_window::show_registers): Call
2934 rerender.
2935 (tui_data_window::rerender): Rename from display_all_data.
2936 (tui_data_window::rerender): Remove old implementation.
2937
2938 2019-08-30 Tom Tromey <tom@tromey.com>
2939
2940 * tui/tui-regs.c (tui_data_window::display_all_data): Change
2941 text.
2942 * tui/tui-data.h (NO_DATA_STRING): Remove define.
2943
2944 2019-08-29 Bernhard Wodok <barto@gmx.net>
2945 Sergio Durigan Junior <sergiodj@redhat.com>
2946
2947 PR win32/24284
2948 * mingw-hdep.c (gdb_select): Handle case when 'n' is zero.
2949
2950 2019-08-28 Andrew Burgess <andrew.burgess@embecosm.com>
2951
2952 * symtab.c (search_symbols): Don't include MODULE_DOMAIN symbols
2953 when searching for types.
2954
2955 2019-08-28 Andrew Burgess <andrew.burgess@embecosm.com>
2956
2957 * f-lang.c (f_language_defn): Use f_print_typedef.
2958 * f-lang.h (f_print_typedef): Declare.
2959 * f-typeprint.c (f_print_typedef): Define.
2960
2961 2019-08-27 Christian Biesinger <cbiesinger@google.com>
2962
2963 * nat/linux-namespaces.c (mnsh_main): Initialize fd (to -1).
2964
2965 2019-08-27 Andrew Burgess <andrew.burgess@embecosm.com>
2966
2967 * cli/cli-utils.c (info_print_options_defs): Delete.
2968 (make_info_print_options_def_group): Delete.
2969 (extract_info_print_options): Delete.
2970 (info_print_command_completer): Delete.
2971 (info_print_args_help): Add extra parameter, and optionally
2972 include text about -n flag.
2973 * cli/cli-utils.h (struct info_print_options): Delete.
2974 (extract_info_print_options): Delete declaration.
2975 (info_print_command_completer): Delete declaration.
2976 (info_print_args_help): Add extra parameter, extend header
2977 comment.
2978 * python/python.c (gdbpy_rbreak): Pass additional parameter to
2979 search_symbols.
2980 * stack.c (struct info_print_options): New type.
2981 (info_print_options_defs): New file scoped variable.
2982 (make_info_print_options_def_group): New static function.
2983 (info_print_command_completer): New static function.
2984 (info_locals_command): Update to use new local functions.
2985 (info_args_command): Likewise.
2986 (_initialize_stack): Add extra parameter to calls to
2987 info_print_args_help.
2988 * symtab.c (search_symbols): Add extra parameter, use this to
2989 possibly excluse non-debug symbols.
2990 (symtab_symbol_info): Add extra parameter, which is passed on to
2991 search_symbols.
2992 (struct info_print_options): New type.
2993 (info_print_options_defs): New file scoped variable.
2994 (make_info_print_options_def_group): New static function.
2995 (info_print_command_completer): New static function.
2996 (info_variables_command): Update to use local functions, and pass
2997 extra parameter through to symtab_symbol_info.
2998 (info_functions_command): Likewise.
2999 (info_types_command): Pass additional argument through to
3000 symtab_symbol_info.
3001 (rbreak_command): Pass extra argument to search_symbols.
3002 (_initialize_symtab): Add extra arguments for calls to
3003 info_print_args_help, and update help text for 'info variables',
3004 'whereis', and 'info functions' commands.
3005 * symtab.h (search_symbols): Add extra argument to declaration.
3006 * NEWS: Mention new flags.
3007
3008 2019-08-26 Christian Biesinger <cbiesinger@google.com>
3009
3010 * symtab.c (lookup_static_symbol): Call the new function (and move
3011 it down to be next to lookup_global_symbol).
3012 (struct global_sym_lookup_data): Add block_enum member and rename to...
3013 (struct global_or_static_sym_lookup_data): ...this.
3014 (lookup_symbol_global_iterator_cb): Pass block_index instead of
3015 GLOBAL_BLOCK to lookup_symbol_in_objfile and rename to...
3016 (lookup_symbol_global_or_static_iterator_cb): ...this.
3017 (lookup_global_or_static_symbol): New function.
3018 (lookup_global_symbol): Call new function.
3019
3020 2019-08-26 Tom de Vries <tdevries@suse.de>
3021
3022 PR c++/24852
3023 * break-catch-throw.c (fetch_probe_arguments): Improve error mesage
3024 when pc_probe.prob == NULL.
3025
3026 2019-08-25 Simon Marchi <simon.marchi@efficios.com>
3027
3028 * dwarf2read.c (dw2_debug_names_iterator::next): Rename local
3029 variable symbol_linkage to symbol_linkage_.
3030
3031 2019-08-25 Simon Marchi <simon.marchi@efficios.com>
3032
3033 * dwarf2read.c (dw2_debug_names_iterator::next): Use enum to
3034 represent whether the symbol is static, dynamic, or we don't
3035 know.
3036
3037 2019-08-25 Yoshinori Sato <ysato@users.sourceforge.jp>
3038
3039 * gdb/rx-tdep.c (rx_register_names): New.
3040 (rx_register_name): Delete.
3041 (rx_psw_type): Delete.
3042 (rx_fpsw_type): Delete.
3043 (rx_register_type): Delete.
3044 (rx_gdbarch_init): Convert target-descriptions.
3045 (_initialize_rx_tdep): Add initialize_tdesc_rx.
3046 * gdb/features/Makefile: Add rx.xml.
3047 * gdb/features/rx.xml: New.
3048 * gdb/features/rx.c: Generated.
3049 * gdb/NEWS: Mention target description support.
3050
3051 2019-08-22 Christian Biesinger <cbiesinger@google.com>
3052
3053 * symtab.c (symbol_cache_lookup): Always initialize *bsc_ptr and
3054 *slot_ptr.
3055
3056 2019-08-23 Sergio Durigan Junior <sergiodj@redhat.com>
3057
3058 * configure.ac: Don't check for 'dlfcn.h' (moved to
3059 gdbsupport/common.m4).
3060 * Makefile.in (COMMON_SFILES): Move 'gdb-dlfcn.c' to
3061 'gdbsupport/'.
3062 (HFILES_NO_SRCDIR): Likewise, for 'gdb-dlfcn.h'.
3063 * compile/compile-c-support.c: Include
3064 'gdbsupport/gdb-dlfcn.h'.
3065 * gdbsupport/common.m4: Check for 'dlfcn.h'.
3066 * gdb-dlfcn.c: Move to...
3067 * gdbsupport/gdb-dlfcn.c: ... here.
3068 * gdb-dlfcn.h: Move to...
3069 * gdbsupport/gdb-dlfcn.h: ... here.
3070
3071 2019-08-23 Sandra Loosemore <sandra@codesourcery.com>
3072
3073 * nios2-tdep.c (struct reg_value): Improve comments. Make
3074 the offset field signed.
3075
3076 2019-08-22 Christian Biesinger <cbiesinger@google.com>
3077
3078 * python/lib/gdb/__init__.py (_execute_file): New function.
3079 * python/python.c (python_run_simple_file): Call gdb._execute_file
3080 on Windows.
3081
3082 2019-08-22 Andrew Burgess <andrew.burgess@embecosm.com>
3083
3084 * f-exp.y (yylex): Remove is_a_field_of_this local variable, and
3085 all uses as this was never set to anything but a zero value.
3086
3087 2019-08-21 Bogdan Harjoc <harjoc@gmail.com>
3088
3089 * cli/cli-cmds.c (with_command_1): Error out if no arguments.
3090
3091 2019-08-21 Christian Biesinger <cbiesinger@google.com>
3092
3093 * tui/tui-data.h (tui_gen_win_info): Add an =default
3094 move constructor, required by some GCC versions.
3095
3096 2019-08-21 Jinke Fan <fanjinke51@yeah.net>
3097
3098 * go32-nat.c (go32_sysinfo): Add hygon_p.
3099
3100 2019-08-20 Tom Tromey <tom@tromey.com>
3101
3102 * tui/tui-regs.h (struct tui_data_window) <last_regs_line_no,
3103 line_from_reg_element_no, first_reg_element_no_inline,
3104 display_all_data, delete_data_content_windows,
3105 erase_data_content>: Now private.
3106
3107 2019-08-20 Tom Tromey <tom@tromey.com>
3108
3109 * tui/tui-wingeneral.c (box_win): Change type of highlight_flag.
3110 (tui_unhighlight_win, tui_highlight_win)
3111 (tui_win_info::make_window): Update.
3112 * tui/tui-data.h (HILITE, NO_HILITE): Remove.
3113
3114 2019-08-20 Tom Tromey <tom@tromey.com>
3115
3116 * tui/tui-data.h (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
3117 (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
3118 (MAX_PID_WIDTH): Move to tui-stack.c.
3119 * tui/tui-stack.c (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
3120 (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
3121 (MAX_PID_WIDTH): Move from tui-data.h.
3122
3123 2019-08-20 Tom Tromey <tom@tromey.com>
3124
3125 * tui/tui-wingeneral.h (tui_make_window): Don't declare.
3126 * tui/tui-wingeneral.c (box_win): Change type of win_info.
3127 (box_win): Update.
3128 (tui_gen_win_info::make_window): Rename from tui_make_window.
3129 (tui_win_info::make_window): New method.
3130 (tui_gen_win_info::make_visible): Update.
3131 * tui/tui-source.c (tui_source_window::set_contents): Update.
3132 * tui/tui-regs.c (tui_data_window::show_register_group): Update.
3133 (tui_data_window::display_registers_from): Update.
3134 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
3135 * tui/tui-data.h (struct tui_gen_win_info) <make_window>:
3136 Declare.
3137 <can_box>: Remove.
3138 <title>: Remove.
3139 (struct tui_win_info) <make_window>: Declare.
3140 <can_box>: Now virtual.
3141 <title>: New member.
3142 * tui/tui-data.c (~tui_gen_win_info): Don't free title.
3143 * tui/tui-command.c (tui_cmd_window::resize): Update.
3144
3145 2019-08-20 Tom Tromey <tom@tromey.com>
3146
3147 * tui/tui-regs.h (struct tui_data_window) <display_regs>: Remove.
3148 * tui/tui-regs.c (tui_data_window::show_registers): Update.
3149 (tui_data_window::check_register_values): Update.
3150
3151 2019-08-20 Tom Tromey <tom@tromey.com>
3152
3153 * tui/tui-regs.h (struct tui_data_window): Use
3154 DISABLE_COPY_AND_ASSIGN.
3155 <regs_content>: Change type, removing unique_ptr.
3156 <tui_data_window>: Add move constructor.
3157 * tui/tui-regs.c (tui_data_window::show_registers)
3158 (tui_data_window::show_register_group)
3159 (tui_data_window::display_registers_from)
3160 (tui_data_window::display_registers_from)
3161 (tui_data_window::first_data_item_displayed)
3162 (tui_data_window::delete_data_content_windows)
3163 (tui_data_window::rerender, tui_data_window::refresh_window)
3164 (tui_data_window::check_register_values): Update.
3165
3166 2019-08-20 Tom Tromey <tom@tromey.com>
3167
3168 * tui/tui-regs.h (struct tui_data_window) <show_registers,
3169 show_register_group>: Declare.
3170 (tui_show_register_group): Don't declare.
3171 * tui/tui-regs.c (tui_data_window::show_registers): Rename from
3172 tui_show_registers.
3173 (tui_data_window::show_register_group): Rename from
3174 tui_show_register_group.
3175 (tui_data_window::check_register_values, tui_reg_command):
3176 Update.
3177 * tui/tui-layout.c (tui_set_layout): Update.
3178
3179 2019-08-20 Tom Tromey <tom@tromey.com>
3180
3181 * tui/tui-regs.h (struct tui_data_window) <check_register_values>:
3182 Declare.
3183 (tui_check_register_values): Don't declare.
3184 * tui/tui-regs.c (tui_data_window::check_register_values): Rename
3185 from tui_check_register_values.
3186 * tui/tui-hooks.c (tui_register_changed): Update.
3187
3188 2019-08-20 Tom Tromey <tom@tromey.com>
3189
3190 * tui/tui-regs.c (tui_reg_layout): Move later.
3191 (tui_show_registers): Don't enable TUI mode or change layout.
3192
3193 2019-08-20 Tom Tromey <tom@tromey.com>
3194
3195 * tui/tui-regs.h (struct tui_data_item_window)
3196 <~tui_data_item_window>: Remove.
3197 <content>: Now a unique_xmalloc_ptr.
3198 * tui/tui-regs.c (tui_register_format): Return a
3199 unique_xmalloc_ptr.
3200 (tui_get_register): Update.
3201 (~tui_data_item_window): Remove.
3202 (tui_data_window::display_registers_from, tui_display_register):
3203 Update.
3204 * tui/tui-io.h (tui_expand_tabs): Update.
3205 * tui/tui-io.c (tui_expand_tabs): Return a unique_xmalloc_ptr.
3206 Remove "col" parameter.
3207
3208 2019-08-20 Tom Tromey <tom@tromey.com>
3209
3210 * tui/tui-regs.h (struct tui_data_item_window) <value>: Remove
3211 field.
3212 * tui/tui-regs.c (~tui_data_item_window): Update.
3213
3214 2019-08-20 Tom Tromey <tom@tromey.com>
3215
3216 * tui/tui-regs.c (tui_register_format, tui_get_register): Move
3217 earlier.
3218
3219 2019-08-20 Tom Tromey <tom@tromey.com>
3220
3221 * tui/tui-regs.c (tui_reg_command): Remove NULL check.
3222
3223 2019-08-20 Tom Tromey <tom@tromey.com>
3224
3225 * tui/tui-source.h (struct tui_source_window): Update.
3226 * tui/tui-regs.c (tui_show_registers): Update.
3227 * tui/tui-disasm.h (struct tui_disasm_window): Update.
3228 * tui/tui-data.h (NO_SRC_STRING, NO_DISASSEM_STRING)
3229 (NO_REGS_STRING): Remove defines.
3230
3231 2019-08-20 Conrad Meyer <cem@FreeBSD.org>
3232
3233 * remote.c (remote_target::remote_btrace_maybe_reopen): Avoid
3234 unnecessary thread walk if remote doesn't support the packet.
3235
3236 2019-08-19 Tom Tromey <tromey@adacore.com>
3237
3238 * python/py-value.c (value_has_field): Fix indentation.
3239
3240 2019-08-19 Tom Tromey <tromey@adacore.com>
3241
3242 * printcmd.c (do_one_display, info_display_command): Update.
3243 * block.h (contained_in): Return bool. Add allow_nested
3244 parameter.
3245 * block.c (contained_in): Return bool. Add allow_nested
3246 parameter.
3247
3248 2019-08-19 Tom Tromey <tom@tromey.com>
3249
3250 * configure: Rebuild.
3251 * configure.ac: Disallow the combination of -static-libstdc++ and
3252 source highlight.
3253 * source-cache.c (get_language_name): Handle rust.
3254 (source_cache::get_source_lines): Ignore highlighting exceptions.
3255
3256 2019-08-16 Tom Tromey <tom@tromey.com>
3257
3258 * tui/tui.h (enum tui_win_type) <EXEC_INFO_WIN>: Remove.
3259 * tui/tui-winsource.h (struct tui_exec_info_window): Remove.
3260 (struct tui_source_window_base) <make_visible, refresh_window,
3261 resize>: Remove methods.
3262 <execution_info>: Remove field.
3263 * tui/tui-winsource.c (tui_source_window_base::do_erase_source_content)
3264 (tui_show_source_line, tui_source_window_base)
3265 (~tui_source_window_base): Update.
3266 (tui_source_window_base::resize)
3267 (tui_source_window_base::make_visible)
3268 (tui_source_window_base::refresh_window): Remove.
3269 (tui_source_window_base::update_exec_info): Update.
3270 * tui/tui-source.c (tui_source_window::set_contents): Update.
3271 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
3272
3273 2019-08-16 Tom Tromey <tom@tromey.com>
3274
3275 * tui/tui-hooks.c (tui_remove_hooks): Don't set
3276 deprecated_query_hook.
3277
3278 2019-08-16 Tom Tromey <tom@tromey.com>
3279
3280 * tui/tui-winsource.c (tui_update_source_windows_with_addr)
3281 (tui_update_source_windows_with_line): Update.
3282 * tui/tui-source.h (struct tui_source_window)
3283 <show_symtab_source>: Declare.
3284 (tui_show_symtab_source): Don't declare.
3285 * tui/tui-source.c (tui_show_symtab_source): Rename from
3286 tui_show_symtab_source.
3287
3288 2019-08-16 Tom Tromey <tom@tromey.com>
3289
3290 * tui/tui-winsource.h (struct tui_source_window_base)
3291 <set_contents>: Declare.
3292 * tui/tui-winsource.c
3293 (tui_source_window_base::update_source_window_as_is): Update.
3294 * tui/tui-source.h (struct tui_source_window) <set_contents>:
3295 Declare.
3296 (tui_set_source_content): Don't declare.
3297 * tui/tui-source.c (tui_source_window::set_contents): Rename from
3298 tui_set_source_content.
3299 * tui/tui-disasm.h (struct tui_disasm_window) <set_contents>:
3300 Declare.
3301 (tui_set_disassem_content): Don't declare.
3302 * tui/tui-disasm.c (tui_disasm_window::set_contents): Rename from
3303 tui_set_disassem_content.
3304
3305 2019-08-16 Tom Tromey <tom@tromey.com>
3306
3307 * tui/tui-winsource.h (struct tui_source_window_base)
3308 <update_breakpoint_info>: Declare.
3309 (tui_update_breakpoint_info): Don't declare.
3310 * tui/tui-winsource.c (tui_source_window_base::update_source_window_as_is)
3311 (tui_update_all_breakpoint_info): Update.
3312 (tui_source_window_base::update_breakpoint_info): Rename from
3313 tui_update_breakpoint_info.
3314 (tui_source_window_base::update_exec_info): Update.
3315
3316 2019-08-16 Tom Tromey <tom@tromey.com>
3317
3318 * tui/tui-winsource.h (struct tui_source_window_base)
3319 <update_source_window>: Declare.
3320 (tui_update_source_window): Don't declare.
3321 * tui/tui-winsource.c
3322 (tui_source_window_base::update_source_window): Rename from
3323 tui_update_source_window.
3324 (tui_source_window_base::rerender): Update.
3325 * tui/tui-source.c (tui_source_window::maybe_update): Update.
3326 * tui/tui-disasm.c (tui_show_disassem)
3327 (tui_show_disassem_and_update_source)
3328 (tui_disasm_window::maybe_update): Update.
3329
3330 2019-08-16 Tom Tromey <tom@tromey.com>
3331
3332 * tui/tui-winsource.h (struct tui_source_window_base)
3333 <update_source_window_as_is>: Declare.
3334 (tui_update_source_window_as_is): Don't declare.
3335 * tui/tui-winsource.c (tui_update_source_window): Update
3336 (tui_source_window_base::update_source_window_as_is): Rename from
3337 tui_update_source_window_as_is.
3338 (tui_source_window_base::refill): Update.
3339 * tui/tui-source.c (tui_show_symtab_source): Update.
3340 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical):
3341 Update.
3342
3343 2019-08-16 Tom Tromey <tom@tromey.com>
3344
3345 * tui/tui-winsource.h (tui_update_source_window)
3346 (tui_update_source_window_as_is): Remove "noerror" parameter.
3347 * tui/tui-winsource.c (tui_update_source_window)
3348 (tui_update_source_window_as_is): Remove "noerror" parameter.
3349 (tui_update_source_windows_with_addr)
3350 (tui_update_source_windows_with_line)
3351 (tui_source_window_base::rerender)
3352 (tui_source_window_base::refill): Update.
3353 * tui/tui-source.h (tui_set_source_content)
3354 (tui_show_symtab_source): Remove "noerror" parameter.
3355 * tui/tui-source.c (tui_set_source_content): Remove "noerror"
3356 parameter.
3357 (tui_show_symtab_source): Likewise.
3358 (tui_source_window::maybe_update): Update.
3359 * tui/tui-disasm.c (tui_show_disassem)
3360 (tui_show_disassem_and_update_source)
3361 (tui_disasm_window::do_scroll_vertical)
3362 (tui_disasm_window::maybe_update): Update.
3363
3364 2019-08-16 Tom Tromey <tom@tromey.com>
3365
3366 * tui/tui.c (tui_is_window_visible): Update.
3367 * tui/tui-wingeneral.c (tui_make_window)
3368 (tui_gen_win_info::make_visible, tui_refresh_all): Update.
3369 * tui/tui-win.c (window_name_completer, tui_refresh_all_win)
3370 (tui_set_focus_command, tui_all_windows_info, update_tab_width)
3371 (tui_set_win_height_command, parse_scrolling_args): Update.
3372 * tui/tui-source.c (tui_source_window::style_changed): Update.
3373 * tui/tui-regs.c (tui_show_registers)
3374 (tui_data_window::first_data_item_displayed)
3375 (tui_data_window::delete_data_content_windows)
3376 (tui_check_register_values, tui_reg_command): Update.
3377 * tui/tui-disasm.c (tui_show_disassem): Update.
3378 * tui/tui-data.h (struct tui_gen_win_info) <is_visible>: New
3379 method.
3380 <is_visible>: Remove field.
3381 * tui/tui-data.c (tui_next_win, tui_prev_win)
3382 (tui_delete_invisible_windows): Update.
3383
3384 2019-08-16 Tom Tromey <tom@tromey.com>
3385
3386 * tui/tui-winsource.h (struct tui_source_window_base)
3387 <m_has_locator>: Remove.
3388 * tui/tui-layout.c (show_source_disasm_command, show_data)
3389 (show_source_or_disasm_and_command): Update.
3390
3391 2019-08-16 Alan Hayward <alan.hayward@arm.com>
3392
3393 * NEWS (Other MI changes): New subsection.
3394 * aarch64-tdep.c (aarch64_get_pc_address_flags): New function.
3395 (aarch64_gdbarch_init): Add aarch64_get_pc_address_flags.
3396 * arch-utils.c (default_get_pc_address_flags): New function.
3397 * arch-utils.h (default_get_pc_address_flags): New declaration.
3398 * gdbarch.sh: Add get_pc_address_flags.
3399 * gdbarch.c: Regenerate.
3400 * gdbarch.h: Likewise.
3401 * stack.c (print_pc): New function.
3402 (print_frame_info) (print_frame): Call print_pc.
3403
3404 2019-08-16 Tom de Vries <tdevries@suse.de>
3405
3406 * maint.c (maintenance_info_sections): Also handle !ALLOBJ case using
3407 print_objfile_section_info.
3408
3409 2019-08-15 Tom Tromey <tom@tromey.com>
3410
3411 * tui/tui-io.c (tui_puts_internal): Check TUI_CMD_WIN before
3412 calling update_cmdwin_start_line.
3413 * tui/tui-winsource.h (struct tui_source_window_base)
3414 <do_make_visible_with_new_height, set_new_height>: Don't declare.
3415 <rerender>: Declare.
3416 * tui/tui-winsource.c (tui_source_window_base::update_tab_width):
3417 Call rerender.
3418 (tui_source_window_base::set_new_height): Remove.
3419 (tui_source_window_base::rerender): Rename from
3420 do_make_visible_with_new_height.
3421 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Use
3422 resize method.
3423 (tui_win_info::make_invisible_and_set_new_height)
3424 (tui_win_info::make_visible_with_new_height): Remove.
3425 * tui/tui-stack.h (struct tui_locator_window) <rerender>:
3426 Declare.
3427 * tui/tui-stack.c (tui_locator_window::rerender): New method.
3428 * tui/tui-regs.h (struct tui_data_window) <set_new_height,
3429 do_make_visible_with_new_height>: Don't declare.
3430 <rerender>: Declare.
3431 * tui/tui-regs.c (tui_data_window::rerender): Rename from
3432 set_new_height.
3433 (tui_data_window::do_make_visible_with_new_height): Remove.
3434 * tui/tui-layout.c (show_source_disasm_command, show_data): Don't
3435 call tui_show_locator_content.
3436 (tui_gen_win_info::resize): Call rerender.
3437 (show_source_or_disasm_and_command): Don't call
3438 tui_show_locator_content.
3439 * tui/tui-data.h (struct tui_gen_win_info) <rerender>: New
3440 method.
3441 (struct tui_win_info) <rerender>: Declare.
3442 <set_new_height, make_invisible_and_set_new_height,
3443 make_visible_with_new_height>: Don't declare.
3444 * tui/tui-data.c (tui_win_list::rerender): New method.
3445 * tui/tui-command.h (struct tui_cmd_window)
3446 <do_make_visible_with_new_height>: Don't declare.
3447 * tui/tui-command.c
3448 (tui_cmd_window::do_make_visible_with_new_height): Remove.
3449
3450 2019-08-15 Tom Tromey <tromey@adacore.com>
3451
3452 * ada-exp.y (convert_char_literal): Handle "Q%c" encoding.
3453 * ada-lang.c (ada_enum_name): Likewise.
3454
3455 2019-08-15 Christian Biesinger <cbiesinger@google.com>
3456
3457 * python/lib/gdb/__init__.py (GdbOutputFile): Rename to have a
3458 leading underscore.
3459 (GdbOutputErrorFile): Likewise.
3460 (global scope): Adjust constructor calls to GdbOutput{,Error}File
3461 accordingly.
3462 (execute_unwinders): Rename to have a leading underscore.
3463 (auto_load_packages): Likewise.
3464 (global scope): Adjust call to auto_load_packages accordingly.
3465 (GdbSetPythonDirectory): Likewise.
3466 * python/py-unwind.c (pyuw_sniffer): Call _execute_unwinders
3467 instead of execute_unwinders.
3468
3469 2019-08-15 Tom Tromey <tom@tromey.com>
3470
3471 * tui/tui-layout.c (show_layout, show_source_disasm_command)
3472 (show_data): Don't change window visibility.
3473 (tui_gen_win_info::resize): Remove special case for command
3474 window. Use wresize, when available.
3475 (show_source_or_disasm_and_command): Don't change window
3476 visibility.
3477 * tui/tui-command.h (struct tui_cmd_window) <resize>: Declare.
3478 <make_visible>: New method.
3479 * tui/tui-command.c (tui_cmd_window::resize): New method.
3480
3481 2019-08-15 Tom Tromey <tom@tromey.com>
3482
3483 * tui/tui-winsource.h (struct tui_source_window_iterator): New.
3484 (struct tui_source_windows): New.
3485 * tui/tui-winsource.c (tui_display_main): Update.
3486 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
3487 (new_height_ok, parse_scrolling_args): Update.
3488 * tui/tui-layout.c (show_layout, show_data): Update.
3489 * tui/tui-data.h (tui_source_windows, tui_clear_source_windows)
3490 (tui_add_to_source_windows): Don't declare.
3491 * tui/tui-data.c (source_windows, tui_source_windows)
3492 (tui_clear_source_windows, tui_add_to_source_windows): Remove.
3493
3494 2019-08-15 Tom Tromey <tom@tromey.com>
3495
3496 * tui/tui-winsource.h (struct tui_source_window_base) <resize>:
3497 Rename from reset.
3498 * tui/tui-winsource.c (tui_source_window_base::resize): Rename.
3499 * tui/tui-layout.c (show_source_disasm_command, show_data):
3500 Update.
3501 (tui_gen_win_info::resize): Rename.
3502 (show_source_or_disasm_and_command): Update.
3503 * tui/tui-data.h (struct tui_gen_win_info) <resize>: Rename from
3504 reset.
3505
3506 2019-08-15 Tom Tromey <tom@tromey.com>
3507
3508 * tui/tui-stack.c (tui_initialize_static_data): Remove.
3509 * tui/tui-interp.c (tui_interp::init): Don't call
3510 tui_initialize_static_data.
3511 * tui/tui-data.h (tui_initialize_static_data): Don't declare.
3512
3513 2019-08-15 Tom Tromey <tom@tromey.com>
3514
3515 * tui/tui-layout.c (tui_default_win_viewport_height): Don't
3516 examine tui_win_list.
3517
3518 2019-08-15 Tom Tromey <tom@tromey.com>
3519
3520 * tui/tui-winsource.h (tui_clear_source_content): Don't declare.
3521 * tui/tui-winsource.c (tui_update_source_window_as_is): Don't call
3522 tui_clear_source_content.
3523 (tui_clear_source_content): Remove.
3524 (tui_source_window_base::do_erase_source_content): Hoist call to
3525 content.clear().
3526 * tui/tui-stack.c (tui_show_frame_info): Don't call
3527 tui_clear_source_content.
3528
3529 2019-08-15 Tom Tromey <tom@tromey.com>
3530
3531 * tui/tui-winsource.h (struct tui_source_window_base)
3532 <do_erase_source_content>: New method.
3533 <erase_source_content>: New method.
3534 (tui_erase_source_content): Don't declare.
3535 * tui/tui-winsource.c (tui_clear_source_content): Update.
3536 (tui_source_window_base::do_erase_source_content): Rename from
3537 tui_erase_source_content.
3538 (tui_source_window_base::show_source_content): Update.
3539 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
3540 * tui/tui-source.h (struct tui_source_window)
3541 <erase_source_content>: New method.
3542 * tui/tui-disasm.h (struct tui_disasm_window)
3543 <erase_source_content>: New method.
3544
3545 2019-08-15 Tom Tromey <tom@tromey.com>
3546
3547 * tui/tui-winsource.h (tui_alloc_source_buffer): Don't declare.
3548 (struct tui_source_element): Add DISABLE_COPY_AND_ASSIGN, and move
3549 constructor.
3550 * tui/tui-winsource.c (tui_alloc_source_buffer): Remove.
3551 * tui/tui-source.c (tui_set_source_content): Update.
3552 * tui/tui-disasm.c (tui_set_disassem_content): Update.
3553
3554 2019-08-15 Tom Tromey <tom@tromey.com>
3555
3556 * tui/tui-winsource.h (tui_line_is_displayed): Don't declare.
3557 * tui/tui-winsource.c (tui_line_is_displayed): Move to
3558 tui-source.c.
3559 * tui/tui-source.h (struct tui_source_window) <line_is_displayed>:
3560 Declare.
3561 * tui/tui-source.c (tui_source_window::line_is_displayed): New
3562 method.
3563 (tui_source_window::maybe_update): Update.
3564
3565 2019-08-15 Tom Tromey <tom@tromey.com>
3566
3567 * tui/tui-winsource.h (tui_addr_is_displayed): Don't declare.
3568 * tui/tui-winsource.c (tui_addr_is_displayed): Move to
3569 tui-disasm.c.
3570 * tui/tui-disasm.h (struct tui_disasm_window) <addr_is_displayed>:
3571 Declare.
3572 * tui/tui-disasm.c (tui_disasm_window::addr_is_displayed): New
3573 method.
3574 (tui_disasm_window::maybe_update): Update.
3575
3576 2019-08-15 Tom Tromey <tom@tromey.com>
3577
3578 * tui/tui-winsource.h (struct tui_source_window_base)
3579 <maybe_update>: Declare.
3580 * tui/tui-stack.c (tui_show_frame_info): Call maybe_update
3581 method.
3582 * tui/tui-source.h (struct tui_source_window) <maybe_update>:
3583 Declare.
3584 * tui/tui-source.c (tui_source_window::maybe_update): New method.
3585 * tui/tui-disasm.h (struct tui_disasm_window) <maybe_update>:
3586 Declare.
3587 * tui/tui-disasm.c (tui_disasm_window::maybe_update): New method.
3588
3589 2019-08-15 Tom Tromey <tom@tromey.com>
3590
3591 * tui/tui-stack.c (tui_make_status_line): Use string constructor.
3592
3593 2019-08-15 Tom Tromey <tom@tromey.com>
3594
3595 * tui/tui-wingeneral.c: Include tui-stack.h.
3596 * tui/tui-stack.h (MAX_LOCATOR_ELEMENT_LEN)
3597 (struct tui_locator_window): Move from tui-data.h.
3598 * tui/tui-stack.c (_locator, tui_locator_win_info_ptr)
3599 (tui_initialize_static_data): Move from tui-data.c.
3600 * tui/tui-data.h (MAX_LOCATOR_ELEMENT_LEN)
3601 (struct tui_locator_window): Move to tui-stack.c.
3602 * tui/tui-data.c (_locator, tui_locator_win_info_ptr)
3603 (tui_initialize_static_data): Move to tui-stack.c.
3604
3605 2019-08-15 Tom Tromey <tom@tromey.com>
3606
3607 * tui/tui-layout.c (show_source_disasm_command)
3608 (show_source_or_disasm_and_command): Use make_visible method, not
3609 tui_make_window.
3610 * tui/tui-command.h (struct tui_cmd_window) <make_visible>:
3611 Remove.
3612
3613 2019-08-15 Tom Tromey <tom@tromey.com>
3614
3615 * tui/tui-wingeneral.h (tui_make_window): Update.
3616 * tui/tui-wingeneral.c (tui_make_window): Remove "box_it"
3617 parameter.
3618 (tui_gen_win_info::make_visible): Update.
3619 * tui/tui-regs.c (tui_data_window::display_registers_from):
3620 Update.
3621 * tui/tui-layout.c (show_source_disasm_command)
3622 (show_source_or_disasm_and_command): Update.
3623 * tui/tui-data.h (struct tui_gen_win_info) <can_box>: New method.
3624 (enum tui_box): Remove.
3625 (struct tui_win_info) <can_box>: New method.
3626 * tui/tui-command.h (struct tui_cmd_window) <can_box>: New
3627 method.
3628
3629 2019-08-15 Tom de Vries <tdevries@suse.de>
3630
3631 * linux-nat-trad.c: Include gdbarch.h.
3632
3633 2019-08-14 Alan Hayward <alan.hayward@arm.com>
3634
3635 * aarch64-tdep.c (aarch64_analyze_prologue): Allow any valid
3636 register sizes.
3637
3638 2019-08-14 Tom Tromey <tromey@adacore.com>
3639
3640 * darwin-nat.c: Include gdbarch.h.
3641 * darwin-nat-info.c: Include gdbarch.h.
3642
3643 2019-08-13 Tom Tromey <tom@tromey.com>
3644
3645 * tui/tui-data.h (struct tui_gen_win_info) <last_visible_line>:
3646 Remove.
3647 * tui/tui-data.c (tui_initialize_static_data): Update.
3648
3649 2019-08-13 Tom Tromey <tom@tromey.com>
3650
3651 * tui/tui-winsource.h (struct tui_exec_info_window)
3652 <~tui_exec_info_window, maybe_allocate_content, get_content,
3653 m_content>: Remove.
3654 (struct tui_source_window_base) <set_exec_info_content,
3655 show_exec_info_content>: Don't declare.
3656 * tui/tui-winsource.c
3657 (tui_exec_info_window::maybe_allocate_content): Remove.
3658 (tui_source_window_base::update_exec_info): Rename from
3659 set_exec_info_content.
3660 (tui_source_window_base::show_exec_info_content)
3661 (tui_source_window_base::update_exec_info): Remove.
3662
3663 2019-08-13 Tom Tromey <tom@tromey.com>
3664
3665 * tui/tui-winsource.h (tui_clear_exec_info_content): Don't
3666 declare.
3667 * tui/tui-winsource.c (tui_update_source_window_as_is)
3668 (tui_update_source_windows_with_addr, tui_erase_source_content):
3669 Update.
3670 (tui_clear_exec_info_content): Remove.
3671
3672 2019-08-13 Tom Tromey <tom@tromey.com>
3673
3674 * tui/tui-winsource.h (tui_erase_exec_info_content): Don't
3675 declare.
3676 * tui/tui-winsource.c (tui_source_window_base::refresh_all): Don't
3677 call tui_erase_exec_info_content.
3678 (tui_clear_exec_info_content): Rename from
3679 tui_erase_exec_info_content.
3680 (tui_clear_exec_info_content): Delete.
3681
3682 2019-08-13 Tom Tromey <tom@tromey.com>
3683
3684 * tui/tui-winsource.h (struct tui_source_window_base)
3685 <show_exec_info_content>: Declare.
3686 (tui_show_exec_info_content): Don't declare.
3687 * tui/tui-winsource.c
3688 (tui_source_window_base::show_exec_info_content): Rename from
3689 tui_show_exec_info_content.
3690 (tui_source_window_base::update_exec_info): Update.
3691
3692 2019-08-13 Tom Tromey <tom@tromey.com>
3693
3694 * tui/tui-data.h (enum tui_bp_flag, tui_bp_flags, struct tui_source_element)
3695 (TUI_BP_HIT_POS, TUI_BP_BREAK_POS, TUI_EXEC_POS)
3696 (TUI_EXECINFO_SIZE, tui_exec_info_content): Move ...
3697 * tui/tui-winsource.h (enum tui_bp_flag, tui_bp_flags, struct
3698 tui_source_element, TUI_BP_HIT_POS, TUI_BP_BREAK_POS)
3699 (TUI_EXEC_POS, TUI_EXECINFO_SIZE, tui_exec_info_content):
3700 ... here.
3701
3702 2019-08-13 Tom Tromey <tom@tromey.com>
3703
3704 * tui/tui-winsource.h (struct tui_source_window_base)
3705 <update_exec_info>: Declare.
3706 (tui_update_exec_info): Don't declare.
3707 * tui/tui-winsource.c (tui_update_source_window_as_is)
3708 (tui_source_window_base::refresh_all)
3709 (tui_update_all_breakpoint_info): Update.
3710 (tui_source_window_base::update_exec_info): Rename from
3711 tui_update_exec_info.
3712 * tui/tui-stack.c (tui_show_frame_info): Update.
3713
3714 2019-08-13 Tom Tromey <tom@tromey.com>
3715
3716 * tui/tui-winsource.h (struct tui_source_window_base)
3717 <set_exec_info_content>: Declare.
3718 (tui_set_exec_info_content): Don't declare.
3719 * tui/tui-winsource.c
3720 (tui_source_window_base::set_exec_info_content): Rename from
3721 tui_set_exec_info_content.
3722 (tui_update_exec_info): Update.
3723
3724 2019-08-13 Tom Tromey <tom@tromey.com>
3725
3726 * tui/tui-winsource.h (struct tui_source_window_base)
3727 <show_source_content>: Declare.
3728 (tui_show_source_content): Don't declare.
3729 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
3730 (tui_source_window_base::show_source_content): Rename from
3731 tui_show_source_content.
3732 (tui_source_window_base::refresh_all): Update.
3733 * tui/tui-layout.c (show_source_disasm_command)
3734 (show_source_or_disasm_and_command): Update.
3735
3736 2019-08-13 Tom Tromey <tom@tromey.com>
3737
3738 * tui/tui-winsource.c (tui_erase_source_content)
3739 (tui_show_source_content, tui_source_window_base::refresh_all):
3740 Update.
3741 * tui/tui-wingeneral.h
3742 (tui_check_and_display_highlight_if_needed): Don't declare.
3743 * tui/tui-wingeneral.c
3744 (tui_win_info::check_and_display_highlight_if_needed): Rename from
3745 check_and_display_highlight_if_needed.
3746 * tui/tui-win.c (tui_rehighlight_all)
3747 (tui_win_info::make_visible_with_new_height): Update.
3748 * tui/tui-regs.c (tui_data_window::display_registers_from_line)
3749 (tui_data_window::erase_data_content)
3750 (tui_data_window::display_all_data): Update.
3751 * tui/tui-data.h (struct tui_win_info)
3752 <check_and_display_highlight_if_needed>: Declare.
3753
3754 2019-08-13 Tom Tromey <tom@tromey.com>
3755
3756 * tui/tui-win.c (tui_resize_all): Call
3757 tui_delete_invisible_windows.
3758 * tui/tui-layout.c (show_layout): Call
3759 tui_delete_invisible_windows.
3760 * tui/tui-data.h (tui_delete_invisible_windows): Declare.
3761 * tui/tui-data.c (tui_delete_invisible_windows): New function.
3762
3763 2019-08-13 Tom Tromey <tom@tromey.com>
3764
3765 * tui/tui-disasm.c (tui_show_disassem): Add assertion. Don't call
3766 tui_add_win_to_layout.
3767
3768 2019-08-13 Tom Tromey <tom@tromey.com>
3769
3770 * tui/tui-layout.h (tui_default_win_height): Don't declare.
3771 * tui/tui-layout.c (tui_default_win_height): Now static.
3772
3773 2019-08-13 Tom Tromey <tom@tromey.com>
3774
3775 * tui/tui-layout.c (show_layout): Unify all layout cases into a
3776 single switch.
3777 (show_source_disasm_command, show_source_or_disasm_and_command):
3778 Don't check current layout.
3779
3780 2019-08-13 Tom Tromey <tom@tromey.com>
3781
3782 * tui/tui-wingeneral.c (make_all_visible): Remove.
3783 (tui_make_all_invisible): Simplify.
3784 * tui/tui-layout.c (tui_make_all_invisible): Move from
3785 tui-wingeneral.c; simplify.
3786 (show_layout): Hoist call to tui_make_all_invisible.
3787 (show_data): Don't call tui_make_all_invisible.
3788
3789 2019-08-13 Tom Tromey <tom@tromey.com>
3790
3791 * tui/tui-wingeneral.h (tui_make_all_visible): Don't declare.
3792 * tui/tui-wingeneral.c (tui_make_all_visible): Remove.
3793
3794 2019-08-13 Tom Tromey <tom@tromey.com>
3795
3796 * tui/tui-layout.c (current_layout, tui_current_layout): Move from
3797 tui-data.c.
3798 (show_source_disasm_command, show_data)
3799 (show_source_or_disasm_and_command): Don't use
3800 tui_set_current_layout_to.
3801 * tui/tui-data.h (tui_set_current_layout_to): Don't declare.
3802 * tui/tui-data.c (current_layout, tui_current_layout): Move to
3803 tui-layout.c.
3804 (tui_set_current_layout_to): Remove.
3805
3806 2019-08-13 Tom Tromey <tom@tromey.com>
3807
3808 * tui/tui-layout.c (tui_set_layout): Update.
3809 * tui/tui-data.h (struct tui_layout_def): Remove.
3810 (tui_layout_def): Don't declare.
3811 * tui/tui-data.c (layout_def): Remove.
3812 (tui_layout_def): Remove.
3813
3814 2019-08-13 Tom Tromey <tom@tromey.com>
3815
3816 * tui/tui-winsource.h (struct tui_source_window_base)
3817 <clear_detail>: No longer "override".
3818 * tui/tui-regs.h (struct tui_data_window) <clear_detail>: Remove.
3819 * tui/tui-regs.c (tui_data_window::clear_detail): Remove.
3820 * tui/tui-data.h (struct tui_win_info) <clear_detail>: Remove.
3821 * tui/tui-command.h (struct tui_cmd_window) <clear_detail>:
3822 Remove.
3823 * tui/tui-command.c (tui_cmd_window::clear_detail): Remove.
3824
3825 2019-08-13 Tom Tromey <tromey@adacore.com>
3826
3827 * tracepoint.c: Don't include readline.h or history.h.
3828
3829 2019-08-12 Tom Tromey <tom@tromey.com>
3830
3831 * configure: Rebuild.
3832 * configure.ac: Check for readline 7.
3833 * NEWS: Mention readline 7 requirement.
3834 * README: Update.
3835
3836 2019-08-12 Tom Tromey <tom@tromey.com>
3837
3838 * mingw-hdep.c (gdb_select): Remove readline hack.
3839
3840 2019-08-09 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
3841
3842 * blockframe.c (find_pc_partial_function): Set *block to nullptr
3843 when the function fails.
3844
3845 2019-08-09 Andreas Arnez <arnez@linux.ibm.com>
3846
3847 * s390-tdep.c (s390_type_align): New function.
3848 (s390_gdbarch_init): Set it as type_align gdbarch method.
3849
3850 2019-08-09 Tom de Vries <tdevries@suse.de>
3851
3852 PR gdb/24591
3853 * dwarf2read.c (dwarf2_fetch_die_loc_sect_off): Adjust pc_high and
3854 pc_low with relocation offset.
3855
3856 2019-08-07 Tom Tromey <tromey@adacore.com>
3857
3858 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
3859 (print_frame_args): Update.
3860 * python/py-framefilter.c (py_print_single_arg, enumerate_args):
3861 Update.
3862 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
3863 * frame.h (struct frame_arg): Add initializers.
3864 <error>: Now a unique_xmalloc_ptr.
3865
3866 2019-08-07 Alan Hayward <alan.hayward@arm.com>
3867
3868 * NEWS: Expand the Pointer Authentication entry.
3869 * aarch64-tdep.c (aarch64_frame_unmask_address): Rename from this.
3870 (aarch64_frame_unmask_lr): ... to this.
3871 (aarch64_prologue_prev_register, aarch64_dwarf2_prev_register):
3872 Call aarch64_frame_unmask_lr.
3873 * frame.c (struct frame_info): Add "masked" variable.
3874 (frame_set_previous_pc_masked) (frame_get_pc_masked): New functions.
3875 (fprint_frame): Check for masked pc.
3876 * frame.h (frame_set_previous_pc_masked) (frame_get_pc_masked): New
3877 declarations.
3878 * python/py-framefilter.c (py_print_frame): Check for masked pc.
3879 * stack.c (print_frame): Check for masked pc.
3880
3881 2019-08-06 Tom Tromey <tom@tromey.com>
3882
3883 * stabsread.c (patch_block_stabs, read_one_struct_field)
3884 (read_enum_type): Use obstack_strndup.
3885 * rust-exp.y (rust_parser::copy_name): Use obstack_strndup.
3886 * gdb_obstack.h (obstack_strndup): Use obstack_strndup.
3887 * dwarf2read.c (guess_full_die_structure_name)
3888 (anonymous_struct_prefix): Use obstack_strndup.
3889 * dbxread.c (cp_set_block_scope): Use obstack_strndup.
3890 * c-exp.y (yylex): Use obstack_strndup.
3891 * ada-exp.y (write_object_renaming, write_ambiguous_var)
3892 (write_var_or_type): Use obstack_strndup.
3893
3894 2019-08-06 Tom Tromey <tom@tromey.com>
3895
3896 * symfile.c (reread_symbols): Use obstack_strdup.
3897 * stabsread.c (read_type): Use obstack_strdup.
3898 * gdb_obstack.h (obstack_strdup): New overload.
3899 * dwarf2read.c (dwarf2_compute_name, create_dwo_unit_in_dwp_v1)
3900 (create_dwo_unit_in_dwp_v2, build_error_marker_type)
3901 (dwarf2_canonicalize_name): Use obstack_strdup.
3902 * dbxread.c (read_dbx_symtab): Use obstack_strdup.
3903 * cp-support.c (inspect_type, replace_typedefs_qualified_name):
3904 Use obstack_strdup.
3905
3906 2019-08-06 Tom Tromey <tom@tromey.com>
3907
3908 * gdb_obstack.h (obstack_strdup): Define.
3909 * gdb_obstack.c (obstack_strdup): Don't define.
3910
3911 2019-08-06 Tom Tromey <tom@tromey.com>
3912
3913 * xcoffread.c (SYMNAME_ALLOC, process_xcoff_symbol): Use
3914 obstack_strdup.
3915 * typeprint.c (typedef_hash_table::find_global_typedef): Use
3916 obstack_strdup.
3917 * symfile.c (allocate_compunit_symtab): Use obstack_strdup.
3918 * stabsread.c (common_block_start): Use obstack_strdup.
3919 * objfiles.c (set_objfile_main_name, objfile): Use
3920 obstack_strdup.
3921 * namespace.c (add_using_directive): Use obstack_strdup.
3922 * mdebugread.c (parse_symbol, parse_type): Use obstack_strdup.
3923 * jit.c (finalize_symtab): Use obstack_strdup.
3924 * dwarf2read.c (fixup_go_packaging, dwarf2_physname)
3925 (guess_partial_die_structure_name, partial_die_info::fixup)
3926 (dwarf2_name): Use obstack_strdup.
3927 * coffread.c (coff_read_struct_type, coff_read_enum_type): Use
3928 obstack_strdup.
3929 * c-exp.y (scan_macro_expansion): Use obstack_strdup.
3930 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
3931 obstack_strdup.
3932 * ada-lang.c (ada_decode_symbol): Use obstack_strdup.
3933
3934 2019-08-07 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3935
3936 * unittests/help-doc-selftests.c: New file.
3937 * Makefile.in: Add the new file.
3938
3939 2019-08-07 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3940
3941 * cli/cli-decode.h (print_doc_line): Add for_value_prefix argument.
3942 * cli/cli-decode.c (print_doc_line): Likewise. It now prints
3943 the full first line, except when FOR_VALUE_PREFIX. In this case,
3944 the trailing '.' is not output, and the first character is uppercased.
3945 (print_help_for_command): Update call to print_doc_line.
3946 (print_doc_of_command): Likewise.
3947 * cli/cli-setshow.c (deprecated_show_value_hack): Likewise.
3948 * cli/cli-option.c (append_indented_doc): Do not append newline.
3949 (build_help_option): Append newline after first appended_indented_doc
3950 only if a second call is done.
3951 (build_help): Append 2 new lines before each option, except the first
3952 one.
3953 * compile/compile.c (_initialize_compile): Add new lines after
3954 %OPTIONS%, when not at the end of the help.
3955 Change help doc or code
3956 producing the help doc to respect the invariants.
3957 * maint-test-options.c (_initialize_maint_test_options): Likewise.
3958 Also removed the new line after 'Options:', as all other commands
3959 do not put an empty line between 'Options:' and the first option.
3960 * printcmd.c (_initialize_printcmd): Likewise.
3961 * stack.c (_initialize_stack): Likewise.
3962 * interps.c (interpreter_exec_cmd): Fix "Usage:" line that was
3963 incorrectly telling COMMAND is optional.
3964 * ada-lang.c (_initialize_ada_language): Change help doc or code
3965 producing the help doc to respect the invariants.
3966 * ada-tasks.c (_initialize_ada_tasks): Likewise.
3967 * breakpoint.c (_initialize_breakpoint): Likewise.
3968 * cli/cli-cmds.c (_initialize_cli_cmds): Likewise.
3969 * cli/cli-logging.c (_initialize_cli_logging): Likewise.
3970 * cli/cli-setshow.c (_initialize_cli_setshow): Likewise.
3971 * cli/cli-style.c (cli_style_option::add_setshow_commands,
3972 _initialize_cli_style): Likewise.
3973 * corelow.c (core_target_info): Likewise.
3974 * dwarf-index-cache.c (_initialize_index_cache): Likewise.
3975 * dwarf2read.c (_initialize_dwarf2_read): Likewise.
3976 * filesystem.c (_initialize_filesystem): Likewise.
3977 * frame.c (_initialize_frame): Likewise.
3978 * gnu-nat.c (add_task_commands): Likewise.
3979 * infcall.c (_initialize_infcall): Likewise.
3980 * infcmd.c (_initialize_infcmd): Likewise.
3981 * interps.c (_initialize_interpreter): Likewise.
3982 * language.c (_initialize_language): Likewise.
3983 * linux-fork.c (_initialize_linux_fork): Likewise.
3984 * maint-test-settings.c (_initialize_maint_test_settings): Likewise.
3985 * maint.c (_initialize_maint_cmds): Likewise.
3986 * memattr.c (_initialize_mem): Likewise.
3987 * printcmd.c (_initialize_printcmd): Likewise.
3988 * python/lib/gdb/function/strfns.py (_MemEq, _StrLen, _StrEq,
3989 _RegEx): Likewise.
3990 * ravenscar-thread.c (_initialize_ravenscar): Likewise.
3991 * record-btrace.c (_initialize_record_btrace): Likewise.
3992 * record-full.c (_initialize_record_full): Likewise.
3993 * record.c (_initialize_record): Likewise.
3994 * regcache-dump.c (_initialize_regcache_dump): Likewise.
3995 * regcache.c (_initialize_regcache): Likewise.
3996 * remote.c (add_packet_config_cmd, init_remote_threadtests,
3997 _initialize_remote): Likewise.
3998 * ser-tcp.c (_initialize_ser_tcp): Likewise.
3999 * serial.c (_initialize_serial): Likewise.
4000 * skip.c (_initialize_step_skip): Likewise.
4001 * source.c (_initialize_source): Likewise.
4002 * stack.c (_initialize_stack): Likewise.
4003 * symfile.c (_initialize_symfile): Likewise.
4004 * symtab.c (_initialize_symtab): Likewise.
4005 * target-descriptions.c (_initialize_target_descriptions): Likewise.
4006 * top.c (init_main): Likewise.
4007 * tracefile-tfile.c (tfile_target_info): Likewise.
4008 * tracepoint.c (_initialize_tracepoint): Likewise.
4009 * tui/tui-win.c (_initialize_tui_win): Likewise.
4010 * utils.c (add_internal_problem_command): Likewise.
4011 * valprint.c (value_print_option_defs): Likewise.
4012
4013 2019-08-06 Frank Ch. Eigler <fche@redhat.com>
4014
4015 PR build/24886
4016 * configure.ac: Drop enable-libmcheck support.
4017 * configure, config.in: Rebuild.
4018 * libmcheck.m4: Remove.
4019 * acinclude.m4: Don't include it.
4020 * Makefile.in: Don't distribute it.
4021 * top.c (print_gdb_configuration): Don't mention it.
4022
4023 2019-08-06 Tom Tromey <tom@tromey.com>
4024
4025 * utils.c (set_output_style): Sometimes pass stream to
4026 emit_style_escape.
4027 * ui-out.h (class ui_out) <can_emit_style_escape>: Declare.
4028 * record-btrace.c (btrace_insn_history): Update.
4029 * mi/mi-out.h (class mi_ui_out) <can_emit_style_escape>: New
4030 method.
4031 * disasm.h (gdb_pretty_print_disassembler): Add uiout parameter.
4032 Update initializers.
4033 <m_uiout>: New field.
4034 <m_di>: Move lower.
4035 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
4036 Remove "uiout" parameter.
4037 (dump_insns): Update.
4038 * cli-out.h (class cli_ui_out) <can_emit_style_escape>: Declare.
4039 * cli-out.c (cli_ui_out::can_emit_style_escape): New method.
4040
4041 2019-08-06 Christian Biesinger <cbiesinger@google.com>
4042
4043 * symtab.c (symbol_cache_lookup): Change int to enum block_enum.
4044 (error_in_psymtab_expansion): Likewise.
4045 (lookup_symbol_via_quick_fns): Likewise.
4046 (basic_lookup_transparent_type_quick): Likewise.
4047 (basic_lookup_transparent_type_1): Likewise.
4048
4049 2019-08-06 Tom Tromey <tromey@adacore.com>
4050
4051 * source.c (last_source_error): Now bool.
4052 (print_source_lines_base): Make "noprint" bool. Only open
4053 source file when last_source_visited changes.
4054
4055 2019-08-06 Tom Tromey <tromey@adacore.com>
4056
4057 * annotate.c (annotate_source_line): Use g_source_cache.
4058 * source-cache.c (source_cache::get_plain_source_lines): Change
4059 parameters. Populate m_offset_cache.
4060 (source_cache::ensure): New method.
4061 (source_cache::get_line_charpos): New method.
4062 (extract_lines): Move lower. Change parameters.
4063 (source_cache::get_source_lines): Move lower.
4064 * source-cache.h (class source_cache): Update comment.
4065 <get_line_charpos>: New method.
4066 <get_source_lines>: Update comment.
4067 <clear>: Clear m_offset_cache.
4068 <get_plain_source_lines>: Change parameters.
4069 <ensure>: New method
4070 <m_offset_cache>: New member.
4071 * source.c (forget_cached_source_info_for_objfile): Update.
4072 (info_source_command): Use g_source_cache.
4073 (find_source_lines, open_source_file_with_line_charpos): Remove.
4074 (print_source_lines_base, search_command_helper): Use g_source_cache.
4075 * source.h (open_source_file_with_line_charpos): Don't declare.
4076 * symtab.h (struct symtab) <nlines, line_charpos>: Remove.
4077 * tui/tui-source.c (tui_source_window::do_scroll_vertical):
4078 Use g_source_cache.
4079
4080 2019-08-06 Tom Tromey <tromey@adacore.com>
4081
4082 * source-cache.c (source_cache::get_plain_source_lines):
4083 Remove "first_line" and "last_line" parameters.
4084 (source_cache::get_source_lines): Cache plain text.
4085 * source-cache.h (class source_cache)
4086 <get_plain_source_lines>: Update.
4087
4088 2019-08-06 Tom Tromey <tromey@adacore.com>
4089
4090 * source-cache.c (extract_lines): No longer a method.
4091 Changed type of parameter. Include final newline.
4092 (selftests::extract_lines_test): New function.
4093 (_initialize_source_cache): Likewise.
4094 * source-cache.h (class source_cache)
4095 <extract_lines>: Don't declare.
4096
4097 2019-08-06 Tom Tromey <tromey@adacore.com>
4098
4099 * breakpoint.c (init_breakpoint_sal): Update.
4100 (breakpoint): Update.
4101 * breakpoint.h (struct breakpoint) <filter>: Now a
4102 unique_xmalloc_ptr.
4103
4104 2019-08-05 Christian Biesinger <cbiesinger@google.com>
4105
4106 * NEWS: Mention dictionary access on blocks.
4107 * python/py-block.c (blpy_getitem): New function.
4108 (block_object_as_mapping): New struct.
4109 (block_object_type): Use new struct for tp_as_mapping field.
4110
4111 2019-08-05 Christian Biesinger <cbiesinger@google.com>
4112
4113 * objfiles.h (objfile): Add a comment describing partial symbols.
4114
4115 2019-08-05 Tom Tromey <tromey@adacore.com>
4116
4117 * compile/compile.c (_initialize_compile): Use _(), not N_().
4118 * thread.c (_initialize_thread): Use _(), not N_().
4119 * stack.c (_initialize_stack): Use _(), not N_().
4120 * printcmd.c (_initialize_printcmd): Use _(), not N_().
4121
4122 2019-08-04 Simon Marchi <simon.marchi@polymtl.ca>
4123
4124 * dwarf2read.c (struct dw2_symtab_iterator):
4125 <want_specific_block>: Remove.
4126 <block_index>: Change type to gdb::optional.
4127 (dw2_symtab_iter_init): Remove WANT_SPECIFIC_BLOCK parameter,
4128 change type of BLOCK_INDEX parameter to gdb::optional.
4129 (dw2_symtab_iter_next): Re-write in function of gdb::optional.
4130 (dw2_lookup_symbol): Don't pass argument for
4131 WANT_SPECIFIC_BLOCK.
4132 (dw2_expand_symtabs_for_function): Don't pass argument for
4133 WANT_SPECIFIC_BLOCK, pass empty optional for BLOCK_INDEX.
4134 (class dw2_debug_names_iterator)
4135 <dw2_debug_names_iterator>: Remove WANT_SPECIFIC_BLOCK
4136 parameter, change BLOCK_INDEX type to gdb::optional.
4137 <m_want_specific_block>: Remove.
4138 <m_block_index>: Change type to gdb::optional.
4139 (dw2_debug_names_iterator::next): Change type of IS_STATIC to
4140 gdb::optional. Re-write in function of gdb::optional.
4141 (dw2_debug_names_lookup_symbol): Don't pass argument for
4142 WANT_SPECIFIC_BLOCK.
4143 (dw2_debug_names_expand_symtabs_for_function): Don't pass
4144 argument for WANT_SPECIFIC_BLOCK, pass empty optional for
4145 BLOCK_INDEX.
4146
4147 2019-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4148
4149 * NEWS: Mention changes to "info sources" command.
4150
4151 2019-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4152
4153 * symtab.c (filename_partial_match_opts): New struct type.
4154 (struct output_source_filename_data): New members
4155 regexp, c_regexp, partial_match.
4156 (output_source_filename): Use new members to decide to print file.
4157 (info_sources_option_defs): New variable.
4158 (make_info_sources_options_def_group, print_info_sources_header,
4159 info_sources_command_completer):
4160 New functions.
4161 (info_sources_command): Read new optional arguments.
4162 (_initialize_symtab): Update info sources help.
4163
4164 2019-08-02 Alexandre Oliva <oliva@adacore.com>
4165
4166 * ada-lang.c (exception_support_info_v0): Renamed from...
4167 (default_exception_support_info): ... this. Create new
4168 definition for v1.
4169 (ada_has_this_exception_support): Look up catch_handlers_sym.
4170 (ada_exception_support_info_sniffer): Try v0 after default.
4171
4172 2019-08-01 Tom Tromey <tromey@adacore.com>
4173
4174 * ia64-libunwind-tdep.h (struct libunwind_descr): Include
4175 gdbarch.h.
4176
4177 2019-08-01 Christian Biesinger <cbiesinger@google.com>
4178
4179 * s12z-tdep.c: Fix include path for s12z-opc.h.
4180
4181 2019-08-01 Alan Hayward <alan.hayward@arm.com>
4182
4183 * NEWS: Require GNU make 3.82.
4184
4185 2019-07-16 Tom Tromey <tom@tromey.com>
4186
4187 * tui/tui-wingeneral.h (tui_copy_win, tui_box_win): Don't
4188 declare.
4189
4190 2019-07-30 Tom Tromey <tromey@adacore.com>
4191
4192 * block.c (contained_in): Remove BLOCK_FUNCTION check.
4193
4194 2019-07-30 Kevin Buettner <kevinb@redhat.com>
4195
4196 * printcmd.c (print_address_symbolic): Print negative offsets.
4197 (build_address_symbolic): Force signed arithmetic when computing
4198 offset.
4199
4200 2019-07-30 Christian Biesinger <cbiesinger@google.com>
4201
4202 PR/24474: Add a function to lookup static variables.
4203 * NEWS: Mention this new function.
4204 * python/py-symbol.c (gdbpy_lookup_static_symbol): New function.
4205 * python/python-internal.h (gdbpy_lookup_static_symbol): New function.
4206 * python/python.c (python_GdbMethods): Add new function.
4207
4208 2019-07-29 Christian Biesinger <cbiesinger@google.com>
4209
4210 * NEWS: Mention new functions Objfile.lookup_{global,static}_symbol.
4211 * python/py-objfile.c (objfpy_lookup_global_symbol): New function.
4212 (objfpy_lookup_static_symbol): New function.
4213 (objfile_object_methods): Add new functions.
4214
4215 2019-07-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4216
4217 * NEWS: Mention 'set|show print frame-info'. Mention new
4218 'presence' value for 'frame-arguments'. Mention new '-frame-info'
4219 backtrace argument. Mention that python frame filtering code
4220 is now consistent with what 'backtrace' command prints.
4221
4222 2019-07-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4223
4224 * frame.h (enum print_what): New value 'SHORT_LOCATION', update
4225 comments.
4226 (print_frame_info_auto, print_frame_info_source_line,
4227 print_frame_info_location, print_frame_info_source_and_location,
4228 print_frame_info_location_and_address, print_frame_info_short_location):
4229 New declarations.
4230 (struct frame_print_options): New member print_frame_info.
4231 * extension.h (enum ext_lang_frame_args): New value CLI_PRESENCE.
4232 * stack.h (get_user_print_what_frame_info): New declaration.
4233 (frame_show_address): New declaration.
4234 * stack.c (print_frame_arguments_choices): New value 'presence'.
4235 (print_frame_info_auto, print_frame_info_source_line,
4236 print_frame_info_location, print_frame_info_source_and_location,
4237 print_frame_info_location_and_address, print_frame_info_short_location,
4238 print_frame_info_choices, print_frame_info_print_what): New definitions.
4239 (print_frame_args): Only print dots for args if print frame-arguments
4240 is 'presence'.
4241 (frame_print_option_defs): New element for "frame-info".
4242 (get_user_print_what_frame_info): New function.
4243 (frame_show_address): Make non static. Move comment to stack.h.
4244 (print_frame_info_to_print_what): New function.
4245 (print_frame_info): Update comment. Use fp_opts.print_frame_info
4246 to decide what to print.
4247 (backtrace_command_1): Handle the new print_frame_arguments_presence
4248 value.
4249 (_initialize_stack): Call add_setshow_enum_cmd for frame-info.
4250 * python/py-framefilter.c (py_print_args): Handle CLI_PRESENCE.
4251 (py_print_frame): In non-mi mode, use LOCATION as default for
4252 print_what, similarly to frame information printed directly by
4253 backtrace command. Handle frame-info user option in non MI mode.
4254
4255 2019-07-27 Kevin Buettner <kevinb@redhat.com>
4256
4257 * linux-thread-db.c (thread_db_target::thread_handle_to_thread_info):
4258 Add case for debugging 32-bit target on 64-bit host. Revise
4259 comment.
4260
4261 2019-07-27 Kevin Buettner <kevinb@redhat.com>
4262
4263 * infrun.c (fill_in_stop_func): Use find_pc_partial_function
4264 instead of find_function_entry_range_from_pc.
4265
4266 2019-07-27 Kevin Buettner <kevinb@redhat.com>
4267
4268 * stack.c (find_frame_funname): Remove code which preferred
4269 minsym over symtab sym in "certain pathological cases".
4270
4271 * valprint.h (build_address_symbolic): Add "prefer_sym_over_minsym"
4272 parameter. Change type of "do_demangle" to bool.
4273 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
4274 Pass suitable "prefer_sym_over_minsym" flag to
4275 build_address_symbolic(). Don't output "+" for negative offsets.
4276 * printcmd.c (print_address_symbolic): Update invocation of
4277 build_address_symbolic to include a "prefer_sym_over_minsym"
4278 flag.
4279 (build_address_symbolic): Add "prefer_sym_over_minsym" parameter.
4280 Restrict cases in which use of minimal symbol is preferred to that
4281 of a found symbol. Update comments.
4282
4283 * dwarf2-frame.c (dwarf2_frame_cache): Don't decode FDE instructions
4284 for entry pc when entry pc is out of range for that FDE.
4285
4286 2019-07-26 Brian Callahan <bcallah@openbsd.org>
4287
4288 PR gdb/24839:
4289 * gdb/obsd-nat.c (obsd_nat_target::pid_to_str): Fix typo in return
4290 type.
4291
4292 2019-07-25 Christian Biesinger <cbiesinger@google.com>
4293
4294 * python/py-objfile.c (add_separate_debug_file): Fix comment about
4295 this function's Python signature.
4296
4297
4298 2019-07-24 Christian Biesinger <cbiesinger@google.com>
4299
4300 * compile/compile-object-load.c (compile_object_load): Pass GLOBAL_SCOPE.
4301 * solib-spu.c (spu_lookup_lib_symbol): Pass GLOBAL_SCOPE.
4302 * solib-svr4.c (elf_lookup_lib_symbol): Pass GLOBAL_SCOPE.
4303 * symtab.c (lookup_global_symbol_from_objfile): Add a scope parameter.
4304 * symtab.h (lookup_global_symbol_from_objfile): Likewise.
4305
4306
4307 2019-07-24 Yoshinori Sato <ysato@users.sourceforge.jp>
4308
4309 * h8300-tdep.c (h8300_register_name_common): New.
4310 h8300_register_name): Use h8300_register_name_common.
4311 (h8300s_register_name): Likewise.
4312 (h8300sx_register_name): Likewise.
4313 (h8300h_register_nam): New.
4314 (h8300_gdbarch_init): Use h8300h_register_name in h8300h machine.
4315
4316
4317 2019-07-23 Srinath Parvathaneni <srinath.parvathaneni@arm.com>
4318
4319 * arm-tdep.c (arm_skip_cmse_entry): New function.
4320 (arm_is_sgstubs_section): New function.
4321 (arm_skip_stub): Add call to arm_skip_cmse_entry function.
4322
4323 2019-07-22 Tom Tromey <tom@tromey.com>
4324
4325 * tui/tui-win.c (tui_win_info::make_invisible_and_set_new_height):
4326 Don't self-assign.
4327
4328 2019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
4329
4330 * c-typeprint.c (c_print_typedef): Pass -1 instead of 0 to
4331 type_print.
4332
4333 2019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
4334
4335 * symtab.c (search_symbols): Adjust msymbol matching type arrays
4336 so that GDB doesn't match any msymbols when searching in the
4337 TYPES_DOMAIN.
4338 (print_symbol_info): Print using typedef_print or type_print based
4339 on the type of the symbol. Add updated FIXME comment moved from...
4340 (_initialize_symtab): ... move and update FIXME comment to above.
4341
4342 2019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
4343
4344 * NEWS: Mention adding -q option to "info types".
4345 * symtab.c (struct info_types_options): New struct.
4346 (info_types_options_defs): New variable.
4347 (make_info_types_options_def_group): New function.
4348 (info_types_command): Use gdb::option framework to parse options.
4349 (info_types_command_completer): New function.
4350 (_initialize_symtab): Extend the help text on "info types" and
4351 register command completer.
4352
4353 2019-07-21 Christian Biesinger <cbiesinger@google.com>
4354
4355 * symtab.c (lookup_symbol_in_objfile_symtabs): Change int to block_enum.
4356 (lookup_symbol_in_objfile): Change int to block_enum and add a
4357 gdb_assert to make sure block_index is GLOBAL_BLOCK or STATIC_BLOCK.
4358
4359 2019-07-20 Christian Biesinger <cbiesinger@google.com>
4360
4361 * MAINTAINERS (Write After Approval): Add self.
4362
4363 2019-07-19 Andrew Burgess <andrew.burgess@embecosm.com>
4364
4365 * riscv-tdep.c (riscv_push_dummy_code): Write a 4-byte nop
4366 instruction to the dummy code region.
4367
4368 2019-07-19 Tom Tromey <tromey@adacore.com>
4369
4370 * contrib/ari/gdb_ari.sh: Mention C++11, not ISO C 90.
4371 (ARGSUSED, PARAMS, __func__): Remove rules.
4372
4373 2019-07-19 Alan Hayward <alan.hayward@arm.com>
4374
4375 * arm-tdep.c (_initialize_arm_tdep): Remove xml tests.
4376 * features/arm/arm-with-iwmmxt.c: Remove.
4377 * features/arm/arm-with-iwmmxt.xml: Remove.
4378 * features/arm/arm-with-m-fpa-layout.c: Remove.
4379 * features/arm/arm-with-m-fpa-layout.xml: Remove.
4380 * features/arm/arm-with-m-vfp-d16.c: Remove.
4381 * features/arm/arm-with-m-vfp-d16.xml: Remove.
4382 * features/arm/arm-with-m.c: Remove.
4383 * features/arm/arm-with-m.xml: Remove.
4384 * features/arm/arm-with-neon.c: Remove.
4385 * features/arm/arm-with-neon.xml: Remove.
4386 * features/arm/arm-with-vfpv2.c: Remove.
4387 * features/arm/arm-with-vfpv2.xml: Remove.
4388 * features/arm/arm-with-vfpv3.c: Remove.
4389 * features/arm/arm-with-vfpv3.xml: Remove.
4390
4391 2019-07-19 Alan Hayward <alan.hayward@arm.com>
4392
4393 * arm-tdep.c (_initialize_arm_tdep): Add xml regression tests.
4394
4395 2019-07-19 Alan Hayward <alan.hayward@arm.com>
4396
4397 * arch/aarch32.c (aarch32_create_target_description): Create
4398 target descriptions using features.
4399 * arch/arm.c (arm_create_target_description)
4400 (arm_create_mprofile_target_description): Likewise.
4401 * arm-tdep.c (_initialize_arm_tdep): Remove tdesc init calls.
4402
4403 2019-07-19 Alan Hayward <alan.hayward@arm.com>
4404
4405 * Makefile.in: Add new files.
4406 * aarch32-tdep.c: New file.
4407 * aarch32-tdep.h: New file.
4408 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
4409 Call aarch32_read_description.
4410 * arch/aarch32.c: New file.
4411 * arch/aarch32.h: New file.
4412 * arch/arm.c (arm_create_target_description)
4413 (arm_create_mprofile_target_description): New function.
4414 * arch/arm.h (arm_fp_type, arm_m_profile_type): New enum.
4415 (arm_create_target_description)
4416 (arm_create_mprofile_target_description): New declaration.
4417 * arm-fbsd-tdep.c (arm_fbsd_read_description_auxv): Call
4418 read_description functions.
4419 * arm-linux-nat.c (arm_linux_nat_target::read_description):
4420 Likewise.
4421 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
4422 * arm-tdep.c (tdesc_arm_list): New variable.
4423 (arm_register_g_packet_guesses): Call create description functions.
4424 (arm_read_description) (arm_read_mprofile_description): New
4425 function.
4426 * arm-tdep.h (arm_read_description)
4427 (arm_read_mprofile_description): Add declaration.
4428 * configure.tgt: Add new files.
4429
4430 2019-07-18 Guillaume LABARTHE <guillaume.labarthe@gmail.com>
4431
4432 * top.c (new_ui_command): Open specified terminal just once.
4433
4434 2019-07-18 Tom Tromey <tromey@adacore.com>
4435
4436 * symtab.c (main_name): Constify return type.
4437 * symfile.c (set_initial_language): Update.
4438 * symtab.h (main_name): Constify return type.
4439
4440 2019-07-17 Tom Tromey <tom@tromey.com>
4441
4442 * tui/tui-winsource.c (tui_update_source_window)
4443 (tui_update_source_window_as_is)
4444 (tui_update_source_windows_with_line): Remove return.
4445 * tui/tui-disasm.c (tui_show_disassem)
4446 (tui_show_disassem_and_update_source): Remove return.
4447 * tui/tui.c (tui_reset): Remove return.
4448 * tui/tui-wingeneral.c
4449 (tui_check_and_display_highlight_if_needed): Remove return.
4450
4451 2019-07-17 Tom Tromey <tom@tromey.com>
4452
4453 * tui/tui-win.c (parse_scrolling_args): Throw separate errors.
4454
4455 2019-07-17 Tom Tromey <tom@tromey.com>
4456
4457 * tui/tui-winsource.h (struct tui_exec_info_window)
4458 (struct tui_source_window_base): Move from tui-data.h.
4459 * tui/tui-winsource.c: Move many method definitions from
4460 elsewhere. Remove "structuring" comments.
4461 * tui/tui-wingeneral.c (tui_source_window_base::make_visible)
4462 (tui_source_window_base::refresh_window): Move to
4463 tui-winsource.c.
4464 * tui/tui-win.c (tui_source_window_base::refresh_all)
4465 (tui_source_window_base::update_tab_width)
4466 (tui_source_window_base::set_new_height)
4467 (tui_source_window_base::do_make_visible_with_new_height): Move to
4468 tui-winsource.c.
4469 * tui/tui-source.h: Update.
4470 * tui/tui-source.c (tui_source_window_base::reset): Move to
4471 tui-winsource.c.
4472 * tui/tui-disasm.h: Update.
4473 * tui/tui-data.h (struct tui_exec_info_window): Move to
4474 tui-winsource.h.
4475 (struct tui_source_window_base): Likewise.
4476 * tui/tui-data.c (tui_source_window_base::clear_detail)
4477 (tui_source_window_base, ~tui_source_window_base): Move to
4478 tui-winsource.c.
4479
4480 2019-07-17 Tom Tromey <tom@tromey.com>
4481
4482 * tui/tui-win.c (tui_resize_all)
4483 (tui_source_window_base::update_tab_width)
4484 (tui_adjust_win_heights): Update.
4485 (tui_win_info::make_invisible_and_set_new_height): Rename from
4486 make_invisible_and_set_new_height.
4487 * tui/tui-data.h (struct tui_win_info)
4488 <make_invisible_and_set_new_height>: New method.
4489
4490 2019-07-17 Tom Tromey <tom@tromey.com>
4491
4492 * tui/tui.c: Update.
4493 * tui/tui-source.h (struct tui_source_window): Move from
4494 tui-data.h.
4495 * tui/tui-layout.c: Update.
4496 * tui/tui-disasm.c: Update.
4497 * tui/tui-data.h (struct tui_source_window): Move to
4498 tui-source.h.
4499
4500 2019-07-17 Tom Tromey <tom@tromey.com>
4501
4502 * tui/tui-disasm.h (struct tui_disasm_window): Move from
4503 tui-data.h.
4504 * tui/tui-data.h (struct tui_disasm_window): Move to
4505 tui-disasm.h.
4506
4507 2019-07-17 Tom Tromey <tom@tromey.com>
4508
4509 * tui/tui-regs.h (struct tui_data_item_window): Move from
4510 tui-data.h.
4511 * tui/tui-regs.c (tui_data_item_window): Move from tui-data.c.
4512 * tui/tui-data.h (struct tui_data_item_window): Move to
4513 tui-regs.h.
4514 * tui/tui-data.c (~tui_data_item_window): Move to tui-regs.c.
4515
4516 2019-07-17 Tom Tromey <tom@tromey.com>
4517
4518 * tui/tui.c: Update.
4519 * tui/tui-win.c (tui_cmd_window::do_make_visible_with_new_height)
4520 (tui_cmd_window::max_height): Move to tui-command.c.
4521 * tui/tui-layout.c: Update.
4522 * tui/tui-data.h (struct tui_cmd_window): Move to tui-command.h.
4523 * tui/tui-data.c (tui_cmd_window::clear_detail): Move to
4524 tui-command.c.
4525 * tui/tui-command.h (struct tui_cmd_window): Move from
4526 tui-data.h.
4527 * tui/tui-command.c: Remove "structuring" comments.
4528 (tui_cmd_window::clear_detail)
4529 (tui_cmd_window::do_make_visible_with_new_height)
4530 (tui_cmd_window::max_height): Move from elsewhere.
4531
4532 2019-07-17 Tom Tromey <tom@tromey.com>
4533
4534 * tui/tui-io.c (tui_dispatch_ctrl_char): Move from tui-command.c.
4535 Now static.
4536 * tui/tui-command.h (tui_dispatch_ctrl_char): Don't declare.
4537 * tui/tui-command.c (tui_dispatch_ctrl_char): Move to tui-io.c.
4538
4539 2019-07-17 Tom Tromey <tom@tromey.com>
4540
4541 * tui/tui.c: Update.
4542 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Move to
4543 tui-regs.c.
4544 * tui/tui-windata.h: Remove file.
4545 * tui/tui-windata.c: Remove file.
4546 * tui/tui-win.c (tui_data_window::set_new_height)
4547 (tui_data_window::do_make_visible_with_new_height): Move to
4548 tui-regs.c.
4549 * tui/tui-regs.h (struct tui_data_window): Move from tui-data.h.
4550 * tui/tui-regs.c: Remove "structuring" comments.
4551 (tui_data_window::first_data_item_displayed)
4552 (tui_data_window::delete_data_content_windows)
4553 (tui_data_window::erase_data_content)
4554 (tui_data_window::display_all_data)
4555 (tui_data_window::refresh_all)
4556 (tui_data_window::do_scroll_vertical)
4557 (tui_data_window::clear_detail, tui_data_window::set_new_height)
4558 (tui_data_window::do_make_visible_with_new_height)
4559 (tui_data_window::refresh_window): Move from elsewhere.
4560 (_initialize_tui_regs): Move to end of file.
4561 * tui/tui-layout.c: Update.
4562 * tui/tui-hooks.c: Update.
4563 * tui/tui-data.h (struct tui_data_window): Move to tui-regs.h.
4564 * tui/tui-data.c (tui_data_window::clear_detail): Move to
4565 tui-regs.c.
4566 * Makefile.in (SUBDIR_TUI_SRCS): Remove tui-windata.c.
4567
4568 2019-07-17 Tom Tromey <tom@tromey.com>
4569
4570 * tui/tui-io.c (tui_puts_internal): Call wrefresh if newline is
4571 seen.
4572
4573 2019-07-17 Tom Tromey <tom@tromey.com>
4574
4575 * tui/tui-win.c (tui_source_window_base::set_new_height)
4576 (tui_source_window_base::do_make_visible_with_new_height): Use
4577 m_has_locator field directly.
4578 * tui/tui-data.h (struct tui_win_info) <has_locator>: Remove
4579 method.
4580 (struct tui_source_window_base) <has_locator>: Likewise.
4581
4582 2019-07-17 Tom Tromey <tom@tromey.com>
4583
4584 * tui/tui-wingeneral.h (tui_make_visible, tui_make_invisible):
4585 Don't declare.
4586 * tui/tui-wingeneral.c (tui_make_visible, tui_make_invisible):
4587 Remove.
4588 * tui/tui-win.c (tui_source_window_base::set_new_height)
4589 (tui_source_window_base::set_new_height)
4590 (make_invisible_and_set_new_height)
4591 (tui_source_window_base::do_make_visible_with_new_height)
4592 (tui_source_window_base::do_make_visible_with_new_height):
4593 Update.
4594 * tui/tui-layout.c (show_source_disasm_command, show_data)
4595 (show_source_or_disasm_and_command): Update.
4596 * tui/tui-layout.c (show_layout): Update.
4597
4598 2019-07-17 Tom Tromey <tom@tromey.com>
4599
4600 * tui/tui-layout.c (make_data_window): Remove.
4601 (show_data): Unify creation and re-initialization cases.
4602
4603 2019-07-17 Tom Tromey <tom@tromey.com>
4604
4605 * tui/tui-layout.c (make_source_window, make_disasm_window):
4606 Remove.
4607 (show_data): Unify creation and re-initialization cases.
4608
4609 2019-07-17 Tom Tromey <tom@tromey.com>
4610
4611 * tui/tui-layout.c (make_command_window): Remove.
4612 (show_source_disasm_command, show_source_or_disasm_and_command):
4613 Unify creation and re-initialization cases.
4614
4615 2019-07-17 Tom Tromey <tom@tromey.com>
4616
4617 * tui/tui-layout.c (show_source_or_disasm_and_command): Unify
4618 creation and re-initialization cases.
4619
4620 2019-07-17 Tom Tromey <tom@tromey.com>
4621
4622 * tui/tui-regs.c (tui_get_register): Return void.
4623
4624 2019-07-17 Tom Tromey <tom@tromey.com>
4625
4626 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible):
4627 Simplify.
4628
4629 2019-07-17 Tom Tromey <tom@tromey.com>
4630
4631 * tui/tui-layout.c (show_source_disasm_command): Simplify window
4632 resetting.
4633
4634 2019-07-17 Tom Tromey <tom@tromey.com>
4635
4636 * tui/tui.h (tui_set_layout_by_name): Don't declare.
4637 * tui/tui-regs.c (tui_reg_layout): New function.
4638 (tui_show_registers, tui_reg_command): Use it.
4639 * tui/tui-layout.c (LAYOUT_USAGE): Remove.
4640 (tui_layout_command): Rename from tui_set_layout_by_name. Change
4641 parameters.
4642 (tui_layout_command): Remove.
4643
4644 2019-07-17 Tom Tromey <tom@tromey.com>
4645
4646 * tui/tui-layout.h (tui/tui-layout): Return void.
4647 * tui/tui-layout.c (tui_set_layout): Return void. Add assert.
4648
4649 2019-07-17 Tom Tromey <tom@tromey.com>
4650
4651 * tui/tui-layout.c (show_source_disasm_command, show_data):
4652 Update.
4653 (reset_locator): Remove.
4654 (show_source_or_disasm_and_command): Update.
4655
4656 2019-07-17 Tom Tromey <tom@tromey.com>
4657
4658 * tui/tui-source.c (tui_source_window_base::reset): Remove
4659 win_type parameter.
4660 * tui/tui-layout.c (make_command_window, make_source_window)
4661 (make_disasm_window, make_data_window)
4662 (show_source_disasm_command, show_data, tui_gen_win_info::reset)
4663 (reset_locator, show_source_or_disasm_and_command): Update.
4664 * tui/tui-data.h (struct tui_gen_win_info) <reset>: Remove
4665 win_type parameter.
4666 (struct tui_source_window_base) <reset>: Likewise.
4667
4668 2019-07-17 Tom Tromey <tom@tromey.com>
4669
4670 * tui/tui-layout.c (show_source_disasm_command): Use
4671 reset_locator.
4672 (reset_locator): New function.
4673 (init_and_make_win): Remove.
4674 (show_source_or_disasm_and_command): Use reset_locator.
4675
4676 2019-07-17 Tom Tromey <tom@tromey.com>
4677
4678 * tui/tui-winsource.c (tui_set_exec_info_content): Remove
4679 condition.
4680 * tui/tui-wingeneral.c (tui_source_window_base::make_visible):
4681 Remove condition.
4682 * tui/tui-source.c (tui_source_window_base::reset): New method.
4683 * tui/tui-layout.c (make_command_window): Don't call
4684 init_and_make_win.
4685 (make_source_window, make_disasm_window): Don't call
4686 make_source_or_disasm_window.
4687 (make_data_window): Don't call init_and_make_win. Change calling
4688 convention.
4689 (show_source_disasm_command, show_data): Simplify.
4690 (make_source_or_disasm_window): Remove.
4691 (show_source_or_disasm_and_command): Simplify.
4692 * tui/tui-data.h (struct tui_gen_win_info) <reset>: Now virtual.
4693 (struct tui_source_window_base) <reset>: Likewise.
4694 <execution_info>: Remove initializer.
4695 * tui/tui-data.c (tui_source_window_base): Initialize
4696 execution_info.
4697
4698 2019-07-17 Tom Tromey <tom@tromey.com>
4699
4700 * tui/tui-layout.c (tui_set_layout): Remove regs_populate
4701 variable.
4702
4703 2019-07-17 Tom Tromey <tom@tromey.com>
4704
4705 * tui/tui.c (tui_rl_other_window): Update.
4706 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Call
4707 superclass method first. Always iterate over regs_content.
4708 (tui_unhighlight_win, tui_highlight_win): Use refresh_window
4709 method.
4710 * tui/tui-win.c (tui_set_focus_command): Update.
4711
4712 2019-07-17 Tom Tromey <tom@tromey.com>
4713
4714 * tui/tui-win.c (tui_set_focus_command): Rename from
4715 tui_set_focus. Call tui_enable.
4716 (tui_set_focus_command): Remove.
4717
4718 2019-07-17 Tom Tromey <tom@tromey.com>
4719
4720 * tui/tui-winsource.c (tui_show_exec_info_content): Don't call
4721 refresh_window.
4722 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Call
4723 touchwin.
4724 (tui_data_window::refresh_window): Call refresh_window on data
4725 items. Always call superclass refresh_window.
4726 (tui_win_info::refresh): Remove.
4727 (tui_source_window_base::refresh_window): Update.
4728 (tui_refresh_all): Update.
4729 * tui/tui-layout.c (show_source_disasm_command): Remove call to
4730 refresh_window.
4731 (show_source_or_disasm_and_command): Likewise.
4732 * tui/tui-data.h (struct tui_win_info) <refresh>: Remove.
4733 (struct tui_source_window_base) <refresh>: Likewise.
4734
4735 2019-07-17 Tom Tromey <tom@tromey.com>
4736
4737 * tui/tui-winsource.c (tui_clear_source_content)
4738 (tui_show_source_content): Update.
4739 * tui/tui-source.c (tui_source_window::showing_source_p): Check
4740 whether content is empty.
4741 * tui/tui-data.h (struct tui_source_window_base) <content_in_use>:
4742 Remove.
4743
4744 2019-07-17 Tom Tromey <tom@tromey.com>
4745
4746 * tui/tui-winsource.c (tui_erase_source_content): Clear the
4747 window's contents.
4748 * tui/tui-source.h (tui_set_source_content_nil): Don't declare.
4749 * tui/tui-source.c (tui_set_source_content_nil): Remove.
4750
4751 2019-07-17 Tom Tromey <tom@tromey.com>
4752
4753 * tui/tui-data.h (UNDEFINED_ITEM): Remove define.
4754 (struct tui_data_item_window): Update.
4755
4756 2019-07-17 Tom Tromey <tom@tromey.com>
4757
4758 * tui/tui-data.h (MAX_CONTENT_COUNT, TUI_NULL_STR)
4759 (DEFAULT_HISTORY_COUNT, WITH_LOCATOR, NO_LOCATOR): Remove
4760 defines.
4761
4762 2019-07-17 Tom Tromey <tom@tromey.com>
4763
4764 * tui/tui-winsource.h (tui_erase_source_content)
4765 (tui_clear_source_content): Remove "display_prompt" parameter.
4766 * tui/tui-winsource.c (tui_update_source_window_as_is)
4767 (tui_update_source_windows_with_addr): Update.
4768 (tui_clear_source_content): Remove "display_prompt" parameter.
4769 (tui_erase_source_content): Likewise. Simplify.
4770 (tui_show_source_content): Update.
4771 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
4772 * tui/tui-stack.c (tui_show_frame_info): Update.
4773 * tui/tui-data.h (EMPTY_SOURCE_PROMPT, NO_EMPTY_SOURCE_PROMPT):
4774 Remove defines.
4775
4776 2019-07-17 Tom Tromey <tom@tromey.com>
4777
4778 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
4779 * tui/tui-disasm.h (tui_set_disassem_content): Add win_info
4780 parameter.
4781 * tui/tui-disasm.c (tui_set_disassem_content): Add win_info
4782 parameter.
4783
4784 2019-07-17 Tom Tromey <tom@tromey.com>
4785
4786 * tui/tui-winsource.c (tui_clear_source_content)
4787 (tui_show_source_content, tui_show_exec_info_content)
4788 (tui_clear_exec_info_content): Update.
4789 * tui/tui-stack.c (tui_show_locator_content): Update.
4790 (tui_show_frame_info): Update.
4791 * tui/tui-source.h (tui_source_window): Don't declare.
4792 * tui/tui-source.c (tui_source_window::showing_source_p): Rename
4793 from tui_source_is_displayed.
4794 * tui/tui-data.h (struct tui_gen_win_info) <content_in_use>:
4795 Remove field.
4796 (struct tui_source_window_base) <content_in_use>: New field. Now
4797 bool.
4798 (struct tui_source_window) <showing_source_p>: New method.
4799 (TUI_SRC_WIN): Change cast.
4800 * tui/tui-data.c (tui_initialize_static_data): Update.
4801
4802 2019-07-17 Tom Tromey <tom@tromey.com>
4803
4804 * tui/tui-winsource.c (tui_update_breakpoint_info): Use
4805 location_matches_p.
4806 * tui/tui-source.c (tui_source_window::location_matches_p): New
4807 method.
4808 * tui/tui-disasm.c (tui_disasm_window::location_matches_p): New
4809 method.
4810 * tui/tui-data.h (struct tui_source_window_base)
4811 <location_matches_p>: New method.
4812 (struct tui_source_window, struct tui_disasm_window)
4813 <location_matches_p>: Likewise.
4814
4815 2019-07-17 Tom Tromey <tom@tromey.com>
4816
4817 * tui/tui-win.c (tui_set_win_height_command): Rename from
4818 tui_set_win_height.
4819 (tui_set_win_height_command): Remove.
4820
4821 2019-07-17 Tom Tromey <tom@tromey.com>
4822
4823 * tui/tui-source.c (tui_source_window): New constructor. Add
4824 observer.
4825 (~tui_source_window): New destructor.
4826 (tui_source_window::style_changed): New method.
4827 * tui/tui-hooks.c (tui_redisplay_source): Remove.
4828 (tui_attach_detach_observers): Update.
4829 * tui/tui-data.h (struct tui_source_window): Make constructor not
4830 inline. Add destructor.
4831 (struct tui_source_window) <style_changed>: New method.
4832 <m_observable>: New member.
4833
4834 2019-07-17 Tom Tromey <tom@tromey.com>
4835
4836 * tui/tui-data.c (tui_clear_source_windows_detail): Fix typo.
4837 * tui/tui-win.c (tui_resize_all): Fix typo.
4838
4839 2019-07-17 Tom Tromey <tom@tromey.com>
4840
4841 * tui/tui-wingeneral.h (tui_refresh_all): Update.
4842 * tui/tui-wingeneral.c (make_all_visible): Use foreach.
4843 (tui_refresh_all): Remove "list" parameter. Use foreach.
4844 * tui/tui-win.c (window_name_completer): Use foreach.
4845 (tui_refresh_all_win, tui_rehighlight_all, tui_all_windows_info)
4846 (update_tab_width): Likewise.
4847 * tui/tui-layout.c (show_layout): Update.
4848 * tui/tui-data.h (class tui_window_iterator): New.
4849 (struct all_tui_windows): New.
4850 * tui/tui-data.c (tui_partial_win_by_name): Use foreach.
4851
4852 2019-07-17 Tom Tromey <tom@tromey.com>
4853
4854 * tui/tui-regs.c (tui_reg_next, tui_reg_prev): Add "current_group"
4855 parameter. Don't reference globals.
4856 (tui_reg_command): Update.
4857
4858 2019-07-17 Tom Tromey <tom@tromey.com>
4859
4860 * tui/tui-regs.c (tui_show_registers): Simplify.
4861
4862 2019-07-17 Tom Tromey <tom@tromey.com>
4863
4864 * tui/tui-regs.c (tui_show_registers): Update.
4865 (tui_show_register_group): Add win_info parameter.
4866
4867 2019-07-17 Tom Tromey <tom@tromey.com>
4868
4869 * tui/tui-regs.c (tui_data_window::display_reg_element_at_line):
4870 Rename from tui_display_reg_element_at_line.
4871 (tui_data_window::display_registers_from_line): Update.
4872 * tui/tui-data.h (struct tui_data_window)
4873 <display_reg_element_at_line>: New method.
4874
4875 2019-07-17 Tom Tromey <tom@tromey.com>
4876
4877 * tui/tui-regs.h (tui_display_registers_from)
4878 (tui_display_registers_from_line): Don't declare.
4879 * tui/tui-windata.c (tui_data_window::display_all_data)
4880 (tui_data_window::refresh_all)
4881 (tui_data_window::do_scroll_vertical): Update.
4882 * tui/tui-regs.c (tui_data_window::display_registers_from): Rename
4883 from tui_display_registers_from.
4884 (tui_display_reg_element_at_line): Update.
4885 (tui_data_window::display_registers_from_line): Rename from
4886 tui_display_registers_from_line.
4887 * tui/tui-data.h (struct tui_data_window) <display_registers_from,
4888 display_registers_from_line>: New methods.
4889
4890 2019-07-17 Tom Tromey <tom@tromey.com>
4891
4892 * tui/tui-windata.h (tui_erase_data_content): Don't declare.
4893 * tui/tui-windata.c (tui_data_window::erase_data_content): Rename
4894 from tui_erase_data_content.
4895 (tui_data_window::display_all_data)
4896 (tui_data_window::refresh_all)
4897 (tui_data_window::do_scroll_vertical): Update.
4898 * tui/tui-regs.c (tui_show_registers): Update.
4899 * tui/tui-data.h (struct tui_data_window) <erase_data_content>:
4900 New method.
4901
4902 2019-07-17 Tom Tromey <tom@tromey.com>
4903
4904 * tui/tui-windata.h (tui_delete_data_content_windows): Don't
4905 declare.
4906 * tui/tui-windata.c
4907 (tui_data_window::delete_data_content_windows): Rename from
4908 tui_delete_data_content_windows.
4909 (tui_data_window::display_all_data)
4910 (tui_data_window::do_scroll_vertical): Update.
4911 * tui/tui-data.h (struct tui_data_window)
4912 <delete_data_content_windows>: New method.
4913
4914 2019-07-17 Tom Tromey <tom@tromey.com>
4915
4916 * tui/tui-windata.h (tui_refresh_data_win): Don't declare.
4917 * tui/tui-regs.h (tui_first_reg_element_inline): Don't declare.
4918
4919 2019-07-17 Tom Tromey <tom@tromey.com>
4920
4921 * tui/tui-windata.h (tui_display_all_data): Don't declare.
4922 * tui/tui-windata.c (tui_data_window::display_all_data): Rename
4923 from tui_display_all_data.
4924 * tui/tui-win.c
4925 (tui_data_window::do_make_visible_with_new_height): Update.
4926 * tui/tui-regs.c (tui_show_registers): Update.
4927 * tui/tui-layout.c (tui_set_layout): Update.
4928 * tui/tui-data.h (struct tui_data_window) <display_all_data>: New
4929 method.
4930
4931 2019-07-17 Tom Tromey <tom@tromey.com>
4932
4933 * tui/tui-windata.h (tui_display_data_from): Don't declare.
4934 * tui/tui-windata.c (tui_display_data_from): Remove.
4935 (tui_data_window::refresh_all): Update.
4936
4937 2019-07-17 Tom Tromey <tom@tromey.com>
4938
4939 * tui/tui-windata.h (tui_display_data_from_line): Don't declare.
4940 * tui/tui-windata.c (tui_display_data_from_line): Remove.
4941 (tui_display_data_from, tui_data_window::do_scroll_vertical): Call
4942 tui_display_registers_from_line.
4943 * tui/tui-regs.h (tui_display_registers_from_line): Update.
4944 * tui/tui-regs.c (tui_display_registers_from_line): Remove
4945 "force_display" parameter.
4946
4947 2019-07-17 Tom Tromey <tom@tromey.com>
4948
4949 * tui/tui-regs.h (tui_first_reg_element_no_inline): Don't
4950 declare.
4951 * tui/tui-regs.c (tui_data_window::first_reg_element_no_inline):
4952 Rename from tui_first_reg_element_no_inline.
4953 (tui_display_reg_element_at_line)
4954 (tui_display_registers_from_line): Update.
4955 * tui/tui-data.h (struct tui_data_window)
4956 <first_reg_element_no_inline>: New method.
4957
4958 2019-07-17 Tom Tromey <tom@tromey.com>
4959
4960 * tui/tui-windata.c (tui_display_data_from)
4961 (tui_data_window::do_scroll_vertical): Update.
4962 * tui/tui-regs.h (tui_line_from_reg_element_no): Don't declare.
4963 * tui/tui-regs.c (tui_data_window::line_from_reg_element_no):
4964 Rename from tui_line_from_reg_element_no.
4965 (tui_display_registers_from_line): Update.
4966 * tui/tui-data.h (struct tui_data_window)
4967 <line_from_reg_element_no>: New method.
4968
4969 2019-07-17 Tom Tromey <tom@tromey.com>
4970
4971 * tui/tui-regs.h (tui_last_regs_line_no): Don't declare.
4972 * tui/tui-regs.c (tui_data_window::last_regs_line_no): Rename from
4973 tui_last_regs_line_no.
4974 (tui_display_reg_element_at_line)
4975 (tui_display_registers_from_line): Update.
4976 * tui/tui-data.h (struct tui_data_window) <last_regs_line_no>: New
4977 method.
4978
4979 2019-07-17 Tom Tromey <tom@tromey.com>
4980
4981 PR tui/24722:
4982 * tui/tui-winsource.h (tui_update_all_breakpoint_info)
4983 (tui_update_breakpoint_info): Add "being_deleted" parameter.
4984 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
4985 (tui_update_all_breakpoint_info): Add "being_deleted" parameter.
4986 (tui_update_breakpoint_info): Likewise.
4987 * tui/tui-hooks.c (tui_event_create_breakpoint)
4988 (tui_event_delete_breakpoint, tui_event_modify_breakpoint):
4989 Update.
4990
4991 2019-07-17 Tom Tromey <tom@tromey.com>
4992
4993 * tui/tui-stack.c (tui_show_frame_info): Consolidate "if"s.
4994
4995 2019-07-17 Tom Tromey <tom@tromey.com>
4996
4997 * tui/tui-winsource.c (tui_update_source_window_as_is)
4998 (tui_update_source_windows_with_addr): Update.
4999 * tui/tui-source.h (tui_set_source_content)
5000 (tui_show_symtab_source): Add "win_info" parameter.
5001 * tui/tui-source.c (tui_set_source_content): Add "win_info"
5002 parameter.
5003 (tui_show_symtab_source): Likewise.
5004
5005 2019-07-17 Tom Tromey <tom@tromey.com>
5006
5007 * tui/tui-wingeneral.c
5008 (tui_check_and_display_highlight_if_needed): Check can_highlight.
5009
5010 2019-07-17 Tom Tromey <tom@tromey.com>
5011
5012 * tui/tui-data.h (struct tui_win_info) <can_scroll>: New method.
5013 (struct tui_cmd_window) <can_scroll>: New method.
5014 * tui/tui-command.c (tui_dispatch_ctrl_char): Use can_scroll
5015 method.
5016
5017 2019-07-17 Tom Tromey <tromey@adacore.com>
5018
5019 * ui-out.h (class ui_out) <field_signed, field_fmt_signed,
5020 do_field_signed>: Rename. Change type of "value".
5021 * ui-out.c (ui_out::field_signed): Rename from field_int.
5022 Change type of "value".
5023 (ui_out::field_fmt_signed): Rename from field_fmt_int. Change
5024 type of "value".
5025 * tui/tui-out.h (class tui_ui_out) <do_field_signed>: Rename from
5026 do_field_int. Change type of "value".
5027 * tui/tui-out.c (tui_ui_out::do_field_signed): Rename from
5028 do_field_int. Change type of "value".
5029 * tracepoint.c (trace_status_mi, tfind_1)
5030 (print_one_static_tracepoint_marker): Update.
5031 * thread.c (print_thread_info_1, print_selected_thread_frame):
5032 Update.
5033 * stack.c (print_frame, print_frame_info): Update.
5034 * spu-tdep.c (info_spu_signal_command, info_spu_dma_cmdlist):
5035 Update.
5036 * source.c (print_source_lines_base): Update.
5037 * skip.c (info_skip_command): Update.
5038 * record-btrace.c (btrace_ui_out_decode_error)
5039 (btrace_call_history_src_line): Update.
5040 * python/py-framefilter.c (py_print_single_arg, py_print_frame):
5041 Update.
5042 * progspace.c (print_program_space): Update.
5043 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Update.
5044 * mi/mi-out.h (class mi_ui_out) <do_field_signed>: Rename from
5045 do_field_int. Change type of "value".
5046 * mi/mi-out.c (mi_ui_out::do_table_begin)
5047 (mi_ui_out::do_table_header): Update.
5048 (mi_ui_out::do_field_signed): Rename from do_field_int. Change
5049 type of "value".
5050 * mi/mi-main.c (mi_cmd_thread_list_ids, print_one_inferior)
5051 (mi_cmd_data_list_changed_registers, output_register)
5052 (mi_cmd_data_read_memory, mi_load_progress)
5053 (mi_cmd_trace_frame_collected): Update.
5054 * mi/mi-interp.c (mi_on_normal_stop_1, mi_output_solib_attribs):
5055 Update.
5056 * mi/mi-cmd-var.c (print_varobj, mi_cmd_var_create)
5057 (mi_cmd_var_delete, mi_cmd_var_info_num_children)
5058 (mi_cmd_var_list_children, varobj_update_one): Update.
5059 * mi/mi-cmd-stack.c (mi_cmd_stack_info_depth)
5060 (mi_cmd_stack_list_args, list_arg_or_local): Update.
5061 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Update.
5062 * inferior.c (print_inferior): Update.
5063 * gdb_bfd.c (print_one_bfd): Update.
5064 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
5065 Update.
5066 * darwin-nat-info.c (darwin_debug_regions_recurse): Update.
5067 * cli-out.h (class cli_ui_out) <do_field_signed>: Rename from
5068 do_field_int. Change type of "value".
5069 * cli-out.c (cli_ui_out::do_field_signed): Rename from
5070 do_field_int. Change type of "value".
5071 * breakpoint.c (watchpoint_check, print_breakpoint_location)
5072 (print_one_breakpoint_location, print_it_catch_fork)
5073 (print_one_catch_fork, print_it_catch_vfork)
5074 (print_one_catch_vfork, print_it_catch_solib)
5075 (print_it_catch_exec, print_it_ranged_breakpoint)
5076 (print_mention_watchpoint, print_mention_masked_watchpoint)
5077 (bkpt_print_it, update_static_tracepoint): Update.
5078 * break-catch-throw.c (print_it_exception_catchpoint): Update.
5079 * break-catch-syscall.c (print_it_catch_syscall): Update.
5080 * ada-tasks.c (print_ada_task_info): Update.
5081 * ada-lang.c (print_it_exception, print_mention_exception):
5082 Update.
5083
5084 2019-07-17 Andrew Burgess <andrew.burgess@embecosm.com>
5085
5086 PR breakpoints/24541
5087 * gdbarch.c: Regenerate.
5088 * gdbarch.h: Regenerate.
5089 * gdbarch.sh: Adjust return type and parameter types for
5090 'stap_adjust_register'.
5091 (i386_stap_adjust_register): Adjust signature and return new
5092 register name.
5093 * stap-probe.c (stap_parse_register_operand): Adjust use of
5094 'gdbarch_stap_adjust_register'.
5095
5096 2019-07-17 Tom Tromey <tromey@adacore.com>
5097
5098 * s390-linux-nat.c (s390_watch_area): Remove typedef. Don't
5099 declare VEC.
5100 (struct s390_debug_reg_state) <watch_areas, break_areas>: Now
5101 std::vector.
5102 (struct s390_process_info): Add initializers.
5103 (s390_add_process): Use new.
5104 (s390_linux_nat_target::low_forget_process): Use delete.
5105 (s390_linux_nat_target::low_new_fork)
5106 (s390_linux_nat_target::stopped_by_watchpoint)
5107 (s390_linux_nat_target::low_prepare_to_resume)
5108 (s390_linux_nat_target::insert_watchpoint)
5109 (s390_linux_nat_target::insert_hw_breakpoint)
5110 (s390_linux_nat_target::remove_watchpoint)
5111 (s390_linux_nat_target::remove_hw_breakpoint): Update.
5112
5113 2019-07-16 John Baldwin <jhb@FreeBSD.org>
5114
5115 * aarch64-fbsd-nat.c: Include regcache.h.
5116 (getregs_supplies, getfpregs_supplies): Remove unused gdbarch
5117 argument.
5118 (aarch64_fbsd_nat_target::fetch_registers)
5119 (aarch64_fbsd_nat_target::store_registers): Remove gdbarch
5120 variable.
5121 * arm-fbsd-nat.c, riscv-fbsd-nat.c: Likewise.
5122
5123 2019-07-16 John Baldwin <jhb@FreeBSD.org>
5124
5125 * fbsd-nat.c: Include gdbarch.h.
5126
5127 2019-07-15 Tom Tromey <tromey@adacore.com>
5128
5129 * mi/mi-out.c (mi_ui_out::do_field_int): Use plongest.
5130
5131 2019-07-15 Tom Tromey <tromey@adacore.com>
5132
5133 * mi/mi-out.h (class mi_ui_out) <do_field_unsigned>: Declare.
5134 * mi/mi-out.c (mi_ui_out::do_field_unsigned): New method.
5135 * cli-out.h (class cli_ui_out) <do_field_unsigned>: Declare.
5136 * cli-out.c (cli_ui_out::do_field_int): New method.
5137 * ui-out.c (ui_out::field_unsigned): New method.
5138 * symfile.c (generic_load): Use field_unsigned.
5139 (print_transfer_performance): Likewise.
5140 * record-btrace.c (ui_out_field_uint): Remove.
5141 (btrace_call_history_insn_range, btrace_call_history): Use
5142 field_unsigned.
5143 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn): Use
5144 field_unsigned.
5145 * ui-out.h (class ui_out) <field_unsigned>: New method.
5146 <do_field_unsigned>: Likewise.
5147
5148 2019-07-15 Tom Tromey <tromey@adacore.com>
5149
5150 * mi/mi-main.c (list_available_thread_groups): Use field_string.
5151 * mi/mi-interp.c (mi_memory_changed): Use field_string.
5152 * target.c (flash_erase_command): Use field_string.
5153 * infrun.c (print_signal_received_reason): Use field_string.
5154 * i386-tdep.c (i386_mpx_print_bounds): Use field_string.
5155 * breakpoint.c (maybe_print_thread_hit_breakpoint): Use
5156 field_string.
5157 * ada-tasks.c (print_ada_task_info): Use field_string.
5158
5159 2019-07-15 Tom Tromey <tromey@adacore.com>
5160
5161 * target.c (flash_erase_command): Use field_core_addr.
5162 * symfile.c (generic_load): Use field_core_addr.
5163 * sparc64-linux-tdep.c (sparc64_linux_handle_segmentation_fault):
5164 Use field_core_addr.
5165 * i386-linux-tdep.c (i386_linux_handle_segmentation_fault): Use
5166 field_core_addr.
5167
5168 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
5169
5170 * dwarf2loc.c (dwarf2_evaluate_property): Sign extend property
5171 value if its desired type is smaller than a CORE_ADDR and signed.
5172
5173 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
5174
5175 * dwarf2loc.c (dwarf2_evaluate_property): Update to take account
5176 of changes to field names, and use new is_reference field to
5177 decide if a property is a reference or not.
5178 * dwarf2loc.h (struct dwarf2_locexpr_baton): Add 'is_reference'
5179 field.
5180 (struct dwarf2_property_baton): Update header comment, rename
5181 'referenced_type' to 'property_type' and update comments.
5182 * dwarf2read.c (attr_to_dynamic_prop): Add extra parameter to hold
5183 default property type, store in property baton, update to take
5184 accound of renamed field.
5185 (read_func_scope): Update call to attr_to_dynamic_prop.
5186 (read_array_type): Likewise.
5187 (dwarf2_per_cu_addr_sized_int_type): New function.
5188 (read_subrange_index_type): Move type finding code to
5189 dwarf2_per_cu_addr_sized_int_type.
5190 (read_subrange_type): Update calls to attr_to_dynamic_prop.
5191 (dwarf2_per_cu_addr_type): New function.
5192 (set_die_type): Update calls to attr_to_dynamic_prop.
5193
5194 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
5195
5196 * dwarf2read.c (read_subrange_index_type): New function.
5197 (read_subrange_type): Move code into new function and call it.
5198 * gdbtypes.c (create_range_type): Add some asserts.
5199
5200 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
5201
5202 * dwarf2loc.c (dwarf2_evaluate_property): Change return type, and
5203 update return statements.
5204 * dwarf2loc.h (dwarf2_evaluate_property): Update return type on
5205 declaration, and update comment to match.
5206 * gdbtypes.c (resolve_dynamic_array): Update call to
5207 dwarf2_evaluate_property to match new return type.
5208
5209 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
5210
5211 * valarith.c (value_subscripted_rvalue): Change lowerbound
5212 parameter type from int to LONGEST.
5213 * value.h (value_subscripted_rvalue): Likewise in declaration.
5214
5215 2019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
5216
5217 * cli/cli-utils.c (info_print_command_completer): New function.
5218 * cli/cli-utils.h: Add 'completer.h' include, and forward
5219 declaration for 'struct cmd_list_element'.
5220 (info_print_command_completer): Declare.
5221 * stack.c (_initialize_stack): Add completer for 'info locals' and
5222 'info args'.
5223 * symtab.c (_initialize_symtab): Add completer for 'info
5224 variables' and 'info functions'.
5225 * NEWS: Mention completion for additional info commands.
5226
5227 2019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
5228
5229 * cli/cli-utils.c (extract_info_print_args): Delete.
5230 (extract_arg_maybe_quoted): Delete.
5231 (info_print_options_defs): New variable.
5232 (make_info_print_options_def_group): New function.
5233 (extract_info_print_options): Define new function.
5234 * cli/cli-utils.h (extract_info_print_args): Delete.
5235 (struct info_print_options): New structure.
5236 (extract_info_print_options): Declare new function.
5237 * stack.c (info_locals_command): Update to use new
5238 extract_info_print_options, also add a header comment.
5239 (info_args_command): Likewise.
5240 * symtab.c (info_variables_command): Likewise.
5241 (info_functions_command): Likewise.
5242
5243 2019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
5244
5245 * cli/cli-option.c (parse_option): Use extract_string_maybe_quoted
5246 to extract string arguments.
5247 * common/common-utils.c (extract_string_maybe_quoted): New function.
5248 * common/common-utils.h (extract_string_maybe_quoted): Declare.
5249
5250 2019-07-11 Tom Tromey <tromey@adacore.com>
5251
5252 * main.c (get_init_files): Use GDBINIT, not gdbinit.
5253 * auto-load.c (file_is_auto_load_safe): Use GDBINIT, not gdbinit.
5254 * top.h (gdbinit): Don't declare.
5255 * cli/cli-cmds.c (init_cli_cmds): Remove, merging contents
5256 into...
5257 (_initialize_cli_cmds): ...here. Use GDBINIT, not gdbinit.
5258 * top.c (gdb_init): Don't call init_cli_cmds.
5259 (gdbinit): Remove.
5260 * cli/cli-cmds.h (init_cli_cmds): Don't declare.
5261
5262 2019-07-11 Tom Tromey <tromey@adacore.com>
5263
5264 * python/py-inferior.c (add_thread_object): Don't use thread_obj
5265 after it has been moved.
5266
5267 2019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
5268
5269 * valops.c (value_must_coerce_to_target): Change return type to
5270 bool.
5271 * value.h (value_must_coerce_to_target): Likewise.
5272
5273 2019-07-10 Simon Marchi <simon.marchi@efficios.com>
5274
5275 * breakpoint.c (is_hardware_watchpoint): Remove
5276 forward-declaration.
5277 (is_masked_watchpoint): Change return type to bool.
5278 (is_tracepoint): Likewise.
5279 (is_breakpoint): Likewise.
5280 (is_hardware_watchpoint): Likewise.
5281 (is_watchpoint): Likewise.
5282 (is_no_memory_software_watchpoint): Likewise.
5283 (is_catchpoint): Likewise.
5284 (breakpoint_1): Make FILTER parameter's return type bool.
5285 is_masked_watchpoint): Change return type to bool.
5286 (save_breakpoints): Make FILTER parameter's return type bool.
5287 * breakpoint.h (is_breakpoint): Change return type to bool.
5288 (is_watchpoint): Likewise.
5289 (is_catchpoint): Likewise.
5290 (is_tracepoint): Likewise.
5291
5292 2019-07-10 Tom Tromey <tom@tromey.com>
5293
5294 * defs.h: Don't include gdbarch.h.
5295 * aarch64-ravenscar-thread.c, aarch64-tdep.c, alpha-bsd-tdep.h,
5296 alpha-linux-tdep.c, alpha-mdebug-tdep.c, arch-utils.h, arm-tdep.h,
5297 ax-general.c, btrace.c, buildsym-legacy.c, buildsym.h, c-lang.c,
5298 cli/cli-decode.h, cli/cli-dump.c, cli/cli-script.h,
5299 cli/cli-style.h, coff-pe-read.h, compile/compile-c-support.c,
5300 compile/compile-cplus.h, compile/compile-loc2c.c, corefile.c,
5301 cp-valprint.c, cris-linux-tdep.c, ctf.c, d-lang.c, d-namespace.c,
5302 dcache.c, dicos-tdep.c, dictionary.c, disasm-selftests.c,
5303 dummy-frame.c, dummy-frame.h, dwarf2-frame-tailcall.c,
5304 dwarf2expr.c, expression.h, f-lang.c, frame-base.c,
5305 frame-unwind.c, frv-linux-tdep.c, gdbarch-selftests.c, gdbtypes.h,
5306 go-lang.c, hppa-nbsd-tdep.c, hppa-obsd-tdep.c, i386-dicos-tdep.c,
5307 i386-tdep.h, ia64-vms-tdep.c, interps.h, language.c,
5308 linux-record.c, location.h, m2-lang.c, m32r-linux-tdep.c,
5309 mem-break.c, memattr.c, mn10300-linux-tdep.c, nios2-linux-tdep.c,
5310 objfiles.h, opencl-lang.c, or1k-linux-tdep.c, p-lang.c,
5311 parser-defs.h, ppc-tdep.h, probe.h, python/py-record-btrace.c,
5312 record-btrace.c, record.h, regcache-dump.c, regcache.h,
5313 riscv-fbsd-tdep.c, riscv-linux-tdep.c, rust-exp.y,
5314 sh-linux-tdep.c, sh-nbsd-tdep.c, source-cache.c,
5315 sparc-nbsd-tdep.c, sparc-obsd-tdep.c, sparc-ravenscar-thread.c,
5316 sparc64-fbsd-tdep.c, std-regs.c, target-descriptions.h,
5317 target-float.c, tic6x-linux-tdep.c, tilegx-linux-tdep.c, top.c,
5318 tracefile.c, trad-frame.c, type-stack.h, ui-style.c, utils.c,
5319 utils.h, valarith.c, valprint.c, varobj.c, x86-tdep.c,
5320 xml-support.h, xtensa-linux-tdep.c, cli/cli-cmds.h: Update.
5321 * s390-linux-nat.c, procfs.c, inf-ptrace.c: Likewise.
5322
5323 2019-07-10 Tom Tromey <tromey@adacore.com>
5324
5325 * ada-lang.h (is_ada_exception_catchpoint): Declare.
5326 * breakpoint.c (init_ada_exception_breakpoint): Register as
5327 bp_catchpoint.
5328 (print_one_breakpoint_location, print_one_breakpoint): Use
5329 is_ada_exception_catchpoint.
5330 * ada-lang.c (class ada_catchpoint_location): Pass
5331 bp_loc_software_breakpoint to bp_location constructor.
5332 (is_ada_exception_catchpoint): New function.
5333
5334 2019-07-10 Tom Tromey <tromey@adacore.com>
5335
5336 * arm-tdep.c (arm_exidx_entry_s): Remove typedef. Don't define
5337 VEC.
5338 (struct arm_exidx_entry): New method operator<.
5339 (struct arm_exidx_data) <section_maps>: Change type.
5340 (arm_exidx_data_free): Remove.
5341 (arm_exidx_data_key): Change type. Move lower.
5342 (arm_exidx_new_objfile): Update.
5343 (arm_compare_exidx_entries): Remove.
5344 (arm_find_exidx_entry, _initialize_arm_tdep)
5345
5346 2019-07-10 Tom Tromey <tromey@adacore.com>
5347
5348 * solib-spu.c (ocl_program_data_key): Change type.
5349 (append_ocl_sos, ocl_enable_break, _initialize_spu_solib):
5350 Update.
5351
5352 2019-07-10 Tom Tromey <tromey@adacore.com>
5353
5354 * solib-aix.c (lm_info_aix_p): Remove typedef. Don't define VEC.
5355 (struct solib_aix_inferior_data) <library_list>: Change type.
5356 (solib_aix_inferior_data_handle): Change type.
5357 (get_solib_aix_inferior_data): Update.
5358 (solib_aix_free_library_list): Remove.
5359 (library_list_start_library): Update.
5360 (solib_aix_parse_libraries, solib_aix_get_library_list): Change
5361 return type.
5362 (solib_aix_get_library_list)
5363 (solib_aix_solib_create_inferior_hook, solib_aix_current_sos)
5364 (solib_aix_normal_stop_observer, _initialize_solib_aix): Update.
5365
5366 2019-07-10 Tom Tromey <tromey@adacore.com>
5367
5368 * solib-dsbt.c (struct dsbt_info): Add initializers.
5369 (solib_dsbt_pspace_data): Change type.
5370 (dsbt_pspace_data_cleanup): Remove.
5371 (get_dsbt_info, _initialize_dsbt_solib): Update.
5372
5373 2019-07-10 Tom Tromey <tromey@adacore.com>
5374
5375 * spu-tdep.c (spu_overlay_data): Change type.
5376 (spu_get_overlay_table, spu_overlay_new_objfile)
5377 (_initialize_spu_tdep): Update.
5378
5379 2019-07-10 Tom Tromey <tromey@adacore.com>
5380
5381 * gdb-stabs.h (struct dbx_symfile_info): Add initializers and
5382 destructor.
5383 (dbx_objfile_data_key): Change type and declare later.
5384 (DBX_SYMFILE_INFO): Rewrite.
5385 * dbxread.c (dbx_objfile_data_key): Change type.
5386 (dbx_symfile_init): Update.
5387 (~dbx_symfile_info): Rename from dbx_free_symfile_info. Update.
5388 (coffstab_build_psymtabs, elfstab_build_psymtabs)
5389 (stabsect_build_psymtabs, _initialize_dbxread): Update.
5390
5391 2019-07-10 Tom Tromey <tromey@adacore.com>
5392
5393 * jit.c (jit_program_space_key): Change type. Move lower.
5394 (get_jit_program_space_data): Update.
5395 (jit_program_space_data_cleanup): Remove.
5396 (jit_breakpoint_deleted, free_objfile_data, _initialize_jit):
5397 Update.
5398 (struct jit_program_space_data): Add initializers.
5399
5400 2019-07-10 Tom Tromey <tromey@adacore.com>
5401
5402 * solib-darwin.c (struct darwin_info): Add initializers.
5403 (solib_darwin_pspace_data): Change type.
5404 (darwin_pspace_data_cleanup): Remove.
5405 (get_darwin_info, _initialize_darwin_solib): Update.
5406
5407 2019-07-10 Tom Tromey <tromey@adacore.com>
5408
5409 * remote-sim.c (struct sim_inferior_data): Add initializers,
5410 constructor, and destructor.
5411 (sim_inferior_data_key): Change type. Move lower.
5412 (check_for_duplicate_sim_descriptor): Update.
5413 (get_sim_inferior_data): Use new. Update.
5414 (~sim_inferior_data_cleanup): Rename from
5415 sim_inferior_data_cleanup. Simplify.
5416 (gdbsim_close_inferior, simulator_command)
5417 (sim_command_completer, _initialize_remote_sim): Update.
5418 (next_pid, INITIAL_PID): Move earlier.
5419
5420 2019-07-10 Tom Tromey <tromey@adacore.com>
5421
5422 * python/python-internal.h (create_thread_object): Return
5423 gdbpy_ref.
5424 * python/py-infthread.c (create_thread_object): Return gdbpy_ref.
5425 * python/py-inferior.c (struct threadlist_entry): Add
5426 constructor.
5427 <thread_obj>: Now a gdbpy_ref.
5428 (thread_to_thread_object): Update.
5429 (add_thread_object): Use new.
5430 (delete_thread_object): Use delete.
5431 (infpy_threads): Update.
5432 (py_free_inferior): Update. Construct "inf_obj" after acquiring
5433 GIL.
5434
5435 2019-07-10 Tom Tromey <tromey@adacore.com>
5436
5437 * valops.c (value_cast): Specialize error message for Ada.
5438
5439 2019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
5440
5441 * breakpoint.c (breakpoint_1): Update doc and parameter names.
5442
5443 2019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
5444
5445 * breakpoint.h (bpstat_explains_signal, bpstat_causes_stop,
5446 bpstat_should_step): Return bool, adjust comments.
5447 * breakpoint.c (bpstat_explains_signal, bpstat_causes_stop,
5448 bpstat_should_step): Likewise.
5449
5450 2019-07-10 Alan Hayward <alan.hayward@arm.com>
5451
5452 * features/Makefile: Use feature target descriptions for Arm.
5453 * features/arm/arm-core.c: Generate new file.
5454 * features/arm/arm-fpa.c: Likewise.
5455 * features/arm/arm-m-profile-with-fpa.xml: Likewise.
5456 * features/arm/arm-m-profile.c: Likewise.
5457 * features/arm/arm-vfpv2.c: Likewise.
5458 * features/arm/arm-vfpv3.c: Likewise.
5459 * features/arm/xscale-iwmmxt.c: Likewise.
5460 * target-descriptions.c (maint_print_c_tdesc_cmd): Add Arm.
5461
5462 2019-07-10 Alan Hayward <alan.hayward@arm.com>
5463
5464 * arm-linux-nat.c (arm_linux_nat_target::read_description): Check
5465 ptrace earlier.
5466
5467 2019-07-10 Alan Hayward <alan.hayward@arm.com>
5468
5469 * features/aarch64-pauth.c: Regenerate.
5470
5471 2019-07-09 Simon Marchi <simon.marchi@polymtl.ca>
5472
5473 * breakpoint.h (struct bpstat_what) <is_longjmp>: Change type to
5474 bool.
5475 (bpstat_what): Use false instead of 0.
5476
5477 2019-07-09 Pedro Alves <palves@redhat.com>
5478
5479 * break-catch-throw.c (is_exception_catchpoint): New.
5480 * breakpoint.c (print_one_breakpoint_location): New parameter
5481 'raw_loc'. Handle it. Use
5482 is_watchpoint/is_catchpoint/is_exception_catchpoint instead of
5483 looking at the breakpoint's type.
5484 (print_one_breakpoint): If handling "maint info breakpoints", also
5485 print locations of exception catchpoints.
5486 * breakpoint.h (is_exception_catchpoint): Declare.
5487
5488 2019-07-09 Pedro Alves <palves@redhat.com>
5489
5490 * break-catch-throw.c (print_one_exception_catchpoint): Skip the
5491 "addr" field.
5492 (allocate_location_exception_catchpoint): New.
5493 (handle_gnu_v3_exceptions): Don't reset 'type' to bp_breakpoint.
5494 (initialize_throw_catchpoint_ops): Install
5495 allocate_location_exception_catchpoint as allocate_location
5496 method.
5497 * breakpoint.c (bpstat_what) <bp_catch>: Set action to
5498 BPSTAT_WHAT_SINGLE if not stopping and the location's type is not
5499 bp_loc_other.
5500 (breakpoint_address_is_meaningful): Delete.
5501 (bl_address_is_meaningful): New.
5502 (breakpoint_locations_match): Adjust comment.
5503 (bp_location_from_bp_type): New, factored out of...
5504 (bp_location::bp_location(breakpoint *)): ... this.
5505 (bp_location::bp_location(breakpoint *, bp_loc_type)): New,
5506 factored out of...
5507 (bp_location::bp_location(breakpoint *)): ... this. Reimplement.
5508 (bp_loc_is_permanent): Use bl_address_is_meaningful instead of
5509 breakpoint_address_is_meaningful.
5510 (bp_locations_compare): Adjust comment.
5511 (update_global_location_list): Use bl_address_is_meaningful
5512 instead of breakpoint_address_is_meaningful.
5513 * breakpoint.h (bp_location::bp_location(breakpoint *)): New
5514 explicit.
5515 (bp_location::bp_location(breakpoint *, bp_loc_type)): Declare.
5516 * python/py-breakpoint.c (bppy_get_location): No longer check
5517 whether location is null.
5518
5519 2019-07-09 Pedro Alves <palves@redhat.com>
5520
5521 PR c++/15468
5522 * breakpoint.c (print_one_breakpoint_location): Remove
5523 single-location assert.
5524
5525 2019-07-09 Tom Tromey <tom@tromey.com>
5526
5527 * contrib/ari/gdb_ari.sh: Change common to gdbsupport.
5528 * configure: Rebuild.
5529 * configure.ac: Change common to gdbsupport.
5530 * gdbsupport: Rename from common.
5531 * acinclude.m4: Change common to gdbsupport.
5532 * Makefile.in (CONFIG_SRC_SUBDIR, COMMON_SFILES)
5533 (HFILES_NO_SRCDIR, stamp-version, ALLDEPFILES): Change common to
5534 gdbsupport.
5535 * aarch64-tdep.c, ada-lang.c, ada-lang.h, agent.c, alloc.c,
5536 amd64-darwin-tdep.c, amd64-dicos-tdep.c, amd64-fbsd-nat.c,
5537 amd64-fbsd-tdep.c, amd64-linux-nat.c, amd64-linux-tdep.c,
5538 amd64-nbsd-tdep.c, amd64-obsd-tdep.c, amd64-sol2-tdep.c,
5539 amd64-tdep.c, amd64-windows-tdep.c, arch-utils.c,
5540 arch/aarch64-insn.c, arch/aarch64.c, arch/aarch64.h, arch/amd64.c,
5541 arch/amd64.h, arch/arm-get-next-pcs.c, arch/arm-linux.c,
5542 arch/arm.c, arch/i386.c, arch/i386.h, arch/ppc-linux-common.c,
5543 arch/riscv.c, arch/riscv.h, arch/tic6x.c, arm-tdep.c, auto-load.c,
5544 auxv.c, ax-gdb.c, ax-general.c, ax.h, breakpoint.c, breakpoint.h,
5545 btrace.c, btrace.h, build-id.c, build-id.h, c-lang.h, charset.c,
5546 charset.h, cli/cli-cmds.c, cli/cli-cmds.h, cli/cli-decode.c,
5547 cli/cli-dump.c, cli/cli-option.h, cli/cli-script.c,
5548 coff-pe-read.c, command.h, compile/compile-c-support.c,
5549 compile/compile-c.h, compile/compile-cplus-symbols.c,
5550 compile/compile-cplus-types.c, compile/compile-cplus.h,
5551 compile/compile-loc2c.c, compile/compile.c, completer.c,
5552 completer.h, contrib/ari/gdb_ari.sh, corefile.c, corelow.c,
5553 cp-support.c, cp-support.h, cp-valprint.c, csky-tdep.c, ctf.c,
5554 darwin-nat.c, debug.c, defs.h, disasm-selftests.c, disasm.c,
5555 disasm.h, dtrace-probe.c, dwarf-index-cache.c,
5556 dwarf-index-cache.h, dwarf-index-write.c, dwarf2-frame.c,
5557 dwarf2expr.c, dwarf2loc.c, dwarf2read.c, event-loop.c,
5558 event-top.c, exceptions.c, exec.c, extension.h, fbsd-nat.c,
5559 features/aarch64-core.c, features/aarch64-fpu.c,
5560 features/aarch64-pauth.c, features/aarch64-sve.c,
5561 features/i386/32bit-avx.c, features/i386/32bit-avx512.c,
5562 features/i386/32bit-core.c, features/i386/32bit-linux.c,
5563 features/i386/32bit-mpx.c, features/i386/32bit-pkeys.c,
5564 features/i386/32bit-segments.c, features/i386/32bit-sse.c,
5565 features/i386/64bit-avx.c, features/i386/64bit-avx512.c,
5566 features/i386/64bit-core.c, features/i386/64bit-linux.c,
5567 features/i386/64bit-mpx.c, features/i386/64bit-pkeys.c,
5568 features/i386/64bit-segments.c, features/i386/64bit-sse.c,
5569 features/i386/x32-core.c, features/riscv/32bit-cpu.c,
5570 features/riscv/32bit-csr.c, features/riscv/32bit-fpu.c,
5571 features/riscv/64bit-cpu.c, features/riscv/64bit-csr.c,
5572 features/riscv/64bit-fpu.c, features/tic6x-c6xp.c,
5573 features/tic6x-core.c, features/tic6x-gp.c, filename-seen-cache.h,
5574 findcmd.c, findvar.c, fork-child.c, gcore.c, gdb_bfd.c, gdb_bfd.h,
5575 gdb_proc_service.h, gdb_regex.c, gdb_select.h, gdb_usleep.c,
5576 gdbarch-selftests.c, gdbthread.h, gdbtypes.h, gnu-nat.c,
5577 go32-nat.c, guile/guile.c, guile/scm-ports.c,
5578 guile/scm-safe-call.c, guile/scm-type.c, i386-fbsd-nat.c,
5579 i386-fbsd-tdep.c, i386-go32-tdep.c, i386-linux-nat.c,
5580 i386-linux-tdep.c, i386-tdep.c, i387-tdep.c,
5581 ia64-libunwind-tdep.c, ia64-linux-nat.c, inf-child.c,
5582 inf-ptrace.c, infcall.c, infcall.h, infcmd.c, inferior-iter.h,
5583 inferior.c, inferior.h, inflow.c, inflow.h, infrun.c, infrun.h,
5584 inline-frame.c, language.h, linespec.c, linux-fork.c, linux-nat.c,
5585 linux-tdep.c, linux-thread-db.c, location.c, machoread.c,
5586 macrotab.h, main.c, maint.c, maint.h, memattr.c, memrange.h,
5587 mi/mi-cmd-break.h, mi/mi-cmd-env.c, mi/mi-cmd-stack.c,
5588 mi/mi-cmd-var.c, mi/mi-interp.c, mi/mi-main.c, mi/mi-parse.h,
5589 minsyms.c, mips-linux-tdep.c, namespace.h,
5590 nat/aarch64-linux-hw-point.c, nat/aarch64-linux-hw-point.h,
5591 nat/aarch64-linux.c, nat/aarch64-sve-linux-ptrace.c,
5592 nat/amd64-linux-siginfo.c, nat/fork-inferior.c,
5593 nat/linux-btrace.c, nat/linux-btrace.h, nat/linux-namespaces.c,
5594 nat/linux-nat.h, nat/linux-osdata.c, nat/linux-personality.c,
5595 nat/linux-procfs.c, nat/linux-ptrace.c, nat/linux-ptrace.h,
5596 nat/linux-waitpid.c, nat/mips-linux-watch.c,
5597 nat/mips-linux-watch.h, nat/ppc-linux.c, nat/x86-dregs.c,
5598 nat/x86-dregs.h, nat/x86-linux-dregs.c, nat/x86-linux.c,
5599 nto-procfs.c, nto-tdep.c, objfile-flags.h, objfiles.c, objfiles.h,
5600 obsd-nat.c, observable.h, osdata.c, p-valprint.c, parse.c,
5601 parser-defs.h, ppc-linux-nat.c, printcmd.c, probe.c, proc-api.c,
5602 procfs.c, producer.c, progspace.h, psymtab.h,
5603 python/py-framefilter.c, python/py-inferior.c, python/py-ref.h,
5604 python/py-type.c, python/python.c, record-btrace.c, record-full.c,
5605 record.c, record.h, regcache-dump.c, regcache.c, regcache.h,
5606 remote-fileio.c, remote-fileio.h, remote-sim.c, remote.c,
5607 riscv-tdep.c, rs6000-aix-tdep.c, rust-exp.y, s12z-tdep.c,
5608 selftest-arch.c, ser-base.c, ser-event.c, ser-pipe.c, ser-tcp.c,
5609 ser-unix.c, skip.c, solib-aix.c, solib-target.c, solib.c,
5610 source-cache.c, source.c, source.h, sparc-nat.c, spu-linux-nat.c,
5611 stack.c, stap-probe.c, symfile-add-flags.h, symfile.c, symfile.h,
5612 symtab.c, symtab.h, target-descriptions.c, target-descriptions.h,
5613 target-memory.c, target.c, target.h, target/waitstatus.c,
5614 target/waitstatus.h, thread-iter.h, thread.c, tilegx-tdep.c,
5615 top.c, top.h, tracefile-tfile.c, tracefile.c, tracepoint.c,
5616 tracepoint.h, tui/tui-io.c, ui-file.c, ui-out.h,
5617 unittests/array-view-selftests.c,
5618 unittests/child-path-selftests.c, unittests/cli-utils-selftests.c,
5619 unittests/common-utils-selftests.c,
5620 unittests/copy_bitwise-selftests.c, unittests/environ-selftests.c,
5621 unittests/format_pieces-selftests.c,
5622 unittests/function-view-selftests.c,
5623 unittests/lookup_name_info-selftests.c,
5624 unittests/memory-map-selftests.c, unittests/memrange-selftests.c,
5625 unittests/mkdir-recursive-selftests.c,
5626 unittests/observable-selftests.c,
5627 unittests/offset-type-selftests.c, unittests/optional-selftests.c,
5628 unittests/parse-connection-spec-selftests.c,
5629 unittests/ptid-selftests.c, unittests/rsp-low-selftests.c,
5630 unittests/scoped_fd-selftests.c,
5631 unittests/scoped_mmap-selftests.c,
5632 unittests/scoped_restore-selftests.c,
5633 unittests/string_view-selftests.c, unittests/style-selftests.c,
5634 unittests/tracepoint-selftests.c, unittests/unpack-selftests.c,
5635 unittests/utils-selftests.c, unittests/xml-utils-selftests.c,
5636 utils.c, utils.h, valarith.c, valops.c, valprint.c, value.c,
5637 value.h, varobj.c, varobj.h, windows-nat.c, x86-linux-nat.c,
5638 xml-support.c, xml-support.h, xml-tdesc.h, xstormy16-tdep.c,
5639 xtensa-linux-nat.c, dwarf2read.h: Change common to gdbsupport.
5640
5641 2019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
5642
5643 * linespec.c (decode_digits_list_mode): Set explicit_line to a
5644 bool value.
5645 (decode_digits_ordinary): Set explicit_line field in sal.
5646 * symtab.c (skip_prologue_sal): Don't skip prologue for a
5647 symtab_and_line that was set on an explicit line number in
5648 assembler code. Do always update the recorded symtab and line if
5649 we do skip the prologue.
5650
5651 2019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
5652
5653 * breakpoint.c (set_breakpoint_location_function): Remove
5654 explicit_loc parameter.
5655 (momentary_breakpoint_from_master): Update call to
5656 set_breakpoint_location_function.
5657 (add_location_to_breakpoint): Likewise.
5658
5659 2019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
5660
5661 * riscv-tdep.c (riscv_features_from_gdbarch_info): Don't modify
5662 required features based on default bfd type when no specific bfd
5663 is present.
5664
5665 2019-07-08 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5666
5667 * NEWS: Mention that GDB printf and eval commands can now print
5668 C-style and Ada-style convenience var strings without
5669 calling the inferior.
5670 * printcmd.c (printf_c_string): Locally print GDB internal var
5671 instead of transiting via the inferior.
5672 (printf_wide_c_string): Likewise.
5673
5674 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5675
5676 PR breakpoints/25011
5677 * symfile.c (symbol_file_command): Call solib_create_inferior_hook.
5678
5679 2019-07-04 Tom Tromey <tom@tromey.com>
5680
5681 PR tui/24724:
5682 * tui/tui-winsource.c (tui_clear_source_content): Update.
5683 (tui_source_window_base::set_is_exec_point_at): Fix comment.
5684 (tui_update_breakpoint_info): Update.
5685 (tui_set_exec_info_content): Update.
5686 * tui/tui-source.c (tui_set_source_content_nil): Update.
5687 * tui/tui-disasm.c (tui_set_disassem_content): Don't set
5688 has_break.
5689 * tui/tui-data.h (enum tui_bp_flag): New.
5690 (tui_bp_flags): New enum flags type.
5691 (struct tui_source_element) <break_mode>: Change type. Rename
5692 from has_break.
5693 (TUI_BP_ENABLED, TUI_BP_DISABLED, TUI_BP_HIT)
5694 (TUI_BP_CONDITIONAL, TUI_BP_HARDWARE): Don't define. Now enum
5695 constants.
5696 * tui/tui-winsource.h: Fix comment.
5697
5698 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5699
5700 * aarch32-linux-nat.h (VFP_REGS_SIZE): Remove define.
5701 * aarch64-linux-nat.c (fetch_fpregs_from_thread)
5702 (store_fpregs_to_thread)
5703 (aarch64_linux_nat_target::read_description): Use ARM_VFP3_REGS_SIZE.
5704 * arch/arm.h (IWMMXT_VEC_REGISTER_SIZE, ARM_CORE_REGS_SIZE)
5705 (ARM_FP_REGS_SIZE, ARM_VFP2_REGS_SIZE, ARM_VFP3_REGS_SIZE)
5706 (IWMMXT_REGS_SIZE): Add define.
5707 * arm-linux-nat.c (IWMMXT_REGS_SIZE): Remove define.
5708 (fetch_vfp_regs, store_vfp_regs)
5709 (arm_linux_nat_target::read_description): Use ARM_VFP3_REGS_SIZE.
5710 * arm-tdep.c (arm_register_g_packet_guesses): Use new defines.
5711
5712 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5713
5714 * arch/arm-get-next-pcs.c (thumb_get_next_pcs_raw): Use ARM_
5715 defines.
5716 * arch/arm-linux.c (arm_linux_sigreturn_next_pc_offset): Likewise.
5717 * arch/arm.h (INT_REGISTER_SIZE) Rename from...
5718 (ARM_INT_REGISTER_SIZE): ...to this.
5719 (ARM_FP_REGISTER_SIZE) (ARM_VFP_REGISTER_SIZE): Add define.
5720 * arm-linux-tdep.c (ARM_LINUX_JB_ELEMENT_SIZE)
5721 (ARM_LINUX_SIZEOF_GREGSET, arm_linux_supply_gregset)
5722 (arm_linux_collect_gregset, supply_nwfpe_register)
5723 (collect_nwfpe_register, arm_linux_collect_nwfpe): Use ARM_
5724 defines.
5725 * arm-linux-tdep.h (ARM_LINUX_SIZEOF_NWFPE, NWFPE_FPSR_OFFSET)
5726 (NWFPE_FPCR_OFFSET, NWFPE_TAGS_OFFSET): Likewise
5727 * arm-nbsd-tdep.c (ARM_NBSD_JB_ELEMENT_SIZE): Likewise.
5728 * arm-tdep.c (arm_push_dummy_call, arm_extract_return_value)
5729 (arm_return_in_memory, arm_store_return_value)
5730 (arm_get_longjmp_target, arm_register_g_packet_guesses)
5731 (arm_record_ld_st_multiple): Likewise.
5732 * arm-tdep.h (FP_REGISTER_SIZE, VFP_REGISTER_SIZE): Remove.
5733 * arm-wince-tdep.c (ARM_WINCE_JB_ELEMENT_SIZE): Use ARM_ defines.
5734
5735 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5736
5737 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Use
5738 AARCH64_DISPLACED_MODIFIED_INSNS.
5739 * aarch64-tdep.c (struct aarch64_displaced_step_data)
5740 (aarch64_displaced_step_copy_insn): Likewise.
5741 * aarch64-tdep.h (DISPLACED_MODIFIED_INSNS): Rename from..
5742 (AARCH64_DISPLACED_MODIFIED_INSNS): ...to this.
5743 * arm-linux-tdep.c (arm_linux_cleanup_svc): Use
5744 ARM_DISPLACED_MODIFIED_INSNS.
5745 * arm-tdep.c (arm_gdbarch_init): Likewise.
5746 * arm-tdep.h (DISPLACED_MODIFIED_INSNS): Rename from..
5747 (ARM_DISPLACED_MODIFIED_INSNS): ...to this.
5748 (struct arm_displaced_step_closure): Use
5749 ARM_DISPLACED_MODIFIED_INSNS.
5750
5751 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5752
5753 * features/Makefile: Remove unused xml files.
5754 * features/aarch64.xml: Remove.
5755 * features/i386/amd64-avx-avx512-linux.xml: Remove.
5756 * features/i386/amd64-avx-avx512.xml: Remove.
5757 * features/i386/amd64-avx-linux.xml: Remove.
5758 * features/i386/amd64-avx-mpx-avx512-pku-linux.xml: Remove.
5759 * features/i386/amd64-avx-mpx-avx512-pku.xml: Remove.
5760 * features/i386/amd64-avx-mpx-linux.xml: Remove.
5761 * features/i386/amd64-avx-mpx.xml: Remove.
5762 * features/i386/amd64-avx.xml: Remove.
5763 * features/i386/amd64-linux.xml: Remove.
5764 * features/i386/amd64-mpx-linux.xml: Remove.
5765 * features/i386/amd64-mpx.xml: Remove.
5766 * features/i386/amd64.xml: Remove.
5767 * features/i386/i386-avx-avx512-linux.xml: Remove.
5768 * features/i386/i386-avx-avx512.xml: Remove.
5769 * features/i386/i386-avx-linux.xml: Remove.
5770 * features/i386/i386-avx-mpx-avx512-pku-linux.xml: Remove.
5771 * features/i386/i386-avx-mpx-avx512-pku.xml: Remove.
5772 * features/i386/i386-avx-mpx-linux.xml: Remove.
5773 * features/i386/i386-avx-mpx.xml: Remove.
5774 * features/i386/i386-avx.xml: Remove.
5775 * features/i386/i386-linux.xml: Remove.
5776 * features/i386/i386-mmx-linux.xml: Remove.
5777 * features/i386/i386-mmx.xml: Remove.
5778 * features/i386/i386-mpx-linux.xml: Remove.
5779 * features/i386/i386-mpx.xml: Remove.
5780 * features/i386/i386.xml: Remove.
5781 * features/i386/x32-avx-avx512-linux.xml: Remove.
5782 * features/i386/x32-avx-linux.xml: Remove.
5783 * features/i386/x32-linux.xml: Remove.
5784
5785 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5786
5787 * regformats/aarch64.dat: Remove.
5788 * regformats/i386/amd64-avx-avx512-linux.dat: Remove.
5789 * regformats/i386/amd64-avx-linux.dat: Remove.
5790 * regformats/i386/amd64-avx-mpx-avx512-pku-linux.dat: Remove.
5791 * regformats/i386/amd64-avx-mpx-linux.dat: Remove.
5792 * regformats/i386/amd64-linux.dat: Remove.
5793 * regformats/i386/amd64-mpx-linux.dat: Remove.
5794 * regformats/i386/amd64.dat: Remove.
5795 * regformats/i386/i386-avx-avx512-linux.dat: Remove.
5796 * regformats/i386/i386-avx-linux.dat: Remove.
5797 * regformats/i386/i386-avx-mpx-avx512-pku-linux.dat: Remove.
5798 * regformats/i386/i386-avx-mpx-linux.dat: Remove.
5799 * regformats/i386/i386-linux.dat: Remove.
5800 * regformats/i386/i386-mmx-linux.dat: Remove.
5801 * regformats/i386/i386-mpx-linux.dat: Remove.
5802 * regformats/i386/i386.dat: Remove.
5803 * regformats/i386/x32-avx-avx512-linux.dat: Remove.
5804 * regformats/i386/x32-avx-linux.dat: Remove.
5805 * regformats/i386/x32-linux.dat: Remove.
5806
5807 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5808
5809 * aarch64-tdep.c: Remove xml self tests.
5810 * amd64-linux-tdep.c: Likewise.
5811 * amd64-tdep.c: Likewise.
5812 * i386-linux-tdep.c: Likewise.
5813 * i386-tdep.c: Likewise.
5814
5815 2019-07-03 Pedro Alves <palves@redhat.com>
5816
5817 PR cli/24732
5818 * cli/cli-cmds.c (struct pipe_cmd_opts): New.
5819 (pipe_cmd_option_defs): New.
5820 (make_pipe_cmd_options_def_group): New.
5821 (pipe_command): Use gdb::option::process_options.
5822 (pipe_command_completer): New function.
5823 (_initialize_cli_cmds): Install completer for "pipe" command.
5824
5825 2019-07-03 Pedro Alves <palves@redhat.com>
5826
5827 * cli/cli-option.c (union option_value) <string>: New field.
5828 (struct option_def_and_value): Add ctor, move ctor, dtor and
5829 use DISABLE_COPY_AND_ASSIGN.
5830 (option_def_and_value::clear_value): New.
5831 (parse_option, save_option_value_in_ctx, get_val_type_str)
5832 (add_setshow_cmds_for_options): Handle var_string.
5833 * cli-option.h (union option_def::var_address) <string>: New
5834 field.
5835 (struct string_option_def): New.
5836 * maint-test-options.c (struct test_options_opts): Add default
5837 ctor and use DISABLE_COPY_AND_ASSIGN.
5838 <string_opt>: New field.
5839 (test_options_opts::~test_options_opts): New.
5840 (test_options_opts::dump): Also dump "-string".
5841 (test_options_option_defs): Install "string.
5842
5843 2019-07-03 Pedro Alves <palves@redhat.com>
5844
5845 * cli/cli-option.c (parse_option) <var_enum>: Don't return an
5846 option_value with a null enumeration.
5847 (complete_options): Save the option values in the context.
5848 (save_option_value_in_ctx): New, factored out from ...
5849 (process_options): ... here.
5850 * cli/cli-utils.c (get_ulongest): Don't advance PP until the end
5851 of the function.
5852 * maint-test-options.c (test_options_opts::dump): New, factored
5853 out from ...
5854 (maintenance_test_options_command_mode): ... here.
5855 (maintenance_test_options_command_completion_result): Delete.
5856 (maintenance_test_options_command_completion_text): Update
5857 comment.
5858 (maintenance_show_test_options_completion_result): Change
5859 prototype. Just print
5860 maintenance_test_options_command_completion_text.
5861 (save_completion_result): New.
5862 (maintenance_test_options_completer_mode): Pass options context to
5863 complete_options, and then save a dump.
5864 (_initialize_maint_test_options): Use add_cmd to install "maint
5865 show test-options-completion-result".
5866
5867 2019-07-03 Pedro Alves <palves@redhat.com>
5868
5869 * NEWS (New commands): Mention "with" and "maint with".
5870 * cli/cli-cmds.c (with_command_1, with_command_completer_1)
5871 (with_command, with_command_completer): New.
5872 (pipe_command): Adjust to new repeat_previous
5873 interface.
5874 (_initialize_cli_cmds): Install the "with" command and its "w"
5875 alias.
5876 * cli/cli-cmds.h (with_command_1, with_command_completer_1): New
5877 declarations.
5878 * cli/cli-setshow.c (parse_cli_var_uinteger)
5879 (parse_cli_var_zuinteger_unlimited, do_set_command): Handle empty
5880 argument strings for all var_types.
5881 (get_setshow_command_value_string): New, factored out from ...
5882 (do_show_command): ... this.
5883 * cli/cli-setshow.h: Include <string>.
5884 (get_setshow_command_value_string): Declare.
5885 * command.h (repeat_previous): Now returns const char *. Adjust
5886 comment.
5887 * maint.c: Include "cli/cli-cmds.h".
5888 (maintenance_with_cmd, maintenance_with_cmd_completer): New.
5889 (_initialize_maint_cmds): Register the "maintenance with" command.
5890 * top.c (repeat_previous): Move bits from pipe_command here:
5891 Return the saved command line, if any; error out if there's no
5892 command to relaunch.
5893
5894 2019-07-03 Pedro Alves <palves@redhat.com>
5895
5896 * NEWS (New commands): Mention "maint set/show test-settings"
5897 instead of "maint test-settings".
5898 * maint-test-settings.c (maintenance_test_settings_list): Delete.
5899 (maintenance_test_settings_set_list): Rename to ...
5900 (maintenance_set_test_settings_list): ... this.
5901 (maintenance_test_settings_show_list): Rename to ...
5902 (maintenance_show_test_settings_list): ... this.
5903 (maintenance_test_settings_cmd): Delete.
5904 (maintenance_test_settings_set_cmd): ...
5905 (maintenance_set_test_settings_cmd): ... this.
5906 (maintenance_test_settings_show_cmd): ...
5907 (maintenance_show_test_settings_cmd): ... this.
5908 (maintenance_test_settings_show_value_cmd):
5909 (maintenance_show_test_settings_value_cmd): ... this.
5910 (_initialize_maint_test_settings): No longer install the "maint
5911 test-settings" prefix command. Rename "maint test-settings set"
5912 to "maint set test-settings", and "maint test-settings show" to
5913 "maint show test-settings". Adjust all subcommands.
5914
5915 2019-07-03 Pedro Alves <palves@redhat.com>
5916
5917 * maint-test-settings.c: Fix file's intro comment. Replace all
5918 references to "test-options" with references to "test-settings",
5919 in comments.
5920
5921 2019-07-03 Pedro Alves <palves@redhat.com>
5922
5923 * maint-test-settings.c (maintenance_test_settings_xxx)
5924 (maintenance_test_settings_yyy, maintenance_test_settings_zzz):
5925 New.
5926 (maintenance_test_settings_enums): Use them.
5927 (maintenance_test_settings_enum): Default to
5928 maintenance_test_settings_xxx.
5929 (_initialize_maint_test_settings): Initialize
5930 MAINTENANCE_TEST_SETTINGS_FILENAME.
5931
5932 2019-07-02 Simon Marchi <simon.marchi@polymtl.ca>
5933
5934 * breakpoint.h (remove_breakpoints_inf): Change return type to
5935 void, move function documentation here.
5936 * breakpoint.c (remove_breakpoints_inf): Change return type to
5937 void, move function documentation to header.
5938
5939 2019-07-02 Pedro Alves <palves@redhat.com>
5940
5941 * NEWS (Completion improvements): Mention "info threads".
5942 * thread.c (struct info_threads_opts, info_threads_option_defs)
5943 (make_info_threads_options_def_group): New.
5944 (info_threads_command): Use gdb::option::process_options.
5945 (info_threads_command_completer): New.
5946 (_initialize_thread): Use gdb::option::build_help to build the
5947 help text for "info threads".
5948
5949 2019-07-02 Simon Marchi <simon.marchi@polymtl.ca>
5950
5951 * defs.h (generic_load): Move from here...
5952 * symfile.h (generic_load): ... to here. Rename name parameter
5953 to args.
5954 * symfile.c (generic_load): Add comment.
5955
5956 2019-07-01 Tom Tromey <tromey@adacore.com>
5957
5958 * dwarf2read.c
5959 (dw2_debug_names_iterator::find_vec_in_debug_names): Hoist
5960 declaration of without_params. Fix formatting.
5961
5962 2019-07-01 Tom Tromey <tromey@adacore.com>
5963
5964 * ada-exp.y (find_primitive_type): Update.
5965 * ada-lang.h (ada_lookup_symbol): Update.
5966 * ada-lang.c (ada_lookup_symbol): Remove "is_a_field_of_this"
5967 parameter.
5968 (ada_lookup_encoded_symbol, ada_lookup_symbol_nonlocal): Update.
5969
5970 2019-06-28 Sergio Durigan Junior <sergiodj@redhat.com>
5971
5972 PR breakpoints/24541
5973 * gdbarch.c: Regenerate.
5974 * gdbarch.h: Regenerate.
5975 * gdbarch.sh: Add 'stap_adjust_register'.
5976 * i386-tdep.c: Include '<unordered_set>'.
5977 (i386_stap_adjust_register): New function.
5978 (i386_elf_init_abi): Register 'i386_stap_adjust_register'.
5979 * stap-probe.c (stap_parse_register_operand): Call
5980 'gdbarch_stap_adjust_register'.
5981
5982 2019-06-28 Sergio Durigan Junior <sergiodj@redhat.com>
5983
5984 PR python/24742
5985 https://bugzilla.redhat.com/show_bug.cgi?id=1723564
5986 * python/python.c (do_start_initialization): Use 'xmalloc'
5987 instead of 'PyMem_Malloc'.
5988
5989 2019-06-28 Tom Tromey <tromey@adacore.com>
5990
5991 * dwarf2read.c (partial_die_info::read): Prefer the linkage name
5992 for Ada.
5993
5994 2019-06-27 Tom Tromey <tromey@adacore.com>
5995
5996 * arm-tdep.c (arm_objfile_data_key): Move lower. Change type to
5997 objfile_key.
5998 (arm_find_mapping_symbol, arm_record_special_symbol)
5999 (_initialize_arm_tdep): Update.
6000 (arm_objfile_data_free): Remove.
6001
6002 2019-06-27 Tom Tromey <tromey@adacore.com>
6003
6004 * cp-valprint.c (cp_print_value_fields): Pass opts, not options,
6005 to cp_print_static_field.
6006
6007 2019-06-26 Tom Tromey <tromey@adacore.com>
6008
6009 * minsyms.c (lookup_minimal_symbol_solib_trampoline): Remove.
6010 * minsyms.h (lookup_minimal_symbol_solib_trampoline): Don't
6011 declare.
6012
6013 2019-06-26 Alan Hayward <alan.hayward@arm.com>
6014
6015 * features/aarch64-core.c (create_feature_aarch64_core):
6016 Regenerate.
6017 * features/aarch64-core.xml: Add cpsr flags.
6018
6019 2019-06-26 Alan Hayward <alan.hayward@arm.com>
6020
6021 * arm-tdep.c (arm_gnu_triplet_regexp): New function.
6022 (arm_gdbarch_init): Add arm_gnu_triplet_regexp.
6023
6024 2019-06-25 Simon Marchi <simon.marchi@polymtl.ca>
6025
6026 * arm-tdep.c (struct arm_per_objfile) <section_maps_sorted>: New
6027 field.
6028 (arm_find_mapping_symbol): Sort mapping symbol vectors on first
6029 use.
6030 (arm_record_special_symbol): Don't insert new symbol in sorted
6031 position, push it at the end.
6032
6033 2019-06-25 Simon Marchi <simon.marchi@polymtl.ca>
6034
6035 * arm-tdep.c (struct arm_mapping_symbol) (operator <): New.
6036 (arm_mapping_symbol_s): Remove.
6037 (DEF_VEC_O(arm_mapping_symbol_s)): Remove.
6038 (arm_mapping_symbol_vec): New typedef.
6039 (struct arm_per_objfile): Add constructor.
6040 <section_maps>: Change type to
6041 std::unique_ptr<arm_mapping_symbol_vec[]>.
6042 (arm_compare_mapping_symbols): Remove.
6043 (arm_find_mapping_symbol): Adjust to section_maps type change.
6044 (arm_objfile_data_free): Call delete on arm_per_objfile.
6045 (arm_record_special_symbol): Adjust to section_maps type change.
6046 Allocate arm_per_objfile with new.
6047
6048 2019-06-25 Philippe Waroquiers <philippe.waroquiers@skynet.be>
6049
6050 * cli/cli-cmds.c (alias_command): Compare the alias prefix
6051 with the command prefix.
6052
6053 2019-06-25 Tom Tromey <tom@tromey.com>
6054
6055 * tui/tui-wingeneral.c (tui_delete_win): Remove "return".
6056 * tui/tui-data.c (~tui_gen_win_info): Remove "if".
6057
6058 2019-06-25 Tom Tromey <tom@tromey.com>
6059
6060 * tui/tui-layout.c (init_and_make_win): Assert on unrecognized
6061 type.
6062 * tui/tui-data.h (struct tui_gen_win_info): Make constructor
6063 protected.
6064
6065 2019-06-25 Tom Tromey <tom@tromey.com>
6066
6067 * tui/tui-winsource.c
6068 (tui_source_window_base::set_is_exec_point_at): Add check against
6069 LOA_ADDRESS.
6070
6071 2019-06-25 Tom Tromey <tom@tromey.com>
6072
6073 * tui/tui-source.c (tui_set_source_content): Don't check before
6074 xfree.
6075 * tui/tui-disasm.c (tui_disassemble): Don't check before xfree.
6076
6077 2019-06-25 Tom Tromey <tom@tromey.com>
6078
6079 * tui/tui-winsource.h (tui_update_source_window_as_is)
6080 (tui_alloc_source_buffer, tui_line_is_displayed)
6081 (tui_addr_is_displayed): Change type of win_info.
6082 * tui/tui-winsource.c (tui_update_source_window_as_is)
6083 (tui_clear_source_content, tui_show_source_line)
6084 (tui_show_source_content, tui_source_window_base::refill)
6085 (tui_source_window_base::set_is_exec_point_at)
6086 (tui_source_window_base::set_is_exec_point_at)
6087 (tui_update_breakpoint_info, tui_set_exec_info_content): Update.
6088 (tui_alloc_source_buffer, tui_line_is_displayed)
6089 (tui_addr_is_displayed): Change type of win_info. Update.
6090 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
6091 (tui_source_window_base::do_make_visible_with_new_height):
6092 Update.
6093 * tui/tui-source.c (tui_set_source_content)
6094 (tui_set_source_content_nil)
6095 (tui_source_window::do_scroll_vertical): Update.
6096 * tui/tui-layout.c (show_layout): Update.
6097 * tui/tui-disasm.c (tui_set_disassem_content)
6098 (tui_disasm_window::do_scroll_vertical): Update.
6099 * tui/tui-data.h (tui_win_content): Remove.
6100 (struct tui_gen_win_info) <content, content_size>: Remove.
6101 (struct tui_source_element): Add initializers and destructor.
6102 (union tui_which_element, struct tui_win_element): Remove.
6103 (struct tui_source_window_base) <content>: New field.
6104 (struct tui_data_window): Remove destructor.
6105 (tui_alloc_content, tui_free_win_content)
6106 (tui_free_all_source_wins_content): Don't declare.
6107 * tui/tui-data.c (tui_initialize_static_data): Update.
6108 (init_content_element, tui_alloc_content): Remove.
6109 (~tui_gen_win_info): Update.
6110 (~tui_data_window, tui_free_all_source_wins_content)
6111 (tui_free_win_content, free_content, free_content_elements):
6112 Remove.
6113
6114 2019-06-25 Tom Tromey <tom@tromey.com>
6115
6116 * tui/tui-winsource.h (tui_clear_source_content)
6117 (tui_erase_source_content, tui_show_source_content): Change type
6118 of win_info.
6119 * tui/tui-winsource.c (tui_clear_source_content)
6120 (tui_erase_source_content, tui_show_source_content): Change type
6121 of win_info.
6122 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
6123 * tui/tui-source.h (tui_set_source_content_nil): Change type of
6124 win_info.
6125 * tui/tui-source.c (tui_set_source_content_nil): Change type of
6126 win_info.
6127 * tui/tui-layout.c (show_source_or_disasm_and_command): Update.
6128
6129 2019-06-25 Tom Tromey <tom@tromey.com>
6130
6131 * tui/tui-winsource.c (tui_clear_source_content)
6132 (tui_source_window_base::set_is_exec_point_at): Update.
6133 * tui/tui-source.c (tui_set_source_content_nil): Update.
6134 * tui/tui-data.h (struct tui_source_element) <is_exec_point>: Now
6135 a bool.
6136 * tui/tui-data.c (init_content_element): Update.
6137
6138 2019-06-25 Tom Tromey <tom@tromey.com>
6139
6140 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Update.
6141 * tui/tui-win.c (make_invisible_and_set_new_height): Update.
6142 * tui/tui-layout.c (init_and_make_win): Update.
6143 * tui/tui.h (enum tui_win_type): Update.
6144 * tui/tui-data.h (tui_win_is_auxiliary): Rename from
6145 tui_win_is_auxillary.
6146 * tui/tui-data.c (tui_win_is_auxiliary): Rename from
6147 tui_win_is_auxillary.
6148
6149 2019-06-25 Tom Tromey <tom@tromey.com>
6150
6151 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Update.
6152 * tui/tui-windata.c (tui_data_window::first_data_item_displayed)
6153 (tui_delete_data_content_windows, tui_display_all_data)
6154 (tui_data_window::do_scroll_vertical, tui_display_data_from):
6155 Update.
6156 * tui/tui-win.c (tui_data_window::set_new_height): Simplify.
6157 * tui/tui-regs.c (tui_last_regs_line_no)
6158 (tui_line_from_reg_element_no, tui_first_reg_element_no_inline)
6159 (tui_show_registers): Update.
6160 (tui_show_register_group): Return void. Update.
6161 (tui_display_registers_from, tui_display_reg_element_at_line)
6162 (tui_display_registers_from_line, tui_check_register_values):
6163 Update.
6164 * tui/tui-data.h (union tui_which_element) <data_window>: Remove
6165 member.
6166 (struct tui_data_window) <regs_content>: Now a std::vector.
6167 <regs_content_count>: Remove.
6168 (tui_add_content_elements, tui_free_data_content): Don't declare.
6169 * tui/tui-data.c (tui_data_window::clear_detail): Update.
6170 (init_content_element): Remove DATA_WIN case. Add assert.
6171 (tui_add_content_elements): Remove.
6172 (tui_data_window): Update.
6173 (tui_free_data_content): Remove.
6174 (free_content_elements): Remove DATA_WIN case.
6175
6176 2019-06-25 Tom Tromey <tom@tromey.com>
6177
6178 * tui/tui-data.c (tui_data_item_window): Update.
6179 * tui/tui-windata.h (tui_check_data_values): Don't declare.
6180 * tui/tui-windata.c (tui_display_all_data)
6181 (tui_display_data_from_line): Update.
6182 (tui_check_data_values): Remove.
6183 * tui/tui-regs.c (tui_show_register_group)
6184 (tui_display_reg_element_at_line): Update.
6185 * tui/tui-hooks.c (tui_register_changed)
6186 (tui_refresh_frame_and_register_information): Call
6187 tui_check_register_values.
6188 * tui/tui-data.h (struct tui_data_window) <data_content,
6189 data_content_count, data_type>: Remove.
6190 (enum tui_data_type): Remove.
6191
6192 * tui/tui-data.c (tui_data_window::clear_detail)
6193 (~tui_data_window): Update.
6194
6195 2019-06-25 Tom Tromey <tom@tromey.com>
6196
6197 * tui/tui-windata.h (tui_first_data_item_displayed): Don't
6198 declare.
6199 * tui/tui-windata.c (tui_data_window::first_data_item_displayed):
6200 Rename from tui_first_data_item_displayed. Update.
6201 (tui_data_window::refresh_all)
6202 (tui_data_window::do_scroll_vertical): Update.
6203 * tui/tui-data.h (struct tui_data_window)
6204 <first_data_item_displayed>: Declare new method.
6205
6206 2019-06-25 Tom Tromey <tom@tromey.com>
6207
6208 * tui/tui-data.h (tui_init_generic_part): Don't declare.
6209 * tui/tui-data.c (tui_init_generic_part): Remove, moving
6210 contents...
6211 (tui_initialize_static_data): ...here.
6212
6213 2019-06-25 Tom Tromey <tom@tromey.com>
6214
6215 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
6216 (tui_display_registers_from, tui_check_register_values): Update.
6217 (tui_display_register): Remove win_info parameter; update.
6218 (tui_get_register): Change type of parameters.
6219 * tui/tui-data.h (struct tui_data_element): Remove.
6220 (union tui_which_element) <data>: Remove.
6221 <data_window>: Change type.
6222 (struct tui_data_item_window): New.
6223 * tui/tui-data.c (init_content_element): Remove DATA_ITEM_WIN
6224 case. Add assert.
6225 (~tui_data_item_window): New destructor.
6226 (free_content_elements): Remove DATA_ITEM_WIN case.
6227
6228 2019-06-25 Tom Tromey <tom@tromey.com>
6229
6230 * tui/tui.h (enum tui_win_type) <MAX_WINDOWS, UNDEFINED_WIN>:
6231 Remove.
6232
6233 2019-06-25 Tom Tromey <tom@tromey.com>
6234
6235 * tui/tui-data.h (struct tui_command_element): Remove.
6236 (union tui_which_element) <command>: Remove.
6237 * tui/tui-data.c (init_content_element): Remove CMD_WIN case. Add
6238 assert.
6239 (free_content_elements): Remove CMD_WIN case.
6240
6241 2019-06-25 Tom Tromey <tom@tromey.com>
6242
6243 * tui/tui-layout.c (tui_set_layout): Update.
6244 * tui/tui-data.h (struct tui_layout_def) <split>: Remove.
6245 * tui/tui-data.c (layout_def): Update.
6246
6247 2019-06-25 Tom Tromey <tom@tromey.com>
6248
6249 * tui/tui-wingeneral.c (tui_refresh_all): Update.
6250 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
6251 (tui_source_window_base::set_new_height): Update.
6252 * tui/tui-stack.c (tui_make_status_line): Change parameter type.
6253 Update.
6254 (tui_set_locator_fullname, tui_set_locator_info)
6255 (tui_show_frame_info): Update.
6256 * tui/tui-source.c (tui_set_source_content)
6257 (tui_source_is_displayed): Update.
6258 * tui/tui-layout.c (show_source_disasm_command, show_data)
6259 (show_source_or_disasm_and_command): Update.
6260 * tui/tui-disasm.c (tui_set_disassem_content)
6261 (tui_get_begin_asm_address): Update.
6262 * tui/tui-data.h (struct tui_locator_element): Remove.
6263 (union tui_which_element) <locator>: Remove.
6264 (struct tui_locator_window): New.
6265 (tui_locator_win_info_ptr): Change return type.
6266 * tui/tui-data.c (_locator): Change type.
6267 (tui_locator_win_info_ptr): Change return type.
6268 (init_content_element): Remove LOCATOR_WIN case. Add assert.
6269 (tui_alloc_content): Add assert.
6270
6271 2019-06-25 Tom Tromey <tom@tromey.com>
6272
6273 * tui/tui-winsource.c
6274 (tui_exec_info_window::maybe_allocate_content): New method.
6275 (tui_set_exec_info_content, tui_show_exec_info_content): Update.
6276 * tui/tui-layout.c (init_and_make_win): Add EXEC_INFO_WIN case.
6277 (make_source_or_disasm_window): Add cast.
6278 * tui/tui-data.h (union tui_which_element) <simple_string>:
6279 Remove.
6280 (struct tui_source_info): New.
6281 (struct tui_source_window_base) <execution_info>: Change type.
6282 * tui/tui-data.c (init_content_element): Remove EXEC_INFO_WIN
6283 case, and add assert.
6284 (tui_alloc_content): Add assert.
6285
6286 2019-06-25 Tom Tromey <tom@tromey.com>
6287
6288 * tui/tui-data.h (tui_alloc_win_info): Don't declare.
6289 * tui/tui-layout.c (init_and_make_win): Use "new" directly.
6290 * tui/tui-data.c (tui_alloc_win_info): Remove.
6291
6292 2019-06-25 Tom Tromey <tom@tromey.com>
6293
6294 * tui/tui-win.c (tui_set_win_focus_to): Don't check window type.
6295 * tui/tui-wingeneral.c (tui_unhighlight_win): Check
6296 can_highlight.
6297
6298 2019-06-25 Tom Tromey <tom@tromey.com>
6299
6300 * tui/tui-win.c (tui_source_window_base::update_tab_width): Call
6301 make_visible_with_new_height method.
6302 (tui_win_info::make_visible_with_new_height): New method.
6303 (tui_source_window_base::do_make_visible_with_new_height)
6304 (tui_data_window::do_make_visible_with_new_height)
6305 (tui_cmd_window::do_make_visible_with_new_height): New methods.
6306 (make_visible_with_new_height): Remove.
6307 (tui_resize_all, tui_adjust_win_heights): Use
6308 make_visible_with_new_height method.
6309 * tui/tui-data.h (struct tui_win_info)
6310 <do_make_visible_with_new_height, make_visible_with_new_height>:
6311 New methods.
6312 (struct tui_source_window_base, struct tui_data_window)
6313 (struct tui_cmd_window) <do_make_visible_with_new_height>: New
6314 methods.
6315
6316 2019-06-25 Tom Tromey <tom@tromey.com>
6317
6318 * tui/tui-win.c (tui_source_window_base::update_tab_width): New
6319 method.
6320 (update_tab_width): Call update_tab_width method.
6321 * tui/tui-data.h (struct tui_win_info)
6322 (struct tui_source_window_base) <update_tab_width>: New methods.
6323
6324 2019-06-25 Tom Tromey <tom@tromey.com>
6325
6326 * tui/tui-wingeneral.h (tui_make_window): Change type of "box_it"
6327 parameter.
6328 * tui/tui-wingeneral.c (tui_make_window): Change type of "box_it"
6329 parameter.
6330 (tui_gen_win_info::make_visible): Update.
6331 * tui/tui-layout.c (init_and_make_win): Change type of "box_it"
6332 parameter.
6333 * tui/tui-data.h (enum tui_box): New enum.
6334 (BOX_WINDOW, DONT_BOX_WINDOW): Remove defines.
6335
6336 2019-06-25 Tom Tromey <tom@tromey.com>
6337
6338 * tui/tui-layout.c (make_source_or_disasm_window): Always use
6339 init_and_make_win for EXEC_INFO_WIN.
6340 * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>: No
6341 longer inline.
6342 (struct tui_win_info) <~tui_win_info>: Inline.
6343 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
6344 Don't declare.
6345 * tui/tui-data.c (source_win, disasm_win): Remove globals.
6346 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
6347 Remove.
6348 (tui_initialize_static_data): Update.
6349 (~tui_gen_win_info): Handle more cleanup here.
6350 (~tui_source_window_base): Delete "execution_info".
6351 (~tui_win_info): Move code to ~tui_gen_win_info; remove.
6352
6353 2019-06-25 Tom Tromey <tom@tromey.com>
6354
6355 * tui/tui-layout.c (make_command_window): Don't set
6356 can_highlight.
6357 (show_source_disasm_command): Call the reset method.
6358 (show_data): Don't set can_highlight. Call the reset method.
6359 (tui_gen_win_info::reset): Rename from init_gen_win_info
6360 (init_and_make_win): Simplify. Return tui_gen_win_info.
6361 (show_source_or_disasm_and_command): Call the reset method.
6362 * tui/tui-data.h (struct tui_gen_win_info) <reset>: New method.
6363 (struct tui_cmd_window): Set can_highlight.
6364
6365 2019-06-25 Tom Tromey <tom@tromey.com>
6366
6367 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Rename
6368 from make_visible.
6369 (tui_make_visible, tui_make_invisible): Rewrite.
6370 (tui_win_info::make_visible): Remove.
6371 (tui_source_window_base::make_visible): Update.
6372 * tui/tui-data.h (struct tui_gen_win_info) <make_visible>: New
6373 method. Moved from...
6374 (struct tui_win_info) <make_visible>: ...here.
6375
6376 2019-06-25 Tom Tromey <tom@tromey.com>
6377
6378 * tui/tui-winsource.c
6379 (tui_source_window_base::do_scroll_horizontal): Remove direction
6380 parameter.
6381 * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Remove
6382 direction parameter.
6383 * tui/tui-win.c (tui_win_info::forward_scroll)
6384 (tui_win_info::backward_scroll, tui_win_info::left_scroll)
6385 (tui_win_info::right_scroll): Update.
6386 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Remove
6387 direction parameter.
6388 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Remove
6389 direction parameter.
6390 * tui/tui-data.h (enum tui_scroll_direction): Remove.
6391 (struct tui_win_info) <do_scroll_vertical, do_scroll_horizontal>:
6392 Remove direction parameter.
6393 (struct tui_source_window_base, struct tui_source_window)
6394 (struct tui_disasm_window, struct tui_data_window)
6395 (struct tui_cmd_window): Update.
6396
6397 2019-06-25 Tom Tromey <tom@tromey.com>
6398
6399 * tui/tui-winsource.h (tui_set_exec_info_content)
6400 (tui_show_exec_info_content, tui_erase_exec_info_content)
6401 (tui_clear_exec_info_content, tui_update_exec_info): Change
6402 argument to tui_source_window_base.
6403 * tui/tui-winsource.c (tui_set_exec_info_content)
6404 (tui_show_exec_info_content, tui_erase_exec_info_content)
6405 (tui_clear_exec_info_content, tui_update_exec_info): Change
6406 argument to tui_source_window_base.
6407
6408 2019-06-25 Tom Tromey <tom@tromey.com>
6409
6410 * tui/tui-winsource.h (tui_set_exec_info_content): Return void.
6411 * tui/tui-winsource.c (tui_set_exec_info_content): Return void.
6412
6413 2019-06-25 Tom Tromey <tom@tromey.com>
6414
6415 * tui/tui-winsource.c (tui_set_exec_info_content): Remove NULL
6416 check.
6417
6418 2019-06-25 Tom Tromey <tom@tromey.com>
6419
6420 * tui/tui-winsource.h (tui_alloc_source_buffer): Change return
6421 type to void.
6422 * tui/tui-winsource.c (tui_alloc_source_buffer): Change return
6423 type to void.
6424 * tui/tui-source.c (tui_set_source_content): Update.
6425 * tui/tui-disasm.c (tui_set_disassem_content): Update.
6426
6427 2019-06-25 Tom Tromey <tom@tromey.com>
6428
6429 * tui/tui-win.c (window_name_completer, tui_set_focus)
6430 (tui_all_windows_info): Use name method.
6431 * tui/tui-data.h (struct tui_gen_win_info)
6432 (struct tui_source_window, struct tui_disasm_window)
6433 (struct tui_data_window, struct tui_cmd_window) <name>: New
6434 method.
6435 (tui_win_name): Don't declare.
6436 * tui/tui-data.c (tui_partial_win_by_name): Use name method.
6437 (tui_win_name): Remove.
6438
6439 2019-06-25 Tom Tromey <tom@tromey.com>
6440
6441 * tui/tui-winsource.h (tui_update_source_window)
6442 (tui_update_source_window_as_is): Change parameter type.
6443 * tui/tui-winsource.c (tui_update_source_window): Change win_info
6444 to be a tui_source_window_base.
6445 (tui_update_source_window_as_is): Likewise.
6446 * tui/tui-win.c (make_visible_with_new_height): Update.
6447
6448 2019-06-25 Tom Tromey <tom@tromey.com>
6449
6450 * tui/tui-winsource.c (tui_erase_source_content)
6451 (tui_show_source_content, tui_show_exec_info_content)
6452 (tui_erase_exec_info_content): Use refresh_window method.
6453 * tui/tui-wingeneral.h (tui_refresh_win): Don't declare.
6454 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Rename
6455 from tui_refresh_win.
6456 (tui_data_window::refresh_window): New method.
6457 (tui_win_info::refresh, tui_source_window_base::refresh)
6458 (tui_refresh_all): Use refresh_window method.
6459 * tui/tui-stack.c (tui_show_locator_content): Call refresh_window
6460 method.
6461 * tui/tui-regs.c (tui_display_register): Call refresh_window
6462 method.
6463 * tui/tui-layout.c (show_source_disasm_command)
6464 (show_source_or_disasm_and_command): Call refresh_window method.
6465 * tui/tui-data.h (struct tui_gen_win_info)
6466 (struct tui_data_window, struct tui_cmd_window) <refresh_window>:
6467 New method.
6468
6469 2019-06-25 Tom Tromey <tom@tromey.com>
6470
6471 * tui/tui.c (tui_rl_other_window, tui_enable)
6472 (tui_is_window_visible, tui_get_command_dimension): Update.
6473 * tui/tui-winsource.c (tui_update_source_window_as_is)
6474 (tui_clear_source_content, tui_erase_source_content)
6475 (tui_show_source_line, tui_source_window_base::refill)
6476 (tui_source_window_base::do_scroll_horizontal)
6477 (tui_source_window_base::set_is_exec_point_at)
6478 (tui_update_breakpoint_info, tui_set_exec_info_content)
6479 (tui_alloc_source_buffer, tui_line_is_displayed)
6480 (tui_addr_is_displayed): Update.
6481 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win)
6482 (tui_check_and_display_highlight_if_needed)
6483 (tui_win_info::make_visible, tui_win_info::refresh)
6484 (tui_refresh_all): Update.
6485 * tui/tui-windata.c (tui_first_data_item_displayed)
6486 (tui_delete_data_content_windows, tui_erase_data_content)
6487 (tui_display_all_data, tui_data_window::refresh_all)
6488 (tui_check_data_values): Update.
6489 * tui/tui-win.c (window_name_completer, tui_update_gdb_sizes)
6490 (tui_set_win_focus_to, tui_win_info::forward_scroll)
6491 (tui_win_info::backward_scroll, tui_refresh_all_win)
6492 (tui_resize_all, tui_set_focus, tui_all_windows_info)
6493 (update_tab_width, tui_set_win_height, tui_adjust_win_heights)
6494 (tui_source_window_base::set_new_height)
6495 (tui_data_window::set_new_height)
6496 (make_invisible_and_set_new_height)
6497 (make_visible_with_new_height, new_height_ok)
6498 (parse_scrolling_args): Update.
6499 * tui/tui-stack.c (tui_show_frame_info): Update.
6500 * tui/tui-source.c (tui_set_source_content)
6501 (tui_set_source_content_nil, tui_source_is_displayed)
6502 (tui_source_window::do_scroll_vertical): Update.
6503 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
6504 (tui_display_registers_from, tui_display_reg_element_at_line)
6505 (tui_check_register_values, tui_reg_command): Update.
6506 * tui/tui-layout.c (tui_default_win_height)
6507 (show_source_disasm_command, show_data, init_and_make_win)
6508 (show_source_or_disasm_and_command): Update.
6509 * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts)
6510 (tui_redisplay_readline, tui_mld_flush)
6511 (tui_mld_erase_entire_line, tui_mld_getc, tui_cont_sig)
6512 (tui_getc): Update.
6513 * tui/tui-disasm.c (tui_set_disassem_content)
6514 (tui_disasm_window::do_scroll_vertical): Update.
6515 * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>:
6516 Now virtual.
6517 (struct tui_win_info): Derive from tui_gen_win_info.
6518 <~tui_win_info>: Mark as override.
6519 <generic>: Remove member.
6520 * tui/tui-data.c (tui_cmd_window::clear_detail, tui_next_win)
6521 (tui_prev_win, tui_partial_win_by_name, tui_win_info)
6522 (~tui_data_window, ~tui_win_info)
6523 (tui_free_all_source_wins_content): Update.
6524 * tui/tui-command.c (tui_refresh_cmd_win): Update.
6525
6526 2019-06-25 Tom Tromey <tom@tromey.com>
6527
6528 * tui/tui-layout.c (init_and_make_win): Use new.
6529 * tui/tui-data.h (struct tui_gen_win_info): Add constructor,
6530 destructor, initializers.
6531 (tui_alloc_generic_win_info): Don't declare.
6532 * tui/tui-data.c (_locator): Add argument to constructor.
6533 (source_win, disasm_win): New globals.
6534 (exec_info): Remove.
6535 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
6536 Update.
6537 (tui_alloc_generic_win_info): Remove.
6538 (init_content_element): Use new.
6539 (tui_win_info::tui_win_info): Update.
6540 (free_content_elements) <case DATA_WIN>: Use delete.
6541
6542 2019-06-25 Tom Tromey <tom@tromey.com>
6543
6544 * tui/tui-wingeneral.c (tui_refresh_win): Update.
6545 * tui/tui-windata.c (tui_first_data_item_displayed)
6546 (tui_delete_data_content_windows): Update.
6547 * tui/tui-win.c (tui_data_window::set_new_height): Update.
6548 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
6549 (tui_display_registers_from, tui_check_register_values): Update.
6550 * tui/tui-data.h (union tui_which_element) <data_window>: Now a
6551 pointer.
6552 * tui/tui-data.c (init_content_element): Update. Allocate the new
6553 window.
6554 (tui_free_data_content): Update.
6555 (free_content_elements) <case DATA_WIN>: Free the window.
6556
6557 2019-06-25 Tom Tromey <tom@tromey.com>
6558
6559 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win):
6560 Update.
6561 * tui/tui-layout.c (make_command_window)
6562 (show_source_disasm_command, show_data, init_and_make_win)
6563 (show_source_or_disasm_and_command): Update.
6564 * tui/tui-data.h (struct tui_win_info) <set_highlight>: New
6565 method.
6566 <can_highight, is_highlighted>: Now bool.
6567 (tui_set_win_highlight): Don't declare.
6568 * tui/tui-data.c (tui_set_win_highlight): Remove.
6569
6570 2019-06-25 Tom Tromey <tom@tromey.com>
6571
6572 * tui/tui-wingeneral.c (make_visible): Remove check of window
6573 type.
6574
6575 2019-06-25 Tom Tromey <tom@tromey.com>
6576
6577 * tui/tui-win.c (tui_win_info::max_height)
6578 (tui_cmd_window::max_height): New methods.
6579 (new_height_ok): Call max_height.
6580 * tui/tui-data.h (struct tui_win_info, struct tui_cmd_window)
6581 <max_height>: New method.
6582
6583 2019-06-25 Tom Tromey <tom@tromey.com>
6584
6585 * tui/tui-win.c (tui_source_window_base::set_new_height)
6586 (tui_data_window::set_new_height): New methods.
6587 (make_invisible_and_set_new_height): Call set_new_height method.
6588 * tui/tui-data.h (struct tui_win_info)
6589 (struct tui_source_window_base, struct tui_data_window)
6590 <set_new_height>: New method.
6591
6592 2019-06-25 Tom Tromey <tom@tromey.com>
6593
6594 * tui/tui.c (tui_rl_other_window): Call the refresh_all method.
6595 * tui/tui-windata.c (tui_data_window::refresh_all): Rename from
6596 tui_refresh_data_win.
6597 * tui/tui-win.c (tui_source_window_base::refresh_all): New
6598 method.
6599 (tui_refresh_all_win): Call the refresh_all method.
6600 (tui_set_focus): Likewise.
6601 * tui/tui-data.h (struct tui_win_info) <refresh_all>: New method.
6602 (struct tui_source_window_base, struct tui_data_window) <refresh>:
6603 Likewise.
6604
6605 2019-06-25 Tom Tromey <tom@tromey.com>
6606
6607 * tui/tui-winsource.h (tui_refill_source_window)
6608 (tui_set_is_exec_point_at): Don't declare.
6609 * tui/tui-winsource.c (tui_update_source_windows_with_addr)
6610 (tui_source_window_base::refill): Rename from
6611 tui_refill_source_window.
6612 (tui_source_window_base::do_scroll_horizontal): Update.
6613 (tui_source_window_base::set_is_exec_point_at): Rename from
6614 tui_set_is_exec_point_at.
6615 (tui_update_all_breakpoint_info): Update.
6616 * tui/tui-stack.c (tui_show_frame_info): Update.
6617 * tui/tui-layout.c (show_data): Add cast.
6618 * tui/tui-hooks.c (tui_redisplay_source): Call refill method.
6619 * tui/tui-data.h (struct tui_source_window_base) <refill,
6620 set_is_exec_point_at>: New methods.
6621 (tui_source_windows, tui_add_to_source_windows): Update types.
6622 (tui_add_to_source_windows): Remove redundant declaration.
6623 * tui/tui-data.c (source_windows): Store tui_source_window_base.
6624 (tui_source_windows): Change return type.
6625 (tui_clear_source_windows_detail): Update.
6626 (tui_add_to_source_windows): Change type of parameter.
6627 (tui_free_all_source_wins_content): Update.
6628
6629 2019-06-25 Tom Tromey <tom@tromey.com>
6630
6631 * tui/tui-wingeneral.c (tui_win_info::refresh)
6632 (tui_source_window_base::refresh): New methods.
6633 (tui_refresh_all): Call the refresh method.
6634 * tui/tui-data.h (struct tui_win_info)
6635 (struct tui_source_window_base) <refresh>: New method.
6636
6637 2019-06-25 Tom Tromey <tom@tromey.com>
6638
6639 * tui/tui.h (tui_is_window_visible): Return bool.
6640 * tui/tui.c (tui_is_window_visible): Return bool.
6641 * tui/tui-wingeneral.c (tui_make_window, make_visible)
6642 (tui_make_visible, tui_make_invisible)
6643 (tui_win_info::make_visible)
6644 (tui_source_window_base::make_visible, make_all_visible)
6645 (tui_make_all_visible, tui_make_all_invisible): Update.
6646 * tui/tui-windata.c (tui_delete_data_content_windows): Update.
6647 * tui/tui-data.h (struct tui_gen_win_info) <is_visible>: Now
6648 bool.
6649 (struct tui_win_info, struct tui_source_window_base)
6650 (struct tui_cmd_window) <make_visible>: Change parameter to bool.
6651 * tui/tui-data.c (tui_init_generic_part): Update.
6652
6653 2019-06-25 Tom Tromey <tom@tromey.com>
6654
6655 * tui/tui-wingeneral.c (tui_win_info::make_visible)
6656 (tui_source_window_base::make_visible): New methods.
6657 (make_all_visible): Make method call.
6658 * tui/tui-data.h (struct tui_win_info) <make_visible>: New method.
6659 (struct tui_source_window_base, struct tui_cmd_window): Override
6660 make_visible.
6661 (tui_win_is_source_type): Don't declare.
6662 * tui/tui-data.c (tui_win_is_source_type): Remove.
6663
6664 2019-06-25 Tom Tromey <tom@tromey.com>
6665
6666 * tui/tui-layout.c (show_source_or_disasm_and_command): Remove
6667 NULL check.
6668
6669 2019-06-25 Tom Tromey <tom@tromey.com>
6670
6671 * tui/tui-data.h (struct tui_data_window, struct tui_cmd_window):
6672 Inline constructor. Add initializers for members.
6673 * tui/tui-data.c (tui_data_window, tui_cmd_window): Remove
6674 constructors; now inline in class.
6675
6676 2019-06-25 Tom Tromey <tom@tromey.com>
6677
6678 * tui/tui-regs.c (tui_show_registers): Update.
6679 * tui/tui-data.h (struct tui_data_window) <display_regs>: Now
6680 bool.
6681 * tui/tui-data.c (tui_data_window::clear_detail)
6682 (tui_data_window): Update.
6683
6684 2019-06-25 Tom Tromey <tom@tromey.com>
6685
6686 * tui/tui-windata.c (tui_display_all_data)
6687 (tui_display_data_from_line, tui_display_data_from)
6688 (tui_check_data_values, tui_data_window::do_scroll_vertical):
6689 Update.
6690 * tui/tui-regs.c (tui_last_regs_line_no)
6691 (tui_line_from_reg_element_no, tui_first_reg_element_no_inline)
6692 (tui_show_registers, tui_show_register_group)
6693 (tui_display_registers_from, tui_display_reg_element_at_line)
6694 (tui_display_registers_from_line, tui_check_register_values)
6695 (tui_reg_next, tui_reg_prev): Update.
6696 * tui/tui-layout.c (tui_set_layout, show_data): Update.
6697 * tui/tui-data.h (struct tui_data_info): Remove. Move contents to
6698 tui_data_window.
6699 (struct tui_win_info) <detail>: Remove. Add new fields from
6700 tui_data_info.
6701 (TUI_DATA_WIN): Add cast.
6702 * tui/tui-data.c (tui_data_window::clear_detail, tui_data_window)
6703 (~tui_data_window): Simplify.
6704
6705 2019-06-25 Tom Tromey <tom@tromey.com>
6706
6707 * tui/tui-layout.c (show_source_disasm_command)
6708 (show_source_or_disasm_and_command): Update.
6709 * tui/tui-io.c (update_cmdwin_start_line)
6710 (tui_redisplay_readline): Update.
6711 * tui/tui-data.h (struct tui_command_info): Remove.
6712 (struct tui_win_info) <detail>: Remove command_info member.
6713 (struct tui_data_window) <start_line>: New member, from
6714 tui_command_info.
6715 (TUI_CMD_WIN): Add casts.
6716
6717 2019-06-25 Tom Tromey <tom@tromey.com>
6718
6719 * tui/tui-winsource.c (tui_update_source_window)
6720 (tui_refill_source_window)
6721 (tui_source_window_base::do_scroll_horizontal)
6722 (tui_update_breakpoint_info, tui_set_exec_info_content)
6723 (tui_show_exec_info_content, tui_erase_exec_info_content)
6724 (tui_clear_exec_info_content): Update.
6725 * tui/tui-wingeneral.c (make_all_visible, tui_refresh_all):
6726 Update.
6727 * tui/tui-win.c (make_invisible_and_set_new_height)
6728 (make_visible_with_new_height): Update.
6729 * tui/tui-source.c (tui_set_source_content)
6730 (tui_show_symtab_source): Update.
6731 * tui/tui-layout.c (extract_display_start_addr)
6732 (show_source_disasm_command, show_data)
6733 (make_source_or_disasm_window)
6734 (show_source_or_disasm_and_command): Update.
6735 * tui/tui-disasm.c (tui_set_disassem_content): Simplify.
6736 (tui_disasm_window::do_scroll_vertical): Remove shadowing
6737 "gdbarch".
6738 * tui/tui-data.h (struct tui_source_info): Remove. Move contents
6739 to tui_source_window_base.
6740 (struct tui_win_info) <detail>: Remove source_info member.
6741 (struct tui_source_window_base) <has_locator>: Inline.
6742 Move contents from tui_source_info; rename has_locator member to
6743 m_has_locator.
6744 (TUI_SRC_WIN, TUI_DISASM_WIN): Add casts.
6745 * tui/tui-data.c (tui_source_window_base::has_locator): Move to
6746 header file.
6747 (tui_source_window_base::clear_detail, ~tui_source_window_base):
6748 Simplify.
6749 (tui_free_all_source_wins_content): Cast to
6750 tui_source_window_base.
6751
6752 2019-06-25 Tom Tromey <tom@tromey.com>
6753
6754 * tui/tui-win.c (make_invisible_and_set_new_height)
6755 (make_visible_with_new_height): Call has_locator method.
6756 * tui/tui-layout.c (show_source_disasm_command, show_data)
6757 (show_source_or_disasm_and_command): Update for bool change.
6758 * tui/tui-data.h (struct tui_source_info) <has_locator>: Now bool.
6759 (tui_win_info) <has_locator>: New method.
6760 (struct tui_source_window_base) <has_locator>: New method.
6761 (tui_win_has_locator): Don't declare.
6762 * tui/tui-data.c (tui_source_window_base::has_locator): Rename
6763 from tui_win_has_locator.
6764 (tui_source_window_base): Use false, not FALSE.
6765
6766 2019-06-25 Tom Tromey <tom@tromey.com>
6767
6768 * tui/tui-data.h (tui_clear_win_detail): Don't declare.
6769 * tui/tui-data.c (tui_clear_source_windows_detail): Call the
6770 clear_detail method directly.
6771 (tui_clear_win_detail): Remove.
6772
6773 2019-06-25 Tom Tromey <tom@tromey.com>
6774
6775 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Use
6776 "this", not TUI_DISASM_WIN.
6777
6778 2019-06-25 Tom Tromey <tom@tromey.com>
6779
6780 * tui/tui-winsource.h (tui_horizontal_source_scroll): Don't
6781 declare.
6782 * tui/tui-winsource.c
6783 (tui_source_window_base::do_scroll_horizontal): Rename from
6784 tui_horizontal_source_scroll.
6785 * tui/tui-windata.h (tui_vertical_data_scroll): Don't declare.
6786 * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Rename
6787 from tui_vertical_data_scroll.
6788 * tui/tui-win.h (tui_scroll): Don't declare.
6789 * tui/tui-win.c (tui_win_info::forward_scroll)
6790 (tui_win_info::backward_scroll, tui_win_info::left_scroll)
6791 (tui_win_info::right_scroll): Rename and update.
6792 (tui_scroll_forward_command, tui_scroll_backward_command)
6793 (tui_scroll_left_command, tui_scroll_right_command): Update.
6794 (tui_scroll): Remove.
6795 * tui/tui-source.h: Don't declare tui_vertical_source_scroll.
6796 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Rename
6797 from tui_vertical_source_scroll.
6798 * tui/tui-disasm.h (tui_vertical_disassem_scroll): Don't declare.
6799 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Rename
6800 from tui_vertical_disassem_scroll.
6801 * tui/tui-data.h (struct tui_win_info) <do_scroll_vertical,
6802 do_scroll_horizontal>: New methods.
6803 <forward_scroll, backward_scroll, left_scroll, right_scroll>:
6804 Likewise.
6805 (struct tui_source_window_base): Add do_scroll_horizontal.
6806 (struct tui_source_window, struct tui_disasm_window): Add
6807 do_scroll_vertical.
6808 (struct tui_data_window, struct tui_cmd_window): Add
6809 do_scroll_horizontal and do_scroll_vertical.
6810 * tui/tui-command.c (tui_dispatch_ctrl_char): Use method calls.
6811
6812 2019-06-25 Tom Tromey <tom@tromey.com>
6813
6814 * tui/tui-data.h (struct tui_source_window_base): New struct.
6815 (struct tui_source_window): Derive from tui_source_window_base.
6816 (struct tui_disasm_window): New struct.
6817 * tui/tui-data.c (tui_source_window_base::clear_detail): Rename
6818 from tui_source_window::clear_detail.
6819 (tui_source_window_base): Rename from tui_source_window.
6820 (~tui_source_window_base): Rename from ~tui_source_window.
6821 (tui_alloc_win_info): Create a tui_disasm_window.
6822
6823 2019-06-25 Tom Tromey <tom@tromey.com>
6824
6825 * tui/tui-data.h (struct tui_source_window)
6826 (struct tui_data_window): Declare destructors.
6827 * tui/tui-data.c (~tui_source_window, ~tui_data_window): New
6828 destructors.
6829 (tui_win_info): Simplify.
6830
6831 2019-06-25 Tom Tromey <tom@tromey.com>
6832
6833 * tui/tui-winsource.c (tui_display_main)
6834 (tui_update_source_windows_with_addr)
6835 (tui_update_all_breakpoint_info): Update.
6836 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
6837 (new_height_ok, parse_scrolling_args): Update.
6838 * tui/tui-stack.c (tui_show_frame_info): Update.
6839 * tui/tui-data.h (struct tui_list): Remove.
6840 (tui_source_windows): Return a reference to a std::vector.
6841 * tui/tui-data.c (source_windows): Now a std::vector.
6842 (tui_source_windows): Change return type.
6843 (tui_clear_source_windows): Rewrite.
6844 (tui_clear_source_windows_detail, tui_add_to_source_windows)
6845 (tui_free_all_source_wins_content): Rewrite.
6846
6847 2019-06-25 Tom Tromey <tom@tromey.com>
6848
6849 * tui/tui-data.h (struct tui_win_info, struct tui_source_window)
6850 (struct tui_data_window, struct tui_cmd_window): Declare
6851 clear_detail method.
6852 * tui/tui-data.c (tui_source_window::clear_detail)
6853 (tui_cmd_window::clear_detail, tui_data_window::clear_detail): New
6854 methods.
6855 (tui_clear_win_detail): Simplify.
6856
6857 2019-06-25 Tom Tromey <tom@tromey.com>
6858
6859 * tui/tui-layout.c (make_source_window, make_disasm_window)
6860 (make_source_or_disasm_window): Remove win_info_ptr parameter.
6861 Return the new window.
6862 (show_source_disasm_command, show_data)
6863 (show_source_or_disasm_and_command): Update.
6864
6865 2019-06-25 Tom Tromey <tom@tromey.com>
6866
6867 * tui/tui-layout.c (make_command_window): Remove win_info_ptr
6868 parameter. Return the new window.
6869 (show_source_disasm_command): Update and remove NULL check.
6870 (show_source_or_disasm_and_command): Update.
6871
6872 2019-06-25 Tom Tromey <tom@tromey.com>
6873
6874 * tui/tui-layout.c (init_and_make_win): Remove NULL check.
6875
6876 2019-06-25 Tom Tromey <tom@tromey.com>
6877
6878 * tui/tui-data.h (struct tui_win_info): Make constructor
6879 protected. Make destructor virtual. Add initializers.
6880 (tui_source_window, tui_data_window, tui_cmd_window): New
6881 classes.
6882 * tui/tui-data.c (tui_win_info): Rename from init_win_info. Now a
6883 constructor. Add "type" parameter.
6884 (tui_source_window, tui_data_window, tui_cmd_window): New
6885 constructors.
6886 (tui_alloc_win_info): Instantiate the appropriate subclass.
6887
6888 2019-06-25 Tom Tromey <tom@tromey.com>
6889
6890 * tui/tui-win.c (tui_resize_all): Use delete.
6891 * tui/tui-data.h (struct tui_win_info) <~tui_win_info>: Declare
6892 destructor.
6893 (tui_free_window): Don't declare.
6894 * tui/tui-data.c (~tui_win_info): Rename from tui_free_window.
6895 Update.
6896
6897 2019-06-25 Tom Tromey <tom@tromey.com>
6898
6899 * tui/tui-data.h (struct tui_win_info): Add constructor.
6900 * tui/tui-data.c (tui_alloc_win_info): Use new.
6901 (tui_free_window): Use delete.
6902
6903 2019-06-22 Tom Tromey <tom@tromey.com>
6904
6905 * tui/tui-windata.h (tui_first_data_element_no_in_line): Don't
6906 declare.
6907 * tui/tui-windata.c (tui_first_data_element_no_in_line): Remove.
6908
6909 2019-06-22 Tom Tromey <tom@tromey.com>
6910
6911 * tui/tui-data.h (tui_del_window, tui_del_data_windows): Don't
6912 declare.
6913 * tui/tui-data.c (tui_del_window, tui_del_data_windows): Remove.
6914
6915 2019-06-22 Tom de Vries <tdevries@suse.de>
6916
6917 * dwarf2read.c (create_addrmap_from_aranges)
6918 (read_debug_names_from_section): Print ptrdiff_t using '%s' and plongest
6919 instead of '%zu'.
6920
6921 2019-06-21 Simon Marchi <simon.marchi@efficios.com>
6922
6923 * dwarf2read.h (dwarf2_section_info_def): Remove.
6924 (DEF_VEC_O (dwarf2_section_info_def)): Remove.
6925 * dwarf2read.c (struct dwo_sections) <types>: Change type to
6926 std::vector<dwarf2_section_info>.
6927 (struct dwo_file) <~dwo_file>: Remove.
6928 (dwarf2_per_objfile::~dwarf2_per_objfile): Don't manually free
6929 types field.
6930 (dwarf2_per_objfile::locate_sections): Adjust to std::vector.
6931 (dwarf2_read_debug_names): Likewise.
6932 (create_debug_types_hash_table): Change parameter type to
6933 array_view, adjust code accordingly.
6934 (dwarf2_locate_dwo_sections): Adjust to std::vector.
6935 (partial_die_info::fixup): Likewise.
6936 (determine_prefix): Likewise.
6937 * dwarf-index-write.c (write_psymtabs_to_index): Adjust.
6938
6939 2019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
6940
6941 * dwarf2read.c (struct dwo_file) <dbfd>: Change type to
6942 gdb_bfd_ref_ptr.
6943 <~dwo_file>: Remove call to gdb_bfd_unref.
6944 (open_and_init_dwo_file): Move gdb_bfd_ref_ptr into dbfd field. Call
6945 gdb_bfd_ref_ptr::get.
6946
6947 2019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
6948
6949 * dwarf2read.h (struct dwarf2_per_objfile) <dwo_files>: Change
6950 type to htab_up.
6951 * dwarf2read.c (struct dwo_file): Initialize fields.
6952 <~dwo_file>: New.
6953 (free_dwo_file): Remove, move content to ~dwo_file.
6954 (struct dwo_file_deleter): Remove.
6955 (dwo_file_up>: Remove custom deleter.
6956 (free_dwo_files): Remove.
6957 (dwarf2_per_objfile::~dwarf2_per_objfile): Don't explicitly free
6958 dwo_files.
6959 (process_skeletonless_type_units): Call unique_ptr::get.
6960 (allocate_dwo_file_hash_table): Add deleter to created hash
6961 table. Change return type to htab_up.
6962 (lookup_dwo_file_slot): Don't memset dwo_file, call
6963 unique_ptr::get.
6964 (create_dwo_unit_in_dwp_v1): Allocate dwo_file with new.
6965 (create_dwo_unit_in_dwp_v2): Likewise.
6966 (open_and_init_dwo_file): Likewise.
6967 (free_dwo_file_from_slot): Remove.
6968
6969 2019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
6970
6971 * dwarf2read.h (struct dwarf2_section_info) <readin,
6972 is_virtual>: Change type to bool.
6973 * dwarf2read.c (dwarf2_read_section, create_dwp_v2_section): Use
6974 true instead of 1.
6975
6976 2019-06-19 Tom Tromey <tom@tromey.com>
6977
6978 * tui/tui-data.h (tui_init_content_element): Don't declare.
6979
6980 2019-06-19 Tom Tromey <tom@tromey.com>
6981
6982 * tui/tui-data.h (tui_init_win_info): Don't declare.
6983
6984 2019-06-19 Tom de Vries <tdevries@suse.de>
6985
6986 * dwarf2read.h (abstract_to_concrete): Change type to
6987 std::unordered_map<sect_offset, std::vector<sect_offset>,
6988 gdb::hash_enum<sect_offset>>.
6989
6990 2019-06-19 Tom Tromey <tromey@adacore.com>
6991
6992 * ada-lang.c (ada_evaluate_subexp) <case OP_ATR_FIRST>: Handle
6993 EVAL_AVOID_SIDE_EFFECTS specially.
6994
6995 2019-06-19 Tom Tromey <tromey@adacore.com>
6996
6997 * source-cache.c (highlighter): New global.
6998 (source_cache::get_source_lines): Create a highlighter on demand.
6999
7000 2019-06-18 Andrew Burgess <andrew.burgess@embecosm.com>
7001
7002 * defs.h (deprecated_interactive_hook): Delete declaration.
7003 * interps.c (clear_interpreter_hooks): Remove use of
7004 deprecated_interactive_hook.
7005 * top.c (deprecated_interactive_hook): Delete definition.
7006 * utils.c (maybe_quit): Remove use of deprecated_interactive_hook.
7007
7008 2019-06-18 Tom de Vries <tdevries@suse.de>
7009
7010 PR gdb/24515
7011 * dwarf2read.h (abstract_to_concrete): Change type from
7012 std::unordered_map<die_info_ptr, std::vector<die_info_ptr>> to
7013 std::unordered_map<sect_offset, std::vector<sect_offset>>.
7014 * dwarf2read.c (read_variable): Update.
7015 (dwarf2_fetch_die_loc_sect_off): Update.
7016
7017 2019-06-17 Tom de Vries <tdevries@suse.de>
7018
7019 PR gdb/24617
7020 * common/pathstuff.c (child_path): Make sure parent_len > 0 before
7021 accessing parent[parent_len - 1].
7022
7023 2019-06-17 Paul Pluzhnikov <ppluzhnikov@google.com>
7024
7025 PR gdb/24364
7026 * gdb/dtrace-probe.c (dtrace_static_probe_ops::get_probe): Don't
7027 call dtrace_process_dof with NULL dof.
7028
7029 2019-06-16 Tom de Vries <tdevries@suse.de>
7030
7031 PR gdb/24445
7032 * contrib/gdb-add-index.sh: Update to handle dwz-m-ed executable.
7033
7034 2019-06-16 Tom Tromey <tom@tromey.com>
7035
7036 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win)
7037 (make_all_visible): Use address of member.
7038
7039 2019-06-16 Tom Tromey <tom@tromey.com>
7040
7041 * tui/tui-data.c (tui_clear_win_detail, init_win_info)
7042 (tui_free_window, free_content, free_content_elements): Remove
7043 unnecessary cast.
7044 * tui/tui-windata.c (tui_display_all_data): Remove unnecessary
7045 cast.
7046 * tui/tui-regs.c (tui_show_register_group)
7047 (tui_display_registers_from, tui_display_reg_element_at_line):
7048 Remove unnecessary cast.
7049
7050 2019-06-16 Andrew Burgess <andrew.burgess@embecosm.com>
7051
7052 * linux-nat.c (normal_mask): Delete.
7053 (_initialize_linux_nat): Don't initialise normal_mask.
7054
7055 2019-06-16 Simon Marchi <simon.marchi@polymtl.ca>
7056
7057 PR gdb/24445
7058 * dwarf-index-write.h (write_psymtabs_to_index): Add
7059 dwz_basename parameter.
7060 * dwarf-index-write.c (write_gdbindex): Move file writing to
7061 write_gdbindex_1. Change return type void.
7062 (assert_file_size): Move up, remove filename parameter.
7063 (write_gdbindex_1): New function.
7064 (write_debug_names): Change return type to void, call
7065 assert_file_size.
7066 (struct index_wip_file): New struct.
7067 (write_psymtabs_to_index): Add dwz_basename parameter. Move
7068 file logic to index_wip_file. Write index for dwz file if
7069 needed.
7070 (save_gdb_index_command): Pass basename of dwz file, if present.
7071 * dwarf-index-cache.c (index_cache::store): Obtain and pass
7072 build-id of dwz file, if present.
7073 * dwarf2read.c (struct dwz_file): Move to dwarf2read.h.
7074 (dwarf2_get_dwz_file): Likewise.
7075 * dwarf2read.h (struct dwz_file): Move from dwarf2read.c.
7076 (dwarf2_get_dwz_file): Likewise.
7077
7078 2019-06-16 Tom Tromey <tom@tromey.com>
7079
7080 * coffread.c (process_coff_symbol): Use xstrdup.
7081 * value.c (create_internalvar): Use xstrdup.
7082
7083 2019-06-16 Tom Tromey <tom@tromey.com>
7084
7085 * valops.c (value_cast, value_slice): Remove unnecessary cast.
7086 * breakpoint.c (stopin_command, stopat_command)
7087 (until_break_command, decode_location_default): Remove unnecessary
7088 cast.
7089 * utils.c (subset_compare): Remove unnecessary cast.
7090 * ada-lang.c (ada_update_initial_language): Remove unnecessary
7091 cast.
7092 * linespec.c (decode_line_with_last_displayed): Remove unnecessary
7093 cast.
7094 * infcmd.c (path_command): Remove unnecessary cast.
7095 * coffread.c (decode_type): Remove unnecessary cast.
7096 * xcoffread.c (read_xcoff_symtab): Remove unnecessary cast.
7097 * mipsread.c (mipscoff_symfile_read): Remove unnecessary cast.
7098 * tui/tui-stack.c (tui_show_locator_content)
7099 (tui_show_frame_info): Remove unnecessary cast.
7100 * tui/tui-win.c (tui_scroll_forward_command)
7101 (tui_scroll_backward_command, tui_set_focus, tui_set_win_height)
7102 (parse_scrolling_args): Remove unnecessary cast.
7103 * tui/tui-data.c (init_win_info, tui_del_window)
7104 (tui_free_window, tui_del_data_windows, tui_free_data_content)
7105 (free_content_elements): Remove unnecessary cast.
7106 * tui/tui-windata.c (tui_first_data_item_displayed): Remove
7107 unnecessary cast.
7108 * tui/tui-source.c (tui_set_source_content)
7109 (tui_vertical_source_scroll): Remove unnecessary cast.
7110 * tui/tui-layout.c (tui_default_win_height): Remove unnecessary
7111 cast.
7112 * tui/tui-io.c (tui_initialize_io): Remove unnecessary cast.
7113 * tui/tui-regs.c (tui_display_registers_from)
7114 (tui_display_register): Remove unnecessary cast.
7115 * tui/tui-wingeneral.c (tui_refresh_win, tui_delete_win)
7116 (tui_unhighlight_win, tui_highlight_win, tui_make_window)
7117 (make_visible): Remove unnecessary cast.
7118 * tui/tui-winsource.c (tui_erase_source_content)
7119 (tui_update_breakpoint_info, tui_set_exec_info_content): Remove
7120 unnecessary cast.
7121 * ax-gdb.c (agent_command_1): Remove unnecessary cast.
7122 * cli/cli-setshow.c (cmd_show_list): Remove unnecessary cast.
7123 * stabsread.c (read_type, read_array_type, read_range_type):
7124 Remove unnecessary cast.
7125 * mdebugread.c (mdebug_build_psymtabs): Remove unnecessary cast.
7126 (parse_symbol, parse_type, upgrade_type, parse_external)
7127 (parse_partial_symbols, psymtab_to_symtab_1, cross_ref): Remove
7128 unnecessary cast.
7129 * gdb_bfd.c (gdb_bfd_map_section): Remove unnecessary cast.
7130
7131 2019-06-16 Tom Tromey <tom@tromey.com>
7132
7133 * tui/tui-data.c (tui_alloc_generic_win_info)
7134 (tui_alloc_win_info, tui_add_content_elements): Remove NULL
7135 checks.
7136
7137 2019-06-16 Bernhard Heckel <bernhard.heckel@intel.com>
7138 Andrew Burgess <andrew.burgess@embecosm.com>
7139
7140 * f-typeprint.c (f_print_type): Don't return early for not
7141 associated or not allocated types.
7142 (f_type_print_varspec_suffix): Add print_rank parameter and print
7143 ranks of array types in case they dangling.
7144 (f_type_print_base): Add print_rank parameter.
7145
7146 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
7147
7148 * NEWS: Mention new MI commands.
7149 * break-catch-throw.c (enum exception_event_kind): Move to
7150 breakpoint.h.
7151 (print_mention_exception_catchpoint): Output text as a single
7152 message.
7153 (catch_exception_command_1): Rename to...
7154 (catch_exception_event): ...this, make non-static, update header
7155 command, and change some parameter types.
7156 (catch_catch_command): Update for changes to
7157 catch_exception_command_1.
7158 (catch_throw_command): Likewise.
7159 (catch_rethrow_command): Likewise.
7160 * breakpoint.c (enum exception_event_kind): Delete.
7161 * breakpoint.h (enum exception_event_kind): Moved here from
7162 break-catch-throw.c.
7163 (catch_exception_event): Declare.
7164 * mi/mi-cmd-catch.c (mi_cmd_catch_exception_event): New function.
7165 (mi_cmd_catch_throw): New function.
7166 (mi_cmd_catch_rethrow): New function.
7167 (mi_cmd_catch_catch): New function.
7168 * mi/mi-cmds.c (mi_cmds): Add 'catch-throw', 'catch-rethrow', and
7169 'catch-catch' entries.
7170 * mi/mi-cmds.h (mi_cmd_catch_throw): Declare.
7171 (mi_cmd_catch_rethrow): Declare.
7172 (mi_cmd_catch_catch): Declare.
7173
7174 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
7175
7176 * annotate.c (annotate_source_line): Change return type to void,
7177 update implementation to match.
7178 * annotate.h (annotate_source_line): Change return type to void,
7179 update header comment.
7180 * stack.c (print_frame_info): Don't change what frame information
7181 is printed based on whether annotations are on or not.
7182
7183 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
7184
7185 * annotate.c: Add 'source.h' and 'objfiles.h' includes.
7186 (annotate_source): Make static.
7187 (annotate_source_line): Moved from source.c and renamed from
7188 identify_source_line. Update the return type.
7189 * annotate.h (annotate_source): Delete declaration.
7190 (annotate_source_line): Declaration moved from source.h, and
7191 renamed from identify_source_line. Return type updated.
7192 * source.c (identify_source_line): Moved to annotate.c and renamed
7193 to annotate_source_line.
7194 (info_line_command): Remove check of annotation_level.
7195 * source.h (identify_source_line): Move declaration to annotate.h
7196 and rename to annotate_source_line.
7197 * stack.c: Add 'annotate.h' include.
7198 (print_frame_info): Remove check of annotation_level before
7199 calling annotate_source_line.
7200
7201 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
7202
7203 * source-cache.c (source_cache::get_plain_source_lines): Use
7204 open_source_file_with_line_charpos instead of just
7205 open_source_file, remove call to find_source_lines.
7206 (source_cache::get_source_lines): Likewise.
7207 * source.c (find_source_lines): Make static.
7208 (get_filename_and_charpos): Renamed into...
7209 (open_source_file_with_line_charpos): ..this along with changes to
7210 return a scoped_fd, and some other minor clean ups.
7211 (identify_source_line): Use open_source_file_with_line_charpos.
7212 (search_command_helper): Use open_source_file_with_line_charpos
7213 instead of just open_source_file, remove call to
7214 find_source_lines.
7215 * source.h (open_source_file_with_line_charpos): Declare new
7216 function.
7217 (find_source_lines): Delete declaration.
7218
7219 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
7220
7221 * source.c (get_filename_and_charpos): Remove fullname
7222 parameter.
7223 (identify_source_line): Update call to get_filename_and_charpos.
7224
7225 2019-06-14 Tom Tromey <tromey@adacore.com>
7226
7227 PR gdb/24502:
7228 * ui-style.h (skip_ansi_escape): Update comment.
7229 * ui-file.h (class no_terminal_escape_file): New class.
7230 * ui-file.c (no_terminal_escape_file::write)
7231 (no_terminal_escape_file::puts): New methods.
7232 * cli/cli-logging.c (handle_redirections): Use
7233 no_terminal_escape_file.
7234
7235 2019-06-14 Tom Tromey <tromey@adacore.com>
7236
7237 * NEWS: Move convenience variable news above Python news.
7238
7239 2019-06-14 Tom Tromey <tom@tromey.com>
7240
7241 * gnulib: Move directory to top-level.
7242 * configure.ac: Don't configure gnulib.
7243 * configure: Rebuild.
7244 * common/common-defs.h: Use new path to gnulib.
7245 * Makefile.in (GNULIB_BUILDDIR): Now ../gnulib.
7246 (GNULIB_H): Remove.
7247 (INCGNU): Look in new gnulib location.
7248 (HFILES_NO_SRCDIR): Remove gnulib files.
7249 (SUBDIR, REQUIRED_SUBDIRS): Remove gnulib.
7250 (generated_files): Remove GNULIB_H.
7251 ($(LIBGNU), all-lib): Remove targets.
7252 (distclean): Don't mention GNULIB_BUILDDIR.
7253 ($(GNULIB_BUILDDIR)/Makefile): Remove target.
7254
7255 2019-06-14 Tom Tromey <tromey@adacore.com>
7256
7257 * symfile.c (add_symbol_file_command): Remove obsolete comment.
7258 Warn if symbol file does not provide any symbols.
7259
7260 2019-06-14 Tom Tromey <tromey@adacore.com>
7261
7262 * source.c (find_and_open_source): Respect basenames_may_differ.
7263
7264 2019-06-14 Andrew Burgess <andrew.burgess@embecosm.com>
7265
7266 * annotate.c (annotate_breakpoints_invalid): Make use of
7267 scoped_restore_terminal_state.
7268 (annotate_frames_invalid): Likewise.
7269
7270 2019-06-14 Tom Tromey <tromey@adacore.com>
7271
7272 * ada-lang.c (ada_evaluate_subexp) <case BINOP_ASSIGN>: Always
7273 allow assignment to an internalvar.
7274
7275 2019-06-14 Tom Tromey <tromey@adacore.com>
7276
7277 * ada-lex.l: Allow "_" in attribute names.
7278
7279 2019-06-14 Tom Tromey <tromey@adacore.com>
7280
7281 PR gdb/24653:
7282 * regcache.c (registers_changed): Don't call alloca.
7283 * top.c (execute_command): Don't call alloca.
7284
7285 2019-06-13 Pedro Alves <palves@redhat.com>
7286
7287 * cli/cli-setshow.c (cli/cli-setshow.c): New parameter
7288 'expression'. When parsing an expression, error out if there's
7289 junk after "unlimited".
7290 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
7291 (do_set_command): Adjust calls to is_unlimited_literal.
7292
7293 2019-06-13 Pedro Alves <palves@redhat.com>
7294
7295 * compile/compile.c (make_compile_options_def_group): Add braces
7296 around array_view initializer.
7297 * thread.c (make_thread_apply_all_options_def_group)
7298 (make_thread_apply_all_options_def_group): Likewise.
7299
7300 2019-06-13 Pedro Alves <palves@redhat.com>
7301
7302 * NEWS (New commands): Mention "maint test-options
7303 require-delimiter", "maint test-options unknown-is-error", "maint
7304 test-options unknown-is-operand" and "maint show
7305 test-options-completion-result".
7306 (New command options, command completion): New section.
7307 (Completion improvements): New section.
7308 Mention that you can abbreviate "unlimited".
7309
7310 2019-06-13 Pedro Alves <palves@redhat.com>
7311
7312 * cli/cli-utils.c (parse_flags, parse_flags_qcs): Delete.
7313 * cli/cli-utils.h (parse_flags, parse_flags_qcs): Delete.
7314 * unittests/cli-utils-selftests.c (test_parse_flags)
7315 (test_parse_flags_qcs): Delete.
7316 (test_cli_utils): Don't call deleted functions.
7317
7318 2019-06-13 Pedro Alves <palves@redhat.com>
7319
7320 * thread.c: Include "cli/cli-option.h".
7321 (tp_array_compar_ascending): Global.
7322 (tp_array_compar): Delete function.
7323 (tp_array_compar_ascending, tp_array_compar_descending): New
7324 functions.
7325 (ascending_option_def, qcs_flag_option_def)
7326 (thr_qcs_flags_option_defs)
7327 (make_thread_apply_all_options_def_group)
7328 (make_thread_apply_options_def_group): New.
7329 (thread_apply_all_command): Use gdb::option::process_options.
7330 (thread_apply_command_completer)
7331 (thread_apply_all_command_completer): New.
7332 (thread_apply_command): Use gdb::option::process_options.
7333 (_initialize_thread): Delete THREAD_APPLY_FLAGS_HELP, replace it
7334 with a new THREAD_APPLY_OPTION_HELP. Use gdb::option::build_help
7335 to generate help text of "thread apply". Adjust "taas"'s help.
7336 * tid-parse.c (tid_range_parser::in_thread_range): New method.
7337 * tid-parse.h (tid_range_parser::in_thread_range): New method.
7338
7339 2019-06-13 Pedro Alves <palves@redhat.com>
7340
7341 * thread.c (thread_apply_command): Check for invalid TID with
7342 isdigit instead of !isalpha.
7343
7344 2019-06-13 Pedro Alves <palves@redhat.com>
7345
7346 * cli/cli-utils.c (parse_flags_qcs): Use validate_flags_qcs.
7347 (validate_flags_qcs): New.
7348 * cli/cli-utils.h (struct qcs_flags): Change field types to int.
7349 (validate_flags_qcs): Declare.
7350 * stack.c (qcs_flag_option_def, fr_qcs_flags_option_defs): New.
7351 (make_frame_apply_options_def_group): New.
7352 (frame_apply_command_count): Process options with
7353 gdb::option::process_options.
7354 (frame_apply_completer): New.
7355 (frame_apply_level_completer, frame_apply_all_completer)
7356 (frame_apply_completer): New.
7357 (_initialize_stack): Update help of "frame apply", "frame apply
7358 level", "frame apply all" and "faas" to mention supported options
7359 and install command completers.
7360 * stack.h (frame_apply_all_completer): Declare.
7361 * thread.c: Include "stack.h".
7362 (tfaas_command): Add "--".
7363 (_initialize_thread): Update help "tfaas" to mention supported
7364 options and install command completer.
7365
7366 2019-06-13 Pedro Alves <palves@redhat.com>
7367
7368 * completer.c (complete_nested_command_line): New.
7369 (gdb_completion_word_break_characters_throw): Add assertion.
7370 * completer.h (complete_nested_command_line): Declare.
7371
7372 2019-06-13 Pedro Alves <palves@redhat.com>
7373
7374 * stack.c (parse_backtrace_qualifiers): New.
7375 (backtrace_command): Use it.
7376 (backtrace_command_completer): Complete on qualifiers.
7377
7378 2019-06-13 Pedro Alves <palves@redhat.com>
7379
7380 * frame.c: Include "cli/cli-option.h.
7381 (user_set_backtrace_options): New.
7382 (backtrace_past_main, backtrace_past_entry, backtrace_limit):
7383 Delete.
7384 (get_prev_frame): Adjust.
7385 (boolean_option_def, uinteger_option_def)
7386 (set_backtrace_option_defs): New.
7387 (_initialize_frame): Adjust and use
7388 gdb::option::add_setshow_cmds_for_options to install "set
7389 backtrace past-main" and "set backtrace past-entry".
7390 * frame.h: Include "cli/cli-option.h".
7391 (struct frame_print_options): Forward declare.
7392 (print_frame_arguments_all, print_frame_arguments_scalars)
7393 (print_frame_arguments_none): Declare.
7394 (print_entry_values): Delete declaration.
7395 (struct frame_print_options, user_frame_print_options): New.
7396 (struct set_backtrace_options): New.
7397 (set_backtrace_option_defs, user_set_backtrace_options): Declare.
7398 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
7399 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
7400 (mi_cmd_stack_list_variables): Pass down USER_FRAME_PRINT_OPTIONS.
7401 (list_args_or_locals): Add frame_print_options parameter.
7402 (mi_cmd_stack_info_frame): Pass down USER_FRAME_PRINT_OPTIONS.
7403 * python/py-framefilter.c (enumerate_args): Pass down
7404 USER_FRAME_PRINT_OPTIONS.
7405 * stack.c: Include "cli/cli-option.h".
7406 (print_frame_arguments_all, print_frame_arguments_scalars)
7407 (print_frame_arguments_none): Declare.
7408 (print_raw_frame_arguments, print_entry_values): Delete.
7409 (user_frame_print_options): New.
7410 (boolean_option_def, enum_option_def, frame_print_option_defs):
7411 New.
7412 (struct backtrace_cmd_options): New.
7413 (bt_flag_option_def): New.
7414 (backtrace_command_option_defs): New.
7415 (print_stack_frame): Pass down USER_FRAME_PRINT_OPTIONS.
7416 (print_frame_arg, read_frame_arg, print_frame_args)
7417 (print_frame_info, print_frame): Add frame_print_options parameter
7418 and use it.
7419 (info_frame_command_core): Pass down USER_FRAME_PRINT_OPTIONS.
7420 (backtrace_command_1): Add frame_print_options and
7421 backtrace_cmd_options parameters and use them.
7422 (make_backtrace_options_def_group): New.
7423 (backtrace_command): Process command options with
7424 gdb::option::process_options.
7425 (backtrace_command_completer): New.
7426 (_initialize_stack): Extend "backtrace"'s help to mention
7427 supported options. Install completer for "backtrace".
7428 Install some settings commands with add_setshow_cmds_for_options.
7429
7430 2019-06-13 Pedro Alves <palves@redhat.com>
7431
7432 * NEWS (Changed commands): Mention set/show print raw-frame-arguments,
7433 and that "set/show print raw frame-arguments" are now deprecated.
7434
7435 * cli/cli-decode.c (add_setshow_boolean_cmd): Now returns the
7436 command.
7437 * command.h (add_setshow_boolean_cmd): Return cmd_list_element *.
7438 * stack.c (_initialize_stack): Install "set/show print
7439 raw-frame-arguments", and deprecate "set/show print raw
7440 frame-arguments".
7441 * valprint.c (_initialize_valprint): Deprecate "set/show print
7442 raw".
7443
7444 2019-06-13 Pedro Alves <palves@redhat.com>
7445
7446 * compile/compile.c (struct compile_options): New.
7447 (compile_flag_option_def, compile_command_option_defs)
7448 (make_compile_options_def_group): New.
7449 (compile_file_command): Handle options with
7450 gdb::option::process_options.
7451 (compile_file_command_completer): New function.
7452 (compile_code_command): Handle options with
7453 gdb::option::process_options.
7454 (compile_code_command_completer): New function.
7455 (_initialize_compiler): Install completers for "compile code" and
7456 "compile file". Mention available options in "compile code" and
7457 "compile code"'s help.
7458 * completer.c (advance_to_completion_word): New, factored out from
7459 ...
7460 (advance_to_expression_complete_word_point): ... this.
7461 (advance_to_filename_complete_word_point): New.
7462 * completer.h (advance_to_filename_complete_word_point): New
7463 declaration.
7464
7465 2019-06-13 Pedro Alves <palves@redhat.com>
7466
7467 * compile/compile.c: Include "cli/cli-option.h".
7468 (compile_print_value): Scope data pointer is now a
7469 value_print_options pointer; adjust.
7470 (compile_print_command): Process options. Scope data pointer is
7471 now a value_print_options pointer; adjust.
7472 (_initialize_compile): Update "compile print"'s help to include
7473 supported options. Install a completer for "compile print".
7474 * cp-valprint.c (show_vtblprint, show_objectprint)
7475 (show_static_field_print): Delete.
7476 (_initialize_cp_valprint): Don't install "set print
7477 static-members", "set print vtbl", "set print object" here.
7478 * printcmd.c: Include "cli/cli-option.h" and
7479 "common/gdb_optional.h".
7480 (print_command_parse_format): Rework to fill in a
7481 value_print_options instead of a format_data.
7482 (print_value): Change parameter type from format_data pointer to
7483 value_print_options reference. Adjust.
7484 (print_command_1): Process options. Adjust to pass down a
7485 value_print_options.
7486 (print_command_completer): New.
7487 (_initialize_printcmd): Install print_command_completer as
7488 handle_brkchars completer for the "print" command. Update
7489 "print"'s help to include supported options.
7490 * valprint.c: Include "cli/cli-option.h".
7491 (show_vtblprint, show_objectprint, show_static_field_print): Moved
7492 here from cp-valprint.c.
7493 (boolean_option_def, uinteger_option_def)
7494 (value_print_option_defs, make_value_print_options_def_group):
7495 New. Use gdb::option::add_setshow_cmds_for_options to install
7496 "set print elements", "set print null-stop", "set print repeats",
7497 "set print pretty", "set print union", "set print array", "set
7498 print address", "set print symbol", "set print array-indexes".
7499 * valprint.h: Include <string> and "cli/cli-option.h".
7500 (make_value_print_options_def_group): Declare.
7501 (print_value): Change parameter type from format_data pointer to
7502 value_print_options reference.
7503 (print_command_completer): Declare.
7504
7505 2019-06-13 Pedro Alves <palves@redhat.com>
7506
7507 * Makefile.in (SUBDIR_CLI_SRCS): Add cli/cli-option.c.
7508 (COMMON_SFILES): Add maint-test-settings.c.
7509 * cli/cli-decode.c (boolean_enums): New global, factored out from
7510 ...
7511 (add_setshow_boolean_cmd): ... here.
7512 * cli/cli-decode.h (boolean_enums): Declare.
7513 * cli/cli-option.c: New file.
7514 * cli/cli-option.h: New file.
7515 * cli/cli-setshow.c (parse_cli_boolean_value(const char **)): New,
7516 factored out from ...
7517 (parse_cli_boolean_value(const char *)): ... this.
7518 (is_unlimited_literal): Change parameter type to pointer to
7519 pointer. Adjust and advance ARG pointer.
7520 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
7521 (parse_cli_var_enum): New, factored out from ...
7522 (do_set_command): ... this. Adjust.
7523 * cli/cli-setshow.h (parse_cli_boolean_value)
7524 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
7525 (parse_cli_var_enum): Declare.
7526 * cli/cli-utils.c: Include "cli/cli-option.h".
7527 (get_ulongest): New.
7528 * cli/cli-utils.h (get_ulongest): Declare.
7529 (check_for_argument): New overloads.
7530 * maint-test-options.c: New file.
7531
7532 2019-06-13 Pedro Alves <palves@redhat.com>
7533
7534 * cli/cli-utils.c (number_or_range_parser::get_number): Do not
7535 parse a range if "-" is at the end of the string.
7536
7537 2019-06-13 Pedro Alves <palves@redhat.com>
7538
7539 * cli/cli-setshow.c (parse_auto_binary_operation)
7540 (parse_cli_boolean_value): Don't allow "o".
7541
7542 2019-06-13 Pedro Alves <palves@redhat.com>
7543
7544 * Makefile.in (COMMON_SFILES): Add maint-test-settings.c.
7545 * NEWS: Mention maint test-settings KIND.
7546 * maint-test-settings.c: New file.
7547
7548 2019-06-13 Pedro Alves <palves@redhat.com>
7549
7550 * cli/cli-decode.c (add_setshow_cmd_full): Remove "show"
7551 completer.
7552 (add_setshow_string_cmd, add_setshow_string_noescape_cmd): Remove
7553 "set" completers.
7554
7555 2019-06-13 Pedro Alves <palves@redhat.com>
7556
7557 * cli/cli-setshow.c (do_set_command) <var_enum>: Detect junk
7558 after item.
7559
7560 2019-06-13 Pedro Alves <palves@redhat.com>
7561
7562 * cli/cli-setshow.c (is_unlimited_literal): Allow abbreviations.
7563
7564 2019-06-13 Pedro Alves <palves@redhat.com>
7565
7566 * ax-gdb.c (agent_command_1): Remove skip_spaces call.
7567 * breakpoint.c (watch_maybe_just_location): Remove skip_spaces
7568 call.
7569 * cli/cli-cmds.c (apropos_command): Remove skip_spaces call.
7570 * cli/cli-utils.c (extract_info_print_args): Remove skip_spaces
7571 calls.
7572 (check_for_argument): Skip spaces after argument.
7573
7574 2019-06-13 Pedro Alves <palves@redhat.com>
7575
7576 * thread.c (thread_apply_command): Adjust TID parsing.
7577 * tid-parse.c (tid_range_parser::finished): Ensure parsing end is
7578 detected before end of string.
7579 (tid_is_in_list): Error out if LIST is invalid.
7580
7581 2019-06-13 Pedro Alves <palves@redhat.com>
7582
7583 * completer.c (complete_line_internal_1): Rewind completion word
7584 point.
7585 (completion_tracker::advance_custom_word_point_by): Change
7586 parameter type to int.
7587 * completer.h (completion_tracker::advance_custom_word_point_by):
7588 Likewise.
7589
7590 2019-06-13 Pedro Alves <palves@redhat.com>
7591
7592 * completer.c (advance_to_completion_word): Handle delimiters.
7593
7594 2019-06-11 Bernhard Heckel <bernhard.heckel@intel.com>
7595
7596 * dwarf2read.c (add_partial_symbol): Skip nameless modules.
7597
7598 2019-06-11 Tom Tromey <tom@tromey.com>
7599
7600 * common/common-utils.c (xmalloc, xrealloc, xcalloc)
7601 (xmalloc_failed): Move to alloc.c.
7602 * alloc.c: New file.
7603 * Makefile.in (COMMON_SFILES): Add alloc.c.
7604
7605 2019-06-11 Tom Tromey <tom@tromey.com>
7606
7607 * nat/linux-waitpid.c: Don't include server.h.
7608 (linux_debug): Remove.
7609 (my_waitpid): Update.
7610
7611 2019-06-11 Tom Tromey <tromey@adacore.com>
7612
7613 * infcall.c (_initialize_infcall): Remove trailing newline from
7614 help.
7615 * user-regs.c (_initialize_user_regs): Remove trailing newline
7616 from help.
7617 * typeprint.c (_initialize_typeprint): Remove trailing newline
7618 from help.
7619 * reverse.c (_initialize_reverse): Remove trailing newlines from
7620 help.
7621 * tracepoint.c (_initialize_tracepoint): Remove trailing newlines
7622 from help.
7623 * language.c (add_set_language_command): Remove trailing newline
7624 from help.
7625 * infcmd.c (_initialize_infcmd): Remove trailing newlines from
7626 help.
7627 * disasm.c (_initialize_disasm): Remove trailing newline from
7628 help.
7629 * top.c (init_main): Remove trailing newline from help.
7630 * interps.c (_initialize_interpreter): Remove trailing newline
7631 from help.
7632 * btrace.c (_initialize_btrace): Remove trailing newlines from
7633 help.
7634 * breakpoint.c (_initialize_breakpoint): Remove trailing newline
7635 from help.
7636 * python/python.c (_initialize_python): Remove trailing newline
7637 from help.
7638 * spu-tdep.c (_initialize_spu_tdep): Remove trailing newlines from
7639 help.
7640 * tui/tui-win.c (_initialize_tui_win): Remove trailing newlines
7641 from help. Reformat some text.
7642 * tui/tui-stack.c (_initialize_tui_stack): Remove trailing newline
7643 from help.
7644 * tui/tui-layout.c (_initialize_tui_layout): Remove trailing
7645 newline from help.
7646
7647 2019-06-11 Tom Tromey <tromey@adacore.com>
7648
7649 * darwin-nat.c (darwin_decode_exception_message)
7650 (darwin_decode_message, darwin_nat_target::kill): Fix shadowing.
7651
7652 2019-06-10 Andrew Burgess <andrew.burgess@embecosm.com>
7653
7654 * valops.c (value_slice): Check for not allocated or not
7655 associated values.
7656
7657 2019-06-10 Tom de Vries <tdevries@suse.de>
7658
7659 PR gdb/24618
7660 * dwarf2read.c (struct mapped_index::symbol_name_slot_invalid): Make
7661 sure an empty slot (defined by a 32-bit zero pair) is recognized as
7662 invalid.
7663
7664 2019-06-10 Tom de Vries <tdevries@suse.de>
7665
7666 PR gdb/24611
7667 * linespec.c (linespec_lexer_lex_string): Remove incorrect
7668 "++(PARSER_STREAM (parser))" for "[abi"-prefixed colon. Add assert.
7669
7670 2019-06-10 Tom de Vries <tdevries@suse.de>
7671
7672 PR symtab/24545
7673 * symtab.c (struct demangled_name_entry): Add language field.
7674 (symbol_set_names): Revert "[gdb/symtab] Fix language of duplicate
7675 static minimal symbol". Set and use language field.
7676
7677 2019-06-10 Tom Tromey <tromey@adacore.com>
7678
7679 * ada-lang.c (_initialize_ada_language): Update help text.
7680
7681 2019-06-10 Tom Tromey <tromey@adacore.com>
7682
7683 * m32c-tdep.c (m32c_m16c_address_to_pointer): Don't end warning
7684 with a newline.
7685 * guile/guile.c (handle_boot_error): Don't end warning with a
7686 newline.
7687 * cli/cli-cmds.c (exit_status_set_internal_vars): Don't end
7688 warning with a newline.
7689 * s12z-tdep.c (s12z_skip_prologue): Don't end warning with a
7690 newline.
7691 (s12z_frame_cache): Likewise.
7692 * dwarf-index-cache.c (index_cache::store): Don't end warning with
7693 a newline.
7694 * solib-svr4.c (disable_probes_interface): Don't end warning with
7695 a newline.
7696 * nat/fork-inferior.c (fork_inferior): Don't end warning with a
7697 newline.
7698 * python/python.c (do_finish_initialization): Don't end warning
7699 with a newline.
7700
7701 2019-06-10 Tom Tromey <tom@tromey.com>
7702
7703 * python/py-breakpoint.c (gdbpy_breakpoint_created)
7704 (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
7705 gdbpy_enter.
7706
7707 2019-06-10 Tom Tromey <tromey@adacore.com>
7708
7709 * elfread.c (elf_read_minimal_symbols): Don't set the dbx objfile
7710 data.
7711 (elf_new_init): Don't call stabsread_new_init.
7712 * dbxread.c (coffstab_build_psymtabs): Set dbx objfile data.
7713 (elfstab_build_psymtabs): Likewise. Call stabsread_new_init.
7714 * coffread.c (coff_symfile_init): Don't set the dbx objfile data.
7715
7716 2019-06-10 Tom de Vries <tdevries@suse.de>
7717
7718 PR symtab/16264
7719 PR symtab/24517
7720 * dwarf2read.c (read_func_scope): Handle DW_AT_main_subprogram.
7721
7722 2019-06-06 Руслан Ижбулатов <lrn1986@gmail.com>
7723
7724 * source.c (find_and_open_source): Also rewrite relative file
7725 names.
7726
7727 2019-04-26 Amos Bird <amosbird@gmail.com>
7728
7729 * annotate.c (annotate_thread_exited): Add "thread-exited"
7730 annotation.
7731
7732 2019-06-06 Tom Tromey <tromey@adacore.com>
7733
7734 * maint.h (class scoped_command_stats): Use
7735 DISABLE_COPY_AND_ASSIGN.
7736 <print_time>: New method.
7737 * maint.c (scoped_command_stats, ~scoped_command_stats): Call
7738 print_time.
7739 (scoped_command_stats::print_time): New method.
7740
7741 2019-06-05 Andrew Burgess <andrew.burgess@embecosm.com>
7742
7743 * riscv-tdep.c (riscv_insn::decode): Gracefully ignore
7744 instructions of lengths 6 or 8 bytes.
7745
7746 2019-06-04 Pedro Alves <palves@redhat.com>
7747
7748 * common/gdb_unique_ptr.h (make_unique_xstrdup): New.
7749
7750 * ada-lang.c (catch_ada_completer): Use make_unique_xstrdup.
7751 * breakpoint.c (condition_completer): Likewise.
7752 * cli/cli-dump.c (scan_expression): Likewise.
7753 * common/filestuff.c (mkdir_recursive): Likewise.
7754 * common/gdb_tilde_expand.c (gdb_tilde_expand_up)
7755 * common/pathstuff.c (gdb_realpath, gdb_realpath_keepfile)
7756 (gdb_abspath): Likewise.
7757 * compile/compile-cplus-types.c
7758 (compile_cplus_instance::decl_name): Likewise.
7759 * completer.c (complete_explicit_location):
7760 (signal_completer, reg_or_group_completer_1): Likewise.
7761 * cp-support.c (cp_remove_params_if_any): Likewise.
7762 * fbsd-tdep.c (fbsd_core_vnode_path): Likewise.
7763 * guile/scm-safe-call.c (gdbscm_safe_eval_string): Likewise.
7764 * infcmd.c (strip_bg_char): Likewise.
7765 * linespec.c (copy_token_string): Likewise.
7766 * mi/mi-main.c (output_cores): Likewise.
7767 * psymtab.c (psymtab_search_name):
7768 * symfile.c (test_set_ext_lang_command): Likewise.
7769 * target.c (target_fileio_read_stralloc): Likewise.
7770 * tui/tui-regs.c (tui_reggroup_completer): Likewise.
7771 * value.c (complete_internalvar): Likewise.
7772
7773 2019-06-04 Christian Biesinger <cbiesinger@google.com>
7774
7775 Add objfile property to gdb.Type.
7776 * NEWS: Mention Python API addition.
7777 * python/py-type.c (typy_get_objfile): New method.
7778
7779 2019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7780
7781 * NEWS: Mention the new set|show style [title|highlight].
7782 Mention changes to "show style", "help" and "apropos".
7783
7784 2019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7785
7786 * cli/cli-decode.h (apropos_cmd): Add verbose argument.
7787 * cli/cli-decode.c (apropos_cmd): Likewise. Use print_doc_of_command
7788 instead of print_help_for_command.
7789 (print_doc_of_command): New function.
7790 (help_list): Add 'apropos -v word' suggestion.
7791 (print_help_for_command): Style the command name using title style.
7792 * cli/cli-cmds.c (apropos_command): Parse optional -v flag.
7793 (_initialize_cli_cmds): Describe -v in apropos_command help.
7794
7795 2019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7796
7797 * cli/cli-style.h (cli_style_option): Add name in constructor,
7798 add m_name class member, add constructor with intensity,
7799 add name class function.
7800 (cli_style_option::add_setshow_commands): Remove name argument.
7801 (highlight_style, title_style): New styles.
7802 * cli/cli-style.c (do_show): New function that shows a style
7803 characteristic styling the style name with itself.
7804 (set_style_name): New function.
7805 (STYLE_ADD_SETSHOW_COMMANDS): Remove NAME arguments.
7806 Update all callers according to the changes in cli/cli-style.h.
7807 * utils.h (fputs_highlighted): New function.
7808 * utils.c (fputs_highlighted): Likewise.
7809
7810 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7811
7812 * NEWS: Mention new pipe command and new convenience variables.
7813
7814 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7815
7816 * cli/cli-cmds.c (pipe_command): New function.
7817 (_initialize_cli_cmds): Call add_com for pipe_command.
7818 Define | as an alias for pipe.
7819 (exit_status_set_internal_vars): New function.
7820 (shell_escape): Call exit_status_set_internal_vars.
7821 cli/cli-decode.c (find_command_name_length): Recognize | as
7822 a single character command.
7823
7824 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7825
7826 * gdbcmd.h (execute_command_to_ui_file): New declaration.
7827 top.c (execute_command_to_ui_file): New function, mostly a copy
7828 of execute_command_to_string.
7829 (execute_command_to_string): Implement by calling
7830 execute_command_to_ui_file.
7831
7832 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7833
7834 * top.h (saved_command_line): Remove declaration.
7835 * top.c (previous_saved_command_line, previous_repeat_arguments):
7836 New variables.
7837 (saved_command_line): Make static, define together with other
7838 'repeat variables'.
7839 (dont_repeat): Clear repeat_arguments.
7840 (repeat_previous, get_saved_command_line, save_command_line):
7841 New functions.
7842 (gdb_init): Initialize saved_command_line
7843 and previous_saved_command_line.
7844 * main.c (captured_main_1): Remove saved_command_line initialization.
7845 * event-top.c (handle_line_of_input): Update to use
7846 the new 'repeat' related functions instead of direct access to
7847 saved_command_line.
7848 * command.h (repeat_previous, get_saved_command_line,
7849 save_command_line): New declarations.
7850 (dont_repeat): Add comment.
7851
7852 2019-05-30 Tom Tromey <tromey@adacore.com>
7853
7854 * gdbtypes.h (struct range_bounds) <flag_upper_bound_is_count>:
7855 Fix comment.
7856 (TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED): Rewrite comment.
7857
7858 2019-05-30 Jan Vrany <jan.vrany@fit.cvut.cz>
7859
7860 PR cli/24587
7861 * completer.c (complete): Initialize variable word.
7862
7863 2019-05-29 Sergio Durigan Junior <sergiodj@redhat.com>
7864
7865 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192
7866 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1715008
7867 * dwarf2read.c (dwarf_decode_macro_bytes): Move check to see if
7868 'body' is NULL to the outter 'if', protecting the '!is_define'
7869 situation as well.
7870
7871 2019-05-29 Tom Tromey <tromey@adacore.com>
7872
7873 * dwarf2read.c (partial_die_parent_scope): Call dwarf_tag_name.
7874 (dwarf_unknown): New function.
7875 (dwarf_tag_name, dwarf_attr_name, dwarf_form_name)
7876 (dwarf_type_encoding_name): Use dwarf_unknown.
7877
7878 2019-05-29 Tom Tromey <tromey@adacore.com>
7879
7880 PR c++/20020:
7881 * cp-valprint.c (cp_print_value_fields): Call
7882 cp_print_static_field inside "try".
7883
7884 2019-05-29 Tom Tromey <tromey@adacore.com>
7885
7886 * inflow.c (struct terminal_info): Add default operator=.
7887 * configure: Rebuild.
7888 * warning.m4 (AM_GDB_WARNINGS): Add -Wdeprecated-copy,
7889 -Wdeprecated-copy-dtor, -Wredundant-move.
7890
7891 2019-05-29 Tom Tromey <tromey@adacore.com>
7892
7893 * NEWS: Add entry.
7894 * infcmd.c (print_return_value_1): Handle finish_print
7895 option.
7896 (show_print_finish): New function.
7897 (_initialize_infcmd): Add "set/show print finish" commands.
7898 * valprint.c (user_print_options): Initialize new member.
7899 * valprint.h (struct value_print_options) <finish_print>: New
7900 member.
7901
7902 2019-05-28 Tom Tromey <tromey@adacore.com>
7903
7904 * ada-lang.c (ada_remove_Xbn_suffix)
7905 (find_old_style_renaming_symbol)
7906 (parse_old_style_renaming): Remove.
7907 (ada_find_renaming_symbol): Don't call
7908 find_old_style_renaming_symbol.
7909 (ada_is_renaming_symbol): Rename from
7910 ada_find_renaming_symbol. Remove "block" parameter. Return
7911 bool. Now static.
7912 (ada_read_var_value): Update and simplify.
7913 * ada-exp.y (write_var_or_type): Remove old code.
7914
7915 2019-05-28 Alan Hayward <alan.hayward@arm.com>
7916
7917 PR gdb/25010
7918 * event-top.c: Remove include comment.
7919 * inflow.c (class scoped_ignore_sigttou): Move from here...
7920 * inflow.h (class scoped_ignore_sigttou): ...to here.
7921 * ser-unix.c (hardwire_drain_output): Block SIGTTOU during drain.
7922 * top.c: Remove include comment.
7923
7924 2019-05-27 Tom Tromey <tom@tromey.com>
7925
7926 * NEWS: Fix typo.
7927
7928 2019-05-22 Tom Tromey <tromey@adacore.com>
7929
7930 * target.c (target_follow_exec): Constify parameter.
7931 * target-delegates.c: Rebuild.
7932 * remote.c (remote_target::follow_exec): Constify parameter.
7933 * infrun.c (follow_exec): Constify parameter.
7934 * target.h (struct target_ops) <follow_exec>: Constify parameter.
7935 (target_follow_exec): Likewise.
7936
7937 2019-05-22 Alan Hayward <alan.hayward@arm.com>
7938
7939 * aarch64-tdep.c (aarch64_execute_dwarf_cfa_vendor_op): Treat
7940 DW_CFA_AARCH64_negate_ra_state as nop on non pauth targets.
7941
7942 2019-05-22 Alan Hayward <alan.hayward@arm.com>
7943
7944 * NEWS: Add debugredirect and testsuite sections.
7945
7946 2019-05-22 Simon Cook <simon.cook@embecosm.com>
7947
7948 * riscv-tdep.c (riscv_gdbarch_init): Support determining flen from
7949 target descriptions using exclusively floating point register name
7950 aliases.
7951
7952 2019-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
7953
7954 PR gdb/18644:
7955 * f-lang.c (build_fortran_types): Handle the case where
7956 gdbarch_floatformat_for_type returns a nullptr.
7957
7958 2019-05-21 Tom de Vries <tdevries@suse.de>
7959
7960 PR cli/24587
7961 * cli/cli-cmds.c (complete_command): Fix use of unitialized variable.
7962
7963 2019-05-18 Andrew Burgess <andrew.burgess@embecosm.com>
7964
7965 PR gdb/18644:
7966 * f-lang.c (build_fortran_types): Use floatformats_ia64_quad for
7967 16-byte floats.
7968 * i386-tdep.c (i386_floatformat_for_type): Use
7969 floatformats_ia64_quad for the 16-byte floating point component
7970 within a fortran 32-byte complex number.
7971
7972 2019-05-18 Andrew Burgess <andrew.burgess@embecosm.com>
7973
7974 * dwarf2read.c (struct cu_partial_die_info): Add constructor,
7975 delete default constructor.
7976 (find_partial_die): Update to return const struct.
7977 (partial_die_parent_scope): Move variable declaration into scope
7978 of its use and change its type to auto.
7979 (guess_partial_die_structure_name): Likewise.
7980 (partial_die_info::fixup): Likewise.
7981
7982 2019-05-17 Tom Tromey <tromey@adacore.com>
7983
7984 * source.c (find_and_open_source): Remove cast.
7985
7986 2019-05-17 Tom Tromey <tromey@adacore.com>
7987
7988 * annotate.c (annotate_source): Make "filename" const.
7989 * annotate.h (annotate_source): Use const.
7990
7991 2019-05-17 Alan Hayward <alan.hayward@arm.com>
7992
7993 * disasm.c (set_disassembler_options): Send errors to stderr.
7994
7995 2019-05-17 Alan Hayward <alan.hayward@arm.com>
7996
7997 * cli/cli-interp.c (struct saved_output_files): Add saved entry.
7998 (cli_interp_base::set_logging): Check debug_redirect.
7999 * cli/cli-interp.h (set_logging): Add debug_redirect parameter.
8000 * cli/cli-logging.c (debug_redirect): Add static variable.
8001 (pop_output_files): Add default param.
8002 (handle_redirections): Print debug setting.
8003 (show_logging_command): Likewise.
8004 (_initialize_cli_logging): Add debugredirect command.
8005 * interps.c (current_interp_set_logging): Add debug_redirect
8006 parameter.
8007 * interps.h (set_logging): Add debug_redirect parameter.
8008 (current_interp_set_logging): Likewise.
8009 * mi/mi-common.h: Likewise.
8010 * mi/mi-interp.c (mi_interp::set_logging): Likewise.
8011
8012 2019-05-17 Alan Hayward <alan.hayward@arm.com>
8013 Tom Tromey <tromey@adacore.com>
8014
8015 * cli/cli-interp.c (cli_interp_base::set_logging): Create tee_file
8016 directly.
8017 * cli/cli-interp.h (make_logging_output): Remove declaration.
8018 * cli/cli-logging.c (make_logging_output): Remove function.
8019 * mi/mi-interp.c (mi_interp::set_logging): Create tee_file
8020 directly.
8021 * ui-file.c (tee_file::tee_file): Remove bools.
8022 (tee_file::~tee_file): Remove deletes.
8023 * ui-file.h (tee_file): Remove bools.
8024
8025 2019-01-28 Jan Vrany <jan.vrany@fit.cvut.cz>
8026
8027 * mi/mi-cmds.h (mi_cmd_complete): New function.
8028 * mi/mi-main.c (mi_cmd_complete): Likewise.
8029 * mi/mi-cmds.c: Define new MI command -complete.
8030 * NEWS: Mention new -complete command.
8031
8032 2019-01-24 Jan Vrany <jan.vrany@fit.cvut.cz>
8033
8034 * completer.h (complete): New function.
8035 * completer.c (complete): Likewise.
8036 * cli/cli-cmds.c: (complete_command): Update to use new complete()
8037 function defined in completer.h.
8038
8039 2019-05-17 Jan Vrany <jan.vrany@fit.cvut.cz>
8040
8041 * MAINTAINERS (Write After Approval): Add myself.
8042
8043 2019-05-17 Tom de Vries <tdevries@suse.de>
8044
8045 PR gdb/24094
8046 * dwarf2read.c (struct cu_partial_die_info): New struct.
8047 (find_partial_die): Return cu_partial_die_info.
8048 (partial_die_parent_scope, guess_partial_die_structure_name)
8049 (partial_die_info::fixup): Handle new return type of find_partial_die.
8050
8051 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
8052
8053 PR breakpoints/24541
8054 * stap-probe.c (stap_parse_register_operand): Make "regname" an
8055 "std::string", simplifying the algorithm.
8056
8057 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
8058
8059 * stap-probe.c (handle_stap_probe): Fix complaint formatting.
8060 (stap_static_probe_ops::get_probes): Likewise.
8061
8062 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
8063
8064 * stap-probe.c (stap_parse_register_operand): Make "if (*p->arg ==
8065 '-')" and "else if".
8066 (stap_parse_single_operand): Join checks for
8067 "gdbarch_stap_parse_special_token_p" and
8068 "gdbarch_stap_parse_special_token" in the same "if" statement.
8069 Invert check when verifying for operation on register
8070 displacement.
8071
8072 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
8073
8074 * stap-probe.c (stap_get_opcode): Update comment.
8075 (stap_get_expected_argument_type): Likewise.
8076 (handle_stap_probe): Likewise.
8077
8078 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
8079
8080 * i386-tdep.c (i386_stap_parse_special_token_triplet): Change
8081 return type to 'bool'. Adjust comment. Use 'bool' when
8082 appropriate.
8083 (i386_stap_parse_special_token_three_arg_disp): Likewise.
8084 * stap-probe.c (stap_parse_argument_1): Likewise.
8085 (stap_is_operator): Likewise.
8086 (stap_is_generic_prefix): Likewise.
8087 (stap_is_register_prefix): Likewise.
8088 (stap_is_register_indirection_prefix): Likewise.
8089 (stap_is_integer_prefix): Likewise.
8090 (stap_generic_check_suffix): Likewise.
8091 (stap_check_integer_suffix): Likewise.
8092 (stap_check_register_suffix): Likewise.
8093 (stap_check_register_indirection_suffix): Likewise.
8094 (stap_parse_register_operand): Likewise.
8095 (stap_parse_single_operand): Likewise.
8096 (stap_parse_argument_1): Likewise.
8097 (stap_probe::get_argument_count): Likewise.
8098 (stap_is_operator): Likewise.
8099
8100 2019-05-16 Tom Tromey <tromey@adacore.com>
8101
8102 * darwin-nat.c (thread_info_from_private_thread_info): Add struct
8103 keyword to foreach.
8104
8105 2019-05-15 Simon Marchi <simon.marchi@efficios.com>
8106
8107 * linux-thread-db.c (try_thread_db_load_1): Change return type
8108 to bool.
8109 (try_thread_db_load): Likewise.
8110 (try_thread_db_load_from_pdir_1): Likewise.
8111 (try_thread_db_load_from_pdir): Likewise.
8112 (try_thread_db_load_from_sdir): Likewise.
8113 (try_thread_db_load_from_dir): Likewise.
8114 (thread_db_load_search): Likewise.
8115 (has_libpthread): Likewise.
8116 (thread_db_load): Likewise.
8117
8118 2019-05-15 Sergio Durigan Junior <sergiodj@redhat.com>
8119
8120 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192
8121 * dwarf2read.c (parse_macro_definition): Check whether 'body' is
8122 NULL, and complain/return if that's the case.
8123
8124 2019-05-15 John Darrington <john@darrington.wattle.id.au>
8125
8126 * s12z-tdep.c (push_pull_get_stack_adjustment): New function.
8127 (advance, posn, abstract_read_memory): New functions.
8128 [struct mem_read_abstraction]: New struct.
8129 (s12z_frame_cache): Use opcodes API to interpret stack frame code.
8130
8131 2019-05-14 Tom Tromey <tromey@adacore.com>
8132
8133 * ada-lang.c (coerce_unspec_val_to_type): Only set address when
8134 value is not lval_memory.
8135
8136 2019-05-14 Tom Tromey <tromey@adacore.com>
8137
8138 * solib.c (info_sharedlibrary_command): Style the file name.
8139
8140 2019-05-14 Alan Hayward <alan.hayward@arm.com>
8141
8142 * aarch64-tdep.c (aarch64_vnh_type): Add half view.
8143 (aarch64_vnv_type): Likewise.
8144 * target-descriptions.c (make_gdb_type): Add TDESC_TYPE_IEEE_HALF.
8145 * common/tdesc.c: Likewise.
8146 * common/tdesc.h (enum tdesc_type_kind): Likewise.
8147 * features/aarch64-fpu.c (create_feature_aarch64_fpu): Regenerate.
8148 * features/aarch64-fpu.xml: Add ieee half view.
8149 * features/aarch64-sve.c (create_feature_aarch64_fpu): Likewise.
8150 * gdbtypes.c (gdbtypes_post_init): Add builtin_half
8151 * gdbtypes.h (struct builtin_type): Likewise.
8152 (struct objfile_type): Likewise.
8153
8154 2019-05-12 Paul Naert <paul.naert@polymtl.ca>
8155
8156 * language.c (language_sniff_from_mangled_name): Fix "langauge"
8157 typo.
8158 * location.h (string_to_event_location): Likewise.
8159
8160 2019-05-11 Joel Brobecker <brobecker@adacore.com>
8161
8162 GDB 8.3 released.
8163
8164 2019-05-10 Simon Marchi <simon.marchi@efficios.com>
8165
8166 * breakpoint.h (fix_multi_location_breakpoint_output_globally):
8167 New variable declaration.
8168 * breakpoint.c (fix_multi_location_breakpoint_output_globally):
8169 New variable.
8170 (print_one_breakpoint): Use ui_out::test_flags and new global
8171 variable to compute use_fixed_output.
8172 * mi/mi-main.h (mi_multi_location_breakpoint_output_fixed):
8173 Remove.
8174 * mi/mi-main.c (fix_multi_location_breakpoint_output): Remove.
8175 (mi_multi_location_breakpoint_output_fixed): Remove.
8176 (mi_cmd_fix_multi_location_breakpoint_output): Adjust to set the
8177 new variable.
8178 * mi/mi-out.c (mi_ui_out::mi_ui_out): Set
8179 fix_multi_location_breakpoint_output flag if version >= 3.
8180 * ui-out.h (enum ui_out_flag)
8181 <fix_multi_location_breakpoint_output>: New enumerator.
8182
8183 2019-05-10 Simon Marchi <simon.marchi@efficios.com>
8184
8185 * contrib/cc-with-tweaks.sh: Validate dwz's work.
8186
8187 2019-05-10 Tom Tromey <tromey@adacore.com>
8188
8189 * ada-lang.c (catch_ada_completer): New function.
8190 (_initialize_ada_language): Use it.
8191
8192 2019-05-10 Tom Tromey <tromey@adacore.com>
8193
8194 * thread.c (print_thread_info): Make "requested_threads" const.
8195 * gdbthread.h (print_thread_info): Make "requested_threads"
8196 const.
8197 * ada-tasks.c (print_ada_task_info): Make "taskno_str" const.
8198 * ada-lang.h (print_ada_task_info): Make "taskno_str" const.
8199
8200 2019-05-08 Tom Tromey <tom@tromey.com>
8201
8202 * gdbtypes.c (objfile_type_data): Change type.
8203 (objfile_type, _initialize_gdbtypes): Update.
8204
8205 2019-05-08 Tom Tromey <tom@tromey.com>
8206
8207 * dwarf2-frame.c (dwarf2_frame_objfile_data): Change type.
8208 (dwarf2_frame_find_fde, dwarf2_build_frame_info)
8209 (_initialize_dwarf2_frame): Update.
8210
8211 2019-05-08 Tom Tromey <tom@tromey.com>
8212
8213 * objc-lang.c (objc_objfile_data): Change type.
8214 (find_methods): Update.
8215 (_initialize_objc_lang): Remove.
8216
8217 2019-05-08 Tom Tromey <tom@tromey.com>
8218
8219 * stabsread.c (rs6000_builtin_type_data): Change type.
8220 (rs6000_builtin_type, _initialize_stabsread): Update.
8221
8222 2019-05-08 Tom Tromey <tom@tromey.com>
8223
8224 * mips-tdep.c (mips_pdr_data): Remove.
8225 (_initialize_mips_tdep): Update.
8226
8227 2019-05-08 Tom Tromey <tom@tromey.com>
8228
8229 * hppa-tdep.c (hppa_objfile_priv_data): Change type.
8230 (hppa_init_objfile_priv_data, read_unwind_info)
8231 (find_unwind_entry, _initialize_hppa_tdep): Update.
8232
8233 2019-05-08 Tom Tromey <tom@tromey.com>
8234
8235 * elfread.c (elf_objfile_gnu_ifunc_cache_data): Change type.
8236 (elf_gnu_ifunc_record_cache): Update. Don't allocate hash table
8237 on obstack.
8238 (elf_gnu_ifunc_resolve_by_cache, _initialize_elfread): Update.
8239
8240 2019-05-08 Tom Tromey <tom@tromey.com>
8241
8242 * mdebugread.c (basic_type_data): Change type.
8243 (basic_type, _initialize_mdebugread): Update.
8244
8245 2019-05-08 Tom Tromey <tom@tromey.com>
8246
8247 * common/gdb_unique_ptr.h (struct noop_deleter): New.
8248
8249 2019-05-08 Tom Tromey <tom@tromey.com>
8250
8251 * nto-tdep.c (nto_inferior_data_reg): Change type.
8252 (nto_inferior_data): Update.
8253 (nto_inferior_data_cleanup, nto_new_inferior_data)
8254 (_initialize_nto_tdep): Remove.
8255 * nto-tdep.h (struct nto_inferior_data): Add initializers.
8256
8257 2019-05-08 Tom Tromey <tom@tromey.com>
8258
8259 * ada-lang.c (struct ada_inferior_data): Add initializers.
8260 (ada_inferior_data): Change type.
8261 (ada_inferior_data_cleanup): Remove.
8262 (get_ada_inferior_data, ada_inferior_exit)
8263 (struct ada_pspace_data): Add initializers, destructor.
8264 (ada_pspace_data_handle): Change type.
8265 (get_ada_pspace_data): Update.
8266 (ada_pspace_data_cleanup): Remove.
8267
8268 2019-05-08 Tom Tromey <tom@tromey.com>
8269
8270 * coffread.c (struct coff_symfile_info): Add initializers.
8271 (coff_objfile_data_key): Move lower. Change type.
8272 (coff_symfile_init, coff_symfile_read, _initialize_coffread):
8273 Update.
8274 (coff_free_info): Remove.
8275
8276 2019-05-08 Tom Tromey <tom@tromey.com>
8277
8278 * fbsd-tdep.c (struct fbsd_pspace_data): Add initializers.
8279 (fbsd_pspace_data_handle): Move lower. Change type.
8280 (get_fbsd_pspace_data): Update.
8281 (fbsd_pspace_data_cleanup): Remove.
8282 (_initialize_fbsd_tdep): Update.
8283
8284 2019-05-08 Tom Tromey <tom@tromey.com>
8285
8286 * ada-tasks.c (ada_tasks_pspace_data_handle): Change type.
8287 (get_ada_tasks_pspace_data): Update.
8288 (ada_tasks_pspace_data_cleanup): Remove.
8289 (_initialize_tasks): Update.
8290 (ada_tasks_inferior_data_handle): Change type.
8291 (get_ada_tasks_inferior_data): Update.
8292 (ada_tasks_inferior_data_cleanup): Remove.
8293 (struct ada_tasks_pspace_data): Add initializers.
8294
8295 2019-05-08 Tom Tromey <tom@tromey.com>
8296
8297 * symfile.h (struct sym_probe_fns) <sym_get_probes>: Change type.
8298 * symfile-debug.c (debug_sym_get_probes): Change type.
8299 * stap-probe.c (handle_stap_probe):
8300 (stap_static_probe_ops::get_probes): Change type.
8301 * probe.h (class static_probe_ops) <get_probes>: Change type.
8302 * probe.c (class any_static_probe_ops) <get_probes>: Change type.
8303 (parse_probes_in_pspace): Update.
8304 (find_probes_in_objfile, find_probe_by_pc, collect_probes):
8305 Update.
8306 (any_static_probe_ops::get_probes): Change type.
8307 * elfread.c (elfread_data): New typedef.
8308 (probe_key): Change type.
8309 (elf_get_probes): Likewise. Update.
8310 (probe_key_free): Remove.
8311 (_initialize_elfread): Update.
8312 * dtrace-probe.c (class dtrace_static_probe_ops) <get_probes>:
8313 Change type.
8314 (dtrace_process_dof_probe, dtrace_process_dof)
8315 (dtrace_static_probe_ops::get_probe): Change type.
8316
8317 2019-05-08 Tom Tromey <tom@tromey.com>
8318
8319 * xcoffread.c (struct xcoff_symfile_info): Rename from
8320 coff_symfile_info. Add initializers.
8321 (xcoff_objfile_data_key): Move lower. Change type.
8322 (XCOFF_DATA): Rewrite.
8323 (xcoff_free_info): Remove.
8324 (xcoff_symfile_init, _initialize_xcoffread, read_xcoff_symtab)
8325 (read_symbol, read_symbol_lineno, find_linenos, init_stringtab)
8326 (xcoff_initial_scan): Update.
8327
8328 2019-05-08 Tom Tromey <tom@tromey.com>
8329
8330 * solib-svr4.c (struct svr4_info): Add initializers and
8331 destructor.
8332 <probes_table>: Now an htab_up.
8333 (solib_svr4_pspace_data): Change type.
8334 (free_probes_table): Simplify.
8335 (~svr4_info): Rename from svr4_pspace_data_cleanup.
8336 (get_svr4_info, probes_table_htab_remove_objfile_probes)
8337 (probes_table_remove_objfile_probes, register_solib_event_probe)
8338 (solib_event_probe_at, svr4_update_solib_event_breakpoint)
8339 (_initialize_svr4_solib): Update.
8340
8341 2019-05-08 Tom Tromey <tom@tromey.com>
8342
8343 * remote.c (remote_pspace_data): Change type.
8344 (remote_pspace_data_cleanup): Remove.
8345 (get_remote_exec_file, set_pspace_remote_exec_file)
8346 (_initialize_remote): Update.
8347
8348 2019-05-08 Tom Tromey <tom@tromey.com>
8349
8350 * breakpoint.c (breakpoint_objfile_key): Change type.
8351 (get_breakpoint_objfile_data): Update.
8352 (free_breakpoint_objfile_data): Remove.
8353 (_initialize_breakpoint): Update.
8354
8355 2019-05-08 Tom Tromey <tom@tromey.com>
8356
8357 * linux-tdep.c (struct linux_info): Add initializers.
8358 (linux_inferior_data): Move. Change type.
8359 (invalidate_linux_cache_inf): Update.
8360 (linux_inferior_data_cleanup): Remove.
8361 (get_linux_inferior_data, _initialize_linux_tdep): Update.
8362
8363 2019-05-08 Tom Tromey <tom@tromey.com>
8364
8365 * auxv.c (auxv_inferior_data): Move. Change type.
8366 (auxv_inferior_data_cleanup): Remove.
8367 (invalidate_auxv_cache_inf): Rewrite.
8368 (get_auxv_inferior_data, _initialize_auxv): Update.
8369
8370 2019-05-08 Tom Tromey <tom@tromey.com>
8371
8372 * symfile-debug.c (struct debug_sym_fns_data): Add initializers.
8373 (symfile_debug_objfile_data_key): Change type.
8374 (symfile_debug_installed, debug_qf_has_symbols)
8375 (debug_qf_find_last_source_symtab)
8376 (debug_qf_forget_cached_source_info)
8377 (debug_qf_map_symtabs_matching_filename, debug_qf_lookup_symbol)
8378 (debug_qf_print_stats, debug_qf_dump)
8379 (debug_qf_expand_symtabs_for_function)
8380 (debug_qf_expand_all_symtabs)
8381 (debug_qf_expand_symtabs_with_fullname)
8382 (debug_qf_map_matching_symbols)
8383 (debug_qf_expand_symtabs_matching)
8384 (debug_qf_find_pc_sect_compunit_symtab)
8385 (debug_qf_map_symbol_filenames)
8386 (debug_qf_find_compunit_symtab_by_address, debug_sym_get_probes)
8387 (debug_sym_new_init, debug_sym_init, debug_sym_read)
8388 (debug_sym_read_psymbols, debug_sym_finish, debug_sym_offsets)
8389 (debug_sym_read_linetable, debug_sym_relocate): Update.
8390 (symfile_debug_free_objfile): Remove.
8391 (install_symfile_debug_logging, _initialize_symfile_debug):
8392 Update.
8393
8394 2019-05-08 Tom Tromey <tom@tromey.com>
8395
8396 * dwarf2read.h (struct dwarf2_per_objfile): Don't inherit from
8397 allocate_on_obstack.
8398 * dwarf2read.c (dwarf2_objfile_data_key): Change type.
8399 (get_dwarf2_per_objfile): Update.
8400 (set_dwarf2_per_objfile): Remove.
8401 (dwarf2_has_info, dwarf2_get_section_info): Update.
8402 (dwarf2_free_objfile): Remove.
8403 (_initialize_dwarf2_read): Update.
8404
8405 2019-05-08 Tom Tromey <tom@tromey.com>
8406
8407 * auto-load.c (struct auto_load_pspace_info): Add destructor and
8408 initializers.
8409 <unsupported_script_warning_printed,
8410 script_not_found_warning_printed>: Now bool.
8411 (auto_load_pspace_data): Change type.
8412 (~auto_load_pspace_info): Rename from
8413 auto_load_pspace_data_cleanup.
8414 (get_auto_load_pspace_data, init_loaded_scripts_info)
8415 (clear_section_scripts, maybe_print_unsupported_script_warning)
8416 (maybe_print_script_not_found_warning, _initialize_auto_load):
8417 Update.
8418
8419 2019-05-08 Tom Tromey <tom@tromey.com>
8420
8421 * objfiles.c (objfile_pspace_info): Add destructor and
8422 initializers.
8423 (objfiles_pspace_data): Change type.
8424 (~objfile_pspace_info): Rename from objfiles_pspace_data_cleanup.
8425 (get_objfile_pspace_data): Update.
8426 (objfiles_bfd_data): Change type.
8427 (get_objfile_bfd_data): Update.
8428 (objfile_bfd_data_free, _initialize_objfiles): Remove.
8429
8430 2019-05-08 Tom Tromey <tom@tromey.com>
8431
8432 * break-catch-syscall.c (catch_syscall_inferior_data): Move.
8433 Change type.
8434 (get_catch_syscall_inferior_data): Update.
8435 (catch_syscall_inferior_data_cleanup): Remove.
8436 (_initialize_break_catch_syscall): Update.
8437
8438 2019-05-08 Tom Tromey <tom@tromey.com>
8439
8440 * inflow.c (struct terminal_info): Add destructor and
8441 initializers.
8442 (inflow_inferior_data): Change type.
8443 (~terminal_info): Rename from inflow_inferior_data_cleanup.
8444 (get_inflow_inferior_data, inflow_inferior_exit)
8445 (swap_terminal_info, _initialize_inflow): Update.
8446
8447 2019-05-08 Tom Tromey <tom@tromey.com>
8448
8449 * target-dcache.c (target_dcache_cleanup): Remove.
8450 (target_dcache_aspace_key): Change type.
8451 (target_dcache_init_p, target_dcache_invalidate)
8452 (target_dcache_get, target_dcache_get_or_init)
8453 (_initialize_target_dcache): Update.
8454 * dcache.h (struct dcache_deleter): New.
8455
8456 2019-05-08 Tom Tromey <tom@tromey.com>
8457
8458 * symtab.c (struct symbol_cache): Add destructor and
8459 initializers.
8460 (symbol_cache_key): Move. Change type.
8461 (make_symbol_cache, free_symbol_cache): Remove.
8462 (get_symbol_cache): Update.
8463 (symbol_cache_cleanup): Remove.
8464 (ALL_PSPACES, symbol_cache_flush)
8465 (maintenance_print_symbol_cache)
8466 (maintenance_print_symbol_cache_statistics, _initialize_symtab):
8467 Update.
8468
8469 2019-05-08 Tom Tromey <tom@tromey.com>
8470
8471 * symtab.c (struct main_info): Add destructor and initializers.
8472 (main_progspace_key): Move. Change type.
8473 (get_main_info): Update.
8474 (main_info_cleanup): Remove.
8475 (_initialize_symtab): Update.
8476
8477 2019-05-08 Tom Tromey <tom@tromey.com>
8478
8479 * registry.h (DECLARE_REGISTRY): Define the _key class.
8480
8481 2019-05-08 Andrew Burgess <andrew.burgess@embecosm.com>
8482
8483 * NEWS: Merge two 'New commands' sections.
8484
8485 2019-05-08 Joel Brobecker <brobecker@adacore.com>
8486
8487 * ada-valprint.c (ada_val_print_gnat_array): Remove language
8488 parameter and use Ada language definition instead.
8489 (ada_val_print_ptr): Remove unused language parameter.
8490 (ada_val_print_num): Remove language parameter and use Ada language
8491 definition instead.
8492 (ada_val_print_enum, ada_val_print_flt): Remove unused language
8493 parameter.
8494 (ada_val_print_struct_union, ada_val_print_ref): Remove language
8495 parameter and use Ada language definition instead.
8496 (ada_val_print_1): Update all ada_val_print_xxx calls.
8497 Remove language parameter.
8498 (ada_val_print): Update ada_val_print_1 call.
8499
8500 2019-05-08 Tom Tromey <tromey@adacore.com>
8501
8502 * remote.c (remote_hw_watchpoint_limit)
8503 (remote_hw_watchpoint_length_limit, remote_hw_breakpoint_limit):
8504 Now static.
8505
8506 2019-05-08 Tom Tromey <tromey@adacore.com>
8507
8508 * maint.c (_initialize_maint_cmds): Move initialization code to
8509 remote.c.
8510 (watchdog, show_watchdog): Move to remote.c.
8511 * remote.c (watchdog, show_watchdog): Move from maint.c. Make
8512 "watchdog" static.
8513 (_initialize_remote): Move initialization code from maint.c.
8514 * defs.h (watchdog): Don't declare.
8515
8516 2019-05-08 Tom Tromey <tromey@adacore.com>
8517
8518 * tui/tui-interp.c: Include main.h.
8519 * interps.c: Include main.h.
8520 * main.h (interpreter_p): Declare.
8521 * defs.h (interpreter_p): Don't declare.
8522
8523 2019-05-08 Tom Tromey <tromey@adacore.com>
8524
8525 * dwarf2loc.c: Include dwarf2read.h.
8526 * defs.h (read_unsigned_leb128): Don't declare.
8527 * dwarf2read.h (read_unsigned_leb128): Declare.
8528
8529 2019-05-08 Tom Tromey <tromey@adacore.com>
8530
8531 * utils.c (fputs_maybe_filtered): Call can_emit_style_escape as a
8532 method.
8533
8534 2019-05-08 Tom Tromey <tromey@adacore.com>
8535
8536 * utils.c (fputs_maybe_filtered): Reset style after paging, even
8537 when no wrap column is set.
8538
8539 2019-05-08 Tom Tromey <tromey@adacore.com>
8540
8541 * c-lang.c (c_get_string): Handle non-C-style arrays.
8542
8543 2019-05-08 Tom Tromey <tromey@adacore.com>
8544
8545 * typeprint.c (print_offset_data::update): Print the bit offset,
8546 not the number of bits remaining.
8547
8548 2019-05-08 Tom Tromey <tromey@adacore.com>
8549
8550 * typeprint.c (print_offset_data::maybe_print_hole): Add extra
8551 padding at end of comment.
8552
8553 2019-05-08 Tom Tromey <tromey@adacore.com>
8554
8555 * dwarf2loc.c (dwarf2_evaluate_property) <PROP_ADDR_OFFSET>:
8556 Compare main types.
8557
8558 2019-05-06 Tom Tromey <tom@tromey.com>
8559
8560 * common/scoped_mmap.c: Include common-defs.h.
8561 * common/scoped_mmap.h: Don't include config.h.
8562
8563 2019-05-04 Tom Tromey <tom@tromey.com>
8564
8565 * aarch64-tdep.c (stack_item_t): Remove typedef and DEF_VEC.
8566 (struct aarch64_call_info): Add initializers.
8567 <si>: Now a std::vector.
8568 (pass_on_stack, aarch64_push_dummy_call): Update.
8569
8570 2019-05-04 Simon Marchi <simon.marchi@efficios.com>
8571 Tom Tromey <tom@tromey.com>
8572
8573 * ppc-linux-nat.c (thread_points_p): Remove typedef and DEF_VEC.
8574 (ppc_threads): Now a std::vector. Now static.
8575 (hwdebug_find_thread_points_by_tid)
8576 (ppc_linux_nat_target::low_new_thread, ppc_linux_thread_exit):
8577 Update.
8578
8579 2019-05-04 Tom Tromey <tom@tromey.com>
8580
8581 * arc-tdep.c (arc_tdesc_init): Return bool.
8582
8583 2019-05-04 Tom Tromey <tom@tromey.com>
8584
8585 * arm-linux-nat.c (arm_linux_nat_target::can_use_hw_breakpoint):
8586 Use gdb_assert_not_reached.
8587
8588 2019-05-04 Tom Tromey <tom@tromey.com>
8589
8590 * compile/compile-cplus-types.c (compile_cplus_convert_enum): Use
8591 "false".
8592
8593 2019-05-04 Tom Tromey <tom@tromey.com>
8594
8595 * arc-tdep.c (arc_tdesc_init): Use bool.
8596
8597 2019-05-04 Tom Tromey <tom@tromey.com>
8598
8599 * stack.c (select_frame_for_mi): Use "false", not "FALSE".
8600
8601 2019-05-04 Tom Tromey <tom@tromey.com>
8602
8603 * cli/cli-cmds.c (valid_command_p): Return bool.
8604
8605 2019-05-04 Tom Tromey <tom@tromey.com>
8606
8607 * cli/cli-decode.c (valid_user_defined_cmd_name_p): Return bool.
8608 * command.h (valid_user_defined_cmd_name_p): Channge return type.
8609
8610 2019-05-04 Raul Tambre <raul@tambre.ee>
8611
8612 * python/lib/gdb/prompt.py (_ExtendedPrompt)
8613 <before_prompt_hook, get_show_string>: Fix incorrect use of 'is'
8614 operator for comparison.
8615
8616 2019-05-04 Tom Tromey <tom@tromey.com>
8617
8618 * psymtab.c (psymbol_name_matches, match_partial_symbol)
8619 (lookup_partial_symbol, print_partial_symbols)
8620 (recursively_search_psymtabs, sort_pst_symbols, psymbol_hash)
8621 (psymbol_compare): Update.
8622 (add_psymbol_to_bcache): Clear the entire psymbol.
8623 (maintenance_check_psymtabs): Update.
8624 * psympriv.h (struct partial_symbol): Don't derive from
8625 general_symbol_info.
8626 <obj_section, unrelocated_address, address,
8627 set_unrelocated_address>: Update.
8628 <ginfo>: New member.
8629 * dwarf-index-write.c (write_psymbols, debug_names::insert)
8630 (debug_names::write_psymbols): Update.
8631
8632 2019-05-04 Tom de Vries <tdevries@suse.de>
8633
8634 * contrib/cc-with-tweaks.sh: Support -n arg.
8635
8636 2019-05-04 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8637
8638 * corelow.c (core_target::detach): Ensure frame cache and
8639 register caches are cleared.
8640 inferior.c (exit_inferior_1): Likewise.
8641
8642 2019-05-03 Sandra Loosemore <sandra@codesourcery.com>
8643 Tom Tromey <tom@tromey.com>
8644
8645 * dictionary.c (collate_pending_symbols_by_language): Remove
8646 "struct" from foreach.
8647 * symtab.c (lookup_global_symbol_from_objfile)
8648 (lookup_symbol_in_objfile_from_linkage_name): Remove "struct" from
8649 foreach.
8650 * ser-tcp.c (net_open): Remove "struct" from foreach.
8651 * objfiles.c (objfile_relocate, objfile_rebase)
8652 (objfile_has_symbols): Remove "struct" from foreach.
8653 * minsyms.c (lookup_minimal_symbol_by_pc_section): Remove "struct"
8654 from foreach.
8655 * dwarf2read.c (handle_struct_member_die): Remove "struct" from
8656 foreach.
8657 * darwin-nat.c (thread_info_from_private_thread_info): Remove
8658 "struct" from foreach.
8659 * ada-lang.c (create_excep_cond_exprs)
8660 (ada_exception_catchpoint_cond_string): Remove "struct" from
8661 foreach.
8662
8663 2019-05-03 Tom Tromey <tromey@adacore.com>
8664
8665 * ada-exp.y (convert_char_literal): Check suffix of each
8666 enumerator.
8667
8668 2019-05-03 Dilyan Palauzov <dilyan.palauzov@aegee.org>
8669
8670 PR ada/21406:
8671 * ada-exp.y (yywrap): Don't define.
8672 * ada-lex.l (%option): Add noyywrap
8673 (yywrap): Remove.
8674
8675 2019-05-03 Eli Zaretskii <eliz@gnu.org>
8676
8677 * common/common-defs.h [__MINGW32__ || __CYGWIN__]: Define
8678 _WIN32_WINNT to the XP level, unless already defined to a higher
8679 level.
8680
8681 * unittests/parse-connection-spec-selftests.c:
8682 * ser-tcp.c:
8683 * common/netstuff.c [USE_WIN32API]: Remove the _WIN32_WINNT
8684 override.
8685
8686 * symfile.c (find_separate_debug_file): Remove colon from the
8687 drive spec of DOS/Windows file names of the target, so that the
8688 file name produced from DEBUGDIR and the target's directory will
8689 be valid on DOS/Windows systems.
8690
8691 2019-05-02 Andrew Burgess <andrew.burgess@embecosm.com>
8692
8693 * rust-lang.c (val_print_struct): Handle printing structures
8694 containing strings.
8695
8696 2019-05-02 Tom Tromey <tromey@adacore.com>
8697
8698 * valarith.c (_initialize_valarith): Remove.
8699
8700 2019-05-01 Tom Tromey <tromey@adacore.com>
8701
8702 * ada-lang.c (ada_value_primitive_field): Treat more fields as
8703 bitfields.
8704
8705 2019-05-01 Tom Tromey <tromey@adacore.com>
8706
8707 * ada-lang.c (ada_value_assign): Correctly compute starting offset
8708 for big-endian copies.
8709
8710 2019-04-30 Ali Tamur <tamur@google.com>
8711 * gdb/dwarf2read.c (read_3_bytes): New declaration.
8712 (read_attribute_value): Added DW_FORM_strx1-4 cases.
8713 (read_3_bytes): New function.
8714
8715 2019-04-30 Joel Brobecker <brobecker@adacore.com>
8716
8717 * windows-nat.c (main_thread_id): Delete.
8718 (handle_output_debug_string): Replace main_thread_id by
8719 current_event.dwThreadId.
8720 (fake_create_process): Likewise.
8721 (get_windows_debug_event) <CREATE_PROCESS_DEBUG_EVENT>:
8722 Do not set main_thread_id.
8723 <LOAD_DLL_DEBUG_EVENT>: Replace main_thread_id by
8724 current_event.dwThreadId.
8725 <UNLOAD_DLL_DEBUG_EVENT>: Likewise.
8726
8727 2019-04-30 Joel Brobecker <brobecker@adacore.com>
8728
8729 * windows-nat.c (get_windows_debug_event) <EXIT_PROCESS_DEBUG_EVENT>:
8730 Use current_event.dwThreadId instead of main_thread_id.
8731
8732 2019-04-30 Tom Tromey <tromey@adacore.com>
8733
8734 * ada-lang.c (ada_lookup_simple_minsyms): New function.
8735 (create_excep_cond_exprs): Iterate over program spaces.
8736 (ada_exception_catchpoint_cond_string): Examine all minimal
8737 symbols for exception types.
8738
8739 2019-04-30 Tom Tromey <tromey@adacore.com>
8740
8741 PR c++/24470:
8742 * dwarf2read.c (process_structure_scope): Handle case where type
8743 has template parameters but no symbol was created.
8744
8745 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8746 Chris January <chris.january@arm.com>
8747
8748 * f-typeprint.c (f_type_print_base): Print 'allocatable' type
8749 qualifier.
8750 * gdbtypes.h (TYPE_IS_ALLOCATABLE): Define.
8751
8752 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8753
8754 * f-typeprint.c (f_print_type): Update rules for printing
8755 whitespace.
8756 (f_type_print_varspec_suffix): Likewise.
8757
8758 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8759 Chris January <chris.january@arm.com>
8760
8761 * f-typeprint.c (f_type_print_varspec_suffix): Handle printing
8762 function arguments.
8763
8764 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8765
8766 * f-lang.c (build_fortran_types): Change name of void type to
8767 lower case.
8768 * f-typeprint.c (f_type_print_base): Print the name of the void
8769 type, rather than a fixed string.
8770 * f-valprint.c (f_decorations): Use lower case void string.
8771
8772 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8773 Chris January <chris.january@arm.com>
8774
8775 * dwarf2read.c (dwarf2_init_complex_target_type): Use different
8776 types for Fortran.
8777
8778 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8779 Chris January <chris.january@arm.com>
8780 David Lecomber <david.lecomber@arm.com>
8781
8782 * f-exp.y (BINOP_INTRINSIC): New token.
8783 (exp): New parser rule handling BINOP_INTRINSIC.
8784 (f77_keywords): Add new builtin procedures.
8785 * f-lang.c (evaluate_subexp_f): Handle BINOP_MOD, UNOP_FORTRAN_CEILING,
8786 UNOP_FORTRAN_FLOOR, BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
8787 (operator_length_f): Handle UNOP_FORTRAN_CEILING,
8788 UNOP_FORTRAN_FLOOR, BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
8789 (print_unop_subexp_f): New function.
8790 (print_binop_subexp_f): New function.
8791 (print_subexp_f): Handle UNOP_FORTRAN_CEILING, UNOP_FORTRAN_FLOOR,
8792 BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
8793 (dump_subexp_body_f): Likewise.
8794 (operator_check_f): Likewise.
8795 * fortran-operator.def: Add UNOP_FORTRAN_CEILING, UNOP_FORTRAN_FLOOR,
8796 BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX
8797
8798 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8799
8800 * gdb/expprint.c (dump_subexp_body_standard): Remove use of
8801 UNOP_KIND.
8802 * gdb/expression.h (exp_opcode): Include 'fortran-operator.def'.
8803 * gdb/f-exp.y (exp): Rename UNOP_KIND to UNOP_FORTRAN_KIND.
8804 * gdb/f-lang.c (evaluate_subexp_f): Likewise.
8805 (operator_length_f): New fuction.
8806 (print_subexp_f): New function.
8807 (op_name_f): New function.
8808 (dump_subexp_body_f): New function.
8809 (operator_check_f): New function.
8810 (exp_descriptor_f): Replace standard expression handling functions
8811 with new functions.
8812 * gdb/fortran-operator.def: New file.
8813 * gdb/parse.c (operator_length_standard): Remove use of UNOP_KIND.
8814 * gdb/std-operator.def: Remove UNOP_KIND.
8815
8816 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8817
8818 * std-operator.def: Remove unbalanced, stray double quote
8819 character.
8820
8821 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8822 Chris January <chris.january@arm.com>
8823 Daniel Everett <daniel.everett@arm.com>
8824 Nick Forrington <nick.forrington@arm.com>
8825 Richard Bunt <richard.bunt@arm.com>
8826
8827 * cp-valprint.c (cp_print_value_fields): Allow an additional level
8828 of depth when printing anonymous structs or unions.
8829 * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer):
8830 Don't print either the top-level value, or the children if the
8831 max-depth is exceeded.
8832 (ppscm_print_children): When printing the key of a map, allow one
8833 extra level of depth.
8834 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Don't
8835 print either the top-level value, or the children if the max-depth
8836 is exceeded.
8837 (print_children): When printing the key of a map, allow one extra
8838 level of depth.
8839 * python/py-value.c (valpy_format_string): Add max_depth keyword.
8840 * valprint.c: (PRINT_MAX_DEPTH_DEFAULT): Define.
8841 (user_print_options): Initialise max_depth field.
8842 (val_print_scalar_or_string_type_p): New function.
8843 (val_print): Check to see if the max depth has been reached.
8844 (val_print_check_max_depth): Define new function.
8845 (show_print_max_depth): New function.
8846 (_initialize_valprint): Add 'print max-depth' option.
8847 * valprint.h (struct value_print_options) <max_depth>: New field.
8848 (val_print_check_max_depth): Declare new function.
8849 * NEWS: Document new feature.
8850
8851 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8852
8853 * ada-lang.c (ada_language_defn): Initialise new field.
8854 * c-lang.c (c_is_string_type_p): New function.
8855 (c_language_defn): Initialise new field.
8856 (cplus_language_defn): Initialise new field.
8857 (asm_language_defn): Initialise new field.
8858 (minimal_language_defn): Initialise new field.
8859 * c-lang.h (c_is_string_type_p): Declare new function.
8860 * d-lang.c (d_language_defn): Initialise new field.
8861 * f-lang.c (f_is_string_type_p): New function.
8862 (f_language_defn): Initialise new field.
8863 * go-lang.c (go_is_string_type_p): New function.
8864 (go_language_defn): Initialise new field.
8865 * language.c (default_is_string_type_p): New function.
8866 (unknown_language_defn): Initialise new field.
8867 (auto_language_defn): Initialise new field.
8868 * language.h (struct language_defn) <la_is_string_type_p>: New
8869 member variable.
8870 (default_is_string_type_p): Declare new function.
8871 * m2-lang.c (m2_language_defn): Initialise new field.
8872 * objc-lang.c (objc_language_defn): Initialise new field.
8873 * opencl-lang.c (opencl_language_defn): Initialise new field.
8874 * p-lang.c (pascal_is_string_type_p): New function.
8875 (pascal_language_defn): Initialise new field.
8876 * rust-lang.c (rust_is_string_type_p): New function.
8877 (rust_language_defn): Initialise new field.
8878
8879 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8880
8881 * language.h (struct language_defn) <la_struct_too_deep_ellipsis>:
8882 New field.
8883 * ada-lang.c (ada_language_defn): Initialise new field.
8884 * c-lang.c (c_language_defn): Likewise.
8885 (cplus_language_defn): Likewise.
8886 (asm_language_defn): Likewise.
8887 (minimal_language_defn): Likewise.
8888 * d-lang.c (d_language_defn): Likewise.
8889 * f-lang.c (f_language_defn): Likewise.
8890 * go-lang.c (go_language_defn): Likewise.
8891 * language.c (unknown_language_defn): Likewise.
8892 (auto_language_defn): Likewise.
8893 * m2-lang.c (m2_language_defn): Likewise.
8894 * objc-lang.c (objc_language_defn): Likewise.
8895 * opencl-lang.c (opencl_language_defn): Likewise.
8896 * p-lang.c (pascal_language_defn): Likewise.
8897 * rust-lang.c (rust_language_defn): Likewise.
8898
8899 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8900
8901 * ada-lang.c (ada_is_character_type): Change return type to bool.
8902 (ada_is_string_type): Likewise.
8903 * ada-lang.h (ada_is_character_type): Update declaration
8904 (ada_is_string_type): Likewise.
8905
8906 2019-04-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8907
8908 Support style in 'frame|thread apply'
8909
8910 * gdbcmd.h (execute_command_to_string): New term_out parameter.
8911 * record.c (record_start, record_stop): Update callers of
8912 execute_command_to_string with false.
8913 * guile/guile.c (gdbscm_execute_gdb_command): Likewise.
8914 * ui-file.h (class ui_file): New term_out and can_emit_style_escape
8915 methods.
8916 (class string_file): New constructor with term_out parameter.
8917 Override methods term_out and can_emit_style_escape. New member
8918 term_out.
8919 (class stdio_file): Override can_emit_style_escape.
8920 (class tee_file): Override term_out and can_emit_style_escape.
8921 * utils.h (can_emit_style_escape): Remove.
8922 * utils.c (can_emit_style_escape): Likewise.
8923 Update all callers of can_emit_style_escape (SOMESTREAM) to
8924 SOMESTREAM->can_emit_style_escape.
8925 * source-cache.c (source_cache::get_source_lines): Likewise.
8926 * stack.c (frame_apply_command_count): Call execute_command_to_string
8927 passing the term_out characteristic of the current gdb_stdout.
8928 * thread.c (thr_try_catch_cmd): Likewise.
8929 * top.c (execute_command_to_string): pass term_out parameter
8930 to construct the string_file for the command output.
8931 * ui-file.c (term_cli_styling): New function (most code moved
8932 from utils.c can_emit_style_escape).
8933 (string_file::string_file, string_file::can_emit_style_escape,
8934 stdio_file::can_emit_style_escape, tee_file::term_out,
8935 tee_file::can_emit_style_escape): New functions.
8936
8937 2019-04-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8938
8939 * NEWS: Mention the new set|show may-call-functions.
8940 * infcall.c (may_call_functions_p): New variable.
8941 (show_may_call_functions_p): New function.
8942 (call_function_by_hand_dummy): Throws an error if not
8943 may-call-functions.
8944 (_initialize_infcall): Call add_setshow_boolean_cmd for
8945 may-call-functions.
8946
8947 2019-04-25 Keith Seitz <keiths@redhat.com>
8948
8949 PR c++/24367
8950 * cp-support.c (inspect_type): Don't attempt substitutions
8951 of symbol with the same name.
8952
8953 2019-04-25 Tom Tromey <tromey@adacore.com>
8954
8955 PR gdb/24475:
8956 * event-top.c (gdb_rl_callback_handler): Make "gdb_rl_expt"
8957 static.
8958
8959 2019-04-25 Tom Tromey <tromey@adacore.com>
8960
8961 * xml-support.c (struct gdb_xml_parser) <set_error>: Take an
8962 rvalue reference.
8963 (gdb_xml_start_element_wrapper, gdb_xml_end_element_wrapper)
8964 (gdb_xml_parser::parse): Use std::move.
8965 * python/python-internal.h (gdbpy_convert_exception): Take a const
8966 reference.
8967 * python/py-value.c (valpy_getitem, valpy_nonzero): Use
8968 std::move.
8969 * python/py-utils.c (gdbpy_convert_exception): Take a const
8970 reference.
8971 * python/py-inferior.c (infpy_write_memory, infpy_search_memory):
8972 Use std::move.
8973 * python/py-breakpoint.c (bppy_set_condition, bppy_set_commands):
8974 Use std::move.
8975 * mi/mi-main.c (mi_print_exception): Take a const reference.
8976 * main.c (handle_command_errors): Take a const reference.
8977 * linespec.c (parse_linespec): Use std::move.
8978 * infcall.c (run_inferior_call): Use std::move.
8979 (call_function_by_hand_dummy): Use std::move.
8980 * exec.c (try_open_exec_file): Use std::move.
8981 * exceptions.h (exception_print, exception_fprintf)
8982 (exception_print_same): Update.
8983 * exceptions.c (print_exception, exception_print)
8984 (exception_fprintf, exception_print_same): Change parameters to
8985 const reference.
8986 * event-top.c (gdb_rl_callback_read_char_wrapper): Update.
8987 * common/new-op.c: Use std::move.
8988 * common/common-exceptions.h (struct gdb_exception): Add move
8989 constructor.
8990 (struct gdb_exception_error, struct gdb_exception_quit, struct
8991 gdb_quit_bad_alloc): Change constructor to move constructor.
8992 (throw_exception): Change parameter to rvalue reference.
8993 * common/common-exceptions.c (throw_exception): Take rvalue
8994 reference.
8995 * cli/cli-interp.c (safe_execute_command): Use std::move.
8996 * breakpoint.c (insert_bp_location, location_to_sals): Use
8997 std::move.
8998
8999 2019-04-25 Tom Tromey <tromey@adacore.com>
9000
9001 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception)
9002 (gdbscm_throw_gdb_exception): Take a gdbscm_gdb_exception.
9003 * guile/scm-block.c, guile/scm-breakpoint.c, guile/scm-cmd.c,
9004 guile/scm-disasm.c, guile/scm-frame.c, guile/scm-lazy-string.c,
9005 guile/scm-math.c, guile/scm-param.c, guile/scm-ports.c,
9006 guile/scm-symbol.c, guile/scm-symtab.c, guile/scm-type.c,
9007 guile/scm-value.c: Use unpack.
9008 * guile/guile-internal.h (gdbscm_scm_from_gdb_exception): Take a
9009 gdbscm_gdb_exception.
9010 (gdbscm_throw_gdb_exception): Likewise.
9011 (struct gdbscm_gdb_exception): New.
9012 (unpack): New function.
9013 (gdbscm_wrap): Use unpack.
9014
9015 2019-04-25 Tom Tromey <tromey@adacore.com>
9016
9017 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept)
9018 (gdb_rl_callback_handler): Use std::move.
9019 * common/common-exceptions.h (struct gdb_exception): Add move
9020 assignment operator.
9021 (throw_exception_sjlj): Change "exception" to const reference.
9022 * common/common-exceptions.c (exceptions_state_mc_catch): Update.
9023 (throw_exception_sjlj): Change "exception" to const reference.
9024
9025 2019-04-25 Tom Tromey <tromey@adacore.com>
9026
9027 * xml-support.c (gdb_xml_parser::gdb_xml_parser): Update.
9028 * python/py-value.c (valpy_getitem, valpy_nonzero): Update.
9029 * python/py-inferior.c (infpy_write_memory, infpy_search_memory):
9030 Update.
9031 * python/py-breakpoint.c (bppy_set_condition, bppy_set_commands):
9032 Update.
9033 * mi/mi-interp.c (mi_interp::exec): Update.
9034 * linespec.c (parse_linespec): Update.
9035 * infcall.c (run_inferior_call): Update.
9036 * guile/scm-value.c (gdbscm_value_to_lazy_string): Update.
9037 * guile/scm-symbol.c (gdbscm_lookup_symbol)
9038 (gdbscm_lookup_global_symbol): Update.
9039 * guile/scm-param.c (gdbscm_parameter_value): Update.
9040 * guile/scm-frame.c (gdbscm_frame_read_register)
9041 (gdbscm_frame_read_var): Update.
9042 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Update.
9043 * exec.c (try_open_exec_file): Update.
9044 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept)
9045 (gdb_rl_callback_handler): Update.
9046 * common/common-exceptions.h (exception_none): Don't declare.
9047 * common/common-exceptions.c (exception_none): Don't define.
9048 (struct catcher) <exception>: Update.
9049 * cli/cli-interp.c (safe_execute_command): Update.
9050 * breakpoint.c (insert_bp_location, location_to_sals): Update.
9051
9052 2019-04-25 Ali Tamur <tamur@google.com>
9053
9054 * dwarf2read.c (skip_one_die): Add DW_FORM_strx.
9055 (read_attribute_value): Likewise.
9056 (dwarf2_read_addr_index): Update comment.
9057 (read_str_index): Add DW_FORM_strx.
9058 (dwarf2_string_attr): Likewise.
9059 (dwarf2_const_value_attr): Likewise.
9060 (dump_die_shallow): Likewise.
9061 (dwarf2_fetch_constant_bytes): Likewise.
9062 (skip_form_bytes): Likewise.
9063 * testsuite/lib/dwarf.exp (_handle_DW_FORM): Add DW_FORM_strx.
9064
9065 2019-04-25 Sergio Durigan Junior <sergiodj@redhat.com>
9066
9067 PR corefiles/11608
9068 PR corefiles/18187
9069 * linux-tdep.c (dump_mapping_p): Add new parameters ADDR and
9070 OFFSET. Verify if current mapping contains an ELF header.
9071 (linux_find_memory_regions_full): Adjust call to
9072 dump_mapping_p.
9073
9074 2019-04-25 Sandra Loosemore <sandra@codesourcery.com>
9075 Kang Li <kanglictf@gmail.com>
9076
9077 PR gdb/21600
9078
9079 * dwarf2-frame.c (read_initial_length): Be consistent about using
9080 unsigned representation of length.
9081 (decode_frame_entry_1): Likewise. Check for wraparound of
9082 end pointer as well as buffer overflow.
9083
9084 2019-04-24 Sergio Durigan Junior <sergiodj@redhat.com>
9085
9086 * aarch64-tdep.c (aarch64_gdbarch_init): Use "pulongest" to print
9087 "vq".
9088
9089 2019-04-24 Tom Tromey <tromey@adacore.com>
9090
9091 * amd64-tdep.c (amd64_has_unaligned_fields): Ignore bitfields.
9092
9093 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9094
9095 * s12z-tdep.c (s12z_unwind_pc): Delete.
9096 (s12z_unwind_sp): Delete.
9097 (s12z_gdbarch_init): Don't register deleted functions with
9098 gdbarch.
9099
9100 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9101
9102 * rl78-tdep.c (rl78_unwind_sp): Delete.
9103 (rl78_gdbarch_init): Don't register deleted function with gdbarch.
9104
9105 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9106
9107 * xstormy16-tdep.c (xstormy16_unwind_sp): Delete.
9108 (xstormy16_unwind_pc): Delete.
9109 (xstormy16_dummy_id): Delete.
9110 (xstormy16_gdbarch_init): Don't register deleted functions with
9111 gdbarch.
9112
9113 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9114
9115 * vax-tdep.c (vax_unwind_pc): Delete.
9116 (vax_gdbarch_init): Don't register deleted function with gdbarch.
9117
9118 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9119
9120 * v850-tdep.c (v850_unwind_sp): Delete.
9121 (v850_unwind_pc): Delete.
9122 (v850_dummy_id): Delete.
9123 (v850_gdbarch_init): Don't register deleted functions with
9124 gdbarch.
9125
9126 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9127
9128 * tilegx-tdep.c (tilegx_unwind_sp): Delete.
9129 (tilegx_unwind_pc): Delete.
9130 (tilegx_unwind_dummy_id): Delete.
9131 (tilegx_gdbarch_init): Don't register deleted functions with
9132 gdbarch.
9133
9134 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9135
9136 * tic6x-tdep.c (tic6x_unwind_sp): Delete.
9137 (tic6x_dummy_id): Delete.
9138 (tic6x_gdbarch_init): Don't register deleted functions with
9139 gdbarch.
9140
9141 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9142
9143 * sparc-tdep.c (sparc_unwind_pc): Delete.
9144 (sparc32_gdbarch_init): Don't register deleted function with
9145 gdbarch.
9146
9147 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9148
9149 * sh-tdep.c (sh_unwind_sp): Delete.
9150 (sh_unwind_pc): Delete.
9151 (sh_dummy_id): Delete.
9152 (sh_gdbarch_init): Don't register deleted functions with
9153 gdbarch.
9154
9155 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9156
9157 * score-tdep.c (score_unwind_sp): Delete.
9158 (score_unwind_pc): Delete.
9159 (score_dummy_id): Delete.
9160 (score_gdbarch_init): Don't register deleted functions with
9161 gdbarch.
9162
9163 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9164
9165 * rx-tdep.c (rx_unwind_pc): Delete.
9166 (rx_unwind_sp): Delete.
9167 (rx_dummy_id): Delete.
9168 (rx_gdbarch_init): Don't register deleted functions with
9169 gdbarch. Update comment.
9170
9171 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9172
9173 * rs6000-tdep.c (rs6000_unwind_pc): Delete.
9174 (rs6000_dummy_id): Delete.
9175 (rs6000_gdbarch_init): Don't register deleted functions with
9176 gdbarch.
9177
9178 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9179
9180 * or1k-tdep.c (or1k_dummy_id): Delete.
9181 (or1k_gdbarch_init): Don't register deleted function with gdbarch.
9182
9183 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9184
9185 * nios2-tdep.c (nios2_dummy_id): Delete.
9186 (nios2_unwind_sp): Delete.
9187 (nios2_gdbarch_init): Don't register deleted functions with
9188 gdbarch.
9189
9190 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9191
9192 * nds32-tdep.c (nds32_dummy_id): Delete.
9193 (nds32_unwind_pc): Delete.
9194 (nds32_unwind_sp): Delete.
9195 (nds32_gdbarch_init): Don't register deleted functions with
9196 gdbarch.
9197
9198 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9199
9200 * msp430-tdep.c (msp430_unwind_pc): Delete.
9201 (msp430_unwind_sp): Delete.
9202 (msp430_dummy_id): Delete.
9203 (msp430_gdbarch_init): Don't register deleted functions with
9204 gdbarch.
9205
9206 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9207
9208 * moxie-tdep.c (moxie_unwind_sp): Delete.
9209 (moxie_unwind_pc): Delete.
9210 (moxie_dummy_id): Delete.
9211 (moxie_gdbarch_init): Don't register deleted functions with
9212 gdbarch.
9213
9214 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9215
9216 * mn10300-tdep.c (mn10300_dummy_id): Delete.
9217 (mn10300_unwind_pc): Delete.
9218 (mn10300_unwind_sp): Delete.
9219 (mn10300_push_dummy_call): Use gdbarch_unwind_sp not
9220 mn10300_unwind_sp.
9221 (mn10300_frame_unwind_init): Don't register deleted functions with
9222 gdbarch.
9223
9224 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9225
9226 * mep-tdep.c (mep_unwind_pc): Delete.
9227 (mep_unwind_sp): Delete.
9228 (mep_dummy_id): Delete.
9229 (mep_gdbarch_init): Don't register deleted functions with
9230 gdbarch.
9231
9232 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9233
9234 * m68hc11-tdep.c (m68hc11_unwind_pc): Delete.
9235 (m68hc11_unwind_sp): Delete.
9236 (m68hc11_gdbarch_init): Don't register deleted functions with
9237 gdbarch.
9238
9239 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9240
9241 * m32r-tdep.c (m32r_unwind_sp): Delete.
9242 (m32r_unwind_pc): Delete.
9243 (m32r_dummy_id): Delete.
9244 (m32r_gdbarch_init): Don't register deleted functions with
9245 gdbarch.
9246
9247 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9248
9249 * m32c-tdep.c (m32c_unwind_pc): Delete.
9250 (m32c_unwind_sp): Delete.
9251 (m32c_dummy_id): Delete.
9252 (m32c_gdbarch_init): Don't register deleted functions with
9253 gdbarch.
9254
9255 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9256
9257 * gdb/lm32-tdep.c (lm32_unwind_sp): Delete.
9258 (lm32_unwind_pc): Delete.
9259 (lm32_dummy_id): Delete.
9260 (lm32_gdbarch_init): Don't register deleted functions with
9261 gdbarch.
9262
9263 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9264
9265 * gdb/iq2000-tdep.c (iq2000_unwind_sp): Delete.
9266 (iq2000_unwind_pc): Delete.
9267 (iq2000_dummy_id): Delete.
9268 (iq2000_gdbarch_init): Don't register deleted functions with
9269 gdbarch.
9270
9271 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9272
9273 * nds32-tdep.c (nds32_type_align): Delete.
9274 (nds32_push_dummy_call): Use type_align instead.
9275
9276 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9277
9278 * arm-tdep.c (arm_type_align): Only handle vector override case.
9279 (arm_push_dummy_call): Use type_align.
9280 (arm_gdbarch_init): Register arm_type_align gdbarch function.
9281
9282 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9283
9284 * aarch64-tdep.c (aarch64_type_align): Only handle vector override
9285 case.
9286 (pass_on_stack): Use type_align.
9287 (aarch64_gdbarch_init): Register aarch64_type_align gdbarch
9288 function.
9289
9290 2019-04-23 Tom Tromey <tromey@adacore.com>
9291
9292 * dwarf2read.c (line_header::file_name_at): Remove unused
9293 overload.
9294
9295 2019-04-23 Tom de Vries <tdevries@suse.de>
9296
9297 PR gdb/24438
9298 * contrib/cc-with-tweaks.sh: Remove superfluous .alt file after dwz
9299 invocation.
9300
9301
9302 2019-03-27 Ali Tamur <tamur@google.com>
9303
9304 * dwarf2-frame.c(dwarf_expr_executor::get_addr_index): Update comment
9305 * dwarf2expr.c(dwarf_expr_context::execute_stack_op): Add DW_OP_addrx
9306 * dwarf2expr.h(dwarf_expr_context::offset): Update comment
9307 (dwarf_expr_context::get_addr_index): Likewise
9308 * dwarf2loc.c(dwarf_evaluate_loc_desc::get_addr_index): Likewise
9309 (symbol_needs_eval_context::get_addr_index): Likewise
9310 (disassemble_dwarf_expression): Add DW_OP_addrx
9311 * dwarf2read.c(attr_value_as_address): Add DW_FORM_addrx
9312 (read_cutu_die_from_dwo): Update comment
9313 (skip_one_die): Add DW_FORM_addrx
9314 (read_attribute_value): Likewise
9315 (var_decode_location): Add DW_OP_addrx
9316 (dwarf2_const_value_attr): Add DW_FORM_addrx
9317 (dump_die_shallow): Likewise
9318 (dwarf2_fetch_constant_bytes): Likewise
9319 (decode_locdesc): Add DW_OP_addrx
9320 (skip_form_bytes): Add DW_FORM_addrx
9321
9322 2019-04-22 Ali Tamur <tamur@google.com>
9323
9324 * MAINTAINERS (Write After Approval): Add self.
9325
9326 2019-04-22 Simon Marchi <simon.marchi@efficios.com>
9327
9328 * solib-svr4.c (get_svr4_info): Add pspace parameter.
9329 (svr4_keep_data_in_core): Pass current_program_space to get_svr4_info.
9330 (open_symbol_file_object): Likewise.
9331 (svr4_default_sos): Add info parameter.
9332 (svr4_read_so_list): Likewise.
9333 (svr4_current_sos_direct): Adjust functions calls to pass down
9334 info.
9335 (svr4_current_sos_1): Add info parameter.
9336 (svr4_current_sos): Call get_svr4_info, pass info down to
9337 svr4_current_sos_1.
9338 (svr4_fetch_objfile_link_map): Pass objfile->pspace to
9339 get_svr4_info.
9340 (svr4_in_dynsym_resolve_code): Pass current_program_space to
9341 get_svr4_info.
9342 (probes_table_htab_remove_objfile_probes): Pass objfile->pspace
9343 to get_svr4_info.
9344 (probes_table_remove_objfile_probes): Likewise.
9345 (register_solib_event_probe): Add info parameter.
9346 (solist_update_incremental): Pass info parameter down to
9347 svr4_read_so_list.
9348 (disable_probes_interface): Add info parameter.
9349 (svr4_handle_solib_event): Pass current_program_space to
9350 get_svr4_info. Adjust disable_probes_interface cleanup.
9351 (svr4_create_probe_breakpoints): Add info parameter, pass it
9352 down to register_solib_event_probe.
9353 (svr4_create_solib_event_breakpoints): Add info parameter,
9354 pass it down to svr4_create_probe_breakpoints.
9355 (enable_break): Pass info down to
9356 svr4_create_solib_event_breakpoints.
9357 (svr4_solib_create_inferior_hook): Pass current_program_space to
9358 get_svr4_info.
9359 (svr4_clear_solib): Likewise.
9360
9361 2019-04-22 Pedro Alves <palves@redhat.com>
9362
9363 * solib-svr4.c (svr4_free_objfile_observer): New.
9364 (probe_and_action::objfile): New field.
9365 (probes_table_htab_remove_objfile_probes)
9366 (probes_table_remove_objfile_probes): New functions.
9367 (register_solib_event_probe): Add 'objfile' parameter. Store it
9368 in the new probe_and_action. Don't store the probe in 'lookup'.
9369 (svr4_create_probe_breakpoints): Pass objfile to
9370 register_solib_event_probe.
9371 (_initialize_svr4_solib): Register a free_objfile observer.
9372
9373 2019-04-19 Tom Tromey <tom@tromey.com>
9374
9375 * common/queue.h: Remove.
9376
9377 2019-04-19 Tom Tromey <tom@tromey.com>
9378
9379 * event-loop.c: Don't include "common/queue.h".
9380
9381 2019-04-19 Tom Tromey <tom@tromey.com>
9382
9383 * remote.c (remote_target): Use delete.
9384 * remote-notif.h: Include <list>, not "common/queue.h".
9385 (notif_client_p): Remove typedef.
9386 (remote_notif_state): Add constructor, destructor, initializer.
9387 <notif_queue>: Now a std::list.
9388 (remote_notif_state_xfree): Don't declare.
9389 * remote-notif.c (remote_notif_process, handle_notification)
9390 (remote_notif_state_allocate): Update.
9391 (~remote_notif_state): Rename from remote_notif_state_xfree.
9392
9393 2019-04-19 Tom Tromey <tom@tromey.com>
9394
9395 * symfile.c (reread_symbols): Update.
9396 * objfiles.c (objfile_register_static_link)
9397 (objfile_lookup_static_link): Update
9398 (~objfile) Don't delete static_links.
9399 * objfiles.h (struct objfile) <static_links>: Now an htab_up.
9400
9401 2019-04-19 Tom Tromey <tom@tromey.com>
9402
9403 * type-stack.h (struct type_stack) <insert>: Constify string.
9404 * type-stack.c (type_stack::insert): Constify string.
9405 * gdbtypes.h (lookup_template_type): Update.
9406 (address_space_name_to_int): Update.
9407 * gdbtypes.c (address_space_name_to_int): Make space_identifier
9408 const.
9409 (lookup_template_type): Make name const.
9410 * c-exp.y: Update rules.
9411 (lex_one_token, classify_name, classify_inner_name)
9412 (c_print_token): Update.
9413 * p-exp.y: Update rules.
9414 (yylex): Update.
9415 * f-exp.y: Update rules.
9416 (yylex): Update.
9417 * d-exp.y: Update rules.
9418 (lex_one_token, classify_name, classify_inner_name): Update.
9419 * parse.c (write_dollar_variable, copy_name): Return std::string.
9420 * parser-defs.h (copy_name): Change return type.
9421 * m2-exp.y: Update rules.
9422 (yylex): Update.
9423 * go-exp.y (lex_one_token): Update.
9424 Update rules.
9425 (classify_unsafe_function, classify_packaged_name)
9426 (classify_name, yylex): Update.
9427
9428 2019-04-19 Sergei Trofimovich <siarheit@google.com>
9429
9430 * configure.ac: add --enable-source-highlight switch.
9431 * configure: Regenerate.
9432 * top.c (print_gdb_version): plumb --enable-source-highlight
9433 status to "show configuration".
9434
9435 2019-04-19 Tom Tromey <tromey@adacore.com>
9436
9437 * ada-lang.c (ada_is_variant_part, ada_to_fixed_type_1):
9438 Check ADA_TYPE_P.
9439 (empty_record, ada_template_to_fixed_record_type_1)
9440 (template_to_static_fixed_type)
9441 (to_record_with_fixed_variant_part): Use INIT_NONE_SPECIFIC.
9442 * cp-abi.c (value_rtti_type): Check HAVE_CPLUS_STRUCT.
9443 * gdbtypes.h (INIT_NONE_SPECIFIC, ADA_TYPE_P): New
9444 macros.
9445
9446 2019-04-19 Ilya Yu. Malakhov <malakhov@mcst.ru>
9447
9448 PR symtab/24423:
9449 * source.c (print_source_lines_base): Advance "iter" when a
9450 control character is seen.
9451
9452 2019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9453
9454 * inferior.h (struct infcall_suspend_state_deleter):
9455 Catch exception in destructor to avoid crash.
9456
9457 2019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9458
9459 * cli/cli-cmds.c (_initialize_cli_cmds): Move "shell" "!" alias
9460 close to the add_com "shell".
9461
9462 2019-04-18 Tom Tromey <tromey@adacore.com>
9463
9464 * process-stratum-target.h (class process_stratum_target)
9465 <stratum>: Add "final".
9466
9467 2019-04-17 Tom Tromey <tromey@adacore.com>
9468
9469 * dwarf2read.c (dwarf2_init_complex_target_type): Check "tt"
9470 against nullptr before use.
9471
9472 2019-04-17 Alan Hayward <alan.hayward@arm.com>
9473
9474 * nat/linux-waitpid.c (linux_debug): Call debug_vprintf.
9475
9476 2019-04-17 Jim Wilson <jimw@sifive.com>
9477 Andrew Burgess <andrew.burgess@embecosm.com>
9478
9479 * riscv-tdep.c (riscv_breakpoint_kind_from_pc): Hanndle case where
9480 code read might fail, assume 4-byte breakpoint in that case.
9481
9482 2019-04-15 Leszek Swirski <leszeks@google.com>
9483
9484 * amd64-tdep.c (amd64_classify_aggregate): Use cp_pass_by_reference
9485 rather than a hand-rolled POD check when checking for forced MEMORY
9486 classification.
9487
9488 2019-04-15 Alan Hayward <alan.hayward@arm.com>
9489
9490 * aarch64-linux-nat.c (store_sveregs_to_thread): Set vector length.
9491 * nat/aarch64-sve-linux-ptrace.c (aarch64_sve_set_vq): New
9492 function.
9493 (aarch64_sve_regs_copy_to_reg_buf): Remove VG checks.
9494 (aarch64_sve_regs_copy_from_reg_buf): Likewise.
9495 * nat/aarch64-sve-linux-ptrace.h (aarch64_sve_set_vq): New
9496 declaration.
9497
9498 2019-04-15 Alan Hayward <alan.hayward@arm.com>
9499
9500 * aarch64-linux-nat.c
9501 (aarch64_linux_nat_target::thread_architecture): Add override.
9502 * aarch64-tdep.c (aarch64_gdbarch_init): Ensure different tdesc for
9503 each VQ.
9504
9505 2019-04-15 Alan Hayward <alan.hayward@arm.com>
9506
9507 * aarch64-tdep.c (aarch64_gdbarch_init): Move gdbarch lookup.
9508
9509 2019-04-13 Andrew Burgess <andrew.burgess@embecosm.com>
9510
9511 * dwarf2read.c (dwarf2_init_complex_target_type): Handle complex
9512 target types of size 96-bits, add some additional comments, and
9513 check that the builtin type we found was the correct size.
9514
9515 2019-04-12 Eli Zaretskii <eliz@gnu.org>
9516
9517 * utils.c (prompt_for_continue): Don't restore the styling at the
9518 end, as applied_style has the wrong value. This fixes styling in
9519 long lists of file names that are interrupted by the "Continue?"
9520 prompt.
9521
9522 2019-04-12 Andrew Burgess <andrew.burgess@embecosm.com>
9523
9524 * ada-lang.c (ada_language_defn): Remove use of LANG_MAGIC.
9525 * c-lang.c (c_language_defn): Likewise.
9526 (cplus_language_defn): Likewise.
9527 (asm_language_defn): Likewise.
9528 (minimal_language_defn): Likewise.
9529 * d-lang.c (d_language_defn): Likewise.
9530 * f-lang.c (f_language_defn): Likewise.
9531 * go-lang.c (go_language_defn): Likewise.
9532 * language.c (unknown_language_defn): Likewise.
9533 (auto_language_defn): Likewise.
9534 * language.h (struct language_defn): Remove la_magic field.
9535 (LANG_MAGIC): Delete.
9536 * m2-lang.c (m2_language_defn): Remove use of LANG_MAGIC.
9537 * objc-lang.c (objc_language_defn): Likewise.
9538 * opencl-lang.c (opencl_language_defn): Likewise.
9539 * p-lang.c (pascal_language_defn): Likewise.
9540 * rust-lang.c (rust_language_defn): Likewise.
9541
9542 2019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
9543
9544 * riscv-tdep.c (riscv_type_align): New function.
9545 (riscv_type_alignment): Delete.
9546 (riscv_arg_location): Use 'type_align'.
9547 (riscv_gdbarch_init): Register riscv_type_align gdbarch function.
9548
9549 2019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
9550
9551 * gdbtypes.c (type_align): A struct with no non-static fields also
9552 has alignment of 1.
9553
9554 2019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
9555
9556 * riscv-tdep.c (riscv_call_arg_complex_float): Fix offset of first
9557 component to 0.
9558 (riscv_struct_info::riscv_struct_info): Initialise m_offsets
9559 member.
9560 (riscv_struct_info::analyse): New implementation using new
9561 analyse_inner member function.
9562 (riscv_struct_info::field_offset): New member function.
9563 (riscv_struct_info::m_offsets): New member variable.
9564 (riscv_struct_info::analyse_inner): New private member function,
9565 takes the old implementation of riscv_struct_info::analyse but
9566 extended to track field offsets.
9567 (riscv_call_arg_struct): Update the struct folding special cases
9568 to handle cases where empty C++ structs, which are non-zero
9569 length, are found.
9570 (riscv_arg_location): Initialise the length of each location, a
9571 non-zero length now indicates the location is in use.
9572 (riscv_push_dummy_call): Allow for the first location having a
9573 non-zero offset when setting up arguments.
9574 (riscv_return_value): Likewise, but for return values.
9575
9576 2019-04-11 Tom Tromey <tromey@adacore.com>
9577
9578 * utils.c (internal_vproblem): Make "msg" const.
9579
9580 2019-04-11 Alan Hayward <alan.hayward@arm.com>
9581
9582 * aarch64-tdep.c (aarch64_analyze_prologue_test): Reset saved regs.
9583 * trad-frame.c (trad_frame_reset_saved_regs): New function.
9584 (trad_frame_alloc_saved_regs): Call trad_frame_reset_saved_regs.
9585 * trad-frame.h (trad_frame_reset_saved_regs): New declaration.
9586
9587 2019-04-10 Kevin Buettner <kevinb@redhat.com>
9588
9589 * amd64-linux-nat.c (amd64_linux_collect_native_gregset): New
9590 function.
9591 (fill_gregset): Call amd64_linux_collect_native_gregset instead
9592 of amd64_collect_native_gregset.
9593 (amd64_linux_nat_target::store_registers): Likewise.
9594
9595 2019-04-10 Tom Tromey <tom@tromey.com>
9596
9597 * symtab.c (lookup_global_symbol_from_objfile)
9598 (lookup_symbol_in_objfile_from_linkage_name): Use the iterator.
9599 * objfiles.h (class separate_debug_iterator): New.
9600 (class separate_debug_range): New.
9601 (struct objfile) <separate_debug_objfiles>: New method.
9602 (objfile_separate_debug_iterate): Don't declare.
9603 * objfiles.c (separate_debug_iterator::operator++): Rename from
9604 objfile_separate_debug_iterate.
9605 (objfile_relocate, objfile_rebase, objfile_has_symbols): Use the
9606 iterator.
9607 * minsyms.c (lookup_minimal_symbol_by_pc_section): Use the
9608 iterator.
9609
9610 2019-04-10 Tom Tromey <tom@tromey.com>
9611
9612 * symfile.c (reread_symbols): Remove old comment.
9613 * objfiles.c (free_all_objfiles): Fix a typo.
9614
9615 2019-04-10 Tom Tromey <tom@tromey.com>
9616
9617 * ia64-tdep.c (ia64_get_dyn_info_list): Use foreach.
9618 * minsyms.c (lookup_minimal_symbol): Use foreach.
9619 (lookup_minimal_symbol_text, lookup_minimal_symbol_by_pc_name)
9620 (lookup_minimal_symbol_solib_trampoline): Likewise.
9621 * symfile.c (reread_symbols): Use foreach.
9622
9623 2019-04-09 Ivan Begert <ivanbegert@gmail.com>
9624 Tom Tromey <tromey@adacore.com>
9625
9626 PR rust/24414:
9627 * rust-exp.y (rust_parser::lex_number): Use strtoulst.
9628 (rust_lex_int_test): Change "value" to be LONGEST.
9629 (rust_lex_tests): Add test for long integer literal.
9630
9631 2019-04-09 Tom Tromey <tromey@adacore.com>
9632
9633 * remote.c (remote_target::remote_add_inferior): Change fake_pid_p
9634 to bool.
9635 (extended_remote_target::attach): Update.
9636 (remote_target::remote_notice_new_inferior): Update.
9637 (remote_target::add_current_inferior_and_thread): Update.
9638 * inferior.c (exit_inferior_1): Use "false".
9639 * corelow.c (add_to_thread_list): Make fake_pid_p bool.
9640
9641 2019-04-09 Simon Marchi <simon.marchi@efficios.com>
9642
9643 * infcmd.c (run_command_1): Pass -qualified to tbreak when using
9644 the "start" command.
9645
9646 2019-04-08 Kevin Buettner <kevinb@redhat.com>
9647
9648 * python/py-inferior.c (infpy_thread_from_thread_handle):
9649 Adjust comments to reflect renaming of thread_from_thread_handle
9650 to thread_from_handle. Adjust keywords. Fix type error message.
9651 (inferior_object_methods): Add thread_from_handle. Retain
9652 thread_from_thread_handle, but mark it as deprecated.
9653
9654 2019-04-08 Kevin Buettner <kevinb@redhat.com>
9655
9656 * gdbthread.h (find_thread_by_handle): Revise declaration.
9657 * thread.c (find_thread_by_handle): Likewise. Adjust
9658 implementation too.
9659 * python/py-inferior.c (infpy_thread_from_thread_handle): Add
9660 support for buffer objects as handles.
9661
9662 2019-04-08 Kevin Buettner <kevinb@redhat.com>
9663
9664 * python/py-infthread.c (thpy_thread_handle): New function.
9665 (thread_object_methods): Register thpy_thread_handle.
9666
9667 2019-04-08 Kevin Buettner <kevinb@redhat.com>
9668
9669 * gdbthread.h (thread_to_thread_handle): Declare.
9670 * thread.c (gdbtypes.h): Include.
9671 (thread_to_thread_handle): New function.
9672
9673 * target.h (struct target_ops): Add thread_info_to_thread_handle.
9674 (target_thread_info_to_thread_handle): Declare.
9675 * target.c (target_thread_info_to_thread_handle): New function.
9676 * target-debug.h (target_debug_print_gdb_byte_vector): Define.
9677 * target-delegates.c: Regenerate.
9678
9679 * linux-thread-db.c (class thread_db_target): Add method
9680 thread_info_to_thread_handle.
9681 (thread_db_target::thread_info_to_thread_handle): Define.
9682 * remote.c (class remote_target): Add new method
9683 thread_info_to_thread_handle.
9684 (remote_target::thread_info_to_thread_handle): Define.
9685
9686 2019-04-08 Pedro Alves <palves@redhat.com>
9687
9688 * common/common-exceptions.c (throw_exception): Don't create
9689 named object to throw; throw directly.
9690 (throw_it): Likewise. Don't initialize gdb_exception::message
9691 here, with new; pass FMT and AP to the ctor instead.
9692 * common/common-exceptions.h: Include <string>.
9693 (gdb_exception::gdb_exception(enum return_reason, enum errors,
9694 const char *, va_list)): New ctor. Use std::make_shared.
9695 (gdb_exception_error::gdb_exception_error(enum return_reason, enum
9696 errors)): Delete.
9697 (gdb_exception_error::gdb_exception_error(enum errors, const char
9698 *, va_list)): New.
9699 (gdb_exception_error::gdb_exception_error(const gdb_exception &)):
9700 Add assertion.
9701 (gdb_exception_quit::gdb_exception_quit(enum return_reason, enum
9702 errors)): Delete.
9703 (gdb_exception_quit::gdb_exception_quit(const char *, va_list)): New.
9704 (gdb_exception_quit::gdb_exception_quit(const gdb_exception &)):
9705 Add assertion.
9706
9707 2019-04-08 Tom Tromey <tom@tromey.com>
9708
9709 * valops.c (value_rtti_indirect_type): Replace throw_exception
9710 with throw.
9711 * tracefile-tfile.c (tfile_target_open): Replace throw_exception
9712 with throw.
9713 * thread.c (thr_try_catch_cmd): Replace throw_exception with
9714 throw.
9715 * target.c (target_translate_tls_address): Replace throw_exception
9716 with throw.
9717 * stack.c (frame_apply_command_count): Replace throw_exception
9718 with throw.
9719 * solib-spu.c (append_ocl_sos): Replace throw_exception with
9720 throw.
9721 * s390-tdep.c (s390_frame_unwind_cache): Replace throw_exception
9722 with throw.
9723 * rs6000-tdep.c (rs6000_frame_cache)
9724 (rs6000_epilogue_frame_cache): Replace throw_exception with throw.
9725 * remote.c: Replace throw_exception with throw.
9726 * record-full.c (record_full_message, record_full_wait_1)
9727 (record_full_restore): Replace throw_exception with throw.
9728 * record-btrace.c:
9729 (get_thread_current_frame_id, record_btrace_start_replaying)
9730 (cmd_record_btrace_bts_start, cmd_record_btrace_pt_start)
9731 (cmd_record_btrace_start): Replace throw_exception with throw.
9732 * parse.c (parse_exp_in_context_1): Replace throw_exception with
9733 throw.
9734 * linux-nat.c (detach_one_lwp, linux_resume_one_lwp)
9735 (resume_stopped_resumed_lwps): Replace throw_exception with throw.
9736 * linespec.c:
9737 (find_linespec_symbols): Replace throw_exception with throw.
9738 * infrun.c (displaced_step_prepare, resume): Replace
9739 throw_exception with throw.
9740 * infcmd.c (post_create_inferior): Replace throw_exception with
9741 throw.
9742 * inf-loop.c (inferior_event_handler): Replace throw_exception
9743 with throw.
9744 * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache)
9745 (i386_sigtramp_frame_cache): Replace throw_exception with throw.
9746 * frame.c (frame_unwind_pc, get_prev_frame_if_no_cycle)
9747 (get_prev_frame_always, get_frame_pc_if_available)
9748 (get_frame_address_in_block_if_available, get_frame_language):
9749 Replace throw_exception with throw.
9750 * frame-unwind.c (frame_unwind_try_unwinder): Replace
9751 throw_exception with throw.
9752 * eval.c (fetch_subexp_value, evaluate_var_value)
9753 (evaluate_funcall, evaluate_subexp_standard): Replace
9754 throw_exception with throw.
9755 * dwarf2loc.c (call_site_find_chain)
9756 (dwarf2_evaluate_loc_desc_full, dwarf2_locexpr_baton_eval):
9757 Replace throw_exception with throw.
9758 * dwarf2-frame.c (dwarf2_frame_cache): Replace throw_exception
9759 with throw.
9760 * darwin-nat.c (darwin_attach_pid): Replace throw_exception with
9761 throw.
9762 * cp-abi.c (baseclass_offset): Replace throw_exception with throw.
9763 * completer.c (complete_line_internal): Replace throw_exception
9764 with throw.
9765 * compile/compile-object-run.c (compile_object_run): Replace
9766 throw_exception with throw.
9767 * cli/cli-script.c (process_next_line): Replace throw_exception
9768 with throw.
9769 * btrace.c (btrace_compute_ftrace_pt, btrace_compute_ftrace)
9770 (btrace_enable, btrace_maint_update_pt_packets): Replace
9771 throw_exception with throw.
9772 * breakpoint.c (create_breakpoint, save_breakpoints): Replace
9773 throw_exception with throw.
9774 * break-catch-throw.c (re_set_exception_catchpoint): Replace
9775 throw_exception with throw.
9776 * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache)
9777 (amd64_epilogue_frame_cache): Replace throw_exception with throw.
9778 * aarch64-tdep.c (aarch64_make_prologue_cache)
9779 (aarch64_make_stub_cache): Replace throw_exception with throw.
9780
9781 2019-04-08 Tom Tromey <tom@tromey.com>
9782
9783 * common/common-exceptions.c (throw_exception): Rename from
9784 throw_exception_cxx. Remove old copy. Make argument const.
9785 (throw_it): Create and throw exception objects directly.
9786 * common/common-exceptions.h (throw_exception): Make argument
9787 const.
9788 (struct gdb_exception_error): Add constructor.
9789 (struct gdb_exception_quit): Add constructor.
9790
9791 2019-04-08 Tom Tromey <tom@tromey.com>
9792
9793 * common/common-exceptions.h (exception_rethrow): Don't declare.
9794 (TRY_SJLJ): Update comment.
9795 (TRY, CATCH, END_CATCH): Remove.
9796 * common/common-exceptions.c (exception_rethrow): Remove.
9797
9798 2019-04-08 Tom Tromey <tom@tromey.com>
9799
9800 * common/common-exceptions.h (gdb_exception_RETURN_MASK_ALL):
9801 Remove.
9802 (gdb_exception_error): Rename from
9803 gdb_exception_RETURN_MASK_ERROR.
9804 (gdb_exception_quit): Rename from gdb_exception_RETURN_MASK_QUIT.
9805 (gdb_quit_bad_alloc): Update.
9806 * aarch64-tdep.c: Update.
9807 * ada-lang.c: Update.
9808 * ada-typeprint.c: Update.
9809 * ada-valprint.c: Update.
9810 * amd64-tdep.c: Update.
9811 * arch-utils.c: Update.
9812 * break-catch-throw.c: Update.
9813 * breakpoint.c: Update.
9814 * btrace.c: Update.
9815 * c-varobj.c: Update.
9816 * cli/cli-cmds.c: Update.
9817 * cli/cli-interp.c: Update.
9818 * cli/cli-script.c: Update.
9819 * common/common-exceptions.c: Update.
9820 * common/new-op.c: Update.
9821 * common/selftest.c: Update.
9822 * compile/compile-c-symbols.c: Update.
9823 * compile/compile-cplus-symbols.c: Update.
9824 * compile/compile-object-load.c: Update.
9825 * compile/compile-object-run.c: Update.
9826 * completer.c: Update.
9827 * corelow.c: Update.
9828 * cp-abi.c: Update.
9829 * cp-support.c: Update.
9830 * cp-valprint.c: Update.
9831 * darwin-nat.c: Update.
9832 * disasm-selftests.c: Update.
9833 * dtrace-probe.c: Update.
9834 * dwarf-index-cache.c: Update.
9835 * dwarf-index-write.c: Update.
9836 * dwarf2-frame-tailcall.c: Update.
9837 * dwarf2-frame.c: Update.
9838 * dwarf2loc.c: Update.
9839 * dwarf2read.c: Update.
9840 * eval.c: Update.
9841 * event-loop.c: Update.
9842 * event-top.c: Update.
9843 * exec.c: Update.
9844 * f-valprint.c: Update.
9845 * fbsd-tdep.c: Update.
9846 * frame-unwind.c: Update.
9847 * frame.c: Update.
9848 * gdbtypes.c: Update.
9849 * gnu-v3-abi.c: Update.
9850 * guile/guile-internal.h: Update.
9851 * guile/scm-block.c: Update.
9852 * guile/scm-breakpoint.c: Update.
9853 * guile/scm-cmd.c: Update.
9854 * guile/scm-disasm.c: Update.
9855 * guile/scm-frame.c: Update.
9856 * guile/scm-lazy-string.c: Update.
9857 * guile/scm-math.c: Update.
9858 * guile/scm-param.c: Update.
9859 * guile/scm-ports.c: Update.
9860 * guile/scm-pretty-print.c: Update.
9861 * guile/scm-symbol.c: Update.
9862 * guile/scm-symtab.c: Update.
9863 * guile/scm-type.c: Update.
9864 * guile/scm-value.c: Update.
9865 * i386-linux-tdep.c: Update.
9866 * i386-tdep.c: Update.
9867 * inf-loop.c: Update.
9868 * infcall.c: Update.
9869 * infcmd.c: Update.
9870 * infrun.c: Update.
9871 * jit.c: Update.
9872 * language.c: Update.
9873 * linespec.c: Update.
9874 * linux-fork.c: Update.
9875 * linux-nat.c: Update.
9876 * linux-tdep.c: Update.
9877 * linux-thread-db.c: Update.
9878 * main.c: Update.
9879 * mi/mi-cmd-break.c: Update.
9880 * mi/mi-cmd-stack.c: Update.
9881 * mi/mi-interp.c: Update.
9882 * mi/mi-main.c: Update.
9883 * objc-lang.c: Update.
9884 * p-valprint.c: Update.
9885 * parse.c: Update.
9886 * ppc-linux-tdep.c: Update.
9887 * printcmd.c: Update.
9888 * python/py-arch.c: Update.
9889 * python/py-breakpoint.c: Update.
9890 * python/py-cmd.c: Update.
9891 * python/py-finishbreakpoint.c: Update.
9892 * python/py-frame.c: Update.
9893 * python/py-framefilter.c: Update.
9894 * python/py-gdb-readline.c: Update.
9895 * python/py-inferior.c: Update.
9896 * python/py-infthread.c: Update.
9897 * python/py-lazy-string.c: Update.
9898 * python/py-linetable.c: Update.
9899 * python/py-objfile.c: Update.
9900 * python/py-param.c: Update.
9901 * python/py-prettyprint.c: Update.
9902 * python/py-progspace.c: Update.
9903 * python/py-record-btrace.c: Update.
9904 * python/py-record.c: Update.
9905 * python/py-symbol.c: Update.
9906 * python/py-type.c: Update.
9907 * python/py-unwind.c: Update.
9908 * python/py-utils.c: Update.
9909 * python/py-value.c: Update.
9910 * python/python.c: Update.
9911 * record-btrace.c: Update.
9912 * record-full.c: Update.
9913 * remote-fileio.c: Update.
9914 * remote.c: Update.
9915 * riscv-tdep.c: Update.
9916 * rs6000-aix-tdep.c: Update.
9917 * rs6000-tdep.c: Update.
9918 * rust-exp.y: Update.
9919 * rust-lang.c: Update.
9920 * s390-tdep.c: Update.
9921 * selftest-arch.c: Update.
9922 * solib-dsbt.c: Update.
9923 * solib-frv.c: Update.
9924 * solib-spu.c: Update.
9925 * solib-svr4.c: Update.
9926 * solib.c: Update.
9927 * sparc64-linux-tdep.c: Update.
9928 * stack.c: Update.
9929 * symfile-mem.c: Update.
9930 * symmisc.c: Update.
9931 * target.c: Update.
9932 * thread.c: Update.
9933 * top.c: Update.
9934 * tracefile-tfile.c: Update.
9935 * tui/tui.c: Update.
9936 * typeprint.c: Update.
9937 * unittests/cli-utils-selftests.c: Update.
9938 * unittests/parse-connection-spec-selftests.c: Update.
9939 * valops.c: Update.
9940 * valprint.c: Update.
9941 * value.c: Update.
9942 * varobj.c: Update.
9943 * windows-nat.c: Update.
9944 * x86-linux-nat.c: Update.
9945 * xml-support.c: Update.
9946
9947 2019-04-08 Tom Tromey <tom@tromey.com>
9948
9949 * xml-support.c: Use C++ exception handling.
9950 * x86-linux-nat.c: Use C++ exception handling.
9951 * windows-nat.c: Use C++ exception handling.
9952 * varobj.c: Use C++ exception handling.
9953 * value.c: Use C++ exception handling.
9954 * valprint.c: Use C++ exception handling.
9955 * valops.c: Use C++ exception handling.
9956 * unittests/parse-connection-spec-selftests.c: Use C++ exception
9957 handling.
9958 * unittests/cli-utils-selftests.c: Use C++ exception handling.
9959 * typeprint.c: Use C++ exception handling.
9960 * tui/tui.c: Use C++ exception handling.
9961 * tracefile-tfile.c: Use C++ exception handling.
9962 * top.c: Use C++ exception handling.
9963 * thread.c: Use C++ exception handling.
9964 * target.c: Use C++ exception handling.
9965 * symmisc.c: Use C++ exception handling.
9966 * symfile-mem.c: Use C++ exception handling.
9967 * stack.c: Use C++ exception handling.
9968 * sparc64-linux-tdep.c: Use C++ exception handling.
9969 * solib.c: Use C++ exception handling.
9970 * solib-svr4.c: Use C++ exception handling.
9971 * solib-spu.c: Use C++ exception handling.
9972 * solib-frv.c: Use C++ exception handling.
9973 * solib-dsbt.c: Use C++ exception handling.
9974 * selftest-arch.c: Use C++ exception handling.
9975 * s390-tdep.c: Use C++ exception handling.
9976 * rust-lang.c: Use C++ exception handling.
9977 * rust-exp.y: Use C++ exception handling.
9978 * rs6000-tdep.c: Use C++ exception handling.
9979 * rs6000-aix-tdep.c: Use C++ exception handling.
9980 * riscv-tdep.c: Use C++ exception handling.
9981 * remote.c: Use C++ exception handling.
9982 * remote-fileio.c: Use C++ exception handling.
9983 * record-full.c: Use C++ exception handling.
9984 * record-btrace.c: Use C++ exception handling.
9985 * python/python.c: Use C++ exception handling.
9986 * python/py-value.c: Use C++ exception handling.
9987 * python/py-utils.c: Use C++ exception handling.
9988 * python/py-unwind.c: Use C++ exception handling.
9989 * python/py-type.c: Use C++ exception handling.
9990 * python/py-symbol.c: Use C++ exception handling.
9991 * python/py-record.c: Use C++ exception handling.
9992 * python/py-record-btrace.c: Use C++ exception handling.
9993 * python/py-progspace.c: Use C++ exception handling.
9994 * python/py-prettyprint.c: Use C++ exception handling.
9995 * python/py-param.c: Use C++ exception handling.
9996 * python/py-objfile.c: Use C++ exception handling.
9997 * python/py-linetable.c: Use C++ exception handling.
9998 * python/py-lazy-string.c: Use C++ exception handling.
9999 * python/py-infthread.c: Use C++ exception handling.
10000 * python/py-inferior.c: Use C++ exception handling.
10001 * python/py-gdb-readline.c: Use C++ exception handling.
10002 * python/py-framefilter.c: Use C++ exception handling.
10003 * python/py-frame.c: Use C++ exception handling.
10004 * python/py-finishbreakpoint.c: Use C++ exception handling.
10005 * python/py-cmd.c: Use C++ exception handling.
10006 * python/py-breakpoint.c: Use C++ exception handling.
10007 * python/py-arch.c: Use C++ exception handling.
10008 * printcmd.c: Use C++ exception handling.
10009 * ppc-linux-tdep.c: Use C++ exception handling.
10010 * parse.c: Use C++ exception handling.
10011 * p-valprint.c: Use C++ exception handling.
10012 * objc-lang.c: Use C++ exception handling.
10013 * mi/mi-main.c: Use C++ exception handling.
10014 * mi/mi-interp.c: Use C++ exception handling.
10015 * mi/mi-cmd-stack.c: Use C++ exception handling.
10016 * mi/mi-cmd-break.c: Use C++ exception handling.
10017 * main.c: Use C++ exception handling.
10018 * linux-thread-db.c: Use C++ exception handling.
10019 * linux-tdep.c: Use C++ exception handling.
10020 * linux-nat.c: Use C++ exception handling.
10021 * linux-fork.c: Use C++ exception handling.
10022 * linespec.c: Use C++ exception handling.
10023 * language.c: Use C++ exception handling.
10024 * jit.c: Use C++ exception handling.
10025 * infrun.c: Use C++ exception handling.
10026 * infcmd.c: Use C++ exception handling.
10027 * infcall.c: Use C++ exception handling.
10028 * inf-loop.c: Use C++ exception handling.
10029 * i386-tdep.c: Use C++ exception handling.
10030 * i386-linux-tdep.c: Use C++ exception handling.
10031 * guile/scm-value.c: Use C++ exception handling.
10032 * guile/scm-type.c: Use C++ exception handling.
10033 * guile/scm-symtab.c: Use C++ exception handling.
10034 * guile/scm-symbol.c: Use C++ exception handling.
10035 * guile/scm-pretty-print.c: Use C++ exception handling.
10036 * guile/scm-ports.c: Use C++ exception handling.
10037 * guile/scm-param.c: Use C++ exception handling.
10038 * guile/scm-math.c: Use C++ exception handling.
10039 * guile/scm-lazy-string.c: Use C++ exception handling.
10040 * guile/scm-frame.c: Use C++ exception handling.
10041 * guile/scm-disasm.c: Use C++ exception handling.
10042 * guile/scm-cmd.c: Use C++ exception handling.
10043 * guile/scm-breakpoint.c: Use C++ exception handling.
10044 * guile/scm-block.c: Use C++ exception handling.
10045 * guile/guile-internal.h: Use C++ exception handling.
10046 * gnu-v3-abi.c: Use C++ exception handling.
10047 * gdbtypes.c: Use C++ exception handling.
10048 * frame.c: Use C++ exception handling.
10049 * frame-unwind.c: Use C++ exception handling.
10050 * fbsd-tdep.c: Use C++ exception handling.
10051 * f-valprint.c: Use C++ exception handling.
10052 * exec.c: Use C++ exception handling.
10053 * event-top.c: Use C++ exception handling.
10054 * event-loop.c: Use C++ exception handling.
10055 * eval.c: Use C++ exception handling.
10056 * dwarf2read.c: Use C++ exception handling.
10057 * dwarf2loc.c: Use C++ exception handling.
10058 * dwarf2-frame.c: Use C++ exception handling.
10059 * dwarf2-frame-tailcall.c: Use C++ exception handling.
10060 * dwarf-index-write.c: Use C++ exception handling.
10061 * dwarf-index-cache.c: Use C++ exception handling.
10062 * dtrace-probe.c: Use C++ exception handling.
10063 * disasm-selftests.c: Use C++ exception handling.
10064 * darwin-nat.c: Use C++ exception handling.
10065 * cp-valprint.c: Use C++ exception handling.
10066 * cp-support.c: Use C++ exception handling.
10067 * cp-abi.c: Use C++ exception handling.
10068 * corelow.c: Use C++ exception handling.
10069 * completer.c: Use C++ exception handling.
10070 * compile/compile-object-run.c: Use C++ exception handling.
10071 * compile/compile-object-load.c: Use C++ exception handling.
10072 * compile/compile-cplus-symbols.c: Use C++ exception handling.
10073 * compile/compile-c-symbols.c: Use C++ exception handling.
10074 * common/selftest.c: Use C++ exception handling.
10075 * common/new-op.c: Use C++ exception handling.
10076 * cli/cli-script.c: Use C++ exception handling.
10077 * cli/cli-interp.c: Use C++ exception handling.
10078 * cli/cli-cmds.c: Use C++ exception handling.
10079 * c-varobj.c: Use C++ exception handling.
10080 * btrace.c: Use C++ exception handling.
10081 * breakpoint.c: Use C++ exception handling.
10082 * break-catch-throw.c: Use C++ exception handling.
10083 * arch-utils.c: Use C++ exception handling.
10084 * amd64-tdep.c: Use C++ exception handling.
10085 * ada-valprint.c: Use C++ exception handling.
10086 * ada-typeprint.c: Use C++ exception handling.
10087 * ada-lang.c: Use C++ exception handling.
10088 * aarch64-tdep.c: Use C++ exception handling.
10089
10090 2019-04-08 Tom Tromey <tom@tromey.com>
10091
10092 * xml-support.c (gdb_xml_parser::parse): Update.
10093 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
10094 * value.c (show_convenience): Update.
10095 * unittests/cli-utils-selftests.c (test_number_or_range_parser)
10096 (test_parse_flags_qcs): Update.
10097 * thread.c (thr_try_catch_cmd): Update.
10098 * target.c (target_translate_tls_address): Update.
10099 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
10100 (info_frame_command_core, frame_apply_command_count): Update.
10101 * rust-exp.y (rust_lex_exception_test): Update.
10102 * riscv-tdep.c (riscv_print_one_register_info): Update.
10103 * remote.c (remote_target::enable_btrace): Update.
10104 * record-btrace.c (record_btrace_enable_warn): Update.
10105 * python/py-utils.c (gdbpy_convert_exception): Update.
10106 * printcmd.c (do_one_display, print_variable_and_value): Update.
10107 * mi/mi-main.c (mi_print_exception): Update.
10108 * mi/mi-interp.c (mi_cmd_interpreter_exec): Use SCOPE_EXIT.
10109 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
10110 * linux-nat.c (linux_nat_target::attach): Update.
10111 * linux-fork.c (class scoped_switch_fork_info): Update.
10112 * infrun.c (displaced_step_prepare): Update.
10113 * infcall.c (call_function_by_hand_dummy): Update.
10114 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception): Update.
10115 * gnu-v3-abi.c (print_one_vtable): Update.
10116 * frame.c (get_prev_frame_always): Update.
10117 * f-valprint.c (info_common_command_for_block): Update.
10118 * exec.c (try_open_exec_file): Update.
10119 * exceptions.c (print_exception, exception_print)
10120 (exception_fprintf, exception_print_same): Update.
10121 * dwarf2-frame.c (dwarf2_build_frame_info): Update.
10122 * dwarf-index-cache.c (index_cache::store)
10123 (index_cache::lookup_gdb_index): Update.
10124 * darwin-nat.c (maybe_cache_shell): Update.
10125 * cp-valprint.c (cp_print_value_fields): Update.
10126 * compile/compile-cplus-symbols.c (gcc_cplus_convert_symbol)
10127 (gcc_cplus_symbol_address): Update.
10128 * compile/compile-c-symbols.c (gcc_convert_symbol)
10129 (gcc_symbol_address, generate_c_for_for_one_variable): Update.
10130 * common/selftest.c: Update.
10131 * common/common-exceptions.h (struct gdb_exception) <message>: Now
10132 a std::string.
10133 (exception_try_scope_entry, exception_try_scope_exit): Don't
10134 declare.
10135 (struct exception_try_scope): Remove.
10136 (TRY): Don't use exception_try_scope.
10137 (struct gdb_exception): Add constructor, operator=.
10138 <what>: New method.
10139 (struct gdb_exception_RETURN_MASK_ALL)
10140 (struct gdb_exception_RETURN_MASK_ERROR)
10141 (struct gdb_exception_RETURN_MASK_QUIT): Add constructor.
10142 (struct gdb_quit_bad_alloc): Update.
10143 * common/common-exceptions.c (exception_none): Change
10144 initializer.
10145 (struct catcher) <state, exception>: Initialize inline.
10146 <prev>: Remove member.
10147 (current_catcher): Remove.
10148 (catchers): New global.
10149 (exceptions_state_mc_init): Simplify.
10150 (catcher_pop): Remove.
10151 (exceptions_state_mc, exceptions_state_mc_catch): Update.
10152 (try_scope_depth, exception_try_scope_entry)
10153 (exception_try_scope_exit): Remove.
10154 (throw_exception_sjlj): Update.
10155 (exception_messages, exception_messages_size): Remove.
10156 (throw_it): Simplify.
10157 (gdb_exception_sliced_copy): Remove.
10158 (throw_exception_cxx): Update.
10159 * cli/cli-script.c (script_from_file): Update.
10160 * breakpoint.c (insert_bp_location, update_breakpoint_locations):
10161 Update.
10162 * ada-valprint.c (ada_val_print): Update.
10163 * ada-lang.c (ada_to_fixed_type_1, ada_exception_name_addr)
10164 (create_excep_cond_exprs): Update.
10165
10166 2019-04-08 Tom Tromey <tom@tromey.com>
10167
10168 * common/common-exceptions.h (GDB_XCPT_SJMP, GDB_XCPT_TRY)
10169 (GDB_XCPT_RAW_TRY, GDB_XCPT): Remove.
10170 (TRY, CATCH, END_CATCH): Remove some definitions.
10171 * common/common-exceptions.c: Don't use GDB_XCPT.
10172 (catcher_list_size): Remove.
10173 (throw_exception, throw_it): Simplify.
10174
10175 2019-04-05 Tom Tromey <tom@tromey.com>
10176
10177 Revert the header-sorting patch.
10178 * ft32-tdep.c: Revert.
10179 * frv-tdep.c: Revert.
10180 * frv-linux-tdep.c: Revert.
10181 * frame.c: Revert.
10182 * frame-unwind.c: Revert.
10183 * frame-base.c: Revert.
10184 * fork-child.c: Revert.
10185 * findvar.c: Revert.
10186 * findcmd.c: Revert.
10187 * filesystem.c: Revert.
10188 * filename-seen-cache.h: Revert.
10189 * filename-seen-cache.c: Revert.
10190 * fbsd-tdep.c: Revert.
10191 * fbsd-nat.h: Revert.
10192 * fbsd-nat.c: Revert.
10193 * f-valprint.c: Revert.
10194 * f-typeprint.c: Revert.
10195 * f-lang.c: Revert.
10196 * extension.h: Revert.
10197 * extension.c: Revert.
10198 * extension-priv.h: Revert.
10199 * expprint.c: Revert.
10200 * exec.h: Revert.
10201 * exec.c: Revert.
10202 * exceptions.c: Revert.
10203 * event-top.c: Revert.
10204 * event-loop.c: Revert.
10205 * eval.c: Revert.
10206 * elfread.c: Revert.
10207 * dwarf2read.h: Revert.
10208 * dwarf2read.c: Revert.
10209 * dwarf2loc.c: Revert.
10210 * dwarf2expr.h: Revert.
10211 * dwarf2expr.c: Revert.
10212 * dwarf2-frame.c: Revert.
10213 * dwarf2-frame-tailcall.c: Revert.
10214 * dwarf-index-write.h: Revert.
10215 * dwarf-index-write.c: Revert.
10216 * dwarf-index-common.c: Revert.
10217 * dwarf-index-cache.h: Revert.
10218 * dwarf-index-cache.c: Revert.
10219 * dummy-frame.c: Revert.
10220 * dtrace-probe.c: Revert.
10221 * disasm.h: Revert.
10222 * disasm.c: Revert.
10223 * disasm-selftests.c: Revert.
10224 * dictionary.c: Revert.
10225 * dicos-tdep.c: Revert.
10226 * demangle.c: Revert.
10227 * dcache.h: Revert.
10228 * dcache.c: Revert.
10229 * darwin-nat.h: Revert.
10230 * darwin-nat.c: Revert.
10231 * darwin-nat-info.c: Revert.
10232 * d-valprint.c: Revert.
10233 * d-namespace.c: Revert.
10234 * d-lang.c: Revert.
10235 * ctf.c: Revert.
10236 * csky-tdep.c: Revert.
10237 * csky-linux-tdep.c: Revert.
10238 * cris-tdep.c: Revert.
10239 * cris-linux-tdep.c: Revert.
10240 * cp-valprint.c: Revert.
10241 * cp-support.c: Revert.
10242 * cp-namespace.c: Revert.
10243 * cp-abi.c: Revert.
10244 * corelow.c: Revert.
10245 * corefile.c: Revert.
10246 * continuations.c: Revert.
10247 * completer.h: Revert.
10248 * completer.c: Revert.
10249 * complaints.c: Revert.
10250 * coffread.c: Revert.
10251 * coff-pe-read.c: Revert.
10252 * cli-out.h: Revert.
10253 * cli-out.c: Revert.
10254 * charset.c: Revert.
10255 * c-varobj.c: Revert.
10256 * c-valprint.c: Revert.
10257 * c-typeprint.c: Revert.
10258 * c-lang.c: Revert.
10259 * buildsym.c: Revert.
10260 * buildsym-legacy.c: Revert.
10261 * build-id.h: Revert.
10262 * build-id.c: Revert.
10263 * btrace.c: Revert.
10264 * bsd-uthread.c: Revert.
10265 * breakpoint.h: Revert.
10266 * breakpoint.c: Revert.
10267 * break-catch-throw.c: Revert.
10268 * break-catch-syscall.c: Revert.
10269 * break-catch-sig.c: Revert.
10270 * blockframe.c: Revert.
10271 * block.c: Revert.
10272 * bfin-tdep.c: Revert.
10273 * bfin-linux-tdep.c: Revert.
10274 * bfd-target.c: Revert.
10275 * bcache.c: Revert.
10276 * ax-general.c: Revert.
10277 * ax-gdb.h: Revert.
10278 * ax-gdb.c: Revert.
10279 * avr-tdep.c: Revert.
10280 * auxv.c: Revert.
10281 * auto-load.c: Revert.
10282 * arm-wince-tdep.c: Revert.
10283 * arm-tdep.c: Revert.
10284 * arm-symbian-tdep.c: Revert.
10285 * arm-pikeos-tdep.c: Revert.
10286 * arm-obsd-tdep.c: Revert.
10287 * arm-nbsd-tdep.c: Revert.
10288 * arm-nbsd-nat.c: Revert.
10289 * arm-linux-tdep.c: Revert.
10290 * arm-linux-nat.c: Revert.
10291 * arm-fbsd-tdep.c: Revert.
10292 * arm-fbsd-nat.c: Revert.
10293 * arm-bsd-tdep.c: Revert.
10294 * arch-utils.c: Revert.
10295 * arc-tdep.c: Revert.
10296 * arc-newlib-tdep.c: Revert.
10297 * annotate.h: Revert.
10298 * annotate.c: Revert.
10299 * amd64-windows-tdep.c: Revert.
10300 * amd64-windows-nat.c: Revert.
10301 * amd64-tdep.c: Revert.
10302 * amd64-sol2-tdep.c: Revert.
10303 * amd64-obsd-tdep.c: Revert.
10304 * amd64-obsd-nat.c: Revert.
10305 * amd64-nbsd-tdep.c: Revert.
10306 * amd64-nbsd-nat.c: Revert.
10307 * amd64-nat.c: Revert.
10308 * amd64-linux-tdep.c: Revert.
10309 * amd64-linux-nat.c: Revert.
10310 * amd64-fbsd-tdep.c: Revert.
10311 * amd64-fbsd-nat.c: Revert.
10312 * amd64-dicos-tdep.c: Revert.
10313 * amd64-darwin-tdep.c: Revert.
10314 * amd64-bsd-nat.c: Revert.
10315 * alpha-tdep.c: Revert.
10316 * alpha-obsd-tdep.c: Revert.
10317 * alpha-nbsd-tdep.c: Revert.
10318 * alpha-mdebug-tdep.c: Revert.
10319 * alpha-linux-tdep.c: Revert.
10320 * alpha-linux-nat.c: Revert.
10321 * alpha-bsd-tdep.c: Revert.
10322 * alpha-bsd-nat.c: Revert.
10323 * aix-thread.c: Revert.
10324 * agent.c: Revert.
10325 * addrmap.c: Revert.
10326 * ada-varobj.c: Revert.
10327 * ada-valprint.c: Revert.
10328 * ada-typeprint.c: Revert.
10329 * ada-tasks.c: Revert.
10330 * ada-lang.c: Revert.
10331 * aarch64-tdep.c: Revert.
10332 * aarch64-ravenscar-thread.c: Revert.
10333 * aarch64-newlib-tdep.c: Revert.
10334 * aarch64-linux-tdep.c: Revert.
10335 * aarch64-linux-nat.c: Revert.
10336 * aarch64-fbsd-tdep.c: Revert.
10337 * aarch64-fbsd-nat.c: Revert.
10338 * aarch32-linux-nat.c: Revert.
10339
10340 2019-04-05 Tom Tromey <tom@tromey.com>
10341
10342 * ft32-tdep.c: Sort headers.
10343 * frv-tdep.c: Sort headers.
10344 * frv-linux-tdep.c: Sort headers.
10345 * frame.c: Sort headers.
10346 * frame-unwind.c: Sort headers.
10347 * frame-base.c: Sort headers.
10348 * fork-child.c: Sort headers.
10349 * findvar.c: Sort headers.
10350 * findcmd.c: Sort headers.
10351 * filesystem.c: Sort headers.
10352 * filename-seen-cache.h: Sort headers.
10353 * filename-seen-cache.c: Sort headers.
10354 * fbsd-tdep.c: Sort headers.
10355 * fbsd-nat.h: Sort headers.
10356 * fbsd-nat.c: Sort headers.
10357 * f-valprint.c: Sort headers.
10358 * f-typeprint.c: Sort headers.
10359 * f-lang.c: Sort headers.
10360 * extension.h: Sort headers.
10361 * extension.c: Sort headers.
10362 * extension-priv.h: Sort headers.
10363 * expprint.c: Sort headers.
10364 * exec.h: Sort headers.
10365 * exec.c: Sort headers.
10366 * exceptions.c: Sort headers.
10367 * event-top.c: Sort headers.
10368 * event-loop.c: Sort headers.
10369 * eval.c: Sort headers.
10370 * elfread.c: Sort headers.
10371 * dwarf2read.h: Sort headers.
10372 * dwarf2read.c: Sort headers.
10373 * dwarf2loc.c: Sort headers.
10374 * dwarf2expr.h: Sort headers.
10375 * dwarf2expr.c: Sort headers.
10376 * dwarf2-frame.c: Sort headers.
10377 * dwarf2-frame-tailcall.c: Sort headers.
10378 * dwarf-index-write.h: Sort headers.
10379 * dwarf-index-write.c: Sort headers.
10380 * dwarf-index-common.c: Sort headers.
10381 * dwarf-index-cache.h: Sort headers.
10382 * dwarf-index-cache.c: Sort headers.
10383 * dummy-frame.c: Sort headers.
10384 * dtrace-probe.c: Sort headers.
10385 * disasm.h: Sort headers.
10386 * disasm.c: Sort headers.
10387 * disasm-selftests.c: Sort headers.
10388 * dictionary.c: Sort headers.
10389 * dicos-tdep.c: Sort headers.
10390 * demangle.c: Sort headers.
10391 * dcache.h: Sort headers.
10392 * dcache.c: Sort headers.
10393 * darwin-nat.h: Sort headers.
10394 * darwin-nat.c: Sort headers.
10395 * darwin-nat-info.c: Sort headers.
10396 * d-valprint.c: Sort headers.
10397 * d-namespace.c: Sort headers.
10398 * d-lang.c: Sort headers.
10399 * ctf.c: Sort headers.
10400 * csky-tdep.c: Sort headers.
10401 * csky-linux-tdep.c: Sort headers.
10402 * cris-tdep.c: Sort headers.
10403 * cris-linux-tdep.c: Sort headers.
10404 * cp-valprint.c: Sort headers.
10405 * cp-support.c: Sort headers.
10406 * cp-namespace.c: Sort headers.
10407 * cp-abi.c: Sort headers.
10408 * corelow.c: Sort headers.
10409 * corefile.c: Sort headers.
10410 * continuations.c: Sort headers.
10411 * completer.h: Sort headers.
10412 * completer.c: Sort headers.
10413 * complaints.c: Sort headers.
10414 * coffread.c: Sort headers.
10415 * coff-pe-read.c: Sort headers.
10416 * cli-out.h: Sort headers.
10417 * cli-out.c: Sort headers.
10418 * charset.c: Sort headers.
10419 * c-varobj.c: Sort headers.
10420 * c-valprint.c: Sort headers.
10421 * c-typeprint.c: Sort headers.
10422 * c-lang.c: Sort headers.
10423 * buildsym.c: Sort headers.
10424 * buildsym-legacy.c: Sort headers.
10425 * build-id.h: Sort headers.
10426 * build-id.c: Sort headers.
10427 * btrace.c: Sort headers.
10428 * bsd-uthread.c: Sort headers.
10429 * breakpoint.h: Sort headers.
10430 * breakpoint.c: Sort headers.
10431 * break-catch-throw.c: Sort headers.
10432 * break-catch-syscall.c: Sort headers.
10433 * break-catch-sig.c: Sort headers.
10434 * blockframe.c: Sort headers.
10435 * block.c: Sort headers.
10436 * bfin-tdep.c: Sort headers.
10437 * bfin-linux-tdep.c: Sort headers.
10438 * bfd-target.c: Sort headers.
10439 * bcache.c: Sort headers.
10440 * ax-general.c: Sort headers.
10441 * ax-gdb.h: Sort headers.
10442 * ax-gdb.c: Sort headers.
10443 * avr-tdep.c: Sort headers.
10444 * auxv.c: Sort headers.
10445 * auto-load.c: Sort headers.
10446 * arm-wince-tdep.c: Sort headers.
10447 * arm-tdep.c: Sort headers.
10448 * arm-symbian-tdep.c: Sort headers.
10449 * arm-pikeos-tdep.c: Sort headers.
10450 * arm-obsd-tdep.c: Sort headers.
10451 * arm-nbsd-tdep.c: Sort headers.
10452 * arm-nbsd-nat.c: Sort headers.
10453 * arm-linux-tdep.c: Sort headers.
10454 * arm-linux-nat.c: Sort headers.
10455 * arm-fbsd-tdep.c: Sort headers.
10456 * arm-fbsd-nat.c: Sort headers.
10457 * arm-bsd-tdep.c: Sort headers.
10458 * arch-utils.c: Sort headers.
10459 * arc-tdep.c: Sort headers.
10460 * arc-newlib-tdep.c: Sort headers.
10461 * annotate.h: Sort headers.
10462 * annotate.c: Sort headers.
10463 * amd64-windows-tdep.c: Sort headers.
10464 * amd64-windows-nat.c: Sort headers.
10465 * amd64-tdep.c: Sort headers.
10466 * amd64-sol2-tdep.c: Sort headers.
10467 * amd64-obsd-tdep.c: Sort headers.
10468 * amd64-obsd-nat.c: Sort headers.
10469 * amd64-nbsd-tdep.c: Sort headers.
10470 * amd64-nbsd-nat.c: Sort headers.
10471 * amd64-nat.c: Sort headers.
10472 * amd64-linux-tdep.c: Sort headers.
10473 * amd64-linux-nat.c: Sort headers.
10474 * amd64-fbsd-tdep.c: Sort headers.
10475 * amd64-fbsd-nat.c: Sort headers.
10476 * amd64-dicos-tdep.c: Sort headers.
10477 * amd64-darwin-tdep.c: Sort headers.
10478 * amd64-bsd-nat.c: Sort headers.
10479 * alpha-tdep.c: Sort headers.
10480 * alpha-obsd-tdep.c: Sort headers.
10481 * alpha-nbsd-tdep.c: Sort headers.
10482 * alpha-mdebug-tdep.c: Sort headers.
10483 * alpha-linux-tdep.c: Sort headers.
10484 * alpha-linux-nat.c: Sort headers.
10485 * alpha-bsd-tdep.c: Sort headers.
10486 * alpha-bsd-nat.c: Sort headers.
10487 * aix-thread.c: Sort headers.
10488 * agent.c: Sort headers.
10489 * addrmap.c: Sort headers.
10490 * ada-varobj.c: Sort headers.
10491 * ada-valprint.c: Sort headers.
10492 * ada-typeprint.c: Sort headers.
10493 * ada-tasks.c: Sort headers.
10494 * ada-lang.c: Sort headers.
10495 * aarch64-tdep.c: Sort headers.
10496 * aarch64-ravenscar-thread.c: Sort headers.
10497 * aarch64-newlib-tdep.c: Sort headers.
10498 * aarch64-linux-tdep.c: Sort headers.
10499 * aarch64-linux-nat.c: Sort headers.
10500 * aarch64-fbsd-tdep.c: Sort headers.
10501 * aarch64-fbsd-nat.c: Sort headers.
10502 * aarch32-linux-nat.c: Sort headers.
10503
10504 2019-04-04 Tom Tromey <tom@tromey.com>
10505
10506 * varobj.c (varobj_create): Update.
10507 * rust-exp.y (struct rust_parser) <update_innermost_block,
10508 lookup_symbol>: New methods.
10509 (rust_parser::update_innermost_block, rust_parser::lookup_symbol):
10510 Rename.
10511 (rust_parser::rust_lookup_type)
10512 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
10513 * printcmd.c (display_command, do_one_display): Update.
10514 * parser-defs.h (struct parser_state) <parser_state>: Add
10515 "tracker" parameter.
10516 (block_tracker): New member.
10517 (class innermost_block_tracker) <innermost_block_tracker>: Add
10518 "types" parameter.
10519 <reset>: Remove method.
10520 (innermost_block): Don't declare.
10521 (null_post_parser): Update.
10522 * parse.c (innermost_block): Remove global.
10523 (write_dollar_variable): Update.
10524 (parse_exp_1, parse_exp_in_context): Add "tracker" parameter.
10525 Remove "tracker_types" parameter.
10526 (parse_expression): Add "tracker" parameter.
10527 (parse_expression_for_completion): Update.
10528 (null_post_parser): Add "tracker" parameter.
10529 * p-exp.y: Update rules.
10530 * m2-exp.y: Update rules.
10531 * language.h (struct language_defn) <la_post_parser>: Add
10532 "tracker" parameter.
10533 * go-exp.y: Update rules.
10534 * f-exp.y: Update rules.
10535 * expression.h (parse_expression, parse_exp_1): Add "tracker"
10536 parameter.
10537 * d-exp.y: Update rules.
10538 * c-exp.y: Update rules.
10539 * breakpoint.c (set_breakpoint_condition): Create an
10540 innermost_block_tracker.
10541 (watch_command_1): Likewise.
10542 * ada-lang.c (resolve): Add "tracker" parameter.
10543 (resolve_subexp): Likewise.
10544 * ada-exp.y (write_var_from_sym): Update.
10545
10546 2019-04-04 Tom Tromey <tom@tromey.com>
10547
10548 * type-stack.h: New file.
10549 * type-stack.c: New file.
10550 * parser-defs.h (enum type_pieces, union type_stack_elt): Move to
10551 type-stack.h.
10552 (insert_into_type_stack, insert_type, push_type, push_type_int)
10553 (insert_type_address_space, pop_type, pop_type_int)
10554 (pop_typelist, pop_type_stack, append_type_stack)
10555 (push_type_stack, get_type_stack, push_typelist)
10556 (follow_type_instance_flags, follow_types): Don't declare.
10557 * parse.c (type_stack): Remove global.
10558 (parse_exp_in_context): Update.
10559 (insert_into_type_stack, insert_type, push_type, push_type_int)
10560 (insert_type_address_space, pop_type, pop_type_int)
10561 (pop_typelist, pop_type_stack, append_type_stack)
10562 (push_type_stack, get_type_stack, push_typelist)
10563 (follow_type_instance_flags, follow_types): Remove (moved to
10564 type-stack.c).
10565 * f-exp.y (type_stack): New global.
10566 Update rules.
10567 (push_kind_type, f_parse): Update.
10568 * d-exp.y (type_stack): New global.
10569 Update rules.
10570 (d_parse): Update.
10571 * c-exp.y (struct c_parse_state) <type_stack>: New member.
10572 Update rules.
10573 * Makefile.in (COMMON_SFILES): Add type-stack.c.
10574 (HFILES_NO_SRCDIR): Add type-stack.h.
10575
10576 2019-04-04 Tom Tromey <tom@tromey.com>
10577
10578 * rust-exp.y (rust_parser::lex_identifier, rustyylex)
10579 (rust_parser::convert_ast_to_expression, rust_parse)
10580 (rust_lex_test_completion, rust_lex_tests): Update.
10581 * parser-defs.h (struct expr_completion_state): New.
10582 (struct parser_state) <parser_state>: Add completion parameter.
10583 <mark_struct_expression, mark_completion_tag>: New methods.
10584 <parse_completion, m_completion_state>: New members.
10585 (prefixify_expression, null_post_parser): Update.
10586 (mark_struct_expression, mark_completion_tag): Don't declare.
10587 * parse.c (parse_completion, expout_last_struct)
10588 (expout_tag_completion_type, expout_completion_name): Remove
10589 globals.
10590 (parser_state::mark_struct_expression)
10591 (parser_state::mark_completion_tag): Now methods.
10592 (prefixify_expression): Add last_struct parameter.
10593 (prefixify_subexp): Likewise.
10594 (parse_exp_1): Update.
10595 (parse_exp_in_context): Add cstate parameter. Update.
10596 (parse_expression_for_completion): Create an
10597 expr_completion_state.
10598 (null_post_parser): Add "completion" parameter.
10599 * p-exp.y: Update rules.
10600 (yylex): Update.
10601 * language.h (struct language_defn) <la_post_parser>: Add
10602 "completing" parameter.
10603 * go-exp.y: Update rules.
10604 (lex_one_token): Update.
10605 * expression.h (parse_completion): Don't declare.
10606 * d-exp.y: Update rules.
10607 (lex_one_token): Update rules.
10608 * c-exp.y: Update rules.
10609 (lex_one_token): Update.
10610 * ada-lang.c (resolve): Add "parse_completion" parameter.
10611 (resolve_subexp): Likewise.
10612 (ada_resolve_function): Likewise.
10613
10614 2019-04-04 Tom Tromey <tom@tromey.com>
10615
10616 * parser-defs.h (struct parser_state) <start_arglist,
10617 end_arglist>: New methods.
10618 <arglist_len, m_funcall_chain>: New members.
10619 (arglist_len, start_arglist, end_arglist): Don't declare.
10620 * parse.c (arglist_len, funcall_chain): Remove global.
10621 (start_arglist, end_arglist): Remove functions.
10622 (parse_exp_in_context): Update.
10623 * p-exp.y: Update rules.
10624 * m2-exp.y: Update rules.
10625 * go-exp.y: Update rules.
10626 * f-exp.y: Update rules.
10627 * d-exp.y: Update rules.
10628 * c-exp.y: Update rules.
10629
10630 2019-04-04 Tom Tromey <tom@tromey.com>
10631
10632 * rust-exp.y (struct rust_parser) <lex_hex, lex_escape,
10633 lex_operator, push_back>: New methods.
10634 Update all rules.
10635 (rust_parser::lex_hex, lex_escape): Rename and update.
10636 (rust_parser::lex_string, rust_parser::lex_identifier): Update.
10637 (rust_parser::lex_operator): Rename and update.
10638 (rust_parser::lex_number, rustyylex, rustyyerror)
10639 (rust_lex_test_init, rust_lex_test_sequence)
10640 (rust_lex_test_push_back, rust_lex_tests): Update.
10641 * parser-defs.h (struct parser_state) <parser_state>: Add "input"
10642 parameter.
10643 <lexptr, prev_lexptr>: New members.
10644 (lexptr, prev_lexptr): Don't declare.
10645 * parse.c (lexptr, prev_lexptr): Remove globals.
10646 (parse_exp_in_context): Update.
10647 * p-exp.y (yylex, yyerror): Update.
10648 * m2-exp.y (parse_number, yylex, yyerror): Update.
10649 * go-exp.y (lex_one_token, yyerror): Update.
10650 * f-exp.y (match_string_literal, yylex, yyerror): Update.
10651 * d-exp.y (lex_one_token, yyerror): Update.
10652 * c-exp.y (scan_macro_expansion, finished_macro_expansion)
10653 (lex_one_token, yyerror): Update.
10654 * ada-lex.l (YY_INPUT): Update.
10655 (rewind_to_char): Update.
10656 * ada-exp.y (yyerror): Update.
10657
10658 2019-04-04 Tom Tromey <tom@tromey.com>
10659
10660 * rust-exp.y (rustyylex, rust_lex_tests): Update.
10661 * parser-defs.h (struct parser_state) <parser_state>: Add new
10662 parameter.
10663 <comma_terminates>: New member.
10664 (comma_terminates): Don't declare global.
10665 * parse.c (comma_terminates): Remove global.
10666 (parse_exp_in_context): Update.
10667 * p-exp.y (yylex): Update.
10668 * m2-exp.y (yylex): Update.
10669 * go-exp.y (lex_one_token): Update.
10670 * f-exp.y (yylex): Update.
10671 * d-exp.y (lex_one_token): Update.
10672 * c-exp.y (lex_one_token): Update.
10673 * ada-lex.l: Update.
10674
10675 2019-04-04 Tom Tromey <tom@tromey.com>
10676
10677 * rust-exp.y (struct rust_parser) <paren_depth>: New member.
10678 (rustyylex, rust_lex_test_init, rust_lex_test_one)
10679 (rust_lex_test_sequence, rust_lex_test_push_back): Update.
10680 * parser-defs.h (paren_depth): Don't declare.
10681 * parse.c (paren_depth): Remove global.
10682 (parse_exp_in_context): Update.
10683 * p-exp.y (paren_depth): New global.
10684 (pascal_parse): Initialize it.
10685 * m2-exp.y (paren_depth): New global.
10686 (m2_parse): Initialize it.
10687 * go-exp.y (paren_depth): New global.
10688 (go_parse): Initialize it.
10689 * f-exp.y (paren_depth): New global.
10690 (f_parse): Initialize it.
10691 * d-exp.y (paren_depth): New global.
10692 (d_parse): Initialize it.
10693 * c-exp.y (paren_depth): New global.
10694 (c_parse): Initialize it.
10695 * ada-lex.l (paren_depth): New global.
10696 (lexer_init): Initialize it.
10697
10698 2019-04-04 Tom Tromey <tom@tromey.com>
10699
10700 * rust-exp.y (rust_parser::crate_name, rust_parser::super_name)
10701 (rust_parser::convert_ast_to_type)
10702 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
10703 * parser-defs.h (struct parser_state) <parser_state>: Add
10704 parameters. Initialize new members.
10705 <expression_context_block, expression_context_pc>: New members.
10706 * parse.c (expression_context_block, expression_context_pc):
10707 Remove globals.
10708 (parse_exp_in_context): Update.
10709 * p-exp.y: Update all rules.
10710 (yylex): Update.
10711 * m2-exp.y: Update all rules.
10712 (yylex): Update.
10713 * go-exp.y (yylex): Update.
10714 * f-exp.y (yylex): Update.
10715 * d-exp.y: Update all rules.
10716 (yylex): Update.
10717 * c-exp.y: Update all rules.
10718 (lex_one_token, classify_name, yylex, c_parse): Update.
10719 * ada-exp.y (write_var_or_type, write_name_assoc): Update.
10720
10721 2019-04-04 Tom Tromey <tom@tromey.com>
10722
10723 * gdbarch.h, gdbarch.c: Rebuild.
10724 * gdbarch.sh (dtrace_parse_probe_argument): Change type.
10725 * stap-probe.h:
10726 (struct stap_parse_info): Replace "parser_state" with
10727 "expr_builder".
10728 * parser-defs.h (struct expr_builder): Rename from "parser_state".
10729 (parser_state): New class.
10730 * parse.c (expr_builder): Rename.
10731 (expr_builder::release): Rename.
10732 (write_exp_elt, write_exp_elt_opcode, write_exp_elt_sym)
10733 (write_exp_elt_msym, write_exp_elt_block, write_exp_elt_objfile)
10734 (write_exp_elt_longcst, write_exp_elt_floatcst)
10735 (write_exp_elt_type, write_exp_elt_intern, write_exp_string)
10736 (write_exp_string_vector, write_exp_bitstring)
10737 (write_exp_msymbol, mark_struct_expression)
10738 (write_dollar_variable)
10739 (insert_type_address_space, increase_expout_size): Replace
10740 "parser_state" with "expr_builder".
10741 * dtrace-probe.c: Replace "parser_state" with "expr_builder".
10742 * amd64-linux-tdep.c (amd64_dtrace_parse_probe_argument): Replace
10743 "parser_state" with "expr_builder".
10744
10745 2019-04-04 Tom Tromey <tom@tromey.com>
10746
10747 * rust-exp.y: Replace "parse_language" with method call.
10748 * p-exp.y:
10749 (yylex): Replace "parse_language" with method call.
10750 * m2-exp.y:
10751 (yylex): Replace "parse_language" with method call.
10752 * go-exp.y (classify_name): Replace "parse_language" with method
10753 call.
10754 * f-exp.y (yylex): Replace "parse_language" with method call.
10755 * d-exp.y (lex_one_token): Replace "parse_language" with method
10756 call.
10757 * c-exp.y:
10758 (lex_one_token, classify_name, yylex): Replace "parse_language"
10759 with method call.
10760 * ada-exp.y (find_primitive_type, type_char)
10761 (type_system_address): Replace "parse_language" with method call.
10762
10763 2019-04-04 Tom Tromey <tom@tromey.com>
10764
10765 * rust-exp.y: Replace "parse_gdbarch" with method call.
10766 * parse.c (write_dollar_variable, insert_type_address_space):
10767 Replace "parse_gdbarch" with method call.
10768 * p-exp.y (parse_type, yylex): Replace "parse_gdbarch" with method
10769 call.
10770 * objc-lang.c (end_msglist): Replace "parse_gdbarch" with method
10771 call.
10772 * m2-exp.y (parse_type, parse_m2_type, yylex): Replace
10773 "parse_gdbarch" with method call.
10774 * go-exp.y (parse_type, classify_name): Replace "parse_gdbarch"
10775 with method call.
10776 * f-exp.y (parse_type, parse_f_type, yylex): Replace
10777 "parse_gdbarch" with method call.
10778 * d-exp.y (parse_type, parse_d_type, lex_one_token): Replace
10779 "parse_gdbarch" with method call.
10780 * c-exp.y (parse_type, parse_number, classify_name): Replace
10781 "parse_gdbarch" with method call.
10782 * ada-lex.l: Replace "parse_gdbarch" with method call.
10783 * ada-exp.y (parse_type, find_primitive_type, type_char)
10784 (type_system_address): Replace "parse_gdbarch" with method call.
10785
10786 2019-04-04 Tom Tromey <tom@tromey.com>
10787
10788 * dtrace-probe.c (dtrace_probe::build_arg_exprs): Update.
10789 * stap-probe.c (stap_parse_argument): Update.
10790 * stap-probe.h (struct stap_parse_info) <stap_parse_info>: Remove
10791 initial_size parameter.
10792 * rust-exp.y (rust_lex_tests): Update.
10793 * parse.c (parser_state): Update.
10794 (parse_exp_in_context): Update.
10795 * parser-defs.h (struct parser_state) <parser_state>: Remove
10796 "initial_size" parameter.
10797
10798 2019-04-04 Tom Tromey <tom@tromey.com>
10799
10800 * parser-defs.h (increase_expout_size): Don't declare.
10801 * parse.c (increase_expout_size): Now static.
10802
10803 2019-04-04 Thomas Schwinge <thomas@codesourcery.com>
10804
10805 * gnu-nat.c (gnu_nat_target::wait): Fix
10806 target_waitstatus_to_string call.
10807
10808 2019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
10809
10810 * eval.c (evaluate_subexp_standard): Handle internal functions
10811 during Fortran function call handling.
10812
10813 2019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
10814
10815 * NEWS: Mention new internal functions.
10816 * dwarf2read.c (dwarf2_init_complex_target_type): New function.
10817 (read_base_type): Use dwarf2_init_complex_target_type.
10818 * value.c (creal_internal_fn): New function.
10819 (cimag_internal_fn): New function.
10820 (_initialize_values): Register new internal functions.
10821
10822 2019-04-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10823
10824 * infrun.c (stop_all_threads): If debug_infrun, always
10825 trace the wait status after wait_one, using
10826 target_waitstatus_to_string and target_pid_to_str.
10827 (handle_inferior_event): Replace various trace of
10828 wait status kind by a single trace.
10829 * gdb/gnu-nat.c (gnu_nat_target::wait): Replace local
10830 wait status kind image by target_waitstatus_to_string.
10831 * target/waitstatus.c (target_waitstatus_to_string): Fix
10832 obsolete comment.
10833
10834 2019-04-01 Tom Tromey <tromey@adacore.com>
10835
10836 PR symtab/23331:
10837 * dwarf2read.c (partial_die_info::read): Handle DW_AT_ranges.
10838
10839 2019-04-01 Sergio Durigan Junior <sergiodj@redhat.com>
10840 Pedro Alves <palves@redhat.com>
10841
10842 * top.c (quit_force): Call 'finalize_values'.
10843 * value.c (finalize_values): New function.
10844 * value.h (finalize_values): Declare.
10845
10846 2019-03-30 Eli Zaretskii <eliz@gnu.org>
10847
10848 * NEWS: Announce $_gdb_major and $_gdb_minor.
10849
10850 * top.c (init_gdb_version_vars): New function.
10851 (gdb_init): Call init_gdb_version_vars.
10852
10853 2019-03-29 Tom Tromey <tromey@adacore.com>
10854
10855 * printcmd.c (_initialize_printcmd): Add usage lines. Update some
10856 help text. Remove dead code.
10857
10858 2019-03-29 Keith Seitz <keiths@redhat.com>
10859
10860 From Siddhesh Poyarekar:
10861 * f-lang.h (f77_get_upperbound): Return LONGEST.
10862 (f77_get_lowerbound): Likewise.
10863 * f-typeprint.c (f_type_print_varspec_suffix): Expand
10864 UPPER_BOUND and LOWER_BOUND to LONGEST. Use plongest to format
10865 print them.
10866 (f_type_print_base): Expand UPPER_BOUND to LONGEST. Use
10867 plongest to format print it.
10868 * f-valprint.c (f77_get_lowerbound): Return LONGEST.
10869 (f77_get_upperbound): Likewise.
10870 (f77_get_dynamic_length_of_aggregate): Expand UPPER_BOUND,
10871 LOWER_BOUND to LONGEST.
10872 (f77_create_arrayprint_offset_tbl): Likewise.
10873
10874 2019-03-29 Keith Seitz <keiths@redhat.com>
10875
10876 * ada-lang.c (ada_template_to_fixed_record_type_1): Use
10877 %s/pulongest for TYPE_LENGTH instead of %d in format
10878 strings.
10879 * ada-typerint.c (ada_print_type): Likewise.
10880 * amd64-windows-tdep.c (amd64_windows_store_arg_in_reg): Likewise.
10881 * compile/compile-c-support.c (generate_register_struct): Likewise.
10882 * gdbtypes.c (recursive_dump_type): Likewise.
10883 * gdbtypes.h (struct type) <length>: Change type to ULONGEST.
10884 * m2-typeprint.c (m2_array): Use %s/pulongest for TYPE_LENGTH
10885 instead of %d in format strings.
10886 * riscv-tdep.c (riscv_type_alignment): Cast second argument
10887 to std::min to ULONGEST.
10888 * symmisc.c (print_symbol): Use %s/pulongest for TYPE_LENGTH
10889 instead of %d in format strings.
10890 * tracepoint.c (info_scope_command): Likewise.
10891 * typeprint.c (print_offset_data::update)
10892 (print_offset_data::finish): Likewise.
10893 * xtensa-tdep.c (xtensa_store_return_value)
10894 (xtensa_push_dummy_call): Likewise.
10895
10896 2019-03-28 Jon Turney <jon.turney@dronecode.org.uk>
10897
10898 * windows-nat.c (display_selector): Fixed format specifications
10899 for 64-bit Cygwin.
10900
10901 2019-03-28 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10902
10903 * infrun.c (follow_exec): Call target_terminal::ours_for_output.
10904
10905 2019-03-28 Sandra Loosemore <sandra@codesourcery.com>
10906
10907 * nios2-tdep.h (struct gdbarch_tdep): Add is_kernel_helper.
10908 * nios2-tdep.c (nios2_get_next_pc): Skip over kernel helpers.
10909 * nios2-linux-tdep.c (nios2_linux_is_kernel_helper): New.
10910 (nios2_linux_init_abi): Install it.
10911
10912 2019-03-28 Alan Hayward <alan.hayward@arm.com>
10913
10914 * aarch64-tdep.c (aarch64_vnv_type): Use vector types.
10915
10916 2019-03-28 Alan Hayward <alan.hayward@arm.com>
10917
10918 * features/aarch64-sve.c (create_feature_aarch64_sve): Add q view.
10919
10920 2019-03-24 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10921 Tom Tromey <tromey@adacore.com>
10922
10923 * minsyms.c (minimal_symbol_upper_bound): Fix buffer overflow.
10924
10925 2019-03-26 Joel Brobecker <brobecker@adacore.com>
10926
10927 * gdb-gdb.py.in (StructMainTypePrettyPrinter.bound_img): New method.
10928 (StructMainTypePrettyPrinter.bounds_img): Use new "bound_img"
10929 method to compute the bounds of range types. Also print "[evaluated]"
10930 if the bounds' values come from a dynamic evaluation.
10931
10932 2019-03-26 Andrew Burgess <andrew.burgess@embecosm.com>
10933
10934 * cp-valprint.c (cp_print_value_fields): Don't print trailing
10935 whitespace when pretty printing is on.
10936
10937 2019-03-26 Alan Hayward <alan.hayward@arm.com>
10938
10939 * ppc-linux-nat.c: Add include.
10940
10941 2019-03-26 Alan Hayward <alan.hayward@arm.com>
10942
10943 * NEWS: Mention AArch64 Pointer Authentication.
10944
10945 2019-03-26 Alan Hayward <alan.hayward@arm.com>
10946
10947 * arm-linux-nat.c: Add include.
10948
10949 2019-03-25 Simon Marchi <simon.marchi@polymtl.ca>
10950
10951 * source-cache.c (source_cache::get_source_lines): Re-read
10952 fullname after calling open_source_file.
10953
10954 2019-03-25 John Baldwin <jhb@FreeBSD.org>
10955
10956 * NEWS: Mention TLS support for FreeBSD.
10957
10958 2019-03-25 Tom Tromey <tromey@adacore.com>
10959
10960 * minsyms.c (BUNCH_SIZE): Update comment.
10961 (~minimal_symbol_reader): Remove old comment.
10962 (compact_minimal_symbols): Update comment.
10963 (minimal_symbol_reader::install): Remove old comment. Update
10964 other comments.
10965
10966 2019-03-25 Alan Hayward <alan.hayward@arm.com>
10967
10968 * s390-linux-nat.c: Add include.
10969
10970 2019-03-25 Alan Hayward <alan.hayward@arm.com>
10971
10972 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
10973 Call linux_get_hwcap.
10974 * aarch64-linux-tdep.c (aarch64_linux_core_read_description):
10975 Likewise.
10976 (aarch64_linux_get_hwcap): Remove function.
10977 * aarch64-linux-tdep.h (aarch64_linux_get_hwcap): Remove
10978 declaration.
10979 * arm-linux-nat.c (arm_linux_nat_target::read_description):Call
10980 linux_get_hwcap.
10981 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
10982 * linux-tdep.c (linux_get_hwcap): Add function.
10983 (linux_get_hwcap2): Likewise.
10984 * linux-tdep.h (linux_get_hwcap): Add declaration.
10985 (linux_get_hwcap2): Likewise.
10986 * ppc-linux-nat.c (ppc_linux_get_hwcap): Remove function.
10987 (ppc_linux_get_hwcap2): Likewise.
10988 (ppc_linux_nat_target::region_ok_for_hw_watchpoint): Call
10989 linux_get_hwcap.
10990 (ppc_linux_nat_target::insert_watchpoint): Likewise.
10991 (ppc_linux_nat_target::watchpoint_addr_within_range): Likewise.
10992 (ppc_linux_nat_target::read_description): Likewise.
10993 * ppc-linux-tdep.c (ppc_linux_core_read_description): Likewise.
10994 * s390-linux-nat.c: Likewise.
10995 * s390-linux-tdep.c (s390_core_read_description): Likewise.
10996
10997 2019-03-24 Tom Tromey <tom@tromey.com>
10998
10999 * ada-lang.c (standard_lookup): Simplify initialization.
11000 (ada_lookup_symbol_nonlocal): Simplify return.
11001 * solib-spu.c (spu_lookup_lib_symbol): Simplify return.
11002 * solib-darwin.c (darwin_lookup_lib_symbol): Simplify return.
11003 * solib-svr4.c (elf_lookup_lib_symbol): Simplify return.
11004 * rust-lang.c (rust_lookup_symbol_nonlocal): Simplify
11005 initialization.
11006 * solib.c (solib_global_lookup): Simplify.
11007 * symtab.c (null_block_symbol): Remove.
11008 (symbol_cache_lookup): Simplify returns.
11009 (lookup_language_this): Simplify returns.
11010 (lookup_symbol_aux): Simplify return.
11011 (lookup_local_symbol): Simplify returns.
11012 (lookup_global_symbol_from_objfile): Simplify return.
11013 (lookup_symbol_in_objfile_symtabs)
11014 (lookup_symbol_in_objfile_from_linkage_name): Simplify return.
11015 (lookup_symbol_via_quick_fns, lookup_symbol_in_static_block)
11016 (lookup_static_symbol, lookup_global_symbol): Simplify return.
11017 * cp-namespace.c (cp_lookup_bare_symbol)
11018 (cp_search_static_and_baseclasses, cp_lookup_symbol_via_imports)
11019 (cp_lookup_symbol_via_all_imports, cp_lookup_nested_symbol_1)
11020 (cp_lookup_nested_symbol): Don't use null_block_symbol.
11021 (cp_lookup_symbol_via_imports): Simplify initialization.
11022 (find_symbol_in_baseclass): Likewise.
11023 * symtab.h (null_block_symbol): Remove.
11024 * d-namespace.c (d_lookup_symbol): Don't use null_block_symbol.
11025 (d_lookup_nested_symbol, d_lookup_symbol_imports)
11026 (d_lookup_symbol_module): Likewise.
11027 (find_symbol_in_baseclass): Simplify initialization.
11028
11029 2019-03-24 Tom Tromey <tom@tromey.com>
11030
11031 * expression.h: Don't include symtab.h.
11032 (struct block): Forward declare.
11033
11034 2019-03-24 Tom Tromey <tom@tromey.com>
11035
11036 * c-exp.y (typebase): Remove casts.
11037 * gdbtypes.c (lookup_unsigned_typename, )
11038 (lookup_signed_typename): Remove cast.
11039 * eval.c (parse_to_comma_and_eval): Remove cast.
11040 * parse.c (write_dollar_variable): Remove cast.
11041 * block.h (struct block) <superblock>: Now const.
11042 * symfile-debug.c (debug_qf_map_matching_symbols): Update.
11043 * psymtab.c (psym_map_matching_symbols): Make "block" const.
11044 (map_block): Make "block" const.
11045 * symfile.h (struct quick_symbol_functions)
11046 <map_matching_symbols>: Constify block argument to "callback".
11047 * symtab.c (basic_lookup_transparent_type_quick): Make "block"
11048 const.
11049 (find_pc_sect_compunit_symtab): Make "b" const.
11050 (find_symbol_at_address): Likewise.
11051 (search_symbols): Likewise.
11052 * dwarf2read.c (dw2_lookup_symbol): Make "block" const.
11053 (dw2_debug_names_lookup_symbol): Likewise.
11054 (dw2_map_matching_symbols): Update.
11055 * p-valprint.c (pascal_val_print): Remove "block".
11056 * ada-lang.c (ada_add_global_exceptions): Make "b" const.
11057 (aux_add_nonlocal_symbols): Make "block" const.
11058 (resolve_subexp): Remove cast.
11059 * linespec.c (iterate_over_all_matching_symtabs): Make "block"
11060 const.
11061 (iterate_over_file_blocks): Likewise.
11062 * f-exp.y (%union) <bval>: Remove.
11063 * coffread.c (patch_opaque_types): Make "b" const.
11064 * spu-tdep.c (spu_catch_start): Make "block" const.
11065 * c-valprint.c (print_unpacked_pointer): Remove "block".
11066 * symmisc.c (dump_symtab_1): Make "b" const.
11067 (block_depth): Make "block" const.
11068 * d-exp.y (%union) <bval>: Remove.
11069 * cp-support.h (cp_lookup_rtti_type): Update.
11070 * cp-support.c (cp_lookup_rtti_type): Make "block" const.
11071 * psymtab.c (psym_lookup_symbol): Make "block" const.
11072 (maintenance_check_psymtabs): Make "b" const.
11073 * python/py-framefilter.c (extract_sym): Make "sym_block" const.
11074 (enumerate_locals, enumerate_args): Update.
11075 * python/py-symtab.c (stpy_global_block): Make "block" const.
11076 (stpy_static_block): Likewise.
11077 * inline-frame.c (block_starting_point_at): Make "new_block"
11078 const.
11079 * block.c (find_block_in_blockvector): Make return type const.
11080 (blockvector_for_pc_sect): Make "b" const.
11081 (find_block_in_blockvector): Make "b" const.
11082
11083 2019-03-23 Tom Tromey <tom@tromey.com>
11084
11085 * varobj.c (varobj_create): Update.
11086 * symfile.c (clear_symtab_users): Don't reset innermost_block.
11087 * printcmd.c (display_command, do_one_display): Don't reset
11088 innermost_block.
11089 * parser-defs.h (enum innermost_block_tracker_type): Move to
11090 expression.h.
11091 (innermost_block): Update comment.
11092 * parse.c (parse_exp_1): Add tracker_types parameter.
11093 (parse_exp_in_context): Rename from parse_exp_in_context_1. Add
11094 tracker_types parameter. Reset innermost_block.
11095 (parse_exp_in_context): Remove.
11096 (parse_expression_for_completion): Update.
11097 * objfiles.c (~objfile): Don't reset expression_context_block or
11098 innermost_block.
11099 * expression.h (enum innermost_block_tracker_type): Move from
11100 parser-defs.h.
11101 (parse_exp_1): Add tracker_types parameter.
11102 * breakpoint.c (set_breakpoint_condition, watch_command_1): Don't
11103 reset innermost_block.
11104
11105 2019-03-23 Tom Tromey <tom@tromey.com>
11106
11107 * objfiles.h: Include bcache.h.
11108
11109 2019-03-23 Tom Tromey <tom@tromey.com>
11110
11111 * linespec.c (get_current_search_block): Use
11112 scoped_restore_current_language.
11113 * symmisc.c (dump_symtab): Use scoped_restore_current_language.
11114
11115 2019-03-22 Alan Hayward <alan.hayward@arm.com>
11116 Jiong Wang <jiong.wang@arm.com>
11117
11118 * aarch64-linux-tdep.c
11119 (aarch64_linux_iterate_over_regset_sections): Check for pauth
11120 section.
11121 * aarch64-linux-tdep.h (AARCH64_LINUX_SIZEOF_PAUTH): New define.
11122
11123 2019-03-22 Alan Hayward <alan.hayward@arm.com>
11124 Jiong Wang <jiong.wang@arm.com>
11125
11126 * aarch64-tdep.c (aarch64_analyze_prologue): Check for pauth
11127 instructions.
11128 (aarch64_analyze_prologue_test): Add PACIASP test.
11129 (aarch64_prologue_prev_register): Unmask PC value.
11130
11131 2019-03-22 Alan Hayward <alan.hayward@arm.com>
11132 Jiong Wang <jiong.wang@arm.com>
11133
11134 * aarch64-tdep.c (aarch64_frame_unmask_address): New function.
11135 (aarch64_dwarf2_prev_register): Unmask PC value.
11136 (aarch64_dwarf2_frame_init_reg): Init pauth registers.
11137 (aarch64_execute_dwarf_cfa_vendor_op): Check for
11138 DW_CFA_AARCH64_negate_ra_state.
11139 (aarch64_gdbarch_init): Add aarch64_execute_dwarf_cfa_vendor_op.
11140
11141 2019-03-22 Alan Hayward <alan.hayward@arm.com>
11142 Jiong Wang <jiong.wang@arm.com>
11143
11144 * aarch64-tdep.c (aarch64_dwarf_reg_to_regnum): Check for pauth
11145 registers.
11146 (aarch64_pseudo_register_name): Likewise.
11147 (aarch64_pseudo_register_type): Likewise.
11148 (aarch64_pseudo_register_reggroup_p): Likewise.
11149 (aarch64_gdbarch_init): Add pauth registers.
11150 * aarch64-tdep.h (AARCH64_DWARF_PAUTH_RA_STATE): New define.
11151 (AARCH64_DWARF_PAUTH_DMASK): Likewise.
11152 (AARCH64_DWARF_PAUTH_CMASK): Likewise.
11153 (struct gdbarch_tdep): Add regnum for ra_state.
11154
11155 2019-03-22 Alan Hayward <alan.hayward@arm.com>
11156 Jiong Wang <jiong.wang@arm.com>
11157
11158 * arch/aarch64.h (AARCH64_PAUTH_REGS_SIZE): New define.
11159
11160 2019-03-22 Alan Hayward <alan.hayward@arm.com>
11161 Jiong Wang <jiong.wang@arm.com>
11162
11163 * aarch64-linux-nat.c (fetch_pauth_masks_from_thread): New
11164 function.
11165 (aarch64_linux_nat_target::fetch_registers): Read pauth registers.
11166 * aarch64-tdep.c (aarch64_cannot_store_register): New function.
11167 (aarch64_gdbarch_init): Add puth registers.
11168 * aarch64-tdep.h (struct gdbarch_tdep): Add pauth features.
11169 * arch/aarch64.h (AARCH64_PAUTH_DMASK_REGNUM): New define.
11170 (AARCH64_PAUTH_CMASK_REGNUM): Likewise.
11171
11172 2019-03-22 Alan Hayward <alan.hayward@arm.com>
11173 Jiong Wang <jiong.wang@arm.com>
11174
11175 * aarch64-linux-nat.c
11176 (aarch64_linux_nat_target::read_description): Read PACA hwcap.
11177 * aarch64-linux-tdep.c
11178 (aarch64_linux_core_read_description): Likewise.
11179 (aarch64_linux_get_hwcap): New function.
11180 * aarch64-linux-tdep.h (AARCH64_HWCAP_PACA): New define.
11181 (aarch64_linux_get_hwcap): New declaration.
11182
11183 2019-03-22 Alan Hayward <alan.hayward@arm.com>
11184 Jiong Wang <jiong.wang@arm.com>
11185
11186 * aarch64-linux-nat.c
11187 (aarch64_linux_nat_target::read_description): Add pauth param.
11188 * aarch64-linux-tdep.c
11189 (aarch64_linux_core_read_description): Likewise.
11190 * aarch64-tdep.c (struct target_desc): Add in pauth.
11191 (aarch64_read_description): Add pauth param.
11192 (aarch64_gdbarch_init): Likewise.
11193 * aarch64-tdep.h (aarch64_read_description): Likewise.
11194 * arch/aarch64.c (aarch64_create_target_description): Likewise.
11195 * arch/aarch64.h (aarch64_create_target_description): Likewise.
11196 * features/Makefile: Add new files.
11197 * features/aarch64-pauth.c: New file.
11198 * features/aarch64-pauth.xml: New file.
11199
11200 2019-03-20 Tom Tromey <tromey@adacore.com>
11201
11202 * infrun.c (handle_inferior_event): Rename from
11203 handle_inferior_event_1. Create a scoped_value_mark.
11204 (handle_inferior_event): Remove.
11205
11206 2019-03-19 Tom Tromey <tromey@adacore.com>
11207
11208 * mi/mi-interp.c (mi_on_normal_stop_1): Only show displays once.
11209 * infrun.h (print_stop_event): Add "displays" parameter.
11210 * infrun.c (print_stop_event): Add "displays" parameter.
11211
11212 2019-03-19 Pedro Alves <palves@redhat.com>
11213
11214 * tui/tui-out.c (tui_ui_out::do_field_string): Simplify.
11215 (tui_ui_out::do_text): Add comments. Reset M_LINE to 0 instead of
11216 to -1. Fix TABs vs spaces.
11217 (tui_ui_out::tui_ui_out): Don't initialize fields here.
11218 * tui/tui-out.h (tui_ui_out) Add intro comments.
11219 <m_line, m_start_of_line>: In-class initialize, and add describing
11220 comment.
11221
11222 2019-03-18 Alan Hayward <alan.hayward@arm.com>
11223
11224 * arm-linux-nat.c (arm_linux_insert_hw_breakpoint1): Fix
11225 variable names.
11226 (arm_linux_remove_hw_breakpoint1): Use a gdb::function_view.
11227
11228 2019-03-18 Pedro Alves <palves@redhat.com>
11229 Eli Zaretskii <eliz@gnu.org>
11230
11231 * tui/tui-out.c (tui_ui_out::tui_ui_out): Fix initialization of
11232 m_line and m_start_of_line.
11233
11234 2019-03-18 Eli Zaretskii <eliz@gnu.org>
11235
11236 * tui/tui-io.c (gdb_wgetch): Don't echo CR.
11237 (tui_getc): When gdb_wgetch returns a CR, behave the same as when
11238 it returns a newline. This fixes a regression in TU mode, whereby
11239 the next line is output on the same screen line as the user input.
11240
11241 2019-03-18 Tom Tromey <tromey@adacore.com>
11242
11243 * minsyms.c (minimal_symbol_reader::install): Remove call to
11244 obstack_blank.
11245
11246 2019-03-18 Pedro Alves <palves@redhat.com>
11247
11248 * tui/tui-io.c (reverse_mode_p, reverse_save_bg, reverse_save_fg):
11249 New globals.
11250 (apply_style): New, factored out from ...
11251 (apply_ansi_escape): ... this. Handle reverse video mode.
11252 (tui_set_reverse_mode): New function.
11253 * tui/tui-io.h (tui_set_reverse_mode): New declaration.
11254 * tui/tui-winsource.c (tui_show_source_line): Use
11255 tui_set_reverse_mode instead of setting A_STANDOUT.
11256 * ui-style.h (struct ui_file_style) <set_reverse, set_fg, set_bg>:
11257 New setter methods.
11258
11259 2019-03-18 Hannes Domani <ssbssa@yahoo.de>
11260
11261 * tui/tui-source.c (copy_source_line): Fix handling of 'column'.
11262 Handle tabs.
11263
11264 2019-03-18 Tom Tromey <tromey@adacore.com>
11265
11266 * ada-lang.c (empty_array): Add "high" parameter.
11267 (ada_evaluate_subexp): Update.
11268
11269 2019-03-17 Sergei Trofimovich <siarheit@google.com>
11270
11271 * unittests/string_view-selftests.c: Define
11272 _initialize_string_view_selftests unconditionally.
11273
11274 2019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
11275
11276 PR gdb/24350
11277 * windows-nat.c (windows_make_so): Remove unused text_vma variable.
11278
11279 2019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
11280
11281 PR gdb/24351
11282 * windows-nat.c (display_selector): Fix format specifiers.
11283
11284 2019-03-17 Eli Zaretskii <eliz@gnu.org>
11285
11286 * tui/tui-winsource.c (tui_set_is_exec_point_at): Call
11287 tui_refill_source_window instead of tui_refresh_win, to update the
11288 current execution line. This fixes redisplay of the current line
11289 when stepping through the code with "next" or "step".
11290
11291 2019-03-16 Eli Zaretskii <eliz@gnu.org>
11292
11293 * source-cache.c (source_cache::get_source_lines): Call
11294 find_source_lines to initialize s->nlines. This fixes vertical
11295 scrolling of TUI source window when the DOWN arrow is pressed.
11296
11297 2019-03-16 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11298
11299 * auto-load.c (_initialize_auto_load): Fix 'This options has'.
11300 linux-thread-db.c (_initialize_thread_db): Likewise.
11301
11302 2019-03-16 Eli Zaretskii <eliz@gnu.org>
11303
11304 * tui/tui-winsource.c (tui_show_source_line): Revert "Use
11305 wclrtoeol in tui_show_source_line". This reverts changes made in
11306 commit 4a3045920bbe4e50a0f4920b0fdc4e88ef23015c.
11307
11308 2019-03-15 Tom Tromey <tom@tromey.com>
11309
11310 * symtab.h (struct minimal_symbol): Derive from
11311 general_symbol_info.
11312 (MSYMBOL_VALUE, MSYMBOL_VALUE_RAW_ADDRESS)
11313 (MSYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_BYTES)
11314 (MSYMBOL_BLOCK_VALUE, MSYMBOL_VALUE_CHAIN, MSYMBOL_LANGUAGE)
11315 (MSYMBOL_SECTION, MSYMBOL_OBJ_SECTION, MSYMBOL_NATURAL_NAME)
11316 (MSYMBOL_LINKAGE_NAME, MSYMBOL_DEMANGLED_NAME)
11317 (MSYMBOL_SEARCH_NAME): Update.
11318 (MSYMBOL_SET_LANGUAGE, MSYMBOL_SET_NAMES): Remove.
11319 * solib.c (gdb_bfd_lookup_symbol_from_symtab): Don't use memset.
11320 * minsyms.c (minimal_symbol_reader::record_full): Update.
11321
11322 2019-03-15 Tom Tromey <tom@tromey.com>
11323
11324 * minsyms.c (minimal_symbol_reader::install): Use memcpy.
11325
11326 2019-03-15 Tom Tromey <tom@tromey.com>
11327
11328 * objfiles.h (struct objfile_per_bfd_storage) <msymbols>: Now a
11329 unique_xmalloc_ptr.
11330 (objfile::msymbols_range::begin, objfile::msymbols_range::end):
11331 Update.
11332 * minsyms.c (lookup_minimal_symbol_by_pc_section)
11333 (build_minimal_symbol_hash_tables)
11334 (minimal_symbol_reader::install): Update.
11335
11336 2019-03-15 Tom Tromey <tom@tromey.com>
11337
11338 * symtab.c (create_demangled_names_hash): Update.
11339 (symbol_set_names): Update.
11340 * objfiles.h (struct objfile_per_bfd_storage)
11341 <demangled_names_hash>: Now an htab_up.
11342 * objfiles.c (objfile_per_bfd_storage): Simplify.
11343
11344 2019-03-15 Tom Tromey <tom@tromey.com>
11345
11346 * objfiles.h (struct objfile_per_bfd_storage): Declare
11347 destructor.
11348 * objfiles.c (objfile_per_bfd_storage::~objfile_per_bfd_storage):
11349 New.
11350 (get_objfile_bfd_data): Use new. Don't initialize
11351 language_of_main.
11352 (free_objfile_per_bfd_storage): Remove.
11353 (objfile_bfd_data_free, objfile::~objfile): Use delete.
11354
11355 2019-03-15 Tom Tromey <tom@tromey.com>
11356
11357 * symfile.c (reread_symbols): Update.
11358 * objfiles.c (objfile::objfile): Update.
11359 * minsyms.h (terminate_minimal_symbol_table): Don't declare.
11360 * minsyms.c (lookup_minimal_symbol_by_pc_section): Update
11361 comment.
11362 (minimal_symbol_reader::install): Update.
11363 (terminate_minimal_symbol_table): Remove.
11364 * jit.c (jit_object_close_impl): Update.
11365
11366 2019-03-15 Tom Tromey <tom@tromey.com>
11367
11368 * minsyms.c (minimal_symbol_reader::record_full): Remove some
11369 initializations.
11370
11371 2019-03-15 Tom Tromey <tom@tromey.com>
11372
11373 * objfiles.h (struct objfile_per_bfd_storage)
11374 <demangled_hash_languages>: Now a bitset.
11375 * minsyms.c (add_minsym_to_demangled_hash_table): Update.
11376 (lookup_minimal_symbol): Update.
11377
11378 2019-03-15 Tom Tromey <tom@tromey.com>
11379
11380 * minsyms.h (class minimal_symbol_reader) <record_with_info>:
11381 Don't return the symbol.
11382 * coffread.c (record_minimal_symbol): Use record_full.
11383
11384 2019-03-14 Eli Zaretskii <eliz@gnu.org>
11385
11386 The MS-Windows port of ncurses fails to switch to a color pair if
11387 one or both of the colors are the implicit default colors. This
11388 change records the default colors when TUI is initialized, and
11389 then specifies them explicitly when a color pair uses the default
11390 colors. This allows color styling in TUI mode on MS-Windows.
11391
11392 * tui/tui-io.c [__MINGW32__]: Include windows.h. Declare
11393 ncurses_norm_attr.
11394 (tui_initialize_io) [__MINGW32__]: Record the default terminal
11395 colors in ncurses_norm_attr.
11396 (apply_ansi_escape) [__MINGW32__]: If a color in a color pair is
11397 "none", replace it with the default color recorded in
11398 ncurses_norm_attr.
11399
11400 2019-03-14 Tom Tromey <tromey@adacore.com>
11401
11402 * source-cache.h (class source_cache) <get_source_lines>: Return
11403 std::string.
11404 * source-cache.c (source_cache::extract_lines): Handle case where
11405 first_pos==npos. Return std::string.
11406 (source_cache::get_source_lines): Update.
11407
11408 2019-03-14 Tom Tromey <tromey@adacore.com>
11409
11410 * NEWS: Add item for "style sources" commands.
11411 * source-cache.c (source_cache::get_source_lines): Check
11412 source_styling.
11413 * cli/cli-style.c (source_styling): New global.
11414 (_initialize_cli_style): Add "style sources" commands.
11415 (show_style_sources): New function.
11416 * cli/cli-style.h (source_styling): Declare.
11417
11418 2019-03-14 Pedro Alves <palves@redhat.com>
11419 Tom Tromey <tromey@adacore.com>
11420
11421 * tui/tui-winsource.h (tui_refill_source_window): Declare.
11422 * tui/tui-winsource.c (tui_refill_source_window): New function,
11423 from...
11424 (tui_horizontal_source_scroll): ... here. Move some logic.
11425 * cli/cli-style.c (set_style_enabled): Notify new observable.
11426 * tui/tui-hooks.c (tui_redisplay_source): New function.
11427 (tui_attach_detach_observers): Attach or detach
11428 tui_redisplay_source.
11429 * observable.h (source_styling_changed): New observable.
11430 * observable.c: Define source_styling_changed observable.
11431
11432 2019-03-13 Tom Tromey <tromey@adacore.com>
11433
11434 * i386-gnu-nat.c (i386_gnu_nat_target::fetch_registers)
11435 (i386_gnu_nat_target::store_registers): Update.
11436 * target-debug.h (target_debug_print_std_string): New macro.
11437 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
11438 * windows-tdep.c (display_one_tib): Update.
11439 * tui/tui-stack.c (tui_make_status_line): Update.
11440 * top.c (print_inferior_quit_action): Update.
11441 * thread.c (thr_try_catch_cmd): Update.
11442 (add_thread_with_info): Update.
11443 (thread_target_id_str): Update.
11444 (thr_try_catch_cmd): Update.
11445 (thread_command): Update.
11446 (thread_find_command): Update.
11447 * record-btrace.c (record_btrace_target::info_record)
11448 (record_btrace_resume_thread, record_btrace_target::resume)
11449 (record_btrace_cancel_resume, record_btrace_step_thread)
11450 (record_btrace_target::wait, record_btrace_target::wait)
11451 (record_btrace_target::wait, record_btrace_target::stop): Update.
11452 * progspace.c (print_program_space): Update.
11453 * process-stratum-target.c
11454 (process_stratum_target::thread_address_space): Update.
11455 * linux-fork.c (linux_fork_mourn_inferior)
11456 (detach_checkpoint_command, info_checkpoints_command)
11457 (linux_fork_context): Update.
11458 (linux_fork_detach): Update.
11459 (class scoped_switch_fork_info): Update.
11460 (delete_checkpoint_command): Update.
11461 * infrun.c (follow_fork_inferior): Update.
11462 (follow_fork_inferior): Update.
11463 (proceed_after_vfork_done): Update.
11464 (handle_vfork_child_exec_or_exit): Update.
11465 (follow_exec): Update.
11466 (displaced_step_prepare_throw): Update.
11467 (displaced_step_restore): Update.
11468 (start_step_over): Update.
11469 (resume_1): Update.
11470 (clear_proceed_status_thread): Update.
11471 (proceed): Update.
11472 (print_target_wait_results): Update.
11473 (do_target_wait): Update.
11474 (context_switch): Update.
11475 (stop_all_threads): Update.
11476 (restart_threads): Update.
11477 (finish_step_over): Update.
11478 (handle_signal_stop): Update.
11479 (switch_back_to_stepped_thread): Update.
11480 (keep_going_pass_signal): Update.
11481 (print_exited_reason): Update.
11482 (normal_stop): Update.
11483 * inferior.c (inferior_pid_to_str): Change return type.
11484 (print_selected_inferior): Update.
11485 (add_inferior): Update.
11486 (detach_inferior): Update.
11487 * dummy-frame.c (fprint_dummy_frames): Update.
11488 * dcache.c (dcache_info_1): Update.
11489 * btrace.c (btrace_enable, btrace_disable, btrace_teardown)
11490 (btrace_fetch, btrace_clear): Update.
11491 * linux-tdep.c (linux_core_pid_to_str): Change return type.
11492 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): Change return
11493 type.
11494 * fbsd-tdep.c (fbsd_core_pid_to_str): Change return type.
11495 * sol2-tdep.h (sol2_core_pid_to_str): Change return type.
11496 * sol2-tdep.c (sol2_core_pid_to_str): Change return type.
11497 * gdbarch.c, gdbarch.h: Rebuild.
11498 * gdbarch.sh (core_pid_to_str): Change return type.
11499 * windows-nat.c (struct windows_nat_target) <pid_to_str>: Change
11500 return type.
11501 (windows_nat_target::pid_to_str): Change return type.
11502 (windows_delete_thread): Update.
11503 (windows_nat_target::attach): Update.
11504 (windows_nat_target::files_info): Update.
11505 * target-delegates.c: Rebuild.
11506 * sol-thread.c (class sol_thread_target) <pid_to_str>: Change
11507 return type.
11508 (sol_thread_target::pid_to_str): Change return type.
11509 * remote.c (class remote_target) <pid_to_str>: Change return
11510 type.
11511 (remote_target::pid_to_str): Change return type.
11512 (extended_remote_target::attach, remote_target::remote_stop_ns)
11513 (remote_target::remote_notif_remove_queued_reply)
11514 (remote_target::push_stop_reply, remote_target::disable_btrace):
11515 Update.
11516 (extended_remote_target::attach): Update.
11517 * remote-sim.c (struct gdbsim_target) <pid_to_str>: Change return
11518 type.
11519 (gdbsim_target::pid_to_str): Change return type.
11520 * ravenscar-thread.c (struct ravenscar_thread_target)
11521 <pid_to_str>: Change return type.
11522 (ravenscar_thread_target::pid_to_str): Change return type.
11523 * procfs.c (class procfs_target) <pid_to_str>: Change return
11524 type.
11525 (procfs_target::pid_to_str): Change return type.
11526 (procfs_target::attach): Update.
11527 (procfs_target::detach): Update.
11528 (procfs_target::fetch_registers): Update.
11529 (procfs_target::store_registers): Update.
11530 (procfs_target::wait): Update.
11531 (procfs_target::files_info): Update.
11532 * obsd-nat.c (obsd_nat_target::pid_to_str): Change return type.
11533 * nto-procfs.c (struct nto_procfs_target) <pid_to_str>: Change
11534 return type.
11535 (nto_procfs_target::pid_to_str): Change return type.
11536 (nto_procfs_target::files_info, nto_procfs_target::attach): Update.
11537 * linux-thread-db.c (class thread_db_target) <pid_to_str>: Change
11538 return type.
11539 * linux-nat.c (linux_nat_target::pid_to_str): Change return type.
11540 (exit_lwp): Update.
11541 (attach_proc_task_lwp_callback, get_detach_signal)
11542 (detach_one_lwp, resume_lwp, linux_nat_target::resume)
11543 (linux_nat_target::resume, wait_lwp, stop_callback)
11544 (maybe_clear_ignore_sigint, stop_wait_callback, status_callback)
11545 (save_stop_reason, select_event_lwp, linux_nat_filter_event)
11546 (linux_nat_wait_1, resume_stopped_resumed_lwps)
11547 (linux_nat_target::wait, linux_nat_stop_lwp): Update.
11548 * inf-ptrace.c (inf_ptrace_target::pid_to_str): Change return
11549 type.
11550 (inf_ptrace_target::attach): Update.
11551 (inf_ptrace_target::files_info): Update.
11552 * go32-nat.c (struct go32_nat_target) <pid_to_str>: Change return
11553 type.
11554 (go32_nat_target::pid_to_str): Change return type.
11555 * gnu-nat.c (gnu_nat_target::pid_to_str): Change return type.
11556 (gnu_nat_target::wait): Update.
11557 (gnu_nat_target::wait): Update.
11558 (gnu_nat_target::resume): Update.
11559 * fbsd-nat.c (fbsd_nat_target::pid_to_str): Change return type.
11560 (fbsd_nat_target::wait): Update.
11561 * darwin-nat.c (darwin_nat_target::pid_to_str): Change return
11562 type.
11563 (darwin_nat_target::attach): Update.
11564 * corelow.c (class core_target) <pid_to_str>: Change return type.
11565 (core_target::pid_to_str): Change return type.
11566 * target.c (normal_pid_to_str): Change return type.
11567 (default_pid_to_str): Likewise.
11568 (target_pid_to_str): Change return type.
11569 (target_translate_tls_address): Update.
11570 (target_announce_detach): Update.
11571 * bsd-uthread.c (struct bsd_uthread_target) <pid_to_str>: Change
11572 return type.
11573 (bsd_uthread_target::pid_to_str): Change return type.
11574 * bsd-kvm.c (class bsd_kvm_target) <pid_to_str>: Change return
11575 type.
11576 (bsd_kvm_target::pid_to_str): Change return type.
11577 * aix-thread.c (class aix_thread_target) <pid_to_str>: Change
11578 return type.
11579 (aix_thread_target::pid_to_str): Change return type.
11580 * target.h (struct target_ops) <pid_to_str>: Change return type.
11581 (target_pid_to_str, normal_pid_to_str): Likewise.
11582 * obsd-nat.h (class obsd_nat_target) <pid_to_str>: Change return
11583 type.
11584 * linux-nat.h (class linux_nat_target) <pid_to_str>: Change return
11585 type.
11586 * inf-ptrace.h (struct inf_ptrace_target) <pid_to_str>: Change
11587 return type.
11588 * gnu-nat.h (struct gnu_nat_target) <pid_to_str>: Change return
11589 type.
11590 * fbsd-nat.h (class fbsd_nat_target) <pid_to_str>: Change return
11591 type.
11592 * darwin-nat.h (class darwin_nat_target) <pid_to_str>: Change
11593 return type.
11594
11595 2019-03-13 Simon Marchi <simon.marchi@ericsson.com>
11596
11597 * NEWS: Mention that the new default MI version is 3. Mention
11598 changes to the output of commands and events that deal with
11599 multi-location breakpoints.
11600 * breakpoint.c: Include "mi/mi-out.h".
11601 (print_one_breakpoint): Change output syntax if using MI version
11602 >= 3.
11603 * mi/mi-main.h (mi_cmd_fix_multi_location_breakpoint_output):
11604 New.
11605 (mi_multi_location_breakpoint_output_fixed): New.
11606 * mi/mi-main.c (fix_multi_location_breakpoint_output): New.
11607 (mi_cmd_fix_multi_location_breakpoint_output): New.
11608 (mi_multi_location_breakpoint_output_fixed): New.
11609 * mi/mi-cmds.c (mi_cmds): Register command
11610 -fix-multi-location-breakpoint-output.
11611 * mi/mi-out.c (mi_out_new): Instantiate version 3 when using
11612 interpreter "mi".
11613
11614 2019-03-13 Simon Marchi <simon.marchi@polymtl.ca>
11615
11616 * mi/mi-out.h (mi_out_new): Change parameter to const char *.
11617 * mi/mi-out.c (mi_out_new): Change parameter to const char *,
11618 instantiate mi_ui_out based on interpreter name.
11619 * mi/mi-interp.c (mi_interp::init): Use the new mi_out_new.
11620 * mi/mi-main.c (mi_load_progress): Likewise.
11621
11622 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11623
11624 * NEWS: Combine separate "New targets" sections for 8.3.
11625
11626 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11627
11628 * ppc-fbsd-tdep.c (ppcfbsd_get_thread_local_address): New.
11629 (ppcfbsd_init_abi): Install gdbarch
11630 "fetch_tls_load_module_address" and "get_thread_local_address"
11631 methods.
11632
11633 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11634
11635 * riscv-fbsd-tdep.c (riscv_fbsd_get_thread_local_address): New.
11636 (riscv_fbsd_init_abi): Install gdbarch
11637 "fetch_tls_load_module_address" and "get_thread_local_address"
11638 methods.
11639
11640 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11641
11642 * i386-fbsd-tdep.c (i386fbsd_get_thread_local_address): New.
11643 (i386fbsd_init_abi): Install gdbarch
11644 "fetch_tls_load_module_address" and "get_thread_local_address"
11645 methods.
11646
11647 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11648
11649 * amd64-fbsd-tdep.c (amd64fbsd_get_thread_local_address): New.
11650 (amd64fbsd_init_abi): Install gdbarch
11651 "fetch_tls_load_module_address" and "get_thread_local_address"
11652 methods.
11653
11654 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11655
11656 * fbsd-tdep.c (fbsd_pspace_data_handle): New variable.
11657 (struct fbsd_pspace_data): New type.
11658 (get_fbsd_pspace_data, fbsd_pspace_data_cleanup)
11659 (fbsd_read_integer_by_name, fbsd_fetch_rtld_offsets)
11660 (fbsd_get_tls_index, fbsd_get_thread_local_address): New function.
11661 (_initialize_fbsd_tdep): Initialize 'fbsd_pspace_data_handle'.
11662 * fbsd-tdep.c (fbsd_get_thread_local_address): New prototype.
11663
11664 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11665
11666 * gdbtypes.c (lookup_struct_elt): New function.
11667 (lookup_struct_elt_type): Reimplement via lookup_struct_elt.
11668 * gdbtypes.h (struct struct_elt): New type.
11669 (lookup_struct_elt): New prototype.
11670
11671 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11672
11673 * gdbtypes.c (lookup_struct_elt_type): Update comment and
11674 remove disabled code block.
11675
11676 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11677
11678 * gdbarch.sh (get_thread_local_address): New method.
11679 * gdbarch.h, gdbarch.c: Regenerate.
11680 * target.c (target_translate_tls_address): Use
11681 gdbarch_get_thread_local_address if present instead of
11682 target::get_thread_local_address.
11683
11684 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11685
11686 * target.h (target::get_thread_local_address): Update comment.
11687
11688 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11689
11690 * solib-svr4.c (svr4_fetch_objfile_link_map): Look for
11691 objfile->separate_debug_objfile_backlink if not NULL.
11692
11693 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11694
11695 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
11696 tdep->fsbase_regnum instead of constants for fs_base and gs_base.
11697 (amd64bsd_store_inferior_registers): Likewise.
11698 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
11699 Enable segment base registers.
11700 * i386-bsd-nat.c (i386bsd_fetch_inferior_registers): Use
11701 PT_GETFSBASE and PT_GETGSBASE.
11702 (i386bsd_store_inferior_registers): Use PT_SETFSBASE and
11703 PT_SETGSBASE.
11704 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Enable
11705 segment base registers.
11706 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
11707
11708 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11709
11710 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
11711 Update calls to i386_target_description to add 'segments'
11712 parameter.
11713 * amd64-tdep.c (amd64_init_abi): Set tdep->fsbase_regnum. Don't
11714 add segment base registers.
11715 * arch/i386.c (i386_create_target_description): Add 'segments'
11716 parameter to enable segment base registers.
11717 * arch/i386.h (i386_create_target_description): Likewise.
11718 * features/i386/32bit-segments.xml: New file.
11719 * features/i386/32bit-segments.c: Generate.
11720 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Update
11721 call to i386_target_description to add 'segments' parameter.
11722 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
11723 * i386-go32-tdep.c (i386_go32_init_abi): Likewise.
11724 * i386-linux-tdep.c (i386_linux_read_description): Likewise.
11725 * i386-tdep.c (i386_validate_tdesc_p): Add segment base registers
11726 if feature is present.
11727 (i386_gdbarch_init): Pass I386_NUM_REGS to set_gdbarch_num_regs.
11728 Add 'segments' parameter to call to i386_target_description.
11729 (i386_target_description): Add 'segments' parameter to enable
11730 segment base registers.
11731 (_initialize_i386_tdep) [GDB_SELF_TEST]: Add 'segments' parameter
11732 to call to i386_target_description.
11733 * i386-tdep.h (struct gdbarch_tdep): Add 'fsbase_regnum'.
11734 (enum i386_regnum): Add I386_FSBASE_REGNUM and I386_GSBASE_REGNUM.
11735 Define I386_NUM_REGS.
11736 (i386_target_description): Add 'segments' parameter to enable
11737 segment base registers.
11738
11739 2019-03-12 Eli Zaretskii <eliz@gnu.org>
11740
11741 PR/24325
11742 * source-cache.c: #undef open and close, to avoid unresolved
11743 externals during linking.
11744
11745 2019-03-12 Tom Tromey <tromey@adacore.com>
11746
11747 * remote.c (magic_null_ptid, not_sent_ptid, any_thread_ptid): Now
11748 const. Add initializers.
11749 (_initialize_remote): Don't initialize ptid globals.
11750
11751 2019-03-12 Pedro Alves <palves@redhat.com>
11752
11753 * yy-remap.h [TEST_CPNAMES] (YYFPRINTF): Don't define.
11754
11755 2019-03-12 Pedro Alves <palves@redhat.com>
11756
11757 * cp-name-parser.y (main): Remove unused 'len' variable.
11758
11759 2019-03-12 Tom Tromey <tromey@adacore.com>
11760
11761 * common/ptid.c (null_ptid, minus_one_ptid): Now const.
11762 * common/ptid.h (null_ptid, minus_one_ptid): Now const.
11763
11764 2019-03-12 Tom Tromey <tromey@adacore.com>
11765
11766 * linux-nat.c (iterate_over_lwps): Update.
11767 (stop_callback): Remove parameter.
11768 (stop_wait_callback, detach_callback, resume_set_callback)
11769 (select_singlestep_lwp_callback, set_ignore_sigint)
11770 (status_callback, resumed_callback, resume_clear_callback)
11771 (kill_callback, kill_wait_callback, linux_nat_stop_lwp): Remove
11772 data parameter.
11773 (linux_nat_target::detach, linux_nat_target::resume)
11774 (linux_stop_and_wait_all_lwps, select_event_lwp)
11775 (linux_nat_filter_event, linux_nat_wait_1)
11776 (linux_nat_target::kill, linux_nat_target::stop)
11777 (linux_nat_target::stop): Update.
11778 (linux_nat_resume_callback): Change type.
11779 (resume_stopped_resumed_lwps, count_events_callback)
11780 (select_event_lwp_callback): Likewise.
11781 (linux_stop_lwp, linux_nat_stop_lwp): Update.
11782 * arm-linux-nat.c (struct update_registers_data): Remove.
11783 (update_registers_callback): Change type.
11784 (arm_linux_insert_hw_breakpoint1): Update.
11785 * nat/x86-linux-dregs.c (update_debug_registers_callback): Remove
11786 parameter.
11787 (x86_linux_dr_set_addr): Update.
11788 (x86_linux_dr_set_control): Update.
11789 * nat/linux-nat.h (iterate_over_lwps_ftype): Remove parameter.
11790 (iterate_over_lwps): Use gdb::function_view.
11791 * nat/aarch64-linux-hw-point.c (struct
11792 aarch64_dr_update_callback_param): Remove.
11793 (debug_reg_change_callback): Change type.
11794 (aarch64_notify_debug_reg_change): Update.
11795 * s390-linux-nat.c (s390_refresh_per_info): Update.
11796
11797 2019-03-11 Tom Tromey <tromey@adacore.com>
11798
11799 * dwarf2read.c (dwarf2_find_containing_comp_unit): Remove
11800 redundant assignment to "this_cu".
11801
11802 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11803
11804 * gdbtypes.c (rank_one_type): Remove unnecessary cases from switch.
11805
11806 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11807
11808 * gdbtypes.c (rank_one_type_parm_set): New function extracted
11809 from...
11810 (rank_one_type): ... this.
11811
11812 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11813
11814 * gdbtypes.c (rank_one_type_parm_struct): New function extracted
11815 from...
11816 (rank_one_type): ... this.
11817
11818 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11819
11820 * gdbtypes.c (rank_one_type_parm_complex): New function extracted
11821 from...
11822 (rank_one_type): ... this.
11823
11824 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11825
11826 * gdbtypes.c (rank_one_type_parm_float): New function extracted
11827 from...
11828 (rank_one_type): ... this.
11829
11830 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11831
11832 * gdbtypes.c (rank_one_type_parm_bool): New function extracted
11833 from...
11834 (rank_one_type): ... this.
11835
11836 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11837
11838 * gdbtypes.c (rank_one_type_parm_range): New function extracted
11839 from...
11840 (rank_one_type): ... this.
11841
11842 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11843
11844 * gdbtypes.c (rank_one_type_parm_char): New function extracted
11845 from...
11846 (rank_one_type): ... this.
11847
11848 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11849
11850 * gdbtypes.c (rank_one_type_parm_enum): New function extracted
11851 from...
11852 (rank_one_type): ... this.
11853
11854 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11855
11856 * gdbtypes.c (rank_one_type_parm_int): New function extracted
11857 from...
11858 (rank_one_type): ... this.
11859
11860 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11861
11862 * gdbtypes.c (rank_one_type_parm_func): New function extracted
11863 from...
11864 (rank_one_type): ... this.
11865
11866 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11867
11868 * gdbtypes.c (rank_one_type_parm_array): New function extracted
11869 from...
11870 (rank_one_type): ... this.
11871
11872 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11873
11874 * gdbtypes.c (rank_one_type_parm_ptr): New function extracted
11875 from...
11876 (rank_one_type): ... this.
11877
11878 2019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11879
11880 * inferior.c (initialize_inferiors): Ensure 'help set/show print
11881 inferior-events' shows the example events.
11882
11883 2019-03-08 Eli Zaretskii <eliz@gnu.org>
11884
11885 Support styling on native MS-Windows console
11886
11887 PR/24315
11888 * utils.c (can_emit_style_escape) [_WIN32]: Don't disable styling
11889 on MS-Windows if $TERM is not defined.
11890
11891 * cli/cli-style.c: Set cli_styling to 1 in the MinGW build.
11892
11893 * posix-hdep.c (gdb_console_fputs):
11894 * mingw-hdep.c (rgb_to_16colors, gdb_console_fputs): New
11895 functions.
11896 * ui-file.h (gdb_console_fputs): Add prototype.
11897
11898 * ui-file.c (stdio_file::puts): Call gdb_console_fputs, and fall
11899 back to fputs only if the former returns zero.
11900
11901 2019-03-07 Tom Tromey <tom@tromey.com>
11902
11903 * symmisc.c (print_symbol_bcache_statistics): Update.
11904 (print_objfile_statistics): Update.
11905 * symfile.c (allocate_symtab): Update.
11906 * stabsread.c: Don't include bcache.h.
11907 * psymtab.h (struct psymbol_bcache): Don't declare.
11908 (class psymtab_storage) <psymbol_cache>: Now a bcache.
11909 (psymbol_bcache_init, psymbol_bcache_free)
11910 (psymbol_bcache_get_bcache): Don't declare.
11911 * psymtab.c (struct psymbol_bcache): Remove.
11912 (psymtab_storage::psymtab_storage): Update.
11913 (psymtab_storage::~psymtab_storage): Update.
11914 (psymbol_bcache_init, psymbol_bcache_free)
11915 (psymbol_bcache_get_bcache, psymbol_bcache_full): Remove.
11916 (add_psymbol_to_bcache): Update.
11917 (allocate_psymtab): Update.
11918 * objfiles.h (struct objfile_per_bfd_storage) <filename_cache,
11919 macro_cache>: No longer pointers.
11920 * objfiles.c (get_objfile_bfd_data): Don't call bcache_xmalloc.
11921 (free_objfile_per_bfd_storage): Don't call bcache_xfree.
11922 * macrotab.c (macro_bcache): Update.
11923 * macroexp.c: Don't include bcache.h.
11924 * gdbtypes.c (check_types_worklist): Update.
11925 (types_deeply_equal): Remove TRY/CATCH. Update.
11926 * elfread.c (elf_symtab_read): Update.
11927 * dwarf2read.c: Don't include bcache.h.
11928 * buildsym.c (buildsym_compunit::get_macro_table): Update.
11929 * bcache.h (bcache, bcache_full, bcache_xffree, bcache_xmalloc)
11930 (print_bcache_statistics, bcache_memory_used): Don't declare.
11931 (struct bcache): Move from bcache.c. Add constructor, destructor,
11932 methods. Rename all data members.
11933 * bcache.c (struct bcache): Move to bcache.h.
11934 (bcache::expand_hash_table): Rename from expand_hash_table.
11935 (bcache): Remove.
11936 (bcache::insert): Rename from bcache_full.
11937 (bcache::compare): Rename from bcache_compare.
11938 (bcache_xmalloc): Remove.
11939 (bcache::~bcache): Rename from bcache_xfree.
11940 (bcache::print_statistics): Rename from print_bcache_statistics.
11941 (bcache::memory_used): Rename from bcache_memory_used.
11942
11943 2019-03-07 Pedro Alves <palves@redhat.com>
11944
11945 * infrun.c (normal_stop): Also check for
11946 TARGET_WAITKIND_NO_RESUMED before referring to inferior_thread().
11947
11948 2019-03-07 Andrew Burgess <andrew.burgess@embecosm.com>
11949
11950 * f-lang.c (value_from_host_double): Moved to...
11951 * value.c (value_from_host_double): ...here.
11952 * value.h (value_from_host_double): Declare.
11953 * guile/scm-math.c (vlscm_convert_typed_number): Use
11954 value_from_host_double.
11955 (vlscm_convert_number): Likewise.
11956 * guile/scm-value.c (gdbscm_value_to_real): Likewise.
11957 * python/py-value.c (convert_value_from_python): Likewise.
11958
11959 2019-03-06 Tom Tromey <tom@tromey.com>
11960
11961 * gcore.c (write_gcore_file): Use SCOPE_EXIT.
11962
11963 2019-03-06 Tom Tromey <tom@tromey.com>
11964
11965 * utils.h (free_current_contents): Don't declare.
11966 * utils.c (free_current_contents): Remove.
11967
11968 2019-03-06 Tom Tromey <tom@tromey.com>
11969
11970 * top.c (quit_force): Update.
11971 * main.c (captured_command_loop): Update.
11972 * common/new-op.c (operator new): Update.
11973 * common/common-exceptions.c (struct catcher)
11974 <save_cleanup_chain>: Remove member.
11975 (exceptions_state_mc_init): Update.
11976 (exception_try_scope_entry): Return nullptr.
11977 (exception_try_scope_exit, exception_rethrow)
11978 (throw_exception_sjlj, throw_exception_cxx): Update.
11979 * common/cleanups.h (make_cleanup, make_cleanup_dtor)
11980 (all_cleanups, do_cleanups, discard_cleanups)
11981 (discard_final_cleanups, save_cleanups, save_final_cleanups)
11982 (restore_cleanups, restore_final_cleanups): Don't declare.
11983 (do_final_cleanups): Remove parameter.
11984 * common/cleanups.c (cleanup_chain, make_cleanup)
11985 (make_cleanup_dtor, all_cleanups, do_cleanups)
11986 (discard_my_cleanups, discard_cleanups)
11987 (discard_final_cleanups, save_my_cleanups, save_cleanups)
11988 (save_final_cleanups, restore_my_cleanups, restore_cleanups)
11989 (null_cleanup): Remove.
11990 (do_final_cleanups): Remove parameter.
11991
11992 2019-03-06 Tom Tromey <tom@tromey.com>
11993
11994 * remote.c (remote_target::remote_parse_stop_reply): Use
11995 unique_xmalloc_ptr.
11996
11997 2019-03-06 Tom Tromey <tom@tromey.com>
11998
11999 * stabsread.c (struct stabs_field_info): Rename from field_info.
12000 <list, fnlist>: Add initializers.
12001 <obstack>: New member.
12002 (read_member_functions, read_struct_fields, read_baseclasses):
12003 Allocate on obstack. Don't use cleanups.
12004 (read_one_struct_field, read_member_functions, read_struct_fields)
12005 (read_baseclasses, read_tilde_fields, attach_fn_fields_to_type)
12006 (attach_fields_to_type, read_cpp_abbrev, read_member_functions)
12007 (read_struct_type): Update.
12008
12009 2019-03-06 Tom Tromey <tom@tromey.com>
12010
12011 * nat/linux-namespaces.c (linux_mntns_access_fs): Use SCOPE_EXIT.
12012 * common/filestuff.h (make_cleanup_close): Don't declare.
12013 * common/filestuff.c (do_close_cleanup, make_cleanup_close):
12014 Remove.
12015
12016 2019-03-06 Tom Tromey <tom@tromey.com>
12017
12018 * solib-aix.c: Use make_scope_exit.
12019
12020 2019-03-06 Tom Tromey <tom@tromey.com>
12021
12022 * solib-svr4.c (svr4_parse_libraries, svr4_current_sos_direct):
12023 Use make_scope_exit.
12024
12025 2019-03-06 Tom Tromey <tom@tromey.com>
12026
12027 * solib-svr4.c (disable_probes_interface): Remove parameter.
12028 (svr4_handle_solib_event): Use make_scope_exit.
12029
12030 2019-03-06 Tom Tromey <tom@tromey.com>
12031
12032 * remote.c (struct stop_reply_deleter): Remove.
12033 (stop_reply_up): Update.
12034 (struct stop_reply): Derive from notif_event. Don't typedef.
12035 <regcache>: Now a std::vector.
12036 (stop_reply_xfree): Remove.
12037 (stop_reply::~stop_reply): Rename from stop_reply_dtr.
12038 (remote_notif_stop_alloc_reply): Return a unique_ptr. Use new.
12039 (remote_target::discard_pending_stop_replies): Use delete.
12040 (remote_target::remote_parse_stop_reply): Update.
12041 (remote_target::process_stop_reply): Update.
12042 * remote-notif.h (struct notif_event): Add virtual destructor.
12043 Remove "dtr" member.
12044 (struct notif_client) <alloc_event>: Return a unique_ptr.
12045 (notif_event_xfree): Don't declare.
12046 (notif_event_up): New typedef.
12047 * remote-notif.c (remote_notif_ack, remote_notif_parse): Update.
12048 (notif_event_xfree, do_notif_event_xfree): Remove.
12049 (remote_notif_state_xfree): Update.
12050
12051 2019-03-06 Tom Tromey <tom@tromey.com>
12052
12053 * infrun.c (displaced_step_clear_cleanup): Now a
12054 forward_scope_exit type.
12055 (displaced_step_prepare_throw): Update.
12056 (displaced_step_fixup): Update.
12057
12058 2019-03-06 Tom Tromey <tom@tromey.com>
12059
12060 * inferior.h (class inferior): Update comment.
12061 * gdbthread.h (class thread_info): Update comment.
12062
12063 2019-03-06 Joel Brobecker <brobecker@adacore.com>
12064 Tom Tromey <tom@tromey.com>
12065
12066 * stabsread.h (struct stab_section_list): Remove.
12067 (coffstab_build_psymtabs): Update.
12068 * dbxread.c (symbuf_sections): Now a std::vector.
12069 (sect_idx): New global.
12070 (fill_symbuf): Update.
12071 (coffstab_build_psymtabs): Change type of stabsects parameter.
12072 Update.
12073 * coffread.c (struct coff_symfile_info) <stabsects>: Now a
12074 std::vector.
12075 (linetab, linetab_offset, linetab_size, stringtab): Move earlier.
12076 (coff_locate_sections): Update.
12077 (coff_symfile_read): Remove cleanups. Update.
12078 (init_stringtab): Add storage parameter.
12079 (free_stringtab, free_stringtab_cleanup): Remove.
12080 (init_lineno): Add storage parameter.
12081 (free_linetab, free_linetab_cleanup): Remove.
12082
12083 2019-03-06 Pedro Alves <palves@redhat.com>
12084
12085 * linux-fork.c (fork_info::clobber_regs): Delete.
12086 (fork_load_infrun_state): Remove reference to 'clobber_regs'.
12087 (fork_save_infrun_state): Remove 'clobber_regs' parameter. Update
12088 comment. Adjust.
12089 (scoped_switch_fork_info::scoped_switch_fork_info)
12090 (checkpoint_command, linux_fork_context): Adjust
12091 fork_save_infrun_state calls.
12092
12093 2019-03-06 Pedro Alves <palves@redhat.com>
12094
12095 * linux-fork.c (inf_has_multiple_thread_cb): Delete.
12096 (inf_has_multiple_threads): Return 'bool' and rewrite using
12097 inferior_info::threads().
12098
12099 2019-03-06 Pedro Alves <palves@redhat.com>
12100
12101 * linux-fork.c: Include <list>.
12102 (fork_list): Now a std::list instance.
12103 (fork_info): Add ctor, dtor, and in-class initialize all fields.
12104 (forks_exist_p, find_last_fork): Adjust.
12105 (new_fork): Delete.
12106 (one_fork_p): New.
12107 (add_fork): Adjust.
12108 (free_fork): Delete, folded into fork_info::~fork_info().
12109 (delete_fork, find_fork_ptid, find_fork_id, find_fork_pid):
12110 Adjust.
12111 (init_fork_list): Delete.
12112 (linux_fork_killall, linux_fork_mourn_inferior)
12113 (linux_fork_detach, info_checkpoints_command): Adjust.
12114 (_initialize_linux_fork): No longer call init_fork_list.
12115
12116 2019-03-06 Pedro Alves <palves@redhat.com>
12117
12118 * linux-fork.c (new_fork): New, split out of ...
12119 (add_fork): ... this. Return void. Move "first fork" special
12120 case from here, to ...
12121 (checkpoint_command): ... here.
12122 * linux-linux.h (add_fork): Return void.
12123
12124 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12125
12126 * f-exp.y (direct_abs_decl): Handle TYPE*SIZE type names.
12127
12128 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12129 Chris January <chris.january@arm.com>
12130 David Lecomber <david.lecomber@arm.com>
12131
12132 * f-exp.y: New token, UNOP_INTRINSIC.
12133 (exp): New pattern using UNOP_INTRINSIC token.
12134 (f77_keywords): Add 'abs' keyword.
12135 * f-lang.c: Add 'target-float.h' and 'math.h' includes.
12136 (value_from_host_double): New function.
12137 (evaluate_subexp_f): Support UNOP_ABS.
12138
12139 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12140
12141 * f-lang.c (build_fortran_types): Use TYPE_CODE_CHAR for character
12142 types.
12143
12144 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12145
12146 * f-exp.y (convert_to_kind_type): Handle integer (kind=8).
12147 * f-lang.c (build_fortran_types): Setup builtin_integer_s8.
12148 * f-lang.h (struct builtin_f_type): Add builtin_integer_s8 field.
12149
12150 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12151
12152 * f-exp.y (convert_to_kind_type): Handle more type kinds.
12153
12154 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12155 Chris January <chris.january@arm.com>
12156
12157 * expprint.c (dump_subexp_body_standard): Support UNOP_KIND.
12158 * f-exp.y: Define 'KIND' token.
12159 (exp): New pattern for KIND expressions.
12160 (ptype): Handle types with a kind extension.
12161 (direct_abs_decl): Extend to spot kind extensions.
12162 (f77_keywords): Add 'kind' to the list.
12163 (push_kind_type): New function.
12164 (convert_to_kind_type): New function.
12165 * f-lang.c (evaluate_subexp_f): Support UNOP_KIND.
12166 * parse.c (operator_length_standard): Likewise.
12167 * parser-defs.h (enum type_pieces): Add tp_kind.
12168 * std-operator.def: Add UNOP_KIND.
12169
12170 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12171
12172 * f-exp.y (f_parse): Set yydebug.
12173
12174 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12175
12176 * f-lang.c (evaluate_subexp_f): New function.
12177 (exp_descriptor_f): New global.
12178 (f_language_defn): Use exp_descriptor_f instead of
12179 exp_descriptor_standard.
12180
12181 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12182
12183 * f-exp.y (struct token): Add comments.
12184 (dot_ops): Remove uppercase versions and the end marker.
12185 (f77_keywords): Likewise.
12186 (yylex): Use ARRAY_SIZE to iterate over dot_ops, assert all
12187 entries in the dot_ops array are case insensitive, and use
12188 strncasecmp to compare strings. Also some whitespace cleanup in
12189 this area. Similar for the f77_keywords array, except entries in
12190 this list might be case sensitive.
12191
12192 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
12193
12194 * f-exp.y (struct f77_boolean_val): Add comments.
12195 (boolean_values): Remove uppercase versions, and end marker.
12196 (yylex): Use ARRAY_SIZE for iterating over boolean_values array,
12197 and use strncasecmp to achieve case insensitivity. Additionally,
12198 perform whitespace cleanup around this code.
12199
12200 2019-03-06 Tom Tromey <tromey@adacore.com>
12201
12202 * remote-sim.c (gdbsim_target_open): Use result of
12203 gdb_argv::release.
12204
12205 2019-03-06 Richard Bunt <richard.bunt@arm.com>
12206 Dirk Schubert <dirk.schubert@arm.com>
12207 Chris January <chris.january@arm.com>
12208
12209 * eval.c (evaluate_subexp_standard): Call Fortran argument
12210 wrapping logic.
12211 * f-lang.c (struct value): A value which can be passed into a
12212 Fortran function call.
12213 (fortran_argument_convert): Wrap Fortran arguments in a pointer
12214 where appropriate.
12215 (struct type): Value ready for a Fortran function call.
12216 (fortran_preserve_arg_pointer): Undo check_typedef, the pointer
12217 is needed.
12218 * f-lang.h (fortran_argument_convert): Declaration.
12219 (fortran_preserve_arg_pointer): Declaration.
12220 * infcall.c (value_arg_coerce): Call Fortran argument logic.
12221
12222 2019-03-05 Tom Tromey <tromey@adacore.com>
12223
12224 * python/py-prettyprint.c (print_string_repr): Remove #if.
12225 * python/py-utils.c (unicode_to_encoded_string): Remove #if.
12226
12227 2019-03-05 Tom Tromey <tromey@adacore.com>
12228
12229 * target.c (the_dummy_target): Move later. Change type to
12230 "dummy_target".
12231 (initialize_targets): Don't initialize the_dummy_target.
12232
12233 2019-03-05 Tom Tromey <tromey@adacore.com>
12234
12235 * gdb_bfd.c (gdb_bfd_fdopenr): Remove.
12236 * gdb_bfd.h (gdb_bfd_fdopenr): Don't declare.
12237
12238 2019-03-05 Tom Tromey <tromey@adacore.com>
12239
12240 * windows-nat.c (windows_nat_target::attach)
12241 (windows_nat_target::detach): Don't call gdb_flush.
12242 * valprint.c (generic_val_print, val_print, val_print_string):
12243 Don't call gdb_flush.
12244 * utils.c (defaulted_query): Don't call gdb_flush.
12245 * typeprint.c (print_type_scalar): Don't call gdb_flush.
12246 * target.c (target_announce_detach): Don't call gdb_flush.
12247 * sparc64-tdep.c (adi_print_versions): Don't call gdb_flush.
12248 * remote.c (extended_remote_target::attach): Don't call
12249 gdb_flush.
12250 * procfs.c (procfs_target::detach): Don't call gdb_flush.
12251 * printcmd.c (do_examine): Don't call gdb_flush.
12252 (info_display_command): Don't call gdb_flush.
12253 * p-valprint.c (pascal_val_print): Don't call gdb_flush.
12254 * nto-procfs.c (nto_procfs_target::attach): Don't call gdb_flush.
12255 * memattr.c (info_mem_command): Don't call gdb_flush.
12256 * mdebugread.c (mdebug_build_psymtabs): Don't call gdb_flush.
12257 * m2-valprint.c (m2_val_print): Don't call gdb_flush.
12258 * infrun.c (follow_exec, handle_command): Don't call gdb_flush.
12259 * inf-ptrace.c (inf_ptrace_target::attach): Don't call gdb_flush.
12260 * hppa-tdep.c (unwind_command): Don't call gdb_flush.
12261 * gnu-nat.c (gnu_nat_target::attach): Don't call gdb_flush.
12262 (gnu_nat_target::detach): Don't call gdb_flush.
12263 * f-valprint.c (f_val_print): Don't call gdb_flush.
12264 * darwin-nat.c (darwin_nat_target::attach): Don't call gdb_flush.
12265 * cli/cli-script.c (read_command_lines): Don't call gdb_flush.
12266 * cli/cli-cmds.c (shell_escape, print_disassembly): Don't call
12267 gdb_flush.
12268 * c-valprint.c (c_val_print): Don't call gdb_flush.
12269 * ada-valprint.c (ada_print_scalar): Don't call gdb_flush.
12270
12271 2019-03-05 Tom Tromey <tromey@adacore.com>
12272
12273 * varobj.c (update_dynamic_varobj_children): Update.
12274 (install_default_visualizer): Use reset, not release.
12275 * value.c (set_internalvar): Update.
12276 * dwarf2loc.c (value_of_dwarf_reg_entry): Update.
12277 * common/gdb_ref_ptr.h (class ref_ptr) <release>: Add
12278 ATTRIBUTE_UNUSED_RESULT.
12279
12280 2019-03-05 Tom Tromey <tromey@adacore.com>
12281
12282 * remote.c (class scoped_remote_fd) <release>: Add
12283 ATTRIBUTE_UNUSED_RESULT.
12284
12285 2019-03-05 Tom Tromey <tromey@adacore.com>
12286
12287 * macroexp.c (struct macro_buffer) <release>: Add
12288 ATTRIBUTE_UNUSED_RESULT.
12289
12290 2019-03-05 Tom Tromey <tromey@adacore.com>
12291
12292 * nat/linux-btrace.c (linux_enable_bts, linux_enable_pt): Update.
12293 * common/scoped_mmap.h (class scoped_mmap) <release>: Add
12294 ATTRIBUTE_UNUSED_RESULT.
12295
12296 2019-03-05 Tom Tromey <tromey@adacore.com>
12297
12298 * common/scoped_fd.h (class scoped_fd) <release>: Add
12299 ATTRIBUTE_UNUSED_RESULT.
12300
12301 2019-03-05 Tom Tromey <tromey@adacore.com>
12302
12303 * parser-defs.h (struct parser_state) <release>: Add
12304 ATTRIBUTE_UNUSED_RESULT.
12305
12306 2019-03-05 Tom Tromey <tromey@adacore.com>
12307
12308 * utils.h (class gdb_argv) <release>: Add
12309 ATTRIBUTE_UNUSED_RESULT.
12310 * common/common-defs.h (ATTRIBUTE_UNUSED_RESULT): Define.
12311
12312 2019-03-02 Eli Zaretskii <eliz@gnu.org>
12313
12314 * xml-syscall.c (xml_list_syscalls_by_group): Drop 'struct' from
12315 for-loop range, to avoid compiler warnings.
12316
12317 * tui/tui.c (tui_enable) [__MINGW32__]: Don't declare 'cap', to
12318 avoid compiler warnings about unused variables.
12319
12320 * NEWS: Mention end of support for native debugging on MS-Windows
12321 before XP.
12322
12323 PR gdb/24292
12324 * common/netstuff.c:
12325 * gdbserver/gdbreplay.c
12326 * gdbserver/remote-utils.c:
12327 * ser-tcp.c:
12328 * unittests/parse-connection-spec-selftests.c [USE_WIN32API]:
12329 Include ws2tcpip.h instead of wsiapi.h and winsock2.h. Redefine
12330 _WIN32_WINNT to 0x0501 if defined to a smaller value, as
12331 'getaddrinfo' and 'freeaddrinfo' were not available before
12332 Windows XP, and mingw.org's MinGW headers by default define
12333 _WIN32_WINNT to 0x500.
12334
12335 2019-03-01 Gary Benson <gbenson@redhat.com>
12336
12337 * coffread.c (coff_start_symtab): Remove unnecessary xstrdup.
12338
12339 2019-02-28 Brian Vandenberg <phantall@gmail.com>
12340 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
12341
12342 PR gdb/8527
12343 * procfs.c (proc_wait_for_stop): Wrap write of PCWSTOP in
12344 set_sigint_trap, clear_sigint_trap.
12345
12346 2019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12347
12348 * target.c (target_detach): Clear the regcache and the
12349 frame cache.
12350
12351 2019-02-27 Pedro Alves <palves@redhat.com>
12352
12353 * utils.c (set_screen_size): When we cap the height/width sizes,
12354 tweak the corresponding command variable to show "unlimited":
12355
12356 2019-02-27 Saagar Jha <saagar@saagarjha.com>
12357 Pedro Alves <palves@redhat.com>
12358
12359 * utils.c (set_screen_size): Reduce "infinite" rows and columns
12360 before calling rl_set_screen_size.
12361
12362 2019-02-27 Tom Tromey <tromey@adacore.com>
12363
12364 * configure.ac (HAVE_LIBPYTHON2_4, HAVE_LIBPYTHON2_5): Never
12365 define.
12366 * python/py-value.c: Remove Python 2.4 workaround.
12367 * python/py-utils.c (gdb_pymodule_addobject): Remove Python 2.4
12368 workaround.
12369 * python/py-type.c (convert_field, gdbpy_initialize_types): Remove
12370 Python 2.4 workaround.
12371 * python/python-internal.h: Remove Python 2.4 comment.
12372 (Py_ssize_t): Don't define.
12373 (PyVarObject_HEAD_INIT, Py_TYPE): Don't define.
12374 (gdb_Py_DECREF): Remove Python 2.4 workaround.
12375 (gdb_PyObject_GetAttrString, PyObject_GetAttrString): Remove.
12376 (gdb_PyObject_HasAttrString, PyObject_HasAttrString): Remove.
12377 * python/python.c (do_start_initialization): Remove Python 2.4
12378 workaround.
12379 * python/py-prettyprint.c (class dummy_python_frame): Remove.
12380 (print_children): Remove Python 2.4 workaround.
12381 * python/py-inferior.c (buffer_procs): Remove Python 2.4
12382 workaround.
12383 (CHARBUFFERPROC_NAME): Remove.
12384 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Remove
12385 Python 2.4 workaround.
12386
12387 2019-02-27 Kevin Buettner <kevinb@redhat.com>
12388
12389 * NEWS: Note minimum Python version.
12390
12391 2019-02-27 Kevin Buettner <kevinb@redhat.com>
12392
12393 * python/py-inferior.c (infpy_write_memory): Remove non-IS_PY3K
12394 code from these functions. Remove corresponding ifdefs. Use
12395 Py_buffer_up instead of explicit calls to PyBuffer_Release.
12396 Remove gotos and target of gotos.
12397 (infpy_search_memory): Likewise.
12398
12399 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12400
12401 * gdb/hppa-tdep.c (hppa_dummy_id): Delete.
12402 (hppa_gdbarch_init): Don't register deleted functions with
12403 gdbarch.
12404
12405 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12406
12407 * gdb/h8300-tdep.c (h8300_unwind_pc): Delete.
12408 (h8300_unwind_sp): Delete.
12409 (h8300_dummy_id): Delete.
12410 (h8300_gdbarch_init): Don't register deleted functions with
12411 gdbarch.
12412
12413 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12414
12415 * gdb/ft32-tdep.c (ft32_dummy_id): Delete.
12416 (ft32_unwind_pc): Delete.
12417 (ft32_unwind_sp): Delete.
12418 (ft32_gdbarch_init): Don't register deleted functions with
12419 gdbarch.
12420
12421 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12422
12423 * gdb/frv-tdep.c (frv_dummy_id): Delete.
12424 (frv_unwind_pc): Delete.
12425 (frv_unwind_sp): Delete.
12426 (frv_gdbarch_init): Don't register deleted functions with
12427 gdbarch.
12428
12429 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12430
12431 * gdb/riscv-tdep.c (riscv_dummy_id): Delete.
12432 (riscv_unwind_pc): Delete.
12433 (riscv_unwind_sp): Delete.
12434 (riscv_gdbarch_init): Don't register deleted functions with
12435 gdbarch.
12436
12437 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12438
12439 * gdb/csky-tdep.c (csky_dummy_id): Delete.
12440 (csky_unwind_pc): Delete.
12441 (csky_unwind_sp): Delete.
12442 (csky_gdbarch_init): Don't register deleted functions with
12443 gdbarch.
12444
12445 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12446
12447 * gdb/cris-tdep.c (cris_dummy_id): Delete.
12448 (cris_unwind_pc): Delete.
12449 (cris_unwind_sp): Delete.
12450 (cris_gdbarch_init): Don't register deleted functions with
12451 gdbarch.
12452
12453 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12454
12455 * gdb/bfin-tdep.c (bfin_dummy_id): Delete.
12456 (bfin_unwind_pc): Delete.
12457 (bfin_gdbarch_init): Don't register deleted functions with gdbarch.
12458
12459 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12460
12461 * gdb/arm-tdep.c (arm_dummy_id): Delete.
12462 (arm_unwind_pc): Delete.
12463 (arm_unwind_sp): Delete.
12464 (arm_gdbarch_init): Don't register deleted functions with gdbarch.
12465
12466 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12467
12468 * gdb/arc-tdep.c (arc_dummy_id): Delete.
12469 (arc_unwind_pc): Delete.
12470 (arc_unwind_sp): Delete.
12471 (arc_gdbarch_init): Don't register deleted functions with gdbarch.
12472
12473 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12474
12475 * gdb/alpha-tdep.c (alpha_dummy_id): Delete.
12476 (alpha_unwind_pc): Delete.
12477 (alpha_gdbarch_init): Don't register deleted functions with
12478 gdbarch.
12479
12480 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12481
12482 * gdb/aarch64-tdep.c (aarch64_dummy_id): Delete.
12483 (aarch64_unwind_pc): Delete.
12484 (aarch64_unwind_sp): Delete.
12485 (aarch64_gdbarch_init): Don't register deleted functions with
12486 gdbarch.
12487
12488 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12489
12490 * gdbtypes.c (type_align): Don't consider static members when
12491 computing structure alignment.
12492
12493 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12494
12495 * arc-tdep.c (arc_type_align): Provide alignment for basic types,
12496 return 0 for other types.
12497 * arch-utils.c (default_type_align): Always return 0.
12498 * gdbarch.h: Regenerate.
12499 * gdbarch.sh (type_align): Extend comment.
12500 * gdbtypes.c (type_align): Add additional comments, always call
12501 gdbarch_type_align before applying the default rules.
12502 * i386-tdep.c (i386_type_align): Return 0 as the default rule,
12503 generic code will then apply a suitable default.
12504 * nios2-tdep.c (nios2_type_align): Provide alignment for basic
12505 types, return 0 for other types.
12506
12507 2019-02-27 Joel Brobecker <brobecker@adacore.com>
12508
12509 * NEWS: Create a new section for the next release branch.
12510 Rename the section of the current branch, now that it has
12511 been cut.
12512
12513 2019-02-27 Joel Brobecker <brobecker@adacore.com>
12514
12515 GDB 8.3 branch created (143420fb0d5ae54323ba9953f0818c194635228d):
12516 * version.in: Bump version to 8.3.50.DATE-git.
12517
12518 2019-02-26 Simon Marchi <simon.marchi@efficios.com>
12519
12520 * aix-thread.c (ptid_cmp): Remove unused variable.
12521 (get_signaled_thread): Likewise.
12522 (store_regs_user_thread): Likewise.
12523 (store_regs_kernel_thread): Likewise.
12524 (fetch_regs_kernel_thread): Remove shadowed variable.
12525
12526 2019-02-26 Andrew Burgess <andrew.burgess@embecosm.com>
12527
12528 * features/riscv/32bit-cpu.xml: Add register numbers.
12529 * features/riscv/32bit-fpu.c: Regenerate.
12530 * features/riscv/32bit-fpu.xml: Add register numbers.
12531 * features/riscv/64bit-cpu.xml: Add register numbers.
12532 * features/riscv/64bit-fpu.c: Regenerate.
12533 * features/riscv/64bit-fpu.xml: Add register numbers.
12534
12535 2019-02-26 Kevin Buettner <kevinb@redhat.com>
12536
12537 * NEWS: Mention two argument form of gdb.Value constructor.
12538 * python/py-value.c (convert_buffer_and_type_to_value): New
12539 function.
12540 (valpy_new): Parse arguments via gdb_PyArg_ParseTupleAndKeywords.
12541 Add support for handling an optional second argument. Call
12542 convert_buffer_and_type_to_value as appropriate.
12543 * python/python-internal.h (Py_buffer_deleter): New struct.
12544 (Py_buffer_up): New typedef.
12545
12546 2019-02-25 John Baldwin <jhb@FreeBSD.org>
12547
12548 * dwarf2read.c (dwarf2_get_dwz_file): Reset dwz_bfd to nullptr
12549 instead of releasing ownership.
12550
12551 2019-02-25 Jordan Rupprecht <rupprecht@google.com>
12552
12553 * dwarf2read.c (open_and_init_dwp_file): Call
12554 elf_numsections instead of bfd_count_sections to initialize
12555 dwp_file->num_sections.
12556
12557 2019-02-25 Tom Tromey <tromey@adacore.com>
12558
12559 * solib-darwin.c (darwin_get_dyld_bfd): Don't release dyld_bfd.
12560
12561 2019-02-23 Sergio Durigan Junior <sergiodj@redhat.com>
12562
12563 * gcore.in: Add '--readnever' option when invoking GDB.
12564
12565 2019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
12566
12567 * MAINTAINERS: Update my email address.
12568
12569 2019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
12570
12571 * build-id.c (build_id_to_debug_bfd_1): New function.
12572 (build_id_to_debug_bfd): Look for separate debug file in
12573 sysroot.
12574
12575 2019-02-22 Andrew Burgess <andrew.burgess@embecosm.com>
12576
12577 * gdbarch.sh: Update the copyright year range that is placed into
12578 generated files.
12579
12580 2019-02-22 Keith Seitz <keiths@redhat.com>
12581
12582 PR symtab/23853
12583 * linespec.c (create_sals_line_offset): Search for the default
12584 symtab's filename instead of its fullname.
12585
12586 2019-02-21 Alan Hayward <alan.hayward@arm.com>
12587
12588 * NEWS: Update style defaults.
12589
12590 2019-02-21 Alan Hayward <alan.hayward@arm.com>
12591
12592 * main.c (captured_main_1): Disable styling in batch mode.
12593
12594 2019-02-20 Tom Tromey <tom@tromey.com>
12595
12596 * symtab.c (symtab_symbol_info): Fix typos.
12597
12598 2019-02-20 Tom Tromey <tromey@adacore.com>
12599
12600 * findcmd.c (_initialize_mem_search): Use upper case for
12601 metasyntactic variables.
12602
12603 2019-02-20 Alan Hayward <alan.hayward@arm.com>
12604
12605 * aarch64-tdep.c (aarch64_add_reggroups): New function.
12606 (aarch64_gdbarch_init): Call aarch64_add_reggroups.
12607
12608 2019-02-19 Simon Marchi <simon.marchi@polymtl.ca>
12609
12610 * top.h (source_file_name): Change to std::string.
12611 * top.c (source_file_name): Likewise.
12612 (command_line_input): Adjust.
12613 * cli/cli-script.c (script_from_file): Adjust.
12614
12615 2019-02-19 Tom Tromey <tromey@adacore.com>
12616
12617 * ravenscar-thread.c
12618 (ravenscar_thread_target::update_thread_list): Don't call
12619 ada_build_task_list.
12620 * ada-lang.h (ada_build_task_list): Don't declare.
12621 * ada-tasks.c (struct ada_tasks_inferior_data)
12622 <task_list_valid_p>: Now bool.
12623 (read_known_tasks, ada_task_list_changed)
12624 (ada_tasks_invalidate_inferior_data): Update.
12625 (read_known_tasks_array): Return bool.
12626 (read_known_tasks_list): Likewise.
12627 (read_known_tasks): Return void.
12628 (ada_build_task_list): Now static.
12629
12630 2019-02-18 Andrew Burgess <andrew.burgess@embecosm.com>
12631
12632 * gdbtypes.c (type_align): Allow alignment of TYPE_CODE_METHODPTR
12633 and TYPE_CODE_MEMBERPTR to be overridden by the gdbarch.
12634
12635 2019-02-18 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12636
12637 * ada-task.c (_initialize_tasks): Use 'with_cleanup' register
12638 variant for ada_tasks_pspace_data_handle and
12639 ada_tasks_inferior_data_handle.
12640 (ada_tasks_pspace_data_cleanup): New function.
12641 (ada_tasks_inferior_data_cleanup): New function.
12642
12643 2019-02-17 Tom Tromey <tom@tromey.com>
12644
12645 * macrotab.h (macro_source_fullname): Return a std::string.
12646 * macrotab.c (macro_include, check_for_redefinition)
12647 (macro_undef, macro_lookup_definition, foreach_macro)
12648 (foreach_macro_in_scope): Update.
12649 (macro_source_fullname): Return a std::string.
12650 * macrocmd.c (show_pp_source_pos): Update.
12651
12652 2019-02-17 Tom Tromey <tom@tromey.com>
12653
12654 * macrocmd.c (show_pp_source_pos): Style the file names.
12655
12656 2019-02-17 Tom Tromey <tom@tromey.com>
12657
12658 PR tui/24197:
12659 * tui/tui-source.c (tui_set_source_content_nil): Rewrite.
12660
12661 2019-02-17 Tom Tromey <tom@tromey.com>
12662
12663 * ada-lang.c (user_select_syms): Use filtered printing.
12664 * utils.c (wrap_style): New global.
12665 (desired_style): Remove.
12666 (emit_style_escape): Add stream parameter.
12667 (set_output_style, reset_terminal_style, prompt_for_continue):
12668 Update.
12669 (flush_wrap_buffer): Only flush gdb_stdout.
12670 (wrap_here): Set wrap_style.
12671 (fputs_maybe_filtered): Clear the wrap buffer on exception. Don't
12672 treat escape sequences as a character. Change when wrap buffer is
12673 flushed.
12674 (fputs_styled): Do not set the output style when the default is
12675 requested.
12676 * ui-style.h (struct ui_file_style) <is_default>: New method.
12677 * source.c (print_source_lines_base): Emit escape sequences in one
12678 piece.
12679
12680 2019-02-17 Joel Brobecker <brobecker@adacore.com>
12681
12682 * gdbtypes.c (type_align): Handle TYPE_CODE_RANGE the same as
12683 integers and enumeration types.
12684
12685 2019-02-17 Joel Brobecker <brobecker@adacore.com>
12686
12687 * ada-lang.c (standard_lookup): Use ada_lookup_encoded_symbol
12688 instead of lookup_symbol_in_language
12689 (do_exact_match): New function.
12690 (ada_get_symbol_name_matcher): Return do_exact_match when
12691 doing a verbatim match.
12692
12693 2019-02-15 Tom Tromey <tromey@adacore.com>
12694
12695 * ravenscar-thread.c (ravenscar_thread_target::resume)
12696 (ravenscar_thread_target::wait): Special case wildcard requests.
12697
12698 2019-02-15 Tom Tromey <tromey@adacore.com>
12699
12700 * ravenscar-thread.c (base_ptid): Remove.
12701 (struct ravenscar_thread_target) <close>: New method.
12702 <m_base_ptid>: New member.
12703 <update_inferior_ptid, active_task, task_is_currently_active,
12704 runtime_initialized>: Declare methods.
12705 <ravenscar_thread_target>: Add constructor.
12706 (ravenscar_thread_target::task_is_currently_active)
12707 (ravenscar_thread_target::update_inferior_ptid)
12708 (ravenscar_runtime_initialized): Rename. Now methods.
12709 (ravenscar_thread_target::resume, ravenscar_thread_target::wait)
12710 (ravenscar_thread_target::update_thread_list): Update.
12711 (ravenscar_thread_target::active_task): Now method.
12712 (ravenscar_thread_target::store_registers)
12713 (ravenscar_thread_target::prepare_to_store)
12714 (ravenscar_thread_target::prepare_to_store)
12715 (ravenscar_thread_target::mourn_inferior): Update.
12716 (ravenscar_inferior_created): Use "new" to create target.
12717 (ravenscar_thread_target::get_ada_task_ptid): Update.
12718 (_initialize_ravenscar): Don't initialize base_ptid.
12719 (ravenscar_ops): Remove global.
12720
12721 2019-02-15 Tom Tromey <tromey@adacore.com>
12722
12723 * target.h (push_target): Declare new overload.
12724 * target.c (push_target): New overload, taking an rvalue reference.
12725 * remote.c (remote_target::open_1): Use push_target overload.
12726 * corelow.c (core_target_open): Use push_target overload.
12727
12728 2019-02-15 Tom Tromey <tromey@adacore.com>
12729
12730 * ravenscar-thread.c (is_ravenscar_task)
12731 (ravenscar_task_is_currently_active): Return bool.
12732 (ravenscar_update_inferior_ptid, get_running_thread_msymbol)
12733 (_initialize_ravenscar): Remove "(void)".
12734 (has_ravenscar_runtime, ravenscar_runtime_initialized): Likewise.
12735 Return bool.
12736
12737 2019-02-15 Tom Tromey <tromey@adacore.com>
12738
12739 * ravenscar-thread.c (ravenscar_runtime_initializer)
12740 (has_ravenscar_runtime, get_running_thread_id)
12741 (ravenscar_thread_target::resume): Fix indentation.
12742
12743 2019-02-15 Tom Tromey <tromey@adacore.com>
12744
12745 * sparc-ravenscar-thread.c (struct sparc_ravenscar_ops): Derive
12746 from ravenscar_arch_ops.
12747 (sparc_ravenscar_ops::fetch_registers)
12748 (sparc_ravenscar_ops::store_registers): Now methods.
12749 (sparc_ravenscar_prepare_to_store): Remove.
12750 (sparc_ravenscar_ops): Redefine.
12751 * ravenscar-thread.h (struct ravenscar_arch_ops): Add virtual
12752 methods and destructor. Remove members.
12753 * ravenscar-thread.c (ravenscar_thread_target::fetch_registers)
12754 (ravenscar_thread_target::store_registers)
12755 (ravenscar_thread_target::prepare_to_store): Update.
12756 * ppc-ravenscar-thread.c (ppc_ravenscar_generic_prepare_to_store):
12757 Remove.
12758 (struct ppc_ravenscar_powerpc_ops): Derive from
12759 ravenscar_arch_ops.
12760 (ppc_ravenscar_powerpc_ops::fetch_registers)
12761 (ppc_ravenscar_powerpc_ops::store_registers): Now methods.
12762 (ppc_ravenscar_powerpc_ops): Redefine.
12763 (struct ppc_ravenscar_e500_ops): Derive from ravenscar_arch_ops.
12764 (ppc_ravenscar_e500_ops::fetch_registers)
12765 (ppc_ravenscar_e500_ops::store_registers): Now methods.
12766 (ppc_ravenscar_e500_ops): Redefine.
12767 * aarch64-ravenscar-thread.c
12768 (aarch64_ravenscar_generic_prepare_to_store): Remove.
12769 (struct aarch64_ravenscar_ops): Derive from ravenscar_arch_ops.
12770 (aarch64_ravenscar_fetch_registers)
12771 (aarch64_ravenscar_store_registers): Now methods.
12772 (aarch64_ravenscar_ops): Redefine.
12773
12774 2019-02-15 Tom Tromey <tromey@adacore.com>
12775
12776 * ravenscar-thread.c (ravenscar_thread_target::stopped_by_sw_breakpoint)
12777 (ravenscar_thread_target::stopped_by_hw_breakpoint)
12778 (ravenscar_thread_target::stopped_by_watchpoint)
12779 (ravenscar_thread_target::stopped_data_address)
12780 (ravenscar_thread_target::core_of_thread): Use scoped_restore.
12781
12782 2019-02-15 Tom Tromey <tromey@adacore.com>
12783
12784 * ravenscar-thread.c: Fix some typos.
12785
12786 2019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12787 Tom Tromey <tromey@adacore.com>
12788
12789 * ada-lang.c (ada_exception_sal): Change addr_string to a
12790 std::string.
12791 (create_ada_exception_catchpoint): Update.
12792
12793 2019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12794 Tom Tromey <tromey@adacore.com>
12795
12796 * breakpoint.c (~bp_location): Rename from bp_location_dtor.
12797 (bp_location_ops): Remove.
12798 (base_breakpoint_allocate_location): Update.
12799 (free_bp_location): Update.
12800 * ada-lang.c (class ada_catchpoint_location)
12801 <ada_catchpoint_location>: Remove ops parameter.
12802 (ada_catchpoint_location_dtor): Remove.
12803 (ada_catchpoint_location_ops): Remove.
12804 (allocate_location_exception): Update.
12805 * breakpoint.h (struct bp_location_ops): Remove.
12806 (class bp_location) <bp_location>: Remove bp_location_ops
12807 parameter.
12808 <~bp_location>: Add destructor.
12809 <ops>: Remove.
12810
12811 2019-02-14 Thomas Schwinge <thomas@codesourcery.com>
12812 Pedro Alves <palves@redhat.com>
12813
12814 * remote.c (remote_target::remote_parse_stop_reply): Avoid using
12815 'PATH_MAX'.
12816
12817 2019-02-14 David Michael <fedora.dm0@gmail.com>
12818 Samuel Thibault <samuel.thibault@gnu.org>
12819 Thomas Schwinge <thomas@codesourcery.com>
12820
12821 * gnu-nat.c (S_proc_getmsgport_reply, S_proc_task2proc_reply)
12822 (S_proc_pid2proc_reply): Adjust to Hurd "proc" interface changes.
12823
12824 2019-02-14 Thomas Schwinge <thomas@codesourcery.com>
12825
12826 * gnu-nat.c (gnu_write_inferior, parse_int_arg, _parse_bool_arg)
12827 (check_empty): Use "const char *".
12828
12829 * gnu-nat.c (gnu_nat_target::detach): Instead of
12830 'detach_inferior (pid)' call
12831 'detach_inferior (find_inferior_pid (pid))'.
12832
12833 * configure.nat [gdb_host == i386gnu] (NATDEPFILES): Add
12834 'nat/fork-inferior.o'.
12835 * gnu-nat.c: #include "nat/fork-inferior.h".
12836
12837 * gnu-nat.c (gnu_nat_target::detach): Instead of
12838 'inf_child_maybe_unpush_target (ops)' call 'maybe_unpush_target'.
12839 * gnu-nat.h: #include "inf-child.h".
12840 * i386-gnu-nat.c (gnu_fetch_registers): Rename/move to
12841 'i386_gnu_nat_target::fetch_registers'.
12842 (gnu_store_registers): Rename/move to
12843 'i386_gnu_nat_target::store_registers'.
12844
12845 * config/i386/nm-i386gnu.h: Don't "#include" any files.
12846 * gnu-nat.h (mach_thread_info): New function.
12847 * gnu-nat.c (thread_takeover_sc_cmd): Use it.
12848
12849 * config/i386/nm-i386gnu.h (gnu_target_pid_to_str): Remove.
12850
12851 2019-02-14 Frederic Konrad <konrad@adacore.com>
12852
12853 * riscv-rdep.c (riscv_type_alignment): Handle TYPE_CODE_RANGE.
12854
12855 2019-02-14 Joel Brobecker <brobecker@adacore.com>
12856
12857 * windows-nat.c (windows_add_thread): Add new parameter
12858 "main_thread_p" with default value set to false. Update
12859 function documentation as well as all callers.
12860 (windows_delete_thread): Likewise.
12861 (fake_create_process): Update call to windows_add_thread.
12862 (get_windows_debug_event) <CREATE_THREAD_DEBUG_EVENT>
12863 <CREATE_PROCESS_DEBUG_EVENT>: Likewise.
12864 <EXIT_THREAD_DEBUG_EVENT, EXIT_PROCESS_DEBUG_EVENT>: Update
12865 call to windows_delete_thread.
12866
12867 2019-02-13 Simon Marchi <simon.marchi@ericsson.com>
12868
12869 * MAINTAINERS: Add Andrew Burgess as global maintainer.
12870
12871 2019-02-12 John Baldwin <jhb@FreeBSD.org>
12872
12873 * symfile.c (find_separate_debug_file): Use canonical path of
12874 sysroot with child_path instead of gdb_sysroot if it is valid.
12875
12876 2019-02-12 John Baldwin <jhb@FreeBSD.org>
12877
12878 * symfile.c (find_separate_debug_file): Use child_path to
12879 determine if an object file is under a sysroot.
12880
12881 2019-02-12 John Baldwin <jhb@FreeBSD.org>
12882
12883 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
12884 unittests/child-path-selftests.c.
12885 * common/pathstuff.c (child_path): New function.
12886 * common/pathstuff.h (child_path): New prototype.
12887 * unittests/child-path-selftests.c: New file.
12888
12889 2019-02-12 John Baldwin <jhb@FreeBSD.org>
12890
12891 * symfile.c (find_separate_debug_file): Look for separate debug
12892 files in debug directories under the sysroot.
12893
12894 2019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12895
12896 * symtab.h (struct minimal_symbol data_p): New const method.
12897 (struct minimal_symbol text_p): Likewise.
12898 * symtab.c (output_source_filename): Use file name style
12899 to print file name.
12900 (print_symbol_info): Likewise.
12901 (print_msymbol_info): Use address style to print addresses.
12902 Use function name style to print executable text symbols.
12903 (expand_symtab_containing_pc): Use data_p.
12904 (find_pc_sect_compunit_symtab): Likewise.
12905
12906 2019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12907
12908 * breakpoint.c (describe_other_breakpoints): Use address style
12909 to print addresses.
12910 (say_where): Likewise.
12911
12912 2019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12913
12914 * ada-typeprint.c (print_func_type): Print function name
12915 style to print function name.
12916 * c-typeprint.c (c_print_type_1): Likewise.
12917
12918 2019-02-11 Alan Hayward <alan.hayward@arm.com>
12919
12920 * aarch64-linux-tdep.c (aarch64_linux_get_syscall_number): Check
12921 for execve.
12922
12923 2019-02-10 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12924
12925 * c-exp.y (direct_abs_decl): Use emplace_back to record the
12926 type_stack.
12927
12928 2019-02-10 Joel Brobecker <brobecker@adacore.com>
12929
12930 * ada-varobj.c (ada_value_is_changeable_p): Add handling of
12931 TYPE_CODE_REF types.
12932
12933 2019-02-08 Jim Wilson <jimw@sifive.com>
12934
12935 * riscv-linux-tdep.c (riscv_linux_fregmap): New.
12936 (riscv_linux_fregset): New.
12937 (riscv_linux_iterate_over_regset_sections): Call cb for .reg2 section.
12938
12939 2019-02-07 Tom Tromey <tom@tromey.com>
12940
12941 * thread.c (thread_cancel_execution_command): Update.
12942 * thread-fsm.h (struct thread_fsm): Add constructor, destructor,
12943 methods.
12944 (struct thread_fsm_ops): Remove.
12945 (thread_fsm_ctor, thread_fsm_delete, thread_fsm_clean_up)
12946 (thread_fsm_should_stop, thread_fsm_return_value)
12947 (thread_fsm_set_finished, thread_fsm_finished_p)
12948 (thread_fsm_async_reply_reason, thread_fsm_should_notify_stop):
12949 Don't declare.
12950 * mi/mi-interp.c (mi_on_normal_stop_1): Update.
12951 * infrun.c (clear_proceed_status_thread)
12952 (clean_up_just_stopped_threads_fsms, fetch_inferior_event)
12953 (print_stop_event): Update.
12954 * infcmd.c (struct step_command_fsm): Inherit from thread_fsm.
12955 Add constructor.
12956 (step_command_fsm_ops): Remove.
12957 (new_step_command_fsm): Remove.
12958 (step_1): Update.
12959 (step_command_fsm::should_stop): Rename from
12960 step_command_fsm_should_stop.
12961 (step_command_fsm::clean_up): Rename from
12962 step_command_fsm_clean_up.
12963 (step_command_fsm::do_async_reply_reason): Rename from
12964 step_command_fsm_async_reply_reason.
12965 (struct until_next_fsm): Inherit from thread_fsm. Add
12966 constructor.
12967 (until_next_fsm_ops): Remove.
12968 (new_until_next_fsm): Remove.
12969 (until_next_fsm::should_stop): Rename from
12970 until_next_fsm_should_stop.
12971 (until_next_fsm::clean_up): Rename from until_next_fsm_clean_up.
12972 (until_next_fsm::do_async_reply_reason): Rename from
12973 until_next_fsm_async_reply_reason.
12974 (struct finish_command_fsm): Inherit from thread_fsm. Add
12975 constructor. Change type of breakpoint.
12976 (finish_command_fsm_ops): Remove.
12977 (new_finish_command_fsm): Remove.
12978 (finish_command_fsm::should_stop): Rename from
12979 finish_command_fsm_should_stop.
12980 (finish_command_fsm::clean_up): Rename from
12981 finish_command_fsm_clean_up.
12982 (finish_command_fsm::return_value): Rename from
12983 finish_command_fsm_return_value.
12984 (finish_command_fsm::do_async_reply_reason): Rename from
12985 finish_command_fsm_async_reply_reason.
12986 (finish_command): Update.
12987 * infcall.c (struct call_thread_fsm): Inherit from thread_fsm.
12988 Add constructor.
12989 (call_thread_fsm_ops): Remove.
12990 (call_thread_fsm::call_thread_fsm): Rename from
12991 new_call_thread_fsm.
12992 (call_thread_fsm::should_stop): Rename from
12993 call_thread_fsm_should_stop.
12994 (call_thread_fsm::should_notify_stop): Rename from
12995 call_thread_fsm_should_notify_stop.
12996 (run_inferior_call, call_function_by_hand_dummy): Update.
12997 * cli/cli-interp.c (should_print_stop_to_console): Update.
12998 * breakpoint.c (struct until_break_fsm): Inherit from thread_fsm.
12999 Add constructor. Change type of location_breakpoint,
13000 caller_breakpoint.
13001 (until_break_fsm_ops): Remove.
13002 (new_until_break_fsm): Remove.
13003 (until_break_fsm::should_stop): Rename from
13004 until_break_fsm_should_stop.
13005 (until_break_fsm::clean_up): Rename from
13006 until_break_fsm_clean_up.
13007 (until_break_fsm::do_async_reply_reason): Rename from
13008 until_break_fsm_async_reply_reason.
13009 (until_break_command): Update.
13010 * thread-fsm.c: Remove.
13011 * Makefile.in (COMMON_SFILES): Remove thread-fsm.c.
13012
13013 2019-02-07 Tom Tromey <tom@tromey.com>
13014
13015 * yy-remap.h: Add include guard.
13016 * xtensa-tdep.h: Add include guard.
13017 * xcoffread.h: Rename include guard.
13018 * varobj-iter.h: Add include guard.
13019 * tui/tui.h: Rename include guard.
13020 * tui/tui-winsource.h: Rename include guard.
13021 * tui/tui-wingeneral.h: Rename include guard.
13022 * tui/tui-windata.h: Rename include guard.
13023 * tui/tui-win.h: Rename include guard.
13024 * tui/tui-stack.h: Rename include guard.
13025 * tui/tui-source.h: Rename include guard.
13026 * tui/tui-regs.h: Rename include guard.
13027 * tui/tui-out.h: Rename include guard.
13028 * tui/tui-layout.h: Rename include guard.
13029 * tui/tui-io.h: Rename include guard.
13030 * tui/tui-hooks.h: Rename include guard.
13031 * tui/tui-file.h: Rename include guard.
13032 * tui/tui-disasm.h: Rename include guard.
13033 * tui/tui-data.h: Rename include guard.
13034 * tui/tui-command.h: Rename include guard.
13035 * tic6x-tdep.h: Add include guard.
13036 * target/waitstatus.h: Rename include guard.
13037 * target/wait.h: Rename include guard.
13038 * target/target.h: Rename include guard.
13039 * target/resume.h: Rename include guard.
13040 * target-float.h: Rename include guard.
13041 * stabsread.h: Add include guard.
13042 * rs6000-tdep.h: Add include guard.
13043 * riscv-fbsd-tdep.h: Add include guard.
13044 * regformats/regdef.h: Rename include guard.
13045 * record.h: Rename include guard.
13046 * python/python.h: Rename include guard.
13047 * python/python-internal.h: Rename include guard.
13048 * python/py-stopevent.h: Rename include guard.
13049 * python/py-ref.h: Rename include guard.
13050 * python/py-record.h: Rename include guard.
13051 * python/py-record-full.h: Rename include guard.
13052 * python/py-record-btrace.h: Rename include guard.
13053 * python/py-instruction.h: Rename include guard.
13054 * python/py-events.h: Rename include guard.
13055 * python/py-event.h: Rename include guard.
13056 * procfs.h: Add include guard.
13057 * proc-utils.h: Add include guard.
13058 * p-lang.h: Add include guard.
13059 * or1k-tdep.h: Rename include guard.
13060 * observable.h: Rename include guard.
13061 * nto-tdep.h: Rename include guard.
13062 * nat/x86-linux.h: Rename include guard.
13063 * nat/x86-linux-dregs.h: Rename include guard.
13064 * nat/x86-gcc-cpuid.h: Add include guard.
13065 * nat/x86-dregs.h: Rename include guard.
13066 * nat/x86-cpuid.h: Rename include guard.
13067 * nat/ppc-linux.h: Rename include guard.
13068 * nat/mips-linux-watch.h: Rename include guard.
13069 * nat/linux-waitpid.h: Rename include guard.
13070 * nat/linux-ptrace.h: Rename include guard.
13071 * nat/linux-procfs.h: Rename include guard.
13072 * nat/linux-osdata.h: Rename include guard.
13073 * nat/linux-nat.h: Rename include guard.
13074 * nat/linux-namespaces.h: Rename include guard.
13075 * nat/linux-btrace.h: Rename include guard.
13076 * nat/glibc_thread_db.h: Rename include guard.
13077 * nat/gdb_thread_db.h: Rename include guard.
13078 * nat/gdb_ptrace.h: Rename include guard.
13079 * nat/fork-inferior.h: Rename include guard.
13080 * nat/amd64-linux-siginfo.h: Rename include guard.
13081 * nat/aarch64-sve-linux-sigcontext.h: Rename include guard.
13082 * nat/aarch64-sve-linux-ptrace.h: Rename include guard.
13083 * nat/aarch64-linux.h: Rename include guard.
13084 * nat/aarch64-linux-hw-point.h: Rename include guard.
13085 * mn10300-tdep.h: Add include guard.
13086 * mips-linux-tdep.h: Add include guard.
13087 * mi/mi-parse.h: Rename include guard.
13088 * mi/mi-out.h: Rename include guard.
13089 * mi/mi-main.h: Rename include guard.
13090 * mi/mi-interp.h: Rename include guard.
13091 * mi/mi-getopt.h: Rename include guard.
13092 * mi/mi-console.h: Rename include guard.
13093 * mi/mi-common.h: Rename include guard.
13094 * mi/mi-cmds.h: Rename include guard.
13095 * mi/mi-cmd-break.h: Rename include guard.
13096 * m2-lang.h: Add include guard.
13097 * location.h: Rename include guard.
13098 * linux-record.h: Rename include guard.
13099 * linux-nat.h: Add include guard.
13100 * linux-fork.h: Add include guard.
13101 * i386-darwin-tdep.h: Rename include guard.
13102 * hppa-linux-offsets.h: Add include guard.
13103 * guile/guile.h: Rename include guard.
13104 * guile/guile-internal.h: Rename include guard.
13105 * gnu-nat.h: Rename include guard.
13106 * gdb-stabs.h: Rename include guard.
13107 * frv-tdep.h: Add include guard.
13108 * f-lang.h: Add include guard.
13109 * event-loop.h: Add include guard.
13110 * darwin-nat.h: Rename include guard.
13111 * cp-abi.h: Rename include guard.
13112 * config/sparc/nm-sol2.h: Rename include guard.
13113 * config/nm-nto.h: Rename include guard.
13114 * config/nm-linux.h: Add include guard.
13115 * config/i386/nm-i386gnu.h: Rename include guard.
13116 * config/djgpp/nl_types.h: Rename include guard.
13117 * config/djgpp/langinfo.h: Rename include guard.
13118 * compile/gcc-cp-plugin.h: Add include guard.
13119 * compile/gcc-c-plugin.h: Add include guard.
13120 * compile/compile.h: Rename include guard.
13121 * compile/compile-object-run.h: Rename include guard.
13122 * compile/compile-object-load.h: Rename include guard.
13123 * compile/compile-internal.h: Rename include guard.
13124 * compile/compile-cplus.h: Rename include guard.
13125 * compile/compile-c.h: Rename include guard.
13126 * common/xml-utils.h: Rename include guard.
13127 * common/x86-xstate.h: Rename include guard.
13128 * common/version.h: Rename include guard.
13129 * common/vec.h: Rename include guard.
13130 * common/tdesc.h: Rename include guard.
13131 * common/selftest.h: Rename include guard.
13132 * common/scoped_restore.h: Rename include guard.
13133 * common/scoped_mmap.h: Rename include guard.
13134 * common/scoped_fd.h: Rename include guard.
13135 * common/safe-iterator.h: Rename include guard.
13136 * common/run-time-clock.h: Rename include guard.
13137 * common/refcounted-object.h: Rename include guard.
13138 * common/queue.h: Rename include guard.
13139 * common/ptid.h: Rename include guard.
13140 * common/print-utils.h: Rename include guard.
13141 * common/preprocessor.h: Rename include guard.
13142 * common/pathstuff.h: Rename include guard.
13143 * common/observable.h: Rename include guard.
13144 * common/netstuff.h: Rename include guard.
13145 * common/job-control.h: Rename include guard.
13146 * common/host-defs.h: Rename include guard.
13147 * common/gdb_wait.h: Rename include guard.
13148 * common/gdb_vecs.h: Rename include guard.
13149 * common/gdb_unlinker.h: Rename include guard.
13150 * common/gdb_unique_ptr.h: Rename include guard.
13151 * common/gdb_tilde_expand.h: Rename include guard.
13152 * common/gdb_sys_time.h: Rename include guard.
13153 * common/gdb_string_view.h: Rename include guard.
13154 * common/gdb_splay_tree.h: Rename include guard.
13155 * common/gdb_setjmp.h: Rename include guard.
13156 * common/gdb_ref_ptr.h: Rename include guard.
13157 * common/gdb_optional.h: Rename include guard.
13158 * common/gdb_locale.h: Rename include guard.
13159 * common/gdb_assert.h: Rename include guard.
13160 * common/filtered-iterator.h: Rename include guard.
13161 * common/filestuff.h: Rename include guard.
13162 * common/fileio.h: Rename include guard.
13163 * common/environ.h: Rename include guard.
13164 * common/common-utils.h: Rename include guard.
13165 * common/common-types.h: Rename include guard.
13166 * common/common-regcache.h: Rename include guard.
13167 * common/common-inferior.h: Rename include guard.
13168 * common/common-gdbthread.h: Rename include guard.
13169 * common/common-exceptions.h: Rename include guard.
13170 * common/common-defs.h: Rename include guard.
13171 * common/common-debug.h: Rename include guard.
13172 * common/cleanups.h: Rename include guard.
13173 * common/buffer.h: Rename include guard.
13174 * common/btrace-common.h: Rename include guard.
13175 * common/break-common.h: Rename include guard.
13176 * cli/cli-utils.h: Rename include guard.
13177 * cli/cli-style.h: Rename include guard.
13178 * cli/cli-setshow.h: Rename include guard.
13179 * cli/cli-script.h: Rename include guard.
13180 * cli/cli-interp.h: Rename include guard.
13181 * cli/cli-decode.h: Rename include guard.
13182 * cli/cli-cmds.h: Rename include guard.
13183 * charset-list.h: Add include guard.
13184 * buildsym-legacy.h: Rename include guard.
13185 * bfin-tdep.h: Add include guard.
13186 * ax.h: Rename include guard.
13187 * arm-linux-tdep.h: Add include guard.
13188 * arm-fbsd-tdep.h: Add include guard.
13189 * arch/xtensa.h: Rename include guard.
13190 * arch/tic6x.h: Add include guard.
13191 * arch/i386.h: Add include guard.
13192 * arch/arm.h: Rename include guard.
13193 * arch/arm-linux.h: Rename include guard.
13194 * arch/arm-get-next-pcs.h: Rename include guard.
13195 * arch/amd64.h: Add include guard.
13196 * arch/aarch64-insn.h: Rename include guard.
13197 * arch-utils.h: Rename include guard.
13198 * annotate.h: Add include guard.
13199 * amd64-darwin-tdep.h: Rename include guard.
13200 * aarch64-linux-tdep.h: Add include guard.
13201 * aarch64-fbsd-tdep.h: Add include guard.
13202 * aarch32-linux-nat.h: Add include guard.
13203
13204 2019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13205
13206 * macrotab.c (macro_define_internal): New function that
13207 factorizes macro_define_object_internal and macro_define_function
13208 code.
13209 (macro_define_object_internal): Use macro_define_internal.
13210 (macro_define_function): Likewise.
13211
13212 2019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13213
13214 * macrocmd.c (extract_identifier): Return
13215 a gdb::unique_xmalloc_ptr<char> instead of a char *, and update
13216 callers.
13217
13218 2019-02-06 John Baldwin <jhb@FreeBSD.org>
13219
13220 * fbsd-nat.c (fbsd_fetch_cmdline): Join arguments with spaces.
13221
13222 2019-02-05 Tom Tromey <tom@tromey.com>
13223
13224 * target.c (target_stack::unpush): Move assertion earlier.
13225
13226 2019-01-30 Tom Tromey <tom@tromey.com>
13227
13228 PR python/23615:
13229 * python/python.c (execute_gdb_command): Use gdbpy_allow_threads.
13230 (gdbpy_parse_and_eval): Likewise.
13231 * python/python-internal.h (gdbpy_allow_threads): New class.
13232
13233 2019-01-28 John Baldwin <jhb@FreeBSD.org>
13234
13235 * aarch64-fbsd-tdep.c (aarch64_fbsd_gregmap)
13236 (aarch64_fbsd_fpregmap): Move earlier.
13237 (AARCH64_MCONTEXT_REG_SIZE, AARCH64_MCONTEXT_FPREG_SIZE): Delete.
13238 (aarch64_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
13239 instead of individual calls to trad_frame_set_reg_addr.
13240 * arm-fbsd-tdep.c (arm_fbsd_gregmap, arm_fbsd_vfpregmap): Move
13241 earlier.
13242 (ARM_MCONTEXT_REG_SIZE, ARM_MCONTEXT_VFP_REG_SIZE): Delete.
13243 (arm_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
13244 instead of individual calls to trad_frame_set_reg_addr.
13245
13246 2019-01-28 Alan Hayward <alan.hayward@arm.com>
13247
13248 * CONTRIBUTE: Replace contribution list with wiki link.
13249
13250 2019-01-25 Tom Tromey <tom@tromey.com>
13251
13252 * Makefile.in (GDB_CFLAGS): Don't add -I for common.
13253
13254 2019-01-25 Tom Tromey <tom@tromey.com>
13255
13256 * xtensa-linux-nat.c: Fix common/ includes.
13257 * xml-support.h: Fix common/ includes.
13258 * xml-support.c: Fix common/ includes.
13259 * x86-linux-nat.c: Fix common/ includes.
13260 * windows-nat.c: Fix common/ includes.
13261 * varobj.h: Fix common/ includes.
13262 * varobj.c: Fix common/ includes.
13263 * value.c: Fix common/ includes.
13264 * valops.c: Fix common/ includes.
13265 * utils.c: Fix common/ includes.
13266 * unittests/xml-utils-selftests.c: Fix common/ includes.
13267 * unittests/utils-selftests.c: Fix common/ includes.
13268 * unittests/unpack-selftests.c: Fix common/ includes.
13269 * unittests/tracepoint-selftests.c: Fix common/ includes.
13270 * unittests/style-selftests.c: Fix common/ includes.
13271 * unittests/string_view-selftests.c: Fix common/ includes.
13272 * unittests/scoped_restore-selftests.c: Fix common/ includes.
13273 * unittests/scoped_mmap-selftests.c: Fix common/ includes.
13274 * unittests/scoped_fd-selftests.c: Fix common/ includes.
13275 * unittests/rsp-low-selftests.c: Fix common/ includes.
13276 * unittests/parse-connection-spec-selftests.c: Fix common/
13277 includes.
13278 * unittests/optional-selftests.c: Fix common/ includes.
13279 * unittests/offset-type-selftests.c: Fix common/ includes.
13280 * unittests/observable-selftests.c: Fix common/ includes.
13281 * unittests/mkdir-recursive-selftests.c: Fix common/ includes.
13282 * unittests/memrange-selftests.c: Fix common/ includes.
13283 * unittests/memory-map-selftests.c: Fix common/ includes.
13284 * unittests/lookup_name_info-selftests.c: Fix common/ includes.
13285 * unittests/function-view-selftests.c: Fix common/ includes.
13286 * unittests/environ-selftests.c: Fix common/ includes.
13287 * unittests/copy_bitwise-selftests.c: Fix common/ includes.
13288 * unittests/common-utils-selftests.c: Fix common/ includes.
13289 * unittests/cli-utils-selftests.c: Fix common/ includes.
13290 * unittests/array-view-selftests.c: Fix common/ includes.
13291 * ui-file.c: Fix common/ includes.
13292 * tui/tui-io.c: Fix common/ includes.
13293 * tracepoint.h: Fix common/ includes.
13294 * tracepoint.c: Fix common/ includes.
13295 * tracefile-tfile.c: Fix common/ includes.
13296 * top.h: Fix common/ includes.
13297 * top.c: Fix common/ includes.
13298 * thread.c: Fix common/ includes.
13299 * target/waitstatus.h: Fix common/ includes.
13300 * target/waitstatus.c: Fix common/ includes.
13301 * target.h: Fix common/ includes.
13302 * target.c: Fix common/ includes.
13303 * target-memory.c: Fix common/ includes.
13304 * target-descriptions.c: Fix common/ includes.
13305 * symtab.h: Fix common/ includes.
13306 * symfile.c: Fix common/ includes.
13307 * stap-probe.c: Fix common/ includes.
13308 * spu-linux-nat.c: Fix common/ includes.
13309 * sparc-nat.c: Fix common/ includes.
13310 * source.c: Fix common/ includes.
13311 * solib.c: Fix common/ includes.
13312 * solib-target.c: Fix common/ includes.
13313 * ser-unix.c: Fix common/ includes.
13314 * ser-tcp.c: Fix common/ includes.
13315 * ser-pipe.c: Fix common/ includes.
13316 * ser-base.c: Fix common/ includes.
13317 * selftest-arch.c: Fix common/ includes.
13318 * s12z-tdep.c: Fix common/ includes.
13319 * rust-exp.y: Fix common/ includes.
13320 * rs6000-aix-tdep.c: Fix common/ includes.
13321 * riscv-tdep.c: Fix common/ includes.
13322 * remote.c: Fix common/ includes.
13323 * remote-notif.h: Fix common/ includes.
13324 * remote-fileio.h: Fix common/ includes.
13325 * remote-fileio.c: Fix common/ includes.
13326 * regcache.h: Fix common/ includes.
13327 * regcache.c: Fix common/ includes.
13328 * record-btrace.c: Fix common/ includes.
13329 * python/python.c: Fix common/ includes.
13330 * python/py-type.c: Fix common/ includes.
13331 * python/py-inferior.c: Fix common/ includes.
13332 * progspace.h: Fix common/ includes.
13333 * producer.c: Fix common/ includes.
13334 * procfs.c: Fix common/ includes.
13335 * proc-api.c: Fix common/ includes.
13336 * printcmd.c: Fix common/ includes.
13337 * ppc-linux-nat.c: Fix common/ includes.
13338 * parser-defs.h: Fix common/ includes.
13339 * osdata.c: Fix common/ includes.
13340 * obsd-nat.c: Fix common/ includes.
13341 * nat/x86-linux.c: Fix common/ includes.
13342 * nat/x86-linux-dregs.c: Fix common/ includes.
13343 * nat/x86-dregs.h: Fix common/ includes.
13344 * nat/x86-dregs.c: Fix common/ includes.
13345 * nat/ppc-linux.c: Fix common/ includes.
13346 * nat/mips-linux-watch.h: Fix common/ includes.
13347 * nat/mips-linux-watch.c: Fix common/ includes.
13348 * nat/linux-waitpid.c: Fix common/ includes.
13349 * nat/linux-ptrace.h: Fix common/ includes.
13350 * nat/linux-ptrace.c: Fix common/ includes.
13351 * nat/linux-procfs.c: Fix common/ includes.
13352 * nat/linux-personality.c: Fix common/ includes.
13353 * nat/linux-osdata.c: Fix common/ includes.
13354 * nat/linux-namespaces.c: Fix common/ includes.
13355 * nat/linux-btrace.h: Fix common/ includes.
13356 * nat/linux-btrace.c: Fix common/ includes.
13357 * nat/fork-inferior.c: Fix common/ includes.
13358 * nat/amd64-linux-siginfo.c: Fix common/ includes.
13359 * nat/aarch64-sve-linux-ptrace.c: Fix common/ includes.
13360 * nat/aarch64-linux.c: Fix common/ includes.
13361 * nat/aarch64-linux-hw-point.h: Fix common/ includes.
13362 * nat/aarch64-linux-hw-point.c: Fix common/ includes.
13363 * namespace.h: Fix common/ includes.
13364 * mips-linux-tdep.c: Fix common/ includes.
13365 * minsyms.c: Fix common/ includes.
13366 * mi/mi-parse.h: Fix common/ includes.
13367 * mi/mi-main.c: Fix common/ includes.
13368 * mi/mi-cmd-env.c: Fix common/ includes.
13369 * memrange.h: Fix common/ includes.
13370 * memattr.c: Fix common/ includes.
13371 * maint.h: Fix common/ includes.
13372 * maint.c: Fix common/ includes.
13373 * main.c: Fix common/ includes.
13374 * machoread.c: Fix common/ includes.
13375 * location.c: Fix common/ includes.
13376 * linux-thread-db.c: Fix common/ includes.
13377 * linux-nat.c: Fix common/ includes.
13378 * linux-fork.c: Fix common/ includes.
13379 * inline-frame.c: Fix common/ includes.
13380 * infrun.c: Fix common/ includes.
13381 * inflow.c: Fix common/ includes.
13382 * inferior.h: Fix common/ includes.
13383 * inferior.c: Fix common/ includes.
13384 * infcmd.c: Fix common/ includes.
13385 * inf-ptrace.c: Fix common/ includes.
13386 * inf-child.c: Fix common/ includes.
13387 * ia64-linux-nat.c: Fix common/ includes.
13388 * i387-tdep.c: Fix common/ includes.
13389 * i386-tdep.c: Fix common/ includes.
13390 * i386-linux-tdep.c: Fix common/ includes.
13391 * i386-linux-nat.c: Fix common/ includes.
13392 * i386-go32-tdep.c: Fix common/ includes.
13393 * i386-fbsd-tdep.c: Fix common/ includes.
13394 * i386-fbsd-nat.c: Fix common/ includes.
13395 * guile/scm-type.c: Fix common/ includes.
13396 * guile/guile.c: Fix common/ includes.
13397 * go32-nat.c: Fix common/ includes.
13398 * gnu-nat.c: Fix common/ includes.
13399 * gdbthread.h: Fix common/ includes.
13400 * gdbarch-selftests.c: Fix common/ includes.
13401 * gdb_usleep.c: Fix common/ includes.
13402 * gdb_select.h: Fix common/ includes.
13403 * gdb_bfd.c: Fix common/ includes.
13404 * gcore.c: Fix common/ includes.
13405 * fork-child.c: Fix common/ includes.
13406 * findvar.c: Fix common/ includes.
13407 * fbsd-nat.c: Fix common/ includes.
13408 * event-top.c: Fix common/ includes.
13409 * event-loop.c: Fix common/ includes.
13410 * dwarf2read.c: Fix common/ includes.
13411 * dwarf2loc.c: Fix common/ includes.
13412 * dwarf2-frame.c: Fix common/ includes.
13413 * dwarf-index-cache.c: Fix common/ includes.
13414 * dtrace-probe.c: Fix common/ includes.
13415 * disasm-selftests.c: Fix common/ includes.
13416 * defs.h: Fix common/ includes.
13417 * csky-tdep.c: Fix common/ includes.
13418 * cp-valprint.c: Fix common/ includes.
13419 * cp-support.h: Fix common/ includes.
13420 * cp-support.c: Fix common/ includes.
13421 * corelow.c: Fix common/ includes.
13422 * completer.h: Fix common/ includes.
13423 * completer.c: Fix common/ includes.
13424 * compile/compile.c: Fix common/ includes.
13425 * compile/compile-loc2c.c: Fix common/ includes.
13426 * compile/compile-cplus-types.c: Fix common/ includes.
13427 * compile/compile-cplus-symbols.c: Fix common/ includes.
13428 * command.h: Fix common/ includes.
13429 * cli/cli-dump.c: Fix common/ includes.
13430 * cli/cli-cmds.c: Fix common/ includes.
13431 * charset.c: Fix common/ includes.
13432 * build-id.c: Fix common/ includes.
13433 * btrace.h: Fix common/ includes.
13434 * btrace.c: Fix common/ includes.
13435 * breakpoint.h: Fix common/ includes.
13436 * breakpoint.c: Fix common/ includes.
13437 * ax.h:
13438 (enum agent_op): Fix common/ includes.
13439 * ax-general.c (struct aop_map): Fix common/ includes.
13440 * ax-gdb.c: Fix common/ includes.
13441 * auxv.c: Fix common/ includes.
13442 * auto-load.c: Fix common/ includes.
13443 * arm-tdep.c: Fix common/ includes.
13444 * arch/riscv.c: Fix common/ includes.
13445 * arch/ppc-linux-common.c: Fix common/ includes.
13446 * arch/i386.c: Fix common/ includes.
13447 * arch/arm.c: Fix common/ includes.
13448 * arch/arm-linux.c: Fix common/ includes.
13449 * arch/arm-get-next-pcs.c: Fix common/ includes.
13450 * arch/amd64.c: Fix common/ includes.
13451 * arch/aarch64.c: Fix common/ includes.
13452 * arch/aarch64-insn.c: Fix common/ includes.
13453 * arch-utils.c: Fix common/ includes.
13454 * amd64-windows-tdep.c: Fix common/ includes.
13455 * amd64-tdep.c: Fix common/ includes.
13456 * amd64-sol2-tdep.c: Fix common/ includes.
13457 * amd64-obsd-tdep.c: Fix common/ includes.
13458 * amd64-nbsd-tdep.c: Fix common/ includes.
13459 * amd64-linux-tdep.c: Fix common/ includes.
13460 * amd64-linux-nat.c: Fix common/ includes.
13461 * amd64-fbsd-tdep.c: Fix common/ includes.
13462 * amd64-fbsd-nat.c: Fix common/ includes.
13463 * amd64-dicos-tdep.c: Fix common/ includes.
13464 * amd64-darwin-tdep.c: Fix common/ includes.
13465 * agent.c: Fix common/ includes.
13466 * ada-lang.h: Fix common/ includes.
13467 * ada-lang.c: Fix common/ includes.
13468 * aarch64-tdep.c: Fix common/ includes.
13469
13470 2019-01-25 Tom Tromey <tom@tromey.com>
13471
13472 * common/create-version.sh: Use common/version.h.
13473
13474 2019-01-24 Pedro Alves <palves@redhat.com>
13475
13476 * infrun.c (signal_stop, signal_print, signal_program)
13477 (signal_catch, signal_pass): Now arrays instead of pointers.
13478 (update_signals_program_target, do_target_resume)
13479 (signal_catch_update, handle_command, _initialize_infrun): Adjust.
13480 * linux-nat.c (linux_nat_target::pass_signals)
13481 (linux_nat_target::create_inferior, linux_nat_target::attach):
13482 Adjust.
13483 * linux-nat.h (linux_nat_target::pass_signals): Adjust.
13484 * nto-procfs.c (nto_procfs_target::pass_signals): Adjust.
13485 * procfs.c (procfs_target::pass_signals): Adjust.
13486 * record-full.c (record_full_target::resume): Adjust.
13487 * remote.c (remote_target::pass_signals)
13488 (remote_target::program_signals): Adjust.
13489 * target-debug.h (target_debug_print_signals): Now takes a
13490 gdb::array_view as parameter. Adjust.
13491 * target.h (target_ops) <pass_signals, program_signals>: Replace
13492 pointer and length parameters with gdb::array_view.
13493 (target_pass_signals, target_program_signals): Likewise.
13494 * target-delegates.c: Regenerate.
13495
13496 2019-01-24 Pedro Alves <palves@redhat.com>
13497
13498 * common/forward-scope-exit.h
13499 (forward_scope_exit::forward_scope_exit): Pass arguments to
13500 m_bind_function directly, instead of creating a std::bind and
13501 copying that.
13502
13503 2019-01-24 Alan Hayward <alan.hayward@arm.com>
13504
13505 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
13506 for static members.
13507 (pass_in_v_vfp_candidate): Likewise.
13508
13509 2019-01-23 Tom Tromey <tom@tromey.com>
13510 Pedro Alves <palves@redhat.com>
13511
13512 * regcache.c (class regcache_invalidator): Remove.
13513 (regcache::raw_write): Use make_scope_exit.
13514
13515 2019-01-23 Tom Tromey <tom@tromey.com>
13516
13517 * ui-out.h (class ui_out_emit_type): Update comment.
13518
13519 2019-01-23 Tom Tromey <tom@tromey.com>
13520
13521 * infrun.c (fetch_inferior_event): Update comment.
13522
13523 2019-01-23 Tom Tromey <tom@tromey.com>
13524 Pedro Alves <palves@redhat.com>
13525
13526 * infrun.c (reinstall_readline_callback_handler_cleanup): Remove
13527 parameter.
13528 (fetch_inferior_event): Use SCOPE_EXIT.
13529
13530
13531 2019-01-23 Tom Tromey <tom@tromey.com>
13532 Pedro Alves <palves@redhat.com>
13533
13534 * infrun.c (disable_thread_events): Delete.
13535 (stop_all_threads): Use SCOPE_EXIT.
13536
13537 2019-01-23 Tom Tromey <tom@tromey.com>
13538 Pedro Alves <palves@redhat.com>
13539
13540 * symfile.c: Include forward-scope-exit.h.
13541 (clear_symtab_users_cleanup): Replace forward declaration with
13542 a FORWARD_SCOPE_EXIT.
13543 (syms_from_objfile_1): Use the forward_scope_exit and
13544 gdb::optional instead of cleanup_function.
13545 (reread_symbols): Use the forward_scope_exit instead of
13546 cleanup_function.
13547 (clear_symtab_users_cleanup): Remove function.
13548
13549 2019-01-23 Tom Tromey <tom@tromey.com>
13550 Pedro Alves <palves@redhat.com>
13551
13552 * linux-nat.c: Include scope-exit.h.
13553 (cleanup_target_stop): Remove.
13554 (linux_nat_target::static_tracepoint_markers_by_strid): Use
13555 SCOPE_EXIT.
13556
13557 2019-01-23 Tom Tromey <tom@tromey.com>
13558 Pedro Alves <palves@redhat.com>
13559
13560 * infcall.c (cleanup_delete_std_terminate_breakpoint): Remove.
13561 (call_function_by_hand_dummy): Use SCOPE_EXIT.
13562
13563 2019-01-23 Tom Tromey <tom@tromey.com>
13564 Andrew Burgess <andrew.burgess@embecosm.com>
13565 Pedro Alves <palves@redhat.com>
13566
13567 * infrun.c (fetch_inferior_event): Use scope_exit.
13568 * utils.h (make_bpstat_clear_actions_cleanup): Don't declare.
13569 * top.c (execute_command): Use scope_exit.
13570 * breakpoint.c (bpstat_do_actions): Use scope_exit.
13571 * utils.c (do_bpstat_clear_actions_cleanup)
13572 (make_bpstat_clear_actions_cleanup): Remove.
13573
13574 2019-01-23 Tom Tromey <tom@tromey.com>
13575 Pedro Alves <palves@redhat.com>
13576
13577 * infrun.c: Include "common/scope-exit.h"
13578 (delete_just_stopped_threads_infrun_breakpoints_cleanup): Remove.
13579 (wait_for_inferior): Use SCOPE_EXIT.
13580 (fetch_inferior_event): Use scope_exit.
13581
13582 2019-01-23 Tom Tromey <tom@tromey.com>
13583 Pedro Alves <palves@redhat.com>
13584
13585 * breakpoint.c (create_breakpoint): Remove cleanup.
13586
13587 2019-01-23 Tom Tromey <tom@tromey.com>
13588 Andrew Burgess <andrew.burgess@embecosm.com>
13589 Pedro Alves <palves@redhat.com>
13590
13591 2019-01-23 Pedro Alves <palves@redhat.com>
13592
13593 * gdbarch-selftests.c (struct on_exit): Use SCOPE_EXIT.
13594
13595 2019-01-23 Pedro Alves <palves@redhat.com>
13596 Andrew Burgess <andrew.burgess@embecosm.com>
13597
13598 * gdbthread.h: Include "common/forward-scope-exit.h".
13599 (scoped_finish_thread_state): Redefine custom class in terms of
13600 forward_scope_exit.
13601
13602 2019-01-23 Pedro Alves <palves@redhat.com>
13603 Andrew Burgess <andrew.burgess@embecosm.com>
13604
13605 * common/forward-scope-exit.h: New file.
13606
13607 2019-01-23 Pedro Alves <palves@redhat.com>
13608 Andrew Burgess <andrew.burgess@embecosm.com>
13609 Tom Tromey <tom@tromey.com>
13610
13611 * common/scope-exit.h: New file.
13612
13613 2019-01-23 Pedro Alves <palves@redhat.com>
13614
13615 * common/preprocessor.h (ESC): Rename to ...
13616 (ESC_PARENS): ... this.
13617 * common/valid-expr.h (CHECK_VALID_EXPR_1, CHECK_VALID_EXPR_2)
13618 (CHECK_VALID_EXPR_3, CHECK_VALID_EXPR_4): Adjust.
13619
13620 2019-01-23 Tom Tromey <tom@tromey.com>
13621
13622 * language.h (class scoped_switch_to_sym_language_if_auto):
13623 Initialize m_lang in both cases.
13624
13625 2019-01-23 Alan Hayward <alan.hayward@arm.com>
13626
13627 * nat/aarch64-linux.c (aarch64_linux_new_thread): Replace XNEW
13628 with XCNEW.
13629
13630 2019-01-22 Tom Tromey <tom@tromey.com>
13631
13632 * corelow.c: Do not include sys/file.h.
13633
13634 2019-01-22 Tom Tromey <tom@tromey.com>
13635
13636 * tui/tui-wingeneral.h: Include gdb_curses.h.
13637
13638 2019-01-22 Tom Tromey <tom@tromey.com>
13639
13640 * source-cache.h (class source_cache) <get_source_lines,
13641 get_plain_source_lines, extract_lines>: Rename "lines" parameter.
13642
13643 2019-01-22 Tom Tromey <tom@tromey.com>
13644
13645 * remote-fileio.h (struct remote_target): Declare.
13646
13647 2019-01-22 Tom Tromey <tom@tromey.com>
13648
13649 * python/py-arch.c: Do not include py-ref.h.
13650 * python/py-bpevent.c: Do not include py-ref.h.
13651 * python/py-cmd.c: Do not include py-ref.h.
13652 * python/py-continueevent.c: Do not include py-ref.h.
13653 * python/py-event.h: Do not include py-ref.h.
13654 * python/py-evtregistry.c: Do not include py-ref.h.
13655 * python/py-finishbreakpoint.c: Do not include py-ref.h.
13656 * python/py-frame.c: Do not include py-ref.h.
13657 * python/py-framefilter.c: Do not include py-ref.h.
13658 * python/py-function.c: Do not include py-ref.h.
13659 * python/py-infevents.c: Do not include py-ref.h.
13660 * python/py-linetable.c: Do not include py-ref.h.
13661 * python/py-objfile.c: Do not include py-ref.h.
13662 * python/py-param.c: Do not include py-ref.h.
13663 * python/py-prettyprint.c: Do not include py-ref.h.
13664 * python/py-progspace.c: Do not include py-ref.h.
13665 * python/py-symbol.c: Do not include py-ref.h.
13666 * python/py-symtab.c: Do not include py-ref.h.
13667 * python/py-type.c: Do not include py-ref.h.
13668 * python/py-unwind.c: Do not include py-ref.h.
13669 * python/py-utils.c: Do not include py-ref.h.
13670 * python/py-value.c: Do not include py-ref.h.
13671 * python/py-varobj.c: Do not include py-ref.h.
13672 * python/py-xmethods.c: Do not include py-ref.h.
13673 * python/python.c: Do not include py-ref.h.
13674 * varobj.c: Do not include py-ref.h.
13675
13676 2019-01-22 Tom Tromey <tom@tromey.com>
13677
13678 * objfiles.h (struct objfile_per_bfd_storage): Use "struct"
13679 keyword for bcache.
13680
13681 2019-01-22 Tom Tromey <tom@tromey.com>
13682
13683 * compile/compile-cplus-types.c: Remove a comment by #include.
13684
13685 2019-01-22 Tom Tromey <tom@tromey.com>
13686
13687 * compile/gcc-c-plugin.h: Include compile-internal.h.
13688
13689 2019-01-22 Tom Tromey <tom@tromey.com>
13690
13691 * stabsread.c (EXTERN): Do not define.
13692 (symnum, next_symbol_text_func, processing_gcc_compilation)
13693 (within_function, global_sym_chain, global_stabs)
13694 (previous_stab_code, this_object_header_files)
13695 (n_this_object_header_files)
13696 (n_allocated_this_object_header_files): Define.
13697 * stabsread.h (EXTERN): Never define. Use "extern".
13698
13699 2019-01-22 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13700
13701 * event-top.c (handle_line_of_input): use unique_xmalloc_ptr for
13702 history_value.
13703
13704 2019-01-21 Tom Tromey <tom@tromey.com>
13705
13706 * ui-out.c: Fix includes.
13707 * tui/tui-source.c: Fix includes.
13708 * target.c: Fix includes.
13709 * remote.c: Fix includes.
13710 * regcache.c: Fix includes.
13711 * python/py-block.c: Fix includes.
13712 * printcmd.c: Fix includes.
13713 * or1k-tdep.c: Fix includes.
13714 * mi/mi-main.c: Fix includes.
13715 * m32r-tdep.c: Fix includes.
13716 * csky-tdep.c: Fix includes.
13717 * compile/compile-cplus-types.c: Fix includes.
13718 * cli/cli-interp.c: Fix includes.
13719
13720 2019-01-21 Alan Hayward <alan.hayward@arm.com>
13721
13722 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
13723 for padding.
13724
13725 2019-01-16 Tom Tromey <tom@tromey.com>
13726
13727 * objfiles.h (struct minimal_symbol_iterator): Rename. Move
13728 earlier.
13729 (struct objfile) <msymbols_range>: Move from top level.
13730 <msymbols>: New method.
13731 (class objfile_msymbols): Remove.
13732 * symtab.c (default_collect_symbol_completion_matches_break_on):
13733 Update.
13734 * symmisc.c (dump_msymbols): Update.
13735 * stabsread.c (scan_file_globals): Update.
13736 * objc-lang.c (info_selectors_command, info_classes_command)
13737 (find_methods): Update.
13738 * minsyms.c (find_solib_trampoline_target): Update.
13739 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Update.
13740 * coffread.c (coff_symfile_read): Update.
13741 * ada-lang.c (ada_lookup_simple_minsym)
13742 (ada_collect_symbol_completion_matches): Update.
13743
13744 2019-01-16 Tom Tromey <tom@tromey.com>
13745
13746 * objfiles.h (class objfile_msymbols) <iterator>: Change argument
13747 type. Remove no-argument constructor.
13748 <iterator::operator++>: Simplify.
13749 <begin>: Update.
13750 <end>: Use minimal_symbol_count.
13751
13752 2019-01-16 Tom Tromey <tom@tromey.com>
13753
13754 * objfiles.h (struct objfile) <psymtabs>: New method.
13755 (class objfile_psymtabs): Remove.
13756 * psymtab.h (class psymtab_storage) <partial_symtab_range>: New
13757 typedef.
13758 <range>: New method.
13759 (require_partial_symbols): Change return type.
13760 * psymtab.c (require_partial_symbols)
13761 (psym_expand_symtabs_matching): Update.
13762 * mdebugread.c (parse_partial_symbols): Update.
13763 * dbxread.c (dbx_end_psymtab): Update.
13764
13765 2019-01-15 Tom Tromey <tom@tromey.com>
13766
13767 * symtab.c (lookup_objfile_from_block)
13768 (lookup_symbol_in_objfile_symtabs)
13769 (basic_lookup_transparent_type_1, find_pc_sect_compunit_symtab)
13770 (find_line_symtab, info_sources_command)
13771 (default_collect_symbol_completion_matches_break_on)
13772 (make_source_files_completion_list): Update.
13773 * symmisc.c (print_objfile_statistics, dump_objfile)
13774 (maintenance_print_symbols, maintenance_info_symtabs)
13775 (maintenance_check_symtabs, maintenance_info_line_tables):
13776 Update.
13777 * source.c (select_source_symtab)
13778 (forget_cached_source_info_for_objfile): Update.
13779 * objfiles.h (class objfile_compunits): Remove.
13780 (struct objfile) <compunits_range>: New typedef.
13781 (compunits): New method.
13782 * objfiles.c (objfile_relocate1): Update.
13783 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
13784 * maint.c (count_symtabs_and_blocks): Update.
13785 * linespec.c (iterate_over_all_matching_symtabs): Update.
13786 * cp-support.c (add_symbol_overload_list_qualified): Update.
13787 * coffread.c (coff_symtab_read): Update.
13788 * ada-lang.c (add_nonlocal_symbols)
13789 (ada_collect_symbol_completion_matches)
13790 (ada_add_global_exceptions): Update.
13791
13792 2019-01-15 Tom Tromey <tom@tromey.com>
13793
13794 * progspace.h (program_space) <objfiles_safe_range>: New
13795 typedef.
13796 <objfiles_safe>: New method.
13797 * objfiles.h (class all_objfiles_safe): Remove.
13798 * objfiles.c (free_all_objfiles, objfile_purge_solibs): Update.
13799 * jit.c (jit_inferior_exit_hook): Update.
13800
13801 2019-01-17 Tom Tromey <tom@tromey.com>
13802
13803 * progspace.h (program_space) <objfiles_range>: New typedef.
13804 <objfiles>: New method.
13805 <objfiles_head>: Rename from objfiles.
13806 (object_files): Update.
13807 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Update.
13808 * guile/scm-pretty-print.c
13809 (ppscm_find_pretty_printer_from_objfiles): Update.
13810 * guile/scm-objfile.c (gdbscm_objfiles): Update.
13811 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers):
13812 Update.
13813 * python/py-progspace.c (pspy_get_objfiles): Update.
13814 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
13815 Update.
13816 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
13817 (objfpy_lookup_objfile_by_build_id): Update.
13818 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
13819 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
13820 Update.
13821 * symtab.c (iterate_over_symtabs, matching_obj_sections)
13822 (expand_symtab_containing_pc, lookup_objfile_from_block)
13823 (lookup_static_symbol, basic_lookup_transparent_type)
13824 (find_pc_sect_compunit_symtab, find_symbol_at_address)
13825 (find_line_symtab, info_sources_command)
13826 (default_collect_symbol_completion_matches_break_on)
13827 (make_source_files_completion_list, find_main_name): Update.
13828 * symmisc.c (print_symbol_bcache_statistics)
13829 (print_objfile_statistics, maintenance_print_symbols)
13830 (maintenance_print_msymbols, maintenance_print_objfiles)
13831 (maintenance_info_symtabs, maintenance_check_symtabs)
13832 (maintenance_expand_symtabs, maintenance_info_line_tables):
13833 Update.
13834 * symfile.c (remove_symbol_file_command, overlay_invalidate_all)
13835 (find_pc_overlay, find_pc_mapped_section, list_overlays_command)
13836 (map_overlay_command, unmap_overlay_command)
13837 (simple_overlay_update, expand_symtabs_matching)
13838 (map_symbol_filenames): Update.
13839 * symfile-debug.c (set_debug_symfile): Update.
13840 * spu-tdep.c (spu_overlay_update, spu_objfile_from_frame):
13841 Update.
13842 * source.c (select_source_symtab, forget_cached_source_info):
13843 Update.
13844 * solib.c (solib_read_symbols): Update.
13845 * solib-spu.c (append_ocl_sos): Update.
13846 * psymtab.c (maintenance_print_psymbols)
13847 (maintenance_info_psymtabs, maintenance_check_psymtabs): Update.
13848 * probe.c (parse_probes_in_pspace, find_probe_by_pc): Update.
13849 * printcmd.c (info_symbol_command): Update.
13850 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created):
13851 Update.
13852 * objfiles.h (class all_objfiles): Remove.
13853 * objfiles.c (have_partial_symbols, have_full_symbols)
13854 (have_minimal_symbols, qsort_cmp, update_section_map)
13855 (shared_objfile_contains_address_p)
13856 (default_iterate_over_objfiles_in_search_order): Update.
13857 * objc-lang.c (info_selectors_command, info_classes_command)
13858 (find_methods): Update.
13859 * minsyms.c (find_solib_trampoline_target): Update.
13860 * maint.c (maintenance_info_sections)
13861 (maintenance_translate_address, count_symtabs_and_blocks):
13862 Update.
13863 * main.c (captured_main_1): Update.
13864 * linux-thread-db.c (try_thread_db_load_from_pdir)
13865 (has_libpthread): Update.
13866 * linespec.c (iterate_over_all_matching_symtabs)
13867 (search_minsyms_for_name): Update.
13868 * jit.c (jit_find_objf_with_entry_addr): Update.
13869 * hppa-tdep.c (find_unwind_entry)
13870 (hppa_lookup_stub_minimal_symbol): Update.
13871 * gcore.c (gcore_create_callback, objfile_find_memory_regions):
13872 Update.
13873 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
13874 (elf_gnu_ifunc_resolve_by_got): Update.
13875 * dwarf2-frame.c (dwarf2_frame_find_fde): Update.
13876 * dwarf-index-write.c (save_gdb_index_command): Update.
13877 * cp-support.c (add_symbol_overload_list_qualified): Update.
13878 * breakpoint.c (create_overlay_event_breakpoint)
13879 (create_longjmp_master_breakpoint)
13880 (create_std_terminate_master_breakpoint)
13881 (create_exception_master_breakpoint): Update.
13882 * blockframe.c (find_pc_partial_function): Update.
13883 * ada-lang.c (ada_lookup_simple_minsym, add_nonlocal_symbols)
13884 (ada_collect_symbol_completion_matches)
13885 (ada_add_global_exceptions): Update.
13886
13887 2019-01-17 Tom Tromey <tom@tromey.com>
13888
13889 * solib-target.c (lm_info_target_p): Remove typedef. Don't
13890 declare VEC.
13891 (solib_target_parse_libraries): Change return type.
13892 (library_list_start_segment, library_list_start_section)
13893 (library_list_end_library, library_list_start_library); Update.
13894 (solib_target_free_library_list): Remove.
13895 (solib_target_parse_libraries): Remove cleanup. Change return
13896 type.
13897 (solib_target_current_sos): Update.
13898
13899 2019-01-17 Tom Tromey <tromey@bapiya>
13900
13901 * valprint.c: Replace "the the" with "the".
13902 * symtab.c: Replace "the the" with "the".
13903 * solib.c: Replace "the the" with "the".
13904 * solib-dsbt.c: Replace "the the" with "the".
13905 * linespec.c: Replace "the the" with "the".
13906 * dwarf2loc.h: Replace "the the" with "the".
13907 * amd64-windows-tdep.c: Replace "the the" with "the".
13908 * aarch64-tdep.c: Replace "the the" with "the".
13909
13910 2019-01-16 Keith Seitz <keiths@redhat.com>
13911
13912 PR gdb/23773
13913 * dwarf2read.c (dwarf2_cu) <ancestor>: New field.
13914 <builder>: Rename to ..
13915 <m_builder>: ... this and make private.
13916 (dwarf2_cu::get_builder): New method. Change all users of
13917 `builder' to use this method.
13918 (dwarf2_start_symtab): Move to ...
13919 (dwarf2_cu::start_symtab): ... here. Update all callers
13920 (setup_type_unit_groups): Move to ...
13921 (dwarf2_cu::setup_type_unit_groups): ... here. Update all
13922 callers.
13923 (dwarf2_cu::reset_builder): New method.
13924 (process_full_compunit, process_full_type_unit): Use
13925 dwarf2_cu::reset_builder.
13926 (follow_die_offset): Record the ancestor CU if it is different
13927 from the followed DIE's CU.
13928 (follow_die_sig_1): Likewise.
13929
13930 2019-01-15 Tom Tromey <tom@tromey.com>
13931
13932 * remote.c (class remote_state) <buf>: Now a char_vector.
13933 <buf_size>: Remove.
13934 (remote_target::getpkt): Change type of buf. Remove sizeof_buf
13935 parameter.
13936 (remote_target::getpkt_or_notif_sane_1)
13937 (remote_target::getpkt_sane)
13938 (remote_target::getpkt_or_notif_sane): Likewise.
13939 (class remote_target) <putpkt>: New overload.
13940 (remote_target::read_frame): Change type of "buf_p". Remove
13941 sizeof_p parameter.
13942 (packet_ok): New overload.
13943 (packet_check_result): New overload.
13944 Update all uses.
13945
13946 2019-01-14 Tom Tromey <tom@tromey.com>
13947
13948 * remote-notif.c (handle_notification, remote_notif_ack)
13949 (remote_notif_parse): Make "buf" const.
13950 * remote-notif.h (struct notif_client) <parse, ack>: Make "buf"
13951 const.
13952 (remote_notif_parse, remote_notif_ack, handle_notification):
13953 Likewise.
13954 * remote.c (remote_notif_stop_parse): Make "buf" const.
13955 (remote_target::remote_parse_stop_reply): Make "buf" const.
13956 (remote_notif_stop_ack): Make "buf" const.
13957
13958 2019-01-14 Tom Tromey <tom@tromey.com>
13959
13960 * remote.c (remote_console_output): Make parameter const.
13961
13962 2019-01-14 Tom Tromey <tom@tromey.com>
13963
13964 * target-debug.h (target_debug_print_signals): Constify.
13965 * nto-procfs.c (nto_procfs_target::pass_signals): Update.
13966 * procfs.c (procfs_target::pass_signals): Update.
13967 * linux-nat.c (linux_nat_target::pass_signals): Update.
13968 * linux-nat.h (class linux_nat_target) <pass_signals>: Update.
13969 * target-delegates.c: Rebuild.
13970 * remote.c (remote_target::program_signals): Update.
13971 (remote_target::pass_signals): Update.
13972 * target.c (target_pass_signals): Constify argument.
13973 (target_program_signals): Likewise.
13974 * target.h (struct target_ops) <pass_signals, program_signals>:
13975 Constify argument.
13976 (target_pass_signals, target_program_signals): Constify argument.
13977
13978 2019-01-14 Tom Tromey <tom@tromey.com>
13979
13980 PR tui/28819:
13981 * tui/tui-io.c (gdb_wgetch): Print \r when needed.
13982
13983 2019-01-14 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
13984
13985 * ppc-tdep.h (struct gdbarch_tdep) <ppc_v0_alias_regnum>: New
13986 field.
13987 * rs6000-tdep.c: Include reggroups.h.
13988 (IS_V_ALIAS_PSEUDOREG): Define.
13989 (rs6000_register_name): Return names for the "vX" aliases.
13990 (rs6000_pseudo_register_type): Return type for the "vX" aliases.
13991 (rs6000_pseudo_register_reggroup_p): Restore. Handle "vX"
13992 aliases. Call default_register_reggroup_p for all other
13993 pseudo-registers.
13994 (v_alias_pseudo_register_read, v_alias_pseudo_register_write):
13995 New functions.
13996 (rs6000_pseudo_register_read, rs6000_pseudo_register_write):
13997 Handle "vX" aliases.
13998 (v_alias_pseudo_register_collect): New function.
13999 (rs6000_ax_pseudo_register_collect): Handle "vX" aliases.
14000 (rs6000_gdbarch_init): Initialize "vX" aliases as
14001 pseudo-registers. Restore registration of
14002 rs6000_pseudo_register_reggroup_p with
14003 set_tdesc_pseudo_register_reggroup_p.
14004
14005 2019-01-13 Max Filippov <jcmvbkbc@gmail.com>
14006
14007 * xtensa-linux-tdep.c (xtensa_linux_init_abi): Update
14008 tdep->num_pseudo_regs. Add calls to set_gdbarch_num_regs and
14009 set_gdbarch_num_pseudo_regs.
14010
14011 2019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14012
14013 * cli/cli-style.h (class cli_style_option): <add_setshow_commands>
14014 Remove arg prefixname, add do_set and do_show.
14015 Add member functions set_list and show_list.
14016 * cli/cli-style.c (class cli_style_option): Update accordingly.
14017 (style_set_list): Move to file scope.
14018 (style_show_list): Likewise.
14019 (set_style): Call help_list.
14020 (show_style): Call cmd_show_list.
14021 (_initialize_cli_style): New macro STYLE_ADD_SETSHOW_COMMANDS.
14022 Update to use the new macro.
14023
14024 2019-10-12 Joel Brobecker <brobecker@adacore.com>
14025
14026 * ada-lang.c (_initialize_ada_language): Expand the help text
14027 for the "catch exception" command.
14028
14029 2019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14030
14031 * symtab.c (matching_obj_sections): Initialize obj,
14032 declare it closer to its usage.
14033
14034 2019-01-10 Tom Tromey <tom@tromey.com>
14035
14036 * thread-iter.h (inf_threads_iterator): Use next_iterator.
14037 (basic_inf_threads_range): Remove.
14038 (inf_threads_range, inf_non_exited_threads_range)
14039 (safe_inf_threads_range): Use next_adapter.
14040
14041 2019-01-10 Keith Seitz <keiths@redhat.com>
14042
14043 PR gdb/23712
14044 PR symtab/23010
14045 * dwarf2read.c (dw2_add_symbol_to_list): Remove.
14046 (fixup_go_packaging, new_symbol): Use add_symbol_to_list.
14047
14048 2019-01-10 Keith Seitz <keiths@redhat.com>
14049
14050 PR gdb/23712
14051 PR symtab/23010
14052 * dictionary.c (pending_to_vector): Remove.
14053 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
14054 Remove _1 suffix, replacing functions of the same name. Update
14055 all callers.
14056 (dict_create_hashed, dict_create_hashed_expandable)
14057 (dict_create_linear, dict_create_linear_expandable, dict_free)
14058 (dict_add_symbol, dict_add_pending, dict_size, dict_empty):
14059 Make functions static.
14060
14061 2019-01-10 Keith Seitz <keiths@redhat.com>
14062
14063 PR gdb/23712
14064 PR symtab/23010
14065 * dictionary.h (struct dictionary): Replace declaration with
14066 multidictionary.
14067 (dict_create_hashed, dict_create_hashed_expandable)
14068 (dict_create_linear, dict_create_linear_expandable)
14069 (dict_free, dict_add_symbol, dict_add_pending, dict_empty)
14070 (dict_iterator_first, dict_iterator_next, dict_iter_match_first)
14071 (dict_iter_match_next, dict_size): Rename to "mdict_" versions
14072 taking multidictionary argument.
14073 [ALL_DICT_SYMBOLS]: Update for multidictionary.
14074 * block.h (struct block) <dict>: Change to multidictionary
14075 and rename `multidict'.
14076 * block.c, buildsym.c, jit.c, mdebugread.c, objfiles.c,
14077 symmisc.c: Update all dictionary references to multidictionary.
14078
14079 2019-01-10 Keith Seitz <keiths@redhat.com>
14080
14081 PR gdb/23712
14082 PR symtab/23010
14083 * dictionary.c: Include unordered_map.
14084 (pending_to_vector): New function.
14085 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
14086 Rewrite the non-"_1" functions to take vector instead
14087 of linked list.
14088 (dict_create_hashed, dict_create_linear, dict_add_pending): Use the
14089 "new" _1 versions of the same name.
14090 (multidictionary): Define.
14091 (std::hash<enum language): New definition.
14092 (collate_pending_symbols_by_language, mdict_create_hashed)
14093 (mdict_create_hashed_expandable, mdict_create_linear)
14094 (mdict_create_linear_expandable, mdict_free)
14095 (find_language_dictionary, create_new_language_dictionary)
14096 (mdict_add_symbol, mdict_add_pending, mdict_iterator_first)
14097 (mdict_iterator_next, mdict_iter_match_first, mdict_iter_match_next)
14098 (mdict_size, mdict_empty): New functions.
14099 * dictionary.h (mdict_iterator): Define.
14100
14101 2019-01-10 Pedro Alves <palves@redhat.com>
14102
14103 * breakpoint.c (read_uploaded_action)
14104 (create_tracepoint_from_upload): Adjust to use
14105 gdb::unique_xmalloc_ptr.
14106 * ctf.c (ctf_write_uploaded_tp):
14107 (SET_ARRAY_FIELD): Use emplace_back.
14108 (SET_STRING_FIELD): Adjust to use gdb::unique_xmalloc_ptr.
14109 * tracefile-tfile.c (tfile_write_uploaded_tp):
14110 * tracepoint.c (parse_tracepoint_definition): Adjust to use
14111 gdb::unique_xmalloc_ptr.
14112 * tracepoint.h (struct uploaded_tp) <cond, actions, step_actions,
14113 at_string, cond_string, cmd_strings>: Replace char pointers
14114 with gdb::unique_xmalloc_ptr.
14115
14116 2019-01-10 Pedro Alves <palves@redhat.com>
14117
14118 * solib-target.c (library_list_start_library): Don't xstrdup name.
14119
14120 2019-01-10 Pedro Alves <palves@redhat.com>
14121
14122 * mdebugread.c (parse_partial_symbols): Use
14123 gdb::unique_xmalloc_ptr to manage heap-allocated 'stabsstring'.
14124
14125 2019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
14126
14127 * linux-fork.c (scoped_switch_fork_info)
14128 <~scoped_switch_fork_info>: Fix incorrect variable name.
14129
14130 2019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
14131
14132 * linux-fork.c (scoped_switch_fork_info)
14133 <scoped_switch_fork_info>: Make explicit.
14134 <~scoped_switch_fork_info>: Wrap core in TRY/CATCH.
14135
14136 2019-01-10 Tom Tromey <tom@tromey.com>
14137
14138 * objfiles.h (objfile::reset_psymtabs): Update.
14139 * objfiles.c (objfile::objfile): Update.
14140 * psymtab.h (psymtab_storage::obstack): Update.
14141 (psymtab_storage::m_obstack): Use gdb::optional.
14142 (class psymtab_storage): Update comment. Remove objfile
14143 parameter.
14144 * psymtab.c (psymtab_storage::psymtab_storage): Update.
14145
14146 2019-01-10 Tom Tromey <tom@tromey.com>
14147
14148 * psymtab.h (psymtab_storage::allocate_psymtab): New method.
14149 <free_psymtabs>: Now private.
14150 * psymtab.c (psymtab_storage::allocate_psymtab): Implement.
14151 (allocate_psymtab): Use new method.
14152
14153 2019-01-10 Tom Tromey <tom@tromey.com>
14154
14155 * xcoffread.c (xcoff_end_psymtab): Use allocate_dependencies.
14156 * psymtab.h (psymtab_storage::allocate_dependencies): New method.
14157 * mdebugread.c (parse_partial_symbols): Use
14158 allocate_dependencies.
14159 * dwarf2read.c (dwarf2_create_include_psymtab): Use
14160 allocate_dependencies.
14161 (process_psymtab_comp_unit_reader)
14162 (build_type_psymtab_dependencies): Likewise.
14163 * dbxread.c (dbx_end_psymtab): Use allocate_dependencies.
14164
14165 2019-01-10 Tom Tromey <tom@tromey.com>
14166
14167 * psymtab.c (add_psymbol_to_bcache): Pass psymtab obstack to
14168 PSYMBOL_SET_LANGUAGE.
14169 (allocate_psymtab): Allocate psymtab on the psymtab obstack.
14170
14171 2019-01-10 Tom Tromey <tom@tromey.com>
14172
14173 * psymtab.h (psymtab_storage::obstack): New method.
14174 <m_obstack>: Rename from obstack; now private.
14175 * psymtab.c (psymtab_storage): Update.
14176 * dwarf2read.c (create_addrmap_from_index)
14177 (create_addrmap_from_aranges, dwarf2_build_psymtabs_hard):
14178 Update.
14179
14180 2019-01-10 Tom Tromey <tom@tromey.com>
14181
14182 * symfile.c (reread_symbols): Call objfile->reset_psymtabs.
14183 * objfiles.h (objfile::reset_psymtabs): New method.
14184
14185 2019-01-10 Tom Tromey <tom@tromey.com>
14186
14187 * symmisc.c (print_symbol_bcache_statistics): Update.
14188 (print_objfile_statistics): Update.
14189 * symfile.c (reread_symbols): Update.
14190 * psymtab.h (class psymtab_storage): New.
14191 * psymtab.c (psymtab_storage): New constructor.
14192 (~psymtab_storage): New destructor.
14193 (require_partial_symbols): Update.
14194 (ALL_OBJFILE_PSYMTABS_REQUIRED): Rewrite.
14195 (find_pc_sect_psymtab, find_pc_sect_psymbol)
14196 (match_partial_symbol, lookup_partial_symbol, dump_psymtab)
14197 (psym_dump, recursively_search_psymtabs, psym_has_symbols)
14198 (psym_find_compunit_symtab_by_address, sort_pst_symbols)
14199 (start_psymtab_common, end_psymtab_common)
14200 (add_psymbol_to_bcache, add_psymbol_to_list, init_psymbol_list)
14201 (allocate_psymtab): Update.
14202 (psymtab_storage::discard_psymtab): Rename from discard_psymtab.
14203 Update.
14204 (dump_psymtab_addrmap, maintenance_print_psymbols)
14205 (maintenance_check_psymtabs): Update.
14206 (class objfile_psymtabs): Move to objfiles.h.
14207 * psympriv.h (discard_psymtab): Now inline.
14208 (psymtab_discarder::psymtab_discarder): Update.
14209 (psymtab_discarder::~psymtab_discarder): Update.
14210 (ALL_OBJFILE_PSYMTABS): Rewrite.
14211 * objfiles.h (struct objfile) <psymtabs, psymtabs_addrmap,
14212 free_psymtabs, psymbol_cache, global_psymbols, static_psymbols>:
14213 Remove fields.
14214 <partial_symtabs>: New field.
14215 (class objfile_psymtabs): Move from psymtab.h. Update.
14216 * objfiles.c (objfile::objfile): Initialize partial_symtabs, not
14217 psymbol_cache.
14218 (objfile::~objfile): Don't destroy psymbol_cache.
14219 * mdebugread.c (parse_partial_symbols): Update.
14220 * dwarf2read.c (create_addrmap_from_index)
14221 (create_addrmap_from_aranges, dw2_find_pc_sect_compunit_symtab)
14222 (process_psymtab_comp_unit_reader, dwarf2_build_psymtabs_hard)
14223 (add_partial_subprogram, dwarf2_ranges_read): Update.
14224 * dwarf-index-write.c (write_address_map)
14225 (write_one_signatured_type, recursively_write_psymbols)
14226 (class debug_names, class debug_names, write_psymtabs_to_index):
14227 Update.
14228
14229 2019-01-10 Tom Tromey <tom@tromey.com>
14230
14231 * symtab.h (SYMBOL_SET_NAMES): Update.
14232 (symbol_set_names): Update.
14233 (MSYMBOL_SET_NAMES): Update.
14234 * symtab.c (symbol_set_names): Change argument to be an
14235 objfile_per_bfd_storage.
14236 * psymtab.c (add_psymbol_to_bcache): Update.
14237 * psympriv.h (PSYMBOL_SET_NAMES): Take per_bfd argument.
14238
14239 2019-01-10 Tom Tromey <tom@tromey.com>
14240
14241 * symtab.c (create_demangled_names_hash): Change argument to be an
14242 objfile_per_bfd_storage.
14243 (symbol_set_names): Update.
14244
14245 2019-01-10 Tom Tromey <tom@tromey.com>
14246
14247 * xcoffread.c (xcoff_initial_scan): Unconditionally call
14248 init_psymbol_list.
14249 * psymtab.c (init_psymbol_list): Do nothing if already called.
14250 * psympriv.h (init_psymbol_list): Add comment.
14251 * dwarf2read.c (dwarf2_build_psymtabs): Unconditionally call
14252 init_psymbol_list.
14253 * dbxread.c (dbx_symfile_read): Unconditionally call
14254 init_psymbol_list.
14255
14256 2019-01-10 Tom Tromey <tom@tromey.com>
14257
14258 * xcoffread.c (scan_xcoff_symtab): Update.
14259 * psymtab.c (add_psymbol_to_list): Replace "list" parameter with
14260 "where".
14261 * mdebugread.c (parse_partial_symbols)
14262 (handle_psymbol_enumerators): Update.
14263 * dwarf2read.c (add_partial_symbol, load_partial_dies): Update.
14264 * dbxread.c (read_dbx_symtab): Update.
14265 * psympriv.h (psymbol_placement): New enum.
14266 (add_psymbol_to_list): Update.
14267
14268 2019-01-10 Tom Tromey <tom@tromey.com>
14269
14270 * xcoffread.c (xcoff_start_psymtab): Remove global_psymbols and
14271 static_psymbols parameters.
14272 (scan_xcoff_symtab): Update.
14273 * psymtab.c (start_psymtab_common): Remove global_psymbols and
14274 static_psymbols parameters.
14275 * psympriv.h (start_psymtab_common): Update.
14276 * mdebugread.c (parse_partial_symbols): Update.
14277 * dwarf2read.c (create_partial_symtab): Update.
14278 * dbxread.c (read_dbx_symtab): Update.
14279 (start_psymtab): Remove global_psymbols and static_psymbols
14280 parameters.
14281
14282 2019-01-10 Tom Tromey <tom@tromey.com>
14283
14284 * xcoffread.c (xcoff_end_psymtab): Remove some initializations.
14285 * psymtab.c (allocate_psymtab): Add comment.
14286 * psympriv.h (allocate_psymtab): Add comment.
14287 * dwarf2read.c (dwarf2_create_include_psymtab): Remove some
14288 initializations.
14289 * dbxread.c (dbx_end_psymtab): Remove some initializations.
14290
14291 2019-01-10 Tom Tromey <tom@tromey.com>
14292
14293 * symfile.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
14294 Don't declare.
14295 * mipsread.c: Include mdebugread.h.
14296 * mdebugread.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
14297 Declare.
14298 * elfread.c: Include mdebugread.h.
14299
14300 2019-01-09 Tom Tromey <tom@tromey.com>
14301
14302 * dbxread.c (dbx_end_psymtab): Use objfile_psymtabs.
14303 * mdebugread.c (parse_partial_symbols): Use objfile_psymtabs.
14304 * psymtab.c (ALL_OBJFILE_PSYMTABS_REQUIRED): Remove.
14305 (psym_map_symtabs_matching_filename, find_pc_sect_psymtab)
14306 (psym_lookup_symbol, psym_find_last_source_symtab)
14307 (psym_forget_cached_source_info, psym_print_stats)
14308 (psym_expand_symtabs_for_function, psym_expand_all_symtabs)
14309 (psym_expand_symtabs_with_fullname, psym_map_symbol_filenames)
14310 (psym_map_matching_symbols, psym_expand_symtabs_matching)
14311 (psym_find_compunit_symtab_by_address)
14312 (maintenance_print_psymbols, maintenance_info_psymtabs)
14313 (maintenance_check_psymtabs): Use ranged for.
14314 * psymtab.h (class objfile_psymtabs): New.
14315 (require_partial_symbols): Return objfile_psymtabs.
14316 * psympriv.h (ALL_OBJFILE_PSYMTABS): Remove.
14317
14318 2019-01-09 Tom Tromey <tom@tromey.com>
14319
14320 * symfile.c (overlay_invalidate_all, find_pc_overlay)
14321 (find_pc_mapped_section, list_overlays_command)
14322 (map_overlay_command, unmap_overlay_command)
14323 (simple_overlay_update): Use all_objfiles.
14324 * spu-tdep.c (spu_overlay_update): Use all_objfiles.
14325 * printcmd.c (info_symbol_command): Use all_objfiles.
14326 * objfiles.h (ALL_OBJSECTIONS): Remove.
14327 * maint.c (maintenance_translate_address): Use all_objfiles.
14328 * gcore.c (gcore_create_callback): Use all_objfiles.
14329 (objfile_find_memory_regions): Likewise.
14330
14331 2019-01-09 Tom Tromey <tom@tromey.com>
14332
14333 * symtab.c (find_line_symtab, info_sources_command)
14334 (make_source_files_completion_list): Use objfile_compunits.
14335 * source.c (select_source_symtab): Use objfile_compunits.
14336 * objfiles.h (struct objfile): Update comment.
14337 (ALL_OBJFILES): Remove.
14338 (ALL_FILETABS): Remove.
14339 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Use
14340 objfile_compunits.
14341
14342 2019-01-09 Tom Tromey <tom@tromey.com>
14343
14344 * symmisc.c (print_objfile_statistics, dump_objfile)
14345 (maintenance_print_symbols): Use compunit_filetabs.
14346 * source.c (forget_cached_source_info_for_objfile): Use
14347 compunit_filetabs.
14348 * objfiles.h (ALL_OBJFILE_FILETABS): Remove.
14349 (ALL_FILETABS): Use compunit_filetabs.
14350 * objfiles.c (objfile_relocate1): Use compunit_filetabs.
14351 * coffread.c (coff_symtab_read): Use compunit_filetabs.
14352
14353 2019-01-09 Tom Tromey <tom@tromey.com>
14354
14355 * symtab.h (ALL_COMPUNIT_FILETABS): Remove.
14356 (compunit_filetabs): New.
14357 * symtab.c (iterate_over_some_symtabs, find_pc_sect_line): Use
14358 compunit_filetabs.
14359 (info_sources_command, make_source_files_completion_list): Remove
14360 declaration.
14361 * symmisc.c (print_objfile_statistics, dump_objfile)
14362 (maintenance_print_symbols): Remove declaration.
14363 (maintenance_info_symtabs): Use compunit_filetabs.
14364 (maintenance_info_line_tables): Likewise.
14365 * source.c (select_source_symtab): Change local variable name.
14366 (forget_cached_source_info_for_objfile): Remove declaration.
14367 * objfiles.h (ALL_OBJFILE_FILETABS): Use compunit_filetabs.
14368 * objfiles.c (objfile_relocate1): Remove declaration.
14369 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
14370 declaration.
14371 * maint.c (count_symtabs_and_blocks): Use compunit_filetabs.
14372 * coffread.c (coff_symtab_read): Remove declaration.
14373 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
14374 compunit_filetabs.
14375
14376 2019-01-09 Tom Tromey <tom@tromey.com>
14377
14378 * symtab.c (lookup_objfile_from_block)
14379 (find_pc_sect_compunit_symtab, search_symbols)
14380 (default_collect_symbol_completion_matches_break_on): Use
14381 objfile_compunits.
14382 * objfiles.h (ALL_COMPUNITS): Remove.
14383 * maint.c (count_symtabs_and_blocks): Use objfile_compunits.
14384 * cp-support.c (add_symbol_overload_list_qualified): Use
14385 objfile_compunits.
14386 * ada-lang.c (ada_collect_symbol_completion_matches)
14387 (ada_add_global_exceptions): Use objfile_compunits.
14388
14389 2019-01-09 Tom Tromey <tom@tromey.com>
14390
14391 * source.c (select_source_symtab)
14392 (forget_cached_source_info_for_objfile): Remove declaration.
14393 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
14394 declaration.
14395 * maint.c (count_symtabs_and_blocks): Remove declaration.
14396 * cp-support.c (add_symbol_overload_list_qualified): Remove
14397 declaration.
14398 * coffread.c (coff_symtab_read): Remove declaration.
14399 * symtab.c (lookup_symbol_in_objfile_symtabs)
14400 (basic_lookup_transparent_type_1): Use objfile_compunits.
14401 (lookup_objfile_from_block, find_pc_sect_compunit_symtab)
14402 (info_sources_command, search_symbols)
14403 (default_collect_symbol_completion_matches_break_on)
14404 (make_source_files_completion_list): Remove declaration.
14405 * ada-lang.c (add_nonlocal_symbols): Use objfile_compunits.
14406 (ada_collect_symbol_completion_matches)
14407 (ada_add_global_exceptions): Remove declaration.
14408 * linespec.c (iterate_over_all_matching_symtabs): Use
14409 objfile_compunits.
14410 * objfiles.h (ALL_OBJFILE_COMPUNITS): Remove.
14411 (class objfile_compunits): New.
14412 (ALL_COMPUNITS): Use objfile_compunits.
14413 * symmisc.c (print_objfile_statistics, maintenance_info_symtabs)
14414 (maintenance_check_symtabs, maintenance_info_line_tables): Use
14415 objfile_compunits.
14416 * objfiles.c (objfile_relocate1): Use objfile_compunits.
14417
14418 2019-01-09 Tom Tromey <tom@tromey.com>
14419
14420 * symtab.c (search_symbols)
14421 (default_collect_symbol_completion_matches_break_on): Use
14422 objfile_msymbols.
14423 * ada-lang.c (ada_lookup_simple_minsym)
14424 (ada_collect_symbol_completion_matches): Use objfile_msymbols.
14425 * minsyms.c (find_solib_trampoline_target): Use objfile_msymbols.
14426 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Use
14427 objfile_msymbols.
14428 * coffread.c (coff_symfile_read): Use objfile_msymbols.
14429 * symmisc.c (dump_msymbols): Use objfile_msymbols.
14430 * objc-lang.c (find_methods): Use objfile_msymbols.
14431 (info_selectors_command, info_classes_command): Likewise.
14432 * stabsread.c (scan_file_globals): Use objfile_msymbols.
14433 * objfiles.h (class objfile_msymbols): New.
14434 (ALL_OBJFILE_MSYMBOLS): Remove.
14435 (ALL_MSYMBOLS): Remove.
14436
14437 2019-01-09 Tom Tromey <tom@tromey.com>
14438
14439 * common/next-iterator.h (next_adapter): Add Iterator template
14440 parameter.
14441 * objfiles.h (ALL_OBJFILES_SAFE): Remove.
14442 (class all_objfiles_safe): New.
14443 * jit.c (jit_inferior_exit_hook): Use all_objfiles_safe.
14444 * objfiles.c (put_objfile_before): Update comment.
14445 (add_separate_debug_objfile): Likewise.
14446 (free_all_objfiles): Use all_objfiles_safe.
14447 (objfile_purge_solibs): Likewise.
14448
14449 2019-01-09 Tom Tromey <tom@tromey.com>
14450
14451 * symtab.c (iterate_over_symtabs, matching_obj_sections)
14452 (expand_symtab_containing_pc, lookup_static_symbol)
14453 (basic_lookup_transparent_type, find_pc_sect_compunit_symtab)
14454 (find_symbol_at_address, find_line_symtab, find_main_name): Use
14455 all_objfiles.
14456 * probe.c (find_probe_by_pc, collect_probes): Use all_objfiles.
14457 * breakpoint.c (create_overlay_event_breakpoint)
14458 (create_longjmp_master_breakpoint)
14459 (create_std_terminate_master_breakpoint)
14460 (create_exception_master_breakpoint): Use all_objfiles.
14461 * linux-thread-db.c (try_thread_db_load_from_pdir)
14462 (has_libpthread): Use all_objfiles.
14463 * ada-lang.c (add_nonlocal_symbols): Use all_objfiles.
14464 * linespec.c (iterate_over_all_matching_symtabs)
14465 (search_minsyms_for_name): Use all_objfiles.
14466 * maint.c (maintenance_info_sections): Use all_objfiles.
14467 * main.c (captured_main_1): Use all_objfiles.
14468 * spu-tdep.c (spu_objfile_from_frame): Use all_objfiles.
14469 * guile/scm-objfile.c (gdbscm_objfiles): Use all_objfiles.
14470 * guile/scm-pretty-print.c
14471 (ppscm_find_pretty_printer_from_objfiles): Use all_objfiles.
14472 * solib-spu.c (append_ocl_sos): Use all_objfiles.
14473 * symmisc.c (maintenance_print_symbols): Use all_objfiles.
14474 (maintenance_print_msymbols): Use all_objfiles.
14475 * source.c (select_source_symtab): Use all_objfiles.
14476 * jit.c (jit_find_objf_with_entry_addr): Use all_objfiles.
14477 * symfile.c (remove_symbol_file_command)
14478 (expand_symtabs_matching, map_symbol_filenames): Use
14479 all_objfiles.
14480 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created): Use
14481 all_objfiles.
14482 * dwarf2-frame.c (dwarf2_frame_find_fde): Use all_objfiles.
14483 * objc-lang.c (find_methods): Use all_objfiles.
14484 * objfiles.c (have_partial_symbols, have_full_symbols)
14485 (have_minimal_symbols, qsort_cmp)
14486 (default_iterate_over_objfiles_in_search_order): Use
14487 all_objfiles.
14488 * hppa-tdep.c (find_unwind_entry): Use all_objfiles.
14489 * psymtab.c (maintenance_print_psymbols): Use all_objfiles.
14490 (maintenance_check_psymtabs): Use all_objfiles.
14491 (ALL_PSYMTABS): Remove.
14492 * compile/compile-object-run.c (do_module_cleanup): Use
14493 all_objfiles.
14494 * blockframe.c (find_pc_partial_function): Use all_objfiles.
14495 * cp-support.c (add_symbol_overload_list_qualified): Use
14496 all_objfiles.
14497 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
14498 Use all_objfiles.
14499 * dwarf-index-write.c (save_gdb_index_command): Use all_objfiles.
14500 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): Use
14501 all_objfiles.
14502 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
14503 (objfpy_lookup_objfile_by_build_id): Use all_objfiles.
14504 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
14505 Uses all_objfiles.
14506 * solib.c (solib_read_symbols): Use all_objfiles
14507
14508 2019-01-09 Tom Tromey <tom@tromey.com>
14509
14510 * probe.c (parse_probes_in_pspace): Use all_objfiles.
14511 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Use
14512 all_objfiles.
14513 * objfiles.h (ALL_PSPACE_OBJFILES): Remove.
14514 * symmisc.c (print_symbol_bcache_statistics)
14515 (print_objfile_statistics, maintenance_print_objfiles)
14516 (maintenance_info_symtabs, maintenance_check_symtabs)
14517 (maintenance_expand_symtabs, maintenance_info_line_tables): Use
14518 all_objfiles.
14519 * source.c (forget_cached_source_info): Use all_objfiles.
14520 * symfile-debug.c (set_debug_symfile): Use all_objfiles.
14521 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
14522 (elf_gnu_ifunc_resolve_by_got): Use all_objfiles.
14523 * objfiles.c (update_section_map): Use all_objfiles.
14524 (shared_objfile_contains_address_p): Likewise.
14525 * psymtab.c (maintenance_info_psymtabs): Use all_objfiles.
14526 * python/py-progspace.c (pspy_get_objfiles): Use all_objfiles.
14527
14528 2019-01-09 Tom Tromey <tom@tromey.com>
14529
14530 * common/next-iterator.h: New file.
14531 * objfiles.h (class all_objfiles): New.
14532 (struct objfile_iterator): New.
14533
14534 2019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14535
14536 * NEWS: Move the description of the changed "frame", "select-frame",
14537 and "info frame" commands to the Changed commands section.
14538
14539 2019-01-09 Simon Marchi <simon.marchi@ericsson.com>
14540
14541 * gdbtypes.c (check_stub_method_group): Remove handling of old
14542 mangling schemes.
14543 * linespec.c (find_methods): Likewise.
14544 * stabsread.c (read_member_functions): Likewise.
14545 * valops.c (search_struct_method): Likewise.
14546 (value_struct_elt_for_reference): Likewise.
14547 * NEWS: Mention this change.
14548
14549 2019-01-09 Andrew Burgess <andrew.burgess@embecosm.com>
14550
14551 * cli/cli-cmds.c (list_command): Pass a source_lines_range to
14552 print_source_lines.
14553 * source.c (print_source_lines_base): Update line number check.
14554 (print_source_lines): New function.
14555 (source_lines_range::source_lines_range): New function.
14556 * source.h (class source_lines_range): New class.
14557 (print_source_lines): New declaration.
14558
14559 2019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14560
14561 * linespec.c (linespec_state_destructor): Free self->canonical_names.
14562
14563 2019-01-08 Tom Tromey <tom@tromey.com>
14564 Simon Marchi <simon.marchi@ericsson.com>
14565
14566 PR gdb/24060
14567 * ada-exp.y (DOLLAR_VARIABLE): Rename from SPECIAL_VARIABLE.
14568 * ada-lex.l (DOLLAR_VARIABLE): Likewise.
14569 * c-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
14570 * f-exp.y (DOLLAR_VARIABLE): Likewise.
14571 * m2-exp.y (DOLLAR_VARIABLE): Rename from INTERNAL_VAR.
14572 * p-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
14573
14574 2019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
14575
14576 * source.c (select_source_symtab): Move header comment to
14577 declaration in source.h.
14578 (forget_cached_source_info_for_objfile): Likewise.
14579 (forget_cached_source_info): Likewise.
14580 (identify_source_line): Likewise.
14581 * source.h (identify_source_line): Move declaration from symtab.h
14582 and add comment from source.c
14583 (print_source_lines): Likewise.
14584 (forget_cached_source_info_for_objfile): Likewise.
14585 (forget_cached_source_info): Likewise.
14586 (select_source_symtab): Likewise.
14587 (enum print_source_lines_flag): Move definition from symtab.h.
14588 * symtab.h (identify_source_line): Move declaration to source.h.
14589 (print_source_lines): Likewise.
14590 (forget_cached_source_info_for_objfile): Likewise.
14591 (forget_cached_source_info): Likewise.
14592 (select_source_symtab): Likewise.
14593 (enum print_source_lines_flag): Move definition to source.h.
14594 * tui/tui-hooks.c: Add 'source.h' include.
14595
14596 2019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
14597
14598 * source.c (print_source_lines_base): Handle requests to print
14599 reverse line number sequences, and guard against empty lines
14600 string.
14601
14602 2019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
14603
14604 * source.c (print_source_lines_base): Fix skip of '\r' if next
14605 character is '\n'.
14606
14607 2019-01-06 Tom Tromey <tom@tromey.com>
14608
14609 * c-exp.y (struct c_parse_state) <macro_original_text,
14610 expansion_obstack>: New member.
14611 (macro_original_text, expansion_obstack): Remove globals.
14612 (scan_macro_expansion, scanning_macro_expansion)
14613 (finished_macro_expansion): Update.
14614 (scan_macro_cleanup): Remove.
14615 (yylex, c_parse): Update.
14616
14617 2019-01-06 Tom Tromey <tom@tromey.com>
14618
14619 * c-exp.y (struct c_parse_state) <strings>: New member.
14620 (operator_stoken): Update.
14621
14622 2019-01-06 Tom Tromey <tom@tromey.com>
14623
14624 * parser-defs.h (type_ptr): Remove typedef. Don't declare VEC.
14625 (union type_stack_elt) <typelist_val>: Now a pointer to
14626 std::vector.
14627 (type_stack_cleanup): Don't declare.
14628 (push_typelist): Update.
14629 * parse.c (pop_typelist): Return a std::vector.
14630 (push_typelist): Take a std::vector.
14631 (follow_types): Update. Do not free args.
14632 (type_stack_cleanup): Remove.
14633 * c-exp.y (struct c_parse_state): New.
14634 (cpstate): New global.
14635 (type_aggregate_p, exp, ptr_operator, parameter_typelist)
14636 (nonempty_typelist): Update.
14637 (func_mod): Create a new vector.
14638 (c_parse): Create a c_parse_state.
14639 (check_parameter_typelist): Do not delete params.
14640 (function_method): Update. Do not delete type_list.
14641
14642 2019-01-06 Tom Tromey <tom@tromey.com>
14643
14644 PR gdb/28155:
14645 * python/py-finishbreakpoint.c (bpfinishpy_init): Use
14646 check_typedef.
14647 * infcmd.c (finish_command_fsm_should_stop): Use check_typedef.
14648 (print_return_value): Likewise.
14649
14650 2019-01-05 Tom Tromey <tom@tromey.com>
14651
14652 * contrib/cleanup_check.py: Remove.
14653 * contrib/gcc-with-excheck: Remove.
14654 * contrib/exsummary.py: Remove.
14655 * contrib/excheck.py: Remove.
14656
14657 2019-01-05 Joel Brobecker <brobecker@adacore.com>
14658
14659 * thread.c (delete_thread_1): Add gdb_assert that THR is not
14660 NULL. Initialize tpprev to NULL instead of assigning it
14661 to NULL on the next statement.
14662 * windows-nat.c (windows_delete_thread): Remove check for
14663 main_thread_id before printing thread exit notifications.
14664 (get_windows_debug_event) <EXIT_THREAD_DEBUG_EVENT>:
14665 Remove thread ID check against main_thread_id.
14666 <CREATE_PROCESS_DEBUG_EVENT>: Remove call to
14667 windows_delete_thread.
14668 <EXIT_PROCESS_DEBUG_EVENT>: Add call to windows_delete_thread.
14669
14670 2019-01-04 Tom Tromey <tom@tromey.com>
14671
14672 * compile/compile.c (_initialize_compile): Use upper case for
14673 metasyntactic variables.
14674 * symmisc.c (_initialize_symmisc): Use upper case for
14675 metasyntactic variables.
14676 * psymtab.c (_initialize_psymtab): Use upper case for
14677 metasyntactic variables.
14678 * demangle.c (demangle_command): Use upper case for metasyntactic
14679 variables.
14680 (_initialize_demangler): Likewise.
14681 * ax-gdb.c (_initialize_ax_gdb): Use upper case for metasyntactic
14682 variables.
14683
14684 2019-01-03 Tom Tromey <tom@tromey.com>
14685
14686 * tui/tui-source.c (tui_set_source_content): Use xstrdup.
14687
14688 2019-01-03 Tom Tromey <tom@tromey.com>
14689
14690 * python/py-symtab.c (salpy_str): Update.
14691 (struct salpy_sal_object) <symtab>: Now a PyObject.
14692 (salpy_dealloc): Update.
14693 (del_objfile_sal): Use gdbpy_ref.
14694
14695 2019-01-03 Tom Tromey <tom@tromey.com>
14696
14697 * python/py-type.c (convert_field): Use new_reference. Return
14698 gdbpy_ref.
14699 (make_fielditem): Return gdbpy_ref.
14700 (typy_fields): Update.
14701 (typy_getitem): Update.
14702 (field_name): Return gdbpy_ref. Use new_reference.
14703 (typy_iterator_iternext): Update.
14704
14705 2019-01-03 Tom Tromey <tom@tromey.com>
14706
14707 * python/py-record.c (gdbpy_stop_recording): Use Py_RETURN_NONE.
14708
14709 2019-01-03 Tom Tromey <tom@tromey.com>
14710
14711 * python/py-value.c (valpy_dealloc): Use Py_XDECREF.
14712 * python/py-type.c (typy_fields_items): Use gdbpy_ref.
14713 * python/py-progspace.c (pspy_set_printers): Use gdbpy_ref.
14714 (pspy_set_frame_filters, pspy_set_frame_unwinders)
14715 (pspy_set_type_printers): Likewise.
14716 * python/py-function.c (fnpy_init): Use gdbpy_ref.
14717 * python/py-cmd.c (cmdpy_init): Use gdbpy_ref.
14718 * python/py-objfile.c (objfpy_set_printers): Use gdbpy_ref.
14719 (objfpy_set_frame_filters, objfpy_set_frame_unwinders)
14720 (objfpy_set_type_printers): Likewise.
14721
14722 2019-01-03 Tom Tromey <tom@tromey.com>
14723
14724 * python/python.c (gdbpy_enter, ~gdbpy_enter): Update.
14725 (gdbpy_print_stack): Use gdbpy_err_fetch.
14726 * python/python-internal.h (class gdbpy_err_fetch): New class.
14727 (class gdbpy_enter) <m_error_type, m_error_value,
14728 m_error_traceback>: Remove.
14729 <m_error>: New member.
14730 (gdbpy_exception_to_string): Don't declare.
14731 * python/py-varobj.c (py_varobj_iter_next): Use gdbpy_err_fetch.
14732 * python/py-value.c (convert_value_from_python): Use
14733 gdbpy_err_fetch.
14734 * python/py-utils.c (gdbpy_err_fetch::to_string): Rename from
14735 gdbpy_exception_to_string.
14736 (gdbpy_handle_exception): Use gdbpy_err_fetch.
14737 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
14738 gdbpy_err_fetch.
14739
14740 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14741
14742 * linux-nat.c (delete_lwp_cleanup): Delete.
14743 (struct lwp_deleter): New struct.
14744 (lwp_info_up): New typedef.
14745 (linux_nat_target::follow_fork): Delete cleanup, and make use of
14746 lwp_info_up.
14747
14748 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14749
14750 * linux-fork.c (class scoped_switch_fork_info): New class.
14751 (inferior_call_waitpid): Update to use scoped_switch_fork_info.
14752
14753 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14754
14755 * valops.c (find_overload_match): Remove use of null_cleanup, and
14756 calls to do_cleanups.
14757
14758 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14759
14760 * compile/compile-cplus-types.c
14761 (compile_cplus_instance::decl_name): Handle changes to
14762 cp_func_name.
14763 * cp-support.c (cp_func_name): Update header comment, update
14764 return type.
14765 * cp-support.h (cp_func_name): Update return type in declaration.
14766 * valops.c (find_overload_match): Move temp_func local to top
14767 level of function and change its type. Use temp_func to hold and
14768 delete temporary string obtained from cp_func_name.
14769
14770 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14771
14772 * remote.c (remote_target::remote_check_symbols): Convert `msg` to
14773 gdb::char_vector, remove cleanup, and update uses of `msg`.
14774
14775 2019-01-03 Jim Wilson <jimw@sifive.com>
14776
14777 * riscv-tdep.c (riscv_freg_feature): Drop s0 name from f8.
14778
14779 2019-01-02 Tom Tromey <tom@tromey.com>
14780
14781 * xml-tdesc.c (xml_cache): Hold a target_desc_up.
14782 (tdesc_parse_xml): Remove cleanups.
14783 * target-descriptions.h (make_cleanup_free_target_description):
14784 Don't declare.
14785 (target_desc_deleter): New struct.
14786 (target_desc_up): New typedef.
14787 * target-descriptions.c (target_desc_deleter::operator()): Rename
14788 from free_target_description.
14789 (make_cleanup_free_target_description): Remove.
14790
14791 2019-01-02 Tom Tromey <tom@tromey.com>
14792
14793 * linespec.c (struct linespec_parser): Rename from ls_parser. Add
14794 constructor, destructor.
14795 (linespec_parser): Remove typedef.
14796 (~linespec_parser): Rename from linespec_parser_delete.
14797 (linespec_lex_to_end, linespec_complete_label)
14798 (linespec_complete): Update.
14799 (decode_line_full): Remove cleanups.
14800 (decode_line_1): Update.
14801
14802 2019-01-02 Tom Tromey <tom@tromey.com>
14803
14804 * python/python-internal.h (inferior_to_inferior_object): Change
14805 return type.
14806 * python/py-exitedevent.c (create_exited_event_object): Update.
14807 * python/py-inferior.c (inferior_to_inferior_object): Return
14808 gdbpy_ref.
14809 (python_new_inferior, python_inferior_deleted)
14810 (thread_to_thread_object, delete_thread_object)
14811 (build_inferior_list, gdbpy_selected_inferior): Update.
14812 * python/py-infthread.c (create_thread_object): Update. Also fail
14813 if inferior_to_inferior_object fails.
14814
14815 2019-01-02 Simon Marchi <simon.marchi@ericsson.com>
14816
14817 * inferior.h (class inferior) <displaced_step_state>: New field.
14818 * infrun.h (struct displaced_step_state): Move here from
14819 infrun.c. Initialize fields, add constructor.
14820 <inf>: Remove field.
14821 <reset>: New method.
14822 * infrun.c (struct displaced_step_inferior_state): Move to
14823 infrun.h.
14824 (displaced_step_inferior_states): Remove.
14825 (get_displaced_stepping_state): Adust.
14826 (displaced_step_in_progress_any_inferior): Adjust.
14827 (displaced_step_in_progress_thread): Adjust.
14828 (displaced_step_in_progress): Adjust.
14829 (add_displaced_stepping_state): Remove.
14830 (get_displaced_step_closure_by_addr): Adjust.
14831 (remove_displaced_stepping_state): Remove.
14832 (infrun_inferior_exit): Call displaced_step_state.reset.
14833 (use_displaced_stepping): Don't check for NULL.
14834 (displaced_step_prepare_throw): Call
14835 get_displaced_stepping_state.
14836 (displaced_step_fixup): Don't check for NULL.
14837 (prepare_for_detach): Don't check for NULL.
14838
14839 2019-01-02 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14840
14841 * infcall.c (call_function_by_hand_dummy): cleanup/destroy sm
14842 in case of call that did not complete.
14843
14844 2019-01-02 Andrey Utkin <autkin@undo.io>
14845
14846 * symfile.c (find_separate_debug_file): Fix search of debug files for
14847 remote debuggee.
14848
14849 2019-01-02 Tom Tromey <tom@tromey.com>
14850
14851 * python/py-inferior.c (gdbpy_initialize_inferior): Fix
14852 indentation.
14853 * python/py-frame.c (frapy_older): Remove cast.
14854 (frapy_newer): Likewise.
14855 * python/py-breakpoint.c (local_setattro): Remove cast.
14856 * python/py-arch.c (archpy_name): Remove local variable.
14857 * python/py-type.c (gdbpy_lookup_type): Remove cast.
14858
14859 2019-01-02 Joel Brobecker <brobecker@adacore.com>
14860
14861 * unittests/basic_string_view/element_access/char/empty.cc:
14862 Fix year range in copyright header.
14863
14864 2019-01-01 Andrew Burgess <andrew.burgess@embecosm.com>
14865
14866 * arch/riscv.h (struct riscv_gdbarch_features) <hw_float_abi>:
14867 Delete.
14868 <operator==>: Update with for removed field.
14869 <hash>: Likewise.
14870 * riscv-tdep.h (struct gdbarch_tdep) <features>: Renamed to...
14871 <isa_features>: ...this.
14872 <abi_features>: New field.
14873 (riscv_isa_flen): Update comment.
14874 (riscv_abi_xlen): New declaration.
14875 (riscv_abi_flen): New declaration.
14876 * riscv-tdep.c (riscv_isa_xlen): Update to get answer from
14877 isa_features.
14878 (riscv_abi_xlen): New function.
14879 (riscv_isa_flen): Update to get answer from isa_features.
14880 (riscv_abi_flen): New function.
14881 (riscv_has_fp_abi): Update to get answer from abi_features.
14882 (riscv_call_info::riscv_call_info): Use abi xlen and flen, not isa
14883 xlen and flen.
14884 (riscv_call_info) <xlen, flen>: Update comment.
14885 (riscv_call_arg_struct): Remove invalid assertions
14886 (riscv_features_from_gdbarch_info): Update now hw_float_abi field
14887 is removed.
14888 (riscv_gdbarch_init): Gather isa features and abi features
14889 separately, ensure both match on the gdbarch when reusing an old
14890 gdbarch. Relax an error check to allow 32-bit abi float to run on
14891 a target with 64-bit float hardware.
14892
14893 2019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14894
14895 * source.c (search_command_helper): Stop reverse search
14896 when line 1 has been searched.
14897
14898 2019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14899
14900 * record-full.c (record_full_base_target::close): Rewrite
14901 record_full_core_buf_list free logic.
14902
14903 2019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14904
14905 * break-catch-syscall.c (print_one_catch_syscall): xfree
14906 the last text.
14907
14908 2019-01-01 Joel Brobecker <brobecker@adacore.com>
14909
14910 * top.c (print_gdb_version): Update Copyright year in version
14911 message.
14912
14913 2019-01-01 Joel Brobecker <brobecker@adacore.com>
14914
14915 Update copyright year range in all GDB files.
14916
14917 2019-01-01, 19 Joel Brobecker <brobecker@adacore.com>
14918
14919 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2018.
14920
14921 For older changes see ChangeLog-2018.
14922 \f
14923 Local Variables:
14924 mode: change-log
14925 left-margin: 8
14926 fill-column: 74
14927 version-control: never
14928 coding: utf-8
14929 End:
14930
This page took 0.328811 seconds and 5 git commands to generate.