[ARM, thumb] Fix disassembling bug after reloading a symbol file
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2019-11-01 Luis Machado <luis.machado@linaro.org>
2
3 PR gdb/25124
4
5 * arm-tdep.c (arm_per_objfile): Rename to ...
6 (arm_per_bfd): ... this.
7 (arm_objfile_data_key): Rename to ...
8 (arm_bfd_data_key): ... this.
9 (arm_find_mapping_symbol): Adjust access to new bfd_key-based
10 data.
11 (arm_record_special_symbol): Likewise.
12
13 2019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
14
15 * ada-typeprint.c (ada_print_typedef): Don't print newline at the
16 end.
17 * c-typeprint.c (c_print_typedef): Likewise.
18 * f-typeprint.c (f_print_typedef): Likewise.
19 * m2-typeprint.c (m2_print_typedef): Likewise.
20 * p-typeprint.c (pascal_print_typedef): Likewise.
21 * rust-lang.c (rust_print_typedef): Likewise.
22 * symtab.c (print_symbol_info): Print a newline after calling
23 typedef_print.
24
25 2019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
26
27 * symtab.c (info_module_cmdlist): New variable.
28 (info_module_command): New function.
29 (search_module_symbols): New function.
30 (info_module_subcommand): New function.
31 (struct info_modules_var_func_options): New struct.
32 (info_modules_var_func_options_defs): New variable.
33 (make_info_modules_var_func_options_def_group): New function.
34 (info_module_functions_command): New function.
35 (info_module_variables_command): New function.
36 (info_module_var_func_command_completer): New function.
37 (_initialize_symtab): Register new 'info module functions' and
38 'info module variables' commands.
39 * symtab.h (typedef symbol_search_in_module): New typedef.
40 (search_module_symbols): Declare new function.
41 * NEWS: Mention new commands.
42
43 2019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
44
45 * dwarf2read.c (dw2_symtab_iter_next): Handle MODULE_DOMAIN.
46 (dw2_expand_marked_cus): Handle MODULES_DOMAIN.
47 (dw2_debug_names_iterator::next): Handle MODULE_DOMAIN and
48 MODULES_DOMAIN.
49 (scan_partial_symbols): Only create partial module symbols for non
50 declarations.
51 * psymtab.c (recursively_search_psymtabs): Handle MODULE_DOMAIN
52 and MODULES_DOMAIN.
53 * symtab.c (search_domain_name): Likewise.
54 (search_symbols): Likewise.
55 (print_symbol_info): Likewise.
56 (symtab_symbol_info): Likewise.
57 (info_modules_command): New function.
58 (_initialize_symtab): Register 'info modules' command.
59 * symtab.h (enum search_domain): Add MODULES_DOMAIN.
60 * NEWS: Mention new 'info modules' command.
61
62 2019-10-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
63
64 * NEWS: Mention $_gdb_setting, $_gdb_setting_str, $_gdb_maint_setting
65 and $_gdb_maint_setting_str.
66
67 2019-10-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
68
69 * cli/cli-cmds.c (setting_cmd, value_from_setting)
70 (gdb_setting_internal_fn, gdb_maint_setting_internal_fn)
71 (str_value_from_setting, gdb_setting_str_internal_fn)
72 (gdb_maint_setting_str_internal_fn): New functions.
73 (_initialize_cli_cmds): Define the new convenience functions.
74 * gdb/cli/cli-setshow.h (get_setshow_command_value_string): Constify.
75 * gdb/cli/cli-setshow.c (get_setshow_command_value_string): Constify.
76
77 2019-10-31 Christian Biesinger <cbiesinger@google.com>
78
79 * agent.c (set_can_use_agent): When the setting is turned on,
80 look up agent symbols if we don't have them yet.
81 (agent_new_objfile): Don't look up agent symbols when the agent
82 setting is off.
83
84 2019-10-31 Christian Biesinger <cbiesinger@google.com>
85
86 * config.in: Regenerate.
87
88 2019-10-31 Christian Biesinger <cbiesinger@google.com>
89
90 * configure: Regenerate.
91 * configure.ac: Check for strerror_r.
92 * gdbsupport/common-utils.h (safe_strerror): Change return value
93 to const char * and document that this function is now threadsafe.
94 * gdbsupport/posix-strerror.c (safe_strerror): Make buf
95 thread_local and call strerror_r, if available.
96 * utils.c (perror_string): Update.
97 (print_sys_errmsg): Update.
98
99 2019-10-31 Luis Machado <luis.machado@linaro.org>
100
101 * arm-tdep.c (arm_exidx_data_key): Use bfd_key instead of
102 objfile_key.
103 (arm_exidx_new_objfile): Adjust to use objfile->obfd instead of
104 objfile to fetch per-bfd data.
105 (arm_find_exidx_entry): Likewise.
106
107 2019-10-31 Christian Biesinger <cbiesinger@google.com>
108
109 * gdbsupport/agent.c (debug_agent): Change type to bool.
110 (use_agent): Likewise.
111 (all_agent_symbols_look_up): Likewise.
112 (agent_loaded_p): Change return value to bool.
113 (agent_look_up_symbols): Update.
114 (agent_capability_check): Change return value to bool.
115 * gdbsupport/agent.h (agent_loaded_p): Likewise.
116 (debug_agent): Change type to bool.
117 (use_agent): Likewise.
118 (agent_capability_check): Change return value to bool.
119
120 2019-10-30 Christian Biesinger <cbiesinger@google.com>
121
122 * minsyms.c (clear_minimal_symbol_hash_tables): New function.
123 (build_minimal_symbol_hash_tables): Code to clear the table moved
124 to clear_minimal_symbol_hash_tables.
125 (minimal_symbol_reader::install): Call clear_minimal_symbol_hash_tables
126 when needed.
127
128 2019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
129
130 * infcmd.c: Remove includes.
131 * infrun.c: Remove includes.
132
133 2019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
134
135 * ada-lang.h (GROW_VECT): Move to ada-lang.c.
136 (grow_vect): Remove declaration.
137 (ada_type_of_array): Remove declaration.
138 (ada_update_initial_language): Remove declaration.
139 (ada_fold_name): Remove declaration.
140 (ada_fill_in_ada_prototype): Remove declaration.
141 (user_select_syms): Remove declaration.
142 (get_selections): Remove declaration.
143 (ada_tag_type): Remove declaration.
144 (ada_value_tag): Remove declaration.
145 (ada_is_others_clause): Remove declaration.
146 (ada_in_variant): Remove declaration.
147 (ada_value_struct_elt): Remove declaration.
148 (ada_attribute_name): Remove declaration.
149 (ada_system_address_type): Remove declaration.
150 * ada-lang.c (ada_watch_location_expression): Make static.
151 (GROW_VECT): Move here from ada-lang.h.
152 (grow_vect): Make static.
153 (ada_update_initial_language): Make static.
154 (ada_fold_name): Make static.
155 (ada_type_of_array): Make static.
156 (encoded_ordered_before): Move up.
157 (sort_choices): Move up.
158 (print_signatures): Move up.
159 (ada_print_symbol_signature): Move up.
160 (get_selections): Move up and make static.
161 (user_select_syms): Move up and make static.
162 (ada_value_struct_elt): Move up and make static.
163 (ada_tag_type): Make static.
164 (ada_value_tag): Make static.
165 (ada_is_others_clause): Make static.
166 (ada_in_variant): Make static.
167 (ada_attribute_name): Make static.
168
169 2019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
170
171 * ada-lang.c: Remove includes.
172 * ada-typeprint.c: Remove includes.
173 * ada-valprint.c: Remove includes.
174
175 2019-10-29 Simon Marchi <simon.marchi@efficios.com>
176
177 * addrmap.c: Add static assertions of type size, moved from
178 _initialize_addrmap.
179 (_initialize_addrmap): Remove.
180
181 2019-10-29 Christian Biesinger <cbiesinger@google.com>
182
183 * coffread.c (record_minimal_symbol): Update.
184 (process_coff_symbol): Update.
185 * dbxread.c (read_dbx_symtab): Update.
186 * dwarf2read.c (add_partial_symbol): Update.
187 (fixup_go_packaging): Update.
188 (load_partial_dies): Update.
189 (new_symbol): Update.
190 * elfread.c (record_minimal_symbol): Change signature to use
191 gdb::string_view instead of name+len.
192 (elf_symtab_read): Update.
193 (elf_rel_plt_read): Update.
194 * mdebugread.c (parse_partial_symbols): Update.
195 (handle_psymbol_enumerators): Update.
196 (new_symbol): Update.
197 * minsyms.c (minimal_symbol_reader::record_full): Change signature
198 to use gdb::string_view instead of name+len.
199 * minsyms.h (class minimal_symbol_reader) <record_full>: Likewise.
200 * psympriv.h (add_psymbol_to_list): Likewise.
201 * psymtab.c (add_psymbol_to_bcache): Likewise.
202 (add_psymbol_to_list): Likewise.
203 * stabsread.c (define_symbol): Update.
204 * symtab.c (symbol_set_names): Change signature to use gdb::string_view.
205 * symtab.h (SYMBOL_SET_NAMES): Likewise.
206 (symbol_set_names): Likewise.
207 * xcoffread.c (scan_xcoff_symtab): Update.
208
209 2019-10-29 Christian Biesinger <cbiesinger@google.com>
210
211 * symtab.h (symbol_set_names): Document that copy_name must be
212 set to true for non-nullterminated strings.
213 * symtab.c (symbol_set_names): Only make a nullterminated copy of
214 linkage_name if the entry was not found and we need to demangle.
215
216 2019-10-29 Christian Biesinger <cbiesinger@google.com>
217
218 * Makefile.in (HFILES_NO_SRCDIR): Add gdb_binary_search.h.
219 * dwarf2-frame.c (bsearch_fde_cmp): Update.
220 (dwarf2_frame_find_fde): Replace bsearch with gdb::binary_search.
221 * gdbsupport/gdb_binary_search.h: New file.
222
223 2019-10-29 Christian Biesinger <cbiesinger@google.com>
224
225 * NEWS: Mention new --with-system-gdbinit-dir option.
226 * config.in: Regenerate.
227 * configure: Regenerate.
228 * configure.ac: Add new option --with-system-gdbinit-dir.
229 * extension.c (get_ext_lang_of_file): Return extension_language_gdb
230 for a ".gdb" suffix.
231 * main.c (get_init_files): Change system_gdbinit argument to
232 a vector and return the files in SYSTEM_GDBINIT_DIR in
233 addition to SYSTEM_GDBINIT.
234 (captured_main_1): Update.
235 (print_gdb_help): Update.
236 * top.c (print_gdb_configuration): Also print the value of
237 SYSTEM_GDBINIT_DIR.
238
239 2019-10-28 Christian Biesinger <cbiesinger@google.com>
240
241 * gdbsupport/common-utils.h (startswith): Add an overloaded version
242 that takes gdb::string_view arguments.
243
244 2019-10-26 Tom de Vries <tdevries@suse.de>
245
246 * aarch64-linux-tdep.c: Fix typos in comments.
247 * aarch64-tdep.c: Same.
248 * ada-lang.c: Same.
249 * amd64-nat.c: Same.
250 * arc-tdep.c: Same.
251 * arch/aarch64-insn.c: Same.
252 * block.c: Same.
253 * breakpoint.h: Same.
254 * btrace.h: Same.
255 * c-varobj.c: Same.
256 * cli/cli-decode.c: Same.
257 * cli/cli-script.c: Same.
258 * cli/cli-utils.h: Same.
259 * coff-pe-read.c: Same.
260 * coffread.c: Same.
261 * compile/compile-cplus-symbols.c: Same.
262 * compile/compile-object-run.c: Same.
263 * completer.c: Same.
264 * corelow.c: Same.
265 * cp-support.c: Same.
266 * demangle.c: Same.
267 * dwarf-index-write.c: Same.
268 * dwarf2-frame.c: Same.
269 * dwarf2-frame.h: Same.
270 * eval.c: Same.
271 * frame-base.h: Same.
272 * frame.h: Same.
273 * gdbcmd.h: Same.
274 * gdbtypes.h: Same.
275 * gnu-nat.c: Same.
276 * guile/scm-objfile.c: Same.
277 * i386-tdep.c: Same.
278 * i386-tdep.h: Same.
279 * infcall.c: Same.
280 * infcall.h: Same.
281 * linux-nat.c: Same.
282 * m68k-tdep.c: Same.
283 * macroexp.c: Same.
284 * memattr.c: Same.
285 * mi/mi-cmd-disas.c: Same.
286 * mi/mi-getopt.h: Same.
287 * mi/mi-main.c: Same.
288 * minsyms.c: Same.
289 * nat/aarch64-sve-linux-sigcontext.h: Same.
290 * objfiles.h: Same.
291 * ppc-linux-nat.c: Same.
292 * ppc-linux-tdep.c: Same.
293 * ppc-tdep.h: Same.
294 * progspace.h: Same.
295 * prologue-value.h: Same.
296 * python/py-evtregistry.c: Same.
297 * python/py-instruction.h: Same.
298 * record-btrace.c: Same.
299 * record-full.c: Same.
300 * remote.c: Same.
301 * rs6000-tdep.c: Same.
302 * ser-tcp.c: Same.
303 * sol-thread.c: Same.
304 * sparc-sol2-tdep.c: Same.
305 * sparc64-tdep.c: Same.
306 * stabsread.c: Same.
307 * symfile.c: Same.
308 * symtab.h: Same.
309 * target.c: Same.
310 * tracepoint.c: Same.
311 * tui/tui-data.h: Same.
312 * tui/tui-io.c: Same.
313 * tui/tui-win.c: Same.
314 * tui/tui.c: Same.
315 * unittests/rsp-low-selftests.c: Same.
316 * user-regs.h: Same.
317 * utils.c: Same.
318 * utils.h: Same.
319 * valarith.c: Same.
320 * valops.c: Same.
321 * valprint.c: Same.
322 * valprint.h: Same.
323 * value.c: Same.
324 * value.h: Same.
325 * varobj.c: Same.
326 * x86-nat.h: Same.
327 * xtensa-tdep.c: Same.
328
329 2019-10-25 Ali Tamur <tamur@google.com>
330
331 * charset.c (find_charset_names): Reflect API change.
332
333 2019-10-25 Christian Biesinger <cbiesinger@google.com>
334
335 * symtab.c (struct demangled_name_entry): Change demangled name
336 to a unique_xmalloc_ptr<char>, now that we don't allocate it as
337 part of the struct anymore.
338 (symbol_set_names): No longer obstack allocate + copy the demangled
339 name, just store the allocated name from bfd.
340
341 2019-10-25 Tom Tromey <tromey@adacore.com>
342
343 * dwarf2-frame.c (dwarf2_cie_table): Now a typedef.
344 (bsearch_cie_cmp, add_cie): Remove.
345 (find_cie): Reimplement.
346 (decode_frame_entry_1, decode_frame_entry): Change type. Update.
347 (dwarf2_build_frame_info): Update.
348
349 2019-10-24 H.J. Lu <hongjiu.lu@intel.com>
350
351 PR gdb/25126
352 * symfile.c (reread_symbols): Call forget_cached_source_info to
353 clear the stale source cache.
354
355 2019-10-24 Christian Biesinger <cbiesinger@google.com>
356
357 * configure: Regenerate.
358 * configure.ac: Remove code that sets python_has_threads.
359
360 2019-10-24 Christian Biesinger <cbiesinger@google.com>
361
362 * config.in: Regenerate.
363 * configure: Regenerate.
364 * configure.ac: Remove the code that uses sed to get the python
365 version and defines HAVE_LIBPYTHON2_6 / HAVE_LIBPYTHON2_7.
366
367 2019-10-24 Andrew Burgess <andrew.burgess@embecosm.com>
368
369 * python/py-progspace.c (pspy_block_for_pc): Return None for all
370 error paths.
371
372 2019-10-23 Tom Tromey <tom@tromey.com>
373
374 * arc-tdep.c: Remove ".." from include.
375 * frv-tdep.c: Remove ".." from include.
376 * lm32-tdep.c: Remove ".." from include.
377 * microblaze-tdep.c: Remove ".." from include.
378 * or1k-tdep.h: Remove ".." from include.
379 * s12z-tdep.c: Remove ".." from include.
380 * Makefile.in (OPCODES_CFLAGS): Add comment.
381 (TOP_CFLAGS): New variable.
382 (INTERNAL_CFLAGS_BASE): Add TOP_CFLAGS.
383
384 2019-10-23 Tom Tromey <tom@tromey.com>
385
386 * Makefile.in (READLINE_DIR): Update.
387
388 2019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
389
390 * infcall.c (call_function_by_hand_dummy): Fix the function
391 comment. And extract out a code section into...
392 (reserve_stack_space): ...this new function.
393
394 2019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
395
396 * infcall.c (value_arg_coerce): Remove an unused parameter.
397 (call_function_by_hand_dummy): Update the call to
398 'value_arg_coerce'.
399
400 2019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
401
402 * infcall.c (call_function_by_hand_dummy): Refactor.
403
404 2019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
405
406 * MAINTAINERS (Write After Approval): Add Tankut Baris Aktemur.
407
408 2019-10-23 Tom Tromey <tom@tromey.com>
409
410 * configure: Rebuild.
411 * configure.ac: Don't check for sigprocmask.
412 * gdbsupport/common.m4 (GDB_AC_COMMON): Check for sigprocmask.
413
414 2019-10-23 Tom Tromey <tom@tromey.com>
415
416 * configure: Rebuild.
417 * acinclude.m4: Use m4_include, not sinclude.
418
419 2019-10-23 Tom de Vries <tdevries@suse.de>
420
421 PR breakpoints/24687
422 * symtab.c (iterate_over_some_symtabs): Apply gdb_realpath on fullname.
423
424 2019-10-22 Christian Biesinger <cbiesinger@google.com>
425
426 * symtab.c (struct demangled_name_entry) <language>: Change from
427 bitfield to regular variable.
428
429 2019-10-22 Christian Biesinger <cbiesinger@google.com>
430
431 * symtab.c (struct demangled_name_entry): Add a constructor.
432 (free_demangled_name_entry): New function to call the destructor
433 for demangled_name_entry.
434 (create_demangled_names_hash): Pass free_demangled_name_entry to
435 htab_create_alloc.
436 (symbol_set_names): Call placement new for demangled_name_entry.
437 * utils.c: No longer include xxhash.h here, now that fast_hash
438 is inlined in the header.
439 * utils.h: Instead, include it here.
440
441 2019-10-22 Christian Biesinger <cbiesinger@google.com>
442
443 * Makefile.in: Link with libxxhash.
444 * config.in: Regenerate.
445 * configure: Regenerate.
446 * configure.ac: Search for libxxhash.
447 * utils.c (fast_hash): Use xxhash if present.
448
449 2019-10-22 Christian Biesinger <cbiesinger@google.com>
450
451 * utils.h (fast_hash): New function.
452 * symtab.c (hash_demangled_name_entry): Call new function
453 fast_hash.
454
455 2019-10-22 Christian Biesinger <cbiesinger@google.com>
456
457 * symtab.c (struct demangled_name_entry): Change type of mangled
458 to gdb::string_view. Also adds a constructor that takes the
459 mangled name.
460 (hash_demangled_name_entry): Update.
461 (eq_demangled_name_entry): Update.
462 (free_demangled_name_entry): New function to call the destructor
463 now that this is not a POD anymore.
464 (create_demangled_names_hash): Pass free_demangled_name_entry to
465 htab_create_alloc.
466 (symbol_set_names): Update.
467
468 2019-10-21 Ali Tamur <tamu@google.com>
469
470 * dwarf2read.c (dir_index): Change type.
471 (file_name_index): Likewise.
472 (line_header::include_dir_at): Change comment and implementation on
473 whether it is DWARF 5.
474 (line_header::is_valid_file_index): New function.
475 (line_header::file_name_at): Change comment and implementation on
476 whether it is DWARF 5.
477 (line_header::file_names): Change to private field renamed as
478 m_file_names and introduce a new accessor method.
479 (line_header::file_names_size): New method.
480 (line_header::include_dirs): Change to private field and rename as
481 m_include_dirs.
482 (dw2_get_file_names_reader): Define local var at a smaller scope and
483 reflect API change.
484 (dwarf2_cu::setup_type_unit_groups): Reflect API change.
485 (process_structure_scope): Likewise.
486 (line_header::add_include_dir): Change message and reflect renaming.
487 (line_header::add_file_name): Likewise.
488 (read_formatted_entries): Handle DW_FORM_data16.
489 (dwarf_decode_line_header): Fix line header length calculation.
490 (psymtab_include_file_name): Change comment and API.
491 (lnp_state_machine::m_file): Update comment and reflect type change.
492 (lnp_state_machine::record_line): Reflect type change.
493 (dwarf_decode_lines): Reflect API change.
494 (file_file_name): Likewise.
495 (file_full_name): Likewise.
496
497 2019-10-21 Andrew Burgess <andrew.burgess@embecosm.com>
498
499 * objfiles.c (sort_cmp): Ensure that !(a < a) holds true.
500
501 2019-10-21 Tom Tromey <tom@tromey.com>
502
503 * tui/tui-winsource.h (tui_exec_info_content): Remove typedef.
504
505 2019-10-21 Tom Tromey <tom@tromey.com>
506
507 * configure.ac (nm.h): Conditionally create nm.h link. Subst
508 NM_H. Use AC_CONFIG_LINKS.
509 * configure: Rebuild.
510 * Makefile.in (NM_H): New variable.
511 (generated_files): Add NM_H. Remove gcore.
512 (nm.h, stamp-nmh): New targets.
513
514 2019-10-20 Tom Tromey <tom@tromey.com>
515
516 * objfiles.h (unlink_objfile, put_objfile_before): Don't declare.
517 * objfiles.c (unlink_objfile): Move earlier. Now static. Remove
518 obsolete comment.
519 (put_objfile_before): Now static.
520
521 2019-10-19 Simon Marchi <simon.marchi@polymtl.ca>
522
523 * gdbsupport/common-utils.h (startswith): Change return type to
524 bool.
525
526 2019-10-19 Christian Biesinger <cbiesinger@google.com>
527
528 * bcache.c (bcache::print_statistics): Use std::sort instead of qsort.
529 * breakpoint.c (bp_locations_compare): Rename to...
530 (bp_location_is_less_than): ...this, and change to std::sort semantics.
531 (update_global_location_list): Use std::sort instead of qsort.
532 * buildsym.c (compare_line_numbers): Rename to...
533 (lte_is_less_than): ...this, and change to std::sort semantics.
534 (buildsym_compunit::end_symtab_with_blockvector): Use std::sort
535 instead of qsort.
536 * disasm.c (compare_lines): Rename to...
537 (line_is_less_than): ...this, and change to std::sort semantics.
538 (do_mixed_source_and_assembly_deprecated): Call std::sort instead
539 of qsort.
540 * dwarf2-frame.c (qsort_fde_cmp): Rename to...
541 (fde_is_less_than): ...this, and change to std::sort semantics.
542 (dwarf2_build_frame_info): Call std::sort instead of qsort.
543 * mdebugread.c (compare_blocks):
544 (block_is_less_than): ...this, and change to std::sort semantics.
545 (sort_blocks): Call std::sort instead of qsort.
546 * objfiles.c (qsort_cmp): Rename to...
547 (sort_cmp): ...this, and change to std::sort semantics.
548 (update_section_map): Call std::sort instead of qsort.
549 * remote.c (compare_pnums): Remove.
550 (map_regcache_remote_table): Call std::sort instead of qsort.
551 * utils.c (compare_positive_ints): Remove.
552 * utils.h (compare_positive_ints): Remove.
553 * xcoffread.c (compare_lte): Remove.
554 (arrange_linetable): Call std::sort instead of qsort.
555
556 2019-10-19 Sergio Durigan Junior <sergiodj@redhat.com>
557
558 * symfile.c (init_entry_point_info): Fix typo.
559 * i386-darwin-tdep.c (darwin_dwarf_signal_frame_p): Fix typo.
560
561 2019-10-18 Tom de Vries <tdevries@suse.de>
562
563 * aarch64-tdep.c: Fix typos in comments.
564 * ada-lang.c: Same.
565 * ada-tasks.c: Same.
566 * alpha-tdep.c: Same.
567 * alpha-tdep.h: Same.
568 * amd64-nat.c: Same.
569 * amd64-windows-tdep.c: Same.
570 * arc-tdep.c: Same.
571 * arc-tdep.h: Same.
572 * arch-utils.c: Same.
573 * arm-nbsd-tdep.c: Same.
574 * arm-tdep.c: Same.
575 * ax-gdb.c: Same.
576 * blockframe.c: Same.
577 * btrace.c: Same.
578 * c-varobj.c: Same.
579 * coff-pe-read.c: Same.
580 * coffread.c: Same.
581 * cris-tdep.c: Same.
582 * darwin-nat.c: Same.
583 * dbxread.c: Same.
584 * dcache.c: Same.
585 * disasm.c: Same.
586 * dtrace-probe.c: Same.
587 * dwarf-index-write.c: Same.
588 * dwarf2-frame-tailcall.c: Same.
589 * dwarf2-frame.c: Same.
590 * dwarf2read.c: Same.
591 * eval.c: Same.
592 * exceptions.c: Same.
593 * fbsd-tdep.c: Same.
594 * findvar.c: Same.
595 * frame.c: Same.
596 * frv-tdep.c: Same.
597 * gnu-v3-abi.c: Same.
598 * go32-nat.c: Same.
599 * h8300-tdep.c: Same.
600 * hppa-tdep.c: Same.
601 * i386-linux-tdep.c: Same.
602 * i386-tdep.c: Same.
603 * ia64-libunwind-tdep.c: Same.
604 * ia64-tdep.c: Same.
605 * infcmd.c: Same.
606 * infrun.c: Same.
607 * linespec.c: Same.
608 * linux-nat.c: Same.
609 * linux-thread-db.c: Same.
610 * machoread.c: Same.
611 * mdebugread.c: Same.
612 * mep-tdep.c: Same.
613 * mn10300-tdep.c: Same.
614 * namespace.c: Same.
615 * objfiles.c: Same.
616 * opencl-lang.c: Same.
617 * or1k-tdep.c: Same.
618 * osabi.c: Same.
619 * ppc-linux-nat.c: Same.
620 * ppc-linux-tdep.c: Same.
621 * ppc-sysv-tdep.c: Same.
622 * printcmd.c: Same.
623 * procfs.c: Same.
624 * record-btrace.c: Same.
625 * record-full.c: Same.
626 * remote-fileio.c: Same.
627 * remote.c: Same.
628 * rs6000-tdep.c: Same.
629 * s12z-tdep.c: Same.
630 * score-tdep.c: Same.
631 * ser-base.c: Same.
632 * ser-go32.c: Same.
633 * skip.c: Same.
634 * sol-thread.c: Same.
635 * solib-svr4.c: Same.
636 * solib.c: Same.
637 * source.c: Same.
638 * sparc-nat.c: Same.
639 * sparc-sol2-tdep.c: Same.
640 * sparc-tdep.c: Same.
641 * sparc64-tdep.c: Same.
642 * stabsread.c: Same.
643 * stack.c: Same.
644 * symfile.c: Same.
645 * symtab.c: Same.
646 * target-descriptions.c: Same.
647 * target-float.c: Same.
648 * thread.c: Same.
649 * utils.c: Same.
650 * valops.c: Same.
651 * valprint.c: Same.
652 * value.c: Same.
653 * varobj.c: Same.
654 * windows-nat.c: Same.
655 * xcoffread.c: Same.
656 * xstormy16-tdep.c: Same.
657 * xtensa-tdep.c: Same.
658
659 2019-10-17 Tom Tromey <tromey@adacore.com>
660
661 * configure: Rebuild.
662 * configure.ac: Use AC_CONFIG_HEADERS. Create stamp-h there, not
663 in AC_CONFIG_FILES invocation.
664 * Makefile.in (Makefile, data-directory/Makefile, stamp-h): Use
665 new-style config.status invocation.
666
667 2019-10-17 Tom de Vries <tdevries@suse.de>
668
669 * arm-nbsd-nat.c: Fix typos in comments.
670 * arm-tdep.c: Same.
671 * darwin-nat-info.c: Same.
672 * dwarf2read.c: Same.
673 * elfread.c: Same.
674 * event-top.c: Same.
675 * findvar.c: Same.
676 * gdbtypes.c: Same.
677 * hppa-tdep.c: Same.
678 * i386-tdep.c: Same.
679 * jit.c: Same.
680 * main.c: Same.
681 * mdebugread.c: Same.
682 * moxie-tdep.c: Same.
683 * nto-procfs.c: Same.
684 * osabi.c: Same.
685 * ppc-linux-tdep.c: Same.
686 * remote.c: Same.
687 * riscv-tdep.c: Same.
688 * s390-tdep.c: Same.
689 * sh-tdep.c: Same.
690 * sparc-linux-tdep.c: Same.
691 * sparc-nat.c: Same.
692 * stack.c: Same.
693 * target-descriptions.c: Same.
694 * top.c: Same.
695 * varobj.c: Same.
696
697 2019-10-16 Tom Tromey <tom@tromey.com>
698
699 * objfiles.h (struct objfile) <original_name>: Now const.
700
701 2019-10-16 Christian Biesinger <cbiesinger@google.com>
702
703 * gdbsupport/gdb_setjmp.h (SIGSETJMP): Allow passing in the value to
704 pass on to sigsetjmp's second argument.
705 * cp-support.c (gdb_demangle): Unblock SIGSEGV if we caught a crash.
706
707 2019-10-16 Keith Seitz <keiths@redhat.com>
708
709 PR gdb/23567
710 * dwarf2read.c (dwarf2_per_objfile::locate_sections): Discard
711 sections whose size is greater than the file size.
712
713 2019-10-16 Jim Wilson <jimw@sifive.com>
714
715 * riscv-tdep.c (riscv_gcc_target_options): New.
716 (riscv_gnu_triplet_regexp): New.
717 (riscv_gdbarch_init): Call set_gdbarch_gcc_triplet_options and
718 set_gdbarch_gnu_triplet_regexp.
719
720 2019-10-16 Christian Biesinger <cbiesinger@google.com>
721
722 * Makefile.in: Add xml-builtin.h.
723 * features/feature_to_c.sh: Add an include for xml-builtin.h
724 to ensure that the compiler checks that the types match.
725 * xml-builtin.h: New file.
726 * xml-support.c (fetch_xml_builtin): Add missing const.
727 * xml-support.h: Remove declaration of xml_builtins.
728
729 2019-10-16 Tom de Vries <tdevries@suse.de>
730
731 PR tdep/25096
732 * amd64-tdep.c (amd64_classify_aggregate_field): Factor out of ...
733 (amd64_classify_aggregate): ... here.
734 (amd64_classify_aggregate_field): Handled fiels of nested structs
735 recursively.
736
737 2019-10-16 Tom de Vries <tdevries@suse.de>
738
739 PR tdep/24104
740 * amd64-tdep.c (amd64_push_arguments): Handle AMD64_NO_CLASS in loop
741 that handles 'theclass'.
742
743 2019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
744
745 * linespec.c (decode_digits_ordinary): Update comment.
746 * make-target-delegates: No longer need to handle VEC case.
747 * memrange.c (normalize_mem_ranges): Update comment.
748 * namespace.c (add_using_directive): Update comment.
749 * objc-lang.c (uniquify_strings): Update comment.
750 * ppc-linux-nat.c (struct thread_points): Update comment.
751 * probe.h (find_probes_in_objfile): Update comment.
752 * target.h (enum flash_preserve_mode): Update comment.
753 * varobj.c (varobj_restrict_range): Update comment.
754 * varobj.h (varobj_list_children): Update comment.
755
756 2019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
757
758 * Makefile.in: Remove references to vec.h and vec.c.
759 * aarch64-tdep.c: No longer include vec.h.
760 * ada-lang.c: Likewise.
761 * ada-lang.h: Likewise.
762 * arm-tdep.c: Likewise.
763 * ax.h: Likewise.
764 * breakpoint.h: Likewise.
765 * charset.c: Likewise.
766 * cp-support.h: Likewise.
767 * dtrace-probe.c: Likewise.
768 * dwarf2read.c: Likewise.
769 * extension.h: Likewise.
770 * gdb_bfd.c: Likewise.
771 * gdbsupport/gdb_vecs.h: Likewise.
772 * gdbsupport/vec.c: Remove.
773 * gdbsupport/vec.h: Remove.
774 * gdbthread.h: Likewise.
775 * guile/scm-type.c: Likewise.
776 * inline-frame.c: Likewise.
777 * machoread.c: Likewise.
778 * memattr.c: Likewise.
779 * memrange.h: Likewise.
780 * namespace.h: Likewise.
781 * nat/linux-btrace.h: Likewise.
782 * osdata.c: Likewise.
783 * parser-defs.h: Likewise.
784 * progspace.h: Likewise.
785 * python/py-type.c: Likewise.
786 * record-btrace.c: Likewise.
787 * rust-exp.y: Likewise.
788 * solib-target.c: Likewise.
789 * stap-probe.c: Likewise.
790 * target-descriptions.c: Likewise.
791 * target-memory.c: Likewise.
792 * target.h: Likewise.
793 * varobj.c: Likewise.
794 * varobj.h: Likewise.
795 * xml-support.h: Likewise.
796
797 2019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
798
799 * gdb/dwarf2read.c (dwarf2_per_objfile::~dwarf2_per_objfile):
800 Update for new std::vector based implementation.
801 (process_psymtab_comp_unit_reader): Likewise.
802 (scan_partial_symbols): Likewise.
803 (recursively_compute_inclusions): Likewise.
804 (compute_compunit_symtab_includes): Likewise.
805 (process_imported_unit_die): Likewise.
806 (queue_and_load_dwo_tu): Likewise.
807 (follow_die_sig_1): Likewise.
808 * gdb/dwarf2read.h: Remove DEF_VEC_P.
809 (typedef dwarf2_per_cu_ptr): Remove.
810 (struct dwarf2_per_cu_data) <imported_symtabs_empty>: New
811 function.
812 (struct dwarf2_per_cu_data) <imported_symtabs_push>: New function.
813 (struct dwarf2_per_cu_data) <imported_symtabs_size>: New function.
814 (struct dwarf2_per_cu_data) <imported_symtabs_free>: New function.
815 (struct dwarf2_per_cu_data) <imported_symtabs>: Change to
816 std::vector.
817
818 2019-10-15 Tom Tromey <tromey@adacore.com>
819
820 * windows-nat.c (windows_nat_target::resume): Use %x when logging
821 TID.
822
823 2019-10-15 Tom Tromey <tromey@adacore.com>
824
825 * windows-nat.c (windows_nat_target::fetch_registers)
826 (windows_nat_target::store_registers): Rename "pid" to "tid".
827
828 2019-10-15 Tom Tromey <tromey@adacore.com>
829
830 * gdbarch.h, gdbarch.c: Rebuild.
831 * gdbarch.sh (gcc_target_options): Change return type to
832 std::string.
833 * compile/compile.c (get_args): Update.
834 * nios2-tdep.c (nios2_gcc_target_options): Return std::string.
835 * arm-linux-tdep.c (arm_linux_gcc_target_options): Return
836 std::string.
837 * aarch64-linux-tdep.c (aarch64_linux_gcc_target_options): Return
838 std::string.
839 * arch-utils.c (default_gcc_target_options): Return std::string.
840 * arch-utils.h (default_gcc_target_options): Return std::string.
841 * s390-tdep.c (s390_gcc_target_options): Return std::string.
842
843 2019-10-15 Christian Biesinger <cbiesinger@google.com>
844
845 * breakpoint.c (breakpoint_chain): Make static.
846 * tui/tui-winsource.c: Call iterate_over_breakpoints instead
847 of accessing breakpoint_chain.
848
849 2019-10-15 Christian Biesinger <cbiesinger@google.com>
850
851 * breakpoint.c (iterate_over_breakpoints): Change function pointer
852 to a gdb::function_view and return value to bool.
853 * breakpoint.h (iterate_over_breakpoints): Likewise.
854 * dummy-frame.c (pop_dummy_frame_bpt): Update.
855 (pop_dummy_frame): Update.
856 * guile/scm-breakpoint.c (bpscm_build_bp_list): Update.
857 (gdbscm_breakpoints): Update.
858 * python/py-breakpoint.c (build_bp_list): Update.
859 (gdbpy_breakpoints): Update.
860 * python/py-finishbreakpoint.c (bpfinishpy_detect_out_scope_cb):
861 Update.
862 (bpfinishpy_handle_stop): Update.
863 (bpfinishpy_handle_exit): Update.
864 * solib-svr4.c (svr4_update_solib_event_breakpoint): Update.
865 (svr4_update_solib_event_breakpoints): Update.
866
867 2019-10-15 Andreas Arnez <arnez@linux.ibm.com>
868
869 * s390-tdep.c (s390_effective_inner_type): Ignore static fields
870 when unwrapping single-field structs.
871
872 2019-10-14 Simon Marchi <simon.marchi@polymtl.ca>
873
874 * dwarf2read.c: Remove includes.
875
876 2019-10-13 Simon Marchi <simon.marchi@polymtl.ca>
877
878 * ui-out.c (ui_out::call_do_message): Silence
879 -Wformat-nonliteral warning.
880
881 2019-10-12 Simon Marchi <simon.marchi@polymtl.ca>
882
883 * breakpoint.c: Remove some includes: continuations.h, skip.h,
884 mi/mi-main.h, readline/readline.h, readline/history.h. Add
885 include: readline/tilde.h.
886
887 2019-10-12 Christian Biesinger <cbiesinger@google.com>
888
889 * remote.c (remote_target::get_trace_status): Remove declaration of
890 trace_regblock_size.
891
892 2019-10-12 Christian Biesinger <cbiesinger@google.com>
893
894 * cli/cli-cmds.c (max_user_call_depth): Move comment to header.
895 (show_user): Remove declaration of cmdlist.
896 * cli/cli-cmds.h (max_user_call_depth): Declare.
897 * cli/cli-script.c (execute_user_command): Remove declaration
898 of max_user_call_depth.
899
900 2019-10-11 Jim Wilson <jimw@sifive.com>
901
902 * gdbsupport/print-utils.h (pulongest): Fix comment.
903 (plongest): Likewise.
904 (phex): Add missing comment, mention leading zeros.
905 (phex_nz): Add mention of no leading zeros to comment.
906
907 * riscv-tdep.c (riscv_push_dummy_code): Change %lld to %s and use
908 plongest instead of unsigned long long cast.
909
910 2019-10-10 Christian Biesinger <cbiesinger@google.com>
911
912 * main.c (captured_main_1): Include gdbtk.h and remove declarations
913 for external_editor_command and gdbtk_test.
914
915 2019-10-10 Christian Biesinger <cbiesinger@google.com>
916
917 * mi/mi-cmd-var.c (varobjdebug): Remove declaration.
918 * varobj.c (varobjdebug): Move comment to...
919 * varobj.h (varobjdebug): ...here, and declare.
920
921 2019-10-09 Tom Tromey <tom@tromey.com>
922
923 * tui/tui-regs.c (tui_data_window::show_registers): Don't call
924 erase_data_content.
925
926 2019-10-09 Tom Tromey <tom@tromey.com>
927
928 * tui/tui-wingeneral.h (tui_delete_win): Don't declare.
929 * tui/tui-stack.c (tui_locator_window::rerender): Update.
930 * tui/tui-command.c (tui_cmd_window::resize)
931 (tui_refresh_cmd_win): Update.
932 * tui/tui-win.c (tui_resize_all, tui_set_focus_command): Update.
933 * tui/tui.c (tui_rl_other_window, tui_enable): Update.
934 * tui/tui-data.c (~tui_gen_win_info): Remove.
935 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
936 * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts)
937 (tui_redisplay_readline, tui_mld_flush)
938 (tui_mld_erase_entire_line, tui_mld_getc, tui_getc): Update.
939 * tui/tui-regs.c (tui_data_window::delete_data_content_windows)
940 (tui_data_window::erase_data_content)
941 (tui_data_item_window::rerender)
942 (tui_data_item_window::refresh_window): Update.
943 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window)
944 (box_win, tui_gen_win_info::make_window)
945 (tui_gen_win_info::make_visible): Update.
946 (tui_delete_win): Remove.
947 * tui/tui-winsource.c
948 (tui_source_window_base::do_erase_source_content): Update.
949 (tui_show_source_line, tui_source_window_base::update_tab_width)
950 (tui_source_window_base::update_exec_info): Update.
951 * tui/tui-data.h (struct curses_deleter): New.
952 (struct tui_gen_win_info) <handle>: Now a unique_ptr.
953 (struct tui_gen_win_info) <~tui_gen_win_info>: Define.
954
955 2019-10-09 Tom Tromey <tom@tromey.com>
956
957 * tui/tui-wingeneral.h (struct tui_gen_win_info): Don't declare.
958
959 2019-10-09 Tom Tromey <tom@tromey.com>
960
961 * tui/tui-data.c (tui_win_is_auxiliary): Remove.
962 * tui/tui-data.h (tui_win_is_auxiliary): Don't declare.
963
964 2019-10-09 Tom Tromey <tom@tromey.com>
965
966 * tui/tui-disasm.c (tui_get_low_disassembly_address): Compute
967 window height directly.
968 * tui/tui-layout.h (tui_default_win_viewport_height): Don't
969 declare.
970 * tui/tui-layout.c (tui_default_win_height): Remove.
971 (tui_default_win_viewport_height): Remove.
972
973 2019-10-09 Tom Tromey <tom@tromey.com>
974
975 * tui/tui.h: Remove comments.
976
977 2019-10-09 Tom de Vries <tdevries@suse.de>
978
979 * python/lib/gdb/printer/bound_registers.py: Use
980 '^builtin_type_bound128' as regexp argument for
981 add_builtin_pretty_printer.
982
983 2019-10-09 Christian Biesinger <cbiesinger@google.com>
984
985 * guile/guile.c (guile_extension_script_ops): Remove forward
986 declaration and mark as static.
987 (guile_script_ops): Likewise.
988 (extension_language_guile): Move further down in the file so
989 it can reference the definitions for guile_{extension_,}script_ops.
990
991 2019-10-09 Andreas Arnez <arnez@linux.ibm.com>
992
993 * s390-tdep.c (390_process_record): Handle new arch13 instructions
994 except SORTL, DFLTCC, and KDSA.
995
996 2019-10-08 Tom Tromey <tromey@adacore.com>
997
998 * windows-nat.c (struct windows_thread_info_struct) <sf>: Remove.
999 (struct safe_symbol_file_add_args): Remove.
1000
1001 2019-10-08 Tom Tromey <tromey@adacore.com>
1002
1003 * windows-nat.c: Don't include buildsym-legacy.h.
1004
1005 2019-10-08 Tom Tromey <tromey@adacore.com>
1006
1007 * contrib/ari/gdb_ari.sh (%p): Allow gdb-specific %p extensions.
1008
1009 2019-10-08 Christian Biesinger <cbiesinger@google.com>
1010
1011 * gdbtypes.c (overload_debug): Move comment to header.
1012 * gdbtypes.h (overload_debug): Declare.
1013 * valops.c: Remove declaration of overload_debug, instead
1014 include gdbtypes.h.
1015
1016 2019-10-08 Christian Biesinger <cbiesinger@google.com>
1017
1018 * language.c (show_language_command): Pass lang_frame_mismatch_warn
1019 through _().
1020 (lang_frame_mismatch_warn): Make const, mark with N_(), and
1021 move comment...
1022 * language.h (lang_frame_mismatch_warn): ... here. Also add
1023 declaration.
1024 * top.c (lang_frame_mismatch_warn): Remove declaration.
1025 (check_frame_language_change): Pass lang_frame_mismatch_warn
1026 through _().
1027
1028 2019-10-07 Christian Biesinger <cbiesinger@google.com>
1029
1030 * c-lang.h (vtbl_ptr_name): Declare.
1031 * cp-valprint.c (vtbl_ptr_name): Remove "extern" now that we get
1032 it from the header.
1033 * stabsread.c (define_symbol): Remove declaration of vtbl_ptr_name.
1034
1035 2019-10-07 Christian Biesinger <cbiesinger@google.com>
1036
1037 * charset.c (your_gdb_wchar_t_is_bogus): Replace with a
1038 gdb_static_assert.
1039
1040 2019-10-07 Weimin Pan <weimin.pan@oracle.com>
1041
1042 * ../Makefile.def (dependencies): Add all-libctf to all-gdb
1043 * ../Makefile.in: Add "all-gdb: maybe-all-libctf"
1044 * ctfread.c: New file.
1045 * ctfread.h: New file.
1046 * elfread.c: Include ctfread.h.
1047 (struct elfinfo text_p): New member ctfsect.
1048 (elf_locate_sections): Mark CTF section.
1049 (elf_symfile_read): Call elfctf_build_psymtabs.
1050 * Makefile.in (LIBCTF): Add.
1051 (CLIBS): Use it.
1052 (CDEPS): Likewise.
1053 (DIST): Add ctfread.c.
1054
1055 2019-10-07 Andrew Burgess <andrew.burgess@embecosm.com>
1056
1057 * ctfread.c (struct nextfield): Renamed to ...
1058 (struct ctf_nextfield): ... this.
1059 (struct field_info): Renamed to ...
1060 (strut ctf_field_info): ... this.
1061 (attach_fields_to_type): Update for renamed structures.
1062 (ctf_add_member_cb): Likewise.
1063 (ctf_add_enum_member_cb): Likewise.
1064 (process_struct_members): Likewise.
1065 (process_enum_type): Likewise.
1066
1067 2019-10-07 Weimin Pan <weimin.pan@oracle.com>
1068
1069 * tracectf.h: Rename, was ctf.h.
1070 * tracectf.c: Rename, was ctf.c, replace ctf.h with tracectf.h.
1071 * tracefile.c: Likewise.
1072 * tracepoint.c: Remove unused include ctf.h.
1073 * mi/mi-main.c: Likewise.
1074 * Makefile.in Replace ctf.c with tracectf.c.
1075
1076 2019-10-06 Joel Brobecker <brobecker@adacore.com>
1077
1078 * version.in: Change version number to "9.0.50.DATE-git".
1079
1080 2019-10-03 Tom Tromey <tom@tromey.com>
1081
1082 PR rust/24976:
1083 * dwarf2read.c (quirk_rust_enum): Handle single-element unions.
1084
1085 2019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
1086
1087 * f-lang.c (f_language_defn): Use cp_get_symbol_name_matcher and
1088 cp_search_name_hash.
1089 * NEWS: Add entry about nested function support.
1090
1091 2019-10-03 Bernhard Heckel <bernhard.heckel@intel.com>
1092 Andrew Burgess <andrew.burgess@embecosm.com>
1093
1094 * cp-namespace.c (cp_search_static_and_baseclasses): Only search
1095 for nested static variables when searchin VAR_DOMAIN.
1096 * dwarf2read.c (add_partial_symbol): Add nested subroutines to the
1097 global scope, update comment.
1098 (add_partial_subprogram): Call add_partial_subprogram recursively
1099 for nested subroutines when processinng Fortran.
1100 (load_partial_dies): Process the child entities of a subprogram
1101 when processing Fortran.
1102 (partial_die_parent_scope): Handle building scope
1103 for Fortran nested functions.
1104 (process_die): Record that nested functions have a scope.
1105 (new_symbol): Always record Fortran subprograms on the global
1106 symbol list.
1107 (determine_prefix): How to build the prefix for Fortran
1108 subprograms.
1109
1110 2019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
1111
1112 * linux-nat.c (linux_nat_filter_event): Don't ignore SIGSTOP if we
1113 have just sent the thread a SIGSTOP and are waiting for it to
1114 arrive.
1115
1116 2019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
1117
1118 * btrace.c (btrace_add_pc): Remove whitespace before the template
1119 parameter in 'std::vector <...>'.
1120 (parse_xml_btrace_block): Likewise.
1121 (btrace_maint_decode_pt): Likewise.
1122 (btrace_maint_update_packets): Likewise.
1123 (btrace_maint_print_packets): Likewise.
1124 * btrace.h (struct btrace_maint_info): Likewise.
1125 * dwarf2read.c (struct type_unit_group): Likewise.
1126 (build_type_psymtabs_reader): Likewise.
1127 * gdbsupport/btrace-common.c (btrace_data_append): Likewise.
1128 * gdbsupport/btrace-common.h (struct btrace_data_bts): Likewise.
1129 * nat/linux-btrace.c (perf_event_read_bts): Likewise.
1130
1131 2019-10-03 Tom de Vries <tdevries@suse.de>
1132
1133 * cli/cli-style.c (_initialize_cli_style): Adding a '.' at the end of
1134 the first line of the help text for set/show style metadata.
1135
1136 2019-10-02 Tom Tromey <tromey@adacore.com>
1137
1138 * Makefile.in (COMMON_SFILES): Add common-inferior.c.
1139 * gdbsupport/common-inferior.c: New file.
1140 * infcmd.c (startup_with_shell): Don't define.
1141 * nat/fork-inferior.h (startup_with_shell): Don't declare.
1142 * gdbsupport/common-inferior.h (startup_with_shell): Declare.
1143 * inferior.h (startup_with_shell): Don't declare.
1144
1145 2019-10-02 Christian Biesinger <cbiesinger@google.com>
1146
1147 * gdbsupport/gdb_assert.h: Include errors.h.
1148 * gdbsupport/gdb_string_view.h: Include gdb_assert.h.
1149
1150 2019-10-02 Tom Tromey <tromey@adacore.com>
1151
1152 * NEWS: Add $_ada_exception entry.
1153 * ada-lang.c (struct ada_catchpoint): Add constructor.
1154 <m_kind>: New member.
1155 (allocate_location_exception, re_set_exception): Remove
1156 "ex" parameter.
1157 (should_stop_exception): Compute $_ada_exception.
1158 (check_status_exception, print_it_exception)
1159 (print_one_exception, print_mention_exception): Remove
1160 "ex" parameter.
1161 (allocate_location_catch_exception, re_set_catch_exception)
1162 (check_status_exception, print_it_catch_exception)
1163 (print_one_catch_exception, print_mention_catch_exception)
1164 (print_recreate_catch_exception)
1165 (allocate_location_catch_exception_unhandled)
1166 (re_set_catch_exception_unhandled)
1167 (check_status_exception, print_it_catch_exception_unhandled)
1168 (print_one_catch_exception_unhandled)
1169 (print_mention_catch_exception_unhandled)
1170 (print_recreate_catch_exception_unhandled)
1171 (allocate_location_catch_assert, re_set_catch_assert)
1172 (check_status_assert, print_it_catch_assert)
1173 (print_one_catch_assert, print_mention_catch_assert)
1174 (print_recreate_catch_assert)
1175 (allocate_location_catch_handlers, re_set_catch_handlers)
1176 (check_status_handlers, print_it_catch_handlers)
1177 (print_one_catch_handlers, print_mention_catch_handlers)
1178 (print_recreate_catch_handlers): Remove.
1179 (create_ada_exception_catchpoint): Update.
1180 (initialize_ada_catchpoint_ops): Update.
1181
1182 2019-10-02 Tom Tromey <tromey@adacore.com>
1183
1184 * ada-lang.c (ada_lookup_simple_minsyms): Remove.
1185 (create_excep_cond_exprs): Simplify exception string computation.
1186 (ada_exception_catchpoint_cond_string): Likewise.
1187
1188 2019-10-02 Tom Tromey <tromey@adacore.com>
1189
1190 * symmisc.c (dump_msymbols): Don't use MSYMBOL_VALUE_ADDRESS.
1191 * ada-lang.c (lesseq_defined_than): Handle
1192 LOC_STATIC.
1193 * dwarf2read.c (dwarf2_per_objfile): Add can_copy
1194 parameter.
1195 (dwarf2_has_info): Likewise.
1196 (new_symbol): Set maybe_copied on symbol when
1197 appropriate.
1198 * dwarf2read.h (dwarf2_per_objfile): Add can_copy
1199 parameter.
1200 <can_copy>: New member.
1201 * elfread.c (record_minimal_symbol): Set maybe_copied
1202 on symbol when appropriate.
1203 (elf_symfile_read): Update call to dwarf2_has_info.
1204 * minsyms.c (lookup_minimal_symbol_linkage): New
1205 function.
1206 * minsyms.h (lookup_minimal_symbol_linkage): Declare.
1207 * symtab.c (get_symbol_address, get_msymbol_address):
1208 New functions.
1209 * symtab.h (get_symbol_address, get_msymbol_address):
1210 Declare.
1211 (SYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_ADDRESS): Handle
1212 maybe_copied.
1213 (struct symbol, struct minimal_symbol) <maybe_copied>:
1214 New member.
1215
1216 2019-10-02 Tom Tromey <tromey@adacore.com>
1217
1218 * source.c (struct current_source_location): New.
1219 (current_source_key): New global.
1220 (current_source_symtab, current_source_line)
1221 (current_source_pspace): Remove.
1222 (get_source_location): New function.
1223 (get_current_source_symtab_and_line)
1224 (set_default_source_symtab_and_line)
1225 (set_current_source_symtab_and_line)
1226 (clear_current_source_symtab_and_line, select_source_symtab)
1227 (info_source_command, print_source_lines_base)
1228 (info_line_command, search_command_helper, _initialize_source):
1229 Update.
1230
1231 2019-10-02 Tom Tromey <tromey@adacore.com>
1232
1233 * source.c (select_source_symtab): Don't call
1234 decode_line_with_current_source.
1235
1236 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
1237
1238 * symtab.c (lookup_global_symbol): Search global block.
1239
1240 2019-10-02 Tom Tromey <tromey@adacore.com>
1241
1242 * coffread.c (process_coff_symbol): Update.
1243 * dwarf2read.c (var_decode_location, new_symbol): Update.
1244 * mdebugread.c (parse_symbol): Update.
1245 * objfiles.c (relocate_one_symbol): Update.
1246 * stabsread.c (define_symbol, fix_common_block)
1247 (scan_file_globals): Update.
1248 * symtab.h (SYMBOL_VALUE_ADDRESS): Expand to an rvalue.
1249 (SET_SYMBOL_VALUE_ADDRESS): New macro.
1250 * xcoffread.c (process_xcoff_symbol): Update.
1251
1252 2019-10-02 Andreas Arnez <arnez@linux.ibm.com>
1253
1254 * MAINTAINERS: Update my email address.
1255
1256 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
1257
1258 * dwarf2read.c (struct type_unit_group) <tus>: Convert to
1259 std::vector.
1260 (build_type_psymtabs_reader): Update for std::vector.
1261 (build_type_psymtab_dependencies): Likewise.
1262 * dwarf2read.h: Remove use of DEF_VEC_P.
1263 (typedef sig_type_ptr): Delete.
1264
1265 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
1266
1267 * btrace.c (btrace_maint_clear): Update to handle change from VEC
1268 to std::vector.
1269 (btrace_maint_decode_pt): Likewise, and move allocation of the
1270 vector outside of the loop.
1271 (btrace_maint_update_packets): Update to handle change from VEC to
1272 std::vector.
1273 (btrace_maint_print_packets): Likewise.
1274 (maint_info_btrace_cmd): Likewise.
1275 * btrace.h: Remove use of DEF_VEC_O.
1276 (typedef btrace_pt_packet_s): Delete.
1277 (struct btrace_maint_info) <packets>: Change fromm VEC to
1278 std::vector.
1279 * gdbsupport/btrace-common.h: Remove 'vec.h' include.
1280
1281 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
1282
1283 * btrace.c (btrace_compute_ftrace_bts): Update for std::vector,
1284 make accesses into the vector constant references.
1285 (btrace_add_pc): Update for std::vector.
1286 (btrace_stitch_bts): Likewise.
1287 (parse_xml_btrace_block): Likewise.
1288 (btrace_maint_update_packets): Likewise.
1289 (btrace_maint_print_packets): Likewise.
1290 (maint_info_btrace_cmd): Likewise.
1291 * gdbsupport/btrace-common.c (btrace_data::fini): Update for
1292 std::vector.
1293 (btrace_data::empty): Likewise.
1294 (btrace_data_append): Likewise.
1295 * gdbsupport/btrace-common.h: Remove use of DEF_VEC_O.
1296 (typedef btrace_block_s): Delete.
1297 (struct btrace_block): Add constructor.
1298 (struct btrace_data_bts) <blocks>: Change to std::vector.
1299 * nat/linux-btrace.c (perf_event_read_bts): Update for
1300 std::vector.
1301 (linux_read_bts): Likewise.
1302
1303 2019-10-01 Tom Tromey <tom@tromey.com>
1304
1305 * cli/cli-logging.c (show_logging_filename): Use styled_string.
1306
1307 2019-10-01 Tom Tromey <tom@tromey.com>
1308
1309 * stack.c (print_frame, info_frame_command_core): Use
1310 styled_string.
1311 * linux-thread-db.c (try_thread_db_load_1)
1312 (try_thread_db_load_from_pdir_1): Use styled_string.
1313 * auto-load.c (file_is_auto_load_safe, execute_script_contents)
1314 (auto_load_section_scripts, info_auto_load_local_gdbinit)
1315 (maybe_print_unsupported_script_warning)
1316 (maybe_print_script_not_found_warning): Use styled_string.
1317 * ada-lang.c (user_select_syms): Use styled_string.
1318
1319 2019-10-01 Tom Tromey <tom@tromey.com>
1320
1321 * p-lang.c (pascal_printstr): Use metadata style.
1322 * value.c (show_convenience): Use metadata style.
1323 * valprint.c (valprint_check_validity, val_print_optimized_out)
1324 (val_print_not_saved, val_print_unavailable)
1325 (val_print_invalid_address, generic_val_print, val_print)
1326 (value_check_printable, val_print_array_elements): Use metadata
1327 style.
1328 * ui-out.h (class ui_out) <field_fmt>: New overload.
1329 <do_field_fmt>: Add style parameter.
1330 * ui-out.c (ui_out::field_fmt): New overload.
1331 * typeprint.c (type_print_unknown_return_type)
1332 (val_print_not_allocated, val_print_not_associated): Use metadata
1333 style.
1334 * tui/tui-out.h (class tui_ui_out) <do_field_fmt>: Add style
1335 parameter.
1336 * tui/tui-out.c (tui_ui_out::do_field_fmt): Update.
1337 * tracepoint.c (tvariables_info_1): Use metadata style.
1338 * stack.c (print_frame_arg, print_frame_info, print_frame)
1339 (info_frame_command_core): Use metadata style.
1340 * skip.c (info_skip_command): Use metadata style.
1341 * rust-lang.c (rust_print_enum): Use metadata style.
1342 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
1343 metadata style.
1344 * python/py-framefilter.c (py_print_single_arg): Use metadata
1345 style.
1346 * printcmd.c (do_one_display, print_variable_and_value): Use
1347 metadata style.
1348 * p-valprint.c (pascal_val_print)
1349 (pascal_object_print_value_fields): Use metadata style.
1350 * p-typeprint.c (pascal_type_print_base): Use metadata style.
1351 * mi/mi-out.h (class mi_ui_out) <do_field_fmt>: Add style
1352 parameter.
1353 * mi/mi-out.c (mi_ui_out::do_field_fmt): Update.
1354 * m2-valprint.c (m2_print_long_set): Use metadata style.
1355 * m2-typeprint.c (m2_print_type): Use metadata style.
1356 * infcmd.c (print_return_value_1): Use metadata style.
1357 * gnu-v3-abi.c (print_one_vtable): Use metadata style.
1358 * f-valprint.c (info_common_command_for_block): Use metadata
1359 style.
1360 * f-typeprint.c (f_type_print_base): Use metadata style.
1361 * expprint.c (print_subexp_standard): Use metadata style.
1362 * cp-valprint.c (cp_print_value_fields): Use metadata style.
1363 * cli/cli-style.h (class cli_style_option): Add constructor.
1364 (metadata_style): Declare.
1365 * cli/cli-style.c (metadata_style): New global.
1366 (_initialize_cli_style): Register metadata style.
1367 * cli-out.h (class cli_ui_out) <do_field_fmt>: Add style
1368 parameter.
1369 * cli-out.c (cli_ui_out::do_field_fmt): Update.
1370 * c-typeprint.c (c_type_print_base_struct_union)
1371 (c_type_print_base_1): Use metadata style.
1372 * breakpoint.c (watchpoint_value_print)
1373 (print_one_breakpoint_location): Use metadata style.
1374 * break-catch-syscall.c (print_one_catch_syscall): Use metadata
1375 style.
1376 * break-catch-sig.c (signal_catchpoint_print_one): Use metadata
1377 style.
1378 * ada-valprint.c (val_print_packed_array_elements, printstr)
1379 (print_field_values, ada_val_print_ref, ada_val_print): Use
1380 metadata style.
1381 * ada-typeprint.c (print_array_type, ada_print_type): Use metadata
1382 style.
1383 * ada-tasks.c (print_ada_task_info, info_task): Use metadata
1384 style.
1385 * ada-lang.c (user_select_syms): Use metadata style.
1386
1387 2019-10-01 Tom Tromey <tom@tromey.com>
1388
1389 * cli/cli-cmds.c (pwd_command): Style output.
1390
1391 2019-10-01 Pedro Alves <palves@redhat.com>
1392 Tom Tromey <tom@tromey.com>
1393
1394 * symtab.c (print_symbol_info): Use %ps.
1395 (print_msymbol_info): Use %ps.
1396 * symfile.c (symbol_file_add_with_addrs): Use %ps.
1397 * printcmd.c (print_variable_and_value): Use %ps.
1398 * macrocmd.c (show_pp_source_pos): Use %ps.
1399 * infrun.c (print_exited_reason): Use ui_out::message.
1400 * breakpoint.c (watchpoint_check, print_one_breakpoint_location)
1401 (describe_other_breakpoints): Use ui_out::message and new
1402 formats.
1403 (say_where): Use new formats.
1404 (bkpt_print_it, tracepoint_print_one_detail): Use ui_out::message
1405 and new formats.
1406
1407 2019-10-01 Pedro Alves <palves@redhat.com>
1408 Tom Tromey <tom@tromey.com>
1409
1410 * unittests/format_pieces-selftests.c: Add gdb_format parameter.
1411 (test_gdb_formats): New function.
1412 (run_tests): Call it.
1413 (test_format_specifier): Update.
1414 * utils.h (fputs_filtered): Update comment.
1415 (vfprintf_styled, vfprintf_styled_no_gdbfmt)
1416 (fputs_styled_unfiltered): Declare.
1417 * utils.c (fputs_styled_unfiltered): New function.
1418 (vfprintf_maybe_filtered): Add gdbfmt parameter.
1419 (vfprintf_filtered): Update.
1420 (vfprintf_unfiltered, vprintf_filtered): Update.
1421 (vfprintf_styled, vfprintf_styled_no_gdbfmt): New functions.
1422 * ui-out.h (enum ui_out_flag) <unfiltered_output,
1423 disallow_ui_out_field>: New constants.
1424 (enum class field_kind): New.
1425 (struct base_field_s, struct signed_field_s): New.
1426 (signed_field): New function.
1427 (struct string_field_s): New.
1428 (string_field): New function.
1429 (struct styled_string_s): New.
1430 (styled_string): New function.
1431 (class ui_out) <message>: Add comment.
1432 <vmessage, call_do_message>: New methods.
1433 <do_message>: Add style parameter.
1434 * ui-out.c (ui_out::call_do_message, ui_out::vmessage): New
1435 methods.
1436 (ui_out::message): Rewrite.
1437 * mi/mi-out.h (class mi_ui_out) <do_message>: Add style
1438 parameter.
1439 * mi/mi-out.c (mi_ui_out::do_message): Add style parameter.
1440 * gdbsupport/format.h (class format_pieces) <format_pieces>: Add
1441 gdb_extensions parameter.
1442 (class format_piece): Add parameter to constructor.
1443 (n_int_args): New field.
1444 * gdbsupport/format.c (format_pieces::format_pieces): Add
1445 gdb_extensions parameter. Handle '*'.
1446 * cli-out.h (class cli_ui_out) <do_message>: Add style parameter.
1447 * cli-out.c (cli_ui_out::do_message): Add style parameter. Call
1448 vfprintf_styled_no_gdbfmt.
1449 (cli_ui_out::do_field_string, cli_ui_out::do_spaces)
1450 (cli_ui_out::do_text, cli_ui_out::field_separator): Allow
1451 unfiltered output.
1452 * ui-style.h (struct ui_file_style) <ptr>: New method.
1453
1454 2019-10-01 Tom Tromey <tom@tromey.com>
1455
1456 * unittests/format_pieces-selftests.c: Update. Add final format.
1457 * gdbsupport/format.c (format_pieces::format_pieces): Don't add
1458 empty literal pieces.
1459
1460 2019-10-01 Tom Tromey <tom@tromey.com>
1461
1462 * ui-out.h (enum class ui_out_style_kind): Remove.
1463 (class ui_out) <field_string, field_stsream, do_field_string>:
1464 Change type of "style".
1465 * ui-out.c (ui_out::field_core_addr, ui_out::field_stream)
1466 (ui_out::field_string): Update.
1467 * tui/tui-out.h (class tui_ui_out) <do_field_string>: Change type
1468 of "style".
1469 * tui/tui-out.c (tui_ui_out::do_field_string): Update.
1470 * tracepoint.c (print_one_static_tracepoint_marker): Update.
1471 * stack.c (print_frame_arg, print_frame_info, print_frame):
1472 Update.
1473 * source.c (print_source_lines_base): Update.
1474 * solib.c (info_sharedlibrary_command): Update.
1475 * skip.c (info_skip_command): Update.
1476 * record-btrace.c (btrace_call_history_src_line)
1477 (btrace_call_history): Update.
1478 * python/py-framefilter.c (py_print_frame): Update.
1479 * mi/mi-out.h (class mi_ui_out) <do_field_string>: Change type of
1480 "style".
1481 * mi/mi-out.c (mi_ui_out::do_table_header)
1482 (mi_ui_out::do_field_signed, mi_ui_out::do_field_unsigned)
1483 (mi_ui_out::do_field_string): Update.
1484 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
1485 Update.
1486 * cli-out.h (class cli_ui_out) <do_field_string>: Change type of
1487 "style".
1488 * cli-out.c (cli_ui_out::do_table_header)
1489 (cli_ui_out::do_field_signed, cli_ui_out::do_field_unsigned)
1490 (cli_ui_out::do_field_skip, cli_ui_out::do_field_string)
1491 (cli_ui_out::do_field_fmt): Update.
1492 * breakpoint.c (print_breakpoint_location): Update.
1493 (update_static_tracepoint): Update.
1494
1495 2019-10-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1496
1497 * main.c (relocate_gdbinit_path_maybe_in_datadir): Remove std::string
1498 conversion of gdb_datadir.
1499 (captured_main_1): Remove xstrdup when assigning to gdb_datadir,
1500 remove not needed c_str ().
1501
1502 2019-09-30 Ali Tamur <tamur@google.com>
1503
1504 * dwarf2read.c (skip_one_die): Handle DW_FORM_strx forms.
1505 (dwarf2_string_attr): Likewise.
1506
1507 2019-09-30 Ali Tamur <tamur@google.com>
1508
1509 * dwarf2read.c (process_full_comp_unit): Remove whitespace at the EOL.
1510 (process_full_type_unit): Likewise.
1511 (dump_die_shallow): Likewise.
1512 (cu_debug_loc_section): Likewise.
1513
1514 2019-09-28 Christian Biesinger <cbiesinger@google.com>
1515
1516 * minsyms.c (compare_minimal_symbols): Rename to...
1517 (minimal_symbol_is_less_than): ...this, and adjust to STL
1518 conventions (return bool, take arguments as references)
1519 (minimal_symbol_reader::install): Call std::sort instead
1520 of qsort.
1521
1522 2019-09-29 Christian Biesinger <cbiesinger@google.com>
1523
1524 * minsyms.h (msymbol_hash): Document that this is a case-insensitive
1525 hash and why.
1526 * objfiles.h (struct objfile_per_bfd_storage) <demangled_names_hash,
1527 msymbol_hash, msymbol_demangled_hash>: Improve comments.
1528
1529 2019-09-30 Simon Marchi <simon.marchi@polymtl.ca>
1530
1531 * psymtab.c (add_psymbol_to_list): Move comment to psympriv.h.
1532 * psympriv.h (add_psymbol_to_list): Move comment here and update
1533 it.
1534
1535 2019-09-29 Tom de Vries <tdevries@suse.de>
1536
1537 * contrib/cc-with-tweaks.sh (get_tmpdir): New function.
1538 Use $tmpdir/$(basename "$output_file").dwz instead of
1539 "${output_file}.dwz".
1540
1541 2019-09-28 Simon Marchi <simon.marchi@polymtl.ca>
1542
1543 PR gdb/25045
1544 * hppa-linux-nat.c: Include gdbarch.h.
1545
1546 2019-09-26 Christian Biesinger <cbiesinger@google.com>
1547
1548 * blockframe.c (find_pc_partial_function): Change return type to bool.
1549 * elfread.c (elf_gnu_ifunc_resolve_name): Likewise.
1550 * minsyms.c (in_gnu_ifunc_stub): Likewise.
1551 (stub_gnu_ifunc_resolve_name): Likewise.
1552 * symtab.c (compare_filenames_for_search): Likewise.
1553 (compare_glob_filenames_for_search): Likewise.
1554 (matching_obj_sections): Likewise.
1555 (symbol_matches_domain): Likewise.
1556 (find_line_symtab): Change out param EXACT_MATCH to bool *.
1557 (find_line_pc): Change return type to bool.
1558 (find_line_pc_range): Likewise.
1559 (producer_is_realview): Likewise.
1560 * symtab.h (symbol_matches_domain): Likewise.
1561 (find_pc_partial_function): Likewise.
1562 (find_pc_line_pc_range): Likewise.
1563 (in_gnu_ifunc_stub): Likewise.
1564 (struct gnu_ifunc_fns) <gnu_ifunc_resolve_name>: Likewise.
1565 (find_line_pc): Likewise.
1566 (find_line_pc_range): Likewise.
1567 (matching_obj_sections): Likewise.
1568 (find_line_symtab): Change out parameter to bool.
1569 (producer_is_realview): Change return type to bool.
1570 (compare_filenames_for_search): Likewise.
1571 (compare_glob_filenames_for_search): Likewise.
1572
1573 2019-09-26 Tom Tromey <tom@tromey.com>
1574
1575 * Makefile.in (COMMON_SFILES): Remove gdb_usleep.c.
1576 (HFILES_NO_SRCDIR): Remove gdb_usleep.h.
1577 * gdb_usleep.h: Remove.
1578 * gdb_usleep.c: Remove.
1579 * utils.c: Don't include gdb_usleep.h.
1580
1581 2019-09-26 Tom Tromey <tromey@adacore.com>
1582
1583 * python/py-type.c (type_to_type_object): Call check_typedef
1584 for stub types.
1585
1586 2019-09-26 Tom Tromey <tom@tromey.com>
1587
1588 * utils.h (initialize_utils): Don't declare.
1589 * top.c (gdb_init): Don't call initialize_utils.
1590 * utils.c (initialize_utils): Remove. Move contents...
1591 (_initialize_utils): ... here.
1592
1593 2019-09-25 Tom Tromey <tom@tromey.com>
1594
1595 * python/py-objfile.c (objfpy_get_build_id): Use bin2hex.
1596 * utils.h (make_hex_string): Don't declare.
1597 * utils.c (make_hex_string): Remove.
1598
1599 2019-09-24 Tom de Vries <tdevries@suse.de>
1600
1601 PR gdb/23815
1602 * amd64-linux-nat.c (amd64_linux_nat_target::fetch_registers):
1603 Initialize xstateregs before ptrace PTRACE_GETREGSET call.
1604
1605 2019-09-23 Dimitar Dimitrov <dimitar@dinux.eu>
1606
1607 * NEWS: Mention new simulator port for PRU.
1608
1609 2019-09-23 Christian Biesinger <cbiesinger@google.com>
1610
1611 * ada-exp.y (write_object_remaining): Update.
1612 * ada-lang.c (ada_decode): Return a std::string instead of a char*
1613 and eliminate the static buffer.
1614 (ada_decode_symbol): Update.
1615 (ada_la_decode): Update.
1616 (ada_sniff_from_mangled_name): Update.
1617 (is_valid_name_for_wild_match): Update.
1618 (ada_lookup_name_info::matches): Update and simplify.
1619 (name_matches_regex): Update.
1620 (ada_add_global_exceptions): Update.
1621 * ada-lang.h (ada_decode): Update signature.
1622 * ada-varobj.c (ada_varobj_describe_simple_array_child): Update.
1623 * dwarf-index-write.c (debug_names::insert): Update.
1624
1625 2019-09-21 Simon Marchi <simon.marchi@polymtl.ca>
1626
1627 * solib-svr4.c (svr4_iterate_over_objfiles_in_search_order): Fix
1628 formatting.
1629
1630 2019-09-21 Simon Marchi <simon.marchi@polymtl.ca>
1631
1632 * breakpoint.h (bp_location) <inserted, permanent, duplicate>:
1633 Change "nonzero" to "true" in documentation.
1634
1635 2019-09-20 Christian Biesinger <cbiesinger@google.com>
1636
1637 * solib-darwin.c (darwin_lookup_lib_symbol): Remove.
1638 (_initialize_darwin_solib): Don't set
1639 darwin_so_ops.lookup_lib_global_symbol.
1640 * solib-svr4.c (set_solib_svr4_fetch_link_map_offsets): Call
1641 set_gdbarch_iterate_over_objfiles_in_search_order.
1642 (elf_lookup_lib_symbol): Rename to...
1643 (svr4_iterate_over_objfiles_in_search_order): this, and update
1644 to iterate semantics.
1645 (_initialize_svr4_solib): Don't set lookup_lib_global_symbol.
1646 * solib.c (solib_global_lookup): Remove.
1647 * solist.h (struct target_so_ops): Remove lookup_lib_global_symbol.
1648 (solib_global_lookup): Remove.
1649 * symtab.c (lookup_global_or_static_symbol): Remove call to
1650 solib_global_lookup.
1651
1652 2019-09-20 Joel Brobecker <brobecker@adacore.com>
1653
1654 * NEWS: Move entries about default MI version now being
1655 version 3, and about the GDB/MI fix for multi-location
1656 breakpoints to the "since GDB 8.3" section.
1657
1658 2019-09-20 Joel Brobecker <brobecker@adacore.com>
1659
1660 GDB 8.3.1 released.
1661
1662 2019-09-20 Ulrich Weigand <uweigand@de.ibm.com>
1663
1664 * NEWS: Mention that Cell/B.E. debugging support was removed.
1665 * MAINTAINERS: Remove spu target.
1666
1667 * config/djgpp/fnchange.lst: Remove entries for removed files.
1668
1669 * Makefile.in (ALL_TARGET_OBS): Remove solib-spu.o,
1670 spu-multiarch.o, and spu-tdep.o.
1671 (HFILES_NO_SRCDIR): Remove solib-spu.h and spu-tdep.h.
1672 (ALLDEPFILES): Remove solib-spu.c, spu-linux-nat.c,
1673 spu-multiarch.c, and spu-tdep.c.
1674 * spu-linux-nat.c: Remove file.
1675 * spu-multiarch.c: Remove file.
1676 * spu-tdep.c: Remove file.
1677 * spu-tdep.h: Remove file.
1678 * solib-spu.c: Remove file.
1679 * solib-spu.h: Remove file.
1680
1681 * configure.host (powerpc64*-*-linux*): Remove Cell/B.E. support.
1682 * configure.nat (spu-linux): Remove.
1683 * configure.tgt (powerpc*-*-linux*): Remove solib-spu.o and
1684 solib-multiarch.o from gdb_target_obs.
1685 (spu*-*-*): Remove.
1686
1687 * arch/ppc-linux-common.h (struct ppc_linux_features): Remove "cell"
1688 feature flag.
1689 (ppc_linux_no_features): Update.
1690 * arch/ppc-linux-common.c (ppc_linux_match_description): Remove
1691 Cell/B.E. support.
1692 * arch/ppc-linux-tdesc.h (tdesc_powerpc_cell32l): Remove declaration.
1693 (tdesc_powerpc_cell64l): Likewise.
1694 * nat/ppc-linux.h (PPC_FEATURE_CELL): Remove.
1695 * ppc-linux-nat.c (ppc_linux_nat_target::read_description): Remove
1696 Cell/B.E. support.
1697 * ppc-linux-tdep.h: Do not include "solib-spu.h" or "spu-tdep.h".
1698 Do not include "features/rs6000/powerpc-cell32l.c" or
1699 "features/rs6000/powerpc-cell64l.c".
1700 (ppc_linux_spu_section): Remove.
1701 (ppc_linux_core_read_description): Remove Cell/B.E. support.
1702 (spe_context_objfile, spe_context_lm_addr, spe_context_offset,
1703 spe_context_cache_ptid, spe_context_cache_ptid): Remove.
1704 (ppc_linux_spe_context_lookup): Remove.
1705 (ppc_linux_spe_context_inferior_created): Remove.
1706 (ppc_linux_spe_context_solib_loaded): Remove.
1707 (ppc_linux_spe_context_solib_unloaded): Remove.
1708 (ppc_linux_spe_context): Remove.
1709 (struct ppu2spu_cache): Remove.
1710 (ppu2spu_prev_arch, ppu2spu_this_id, ppu2spu_prev_register): Remove.
1711 (struct ppu2spu_data): Remove.
1712 (ppu2spu_unwind_register, ppu2spu_sniffer, ppu2spu_dealloc_cache,
1713 ppu2spu_unwind): Remove.
1714 (ppc_linux_init_abi): Remove Cell/B.E. support.
1715 * rs6000-tdep.h (rs6000_gdbarch_init): Remove Cell/B.E. support.
1716
1717 * features/Makefile (rs6000/powerpc-cell32l-expedite): Remove.
1718 (rs6000/powerpc-cell64l-expedite): Likewise
1719 (WHICH): Remove rs6000/powerpc-cell32l and rs6000/powerpc-cell64l.
1720 (XMLTOC): Remove rs6000/powerpc-cell32l.xml and
1721 rs6000/powerpc-cell64l.xml.
1722 * features/rs6000/powerpc-cell32l.xml: Remove.
1723 * features/rs6000/powerpc-cell64l.xml: Likewise.
1724 * features/rs6000/powerpc-cell32l.c: Remove generated file.
1725 * features/rs6000/powerpc-cell64l.c: Likewise.
1726 * regformats/rs6000/powerpc-cell32l.dat: Remove generated file.
1727 * regformats/rs6000/powerpc-cell64l.dat: Likewise.
1728 * regformats/reg-spu.dat: Remove.
1729
1730 * target.h (enum target_object): Remove TARGET_OBJECT_SPU.
1731 * corelow.c (struct spuid_list): Remove.
1732 (add_to_spuid_list): Remove.
1733 (core_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
1734 * remote.c (PACKET_qXfer_spu_read, PACKET_qXfer_spu_write): Remove.
1735 (remote_protocol_features): Remove associated entries.
1736 (_initialize_remote): No longer initialize them.
1737 (remote_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
1738 * linux-nat.c (SPUFS_MAGIC): Remove.
1739 (linux_proc_xfer_spu): Remove.
1740 (spu_enumerate_spu_ids): Remove.
1741 (linux_nat_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
1742 * linux-tdep.c (-linux_spu_make_corefile_notes): Remove.
1743 (linux_make_corefile_notes): No longer call it.
1744
1745 * regcache.c (cooked_read_test): Remove bfd_arch_spu special case.
1746 (cooked_write_test): Likewise.
1747
1748 2019-09-20 Tom Tromey <tom@tromey.com>
1749
1750 * NEWS: Mention case-sensitivity of TUI commands.
1751 * tui/tui-win.c (tui_set_focus_command): Now case-sensitive.
1752 (tui_set_win_height_command, parse_scrolling_args): Likewise.
1753 * tui/tui-layout.c (tui_layout_command): Now case-sensitive.
1754
1755 2019-09-20 Tom Tromey <tom@tromey.com>
1756
1757 * tui/tui-source.c (tui_source_window::set_contents): Use
1758 make_unique_xstrdup.
1759 * tui/tui-disasm.c (tui_disasm_window::set_contents): Use
1760 make_unique_xstrdup.
1761
1762 2019-09-20 Tom Tromey <tom@tromey.com>
1763
1764 * tui/tui-data.c: Remove separator comments.
1765 * tui/tui-layout.c: Remove separator comments.
1766 * tui/tui-win.c: Remove separator comments.
1767 * tui/tui-wingeneral.c: Remove separator comments.
1768
1769 2019-09-20 Tom Tromey <tom@tromey.com>
1770
1771 * tui/tui.h (strcat_to_buf): Don't declare.
1772 * tui/tui.c (strcat_to_buf): Remove.
1773
1774 2019-09-20 Tom Tromey <tom@tromey.com>
1775
1776 * tui/tui-source.h (struct tui_source_window) <m_fullname>: Rename
1777 from "fullname".
1778 * tui/tui-source.c (tui_source_window::set_contents)
1779 (tui_source_window::location_matches_p)
1780 (tui_source_window::maybe_update): Update.
1781
1782 2019-09-20 Tom Tromey <tom@tromey.com>
1783
1784 * tui/tui-regs.h (struct tui_data_window) <get_current_group>:
1785 Update.
1786 <m_regs_content, m_regs_column_count, m_current_group>: Add "m_"
1787 prefix.
1788 * tui/tui-regs.c (tui_data_window::last_regs_line_no)
1789 (tui_data_window::line_from_reg_element_no)
1790 (tui_data_window::first_reg_element_no_inline)
1791 (tui_data_window::show_registers)
1792 (tui_data_window::show_register_group)
1793 (tui_data_window::display_registers_from)
1794 (tui_data_window::display_registers_from_line)
1795 (tui_data_window::first_data_item_displayed)
1796 (tui_data_window::delete_data_content_windows)
1797 (tui_data_window::erase_data_content)
1798 (tui_data_window::do_scroll_vertical)
1799 (tui_data_window::refresh_window)
1800 (tui_data_window::check_register_values): Update.
1801
1802 2019-09-20 Tom Tromey <tom@tromey.com>
1803
1804 * tui/tui-stack.h (MAX_LOCATOR_ELEMENT_LEN): Remove define.
1805 (struct tui_locator_window) <full_name, proc_name>: Now
1806 std::string.
1807 * tui/tui-stack.c (tui_locator_window::make_status_line)
1808 (tui_locator_window::set_locator_fullname)
1809 (tui_locator_window::set_locator_info): Update.
1810 * tui/tui-source.c (tui_source_window::set_contents)
1811 (tui_source_window::showing_source_p): Update.
1812
1813 2019-09-20 Tom Tromey <tom@tromey.com>
1814
1815 * tui/tui-stack.c (tui_locator_window::set_locator_fullname):
1816 Don't call tui_locator_win_info_ptr.
1817
1818 2019-09-20 Tom Tromey <tom@tromey.com>
1819
1820 * tui/tui-win.c (tui_resize_all): Don't call refresh.
1821
1822 2019-09-20 Tom Tromey <tom@tromey.com>
1823
1824 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Use 1 as
1825 height for locator.
1826 * tui/tui-stack.c (tui_locator_window::rerender): Call scrollok.
1827 * tui/tui-layout.c (show_source_disasm_command, show_data)
1828 (show_source_or_disasm_and_command): Use 1 as height for locator.
1829
1830 2019-09-20 Tom Tromey <tom@tromey.com>
1831
1832 * tui/tui.c (tui_enable): Update.
1833 * tui/tui-win.c (tui_sigwinch_handler, tui_async_resize_screen):
1834 Update.
1835 * tui/tui-data.h (tui_win_resized, tui_set_win_resized_to):
1836 Update.
1837 * tui/tui-data.c (win_resized): Now bool.
1838 (tui_win_resized): Return bool.
1839 (tui_set_win_resized_to): Accept a bool.
1840
1841 2019-09-20 Tom Tromey <tom@tromey.com>
1842
1843 * tui/tui-regs.h (struct tui_data_window) <show_register_group>:
1844 Change type of "refresh_values_only".
1845 * tui/tui-regs.c (tui_data_window::show_register_group): Change
1846 type of "refresh_values_only".
1847
1848 2019-09-20 Tom Tromey <tom@tromey.com>
1849
1850 * tui/tui-disasm.c (struct tui_asm_line) <addr_string, insn>: Now
1851 std::string.
1852 (tui_disassemble): Add "pos" parameter.
1853 (tui_disasm_window::set_contents): Simplify.
1854
1855 2019-09-20 Tom Tromey <tom@tromey.com>
1856
1857 * tui/tui-winsource.h (struct tui_source_window_base)
1858 <show_source_content>: Now private.
1859 * tui/tui-winsource.c
1860 (tui_source_window_base::show_source_content): Don't handle empty
1861 content case.
1862
1863 2019-09-20 Tom Tromey <tom@tromey.com>
1864
1865 * tui/tui-layout.c (show_source_disasm_command)
1866 (show_source_or_disasm_and_command): Don't call
1867 show_source_content.
1868
1869 2019-09-20 Tom Tromey <tom@tromey.com>
1870
1871 * tui/tui-stack.h (struct tui_locator_window) <make_status_line>:
1872 Declare.
1873 * tui/tui-stack.c (tui_locator_window::make_status_line): Rename
1874 from tui_make_status_line.
1875 (tui_locator_window::rerender): Update.
1876
1877 2019-09-20 Tom Tromey <tom@tromey.com>
1878
1879 * tui/tui-stack.c (tui_make_status_line): Return std::string.
1880 (tui_locator_window::rerender): Update.
1881
1882 2019-09-20 Tom Tromey <tom@tromey.com>
1883
1884 * tui/tui-winsource.h (struct tui_source_window_base)
1885 <~tui_source_window_base>: Don't declare.
1886 <fullname>: Remove.
1887 * tui/tui-winsource.c (~tui_source_window_base): Remove.
1888 * tui/tui-source.h (struct tui_source_window) <fullname>: New
1889 member.
1890 * tui/tui-source.c (tui_source_window::set_contents): Update.
1891 (tui_source_window::location_matches_p)
1892 (tui_source_window::maybe_update): Update.
1893
1894 2019-09-20 Tom Tromey <tom@tromey.com>
1895
1896 * tui/tui-winsource.h (~tui_source_element): Remove.
1897 (tui_source_element): Update.
1898 (struct tui_source_element) <line>: Now a unique_xmalloc_ptr.
1899 * tui/tui-winsource.c (tui_show_source_line): Update.
1900 * tui/tui-source.c (tui_source_window::set_contents): Update.
1901 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
1902
1903 2019-09-20 Tom Tromey <tom@tromey.com>
1904
1905 * tui/tui-data.h (tui_clear_source_windows_detail): Don't
1906 declare.
1907 * tui/tui-layout.c (tui_add_win_to_layout): Don't call
1908 tui_clear_source_windows_detail.
1909 * tui/tui-winsource.h (struct tui_source_window_base)
1910 <clear_detail>: Don't declare.
1911 * tui/tui-winsource.c (tui_source_window_base::clear_detail):
1912 Remove.
1913 * tui/tui-data.c (tui_clear_source_windows_detail): Remove.
1914
1915 2019-09-20 Tom Tromey <tromey@adacore.com>
1916
1917 PR ada/24919:
1918 * block.c (contained_in): Fix final return value.
1919
1920 2019-09-20 Alan Modra <amodra@gmail.com>
1921
1922 * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Use bfd_set_usrdata.
1923 * dwarf2read.c (dwarf2_read_gdb_index, dwarf2_read_debug_names),
1924 (read_indirect_string_from_dwz): Use bfd accessor.
1925 * dwarf2read.h (struct dwz_file <filename>): Likewise.
1926 * machoread.c (macho_symfile_read_all_oso): Likewise.
1927 * solib.c (solib_bfd_open): Likewise.
1928
1929 2019-09-19 Christian Biesinger <cbiesinger@google.com>
1930
1931 * eval.c: Move declaration of overload_resolution to...
1932 * value.h: ...here.
1933
1934 2019-09-19 Christian Biesinger <cbiesinger@google.com>
1935
1936 * arm-linux-nat.c: Remove extern declaration for arm_apcs_32.
1937 * arm-linux-tdep.c: Likewise.
1938 * arm-nbsd-nat.c: Likewise.
1939 * arm-tdep.h: Declare arm_apcs_32.
1940 * arm-tdep.c: Move documentation for arm_apcs_32 to arm-tdep.h.
1941
1942 2019-09-19 Christian Biesinger <cbiesinger@google.com>
1943
1944 * dwarf2loc.c: Remove extern declaration of dwarf_always_disassemble.
1945 * dwarf2read.h: Declare dwarf_always_disassemble.
1946
1947 2019-09-19 Tom de Vries <tdevries@suse.de>
1948
1949 PR gdb/25009
1950 * source-cache.c (source_cache::ensure): Catch exception thrown during
1951 construction of the highlighter.
1952
1953 2019-09-18 Alan Modra <amodra@gmail.com>
1954
1955 * aarch64-linux-tdep.c, * arm-tdep.c, * auto-load.c,
1956 * coff-pe-read.c, * coffread.c, * corelow.c, * dbxread.c,
1957 * dicos-tdep.c, * dwarf2-frame.c, * dwarf2read.c, * elfread.c,
1958 * exec.c, * fbsd-tdep.c, * gcore.c, * gdb_bfd.c, * gdb_bfd.h,
1959 * hppa-tdep.c, * i386-cygwin-tdep.c, * i386-fbsd-tdep.c,
1960 * i386-linux-tdep.c, * jit.c, * linux-tdep.c, * machoread.c,
1961 * maint.c, * mdebugread.c, * minidebug.c, * mips-linux-tdep.c,
1962 * mips-sde-tdep.c, * mips-tdep.c, * mipsread.c, * nto-tdep.c,
1963 * objfiles.c, * objfiles.h, * osabi.c, * ppc-linux-tdep.c,
1964 * ppc64-tdep.c, * record-btrace.c, * record-full.c, * remote.c,
1965 * rs6000-aix-tdep.c, * rs6000-tdep.c, * s390-linux-tdep.c,
1966 * s390-tdep.c, * solib-aix.c, * solib-dsbt.c, * solib-frv.c,
1967 * solib-spu.c, * solib-svr4.c, * solib-target.c,
1968 * spu-linux-nat.c, * spu-tdep.c, * symfile-mem.c, * symfile.c,
1969 * symmisc.c, * symtab.c, * target.c, * windows-nat.c,
1970 * xcoffread.c, * cli/cli-dump.c, * compile/compile-object-load.c,
1971 * mi/mi-interp.c: Update throughout for bfd section macro and
1972 function changes.
1973 * gcore (gcore_create_callback): Use bfd_set_section_lma.
1974 * spu-tdep.c (spu_overlay_new_objfile): Likewise.
1975
1976 2019-09-18 Tom Tromey <tom@tromey.com>
1977
1978 * NEWS: Add entry.
1979 * tui/tui.c (tui_initialize_readline): Set name of keymap. Do not
1980 call rl_initialize.
1981 (tui_enable): Do not call rl_initialize.
1982
1983 2019-09-18 Christian Groessler <chris@groessler.org>
1984
1985 * alpha-linux-nat.c: Include gdbarch.h.
1986
1987 2019-09-18 Simon Marchi <simon.marchi@polymtl.ca>
1988
1989 * ui-file.c: Include cli/cli-style.h.
1990 (term_cli_styling): Remove cli_styling declaration.
1991
1992 2019-09-18 Alan Modra <amodra@gmail.com>
1993
1994 * arm-tdep.c (arm_record_special_symbol): Update bfd_get_section
1995 to bfd_asymbol_section.
1996
1997 2019-09-18 Alan Modra <amodra@gmail.com>
1998
1999 * amd64-dicos-tdep.c (amd64_dicos_osabi_sniffer): Constify target.
2000 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
2001 * i386-dicos-tdep.c (i386_dicos_osabi_sniffer): Likewise.
2002
2003 2019-09-18 Alan Modra <amodra@gmail.com>
2004
2005 * solib-spu.c (spu_bfd_open): Use bfd_set_filename.
2006 * spu-linux-nat.c (spu_bfd_open): Likewise.
2007
2008 2019-09-18 Christian Biesinger <cbiesinger@google.com>
2009
2010 * dwarf2loc.c: Change extern declaration of dwarf_always_disassemble
2011 to bool to match definition in dwarf2read.c.
2012
2013 2019-09-17 Christian Biesinger <cbiesinger@google.com>
2014
2015 * ada-lang.c (ada_ignore_descriptive_types_p): Change to bool.
2016 (print_signatures): Likewise.
2017 (trust_pad_over_xvs): Likewise.
2018 * arch/aarch64-insn.c (aarch64_debug): Likewise.
2019 * arch/aarch64-insn.h (aarch64_debug): Likewise.
2020 * arm-linux-nat.c (arm_apcs_32): Likewise.
2021 * arm-linux-tdep.c (arm_apcs_32): Likewise.
2022 * arm-nbsd-nat.c (arm_apcs_32): Likewise.
2023 * arm-tdep.c (arm_debug): Likewise.
2024 (arm_apcs_32): Likewise.
2025 * auto-load.c (debug_auto_load): Likewise.
2026 (auto_load_gdb_scripts): Likewise.
2027 (global_auto_load): Likewise.
2028 (auto_load_local_gdbinit): Likewise.
2029 (auto_load_local_gdbinit_loaded): Likewise.
2030 * auto-load.h (global_auto_load): Likewise.
2031 (auto_load_local_gdbinit): Likewise.
2032 (auto_load_local_gdbinit_loaded): Likewise.
2033 * breakpoint.c (disconnected_dprintf): Likewise.
2034 (breakpoint_proceeded): Likewise.
2035 (automatic_hardware_breakpoints): Likewise.
2036 (always_inserted_mode): Likewise.
2037 (target_exact_watchpoints): Likewise.
2038 (_initialize_breakpoint): Update.
2039 * breakpoint.h (target_exact_watchpoints): Change to bool.
2040 * btrace.c (maint_btrace_pt_skip_pad): Likewise.
2041 * cli/cli-cmds.c (trace_commands): Likewise.
2042 * cli/cli-cmds.h (trace_commands): Likewise.
2043 * cli/cli-decode.c (add_setshow_boolean_cmd): Change int* argument
2044 to bool*.
2045 * cli/cli-logging.c (logging_overwrite): Change to bool.
2046 (logging_redirect): Likewise.
2047 (debug_redirect): Likewise.
2048 * cli/cli-option.h (option_def) <boolean>: Change return type to bool*.
2049 (struct boolean_option_def) <get_var_address_cb_>: Change return type
2050 to bool.
2051 <boolean_option_def>: Update.
2052 (struct flag_option_def): Change default type of Context to bool
2053 from int.
2054 <flag_option_def>: Change return type of var_address_cb_ to bool*.
2055 * cli/cli-setshow.c (do_set_command): Cast to bool* instead of int*.
2056 (get_setshow_command_value_string): Likewise.
2057 * cli/cli-style.c (cli_styling): Change to bool.
2058 (source_styling): Likewise.
2059 * cli/cli-style.h (source_styling): Likewise.
2060 (cli_styling): Likewise.
2061 * cli/cli-utils.h (struct qcs_flags) <quiet, cont, silent>: Change
2062 to bool.
2063 * command.h (var_types): Update comment.
2064 (add_setshow_boolean_cmd): Change int* var argument to bool*.
2065 * compile/compile-cplus-types.c (debug_compile_cplus_types): Change to
2066 bool.
2067 (debug_compile_cplus_scopes): Likewise.
2068 * compile/compile-internal.h (compile_debug): Likewise.
2069 * compile/compile.c (compile_debug): Likewise.
2070 (struct compile_options) <raw>: Likewise.
2071 * cp-support.c (catch_demangler_crashes): Likewise.
2072 * cris-tdep.c (usr_cmd_cris_version_valid): Likewise.
2073 (usr_cmd_cris_dwarf2_cfi): Likewise.
2074 * csky-tdep.c (csky_debug): Likewise.
2075 * darwin-nat.c (enable_mach_exceptions): Likewise.
2076 * dcache.c (dcache_enabled_p): Likewise.
2077 * defs.h (info_verbose): Likewise.
2078 * demangle.c (demangle): Likewise.
2079 (asm_demangle): Likewise.
2080 * dwarf-index-cache.c (debug_index_cache): Likewise.
2081 * dwarf2-frame.c (dwarf2_frame_unwinders_enabled_p): Likewise.
2082 * dwarf2-frame.h (dwarf2_frame_unwinders_enabled_p): Likewise.
2083 * dwarf2read.c (check_physname): Likewise.
2084 (use_deprecated_index_sections): Likewise.
2085 (dwarf_always_disassemble): Likewise.
2086 * eval.c (overload_resolution): Likewise.
2087 * event-top.c (set_editing_cmd_var): Likewise.
2088 (exec_done_display_p): Likewise.
2089 * event-top.h (set_editing_cmd_var): Likewise.
2090 (exec_done_display_p): Likewise.
2091 * exec.c (write_files): Likewise.
2092 * fbsd-nat.c (debug_fbsd_lwp): Likewise
2093 (debug_fbsd_nat): Likewise.
2094 * frame.h (struct frame_print_options) <print_raw_frame_arguments>:
2095 Likewise.
2096 (struct set_backtrace_options) <backtrace_past_main>: Likewise.
2097 <backtrace_past_entry> Likewise.
2098 * gdb-demangle.h (demangle): Likewise.
2099 (asm_demangle): Likewise.
2100 * gdb_bfd.c (bfd_sharing): Likewise.
2101 * gdbcore.h (write_files): Likewise.
2102 * gdbsupport/common-debug.c (show_debug_regs): Likewise.
2103 * gdbsupport/common-debug.h (show_debug_regs): Likewise.
2104 * gdbthread.h (print_thread_events): Likewise.
2105 * gdbtypes.c (opaque_type_resolution): Likewise.
2106 (strict_type_checking): Likewise.
2107 * gnu-nat.c (gnu_debug_flag): Likewise.
2108 * guile/scm-auto-load.c (auto_load_guile_scripts): Likewise.
2109 * guile/scm-param.c (pascm_variable): Add boolval.
2110 (add_setshow_generic): Update.
2111 (pascm_param_value): Update.
2112 (pascm_set_param_value_x): Update.
2113 * hppa-tdep.c (hppa_debug): Change to bool..
2114 * infcall.c (may_call_functions_p): Likewise.
2115 (coerce_float_to_double_p): Likewise.
2116 (unwind_on_signal_p): Likewise.
2117 (unwind_on_terminating_exception_p): Likewise.
2118 * infcmd.c (startup_with_shell): Likewise.
2119 * inferior.c (print_inferior_events): Likewise.
2120 * inferior.h (startup_with_shell): Likewise.
2121 (print_inferior_events): Likewise.
2122 * infrun.c (step_stop_if_no_debug): Likewise.
2123 (detach_fork): Likewise.
2124 (debug_displaced): Likewise.
2125 (disable_randomization): Likewise.
2126 (non_stop): Likewise.
2127 (non_stop_1): Likewise.
2128 (observer_mode): Likewise.
2129 (observer_mode_1): Likewise.
2130 (set_observer_mode): Update.
2131 (sched_multi): Change to bool.
2132 * infrun.h (debug_displaced): Likewise.
2133 (sched_multi): Likewise.
2134 (step_stop_if_no_debug): Likewise.
2135 (non_stop): Likewise.
2136 (disable_randomization): Likewise.
2137 * linux-tdep.c (use_coredump_filter): Likewise.
2138 (dump_excluded_mappings): Likewise.
2139 * linux-thread-db.c (auto_load_thread_db): Likewise.
2140 (check_thread_db_on_load): Likewise.
2141 * main.c (captured_main_1): Update.
2142 * maint-test-options.c (struct test_options_opts) <flag_opt, xx1_opt,
2143 xx2_opt, boolean_opt>: Change to bool.
2144 * maint-test-settings.c (maintenance_test_settings_boolean): Likewise.
2145 * maint.c (maintenance_profile_p): Likewise.
2146 (per_command_time): Likewise.
2147 (per_command_space): Likewise.
2148 (per_command_symtab): Likewise.
2149 * memattr.c (inaccessible_by_default): Likewise.
2150 * mi/mi-main.c (mi_async): Likewise.
2151 (mi_async_1): Likewise.
2152 * mips-tdep.c (mips64_transfers_32bit_regs_p): Likewise.
2153 * nat/fork-inferior.h (startup_with_shell): Likewise.
2154 * nat/linux-namespaces.c (debug_linux_namespaces): Likewise.
2155 * nat/linux-namespaces.h (debug_linux_namespaces): Likewise.
2156 * nios2-tdep.c (nios2_debug): Likewise.
2157 * or1k-tdep.c (or1k_debug): Likewise.
2158 * parse.c (parser_debug): Likewise.
2159 * parser-defs.h (parser_debug): Likewise.
2160 * printcmd.c (print_symbol_filename): Likewise.
2161 * proc-api.c (procfs_trace): Likewise.
2162 * python/py-auto-load.c (auto_load_python_scripts): Likewise.
2163 * python/py-param.c (union parmpy_variable): Add "bool boolval" field.
2164 (set_parameter_value): Update.
2165 (add_setshow_generic): Update.
2166 * python/py-value.c (copy_py_bool_obj): Change argument from int*
2167 to bool*.
2168 * python/python.c (gdbpy_parameter_value): Cast to bool* instead of
2169 int*.
2170 * ravenscar-thread.c (ravenscar_task_support): Change to bool.
2171 * record-btrace.c (record_btrace_target::store_registers): Update.
2172 * record-full.c (record_full_memory_query): Change to bool.
2173 (record_full_stop_at_limit): Likewise.
2174 * record-full.h (record_full_memory_query): Likewise.
2175 * remote-notif.c (notif_debug): Likewise.
2176 * remote-notif.h (notif_debug): Likewise.
2177 * remote.c (use_range_stepping): Likewise.
2178 (interrupt_on_connect): Likewise.
2179 (remote_break): Likewise.
2180 * ser-tcp.c (tcp_auto_retry): Likewise.
2181 * ser-unix.c (serial_hwflow): Likewise.
2182 * skip.c (debug_skip): Likewise.
2183 * solib-aix.c (solib_aix_debug): Likewise.
2184 * spu-tdep.c (spu_stop_on_load_p): Likewise.
2185 (spu_auto_flush_cache_p): Likewise.
2186 * stack.c (struct backtrace_cmd_options) <full, no_filters, hide>:
2187 Likewise.
2188 (struct info_print_options) <quiet>: Likewise.
2189 * symfile-debug.c (debug_symfile): Likewise.
2190 * symfile.c (auto_solib_add): Likewise.
2191 (separate_debug_file_debug): Likewise.
2192 * symfile.h (auto_solib_add): Likewise.
2193 (separate_debug_file_debug): Likewise.
2194 * symtab.c (basenames_may_differ): Likewise.
2195 (struct filename_partial_match_opts) <dirname, basename>: Likewise.
2196 (struct info_print_options) <quiet, exclude_minsyms>: Likewise.
2197 (struct info_types_options) <quiet>: Likewise.
2198 * symtab.h (demangle): Likewise.
2199 (basenames_may_differ): Likewise.
2200 * target-dcache.c (stack_cache_enabled_1): Likewise.
2201 (code_cache_enabled_1): Likewise.
2202 * target.c (trust_readonly): Likewise.
2203 (may_write_registers): Likewise.
2204 (may_write_memory): Likewise.
2205 (may_insert_breakpoints): Likewise.
2206 (may_insert_tracepoints): Likewise.
2207 (may_insert_fast_tracepoints): Likewise.
2208 (may_stop): Likewise.
2209 (auto_connect_native_target): Likewise.
2210 (target_stop_and_wait): Update.
2211 (target_async_permitted): Change to bool.
2212 (target_async_permitted_1): Likewise.
2213 (may_write_registers_1): Likewise.
2214 (may_write_memory_1): Likewise.
2215 (may_insert_breakpoints_1): Likewise.
2216 (may_insert_tracepoints_1): Likewise.
2217 (may_insert_fast_tracepoints_1): Likewise.
2218 (may_stop_1): Likewise.
2219 * target.h (target_async_permitted): Likewise.
2220 (may_write_registers): Likewise.
2221 (may_write_memory): Likewise.
2222 (may_insert_breakpoints): Likewise.
2223 (may_insert_tracepoints): Likewise.
2224 (may_insert_fast_tracepoints): Likewise.
2225 (may_stop): Likewise.
2226 * thread.c (struct info_threads_opts) <show_global_ids>: Likewise.
2227 (make_thread_apply_all_options_def_group): Change argument from int*
2228 to bool*.
2229 (thread_apply_all_command): Update.
2230 (print_thread_events): Change to bool.
2231 * top.c (confirm): Likewise.
2232 (command_editing_p): Likewise.
2233 (history_expansion_p): Likewise.
2234 (write_history_p): Likewise.
2235 (info_verbose): Likewise.
2236 * top.h (confirm): Likewise.
2237 (history_expansion_p): Likewise.
2238 * tracepoint.c (disconnected_tracing): Likewise.
2239 (circular_trace_buffer): Likewise.
2240 * typeprint.c (print_methods): Likewise.
2241 (print_typedefs): Likewise.
2242 * utils.c (debug_timestamp): Likewise.
2243 (sevenbit_strings): Likewise.
2244 (pagination_enabled): Likewise.
2245 * utils.h (sevenbit_strings): Likewise.
2246 (pagination_enabled): Likewise.
2247 * valops.c (overload_resolution): Likewise.
2248 * valprint.h (struct value_print_options) <prettyformat_arrays,
2249 prettyformat_structs, vtblprint, unionprint, addressprint, objectprint,
2250 stop_print_at_null, print_array_indexes, deref_ref, static_field_print,
2251 pascal_static_field_print, raw, summary, symbol_print, finish_print>:
2252 Likewise.
2253 * windows-nat.c (new_console): Likewise.
2254 (cygwin_exceptions): Likewise.
2255 (new_group): Likewise.
2256 (debug_exec): Likewise.
2257 (debug_events): Likewise.
2258 (debug_memory): Likewise.
2259 (debug_exceptions): Likewise.
2260 (useshell): Likewise.
2261 * windows-tdep.c (maint_display_all_tib): Likewise.
2262 * xml-support.c (debug_xml): Likewise.
2263
2264 2019-09-17 Mike Gulick <mgulick@mathworks.com>
2265
2266 * source.c (prepare_path_for_appending): New function.
2267 (openp): Make use of new function.
2268 (find_and_open_source): Search for the compilation directory and
2269 source file as a relative path beneath the directory search path.
2270
2271 2019-09-17 Andrew Burgess <andrew.burgess@embecosm.com>
2272
2273 * source-cache.c (source_cache::get_line_charpos): Catch
2274 exceptions and return false, this matches the behaviour documented
2275 in the header file.
2276
2277 2019-09-17 Joel Brobecker <brobecker@adacore.com>
2278
2279 * ada-tasks.c (info_task): Remove quoting of the task's name.
2280
2281 2019-09-16 Christian Biesinger <cbiesinger@google.com>
2282
2283 * symfile.c (auto_solib_add): Replace comment with a reference
2284 to the header file.
2285
2286 2019-09-14 Christian Biesinger <cbiesinger@google.com>
2287
2288 * NEWS: Mention that gdb can now be compiled with Python 3
2289 on Windows.
2290
2291 2019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
2292
2293 * maint.c (maint_print_section_data::maint_print_section_data):
2294 Force use of 'float log10 (float)' by casting the argument to
2295 float.
2296
2297 2019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
2298
2299 * maint.c: Add 'cmath' include.
2300 (struct maint_print_section_data): New structure.
2301 (print_section_index): New function.
2302 (print_bfd_section_info): Add header comment, small whitespace
2303 cleanup, and update to call new print_section_index function.
2304 (print_objfile_section_info): Likewise.
2305 (maint_obj_section_from_bfd_section): New function.
2306 (print_bfd_section_info_maybe_relocated): New function.
2307 (maintenance_info_sections): Add header comment, always use
2308 bfd_map_over_sections instead of ALL_OBJFILE_OSECTIONS.
2309
2310 2019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
2311
2312 * psymtab.c (find_pc_sect_psymtab): Move baseaddr local into more
2313 inner scope, add check that the objfile has psymtabs before
2314 checking psymtabs_addrmap.
2315 * psymtab.h (psymtab_storage) <psymtabs_addrmap>: Extend comment.
2316
2317 2019-09-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2318
2319 * NEWS: Announce that Ada task names are now shown at more places,
2320 and between quotes (except in info task output).
2321 * gdb/ada-tasks.c (task_to_str): New function.
2322 (display_current_task_id): Call task_to_str.
2323 (task_command_1): Likewise.
2324 (print_ada_task_info): In non-mi mode, Properly align headers and data
2325 when task-id length is > 9 (9 is the default for a 32 bits CORE_ADDR).
2326
2327 2019-09-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2328
2329 * procfs.c (procfs_target::wait) <PR_FAULTED>: Get signal from
2330 prstatus.pr_lwp.pr_info instead of making it up.
2331
2332 2019-09-11 Christian Biesinger <cbiesinger@google.com>
2333
2334 * auto-load.c (auto_load_expand_dir_vars): Update.
2335 * defs.h (gdb_datadir): Change to std::string.
2336 (python_libdir): Likewise.
2337 (relocate_gdb_directory): Change return type to std::string.
2338 * guile/guile.c (gdbscm_data_directory): Update.
2339 (initialize_scheme_side): Update.
2340 * jit.c (jit_reader_dir): Change to std::string.
2341 (jit_reader_load_command): Update.
2342 * main.c (gdb_datadir): Change to std::string.
2343 (python_libdir): Likewise.
2344 (set_gdb_data_directory): Update.
2345 (relocate_path): Change to return std::string.
2346 (relocate_gdb_directory): Change to return std::string.
2347 (relocate_gdbinit_path_maybe_in_datadir): Update.
2348 (captured_main_1): Update.
2349 * python/python.c (do_start_initialization): Update.
2350 * top.c (show_gdb_datadir): Update.
2351 * xml-syscall.c (xml_init_syscalls_info): Update.
2352 (init_syscalls_info): Update.
2353
2354 2019-09-11 Christian Biesinger <cbiesinger@google.com>
2355
2356 * main.c (relocate_gdbinit_path_maybe_in_datadir): Factor this code
2357 out of get_init_files.
2358 (get_init_files): Update.
2359
2360 2019-09-11 Christian Biesinger <cbiesinger@google.com>
2361
2362 * main.c (get_init_files): Change to use std::string.
2363 (captured_main_1): Update.
2364 (print_gdb_help): Update.
2365
2366 2019-09-11 Ali Tamur <tamur@google.com>
2367
2368 *gdb/target-float.c (host_float_ops<T>::to_longest): Update
2369 implementation.
2370
2371 2019-09-11 Christian Biesinger <cbiesinger@google.com>
2372
2373 * dbxread.c (read_dbx_symtab): Update.
2374 * dwarf2read.c (load_partial_dies): Update.
2375 * mdebugread.c (parse_partial_symbols): Update.
2376 (handle_psymbol_enumerators): Update.
2377 * psympriv.h (add_psymbol_to_list): Change type of copy_names to bool.
2378 * psymtab.c (add_psymbol_to_bcache): Likewise.
2379 (add_psymbol_to_list): Likewise.
2380 * symtab.c (symbol_set_names): Likewise.
2381 * symtab.h (symbol_set_names): Likewise.
2382 * xcoffread.c (scan_xcoff_symtab): Update.
2383
2384 2019-09-11 Tom Tromey <tom@tromey.com>
2385
2386 * symfile-mem.c (symbol_file_add_from_memory): Use
2387 bfd_set_filename.
2388 * solib-darwin.c (darwin_bfd_open): Use bfd_set_filename.
2389 * solib-aix.c (solib_aix_bfd_open): Use bfd_set_filename.
2390
2391 2019-09-10 Tom Tromey <tromey@adacore.com>
2392
2393 * dwarf-index-write.c (write_psymbols): Extend error message.
2394 (debug_names::insert): Add Ada code.
2395 (debug_names::write_psymbols): Remove Ada check.
2396 (debug_names) <m_string_obstack>: New member.
2397 * dwarf2read.c (gdb_index_symbol_name_matcher): Remove.
2398 (gdb_index_symbol_name_matcher::matches): Remove.
2399 (mapped_index_base::find_name_components_bounds): Add "lang"
2400 parameter.
2401 (mapped_index_base::build_name_components): Also split names
2402 according to Ada syntax.
2403 (dw2_expand_symtabs_matching_symbol): Loop over languages. Change
2404 type of "match_callback".
2405 (check_match, check_find_bounds_finds)
2406 (dw2_expand_symtabs_matching): Update.
2407 (dw2_debug_names_iterator): Add new constructor.
2408 (dw2_debug_names_map_matching_symbols): New function.
2409 (dw2_debug_names_expand_symtabs_matching): Update.
2410 (dwarf2_debug_names_functions): Use
2411 dw2_debug_names_map_matching_symbols.
2412
2413 2019-09-10 Tom Tromey <tromey@adacore.com>
2414
2415 * dwarf2read.c (dw2_get_file_names_reader): Add the
2416 CU's file name to the results.
2417
2418 2019-09-10 Tom Tromey <tromey@adacore.com>
2419
2420 * ada-lang.c (add_nonlocal_symbols): Combine calls to
2421 map_matching_symbols. Update.
2422 * dwarf2read.c (dw2_map_matching_symbols): Update.
2423 * psymtab.c (match_partial_symbol): Change type; update.
2424 (psym_map_matching_symbols): Likewise.
2425 * symfile-debug.c (debug_qf_map_matching_symbols): Change
2426 type; update.
2427 * symfile.h (struct quick_symbol_functions)
2428 <map_matching_symbols>: Change "name" to be a lookup_name_info.
2429 Remove "match".
2430
2431 2019-09-10 Tom Tromey <tromey@adacore.com>
2432
2433 * psymtab.c (map_block): Remove.
2434 (psym_map_matching_symbols): Use iterate_over_symbols_terminated.
2435 * symtab.c (iterate_over_symbols_terminated): New function.
2436 * symtab.c (iterate_over_symbols_terminated): Declare.
2437
2438 2019-09-10 Tom Tromey <tromey@adacore.com>
2439
2440 * ada-lang.c (ada_iterate_over_symbols): Return bool.
2441 * language.h (struct language_defn) <la_iterate_over_symbols>:
2442 Return bool.
2443 * symtab.c (iterate_over_symbols): Return bool.
2444 * symtab.h (iterate_over_symbols): Return bool.
2445
2446 2019-09-10 Tom Tromey <tromey@adacore.com>
2447
2448 * ada-lang.c (aux_add_nonlocal_symbols): Change type.
2449 (add_nonlocal_symbols): Update.
2450 * dwarf2read.c (dw2_map_matching_symbols): Change type.
2451 * psymtab.c (map_block, psym_map_matching_symbols): Change type.
2452 * symfile-debug.c (debug_qf_map_matching_symbols): Change type.
2453 * symfile.h (struct quick_symbol_functions) <map_matching_symbols>:
2454 Change type of "callback". Remove "data".
2455
2456
2457 2019-09-09 Ali Tamur <tamur@google.com>
2458
2459 * dwarf2read.c (comp_unit_head): Update comment.
2460 (dwarf2_dwo_name): New function declaration.
2461 (dwarf_unit_type_name): New function declaration.
2462 (read_comp_unit_head): Add support for new compilation units,
2463 DW_UT_partial, DW_UT_skeleton, DW_UT_split_compile, DW_UT_split_type.
2464 Particularly, DW_UT_skeleton and DW_UT_split_compile have dwo_id
2465 (currently named as "signature") in their header. Also clarify error
2466 messages.
2467 (lookup_dwo_id): New function. Returns the dwo id of the given
2468 compile unit.
2469 (lookup_dwo_unit): Use the new lookup_dwo_id function.
2470 (init_cutu_and_read_dies): Use the new dwarf2_dwo_name and lookup_dwo_id
2471 functions.
2472 (create_dwo_cu_reader): Use the added lookup_dwo_id function.
2473 (dwarf2_dwo_name): Get the dwo name if present.
2474 (dwarf_unit_type_name): Convert DW_UT_* types to string for diagnostic
2475 purposes.
2476
2477 2019-09-09 Tom Tromey <tom@tromey.com>
2478
2479 * tui/tui-win.c (tui_all_windows_info): Use ui_out.
2480
2481 2019-09-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2482
2483 * python/python.c (do_start_initialization): Make progname_copy static,
2484 to avoid a leak report.
2485
2486 2019-09-08 Tom Tromey <tom@tromey.com>
2487
2488 * tui/tui-wingeneral.c (box_win): Truncate long window titles.
2489
2490 2019-09-07 Simon Marchi <simon.marchi@efficios.com>
2491
2492 * dwarf2read.c (struct dw2_symtab_iterator) <block_index>:
2493 Change type to gdb::optional<block_enum>.
2494 (dw2_symtab_iter_init): Change block_index parameter type
2495 to gdb::optional<block_enum>.
2496 (dw2_lookup_symbol): Change block_index parameter
2497 type to block_enum.c
2498 (dw2_debug_names_lookup_symbol): Likewise.
2499 * psymtab.c (psym_lookup_symbol): Likewise.
2500 * symfile-debug.c (debug_qf_lookup_symbol): Likewise.
2501 * symfile.h (struct quick_symbol_functions) <lookup_symbol>:
2502 Likewise.
2503
2504 2019-09-06 Christian Biesinger <cbiesinger@google.com>
2505
2506 * defs.h (relocate_gdb_directory): Change int to bool in
2507 signature and rename flag to relocatable.
2508 * main.c (relocate_path): Likewise.
2509 (relocate_gdb_directory): Likewise.
2510
2511 2019-09-06 Alan Modra <amodra@gmail.com>
2512
2513 * coffread.c (coff_symfile_read): Constify filename variable.
2514 * dbxread.c (dbx_symfile_init, coffstab_build_psymtabs),
2515 (elfstab_build_psymtabs, stabsect_build_psymtabs): Likewise.
2516 * gdb_bfd.c (gdb_bfd_close_or_warn): Likewise.
2517 * solib.c (reload_shared_libraries_1): Likewise.
2518 * symfile.c (reread_symbols): Likewise.
2519 * solib-aix.c (solib_aix_bfd_open): Add cast for xfree of filename.
2520 * solib-darwin.c (darwin_bfd_open): Likewise.
2521 * symfile-mem.c (symbol_file_add_from_memory): Likewise.
2522
2523 2019-09-03 Andrew Burgess <andrew.burgess@embecosm.com>
2524
2525 * psymtab.c (print_partial_symbols): Handle missing domain_enum
2526 values MODULE_DOMAIN and COMMON_BLOCK_DOMAIN.
2527
2528 2019-09-03 Tom Tromey <tromey@adacore.com>
2529
2530 * ada-valprint.c (ada_val_print_num): Don't recurse for range
2531 types.
2532 (has_negatives): Unbias a range type bound.
2533 * dwarf2read.c (read_subrange_type): Handle DW_AT_GNU_bias.
2534 * gdbtypes.c (operator==): Handle new field.
2535 (create_range_type): Add "bias" parameter.
2536 (create_static_range_type, resolve_dynamic_range): Update.
2537 * gdbtypes.h (struct range_bounds) <bias>: New member.
2538 (create_range_type): Add bias parameter.
2539 * printcmd.c (print_scalar_formatted): Unbias range types.
2540 * value.c (unpack_long): Unbias range types.
2541 (pack_long): Bias range types.
2542
2543 2019-09-02 Alan Hayward <alan.hayward@arm.com>
2544
2545 * solib-svr4.c (svr4_find_and_create_probe_breakpoints): Check all
2546 probe arguments.
2547
2548 2019-09-02 Alan Hayward <alan.hayward@arm.com>
2549
2550 * break-catch-throw.c (fetch_probe_arguments): Use gdbarch.
2551 * dtrace-probe.c (dtrace_probe::get_argument_count): Likewise.
2552 * probe.c (probe_safe_evaluate_at_pc) (compute_probe_arg)
2553 (compile_probe_arg): Likewise.
2554 * probe.h (get_argument_count): Likewise.
2555 * solib-svr4.c (solib_event_probe_action): Likewise.
2556 * stap-probe.c (stap_probe::get_argument_count): Likewise.
2557
2558 2019-09-02 Alan Hayward <alan.hayward@arm.com>
2559
2560 * solib-svr4.c (svr4_find_and_create_probe_breakpoints): Move
2561 code to here...
2562 (svr4_create_solib_event_breakpoints): ...from here.
2563
2564 2019-08-30 Sergio Durigan Junior <sergiodj@redhat.com>
2565
2566 * nat/fork-inferior.c (trace_start_error): Remove "\nError: "
2567 suffix from warning message.
2568
2569 2019-08-30 Tom Tromey <tom@tromey.com>
2570
2571 * tui/tui-winsource.h (struct tui_source_window_base)
2572 <refresh_all>: Don't declare.
2573 * tui/tui-winsource.c (tui_source_window_base::refresh_all):
2574 Remove.
2575 * tui/tui-win.c (tui_refresh_all_win): Don't call refresh_all or
2576 tui_show_locator_content.
2577 * tui/tui-regs.h (struct tui_data_window) <refresh_all>: Don't
2578 declare.
2579 * tui/tui-regs.c (tui_data_window::refresh_all): Remove.
2580 * tui/tui-data.h (struct tui_win_info) <refresh_all>: Don't
2581 declare.
2582
2583 2019-08-30 Tom Tromey <tom@tromey.com>
2584
2585 * tui/tui-io.c (tui_cont_sig): Don't call wrefresh.
2586
2587 2019-08-30 Tom Tromey <tom@tromey.com>
2588
2589 * tui/tui-stack.c (_initialize_tui_stack): Move later.
2590 Remove unnecessary forward declarations.
2591
2592 2019-08-30 Tom Tromey <tom@tromey.com>
2593
2594 * tui/tui-stack.c (tui_locator_window::set_locator_fullname): Call
2595 rerender.
2596 (tui_update_locator_fullname, tui_show_frame_info): Don't call
2597 tui_show_locator_content.
2598
2599 2019-08-30 Tom Tromey <tom@tromey.com>
2600
2601 * tui/tui-stack.c (tui_show_locator_content): Move lower. Rewrite.
2602 (tui_locator_window::rerender): Rewrite using body of previous
2603 tui_show_locator_content.
2604
2605 2019-08-30 Tom Tromey <tom@tromey.com>
2606
2607 * tui/tui-stack.h (struct tui_locator_window) <set_locator_info,
2608 set_locator_fullname>: New methods.
2609 * tui/tui-stack.c (tui_locator_window::set_locator_fullname):
2610 Rename from tui_set_locator_fullname.
2611 (tui_locator_window::set_locator_info): Rename from
2612 tui_set_locator_info. Return bool.
2613 (tui_update_locator_fullname, tui_show_frame_info): Update.
2614
2615 2019-08-30 Tom Tromey <tom@tromey.com>
2616
2617 * tui/tui-layout.c (show_layout): Don't call tui_refresh_all.
2618
2619 2019-08-30 Tom Tromey <tom@tromey.com>
2620
2621 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Don't
2622 call touchwin.
2623
2624 2019-08-30 Tom Tromey <tom@tromey.com>
2625
2626 * tui/tui-wingeneral.c (box_win): Assume win_info and
2627 win_info->handle cannot be NULL.
2628
2629 2019-08-30 Tom Tromey <tom@tromey.com>
2630
2631 * tui/tui-regs.h (struct tui_data_item_window) <rerender,
2632 refresh_window>: Declare.
2633 * tui/tui-regs.c (tui_data_window::display_registers_from): Call
2634 resize.
2635 (tui_data_item_window::rerender): Rename from
2636 tui_display_register.
2637 (tui_data_item_window::refresh_window): New method.
2638 * tui/tui-layout.c (tui_gen_win_info::resize): Do nothing on
2639 no-op.
2640
2641 2019-08-30 Tom Tromey <tom@tromey.com>
2642
2643 * tui/tui-regs.h (struct tui_data_window) <regs_content,
2644 regs_column_count, current_group>: Move later. Now private.
2645 <get_current_group>: New method.
2646 * tui/tui-regs.c (tui_reg_command): Update.
2647 * tui/tui-layout.c (tui_set_layout): Update.
2648
2649 2019-08-30 Tom Tromey <tom@tromey.com>
2650
2651 * tui/tui-regs.c (tui_data_window::display_registers_from_line)
2652 (tui_data_window::rerender): Don't call
2653 check_and_display_highlight_if_needed.
2654 (tui_data_window::refresh_all): Remove call to
2655 erase_data_content.
2656
2657 2019-08-30 Tom Tromey <tom@tromey.com>
2658
2659 * tui/tui-regs.c (tui_data_window::last_regs_line_no)
2660 (tui_data_window::display_registers_from)
2661 (tui_data_window::display_reg_element_at_line)
2662 (tui_data_window::display_registers_from_line): Remove checks of
2663 "empty".
2664
2665 2019-08-30 Tom Tromey <tom@tromey.com>
2666
2667 * tui/tui-regs.h (struct tui_data_window) <display_all_data>:
2668 Don't declare.
2669 * tui/tui-regs.c (tui_data_window::show_registers): Call
2670 rerender.
2671 (tui_data_window::rerender): Rename from display_all_data.
2672 (tui_data_window::rerender): Remove old implementation.
2673
2674 2019-08-30 Tom Tromey <tom@tromey.com>
2675
2676 * tui/tui-regs.c (tui_data_window::display_all_data): Change
2677 text.
2678 * tui/tui-data.h (NO_DATA_STRING): Remove define.
2679
2680 2019-08-29 Bernhard Wodok <barto@gmx.net>
2681 Sergio Durigan Junior <sergiodj@redhat.com>
2682
2683 PR win32/24284
2684 * mingw-hdep.c (gdb_select): Handle case when 'n' is zero.
2685
2686 2019-08-28 Andrew Burgess <andrew.burgess@embecosm.com>
2687
2688 * symtab.c (search_symbols): Don't include MODULE_DOMAIN symbols
2689 when searching for types.
2690
2691 2019-08-28 Andrew Burgess <andrew.burgess@embecosm.com>
2692
2693 * f-lang.c (f_language_defn): Use f_print_typedef.
2694 * f-lang.h (f_print_typedef): Declare.
2695 * f-typeprint.c (f_print_typedef): Define.
2696
2697 2019-08-27 Christian Biesinger <cbiesinger@google.com>
2698
2699 * nat/linux-namespaces.c (mnsh_main): Initialize fd (to -1).
2700
2701 2019-08-27 Andrew Burgess <andrew.burgess@embecosm.com>
2702
2703 * cli/cli-utils.c (info_print_options_defs): Delete.
2704 (make_info_print_options_def_group): Delete.
2705 (extract_info_print_options): Delete.
2706 (info_print_command_completer): Delete.
2707 (info_print_args_help): Add extra parameter, and optionally
2708 include text about -n flag.
2709 * cli/cli-utils.h (struct info_print_options): Delete.
2710 (extract_info_print_options): Delete declaration.
2711 (info_print_command_completer): Delete declaration.
2712 (info_print_args_help): Add extra parameter, extend header
2713 comment.
2714 * python/python.c (gdbpy_rbreak): Pass additional parameter to
2715 search_symbols.
2716 * stack.c (struct info_print_options): New type.
2717 (info_print_options_defs): New file scoped variable.
2718 (make_info_print_options_def_group): New static function.
2719 (info_print_command_completer): New static function.
2720 (info_locals_command): Update to use new local functions.
2721 (info_args_command): Likewise.
2722 (_initialize_stack): Add extra parameter to calls to
2723 info_print_args_help.
2724 * symtab.c (search_symbols): Add extra parameter, use this to
2725 possibly excluse non-debug symbols.
2726 (symtab_symbol_info): Add extra parameter, which is passed on to
2727 search_symbols.
2728 (struct info_print_options): New type.
2729 (info_print_options_defs): New file scoped variable.
2730 (make_info_print_options_def_group): New static function.
2731 (info_print_command_completer): New static function.
2732 (info_variables_command): Update to use local functions, and pass
2733 extra parameter through to symtab_symbol_info.
2734 (info_functions_command): Likewise.
2735 (info_types_command): Pass additional argument through to
2736 symtab_symbol_info.
2737 (rbreak_command): Pass extra argument to search_symbols.
2738 (_initialize_symtab): Add extra arguments for calls to
2739 info_print_args_help, and update help text for 'info variables',
2740 'whereis', and 'info functions' commands.
2741 * symtab.h (search_symbols): Add extra argument to declaration.
2742 * NEWS: Mention new flags.
2743
2744 2019-08-26 Christian Biesinger <cbiesinger@google.com>
2745
2746 * symtab.c (lookup_static_symbol): Call the new function (and move
2747 it down to be next to lookup_global_symbol).
2748 (struct global_sym_lookup_data): Add block_enum member and rename to...
2749 (struct global_or_static_sym_lookup_data): ...this.
2750 (lookup_symbol_global_iterator_cb): Pass block_index instead of
2751 GLOBAL_BLOCK to lookup_symbol_in_objfile and rename to...
2752 (lookup_symbol_global_or_static_iterator_cb): ...this.
2753 (lookup_global_or_static_symbol): New function.
2754 (lookup_global_symbol): Call new function.
2755
2756 2019-08-26 Tom de Vries <tdevries@suse.de>
2757
2758 PR c++/24852
2759 * break-catch-throw.c (fetch_probe_arguments): Improve error mesage
2760 when pc_probe.prob == NULL.
2761
2762 2019-08-25 Simon Marchi <simon.marchi@efficios.com>
2763
2764 * dwarf2read.c (dw2_debug_names_iterator::next): Rename local
2765 variable symbol_linkage to symbol_linkage_.
2766
2767 2019-08-25 Simon Marchi <simon.marchi@efficios.com>
2768
2769 * dwarf2read.c (dw2_debug_names_iterator::next): Use enum to
2770 represent whether the symbol is static, dynamic, or we don't
2771 know.
2772
2773 2019-08-25 Yoshinori Sato <ysato@users.sourceforge.jp>
2774
2775 * gdb/rx-tdep.c (rx_register_names): New.
2776 (rx_register_name): Delete.
2777 (rx_psw_type): Delete.
2778 (rx_fpsw_type): Delete.
2779 (rx_register_type): Delete.
2780 (rx_gdbarch_init): Convert target-descriptions.
2781 (_initialize_rx_tdep): Add initialize_tdesc_rx.
2782 * gdb/features/Makefile: Add rx.xml.
2783 * gdb/features/rx.xml: New.
2784 * gdb/features/rx.c: Generated.
2785 * gdb/NEWS: Mention target description support.
2786
2787 2019-08-22 Christian Biesinger <cbiesinger@google.com>
2788
2789 * symtab.c (symbol_cache_lookup): Always initialize *bsc_ptr and
2790 *slot_ptr.
2791
2792 2019-08-23 Sergio Durigan Junior <sergiodj@redhat.com>
2793
2794 * configure.ac: Don't check for 'dlfcn.h' (moved to
2795 gdbsupport/common.m4).
2796 * Makefile.in (COMMON_SFILES): Move 'gdb-dlfcn.c' to
2797 'gdbsupport/'.
2798 (HFILES_NO_SRCDIR): Likewise, for 'gdb-dlfcn.h'.
2799 * compile/compile-c-support.c: Include
2800 'gdbsupport/gdb-dlfcn.h'.
2801 * gdbsupport/common.m4: Check for 'dlfcn.h'.
2802 * gdb-dlfcn.c: Move to...
2803 * gdbsupport/gdb-dlfcn.c: ... here.
2804 * gdb-dlfcn.h: Move to...
2805 * gdbsupport/gdb-dlfcn.h: ... here.
2806
2807 2019-08-23 Sandra Loosemore <sandra@codesourcery.com>
2808
2809 * nios2-tdep.c (struct reg_value): Improve comments. Make
2810 the offset field signed.
2811
2812 2019-08-22 Christian Biesinger <cbiesinger@google.com>
2813
2814 * python/lib/gdb/__init__.py (_execute_file): New function.
2815 * python/python.c (python_run_simple_file): Call gdb._execute_file
2816 on Windows.
2817
2818 2019-08-22 Andrew Burgess <andrew.burgess@embecosm.com>
2819
2820 * f-exp.y (yylex): Remove is_a_field_of_this local variable, and
2821 all uses as this was never set to anything but a zero value.
2822
2823 2019-08-21 Bogdan Harjoc <harjoc@gmail.com>
2824
2825 * cli/cli-cmds.c (with_command_1): Error out if no arguments.
2826
2827 2019-08-21 Christian Biesinger <cbiesinger@google.com>
2828
2829 * tui/tui-data.h (tui_gen_win_info): Add an =default
2830 move constructor, required by some GCC versions.
2831
2832 2019-08-21 Jinke Fan <fanjinke51@yeah.net>
2833
2834 * go32-nat.c (go32_sysinfo): Add hygon_p.
2835
2836 2019-08-20 Tom Tromey <tom@tromey.com>
2837
2838 * tui/tui-regs.h (struct tui_data_window) <last_regs_line_no,
2839 line_from_reg_element_no, first_reg_element_no_inline,
2840 display_all_data, delete_data_content_windows,
2841 erase_data_content>: Now private.
2842
2843 2019-08-20 Tom Tromey <tom@tromey.com>
2844
2845 * tui/tui-wingeneral.c (box_win): Change type of highlight_flag.
2846 (tui_unhighlight_win, tui_highlight_win)
2847 (tui_win_info::make_window): Update.
2848 * tui/tui-data.h (HILITE, NO_HILITE): Remove.
2849
2850 2019-08-20 Tom Tromey <tom@tromey.com>
2851
2852 * tui/tui-data.h (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
2853 (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
2854 (MAX_PID_WIDTH): Move to tui-stack.c.
2855 * tui/tui-stack.c (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
2856 (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
2857 (MAX_PID_WIDTH): Move from tui-data.h.
2858
2859 2019-08-20 Tom Tromey <tom@tromey.com>
2860
2861 * tui/tui-wingeneral.h (tui_make_window): Don't declare.
2862 * tui/tui-wingeneral.c (box_win): Change type of win_info.
2863 (box_win): Update.
2864 (tui_gen_win_info::make_window): Rename from tui_make_window.
2865 (tui_win_info::make_window): New method.
2866 (tui_gen_win_info::make_visible): Update.
2867 * tui/tui-source.c (tui_source_window::set_contents): Update.
2868 * tui/tui-regs.c (tui_data_window::show_register_group): Update.
2869 (tui_data_window::display_registers_from): Update.
2870 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
2871 * tui/tui-data.h (struct tui_gen_win_info) <make_window>:
2872 Declare.
2873 <can_box>: Remove.
2874 <title>: Remove.
2875 (struct tui_win_info) <make_window>: Declare.
2876 <can_box>: Now virtual.
2877 <title>: New member.
2878 * tui/tui-data.c (~tui_gen_win_info): Don't free title.
2879 * tui/tui-command.c (tui_cmd_window::resize): Update.
2880
2881 2019-08-20 Tom Tromey <tom@tromey.com>
2882
2883 * tui/tui-regs.h (struct tui_data_window) <display_regs>: Remove.
2884 * tui/tui-regs.c (tui_data_window::show_registers): Update.
2885 (tui_data_window::check_register_values): Update.
2886
2887 2019-08-20 Tom Tromey <tom@tromey.com>
2888
2889 * tui/tui-regs.h (struct tui_data_window): Use
2890 DISABLE_COPY_AND_ASSIGN.
2891 <regs_content>: Change type, removing unique_ptr.
2892 <tui_data_window>: Add move constructor.
2893 * tui/tui-regs.c (tui_data_window::show_registers)
2894 (tui_data_window::show_register_group)
2895 (tui_data_window::display_registers_from)
2896 (tui_data_window::display_registers_from)
2897 (tui_data_window::first_data_item_displayed)
2898 (tui_data_window::delete_data_content_windows)
2899 (tui_data_window::rerender, tui_data_window::refresh_window)
2900 (tui_data_window::check_register_values): Update.
2901
2902 2019-08-20 Tom Tromey <tom@tromey.com>
2903
2904 * tui/tui-regs.h (struct tui_data_window) <show_registers,
2905 show_register_group>: Declare.
2906 (tui_show_register_group): Don't declare.
2907 * tui/tui-regs.c (tui_data_window::show_registers): Rename from
2908 tui_show_registers.
2909 (tui_data_window::show_register_group): Rename from
2910 tui_show_register_group.
2911 (tui_data_window::check_register_values, tui_reg_command):
2912 Update.
2913 * tui/tui-layout.c (tui_set_layout): Update.
2914
2915 2019-08-20 Tom Tromey <tom@tromey.com>
2916
2917 * tui/tui-regs.h (struct tui_data_window) <check_register_values>:
2918 Declare.
2919 (tui_check_register_values): Don't declare.
2920 * tui/tui-regs.c (tui_data_window::check_register_values): Rename
2921 from tui_check_register_values.
2922 * tui/tui-hooks.c (tui_register_changed): Update.
2923
2924 2019-08-20 Tom Tromey <tom@tromey.com>
2925
2926 * tui/tui-regs.c (tui_reg_layout): Move later.
2927 (tui_show_registers): Don't enable TUI mode or change layout.
2928
2929 2019-08-20 Tom Tromey <tom@tromey.com>
2930
2931 * tui/tui-regs.h (struct tui_data_item_window)
2932 <~tui_data_item_window>: Remove.
2933 <content>: Now a unique_xmalloc_ptr.
2934 * tui/tui-regs.c (tui_register_format): Return a
2935 unique_xmalloc_ptr.
2936 (tui_get_register): Update.
2937 (~tui_data_item_window): Remove.
2938 (tui_data_window::display_registers_from, tui_display_register):
2939 Update.
2940 * tui/tui-io.h (tui_expand_tabs): Update.
2941 * tui/tui-io.c (tui_expand_tabs): Return a unique_xmalloc_ptr.
2942 Remove "col" parameter.
2943
2944 2019-08-20 Tom Tromey <tom@tromey.com>
2945
2946 * tui/tui-regs.h (struct tui_data_item_window) <value>: Remove
2947 field.
2948 * tui/tui-regs.c (~tui_data_item_window): Update.
2949
2950 2019-08-20 Tom Tromey <tom@tromey.com>
2951
2952 * tui/tui-regs.c (tui_register_format, tui_get_register): Move
2953 earlier.
2954
2955 2019-08-20 Tom Tromey <tom@tromey.com>
2956
2957 * tui/tui-regs.c (tui_reg_command): Remove NULL check.
2958
2959 2019-08-20 Tom Tromey <tom@tromey.com>
2960
2961 * tui/tui-source.h (struct tui_source_window): Update.
2962 * tui/tui-regs.c (tui_show_registers): Update.
2963 * tui/tui-disasm.h (struct tui_disasm_window): Update.
2964 * tui/tui-data.h (NO_SRC_STRING, NO_DISASSEM_STRING)
2965 (NO_REGS_STRING): Remove defines.
2966
2967 2019-08-20 Conrad Meyer <cem@FreeBSD.org>
2968
2969 * remote.c (remote_target::remote_btrace_maybe_reopen): Avoid
2970 unnecessary thread walk if remote doesn't support the packet.
2971
2972 2019-08-19 Tom Tromey <tromey@adacore.com>
2973
2974 * python/py-value.c (value_has_field): Fix indentation.
2975
2976 2019-08-19 Tom Tromey <tromey@adacore.com>
2977
2978 * printcmd.c (do_one_display, info_display_command): Update.
2979 * block.h (contained_in): Return bool. Add allow_nested
2980 parameter.
2981 * block.c (contained_in): Return bool. Add allow_nested
2982 parameter.
2983
2984 2019-08-19 Tom Tromey <tom@tromey.com>
2985
2986 * configure: Rebuild.
2987 * configure.ac: Disallow the combination of -static-libstdc++ and
2988 source highlight.
2989 * source-cache.c (get_language_name): Handle rust.
2990 (source_cache::get_source_lines): Ignore highlighting exceptions.
2991
2992 2019-08-16 Tom Tromey <tom@tromey.com>
2993
2994 * tui/tui.h (enum tui_win_type) <EXEC_INFO_WIN>: Remove.
2995 * tui/tui-winsource.h (struct tui_exec_info_window): Remove.
2996 (struct tui_source_window_base) <make_visible, refresh_window,
2997 resize>: Remove methods.
2998 <execution_info>: Remove field.
2999 * tui/tui-winsource.c (tui_source_window_base::do_erase_source_content)
3000 (tui_show_source_line, tui_source_window_base)
3001 (~tui_source_window_base): Update.
3002 (tui_source_window_base::resize)
3003 (tui_source_window_base::make_visible)
3004 (tui_source_window_base::refresh_window): Remove.
3005 (tui_source_window_base::update_exec_info): Update.
3006 * tui/tui-source.c (tui_source_window::set_contents): Update.
3007 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
3008
3009 2019-08-16 Tom Tromey <tom@tromey.com>
3010
3011 * tui/tui-hooks.c (tui_remove_hooks): Don't set
3012 deprecated_query_hook.
3013
3014 2019-08-16 Tom Tromey <tom@tromey.com>
3015
3016 * tui/tui-winsource.c (tui_update_source_windows_with_addr)
3017 (tui_update_source_windows_with_line): Update.
3018 * tui/tui-source.h (struct tui_source_window)
3019 <show_symtab_source>: Declare.
3020 (tui_show_symtab_source): Don't declare.
3021 * tui/tui-source.c (tui_show_symtab_source): Rename from
3022 tui_show_symtab_source.
3023
3024 2019-08-16 Tom Tromey <tom@tromey.com>
3025
3026 * tui/tui-winsource.h (struct tui_source_window_base)
3027 <set_contents>: Declare.
3028 * tui/tui-winsource.c
3029 (tui_source_window_base::update_source_window_as_is): Update.
3030 * tui/tui-source.h (struct tui_source_window) <set_contents>:
3031 Declare.
3032 (tui_set_source_content): Don't declare.
3033 * tui/tui-source.c (tui_source_window::set_contents): Rename from
3034 tui_set_source_content.
3035 * tui/tui-disasm.h (struct tui_disasm_window) <set_contents>:
3036 Declare.
3037 (tui_set_disassem_content): Don't declare.
3038 * tui/tui-disasm.c (tui_disasm_window::set_contents): Rename from
3039 tui_set_disassem_content.
3040
3041 2019-08-16 Tom Tromey <tom@tromey.com>
3042
3043 * tui/tui-winsource.h (struct tui_source_window_base)
3044 <update_breakpoint_info>: Declare.
3045 (tui_update_breakpoint_info): Don't declare.
3046 * tui/tui-winsource.c (tui_source_window_base::update_source_window_as_is)
3047 (tui_update_all_breakpoint_info): Update.
3048 (tui_source_window_base::update_breakpoint_info): Rename from
3049 tui_update_breakpoint_info.
3050 (tui_source_window_base::update_exec_info): Update.
3051
3052 2019-08-16 Tom Tromey <tom@tromey.com>
3053
3054 * tui/tui-winsource.h (struct tui_source_window_base)
3055 <update_source_window>: Declare.
3056 (tui_update_source_window): Don't declare.
3057 * tui/tui-winsource.c
3058 (tui_source_window_base::update_source_window): Rename from
3059 tui_update_source_window.
3060 (tui_source_window_base::rerender): Update.
3061 * tui/tui-source.c (tui_source_window::maybe_update): Update.
3062 * tui/tui-disasm.c (tui_show_disassem)
3063 (tui_show_disassem_and_update_source)
3064 (tui_disasm_window::maybe_update): Update.
3065
3066 2019-08-16 Tom Tromey <tom@tromey.com>
3067
3068 * tui/tui-winsource.h (struct tui_source_window_base)
3069 <update_source_window_as_is>: Declare.
3070 (tui_update_source_window_as_is): Don't declare.
3071 * tui/tui-winsource.c (tui_update_source_window): Update
3072 (tui_source_window_base::update_source_window_as_is): Rename from
3073 tui_update_source_window_as_is.
3074 (tui_source_window_base::refill): Update.
3075 * tui/tui-source.c (tui_show_symtab_source): Update.
3076 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical):
3077 Update.
3078
3079 2019-08-16 Tom Tromey <tom@tromey.com>
3080
3081 * tui/tui-winsource.h (tui_update_source_window)
3082 (tui_update_source_window_as_is): Remove "noerror" parameter.
3083 * tui/tui-winsource.c (tui_update_source_window)
3084 (tui_update_source_window_as_is): Remove "noerror" parameter.
3085 (tui_update_source_windows_with_addr)
3086 (tui_update_source_windows_with_line)
3087 (tui_source_window_base::rerender)
3088 (tui_source_window_base::refill): Update.
3089 * tui/tui-source.h (tui_set_source_content)
3090 (tui_show_symtab_source): Remove "noerror" parameter.
3091 * tui/tui-source.c (tui_set_source_content): Remove "noerror"
3092 parameter.
3093 (tui_show_symtab_source): Likewise.
3094 (tui_source_window::maybe_update): Update.
3095 * tui/tui-disasm.c (tui_show_disassem)
3096 (tui_show_disassem_and_update_source)
3097 (tui_disasm_window::do_scroll_vertical)
3098 (tui_disasm_window::maybe_update): Update.
3099
3100 2019-08-16 Tom Tromey <tom@tromey.com>
3101
3102 * tui/tui.c (tui_is_window_visible): Update.
3103 * tui/tui-wingeneral.c (tui_make_window)
3104 (tui_gen_win_info::make_visible, tui_refresh_all): Update.
3105 * tui/tui-win.c (window_name_completer, tui_refresh_all_win)
3106 (tui_set_focus_command, tui_all_windows_info, update_tab_width)
3107 (tui_set_win_height_command, parse_scrolling_args): Update.
3108 * tui/tui-source.c (tui_source_window::style_changed): Update.
3109 * tui/tui-regs.c (tui_show_registers)
3110 (tui_data_window::first_data_item_displayed)
3111 (tui_data_window::delete_data_content_windows)
3112 (tui_check_register_values, tui_reg_command): Update.
3113 * tui/tui-disasm.c (tui_show_disassem): Update.
3114 * tui/tui-data.h (struct tui_gen_win_info) <is_visible>: New
3115 method.
3116 <is_visible>: Remove field.
3117 * tui/tui-data.c (tui_next_win, tui_prev_win)
3118 (tui_delete_invisible_windows): Update.
3119
3120 2019-08-16 Tom Tromey <tom@tromey.com>
3121
3122 * tui/tui-winsource.h (struct tui_source_window_base)
3123 <m_has_locator>: Remove.
3124 * tui/tui-layout.c (show_source_disasm_command, show_data)
3125 (show_source_or_disasm_and_command): Update.
3126
3127 2019-08-16 Alan Hayward <alan.hayward@arm.com>
3128
3129 * NEWS (Other MI changes): New subsection.
3130 * aarch64-tdep.c (aarch64_get_pc_address_flags): New function.
3131 (aarch64_gdbarch_init): Add aarch64_get_pc_address_flags.
3132 * arch-utils.c (default_get_pc_address_flags): New function.
3133 * arch-utils.h (default_get_pc_address_flags): New declaration.
3134 * gdbarch.sh: Add get_pc_address_flags.
3135 * gdbarch.c: Regenerate.
3136 * gdbarch.h: Likewise.
3137 * stack.c (print_pc): New function.
3138 (print_frame_info) (print_frame): Call print_pc.
3139
3140 2019-08-16 Tom de Vries <tdevries@suse.de>
3141
3142 * maint.c (maintenance_info_sections): Also handle !ALLOBJ case using
3143 print_objfile_section_info.
3144
3145 2019-08-15 Tom Tromey <tom@tromey.com>
3146
3147 * tui/tui-io.c (tui_puts_internal): Check TUI_CMD_WIN before
3148 calling update_cmdwin_start_line.
3149 * tui/tui-winsource.h (struct tui_source_window_base)
3150 <do_make_visible_with_new_height, set_new_height>: Don't declare.
3151 <rerender>: Declare.
3152 * tui/tui-winsource.c (tui_source_window_base::update_tab_width):
3153 Call rerender.
3154 (tui_source_window_base::set_new_height): Remove.
3155 (tui_source_window_base::rerender): Rename from
3156 do_make_visible_with_new_height.
3157 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Use
3158 resize method.
3159 (tui_win_info::make_invisible_and_set_new_height)
3160 (tui_win_info::make_visible_with_new_height): Remove.
3161 * tui/tui-stack.h (struct tui_locator_window) <rerender>:
3162 Declare.
3163 * tui/tui-stack.c (tui_locator_window::rerender): New method.
3164 * tui/tui-regs.h (struct tui_data_window) <set_new_height,
3165 do_make_visible_with_new_height>: Don't declare.
3166 <rerender>: Declare.
3167 * tui/tui-regs.c (tui_data_window::rerender): Rename from
3168 set_new_height.
3169 (tui_data_window::do_make_visible_with_new_height): Remove.
3170 * tui/tui-layout.c (show_source_disasm_command, show_data): Don't
3171 call tui_show_locator_content.
3172 (tui_gen_win_info::resize): Call rerender.
3173 (show_source_or_disasm_and_command): Don't call
3174 tui_show_locator_content.
3175 * tui/tui-data.h (struct tui_gen_win_info) <rerender>: New
3176 method.
3177 (struct tui_win_info) <rerender>: Declare.
3178 <set_new_height, make_invisible_and_set_new_height,
3179 make_visible_with_new_height>: Don't declare.
3180 * tui/tui-data.c (tui_win_list::rerender): New method.
3181 * tui/tui-command.h (struct tui_cmd_window)
3182 <do_make_visible_with_new_height>: Don't declare.
3183 * tui/tui-command.c
3184 (tui_cmd_window::do_make_visible_with_new_height): Remove.
3185
3186 2019-08-15 Tom Tromey <tromey@adacore.com>
3187
3188 * ada-exp.y (convert_char_literal): Handle "Q%c" encoding.
3189 * ada-lang.c (ada_enum_name): Likewise.
3190
3191 2019-08-15 Christian Biesinger <cbiesinger@google.com>
3192
3193 * python/lib/gdb/__init__.py (GdbOutputFile): Rename to have a
3194 leading underscore.
3195 (GdbOutputErrorFile): Likewise.
3196 (global scope): Adjust constructor calls to GdbOutput{,Error}File
3197 accordingly.
3198 (execute_unwinders): Rename to have a leading underscore.
3199 (auto_load_packages): Likewise.
3200 (global scope): Adjust call to auto_load_packages accordingly.
3201 (GdbSetPythonDirectory): Likewise.
3202 * python/py-unwind.c (pyuw_sniffer): Call _execute_unwinders
3203 instead of execute_unwinders.
3204
3205 2019-08-15 Tom Tromey <tom@tromey.com>
3206
3207 * tui/tui-layout.c (show_layout, show_source_disasm_command)
3208 (show_data): Don't change window visibility.
3209 (tui_gen_win_info::resize): Remove special case for command
3210 window. Use wresize, when available.
3211 (show_source_or_disasm_and_command): Don't change window
3212 visibility.
3213 * tui/tui-command.h (struct tui_cmd_window) <resize>: Declare.
3214 <make_visible>: New method.
3215 * tui/tui-command.c (tui_cmd_window::resize): New method.
3216
3217 2019-08-15 Tom Tromey <tom@tromey.com>
3218
3219 * tui/tui-winsource.h (struct tui_source_window_iterator): New.
3220 (struct tui_source_windows): New.
3221 * tui/tui-winsource.c (tui_display_main): Update.
3222 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
3223 (new_height_ok, parse_scrolling_args): Update.
3224 * tui/tui-layout.c (show_layout, show_data): Update.
3225 * tui/tui-data.h (tui_source_windows, tui_clear_source_windows)
3226 (tui_add_to_source_windows): Don't declare.
3227 * tui/tui-data.c (source_windows, tui_source_windows)
3228 (tui_clear_source_windows, tui_add_to_source_windows): Remove.
3229
3230 2019-08-15 Tom Tromey <tom@tromey.com>
3231
3232 * tui/tui-winsource.h (struct tui_source_window_base) <resize>:
3233 Rename from reset.
3234 * tui/tui-winsource.c (tui_source_window_base::resize): Rename.
3235 * tui/tui-layout.c (show_source_disasm_command, show_data):
3236 Update.
3237 (tui_gen_win_info::resize): Rename.
3238 (show_source_or_disasm_and_command): Update.
3239 * tui/tui-data.h (struct tui_gen_win_info) <resize>: Rename from
3240 reset.
3241
3242 2019-08-15 Tom Tromey <tom@tromey.com>
3243
3244 * tui/tui-stack.c (tui_initialize_static_data): Remove.
3245 * tui/tui-interp.c (tui_interp::init): Don't call
3246 tui_initialize_static_data.
3247 * tui/tui-data.h (tui_initialize_static_data): Don't declare.
3248
3249 2019-08-15 Tom Tromey <tom@tromey.com>
3250
3251 * tui/tui-layout.c (tui_default_win_viewport_height): Don't
3252 examine tui_win_list.
3253
3254 2019-08-15 Tom Tromey <tom@tromey.com>
3255
3256 * tui/tui-winsource.h (tui_clear_source_content): Don't declare.
3257 * tui/tui-winsource.c (tui_update_source_window_as_is): Don't call
3258 tui_clear_source_content.
3259 (tui_clear_source_content): Remove.
3260 (tui_source_window_base::do_erase_source_content): Hoist call to
3261 content.clear().
3262 * tui/tui-stack.c (tui_show_frame_info): Don't call
3263 tui_clear_source_content.
3264
3265 2019-08-15 Tom Tromey <tom@tromey.com>
3266
3267 * tui/tui-winsource.h (struct tui_source_window_base)
3268 <do_erase_source_content>: New method.
3269 <erase_source_content>: New method.
3270 (tui_erase_source_content): Don't declare.
3271 * tui/tui-winsource.c (tui_clear_source_content): Update.
3272 (tui_source_window_base::do_erase_source_content): Rename from
3273 tui_erase_source_content.
3274 (tui_source_window_base::show_source_content): Update.
3275 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
3276 * tui/tui-source.h (struct tui_source_window)
3277 <erase_source_content>: New method.
3278 * tui/tui-disasm.h (struct tui_disasm_window)
3279 <erase_source_content>: New method.
3280
3281 2019-08-15 Tom Tromey <tom@tromey.com>
3282
3283 * tui/tui-winsource.h (tui_alloc_source_buffer): Don't declare.
3284 (struct tui_source_element): Add DISABLE_COPY_AND_ASSIGN, and move
3285 constructor.
3286 * tui/tui-winsource.c (tui_alloc_source_buffer): Remove.
3287 * tui/tui-source.c (tui_set_source_content): Update.
3288 * tui/tui-disasm.c (tui_set_disassem_content): Update.
3289
3290 2019-08-15 Tom Tromey <tom@tromey.com>
3291
3292 * tui/tui-winsource.h (tui_line_is_displayed): Don't declare.
3293 * tui/tui-winsource.c (tui_line_is_displayed): Move to
3294 tui-source.c.
3295 * tui/tui-source.h (struct tui_source_window) <line_is_displayed>:
3296 Declare.
3297 * tui/tui-source.c (tui_source_window::line_is_displayed): New
3298 method.
3299 (tui_source_window::maybe_update): Update.
3300
3301 2019-08-15 Tom Tromey <tom@tromey.com>
3302
3303 * tui/tui-winsource.h (tui_addr_is_displayed): Don't declare.
3304 * tui/tui-winsource.c (tui_addr_is_displayed): Move to
3305 tui-disasm.c.
3306 * tui/tui-disasm.h (struct tui_disasm_window) <addr_is_displayed>:
3307 Declare.
3308 * tui/tui-disasm.c (tui_disasm_window::addr_is_displayed): New
3309 method.
3310 (tui_disasm_window::maybe_update): Update.
3311
3312 2019-08-15 Tom Tromey <tom@tromey.com>
3313
3314 * tui/tui-winsource.h (struct tui_source_window_base)
3315 <maybe_update>: Declare.
3316 * tui/tui-stack.c (tui_show_frame_info): Call maybe_update
3317 method.
3318 * tui/tui-source.h (struct tui_source_window) <maybe_update>:
3319 Declare.
3320 * tui/tui-source.c (tui_source_window::maybe_update): New method.
3321 * tui/tui-disasm.h (struct tui_disasm_window) <maybe_update>:
3322 Declare.
3323 * tui/tui-disasm.c (tui_disasm_window::maybe_update): New method.
3324
3325 2019-08-15 Tom Tromey <tom@tromey.com>
3326
3327 * tui/tui-stack.c (tui_make_status_line): Use string constructor.
3328
3329 2019-08-15 Tom Tromey <tom@tromey.com>
3330
3331 * tui/tui-wingeneral.c: Include tui-stack.h.
3332 * tui/tui-stack.h (MAX_LOCATOR_ELEMENT_LEN)
3333 (struct tui_locator_window): Move from tui-data.h.
3334 * tui/tui-stack.c (_locator, tui_locator_win_info_ptr)
3335 (tui_initialize_static_data): Move from tui-data.c.
3336 * tui/tui-data.h (MAX_LOCATOR_ELEMENT_LEN)
3337 (struct tui_locator_window): Move to tui-stack.c.
3338 * tui/tui-data.c (_locator, tui_locator_win_info_ptr)
3339 (tui_initialize_static_data): Move to tui-stack.c.
3340
3341 2019-08-15 Tom Tromey <tom@tromey.com>
3342
3343 * tui/tui-layout.c (show_source_disasm_command)
3344 (show_source_or_disasm_and_command): Use make_visible method, not
3345 tui_make_window.
3346 * tui/tui-command.h (struct tui_cmd_window) <make_visible>:
3347 Remove.
3348
3349 2019-08-15 Tom Tromey <tom@tromey.com>
3350
3351 * tui/tui-wingeneral.h (tui_make_window): Update.
3352 * tui/tui-wingeneral.c (tui_make_window): Remove "box_it"
3353 parameter.
3354 (tui_gen_win_info::make_visible): Update.
3355 * tui/tui-regs.c (tui_data_window::display_registers_from):
3356 Update.
3357 * tui/tui-layout.c (show_source_disasm_command)
3358 (show_source_or_disasm_and_command): Update.
3359 * tui/tui-data.h (struct tui_gen_win_info) <can_box>: New method.
3360 (enum tui_box): Remove.
3361 (struct tui_win_info) <can_box>: New method.
3362 * tui/tui-command.h (struct tui_cmd_window) <can_box>: New
3363 method.
3364
3365 2019-08-15 Tom de Vries <tdevries@suse.de>
3366
3367 * linux-nat-trad.c: Include gdbarch.h.
3368
3369 2019-08-14 Alan Hayward <alan.hayward@arm.com>
3370
3371 * aarch64-tdep.c (aarch64_analyze_prologue): Allow any valid
3372 register sizes.
3373
3374 2019-08-14 Tom Tromey <tromey@adacore.com>
3375
3376 * darwin-nat.c: Include gdbarch.h.
3377 * darwin-nat-info.c: Include gdbarch.h.
3378
3379 2019-08-13 Tom Tromey <tom@tromey.com>
3380
3381 * tui/tui-data.h (struct tui_gen_win_info) <last_visible_line>:
3382 Remove.
3383 * tui/tui-data.c (tui_initialize_static_data): Update.
3384
3385 2019-08-13 Tom Tromey <tom@tromey.com>
3386
3387 * tui/tui-winsource.h (struct tui_exec_info_window)
3388 <~tui_exec_info_window, maybe_allocate_content, get_content,
3389 m_content>: Remove.
3390 (struct tui_source_window_base) <set_exec_info_content,
3391 show_exec_info_content>: Don't declare.
3392 * tui/tui-winsource.c
3393 (tui_exec_info_window::maybe_allocate_content): Remove.
3394 (tui_source_window_base::update_exec_info): Rename from
3395 set_exec_info_content.
3396 (tui_source_window_base::show_exec_info_content)
3397 (tui_source_window_base::update_exec_info): Remove.
3398
3399 2019-08-13 Tom Tromey <tom@tromey.com>
3400
3401 * tui/tui-winsource.h (tui_clear_exec_info_content): Don't
3402 declare.
3403 * tui/tui-winsource.c (tui_update_source_window_as_is)
3404 (tui_update_source_windows_with_addr, tui_erase_source_content):
3405 Update.
3406 (tui_clear_exec_info_content): Remove.
3407
3408 2019-08-13 Tom Tromey <tom@tromey.com>
3409
3410 * tui/tui-winsource.h (tui_erase_exec_info_content): Don't
3411 declare.
3412 * tui/tui-winsource.c (tui_source_window_base::refresh_all): Don't
3413 call tui_erase_exec_info_content.
3414 (tui_clear_exec_info_content): Rename from
3415 tui_erase_exec_info_content.
3416 (tui_clear_exec_info_content): Delete.
3417
3418 2019-08-13 Tom Tromey <tom@tromey.com>
3419
3420 * tui/tui-winsource.h (struct tui_source_window_base)
3421 <show_exec_info_content>: Declare.
3422 (tui_show_exec_info_content): Don't declare.
3423 * tui/tui-winsource.c
3424 (tui_source_window_base::show_exec_info_content): Rename from
3425 tui_show_exec_info_content.
3426 (tui_source_window_base::update_exec_info): Update.
3427
3428 2019-08-13 Tom Tromey <tom@tromey.com>
3429
3430 * tui/tui-data.h (enum tui_bp_flag, tui_bp_flags, struct tui_source_element)
3431 (TUI_BP_HIT_POS, TUI_BP_BREAK_POS, TUI_EXEC_POS)
3432 (TUI_EXECINFO_SIZE, tui_exec_info_content): Move ...
3433 * tui/tui-winsource.h (enum tui_bp_flag, tui_bp_flags, struct
3434 tui_source_element, TUI_BP_HIT_POS, TUI_BP_BREAK_POS)
3435 (TUI_EXEC_POS, TUI_EXECINFO_SIZE, tui_exec_info_content):
3436 ... here.
3437
3438 2019-08-13 Tom Tromey <tom@tromey.com>
3439
3440 * tui/tui-winsource.h (struct tui_source_window_base)
3441 <update_exec_info>: Declare.
3442 (tui_update_exec_info): Don't declare.
3443 * tui/tui-winsource.c (tui_update_source_window_as_is)
3444 (tui_source_window_base::refresh_all)
3445 (tui_update_all_breakpoint_info): Update.
3446 (tui_source_window_base::update_exec_info): Rename from
3447 tui_update_exec_info.
3448 * tui/tui-stack.c (tui_show_frame_info): Update.
3449
3450 2019-08-13 Tom Tromey <tom@tromey.com>
3451
3452 * tui/tui-winsource.h (struct tui_source_window_base)
3453 <set_exec_info_content>: Declare.
3454 (tui_set_exec_info_content): Don't declare.
3455 * tui/tui-winsource.c
3456 (tui_source_window_base::set_exec_info_content): Rename from
3457 tui_set_exec_info_content.
3458 (tui_update_exec_info): Update.
3459
3460 2019-08-13 Tom Tromey <tom@tromey.com>
3461
3462 * tui/tui-winsource.h (struct tui_source_window_base)
3463 <show_source_content>: Declare.
3464 (tui_show_source_content): Don't declare.
3465 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
3466 (tui_source_window_base::show_source_content): Rename from
3467 tui_show_source_content.
3468 (tui_source_window_base::refresh_all): Update.
3469 * tui/tui-layout.c (show_source_disasm_command)
3470 (show_source_or_disasm_and_command): Update.
3471
3472 2019-08-13 Tom Tromey <tom@tromey.com>
3473
3474 * tui/tui-winsource.c (tui_erase_source_content)
3475 (tui_show_source_content, tui_source_window_base::refresh_all):
3476 Update.
3477 * tui/tui-wingeneral.h
3478 (tui_check_and_display_highlight_if_needed): Don't declare.
3479 * tui/tui-wingeneral.c
3480 (tui_win_info::check_and_display_highlight_if_needed): Rename from
3481 check_and_display_highlight_if_needed.
3482 * tui/tui-win.c (tui_rehighlight_all)
3483 (tui_win_info::make_visible_with_new_height): Update.
3484 * tui/tui-regs.c (tui_data_window::display_registers_from_line)
3485 (tui_data_window::erase_data_content)
3486 (tui_data_window::display_all_data): Update.
3487 * tui/tui-data.h (struct tui_win_info)
3488 <check_and_display_highlight_if_needed>: Declare.
3489
3490 2019-08-13 Tom Tromey <tom@tromey.com>
3491
3492 * tui/tui-win.c (tui_resize_all): Call
3493 tui_delete_invisible_windows.
3494 * tui/tui-layout.c (show_layout): Call
3495 tui_delete_invisible_windows.
3496 * tui/tui-data.h (tui_delete_invisible_windows): Declare.
3497 * tui/tui-data.c (tui_delete_invisible_windows): New function.
3498
3499 2019-08-13 Tom Tromey <tom@tromey.com>
3500
3501 * tui/tui-disasm.c (tui_show_disassem): Add assertion. Don't call
3502 tui_add_win_to_layout.
3503
3504 2019-08-13 Tom Tromey <tom@tromey.com>
3505
3506 * tui/tui-layout.h (tui_default_win_height): Don't declare.
3507 * tui/tui-layout.c (tui_default_win_height): Now static.
3508
3509 2019-08-13 Tom Tromey <tom@tromey.com>
3510
3511 * tui/tui-layout.c (show_layout): Unify all layout cases into a
3512 single switch.
3513 (show_source_disasm_command, show_source_or_disasm_and_command):
3514 Don't check current layout.
3515
3516 2019-08-13 Tom Tromey <tom@tromey.com>
3517
3518 * tui/tui-wingeneral.c (make_all_visible): Remove.
3519 (tui_make_all_invisible): Simplify.
3520 * tui/tui-layout.c (tui_make_all_invisible): Move from
3521 tui-wingeneral.c; simplify.
3522 (show_layout): Hoist call to tui_make_all_invisible.
3523 (show_data): Don't call tui_make_all_invisible.
3524
3525 2019-08-13 Tom Tromey <tom@tromey.com>
3526
3527 * tui/tui-wingeneral.h (tui_make_all_visible): Don't declare.
3528 * tui/tui-wingeneral.c (tui_make_all_visible): Remove.
3529
3530 2019-08-13 Tom Tromey <tom@tromey.com>
3531
3532 * tui/tui-layout.c (current_layout, tui_current_layout): Move from
3533 tui-data.c.
3534 (show_source_disasm_command, show_data)
3535 (show_source_or_disasm_and_command): Don't use
3536 tui_set_current_layout_to.
3537 * tui/tui-data.h (tui_set_current_layout_to): Don't declare.
3538 * tui/tui-data.c (current_layout, tui_current_layout): Move to
3539 tui-layout.c.
3540 (tui_set_current_layout_to): Remove.
3541
3542 2019-08-13 Tom Tromey <tom@tromey.com>
3543
3544 * tui/tui-layout.c (tui_set_layout): Update.
3545 * tui/tui-data.h (struct tui_layout_def): Remove.
3546 (tui_layout_def): Don't declare.
3547 * tui/tui-data.c (layout_def): Remove.
3548 (tui_layout_def): Remove.
3549
3550 2019-08-13 Tom Tromey <tom@tromey.com>
3551
3552 * tui/tui-winsource.h (struct tui_source_window_base)
3553 <clear_detail>: No longer "override".
3554 * tui/tui-regs.h (struct tui_data_window) <clear_detail>: Remove.
3555 * tui/tui-regs.c (tui_data_window::clear_detail): Remove.
3556 * tui/tui-data.h (struct tui_win_info) <clear_detail>: Remove.
3557 * tui/tui-command.h (struct tui_cmd_window) <clear_detail>:
3558 Remove.
3559 * tui/tui-command.c (tui_cmd_window::clear_detail): Remove.
3560
3561 2019-08-13 Tom Tromey <tromey@adacore.com>
3562
3563 * tracepoint.c: Don't include readline.h or history.h.
3564
3565 2019-08-12 Tom Tromey <tom@tromey.com>
3566
3567 * configure: Rebuild.
3568 * configure.ac: Check for readline 7.
3569 * NEWS: Mention readline 7 requirement.
3570 * README: Update.
3571
3572 2019-08-12 Tom Tromey <tom@tromey.com>
3573
3574 * mingw-hdep.c (gdb_select): Remove readline hack.
3575
3576 2019-08-09 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
3577
3578 * blockframe.c (find_pc_partial_function): Set *block to nullptr
3579 when the function fails.
3580
3581 2019-08-09 Andreas Arnez <arnez@linux.ibm.com>
3582
3583 * s390-tdep.c (s390_type_align): New function.
3584 (s390_gdbarch_init): Set it as type_align gdbarch method.
3585
3586 2019-08-09 Tom de Vries <tdevries@suse.de>
3587
3588 PR gdb/24591
3589 * dwarf2read.c (dwarf2_fetch_die_loc_sect_off): Adjust pc_high and
3590 pc_low with relocation offset.
3591
3592 2019-08-07 Tom Tromey <tromey@adacore.com>
3593
3594 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
3595 (print_frame_args): Update.
3596 * python/py-framefilter.c (py_print_single_arg, enumerate_args):
3597 Update.
3598 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
3599 * frame.h (struct frame_arg): Add initializers.
3600 <error>: Now a unique_xmalloc_ptr.
3601
3602 2019-08-07 Alan Hayward <alan.hayward@arm.com>
3603
3604 * NEWS: Expand the Pointer Authentication entry.
3605 * aarch64-tdep.c (aarch64_frame_unmask_address): Rename from this.
3606 (aarch64_frame_unmask_lr): ... to this.
3607 (aarch64_prologue_prev_register, aarch64_dwarf2_prev_register):
3608 Call aarch64_frame_unmask_lr.
3609 * frame.c (struct frame_info): Add "masked" variable.
3610 (frame_set_previous_pc_masked) (frame_get_pc_masked): New functions.
3611 (fprint_frame): Check for masked pc.
3612 * frame.h (frame_set_previous_pc_masked) (frame_get_pc_masked): New
3613 declarations.
3614 * python/py-framefilter.c (py_print_frame): Check for masked pc.
3615 * stack.c (print_frame): Check for masked pc.
3616
3617 2019-08-06 Tom Tromey <tom@tromey.com>
3618
3619 * stabsread.c (patch_block_stabs, read_one_struct_field)
3620 (read_enum_type): Use obstack_strndup.
3621 * rust-exp.y (rust_parser::copy_name): Use obstack_strndup.
3622 * gdb_obstack.h (obstack_strndup): Use obstack_strndup.
3623 * dwarf2read.c (guess_full_die_structure_name)
3624 (anonymous_struct_prefix): Use obstack_strndup.
3625 * dbxread.c (cp_set_block_scope): Use obstack_strndup.
3626 * c-exp.y (yylex): Use obstack_strndup.
3627 * ada-exp.y (write_object_renaming, write_ambiguous_var)
3628 (write_var_or_type): Use obstack_strndup.
3629
3630 2019-08-06 Tom Tromey <tom@tromey.com>
3631
3632 * symfile.c (reread_symbols): Use obstack_strdup.
3633 * stabsread.c (read_type): Use obstack_strdup.
3634 * gdb_obstack.h (obstack_strdup): New overload.
3635 * dwarf2read.c (dwarf2_compute_name, create_dwo_unit_in_dwp_v1)
3636 (create_dwo_unit_in_dwp_v2, build_error_marker_type)
3637 (dwarf2_canonicalize_name): Use obstack_strdup.
3638 * dbxread.c (read_dbx_symtab): Use obstack_strdup.
3639 * cp-support.c (inspect_type, replace_typedefs_qualified_name):
3640 Use obstack_strdup.
3641
3642 2019-08-06 Tom Tromey <tom@tromey.com>
3643
3644 * gdb_obstack.h (obstack_strdup): Define.
3645 * gdb_obstack.c (obstack_strdup): Don't define.
3646
3647 2019-08-06 Tom Tromey <tom@tromey.com>
3648
3649 * xcoffread.c (SYMNAME_ALLOC, process_xcoff_symbol): Use
3650 obstack_strdup.
3651 * typeprint.c (typedef_hash_table::find_global_typedef): Use
3652 obstack_strdup.
3653 * symfile.c (allocate_compunit_symtab): Use obstack_strdup.
3654 * stabsread.c (common_block_start): Use obstack_strdup.
3655 * objfiles.c (set_objfile_main_name, objfile): Use
3656 obstack_strdup.
3657 * namespace.c (add_using_directive): Use obstack_strdup.
3658 * mdebugread.c (parse_symbol, parse_type): Use obstack_strdup.
3659 * jit.c (finalize_symtab): Use obstack_strdup.
3660 * dwarf2read.c (fixup_go_packaging, dwarf2_physname)
3661 (guess_partial_die_structure_name, partial_die_info::fixup)
3662 (dwarf2_name): Use obstack_strdup.
3663 * coffread.c (coff_read_struct_type, coff_read_enum_type): Use
3664 obstack_strdup.
3665 * c-exp.y (scan_macro_expansion): Use obstack_strdup.
3666 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
3667 obstack_strdup.
3668 * ada-lang.c (ada_decode_symbol): Use obstack_strdup.
3669
3670 2019-08-07 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3671
3672 * unittests/help-doc-selftests.c: New file.
3673 * Makefile.in: Add the new file.
3674
3675 2019-08-07 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3676
3677 * cli/cli-decode.h (print_doc_line): Add for_value_prefix argument.
3678 * cli/cli-decode.c (print_doc_line): Likewise. It now prints
3679 the full first line, except when FOR_VALUE_PREFIX. In this case,
3680 the trailing '.' is not output, and the first character is uppercased.
3681 (print_help_for_command): Update call to print_doc_line.
3682 (print_doc_of_command): Likewise.
3683 * cli/cli-setshow.c (deprecated_show_value_hack): Likewise.
3684 * cli/cli-option.c (append_indented_doc): Do not append newline.
3685 (build_help_option): Append newline after first appended_indented_doc
3686 only if a second call is done.
3687 (build_help): Append 2 new lines before each option, except the first
3688 one.
3689 * compile/compile.c (_initialize_compile): Add new lines after
3690 %OPTIONS%, when not at the end of the help.
3691 Change help doc or code
3692 producing the help doc to respect the invariants.
3693 * maint-test-options.c (_initialize_maint_test_options): Likewise.
3694 Also removed the new line after 'Options:', as all other commands
3695 do not put an empty line between 'Options:' and the first option.
3696 * printcmd.c (_initialize_printcmd): Likewise.
3697 * stack.c (_initialize_stack): Likewise.
3698 * interps.c (interpreter_exec_cmd): Fix "Usage:" line that was
3699 incorrectly telling COMMAND is optional.
3700 * ada-lang.c (_initialize_ada_language): Change help doc or code
3701 producing the help doc to respect the invariants.
3702 * ada-tasks.c (_initialize_ada_tasks): Likewise.
3703 * breakpoint.c (_initialize_breakpoint): Likewise.
3704 * cli/cli-cmds.c (_initialize_cli_cmds): Likewise.
3705 * cli/cli-logging.c (_initialize_cli_logging): Likewise.
3706 * cli/cli-setshow.c (_initialize_cli_setshow): Likewise.
3707 * cli/cli-style.c (cli_style_option::add_setshow_commands,
3708 _initialize_cli_style): Likewise.
3709 * corelow.c (core_target_info): Likewise.
3710 * dwarf-index-cache.c (_initialize_index_cache): Likewise.
3711 * dwarf2read.c (_initialize_dwarf2_read): Likewise.
3712 * filesystem.c (_initialize_filesystem): Likewise.
3713 * frame.c (_initialize_frame): Likewise.
3714 * gnu-nat.c (add_task_commands): Likewise.
3715 * infcall.c (_initialize_infcall): Likewise.
3716 * infcmd.c (_initialize_infcmd): Likewise.
3717 * interps.c (_initialize_interpreter): Likewise.
3718 * language.c (_initialize_language): Likewise.
3719 * linux-fork.c (_initialize_linux_fork): Likewise.
3720 * maint-test-settings.c (_initialize_maint_test_settings): Likewise.
3721 * maint.c (_initialize_maint_cmds): Likewise.
3722 * memattr.c (_initialize_mem): Likewise.
3723 * printcmd.c (_initialize_printcmd): Likewise.
3724 * python/lib/gdb/function/strfns.py (_MemEq, _StrLen, _StrEq,
3725 _RegEx): Likewise.
3726 * ravenscar-thread.c (_initialize_ravenscar): Likewise.
3727 * record-btrace.c (_initialize_record_btrace): Likewise.
3728 * record-full.c (_initialize_record_full): Likewise.
3729 * record.c (_initialize_record): Likewise.
3730 * regcache-dump.c (_initialize_regcache_dump): Likewise.
3731 * regcache.c (_initialize_regcache): Likewise.
3732 * remote.c (add_packet_config_cmd, init_remote_threadtests,
3733 _initialize_remote): Likewise.
3734 * ser-tcp.c (_initialize_ser_tcp): Likewise.
3735 * serial.c (_initialize_serial): Likewise.
3736 * skip.c (_initialize_step_skip): Likewise.
3737 * source.c (_initialize_source): Likewise.
3738 * stack.c (_initialize_stack): Likewise.
3739 * symfile.c (_initialize_symfile): Likewise.
3740 * symtab.c (_initialize_symtab): Likewise.
3741 * target-descriptions.c (_initialize_target_descriptions): Likewise.
3742 * top.c (init_main): Likewise.
3743 * tracefile-tfile.c (tfile_target_info): Likewise.
3744 * tracepoint.c (_initialize_tracepoint): Likewise.
3745 * tui/tui-win.c (_initialize_tui_win): Likewise.
3746 * utils.c (add_internal_problem_command): Likewise.
3747 * valprint.c (value_print_option_defs): Likewise.
3748
3749 2019-08-06 Frank Ch. Eigler <fche@redhat.com>
3750
3751 PR build/24886
3752 * configure.ac: Drop enable-libmcheck support.
3753 * configure, config.in: Rebuild.
3754 * libmcheck.m4: Remove.
3755 * acinclude.m4: Don't include it.
3756 * Makefile.in: Don't distribute it.
3757 * top.c (print_gdb_configuration): Don't mention it.
3758
3759 2019-08-06 Tom Tromey <tom@tromey.com>
3760
3761 * utils.c (set_output_style): Sometimes pass stream to
3762 emit_style_escape.
3763 * ui-out.h (class ui_out) <can_emit_style_escape>: Declare.
3764 * record-btrace.c (btrace_insn_history): Update.
3765 * mi/mi-out.h (class mi_ui_out) <can_emit_style_escape>: New
3766 method.
3767 * disasm.h (gdb_pretty_print_disassembler): Add uiout parameter.
3768 Update initializers.
3769 <m_uiout>: New field.
3770 <m_di>: Move lower.
3771 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
3772 Remove "uiout" parameter.
3773 (dump_insns): Update.
3774 * cli-out.h (class cli_ui_out) <can_emit_style_escape>: Declare.
3775 * cli-out.c (cli_ui_out::can_emit_style_escape): New method.
3776
3777 2019-08-06 Christian Biesinger <cbiesinger@google.com>
3778
3779 * symtab.c (symbol_cache_lookup): Change int to enum block_enum.
3780 (error_in_psymtab_expansion): Likewise.
3781 (lookup_symbol_via_quick_fns): Likewise.
3782 (basic_lookup_transparent_type_quick): Likewise.
3783 (basic_lookup_transparent_type_1): Likewise.
3784
3785 2019-08-06 Tom Tromey <tromey@adacore.com>
3786
3787 * source.c (last_source_error): Now bool.
3788 (print_source_lines_base): Make "noprint" bool. Only open
3789 source file when last_source_visited changes.
3790
3791 2019-08-06 Tom Tromey <tromey@adacore.com>
3792
3793 * annotate.c (annotate_source_line): Use g_source_cache.
3794 * source-cache.c (source_cache::get_plain_source_lines): Change
3795 parameters. Populate m_offset_cache.
3796 (source_cache::ensure): New method.
3797 (source_cache::get_line_charpos): New method.
3798 (extract_lines): Move lower. Change parameters.
3799 (source_cache::get_source_lines): Move lower.
3800 * source-cache.h (class source_cache): Update comment.
3801 <get_line_charpos>: New method.
3802 <get_source_lines>: Update comment.
3803 <clear>: Clear m_offset_cache.
3804 <get_plain_source_lines>: Change parameters.
3805 <ensure>: New method
3806 <m_offset_cache>: New member.
3807 * source.c (forget_cached_source_info_for_objfile): Update.
3808 (info_source_command): Use g_source_cache.
3809 (find_source_lines, open_source_file_with_line_charpos): Remove.
3810 (print_source_lines_base, search_command_helper): Use g_source_cache.
3811 * source.h (open_source_file_with_line_charpos): Don't declare.
3812 * symtab.h (struct symtab) <nlines, line_charpos>: Remove.
3813 * tui/tui-source.c (tui_source_window::do_scroll_vertical):
3814 Use g_source_cache.
3815
3816 2019-08-06 Tom Tromey <tromey@adacore.com>
3817
3818 * source-cache.c (source_cache::get_plain_source_lines):
3819 Remove "first_line" and "last_line" parameters.
3820 (source_cache::get_source_lines): Cache plain text.
3821 * source-cache.h (class source_cache)
3822 <get_plain_source_lines>: Update.
3823
3824 2019-08-06 Tom Tromey <tromey@adacore.com>
3825
3826 * source-cache.c (extract_lines): No longer a method.
3827 Changed type of parameter. Include final newline.
3828 (selftests::extract_lines_test): New function.
3829 (_initialize_source_cache): Likewise.
3830 * source-cache.h (class source_cache)
3831 <extract_lines>: Don't declare.
3832
3833 2019-08-06 Tom Tromey <tromey@adacore.com>
3834
3835 * breakpoint.c (init_breakpoint_sal): Update.
3836 (breakpoint): Update.
3837 * breakpoint.h (struct breakpoint) <filter>: Now a
3838 unique_xmalloc_ptr.
3839
3840 2019-08-05 Christian Biesinger <cbiesinger@google.com>
3841
3842 * NEWS: Mention dictionary access on blocks.
3843 * python/py-block.c (blpy_getitem): New function.
3844 (block_object_as_mapping): New struct.
3845 (block_object_type): Use new struct for tp_as_mapping field.
3846
3847 2019-08-05 Christian Biesinger <cbiesinger@google.com>
3848
3849 * objfiles.h (objfile): Add a comment describing partial symbols.
3850
3851 2019-08-05 Tom Tromey <tromey@adacore.com>
3852
3853 * compile/compile.c (_initialize_compile): Use _(), not N_().
3854 * thread.c (_initialize_thread): Use _(), not N_().
3855 * stack.c (_initialize_stack): Use _(), not N_().
3856 * printcmd.c (_initialize_printcmd): Use _(), not N_().
3857
3858 2019-08-04 Simon Marchi <simon.marchi@polymtl.ca>
3859
3860 * dwarf2read.c (struct dw2_symtab_iterator):
3861 <want_specific_block>: Remove.
3862 <block_index>: Change type to gdb::optional.
3863 (dw2_symtab_iter_init): Remove WANT_SPECIFIC_BLOCK parameter,
3864 change type of BLOCK_INDEX parameter to gdb::optional.
3865 (dw2_symtab_iter_next): Re-write in function of gdb::optional.
3866 (dw2_lookup_symbol): Don't pass argument for
3867 WANT_SPECIFIC_BLOCK.
3868 (dw2_expand_symtabs_for_function): Don't pass argument for
3869 WANT_SPECIFIC_BLOCK, pass empty optional for BLOCK_INDEX.
3870 (class dw2_debug_names_iterator)
3871 <dw2_debug_names_iterator>: Remove WANT_SPECIFIC_BLOCK
3872 parameter, change BLOCK_INDEX type to gdb::optional.
3873 <m_want_specific_block>: Remove.
3874 <m_block_index>: Change type to gdb::optional.
3875 (dw2_debug_names_iterator::next): Change type of IS_STATIC to
3876 gdb::optional. Re-write in function of gdb::optional.
3877 (dw2_debug_names_lookup_symbol): Don't pass argument for
3878 WANT_SPECIFIC_BLOCK.
3879 (dw2_debug_names_expand_symtabs_for_function): Don't pass
3880 argument for WANT_SPECIFIC_BLOCK, pass empty optional for
3881 BLOCK_INDEX.
3882
3883 2019-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3884
3885 * NEWS: Mention changes to "info sources" command.
3886
3887 2019-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3888
3889 * symtab.c (filename_partial_match_opts): New struct type.
3890 (struct output_source_filename_data): New members
3891 regexp, c_regexp, partial_match.
3892 (output_source_filename): Use new members to decide to print file.
3893 (info_sources_option_defs): New variable.
3894 (make_info_sources_options_def_group, print_info_sources_header,
3895 info_sources_command_completer):
3896 New functions.
3897 (info_sources_command): Read new optional arguments.
3898 (_initialize_symtab): Update info sources help.
3899
3900 2019-08-02 Alexandre Oliva <oliva@adacore.com>
3901
3902 * ada-lang.c (exception_support_info_v0): Renamed from...
3903 (default_exception_support_info): ... this. Create new
3904 definition for v1.
3905 (ada_has_this_exception_support): Look up catch_handlers_sym.
3906 (ada_exception_support_info_sniffer): Try v0 after default.
3907
3908 2019-08-01 Tom Tromey <tromey@adacore.com>
3909
3910 * ia64-libunwind-tdep.h (struct libunwind_descr): Include
3911 gdbarch.h.
3912
3913 2019-08-01 Christian Biesinger <cbiesinger@google.com>
3914
3915 * s12z-tdep.c: Fix include path for s12z-opc.h.
3916
3917 2019-08-01 Alan Hayward <alan.hayward@arm.com>
3918
3919 * NEWS: Require GNU make 3.82.
3920
3921 2019-07-16 Tom Tromey <tom@tromey.com>
3922
3923 * tui/tui-wingeneral.h (tui_copy_win, tui_box_win): Don't
3924 declare.
3925
3926 2019-07-30 Tom Tromey <tromey@adacore.com>
3927
3928 * block.c (contained_in): Remove BLOCK_FUNCTION check.
3929
3930 2019-07-30 Kevin Buettner <kevinb@redhat.com>
3931
3932 * printcmd.c (print_address_symbolic): Print negative offsets.
3933 (build_address_symbolic): Force signed arithmetic when computing
3934 offset.
3935
3936 2019-07-30 Christian Biesinger <cbiesinger@google.com>
3937
3938 PR/24474: Add a function to lookup static variables.
3939 * NEWS: Mention this new function.
3940 * python/py-symbol.c (gdbpy_lookup_static_symbol): New function.
3941 * python/python-internal.h (gdbpy_lookup_static_symbol): New function.
3942 * python/python.c (python_GdbMethods): Add new function.
3943
3944 2019-07-29 Christian Biesinger <cbiesinger@google.com>
3945
3946 * NEWS: Mention new functions Objfile.lookup_{global,static}_symbol.
3947 * python/py-objfile.c (objfpy_lookup_global_symbol): New function.
3948 (objfpy_lookup_static_symbol): New function.
3949 (objfile_object_methods): Add new functions.
3950
3951 2019-07-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3952
3953 * NEWS: Mention 'set|show print frame-info'. Mention new
3954 'presence' value for 'frame-arguments'. Mention new '-frame-info'
3955 backtrace argument. Mention that python frame filtering code
3956 is now consistent with what 'backtrace' command prints.
3957
3958 2019-07-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3959
3960 * frame.h (enum print_what): New value 'SHORT_LOCATION', update
3961 comments.
3962 (print_frame_info_auto, print_frame_info_source_line,
3963 print_frame_info_location, print_frame_info_source_and_location,
3964 print_frame_info_location_and_address, print_frame_info_short_location):
3965 New declarations.
3966 (struct frame_print_options): New member print_frame_info.
3967 * extension.h (enum ext_lang_frame_args): New value CLI_PRESENCE.
3968 * stack.h (get_user_print_what_frame_info): New declaration.
3969 (frame_show_address): New declaration.
3970 * stack.c (print_frame_arguments_choices): New value 'presence'.
3971 (print_frame_info_auto, print_frame_info_source_line,
3972 print_frame_info_location, print_frame_info_source_and_location,
3973 print_frame_info_location_and_address, print_frame_info_short_location,
3974 print_frame_info_choices, print_frame_info_print_what): New definitions.
3975 (print_frame_args): Only print dots for args if print frame-arguments
3976 is 'presence'.
3977 (frame_print_option_defs): New element for "frame-info".
3978 (get_user_print_what_frame_info): New function.
3979 (frame_show_address): Make non static. Move comment to stack.h.
3980 (print_frame_info_to_print_what): New function.
3981 (print_frame_info): Update comment. Use fp_opts.print_frame_info
3982 to decide what to print.
3983 (backtrace_command_1): Handle the new print_frame_arguments_presence
3984 value.
3985 (_initialize_stack): Call add_setshow_enum_cmd for frame-info.
3986 * python/py-framefilter.c (py_print_args): Handle CLI_PRESENCE.
3987 (py_print_frame): In non-mi mode, use LOCATION as default for
3988 print_what, similarly to frame information printed directly by
3989 backtrace command. Handle frame-info user option in non MI mode.
3990
3991 2019-07-27 Kevin Buettner <kevinb@redhat.com>
3992
3993 * linux-thread-db.c (thread_db_target::thread_handle_to_thread_info):
3994 Add case for debugging 32-bit target on 64-bit host. Revise
3995 comment.
3996
3997 2019-07-27 Kevin Buettner <kevinb@redhat.com>
3998
3999 * infrun.c (fill_in_stop_func): Use find_pc_partial_function
4000 instead of find_function_entry_range_from_pc.
4001
4002 2019-07-27 Kevin Buettner <kevinb@redhat.com>
4003
4004 * stack.c (find_frame_funname): Remove code which preferred
4005 minsym over symtab sym in "certain pathological cases".
4006
4007 * valprint.h (build_address_symbolic): Add "prefer_sym_over_minsym"
4008 parameter. Change type of "do_demangle" to bool.
4009 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
4010 Pass suitable "prefer_sym_over_minsym" flag to
4011 build_address_symbolic(). Don't output "+" for negative offsets.
4012 * printcmd.c (print_address_symbolic): Update invocation of
4013 build_address_symbolic to include a "prefer_sym_over_minsym"
4014 flag.
4015 (build_address_symbolic): Add "prefer_sym_over_minsym" parameter.
4016 Restrict cases in which use of minimal symbol is preferred to that
4017 of a found symbol. Update comments.
4018
4019 * dwarf2-frame.c (dwarf2_frame_cache): Don't decode FDE instructions
4020 for entry pc when entry pc is out of range for that FDE.
4021
4022 2019-07-26 Brian Callahan <bcallah@openbsd.org>
4023
4024 PR gdb/24839:
4025 * gdb/obsd-nat.c (obsd_nat_target::pid_to_str): Fix typo in return
4026 type.
4027
4028 2019-07-25 Christian Biesinger <cbiesinger@google.com>
4029
4030 * python/py-objfile.c (add_separate_debug_file): Fix comment about
4031 this function's Python signature.
4032
4033
4034 2019-07-24 Christian Biesinger <cbiesinger@google.com>
4035
4036 * compile/compile-object-load.c (compile_object_load): Pass GLOBAL_SCOPE.
4037 * solib-spu.c (spu_lookup_lib_symbol): Pass GLOBAL_SCOPE.
4038 * solib-svr4.c (elf_lookup_lib_symbol): Pass GLOBAL_SCOPE.
4039 * symtab.c (lookup_global_symbol_from_objfile): Add a scope parameter.
4040 * symtab.h (lookup_global_symbol_from_objfile): Likewise.
4041
4042
4043 2019-07-24 Yoshinori Sato <ysato@users.sourceforge.jp>
4044
4045 * h8300-tdep.c (h8300_register_name_common): New.
4046 h8300_register_name): Use h8300_register_name_common.
4047 (h8300s_register_name): Likewise.
4048 (h8300sx_register_name): Likewise.
4049 (h8300h_register_nam): New.
4050 (h8300_gdbarch_init): Use h8300h_register_name in h8300h machine.
4051
4052
4053 2019-07-23 Srinath Parvathaneni <srinath.parvathaneni@arm.com>
4054
4055 * arm-tdep.c (arm_skip_cmse_entry): New function.
4056 (arm_is_sgstubs_section): New function.
4057 (arm_skip_stub): Add call to arm_skip_cmse_entry function.
4058
4059 2019-07-22 Tom Tromey <tom@tromey.com>
4060
4061 * tui/tui-win.c (tui_win_info::make_invisible_and_set_new_height):
4062 Don't self-assign.
4063
4064 2019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
4065
4066 * c-typeprint.c (c_print_typedef): Pass -1 instead of 0 to
4067 type_print.
4068
4069 2019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
4070
4071 * symtab.c (search_symbols): Adjust msymbol matching type arrays
4072 so that GDB doesn't match any msymbols when searching in the
4073 TYPES_DOMAIN.
4074 (print_symbol_info): Print using typedef_print or type_print based
4075 on the type of the symbol. Add updated FIXME comment moved from...
4076 (_initialize_symtab): ... move and update FIXME comment to above.
4077
4078 2019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
4079
4080 * NEWS: Mention adding -q option to "info types".
4081 * symtab.c (struct info_types_options): New struct.
4082 (info_types_options_defs): New variable.
4083 (make_info_types_options_def_group): New function.
4084 (info_types_command): Use gdb::option framework to parse options.
4085 (info_types_command_completer): New function.
4086 (_initialize_symtab): Extend the help text on "info types" and
4087 register command completer.
4088
4089 2019-07-21 Christian Biesinger <cbiesinger@google.com>
4090
4091 * symtab.c (lookup_symbol_in_objfile_symtabs): Change int to block_enum.
4092 (lookup_symbol_in_objfile): Change int to block_enum and add a
4093 gdb_assert to make sure block_index is GLOBAL_BLOCK or STATIC_BLOCK.
4094
4095 2019-07-20 Christian Biesinger <cbiesinger@google.com>
4096
4097 * MAINTAINERS (Write After Approval): Add self.
4098
4099 2019-07-19 Andrew Burgess <andrew.burgess@embecosm.com>
4100
4101 * riscv-tdep.c (riscv_push_dummy_code): Write a 4-byte nop
4102 instruction to the dummy code region.
4103
4104 2019-07-19 Tom Tromey <tromey@adacore.com>
4105
4106 * contrib/ari/gdb_ari.sh: Mention C++11, not ISO C 90.
4107 (ARGSUSED, PARAMS, __func__): Remove rules.
4108
4109 2019-07-19 Alan Hayward <alan.hayward@arm.com>
4110
4111 * arm-tdep.c (_initialize_arm_tdep): Remove xml tests.
4112 * features/arm/arm-with-iwmmxt.c: Remove.
4113 * features/arm/arm-with-iwmmxt.xml: Remove.
4114 * features/arm/arm-with-m-fpa-layout.c: Remove.
4115 * features/arm/arm-with-m-fpa-layout.xml: Remove.
4116 * features/arm/arm-with-m-vfp-d16.c: Remove.
4117 * features/arm/arm-with-m-vfp-d16.xml: Remove.
4118 * features/arm/arm-with-m.c: Remove.
4119 * features/arm/arm-with-m.xml: Remove.
4120 * features/arm/arm-with-neon.c: Remove.
4121 * features/arm/arm-with-neon.xml: Remove.
4122 * features/arm/arm-with-vfpv2.c: Remove.
4123 * features/arm/arm-with-vfpv2.xml: Remove.
4124 * features/arm/arm-with-vfpv3.c: Remove.
4125 * features/arm/arm-with-vfpv3.xml: Remove.
4126
4127 2019-07-19 Alan Hayward <alan.hayward@arm.com>
4128
4129 * arm-tdep.c (_initialize_arm_tdep): Add xml regression tests.
4130
4131 2019-07-19 Alan Hayward <alan.hayward@arm.com>
4132
4133 * arch/aarch32.c (aarch32_create_target_description): Create
4134 target descriptions using features.
4135 * arch/arm.c (arm_create_target_description)
4136 (arm_create_mprofile_target_description): Likewise.
4137 * arm-tdep.c (_initialize_arm_tdep): Remove tdesc init calls.
4138
4139 2019-07-19 Alan Hayward <alan.hayward@arm.com>
4140
4141 * Makefile.in: Add new files.
4142 * aarch32-tdep.c: New file.
4143 * aarch32-tdep.h: New file.
4144 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
4145 Call aarch32_read_description.
4146 * arch/aarch32.c: New file.
4147 * arch/aarch32.h: New file.
4148 * arch/arm.c (arm_create_target_description)
4149 (arm_create_mprofile_target_description): New function.
4150 * arch/arm.h (arm_fp_type, arm_m_profile_type): New enum.
4151 (arm_create_target_description)
4152 (arm_create_mprofile_target_description): New declaration.
4153 * arm-fbsd-tdep.c (arm_fbsd_read_description_auxv): Call
4154 read_description functions.
4155 * arm-linux-nat.c (arm_linux_nat_target::read_description):
4156 Likewise.
4157 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
4158 * arm-tdep.c (tdesc_arm_list): New variable.
4159 (arm_register_g_packet_guesses): Call create description functions.
4160 (arm_read_description) (arm_read_mprofile_description): New
4161 function.
4162 * arm-tdep.h (arm_read_description)
4163 (arm_read_mprofile_description): Add declaration.
4164 * configure.tgt: Add new files.
4165
4166 2019-07-18 Guillaume LABARTHE <guillaume.labarthe@gmail.com>
4167
4168 * top.c (new_ui_command): Open specified terminal just once.
4169
4170 2019-07-18 Tom Tromey <tromey@adacore.com>
4171
4172 * symtab.c (main_name): Constify return type.
4173 * symfile.c (set_initial_language): Update.
4174 * symtab.h (main_name): Constify return type.
4175
4176 2019-07-17 Tom Tromey <tom@tromey.com>
4177
4178 * tui/tui-winsource.c (tui_update_source_window)
4179 (tui_update_source_window_as_is)
4180 (tui_update_source_windows_with_line): Remove return.
4181 * tui/tui-disasm.c (tui_show_disassem)
4182 (tui_show_disassem_and_update_source): Remove return.
4183 * tui/tui.c (tui_reset): Remove return.
4184 * tui/tui-wingeneral.c
4185 (tui_check_and_display_highlight_if_needed): Remove return.
4186
4187 2019-07-17 Tom Tromey <tom@tromey.com>
4188
4189 * tui/tui-win.c (parse_scrolling_args): Throw separate errors.
4190
4191 2019-07-17 Tom Tromey <tom@tromey.com>
4192
4193 * tui/tui-winsource.h (struct tui_exec_info_window)
4194 (struct tui_source_window_base): Move from tui-data.h.
4195 * tui/tui-winsource.c: Move many method definitions from
4196 elsewhere. Remove "structuring" comments.
4197 * tui/tui-wingeneral.c (tui_source_window_base::make_visible)
4198 (tui_source_window_base::refresh_window): Move to
4199 tui-winsource.c.
4200 * tui/tui-win.c (tui_source_window_base::refresh_all)
4201 (tui_source_window_base::update_tab_width)
4202 (tui_source_window_base::set_new_height)
4203 (tui_source_window_base::do_make_visible_with_new_height): Move to
4204 tui-winsource.c.
4205 * tui/tui-source.h: Update.
4206 * tui/tui-source.c (tui_source_window_base::reset): Move to
4207 tui-winsource.c.
4208 * tui/tui-disasm.h: Update.
4209 * tui/tui-data.h (struct tui_exec_info_window): Move to
4210 tui-winsource.h.
4211 (struct tui_source_window_base): Likewise.
4212 * tui/tui-data.c (tui_source_window_base::clear_detail)
4213 (tui_source_window_base, ~tui_source_window_base): Move to
4214 tui-winsource.c.
4215
4216 2019-07-17 Tom Tromey <tom@tromey.com>
4217
4218 * tui/tui-win.c (tui_resize_all)
4219 (tui_source_window_base::update_tab_width)
4220 (tui_adjust_win_heights): Update.
4221 (tui_win_info::make_invisible_and_set_new_height): Rename from
4222 make_invisible_and_set_new_height.
4223 * tui/tui-data.h (struct tui_win_info)
4224 <make_invisible_and_set_new_height>: New method.
4225
4226 2019-07-17 Tom Tromey <tom@tromey.com>
4227
4228 * tui/tui.c: Update.
4229 * tui/tui-source.h (struct tui_source_window): Move from
4230 tui-data.h.
4231 * tui/tui-layout.c: Update.
4232 * tui/tui-disasm.c: Update.
4233 * tui/tui-data.h (struct tui_source_window): Move to
4234 tui-source.h.
4235
4236 2019-07-17 Tom Tromey <tom@tromey.com>
4237
4238 * tui/tui-disasm.h (struct tui_disasm_window): Move from
4239 tui-data.h.
4240 * tui/tui-data.h (struct tui_disasm_window): Move to
4241 tui-disasm.h.
4242
4243 2019-07-17 Tom Tromey <tom@tromey.com>
4244
4245 * tui/tui-regs.h (struct tui_data_item_window): Move from
4246 tui-data.h.
4247 * tui/tui-regs.c (tui_data_item_window): Move from tui-data.c.
4248 * tui/tui-data.h (struct tui_data_item_window): Move to
4249 tui-regs.h.
4250 * tui/tui-data.c (~tui_data_item_window): Move to tui-regs.c.
4251
4252 2019-07-17 Tom Tromey <tom@tromey.com>
4253
4254 * tui/tui.c: Update.
4255 * tui/tui-win.c (tui_cmd_window::do_make_visible_with_new_height)
4256 (tui_cmd_window::max_height): Move to tui-command.c.
4257 * tui/tui-layout.c: Update.
4258 * tui/tui-data.h (struct tui_cmd_window): Move to tui-command.h.
4259 * tui/tui-data.c (tui_cmd_window::clear_detail): Move to
4260 tui-command.c.
4261 * tui/tui-command.h (struct tui_cmd_window): Move from
4262 tui-data.h.
4263 * tui/tui-command.c: Remove "structuring" comments.
4264 (tui_cmd_window::clear_detail)
4265 (tui_cmd_window::do_make_visible_with_new_height)
4266 (tui_cmd_window::max_height): Move from elsewhere.
4267
4268 2019-07-17 Tom Tromey <tom@tromey.com>
4269
4270 * tui/tui-io.c (tui_dispatch_ctrl_char): Move from tui-command.c.
4271 Now static.
4272 * tui/tui-command.h (tui_dispatch_ctrl_char): Don't declare.
4273 * tui/tui-command.c (tui_dispatch_ctrl_char): Move to tui-io.c.
4274
4275 2019-07-17 Tom Tromey <tom@tromey.com>
4276
4277 * tui/tui.c: Update.
4278 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Move to
4279 tui-regs.c.
4280 * tui/tui-windata.h: Remove file.
4281 * tui/tui-windata.c: Remove file.
4282 * tui/tui-win.c (tui_data_window::set_new_height)
4283 (tui_data_window::do_make_visible_with_new_height): Move to
4284 tui-regs.c.
4285 * tui/tui-regs.h (struct tui_data_window): Move from tui-data.h.
4286 * tui/tui-regs.c: Remove "structuring" comments.
4287 (tui_data_window::first_data_item_displayed)
4288 (tui_data_window::delete_data_content_windows)
4289 (tui_data_window::erase_data_content)
4290 (tui_data_window::display_all_data)
4291 (tui_data_window::refresh_all)
4292 (tui_data_window::do_scroll_vertical)
4293 (tui_data_window::clear_detail, tui_data_window::set_new_height)
4294 (tui_data_window::do_make_visible_with_new_height)
4295 (tui_data_window::refresh_window): Move from elsewhere.
4296 (_initialize_tui_regs): Move to end of file.
4297 * tui/tui-layout.c: Update.
4298 * tui/tui-hooks.c: Update.
4299 * tui/tui-data.h (struct tui_data_window): Move to tui-regs.h.
4300 * tui/tui-data.c (tui_data_window::clear_detail): Move to
4301 tui-regs.c.
4302 * Makefile.in (SUBDIR_TUI_SRCS): Remove tui-windata.c.
4303
4304 2019-07-17 Tom Tromey <tom@tromey.com>
4305
4306 * tui/tui-io.c (tui_puts_internal): Call wrefresh if newline is
4307 seen.
4308
4309 2019-07-17 Tom Tromey <tom@tromey.com>
4310
4311 * tui/tui-win.c (tui_source_window_base::set_new_height)
4312 (tui_source_window_base::do_make_visible_with_new_height): Use
4313 m_has_locator field directly.
4314 * tui/tui-data.h (struct tui_win_info) <has_locator>: Remove
4315 method.
4316 (struct tui_source_window_base) <has_locator>: Likewise.
4317
4318 2019-07-17 Tom Tromey <tom@tromey.com>
4319
4320 * tui/tui-wingeneral.h (tui_make_visible, tui_make_invisible):
4321 Don't declare.
4322 * tui/tui-wingeneral.c (tui_make_visible, tui_make_invisible):
4323 Remove.
4324 * tui/tui-win.c (tui_source_window_base::set_new_height)
4325 (tui_source_window_base::set_new_height)
4326 (make_invisible_and_set_new_height)
4327 (tui_source_window_base::do_make_visible_with_new_height)
4328 (tui_source_window_base::do_make_visible_with_new_height):
4329 Update.
4330 * tui/tui-layout.c (show_source_disasm_command, show_data)
4331 (show_source_or_disasm_and_command): Update.
4332 * tui/tui-layout.c (show_layout): Update.
4333
4334 2019-07-17 Tom Tromey <tom@tromey.com>
4335
4336 * tui/tui-layout.c (make_data_window): Remove.
4337 (show_data): Unify creation and re-initialization cases.
4338
4339 2019-07-17 Tom Tromey <tom@tromey.com>
4340
4341 * tui/tui-layout.c (make_source_window, make_disasm_window):
4342 Remove.
4343 (show_data): Unify creation and re-initialization cases.
4344
4345 2019-07-17 Tom Tromey <tom@tromey.com>
4346
4347 * tui/tui-layout.c (make_command_window): Remove.
4348 (show_source_disasm_command, show_source_or_disasm_and_command):
4349 Unify creation and re-initialization cases.
4350
4351 2019-07-17 Tom Tromey <tom@tromey.com>
4352
4353 * tui/tui-layout.c (show_source_or_disasm_and_command): Unify
4354 creation and re-initialization cases.
4355
4356 2019-07-17 Tom Tromey <tom@tromey.com>
4357
4358 * tui/tui-regs.c (tui_get_register): Return void.
4359
4360 2019-07-17 Tom Tromey <tom@tromey.com>
4361
4362 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible):
4363 Simplify.
4364
4365 2019-07-17 Tom Tromey <tom@tromey.com>
4366
4367 * tui/tui-layout.c (show_source_disasm_command): Simplify window
4368 resetting.
4369
4370 2019-07-17 Tom Tromey <tom@tromey.com>
4371
4372 * tui/tui.h (tui_set_layout_by_name): Don't declare.
4373 * tui/tui-regs.c (tui_reg_layout): New function.
4374 (tui_show_registers, tui_reg_command): Use it.
4375 * tui/tui-layout.c (LAYOUT_USAGE): Remove.
4376 (tui_layout_command): Rename from tui_set_layout_by_name. Change
4377 parameters.
4378 (tui_layout_command): Remove.
4379
4380 2019-07-17 Tom Tromey <tom@tromey.com>
4381
4382 * tui/tui-layout.h (tui/tui-layout): Return void.
4383 * tui/tui-layout.c (tui_set_layout): Return void. Add assert.
4384
4385 2019-07-17 Tom Tromey <tom@tromey.com>
4386
4387 * tui/tui-layout.c (show_source_disasm_command, show_data):
4388 Update.
4389 (reset_locator): Remove.
4390 (show_source_or_disasm_and_command): Update.
4391
4392 2019-07-17 Tom Tromey <tom@tromey.com>
4393
4394 * tui/tui-source.c (tui_source_window_base::reset): Remove
4395 win_type parameter.
4396 * tui/tui-layout.c (make_command_window, make_source_window)
4397 (make_disasm_window, make_data_window)
4398 (show_source_disasm_command, show_data, tui_gen_win_info::reset)
4399 (reset_locator, show_source_or_disasm_and_command): Update.
4400 * tui/tui-data.h (struct tui_gen_win_info) <reset>: Remove
4401 win_type parameter.
4402 (struct tui_source_window_base) <reset>: Likewise.
4403
4404 2019-07-17 Tom Tromey <tom@tromey.com>
4405
4406 * tui/tui-layout.c (show_source_disasm_command): Use
4407 reset_locator.
4408 (reset_locator): New function.
4409 (init_and_make_win): Remove.
4410 (show_source_or_disasm_and_command): Use reset_locator.
4411
4412 2019-07-17 Tom Tromey <tom@tromey.com>
4413
4414 * tui/tui-winsource.c (tui_set_exec_info_content): Remove
4415 condition.
4416 * tui/tui-wingeneral.c (tui_source_window_base::make_visible):
4417 Remove condition.
4418 * tui/tui-source.c (tui_source_window_base::reset): New method.
4419 * tui/tui-layout.c (make_command_window): Don't call
4420 init_and_make_win.
4421 (make_source_window, make_disasm_window): Don't call
4422 make_source_or_disasm_window.
4423 (make_data_window): Don't call init_and_make_win. Change calling
4424 convention.
4425 (show_source_disasm_command, show_data): Simplify.
4426 (make_source_or_disasm_window): Remove.
4427 (show_source_or_disasm_and_command): Simplify.
4428 * tui/tui-data.h (struct tui_gen_win_info) <reset>: Now virtual.
4429 (struct tui_source_window_base) <reset>: Likewise.
4430 <execution_info>: Remove initializer.
4431 * tui/tui-data.c (tui_source_window_base): Initialize
4432 execution_info.
4433
4434 2019-07-17 Tom Tromey <tom@tromey.com>
4435
4436 * tui/tui-layout.c (tui_set_layout): Remove regs_populate
4437 variable.
4438
4439 2019-07-17 Tom Tromey <tom@tromey.com>
4440
4441 * tui/tui.c (tui_rl_other_window): Update.
4442 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Call
4443 superclass method first. Always iterate over regs_content.
4444 (tui_unhighlight_win, tui_highlight_win): Use refresh_window
4445 method.
4446 * tui/tui-win.c (tui_set_focus_command): Update.
4447
4448 2019-07-17 Tom Tromey <tom@tromey.com>
4449
4450 * tui/tui-win.c (tui_set_focus_command): Rename from
4451 tui_set_focus. Call tui_enable.
4452 (tui_set_focus_command): Remove.
4453
4454 2019-07-17 Tom Tromey <tom@tromey.com>
4455
4456 * tui/tui-winsource.c (tui_show_exec_info_content): Don't call
4457 refresh_window.
4458 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Call
4459 touchwin.
4460 (tui_data_window::refresh_window): Call refresh_window on data
4461 items. Always call superclass refresh_window.
4462 (tui_win_info::refresh): Remove.
4463 (tui_source_window_base::refresh_window): Update.
4464 (tui_refresh_all): Update.
4465 * tui/tui-layout.c (show_source_disasm_command): Remove call to
4466 refresh_window.
4467 (show_source_or_disasm_and_command): Likewise.
4468 * tui/tui-data.h (struct tui_win_info) <refresh>: Remove.
4469 (struct tui_source_window_base) <refresh>: Likewise.
4470
4471 2019-07-17 Tom Tromey <tom@tromey.com>
4472
4473 * tui/tui-winsource.c (tui_clear_source_content)
4474 (tui_show_source_content): Update.
4475 * tui/tui-source.c (tui_source_window::showing_source_p): Check
4476 whether content is empty.
4477 * tui/tui-data.h (struct tui_source_window_base) <content_in_use>:
4478 Remove.
4479
4480 2019-07-17 Tom Tromey <tom@tromey.com>
4481
4482 * tui/tui-winsource.c (tui_erase_source_content): Clear the
4483 window's contents.
4484 * tui/tui-source.h (tui_set_source_content_nil): Don't declare.
4485 * tui/tui-source.c (tui_set_source_content_nil): Remove.
4486
4487 2019-07-17 Tom Tromey <tom@tromey.com>
4488
4489 * tui/tui-data.h (UNDEFINED_ITEM): Remove define.
4490 (struct tui_data_item_window): Update.
4491
4492 2019-07-17 Tom Tromey <tom@tromey.com>
4493
4494 * tui/tui-data.h (MAX_CONTENT_COUNT, TUI_NULL_STR)
4495 (DEFAULT_HISTORY_COUNT, WITH_LOCATOR, NO_LOCATOR): Remove
4496 defines.
4497
4498 2019-07-17 Tom Tromey <tom@tromey.com>
4499
4500 * tui/tui-winsource.h (tui_erase_source_content)
4501 (tui_clear_source_content): Remove "display_prompt" parameter.
4502 * tui/tui-winsource.c (tui_update_source_window_as_is)
4503 (tui_update_source_windows_with_addr): Update.
4504 (tui_clear_source_content): Remove "display_prompt" parameter.
4505 (tui_erase_source_content): Likewise. Simplify.
4506 (tui_show_source_content): Update.
4507 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
4508 * tui/tui-stack.c (tui_show_frame_info): Update.
4509 * tui/tui-data.h (EMPTY_SOURCE_PROMPT, NO_EMPTY_SOURCE_PROMPT):
4510 Remove defines.
4511
4512 2019-07-17 Tom Tromey <tom@tromey.com>
4513
4514 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
4515 * tui/tui-disasm.h (tui_set_disassem_content): Add win_info
4516 parameter.
4517 * tui/tui-disasm.c (tui_set_disassem_content): Add win_info
4518 parameter.
4519
4520 2019-07-17 Tom Tromey <tom@tromey.com>
4521
4522 * tui/tui-winsource.c (tui_clear_source_content)
4523 (tui_show_source_content, tui_show_exec_info_content)
4524 (tui_clear_exec_info_content): Update.
4525 * tui/tui-stack.c (tui_show_locator_content): Update.
4526 (tui_show_frame_info): Update.
4527 * tui/tui-source.h (tui_source_window): Don't declare.
4528 * tui/tui-source.c (tui_source_window::showing_source_p): Rename
4529 from tui_source_is_displayed.
4530 * tui/tui-data.h (struct tui_gen_win_info) <content_in_use>:
4531 Remove field.
4532 (struct tui_source_window_base) <content_in_use>: New field. Now
4533 bool.
4534 (struct tui_source_window) <showing_source_p>: New method.
4535 (TUI_SRC_WIN): Change cast.
4536 * tui/tui-data.c (tui_initialize_static_data): Update.
4537
4538 2019-07-17 Tom Tromey <tom@tromey.com>
4539
4540 * tui/tui-winsource.c (tui_update_breakpoint_info): Use
4541 location_matches_p.
4542 * tui/tui-source.c (tui_source_window::location_matches_p): New
4543 method.
4544 * tui/tui-disasm.c (tui_disasm_window::location_matches_p): New
4545 method.
4546 * tui/tui-data.h (struct tui_source_window_base)
4547 <location_matches_p>: New method.
4548 (struct tui_source_window, struct tui_disasm_window)
4549 <location_matches_p>: Likewise.
4550
4551 2019-07-17 Tom Tromey <tom@tromey.com>
4552
4553 * tui/tui-win.c (tui_set_win_height_command): Rename from
4554 tui_set_win_height.
4555 (tui_set_win_height_command): Remove.
4556
4557 2019-07-17 Tom Tromey <tom@tromey.com>
4558
4559 * tui/tui-source.c (tui_source_window): New constructor. Add
4560 observer.
4561 (~tui_source_window): New destructor.
4562 (tui_source_window::style_changed): New method.
4563 * tui/tui-hooks.c (tui_redisplay_source): Remove.
4564 (tui_attach_detach_observers): Update.
4565 * tui/tui-data.h (struct tui_source_window): Make constructor not
4566 inline. Add destructor.
4567 (struct tui_source_window) <style_changed>: New method.
4568 <m_observable>: New member.
4569
4570 2019-07-17 Tom Tromey <tom@tromey.com>
4571
4572 * tui/tui-data.c (tui_clear_source_windows_detail): Fix typo.
4573 * tui/tui-win.c (tui_resize_all): Fix typo.
4574
4575 2019-07-17 Tom Tromey <tom@tromey.com>
4576
4577 * tui/tui-wingeneral.h (tui_refresh_all): Update.
4578 * tui/tui-wingeneral.c (make_all_visible): Use foreach.
4579 (tui_refresh_all): Remove "list" parameter. Use foreach.
4580 * tui/tui-win.c (window_name_completer): Use foreach.
4581 (tui_refresh_all_win, tui_rehighlight_all, tui_all_windows_info)
4582 (update_tab_width): Likewise.
4583 * tui/tui-layout.c (show_layout): Update.
4584 * tui/tui-data.h (class tui_window_iterator): New.
4585 (struct all_tui_windows): New.
4586 * tui/tui-data.c (tui_partial_win_by_name): Use foreach.
4587
4588 2019-07-17 Tom Tromey <tom@tromey.com>
4589
4590 * tui/tui-regs.c (tui_reg_next, tui_reg_prev): Add "current_group"
4591 parameter. Don't reference globals.
4592 (tui_reg_command): Update.
4593
4594 2019-07-17 Tom Tromey <tom@tromey.com>
4595
4596 * tui/tui-regs.c (tui_show_registers): Simplify.
4597
4598 2019-07-17 Tom Tromey <tom@tromey.com>
4599
4600 * tui/tui-regs.c (tui_show_registers): Update.
4601 (tui_show_register_group): Add win_info parameter.
4602
4603 2019-07-17 Tom Tromey <tom@tromey.com>
4604
4605 * tui/tui-regs.c (tui_data_window::display_reg_element_at_line):
4606 Rename from tui_display_reg_element_at_line.
4607 (tui_data_window::display_registers_from_line): Update.
4608 * tui/tui-data.h (struct tui_data_window)
4609 <display_reg_element_at_line>: New method.
4610
4611 2019-07-17 Tom Tromey <tom@tromey.com>
4612
4613 * tui/tui-regs.h (tui_display_registers_from)
4614 (tui_display_registers_from_line): Don't declare.
4615 * tui/tui-windata.c (tui_data_window::display_all_data)
4616 (tui_data_window::refresh_all)
4617 (tui_data_window::do_scroll_vertical): Update.
4618 * tui/tui-regs.c (tui_data_window::display_registers_from): Rename
4619 from tui_display_registers_from.
4620 (tui_display_reg_element_at_line): Update.
4621 (tui_data_window::display_registers_from_line): Rename from
4622 tui_display_registers_from_line.
4623 * tui/tui-data.h (struct tui_data_window) <display_registers_from,
4624 display_registers_from_line>: New methods.
4625
4626 2019-07-17 Tom Tromey <tom@tromey.com>
4627
4628 * tui/tui-windata.h (tui_erase_data_content): Don't declare.
4629 * tui/tui-windata.c (tui_data_window::erase_data_content): Rename
4630 from tui_erase_data_content.
4631 (tui_data_window::display_all_data)
4632 (tui_data_window::refresh_all)
4633 (tui_data_window::do_scroll_vertical): Update.
4634 * tui/tui-regs.c (tui_show_registers): Update.
4635 * tui/tui-data.h (struct tui_data_window) <erase_data_content>:
4636 New method.
4637
4638 2019-07-17 Tom Tromey <tom@tromey.com>
4639
4640 * tui/tui-windata.h (tui_delete_data_content_windows): Don't
4641 declare.
4642 * tui/tui-windata.c
4643 (tui_data_window::delete_data_content_windows): Rename from
4644 tui_delete_data_content_windows.
4645 (tui_data_window::display_all_data)
4646 (tui_data_window::do_scroll_vertical): Update.
4647 * tui/tui-data.h (struct tui_data_window)
4648 <delete_data_content_windows>: New method.
4649
4650 2019-07-17 Tom Tromey <tom@tromey.com>
4651
4652 * tui/tui-windata.h (tui_refresh_data_win): Don't declare.
4653 * tui/tui-regs.h (tui_first_reg_element_inline): Don't declare.
4654
4655 2019-07-17 Tom Tromey <tom@tromey.com>
4656
4657 * tui/tui-windata.h (tui_display_all_data): Don't declare.
4658 * tui/tui-windata.c (tui_data_window::display_all_data): Rename
4659 from tui_display_all_data.
4660 * tui/tui-win.c
4661 (tui_data_window::do_make_visible_with_new_height): Update.
4662 * tui/tui-regs.c (tui_show_registers): Update.
4663 * tui/tui-layout.c (tui_set_layout): Update.
4664 * tui/tui-data.h (struct tui_data_window) <display_all_data>: New
4665 method.
4666
4667 2019-07-17 Tom Tromey <tom@tromey.com>
4668
4669 * tui/tui-windata.h (tui_display_data_from): Don't declare.
4670 * tui/tui-windata.c (tui_display_data_from): Remove.
4671 (tui_data_window::refresh_all): Update.
4672
4673 2019-07-17 Tom Tromey <tom@tromey.com>
4674
4675 * tui/tui-windata.h (tui_display_data_from_line): Don't declare.
4676 * tui/tui-windata.c (tui_display_data_from_line): Remove.
4677 (tui_display_data_from, tui_data_window::do_scroll_vertical): Call
4678 tui_display_registers_from_line.
4679 * tui/tui-regs.h (tui_display_registers_from_line): Update.
4680 * tui/tui-regs.c (tui_display_registers_from_line): Remove
4681 "force_display" parameter.
4682
4683 2019-07-17 Tom Tromey <tom@tromey.com>
4684
4685 * tui/tui-regs.h (tui_first_reg_element_no_inline): Don't
4686 declare.
4687 * tui/tui-regs.c (tui_data_window::first_reg_element_no_inline):
4688 Rename from tui_first_reg_element_no_inline.
4689 (tui_display_reg_element_at_line)
4690 (tui_display_registers_from_line): Update.
4691 * tui/tui-data.h (struct tui_data_window)
4692 <first_reg_element_no_inline>: New method.
4693
4694 2019-07-17 Tom Tromey <tom@tromey.com>
4695
4696 * tui/tui-windata.c (tui_display_data_from)
4697 (tui_data_window::do_scroll_vertical): Update.
4698 * tui/tui-regs.h (tui_line_from_reg_element_no): Don't declare.
4699 * tui/tui-regs.c (tui_data_window::line_from_reg_element_no):
4700 Rename from tui_line_from_reg_element_no.
4701 (tui_display_registers_from_line): Update.
4702 * tui/tui-data.h (struct tui_data_window)
4703 <line_from_reg_element_no>: New method.
4704
4705 2019-07-17 Tom Tromey <tom@tromey.com>
4706
4707 * tui/tui-regs.h (tui_last_regs_line_no): Don't declare.
4708 * tui/tui-regs.c (tui_data_window::last_regs_line_no): Rename from
4709 tui_last_regs_line_no.
4710 (tui_display_reg_element_at_line)
4711 (tui_display_registers_from_line): Update.
4712 * tui/tui-data.h (struct tui_data_window) <last_regs_line_no>: New
4713 method.
4714
4715 2019-07-17 Tom Tromey <tom@tromey.com>
4716
4717 PR tui/24722:
4718 * tui/tui-winsource.h (tui_update_all_breakpoint_info)
4719 (tui_update_breakpoint_info): Add "being_deleted" parameter.
4720 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
4721 (tui_update_all_breakpoint_info): Add "being_deleted" parameter.
4722 (tui_update_breakpoint_info): Likewise.
4723 * tui/tui-hooks.c (tui_event_create_breakpoint)
4724 (tui_event_delete_breakpoint, tui_event_modify_breakpoint):
4725 Update.
4726
4727 2019-07-17 Tom Tromey <tom@tromey.com>
4728
4729 * tui/tui-stack.c (tui_show_frame_info): Consolidate "if"s.
4730
4731 2019-07-17 Tom Tromey <tom@tromey.com>
4732
4733 * tui/tui-winsource.c (tui_update_source_window_as_is)
4734 (tui_update_source_windows_with_addr): Update.
4735 * tui/tui-source.h (tui_set_source_content)
4736 (tui_show_symtab_source): Add "win_info" parameter.
4737 * tui/tui-source.c (tui_set_source_content): Add "win_info"
4738 parameter.
4739 (tui_show_symtab_source): Likewise.
4740
4741 2019-07-17 Tom Tromey <tom@tromey.com>
4742
4743 * tui/tui-wingeneral.c
4744 (tui_check_and_display_highlight_if_needed): Check can_highlight.
4745
4746 2019-07-17 Tom Tromey <tom@tromey.com>
4747
4748 * tui/tui-data.h (struct tui_win_info) <can_scroll>: New method.
4749 (struct tui_cmd_window) <can_scroll>: New method.
4750 * tui/tui-command.c (tui_dispatch_ctrl_char): Use can_scroll
4751 method.
4752
4753 2019-07-17 Tom Tromey <tromey@adacore.com>
4754
4755 * ui-out.h (class ui_out) <field_signed, field_fmt_signed,
4756 do_field_signed>: Rename. Change type of "value".
4757 * ui-out.c (ui_out::field_signed): Rename from field_int.
4758 Change type of "value".
4759 (ui_out::field_fmt_signed): Rename from field_fmt_int. Change
4760 type of "value".
4761 * tui/tui-out.h (class tui_ui_out) <do_field_signed>: Rename from
4762 do_field_int. Change type of "value".
4763 * tui/tui-out.c (tui_ui_out::do_field_signed): Rename from
4764 do_field_int. Change type of "value".
4765 * tracepoint.c (trace_status_mi, tfind_1)
4766 (print_one_static_tracepoint_marker): Update.
4767 * thread.c (print_thread_info_1, print_selected_thread_frame):
4768 Update.
4769 * stack.c (print_frame, print_frame_info): Update.
4770 * spu-tdep.c (info_spu_signal_command, info_spu_dma_cmdlist):
4771 Update.
4772 * source.c (print_source_lines_base): Update.
4773 * skip.c (info_skip_command): Update.
4774 * record-btrace.c (btrace_ui_out_decode_error)
4775 (btrace_call_history_src_line): Update.
4776 * python/py-framefilter.c (py_print_single_arg, py_print_frame):
4777 Update.
4778 * progspace.c (print_program_space): Update.
4779 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Update.
4780 * mi/mi-out.h (class mi_ui_out) <do_field_signed>: Rename from
4781 do_field_int. Change type of "value".
4782 * mi/mi-out.c (mi_ui_out::do_table_begin)
4783 (mi_ui_out::do_table_header): Update.
4784 (mi_ui_out::do_field_signed): Rename from do_field_int. Change
4785 type of "value".
4786 * mi/mi-main.c (mi_cmd_thread_list_ids, print_one_inferior)
4787 (mi_cmd_data_list_changed_registers, output_register)
4788 (mi_cmd_data_read_memory, mi_load_progress)
4789 (mi_cmd_trace_frame_collected): Update.
4790 * mi/mi-interp.c (mi_on_normal_stop_1, mi_output_solib_attribs):
4791 Update.
4792 * mi/mi-cmd-var.c (print_varobj, mi_cmd_var_create)
4793 (mi_cmd_var_delete, mi_cmd_var_info_num_children)
4794 (mi_cmd_var_list_children, varobj_update_one): Update.
4795 * mi/mi-cmd-stack.c (mi_cmd_stack_info_depth)
4796 (mi_cmd_stack_list_args, list_arg_or_local): Update.
4797 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Update.
4798 * inferior.c (print_inferior): Update.
4799 * gdb_bfd.c (print_one_bfd): Update.
4800 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
4801 Update.
4802 * darwin-nat-info.c (darwin_debug_regions_recurse): Update.
4803 * cli-out.h (class cli_ui_out) <do_field_signed>: Rename from
4804 do_field_int. Change type of "value".
4805 * cli-out.c (cli_ui_out::do_field_signed): Rename from
4806 do_field_int. Change type of "value".
4807 * breakpoint.c (watchpoint_check, print_breakpoint_location)
4808 (print_one_breakpoint_location, print_it_catch_fork)
4809 (print_one_catch_fork, print_it_catch_vfork)
4810 (print_one_catch_vfork, print_it_catch_solib)
4811 (print_it_catch_exec, print_it_ranged_breakpoint)
4812 (print_mention_watchpoint, print_mention_masked_watchpoint)
4813 (bkpt_print_it, update_static_tracepoint): Update.
4814 * break-catch-throw.c (print_it_exception_catchpoint): Update.
4815 * break-catch-syscall.c (print_it_catch_syscall): Update.
4816 * ada-tasks.c (print_ada_task_info): Update.
4817 * ada-lang.c (print_it_exception, print_mention_exception):
4818 Update.
4819
4820 2019-07-17 Andrew Burgess <andrew.burgess@embecosm.com>
4821
4822 PR breakpoints/24541
4823 * gdbarch.c: Regenerate.
4824 * gdbarch.h: Regenerate.
4825 * gdbarch.sh: Adjust return type and parameter types for
4826 'stap_adjust_register'.
4827 (i386_stap_adjust_register): Adjust signature and return new
4828 register name.
4829 * stap-probe.c (stap_parse_register_operand): Adjust use of
4830 'gdbarch_stap_adjust_register'.
4831
4832 2019-07-17 Tom Tromey <tromey@adacore.com>
4833
4834 * s390-linux-nat.c (s390_watch_area): Remove typedef. Don't
4835 declare VEC.
4836 (struct s390_debug_reg_state) <watch_areas, break_areas>: Now
4837 std::vector.
4838 (struct s390_process_info): Add initializers.
4839 (s390_add_process): Use new.
4840 (s390_linux_nat_target::low_forget_process): Use delete.
4841 (s390_linux_nat_target::low_new_fork)
4842 (s390_linux_nat_target::stopped_by_watchpoint)
4843 (s390_linux_nat_target::low_prepare_to_resume)
4844 (s390_linux_nat_target::insert_watchpoint)
4845 (s390_linux_nat_target::insert_hw_breakpoint)
4846 (s390_linux_nat_target::remove_watchpoint)
4847 (s390_linux_nat_target::remove_hw_breakpoint): Update.
4848
4849 2019-07-16 John Baldwin <jhb@FreeBSD.org>
4850
4851 * aarch64-fbsd-nat.c: Include regcache.h.
4852 (getregs_supplies, getfpregs_supplies): Remove unused gdbarch
4853 argument.
4854 (aarch64_fbsd_nat_target::fetch_registers)
4855 (aarch64_fbsd_nat_target::store_registers): Remove gdbarch
4856 variable.
4857 * arm-fbsd-nat.c, riscv-fbsd-nat.c: Likewise.
4858
4859 2019-07-16 John Baldwin <jhb@FreeBSD.org>
4860
4861 * fbsd-nat.c: Include gdbarch.h.
4862
4863 2019-07-15 Tom Tromey <tromey@adacore.com>
4864
4865 * mi/mi-out.c (mi_ui_out::do_field_int): Use plongest.
4866
4867 2019-07-15 Tom Tromey <tromey@adacore.com>
4868
4869 * mi/mi-out.h (class mi_ui_out) <do_field_unsigned>: Declare.
4870 * mi/mi-out.c (mi_ui_out::do_field_unsigned): New method.
4871 * cli-out.h (class cli_ui_out) <do_field_unsigned>: Declare.
4872 * cli-out.c (cli_ui_out::do_field_int): New method.
4873 * ui-out.c (ui_out::field_unsigned): New method.
4874 * symfile.c (generic_load): Use field_unsigned.
4875 (print_transfer_performance): Likewise.
4876 * record-btrace.c (ui_out_field_uint): Remove.
4877 (btrace_call_history_insn_range, btrace_call_history): Use
4878 field_unsigned.
4879 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn): Use
4880 field_unsigned.
4881 * ui-out.h (class ui_out) <field_unsigned>: New method.
4882 <do_field_unsigned>: Likewise.
4883
4884 2019-07-15 Tom Tromey <tromey@adacore.com>
4885
4886 * mi/mi-main.c (list_available_thread_groups): Use field_string.
4887 * mi/mi-interp.c (mi_memory_changed): Use field_string.
4888 * target.c (flash_erase_command): Use field_string.
4889 * infrun.c (print_signal_received_reason): Use field_string.
4890 * i386-tdep.c (i386_mpx_print_bounds): Use field_string.
4891 * breakpoint.c (maybe_print_thread_hit_breakpoint): Use
4892 field_string.
4893 * ada-tasks.c (print_ada_task_info): Use field_string.
4894
4895 2019-07-15 Tom Tromey <tromey@adacore.com>
4896
4897 * target.c (flash_erase_command): Use field_core_addr.
4898 * symfile.c (generic_load): Use field_core_addr.
4899 * sparc64-linux-tdep.c (sparc64_linux_handle_segmentation_fault):
4900 Use field_core_addr.
4901 * i386-linux-tdep.c (i386_linux_handle_segmentation_fault): Use
4902 field_core_addr.
4903
4904 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
4905
4906 * dwarf2loc.c (dwarf2_evaluate_property): Sign extend property
4907 value if its desired type is smaller than a CORE_ADDR and signed.
4908
4909 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
4910
4911 * dwarf2loc.c (dwarf2_evaluate_property): Update to take account
4912 of changes to field names, and use new is_reference field to
4913 decide if a property is a reference or not.
4914 * dwarf2loc.h (struct dwarf2_locexpr_baton): Add 'is_reference'
4915 field.
4916 (struct dwarf2_property_baton): Update header comment, rename
4917 'referenced_type' to 'property_type' and update comments.
4918 * dwarf2read.c (attr_to_dynamic_prop): Add extra parameter to hold
4919 default property type, store in property baton, update to take
4920 accound of renamed field.
4921 (read_func_scope): Update call to attr_to_dynamic_prop.
4922 (read_array_type): Likewise.
4923 (dwarf2_per_cu_addr_sized_int_type): New function.
4924 (read_subrange_index_type): Move type finding code to
4925 dwarf2_per_cu_addr_sized_int_type.
4926 (read_subrange_type): Update calls to attr_to_dynamic_prop.
4927 (dwarf2_per_cu_addr_type): New function.
4928 (set_die_type): Update calls to attr_to_dynamic_prop.
4929
4930 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
4931
4932 * dwarf2read.c (read_subrange_index_type): New function.
4933 (read_subrange_type): Move code into new function and call it.
4934 * gdbtypes.c (create_range_type): Add some asserts.
4935
4936 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
4937
4938 * dwarf2loc.c (dwarf2_evaluate_property): Change return type, and
4939 update return statements.
4940 * dwarf2loc.h (dwarf2_evaluate_property): Update return type on
4941 declaration, and update comment to match.
4942 * gdbtypes.c (resolve_dynamic_array): Update call to
4943 dwarf2_evaluate_property to match new return type.
4944
4945 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
4946
4947 * valarith.c (value_subscripted_rvalue): Change lowerbound
4948 parameter type from int to LONGEST.
4949 * value.h (value_subscripted_rvalue): Likewise in declaration.
4950
4951 2019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
4952
4953 * cli/cli-utils.c (info_print_command_completer): New function.
4954 * cli/cli-utils.h: Add 'completer.h' include, and forward
4955 declaration for 'struct cmd_list_element'.
4956 (info_print_command_completer): Declare.
4957 * stack.c (_initialize_stack): Add completer for 'info locals' and
4958 'info args'.
4959 * symtab.c (_initialize_symtab): Add completer for 'info
4960 variables' and 'info functions'.
4961 * NEWS: Mention completion for additional info commands.
4962
4963 2019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
4964
4965 * cli/cli-utils.c (extract_info_print_args): Delete.
4966 (extract_arg_maybe_quoted): Delete.
4967 (info_print_options_defs): New variable.
4968 (make_info_print_options_def_group): New function.
4969 (extract_info_print_options): Define new function.
4970 * cli/cli-utils.h (extract_info_print_args): Delete.
4971 (struct info_print_options): New structure.
4972 (extract_info_print_options): Declare new function.
4973 * stack.c (info_locals_command): Update to use new
4974 extract_info_print_options, also add a header comment.
4975 (info_args_command): Likewise.
4976 * symtab.c (info_variables_command): Likewise.
4977 (info_functions_command): Likewise.
4978
4979 2019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
4980
4981 * cli/cli-option.c (parse_option): Use extract_string_maybe_quoted
4982 to extract string arguments.
4983 * common/common-utils.c (extract_string_maybe_quoted): New function.
4984 * common/common-utils.h (extract_string_maybe_quoted): Declare.
4985
4986 2019-07-11 Tom Tromey <tromey@adacore.com>
4987
4988 * main.c (get_init_files): Use GDBINIT, not gdbinit.
4989 * auto-load.c (file_is_auto_load_safe): Use GDBINIT, not gdbinit.
4990 * top.h (gdbinit): Don't declare.
4991 * cli/cli-cmds.c (init_cli_cmds): Remove, merging contents
4992 into...
4993 (_initialize_cli_cmds): ...here. Use GDBINIT, not gdbinit.
4994 * top.c (gdb_init): Don't call init_cli_cmds.
4995 (gdbinit): Remove.
4996 * cli/cli-cmds.h (init_cli_cmds): Don't declare.
4997
4998 2019-07-11 Tom Tromey <tromey@adacore.com>
4999
5000 * python/py-inferior.c (add_thread_object): Don't use thread_obj
5001 after it has been moved.
5002
5003 2019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
5004
5005 * valops.c (value_must_coerce_to_target): Change return type to
5006 bool.
5007 * value.h (value_must_coerce_to_target): Likewise.
5008
5009 2019-07-10 Simon Marchi <simon.marchi@efficios.com>
5010
5011 * breakpoint.c (is_hardware_watchpoint): Remove
5012 forward-declaration.
5013 (is_masked_watchpoint): Change return type to bool.
5014 (is_tracepoint): Likewise.
5015 (is_breakpoint): Likewise.
5016 (is_hardware_watchpoint): Likewise.
5017 (is_watchpoint): Likewise.
5018 (is_no_memory_software_watchpoint): Likewise.
5019 (is_catchpoint): Likewise.
5020 (breakpoint_1): Make FILTER parameter's return type bool.
5021 is_masked_watchpoint): Change return type to bool.
5022 (save_breakpoints): Make FILTER parameter's return type bool.
5023 * breakpoint.h (is_breakpoint): Change return type to bool.
5024 (is_watchpoint): Likewise.
5025 (is_catchpoint): Likewise.
5026 (is_tracepoint): Likewise.
5027
5028 2019-07-10 Tom Tromey <tom@tromey.com>
5029
5030 * defs.h: Don't include gdbarch.h.
5031 * aarch64-ravenscar-thread.c, aarch64-tdep.c, alpha-bsd-tdep.h,
5032 alpha-linux-tdep.c, alpha-mdebug-tdep.c, arch-utils.h, arm-tdep.h,
5033 ax-general.c, btrace.c, buildsym-legacy.c, buildsym.h, c-lang.c,
5034 cli/cli-decode.h, cli/cli-dump.c, cli/cli-script.h,
5035 cli/cli-style.h, coff-pe-read.h, compile/compile-c-support.c,
5036 compile/compile-cplus.h, compile/compile-loc2c.c, corefile.c,
5037 cp-valprint.c, cris-linux-tdep.c, ctf.c, d-lang.c, d-namespace.c,
5038 dcache.c, dicos-tdep.c, dictionary.c, disasm-selftests.c,
5039 dummy-frame.c, dummy-frame.h, dwarf2-frame-tailcall.c,
5040 dwarf2expr.c, expression.h, f-lang.c, frame-base.c,
5041 frame-unwind.c, frv-linux-tdep.c, gdbarch-selftests.c, gdbtypes.h,
5042 go-lang.c, hppa-nbsd-tdep.c, hppa-obsd-tdep.c, i386-dicos-tdep.c,
5043 i386-tdep.h, ia64-vms-tdep.c, interps.h, language.c,
5044 linux-record.c, location.h, m2-lang.c, m32r-linux-tdep.c,
5045 mem-break.c, memattr.c, mn10300-linux-tdep.c, nios2-linux-tdep.c,
5046 objfiles.h, opencl-lang.c, or1k-linux-tdep.c, p-lang.c,
5047 parser-defs.h, ppc-tdep.h, probe.h, python/py-record-btrace.c,
5048 record-btrace.c, record.h, regcache-dump.c, regcache.h,
5049 riscv-fbsd-tdep.c, riscv-linux-tdep.c, rust-exp.y,
5050 sh-linux-tdep.c, sh-nbsd-tdep.c, source-cache.c,
5051 sparc-nbsd-tdep.c, sparc-obsd-tdep.c, sparc-ravenscar-thread.c,
5052 sparc64-fbsd-tdep.c, std-regs.c, target-descriptions.h,
5053 target-float.c, tic6x-linux-tdep.c, tilegx-linux-tdep.c, top.c,
5054 tracefile.c, trad-frame.c, type-stack.h, ui-style.c, utils.c,
5055 utils.h, valarith.c, valprint.c, varobj.c, x86-tdep.c,
5056 xml-support.h, xtensa-linux-tdep.c, cli/cli-cmds.h: Update.
5057 * s390-linux-nat.c, procfs.c, inf-ptrace.c: Likewise.
5058
5059 2019-07-10 Tom Tromey <tromey@adacore.com>
5060
5061 * ada-lang.h (is_ada_exception_catchpoint): Declare.
5062 * breakpoint.c (init_ada_exception_breakpoint): Register as
5063 bp_catchpoint.
5064 (print_one_breakpoint_location, print_one_breakpoint): Use
5065 is_ada_exception_catchpoint.
5066 * ada-lang.c (class ada_catchpoint_location): Pass
5067 bp_loc_software_breakpoint to bp_location constructor.
5068 (is_ada_exception_catchpoint): New function.
5069
5070 2019-07-10 Tom Tromey <tromey@adacore.com>
5071
5072 * arm-tdep.c (arm_exidx_entry_s): Remove typedef. Don't define
5073 VEC.
5074 (struct arm_exidx_entry): New method operator<.
5075 (struct arm_exidx_data) <section_maps>: Change type.
5076 (arm_exidx_data_free): Remove.
5077 (arm_exidx_data_key): Change type. Move lower.
5078 (arm_exidx_new_objfile): Update.
5079 (arm_compare_exidx_entries): Remove.
5080 (arm_find_exidx_entry, _initialize_arm_tdep)
5081
5082 2019-07-10 Tom Tromey <tromey@adacore.com>
5083
5084 * solib-spu.c (ocl_program_data_key): Change type.
5085 (append_ocl_sos, ocl_enable_break, _initialize_spu_solib):
5086 Update.
5087
5088 2019-07-10 Tom Tromey <tromey@adacore.com>
5089
5090 * solib-aix.c (lm_info_aix_p): Remove typedef. Don't define VEC.
5091 (struct solib_aix_inferior_data) <library_list>: Change type.
5092 (solib_aix_inferior_data_handle): Change type.
5093 (get_solib_aix_inferior_data): Update.
5094 (solib_aix_free_library_list): Remove.
5095 (library_list_start_library): Update.
5096 (solib_aix_parse_libraries, solib_aix_get_library_list): Change
5097 return type.
5098 (solib_aix_get_library_list)
5099 (solib_aix_solib_create_inferior_hook, solib_aix_current_sos)
5100 (solib_aix_normal_stop_observer, _initialize_solib_aix): Update.
5101
5102 2019-07-10 Tom Tromey <tromey@adacore.com>
5103
5104 * solib-dsbt.c (struct dsbt_info): Add initializers.
5105 (solib_dsbt_pspace_data): Change type.
5106 (dsbt_pspace_data_cleanup): Remove.
5107 (get_dsbt_info, _initialize_dsbt_solib): Update.
5108
5109 2019-07-10 Tom Tromey <tromey@adacore.com>
5110
5111 * spu-tdep.c (spu_overlay_data): Change type.
5112 (spu_get_overlay_table, spu_overlay_new_objfile)
5113 (_initialize_spu_tdep): Update.
5114
5115 2019-07-10 Tom Tromey <tromey@adacore.com>
5116
5117 * gdb-stabs.h (struct dbx_symfile_info): Add initializers and
5118 destructor.
5119 (dbx_objfile_data_key): Change type and declare later.
5120 (DBX_SYMFILE_INFO): Rewrite.
5121 * dbxread.c (dbx_objfile_data_key): Change type.
5122 (dbx_symfile_init): Update.
5123 (~dbx_symfile_info): Rename from dbx_free_symfile_info. Update.
5124 (coffstab_build_psymtabs, elfstab_build_psymtabs)
5125 (stabsect_build_psymtabs, _initialize_dbxread): Update.
5126
5127 2019-07-10 Tom Tromey <tromey@adacore.com>
5128
5129 * jit.c (jit_program_space_key): Change type. Move lower.
5130 (get_jit_program_space_data): Update.
5131 (jit_program_space_data_cleanup): Remove.
5132 (jit_breakpoint_deleted, free_objfile_data, _initialize_jit):
5133 Update.
5134 (struct jit_program_space_data): Add initializers.
5135
5136 2019-07-10 Tom Tromey <tromey@adacore.com>
5137
5138 * solib-darwin.c (struct darwin_info): Add initializers.
5139 (solib_darwin_pspace_data): Change type.
5140 (darwin_pspace_data_cleanup): Remove.
5141 (get_darwin_info, _initialize_darwin_solib): Update.
5142
5143 2019-07-10 Tom Tromey <tromey@adacore.com>
5144
5145 * remote-sim.c (struct sim_inferior_data): Add initializers,
5146 constructor, and destructor.
5147 (sim_inferior_data_key): Change type. Move lower.
5148 (check_for_duplicate_sim_descriptor): Update.
5149 (get_sim_inferior_data): Use new. Update.
5150 (~sim_inferior_data_cleanup): Rename from
5151 sim_inferior_data_cleanup. Simplify.
5152 (gdbsim_close_inferior, simulator_command)
5153 (sim_command_completer, _initialize_remote_sim): Update.
5154 (next_pid, INITIAL_PID): Move earlier.
5155
5156 2019-07-10 Tom Tromey <tromey@adacore.com>
5157
5158 * python/python-internal.h (create_thread_object): Return
5159 gdbpy_ref.
5160 * python/py-infthread.c (create_thread_object): Return gdbpy_ref.
5161 * python/py-inferior.c (struct threadlist_entry): Add
5162 constructor.
5163 <thread_obj>: Now a gdbpy_ref.
5164 (thread_to_thread_object): Update.
5165 (add_thread_object): Use new.
5166 (delete_thread_object): Use delete.
5167 (infpy_threads): Update.
5168 (py_free_inferior): Update. Construct "inf_obj" after acquiring
5169 GIL.
5170
5171 2019-07-10 Tom Tromey <tromey@adacore.com>
5172
5173 * valops.c (value_cast): Specialize error message for Ada.
5174
5175 2019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
5176
5177 * breakpoint.c (breakpoint_1): Update doc and parameter names.
5178
5179 2019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
5180
5181 * breakpoint.h (bpstat_explains_signal, bpstat_causes_stop,
5182 bpstat_should_step): Return bool, adjust comments.
5183 * breakpoint.c (bpstat_explains_signal, bpstat_causes_stop,
5184 bpstat_should_step): Likewise.
5185
5186 2019-07-10 Alan Hayward <alan.hayward@arm.com>
5187
5188 * features/Makefile: Use feature target descriptions for Arm.
5189 * features/arm/arm-core.c: Generate new file.
5190 * features/arm/arm-fpa.c: Likewise.
5191 * features/arm/arm-m-profile-with-fpa.xml: Likewise.
5192 * features/arm/arm-m-profile.c: Likewise.
5193 * features/arm/arm-vfpv2.c: Likewise.
5194 * features/arm/arm-vfpv3.c: Likewise.
5195 * features/arm/xscale-iwmmxt.c: Likewise.
5196 * target-descriptions.c (maint_print_c_tdesc_cmd): Add Arm.
5197
5198 2019-07-10 Alan Hayward <alan.hayward@arm.com>
5199
5200 * arm-linux-nat.c (arm_linux_nat_target::read_description): Check
5201 ptrace earlier.
5202
5203 2019-07-10 Alan Hayward <alan.hayward@arm.com>
5204
5205 * features/aarch64-pauth.c: Regenerate.
5206
5207 2019-07-09 Simon Marchi <simon.marchi@polymtl.ca>
5208
5209 * breakpoint.h (struct bpstat_what) <is_longjmp>: Change type to
5210 bool.
5211 (bpstat_what): Use false instead of 0.
5212
5213 2019-07-09 Pedro Alves <palves@redhat.com>
5214
5215 * break-catch-throw.c (is_exception_catchpoint): New.
5216 * breakpoint.c (print_one_breakpoint_location): New parameter
5217 'raw_loc'. Handle it. Use
5218 is_watchpoint/is_catchpoint/is_exception_catchpoint instead of
5219 looking at the breakpoint's type.
5220 (print_one_breakpoint): If handling "maint info breakpoints", also
5221 print locations of exception catchpoints.
5222 * breakpoint.h (is_exception_catchpoint): Declare.
5223
5224 2019-07-09 Pedro Alves <palves@redhat.com>
5225
5226 * break-catch-throw.c (print_one_exception_catchpoint): Skip the
5227 "addr" field.
5228 (allocate_location_exception_catchpoint): New.
5229 (handle_gnu_v3_exceptions): Don't reset 'type' to bp_breakpoint.
5230 (initialize_throw_catchpoint_ops): Install
5231 allocate_location_exception_catchpoint as allocate_location
5232 method.
5233 * breakpoint.c (bpstat_what) <bp_catch>: Set action to
5234 BPSTAT_WHAT_SINGLE if not stopping and the location's type is not
5235 bp_loc_other.
5236 (breakpoint_address_is_meaningful): Delete.
5237 (bl_address_is_meaningful): New.
5238 (breakpoint_locations_match): Adjust comment.
5239 (bp_location_from_bp_type): New, factored out of...
5240 (bp_location::bp_location(breakpoint *)): ... this.
5241 (bp_location::bp_location(breakpoint *, bp_loc_type)): New,
5242 factored out of...
5243 (bp_location::bp_location(breakpoint *)): ... this. Reimplement.
5244 (bp_loc_is_permanent): Use bl_address_is_meaningful instead of
5245 breakpoint_address_is_meaningful.
5246 (bp_locations_compare): Adjust comment.
5247 (update_global_location_list): Use bl_address_is_meaningful
5248 instead of breakpoint_address_is_meaningful.
5249 * breakpoint.h (bp_location::bp_location(breakpoint *)): New
5250 explicit.
5251 (bp_location::bp_location(breakpoint *, bp_loc_type)): Declare.
5252 * python/py-breakpoint.c (bppy_get_location): No longer check
5253 whether location is null.
5254
5255 2019-07-09 Pedro Alves <palves@redhat.com>
5256
5257 PR c++/15468
5258 * breakpoint.c (print_one_breakpoint_location): Remove
5259 single-location assert.
5260
5261 2019-07-09 Tom Tromey <tom@tromey.com>
5262
5263 * contrib/ari/gdb_ari.sh: Change common to gdbsupport.
5264 * configure: Rebuild.
5265 * configure.ac: Change common to gdbsupport.
5266 * gdbsupport: Rename from common.
5267 * acinclude.m4: Change common to gdbsupport.
5268 * Makefile.in (CONFIG_SRC_SUBDIR, COMMON_SFILES)
5269 (HFILES_NO_SRCDIR, stamp-version, ALLDEPFILES): Change common to
5270 gdbsupport.
5271 * aarch64-tdep.c, ada-lang.c, ada-lang.h, agent.c, alloc.c,
5272 amd64-darwin-tdep.c, amd64-dicos-tdep.c, amd64-fbsd-nat.c,
5273 amd64-fbsd-tdep.c, amd64-linux-nat.c, amd64-linux-tdep.c,
5274 amd64-nbsd-tdep.c, amd64-obsd-tdep.c, amd64-sol2-tdep.c,
5275 amd64-tdep.c, amd64-windows-tdep.c, arch-utils.c,
5276 arch/aarch64-insn.c, arch/aarch64.c, arch/aarch64.h, arch/amd64.c,
5277 arch/amd64.h, arch/arm-get-next-pcs.c, arch/arm-linux.c,
5278 arch/arm.c, arch/i386.c, arch/i386.h, arch/ppc-linux-common.c,
5279 arch/riscv.c, arch/riscv.h, arch/tic6x.c, arm-tdep.c, auto-load.c,
5280 auxv.c, ax-gdb.c, ax-general.c, ax.h, breakpoint.c, breakpoint.h,
5281 btrace.c, btrace.h, build-id.c, build-id.h, c-lang.h, charset.c,
5282 charset.h, cli/cli-cmds.c, cli/cli-cmds.h, cli/cli-decode.c,
5283 cli/cli-dump.c, cli/cli-option.h, cli/cli-script.c,
5284 coff-pe-read.c, command.h, compile/compile-c-support.c,
5285 compile/compile-c.h, compile/compile-cplus-symbols.c,
5286 compile/compile-cplus-types.c, compile/compile-cplus.h,
5287 compile/compile-loc2c.c, compile/compile.c, completer.c,
5288 completer.h, contrib/ari/gdb_ari.sh, corefile.c, corelow.c,
5289 cp-support.c, cp-support.h, cp-valprint.c, csky-tdep.c, ctf.c,
5290 darwin-nat.c, debug.c, defs.h, disasm-selftests.c, disasm.c,
5291 disasm.h, dtrace-probe.c, dwarf-index-cache.c,
5292 dwarf-index-cache.h, dwarf-index-write.c, dwarf2-frame.c,
5293 dwarf2expr.c, dwarf2loc.c, dwarf2read.c, event-loop.c,
5294 event-top.c, exceptions.c, exec.c, extension.h, fbsd-nat.c,
5295 features/aarch64-core.c, features/aarch64-fpu.c,
5296 features/aarch64-pauth.c, features/aarch64-sve.c,
5297 features/i386/32bit-avx.c, features/i386/32bit-avx512.c,
5298 features/i386/32bit-core.c, features/i386/32bit-linux.c,
5299 features/i386/32bit-mpx.c, features/i386/32bit-pkeys.c,
5300 features/i386/32bit-segments.c, features/i386/32bit-sse.c,
5301 features/i386/64bit-avx.c, features/i386/64bit-avx512.c,
5302 features/i386/64bit-core.c, features/i386/64bit-linux.c,
5303 features/i386/64bit-mpx.c, features/i386/64bit-pkeys.c,
5304 features/i386/64bit-segments.c, features/i386/64bit-sse.c,
5305 features/i386/x32-core.c, features/riscv/32bit-cpu.c,
5306 features/riscv/32bit-csr.c, features/riscv/32bit-fpu.c,
5307 features/riscv/64bit-cpu.c, features/riscv/64bit-csr.c,
5308 features/riscv/64bit-fpu.c, features/tic6x-c6xp.c,
5309 features/tic6x-core.c, features/tic6x-gp.c, filename-seen-cache.h,
5310 findcmd.c, findvar.c, fork-child.c, gcore.c, gdb_bfd.c, gdb_bfd.h,
5311 gdb_proc_service.h, gdb_regex.c, gdb_select.h, gdb_usleep.c,
5312 gdbarch-selftests.c, gdbthread.h, gdbtypes.h, gnu-nat.c,
5313 go32-nat.c, guile/guile.c, guile/scm-ports.c,
5314 guile/scm-safe-call.c, guile/scm-type.c, i386-fbsd-nat.c,
5315 i386-fbsd-tdep.c, i386-go32-tdep.c, i386-linux-nat.c,
5316 i386-linux-tdep.c, i386-tdep.c, i387-tdep.c,
5317 ia64-libunwind-tdep.c, ia64-linux-nat.c, inf-child.c,
5318 inf-ptrace.c, infcall.c, infcall.h, infcmd.c, inferior-iter.h,
5319 inferior.c, inferior.h, inflow.c, inflow.h, infrun.c, infrun.h,
5320 inline-frame.c, language.h, linespec.c, linux-fork.c, linux-nat.c,
5321 linux-tdep.c, linux-thread-db.c, location.c, machoread.c,
5322 macrotab.h, main.c, maint.c, maint.h, memattr.c, memrange.h,
5323 mi/mi-cmd-break.h, mi/mi-cmd-env.c, mi/mi-cmd-stack.c,
5324 mi/mi-cmd-var.c, mi/mi-interp.c, mi/mi-main.c, mi/mi-parse.h,
5325 minsyms.c, mips-linux-tdep.c, namespace.h,
5326 nat/aarch64-linux-hw-point.c, nat/aarch64-linux-hw-point.h,
5327 nat/aarch64-linux.c, nat/aarch64-sve-linux-ptrace.c,
5328 nat/amd64-linux-siginfo.c, nat/fork-inferior.c,
5329 nat/linux-btrace.c, nat/linux-btrace.h, nat/linux-namespaces.c,
5330 nat/linux-nat.h, nat/linux-osdata.c, nat/linux-personality.c,
5331 nat/linux-procfs.c, nat/linux-ptrace.c, nat/linux-ptrace.h,
5332 nat/linux-waitpid.c, nat/mips-linux-watch.c,
5333 nat/mips-linux-watch.h, nat/ppc-linux.c, nat/x86-dregs.c,
5334 nat/x86-dregs.h, nat/x86-linux-dregs.c, nat/x86-linux.c,
5335 nto-procfs.c, nto-tdep.c, objfile-flags.h, objfiles.c, objfiles.h,
5336 obsd-nat.c, observable.h, osdata.c, p-valprint.c, parse.c,
5337 parser-defs.h, ppc-linux-nat.c, printcmd.c, probe.c, proc-api.c,
5338 procfs.c, producer.c, progspace.h, psymtab.h,
5339 python/py-framefilter.c, python/py-inferior.c, python/py-ref.h,
5340 python/py-type.c, python/python.c, record-btrace.c, record-full.c,
5341 record.c, record.h, regcache-dump.c, regcache.c, regcache.h,
5342 remote-fileio.c, remote-fileio.h, remote-sim.c, remote.c,
5343 riscv-tdep.c, rs6000-aix-tdep.c, rust-exp.y, s12z-tdep.c,
5344 selftest-arch.c, ser-base.c, ser-event.c, ser-pipe.c, ser-tcp.c,
5345 ser-unix.c, skip.c, solib-aix.c, solib-target.c, solib.c,
5346 source-cache.c, source.c, source.h, sparc-nat.c, spu-linux-nat.c,
5347 stack.c, stap-probe.c, symfile-add-flags.h, symfile.c, symfile.h,
5348 symtab.c, symtab.h, target-descriptions.c, target-descriptions.h,
5349 target-memory.c, target.c, target.h, target/waitstatus.c,
5350 target/waitstatus.h, thread-iter.h, thread.c, tilegx-tdep.c,
5351 top.c, top.h, tracefile-tfile.c, tracefile.c, tracepoint.c,
5352 tracepoint.h, tui/tui-io.c, ui-file.c, ui-out.h,
5353 unittests/array-view-selftests.c,
5354 unittests/child-path-selftests.c, unittests/cli-utils-selftests.c,
5355 unittests/common-utils-selftests.c,
5356 unittests/copy_bitwise-selftests.c, unittests/environ-selftests.c,
5357 unittests/format_pieces-selftests.c,
5358 unittests/function-view-selftests.c,
5359 unittests/lookup_name_info-selftests.c,
5360 unittests/memory-map-selftests.c, unittests/memrange-selftests.c,
5361 unittests/mkdir-recursive-selftests.c,
5362 unittests/observable-selftests.c,
5363 unittests/offset-type-selftests.c, unittests/optional-selftests.c,
5364 unittests/parse-connection-spec-selftests.c,
5365 unittests/ptid-selftests.c, unittests/rsp-low-selftests.c,
5366 unittests/scoped_fd-selftests.c,
5367 unittests/scoped_mmap-selftests.c,
5368 unittests/scoped_restore-selftests.c,
5369 unittests/string_view-selftests.c, unittests/style-selftests.c,
5370 unittests/tracepoint-selftests.c, unittests/unpack-selftests.c,
5371 unittests/utils-selftests.c, unittests/xml-utils-selftests.c,
5372 utils.c, utils.h, valarith.c, valops.c, valprint.c, value.c,
5373 value.h, varobj.c, varobj.h, windows-nat.c, x86-linux-nat.c,
5374 xml-support.c, xml-support.h, xml-tdesc.h, xstormy16-tdep.c,
5375 xtensa-linux-nat.c, dwarf2read.h: Change common to gdbsupport.
5376
5377 2019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
5378
5379 * linespec.c (decode_digits_list_mode): Set explicit_line to a
5380 bool value.
5381 (decode_digits_ordinary): Set explicit_line field in sal.
5382 * symtab.c (skip_prologue_sal): Don't skip prologue for a
5383 symtab_and_line that was set on an explicit line number in
5384 assembler code. Do always update the recorded symtab and line if
5385 we do skip the prologue.
5386
5387 2019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
5388
5389 * breakpoint.c (set_breakpoint_location_function): Remove
5390 explicit_loc parameter.
5391 (momentary_breakpoint_from_master): Update call to
5392 set_breakpoint_location_function.
5393 (add_location_to_breakpoint): Likewise.
5394
5395 2019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
5396
5397 * riscv-tdep.c (riscv_features_from_gdbarch_info): Don't modify
5398 required features based on default bfd type when no specific bfd
5399 is present.
5400
5401 2019-07-08 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5402
5403 * NEWS: Mention that GDB printf and eval commands can now print
5404 C-style and Ada-style convenience var strings without
5405 calling the inferior.
5406 * printcmd.c (printf_c_string): Locally print GDB internal var
5407 instead of transiting via the inferior.
5408 (printf_wide_c_string): Likewise.
5409
5410 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5411
5412 PR breakpoints/25011
5413 * symfile.c (symbol_file_command): Call solib_create_inferior_hook.
5414
5415 2019-07-04 Tom Tromey <tom@tromey.com>
5416
5417 PR tui/24724:
5418 * tui/tui-winsource.c (tui_clear_source_content): Update.
5419 (tui_source_window_base::set_is_exec_point_at): Fix comment.
5420 (tui_update_breakpoint_info): Update.
5421 (tui_set_exec_info_content): Update.
5422 * tui/tui-source.c (tui_set_source_content_nil): Update.
5423 * tui/tui-disasm.c (tui_set_disassem_content): Don't set
5424 has_break.
5425 * tui/tui-data.h (enum tui_bp_flag): New.
5426 (tui_bp_flags): New enum flags type.
5427 (struct tui_source_element) <break_mode>: Change type. Rename
5428 from has_break.
5429 (TUI_BP_ENABLED, TUI_BP_DISABLED, TUI_BP_HIT)
5430 (TUI_BP_CONDITIONAL, TUI_BP_HARDWARE): Don't define. Now enum
5431 constants.
5432 * tui/tui-winsource.h: Fix comment.
5433
5434 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5435
5436 * aarch32-linux-nat.h (VFP_REGS_SIZE): Remove define.
5437 * aarch64-linux-nat.c (fetch_fpregs_from_thread)
5438 (store_fpregs_to_thread)
5439 (aarch64_linux_nat_target::read_description): Use ARM_VFP3_REGS_SIZE.
5440 * arch/arm.h (IWMMXT_VEC_REGISTER_SIZE, ARM_CORE_REGS_SIZE)
5441 (ARM_FP_REGS_SIZE, ARM_VFP2_REGS_SIZE, ARM_VFP3_REGS_SIZE)
5442 (IWMMXT_REGS_SIZE): Add define.
5443 * arm-linux-nat.c (IWMMXT_REGS_SIZE): Remove define.
5444 (fetch_vfp_regs, store_vfp_regs)
5445 (arm_linux_nat_target::read_description): Use ARM_VFP3_REGS_SIZE.
5446 * arm-tdep.c (arm_register_g_packet_guesses): Use new defines.
5447
5448 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5449
5450 * arch/arm-get-next-pcs.c (thumb_get_next_pcs_raw): Use ARM_
5451 defines.
5452 * arch/arm-linux.c (arm_linux_sigreturn_next_pc_offset): Likewise.
5453 * arch/arm.h (INT_REGISTER_SIZE) Rename from...
5454 (ARM_INT_REGISTER_SIZE): ...to this.
5455 (ARM_FP_REGISTER_SIZE) (ARM_VFP_REGISTER_SIZE): Add define.
5456 * arm-linux-tdep.c (ARM_LINUX_JB_ELEMENT_SIZE)
5457 (ARM_LINUX_SIZEOF_GREGSET, arm_linux_supply_gregset)
5458 (arm_linux_collect_gregset, supply_nwfpe_register)
5459 (collect_nwfpe_register, arm_linux_collect_nwfpe): Use ARM_
5460 defines.
5461 * arm-linux-tdep.h (ARM_LINUX_SIZEOF_NWFPE, NWFPE_FPSR_OFFSET)
5462 (NWFPE_FPCR_OFFSET, NWFPE_TAGS_OFFSET): Likewise
5463 * arm-nbsd-tdep.c (ARM_NBSD_JB_ELEMENT_SIZE): Likewise.
5464 * arm-tdep.c (arm_push_dummy_call, arm_extract_return_value)
5465 (arm_return_in_memory, arm_store_return_value)
5466 (arm_get_longjmp_target, arm_register_g_packet_guesses)
5467 (arm_record_ld_st_multiple): Likewise.
5468 * arm-tdep.h (FP_REGISTER_SIZE, VFP_REGISTER_SIZE): Remove.
5469 * arm-wince-tdep.c (ARM_WINCE_JB_ELEMENT_SIZE): Use ARM_ defines.
5470
5471 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5472
5473 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Use
5474 AARCH64_DISPLACED_MODIFIED_INSNS.
5475 * aarch64-tdep.c (struct aarch64_displaced_step_data)
5476 (aarch64_displaced_step_copy_insn): Likewise.
5477 * aarch64-tdep.h (DISPLACED_MODIFIED_INSNS): Rename from..
5478 (AARCH64_DISPLACED_MODIFIED_INSNS): ...to this.
5479 * arm-linux-tdep.c (arm_linux_cleanup_svc): Use
5480 ARM_DISPLACED_MODIFIED_INSNS.
5481 * arm-tdep.c (arm_gdbarch_init): Likewise.
5482 * arm-tdep.h (DISPLACED_MODIFIED_INSNS): Rename from..
5483 (ARM_DISPLACED_MODIFIED_INSNS): ...to this.
5484 (struct arm_displaced_step_closure): Use
5485 ARM_DISPLACED_MODIFIED_INSNS.
5486
5487 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5488
5489 * features/Makefile: Remove unused xml files.
5490 * features/aarch64.xml: Remove.
5491 * features/i386/amd64-avx-avx512-linux.xml: Remove.
5492 * features/i386/amd64-avx-avx512.xml: Remove.
5493 * features/i386/amd64-avx-linux.xml: Remove.
5494 * features/i386/amd64-avx-mpx-avx512-pku-linux.xml: Remove.
5495 * features/i386/amd64-avx-mpx-avx512-pku.xml: Remove.
5496 * features/i386/amd64-avx-mpx-linux.xml: Remove.
5497 * features/i386/amd64-avx-mpx.xml: Remove.
5498 * features/i386/amd64-avx.xml: Remove.
5499 * features/i386/amd64-linux.xml: Remove.
5500 * features/i386/amd64-mpx-linux.xml: Remove.
5501 * features/i386/amd64-mpx.xml: Remove.
5502 * features/i386/amd64.xml: Remove.
5503 * features/i386/i386-avx-avx512-linux.xml: Remove.
5504 * features/i386/i386-avx-avx512.xml: Remove.
5505 * features/i386/i386-avx-linux.xml: Remove.
5506 * features/i386/i386-avx-mpx-avx512-pku-linux.xml: Remove.
5507 * features/i386/i386-avx-mpx-avx512-pku.xml: Remove.
5508 * features/i386/i386-avx-mpx-linux.xml: Remove.
5509 * features/i386/i386-avx-mpx.xml: Remove.
5510 * features/i386/i386-avx.xml: Remove.
5511 * features/i386/i386-linux.xml: Remove.
5512 * features/i386/i386-mmx-linux.xml: Remove.
5513 * features/i386/i386-mmx.xml: Remove.
5514 * features/i386/i386-mpx-linux.xml: Remove.
5515 * features/i386/i386-mpx.xml: Remove.
5516 * features/i386/i386.xml: Remove.
5517 * features/i386/x32-avx-avx512-linux.xml: Remove.
5518 * features/i386/x32-avx-linux.xml: Remove.
5519 * features/i386/x32-linux.xml: Remove.
5520
5521 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5522
5523 * regformats/aarch64.dat: Remove.
5524 * regformats/i386/amd64-avx-avx512-linux.dat: Remove.
5525 * regformats/i386/amd64-avx-linux.dat: Remove.
5526 * regformats/i386/amd64-avx-mpx-avx512-pku-linux.dat: Remove.
5527 * regformats/i386/amd64-avx-mpx-linux.dat: Remove.
5528 * regformats/i386/amd64-linux.dat: Remove.
5529 * regformats/i386/amd64-mpx-linux.dat: Remove.
5530 * regformats/i386/amd64.dat: Remove.
5531 * regformats/i386/i386-avx-avx512-linux.dat: Remove.
5532 * regformats/i386/i386-avx-linux.dat: Remove.
5533 * regformats/i386/i386-avx-mpx-avx512-pku-linux.dat: Remove.
5534 * regformats/i386/i386-avx-mpx-linux.dat: Remove.
5535 * regformats/i386/i386-linux.dat: Remove.
5536 * regformats/i386/i386-mmx-linux.dat: Remove.
5537 * regformats/i386/i386-mpx-linux.dat: Remove.
5538 * regformats/i386/i386.dat: Remove.
5539 * regformats/i386/x32-avx-avx512-linux.dat: Remove.
5540 * regformats/i386/x32-avx-linux.dat: Remove.
5541 * regformats/i386/x32-linux.dat: Remove.
5542
5543 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5544
5545 * aarch64-tdep.c: Remove xml self tests.
5546 * amd64-linux-tdep.c: Likewise.
5547 * amd64-tdep.c: Likewise.
5548 * i386-linux-tdep.c: Likewise.
5549 * i386-tdep.c: Likewise.
5550
5551 2019-07-03 Pedro Alves <palves@redhat.com>
5552
5553 PR cli/24732
5554 * cli/cli-cmds.c (struct pipe_cmd_opts): New.
5555 (pipe_cmd_option_defs): New.
5556 (make_pipe_cmd_options_def_group): New.
5557 (pipe_command): Use gdb::option::process_options.
5558 (pipe_command_completer): New function.
5559 (_initialize_cli_cmds): Install completer for "pipe" command.
5560
5561 2019-07-03 Pedro Alves <palves@redhat.com>
5562
5563 * cli/cli-option.c (union option_value) <string>: New field.
5564 (struct option_def_and_value): Add ctor, move ctor, dtor and
5565 use DISABLE_COPY_AND_ASSIGN.
5566 (option_def_and_value::clear_value): New.
5567 (parse_option, save_option_value_in_ctx, get_val_type_str)
5568 (add_setshow_cmds_for_options): Handle var_string.
5569 * cli-option.h (union option_def::var_address) <string>: New
5570 field.
5571 (struct string_option_def): New.
5572 * maint-test-options.c (struct test_options_opts): Add default
5573 ctor and use DISABLE_COPY_AND_ASSIGN.
5574 <string_opt>: New field.
5575 (test_options_opts::~test_options_opts): New.
5576 (test_options_opts::dump): Also dump "-string".
5577 (test_options_option_defs): Install "string.
5578
5579 2019-07-03 Pedro Alves <palves@redhat.com>
5580
5581 * cli/cli-option.c (parse_option) <var_enum>: Don't return an
5582 option_value with a null enumeration.
5583 (complete_options): Save the option values in the context.
5584 (save_option_value_in_ctx): New, factored out from ...
5585 (process_options): ... here.
5586 * cli/cli-utils.c (get_ulongest): Don't advance PP until the end
5587 of the function.
5588 * maint-test-options.c (test_options_opts::dump): New, factored
5589 out from ...
5590 (maintenance_test_options_command_mode): ... here.
5591 (maintenance_test_options_command_completion_result): Delete.
5592 (maintenance_test_options_command_completion_text): Update
5593 comment.
5594 (maintenance_show_test_options_completion_result): Change
5595 prototype. Just print
5596 maintenance_test_options_command_completion_text.
5597 (save_completion_result): New.
5598 (maintenance_test_options_completer_mode): Pass options context to
5599 complete_options, and then save a dump.
5600 (_initialize_maint_test_options): Use add_cmd to install "maint
5601 show test-options-completion-result".
5602
5603 2019-07-03 Pedro Alves <palves@redhat.com>
5604
5605 * NEWS (New commands): Mention "with" and "maint with".
5606 * cli/cli-cmds.c (with_command_1, with_command_completer_1)
5607 (with_command, with_command_completer): New.
5608 (pipe_command): Adjust to new repeat_previous
5609 interface.
5610 (_initialize_cli_cmds): Install the "with" command and its "w"
5611 alias.
5612 * cli/cli-cmds.h (with_command_1, with_command_completer_1): New
5613 declarations.
5614 * cli/cli-setshow.c (parse_cli_var_uinteger)
5615 (parse_cli_var_zuinteger_unlimited, do_set_command): Handle empty
5616 argument strings for all var_types.
5617 (get_setshow_command_value_string): New, factored out from ...
5618 (do_show_command): ... this.
5619 * cli/cli-setshow.h: Include <string>.
5620 (get_setshow_command_value_string): Declare.
5621 * command.h (repeat_previous): Now returns const char *. Adjust
5622 comment.
5623 * maint.c: Include "cli/cli-cmds.h".
5624 (maintenance_with_cmd, maintenance_with_cmd_completer): New.
5625 (_initialize_maint_cmds): Register the "maintenance with" command.
5626 * top.c (repeat_previous): Move bits from pipe_command here:
5627 Return the saved command line, if any; error out if there's no
5628 command to relaunch.
5629
5630 2019-07-03 Pedro Alves <palves@redhat.com>
5631
5632 * NEWS (New commands): Mention "maint set/show test-settings"
5633 instead of "maint test-settings".
5634 * maint-test-settings.c (maintenance_test_settings_list): Delete.
5635 (maintenance_test_settings_set_list): Rename to ...
5636 (maintenance_set_test_settings_list): ... this.
5637 (maintenance_test_settings_show_list): Rename to ...
5638 (maintenance_show_test_settings_list): ... this.
5639 (maintenance_test_settings_cmd): Delete.
5640 (maintenance_test_settings_set_cmd): ...
5641 (maintenance_set_test_settings_cmd): ... this.
5642 (maintenance_test_settings_show_cmd): ...
5643 (maintenance_show_test_settings_cmd): ... this.
5644 (maintenance_test_settings_show_value_cmd):
5645 (maintenance_show_test_settings_value_cmd): ... this.
5646 (_initialize_maint_test_settings): No longer install the "maint
5647 test-settings" prefix command. Rename "maint test-settings set"
5648 to "maint set test-settings", and "maint test-settings show" to
5649 "maint show test-settings". Adjust all subcommands.
5650
5651 2019-07-03 Pedro Alves <palves@redhat.com>
5652
5653 * maint-test-settings.c: Fix file's intro comment. Replace all
5654 references to "test-options" with references to "test-settings",
5655 in comments.
5656
5657 2019-07-03 Pedro Alves <palves@redhat.com>
5658
5659 * maint-test-settings.c (maintenance_test_settings_xxx)
5660 (maintenance_test_settings_yyy, maintenance_test_settings_zzz):
5661 New.
5662 (maintenance_test_settings_enums): Use them.
5663 (maintenance_test_settings_enum): Default to
5664 maintenance_test_settings_xxx.
5665 (_initialize_maint_test_settings): Initialize
5666 MAINTENANCE_TEST_SETTINGS_FILENAME.
5667
5668 2019-07-02 Simon Marchi <simon.marchi@polymtl.ca>
5669
5670 * breakpoint.h (remove_breakpoints_inf): Change return type to
5671 void, move function documentation here.
5672 * breakpoint.c (remove_breakpoints_inf): Change return type to
5673 void, move function documentation to header.
5674
5675 2019-07-02 Pedro Alves <palves@redhat.com>
5676
5677 * NEWS (Completion improvements): Mention "info threads".
5678 * thread.c (struct info_threads_opts, info_threads_option_defs)
5679 (make_info_threads_options_def_group): New.
5680 (info_threads_command): Use gdb::option::process_options.
5681 (info_threads_command_completer): New.
5682 (_initialize_thread): Use gdb::option::build_help to build the
5683 help text for "info threads".
5684
5685 2019-07-02 Simon Marchi <simon.marchi@polymtl.ca>
5686
5687 * defs.h (generic_load): Move from here...
5688 * symfile.h (generic_load): ... to here. Rename name parameter
5689 to args.
5690 * symfile.c (generic_load): Add comment.
5691
5692 2019-07-01 Tom Tromey <tromey@adacore.com>
5693
5694 * dwarf2read.c
5695 (dw2_debug_names_iterator::find_vec_in_debug_names): Hoist
5696 declaration of without_params. Fix formatting.
5697
5698 2019-07-01 Tom Tromey <tromey@adacore.com>
5699
5700 * ada-exp.y (find_primitive_type): Update.
5701 * ada-lang.h (ada_lookup_symbol): Update.
5702 * ada-lang.c (ada_lookup_symbol): Remove "is_a_field_of_this"
5703 parameter.
5704 (ada_lookup_encoded_symbol, ada_lookup_symbol_nonlocal): Update.
5705
5706 2019-06-28 Sergio Durigan Junior <sergiodj@redhat.com>
5707
5708 PR breakpoints/24541
5709 * gdbarch.c: Regenerate.
5710 * gdbarch.h: Regenerate.
5711 * gdbarch.sh: Add 'stap_adjust_register'.
5712 * i386-tdep.c: Include '<unordered_set>'.
5713 (i386_stap_adjust_register): New function.
5714 (i386_elf_init_abi): Register 'i386_stap_adjust_register'.
5715 * stap-probe.c (stap_parse_register_operand): Call
5716 'gdbarch_stap_adjust_register'.
5717
5718 2019-06-28 Sergio Durigan Junior <sergiodj@redhat.com>
5719
5720 PR python/24742
5721 https://bugzilla.redhat.com/show_bug.cgi?id=1723564
5722 * python/python.c (do_start_initialization): Use 'xmalloc'
5723 instead of 'PyMem_Malloc'.
5724
5725 2019-06-28 Tom Tromey <tromey@adacore.com>
5726
5727 * dwarf2read.c (partial_die_info::read): Prefer the linkage name
5728 for Ada.
5729
5730 2019-06-27 Tom Tromey <tromey@adacore.com>
5731
5732 * arm-tdep.c (arm_objfile_data_key): Move lower. Change type to
5733 objfile_key.
5734 (arm_find_mapping_symbol, arm_record_special_symbol)
5735 (_initialize_arm_tdep): Update.
5736 (arm_objfile_data_free): Remove.
5737
5738 2019-06-27 Tom Tromey <tromey@adacore.com>
5739
5740 * cp-valprint.c (cp_print_value_fields): Pass opts, not options,
5741 to cp_print_static_field.
5742
5743 2019-06-26 Tom Tromey <tromey@adacore.com>
5744
5745 * minsyms.c (lookup_minimal_symbol_solib_trampoline): Remove.
5746 * minsyms.h (lookup_minimal_symbol_solib_trampoline): Don't
5747 declare.
5748
5749 2019-06-26 Alan Hayward <alan.hayward@arm.com>
5750
5751 * features/aarch64-core.c (create_feature_aarch64_core):
5752 Regenerate.
5753 * features/aarch64-core.xml: Add cpsr flags.
5754
5755 2019-06-26 Alan Hayward <alan.hayward@arm.com>
5756
5757 * arm-tdep.c (arm_gnu_triplet_regexp): New function.
5758 (arm_gdbarch_init): Add arm_gnu_triplet_regexp.
5759
5760 2019-06-25 Simon Marchi <simon.marchi@polymtl.ca>
5761
5762 * arm-tdep.c (struct arm_per_objfile) <section_maps_sorted>: New
5763 field.
5764 (arm_find_mapping_symbol): Sort mapping symbol vectors on first
5765 use.
5766 (arm_record_special_symbol): Don't insert new symbol in sorted
5767 position, push it at the end.
5768
5769 2019-06-25 Simon Marchi <simon.marchi@polymtl.ca>
5770
5771 * arm-tdep.c (struct arm_mapping_symbol) (operator <): New.
5772 (arm_mapping_symbol_s): Remove.
5773 (DEF_VEC_O(arm_mapping_symbol_s)): Remove.
5774 (arm_mapping_symbol_vec): New typedef.
5775 (struct arm_per_objfile): Add constructor.
5776 <section_maps>: Change type to
5777 std::unique_ptr<arm_mapping_symbol_vec[]>.
5778 (arm_compare_mapping_symbols): Remove.
5779 (arm_find_mapping_symbol): Adjust to section_maps type change.
5780 (arm_objfile_data_free): Call delete on arm_per_objfile.
5781 (arm_record_special_symbol): Adjust to section_maps type change.
5782 Allocate arm_per_objfile with new.
5783
5784 2019-06-25 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5785
5786 * cli/cli-cmds.c (alias_command): Compare the alias prefix
5787 with the command prefix.
5788
5789 2019-06-25 Tom Tromey <tom@tromey.com>
5790
5791 * tui/tui-wingeneral.c (tui_delete_win): Remove "return".
5792 * tui/tui-data.c (~tui_gen_win_info): Remove "if".
5793
5794 2019-06-25 Tom Tromey <tom@tromey.com>
5795
5796 * tui/tui-layout.c (init_and_make_win): Assert on unrecognized
5797 type.
5798 * tui/tui-data.h (struct tui_gen_win_info): Make constructor
5799 protected.
5800
5801 2019-06-25 Tom Tromey <tom@tromey.com>
5802
5803 * tui/tui-winsource.c
5804 (tui_source_window_base::set_is_exec_point_at): Add check against
5805 LOA_ADDRESS.
5806
5807 2019-06-25 Tom Tromey <tom@tromey.com>
5808
5809 * tui/tui-source.c (tui_set_source_content): Don't check before
5810 xfree.
5811 * tui/tui-disasm.c (tui_disassemble): Don't check before xfree.
5812
5813 2019-06-25 Tom Tromey <tom@tromey.com>
5814
5815 * tui/tui-winsource.h (tui_update_source_window_as_is)
5816 (tui_alloc_source_buffer, tui_line_is_displayed)
5817 (tui_addr_is_displayed): Change type of win_info.
5818 * tui/tui-winsource.c (tui_update_source_window_as_is)
5819 (tui_clear_source_content, tui_show_source_line)
5820 (tui_show_source_content, tui_source_window_base::refill)
5821 (tui_source_window_base::set_is_exec_point_at)
5822 (tui_source_window_base::set_is_exec_point_at)
5823 (tui_update_breakpoint_info, tui_set_exec_info_content): Update.
5824 (tui_alloc_source_buffer, tui_line_is_displayed)
5825 (tui_addr_is_displayed): Change type of win_info. Update.
5826 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
5827 (tui_source_window_base::do_make_visible_with_new_height):
5828 Update.
5829 * tui/tui-source.c (tui_set_source_content)
5830 (tui_set_source_content_nil)
5831 (tui_source_window::do_scroll_vertical): Update.
5832 * tui/tui-layout.c (show_layout): Update.
5833 * tui/tui-disasm.c (tui_set_disassem_content)
5834 (tui_disasm_window::do_scroll_vertical): Update.
5835 * tui/tui-data.h (tui_win_content): Remove.
5836 (struct tui_gen_win_info) <content, content_size>: Remove.
5837 (struct tui_source_element): Add initializers and destructor.
5838 (union tui_which_element, struct tui_win_element): Remove.
5839 (struct tui_source_window_base) <content>: New field.
5840 (struct tui_data_window): Remove destructor.
5841 (tui_alloc_content, tui_free_win_content)
5842 (tui_free_all_source_wins_content): Don't declare.
5843 * tui/tui-data.c (tui_initialize_static_data): Update.
5844 (init_content_element, tui_alloc_content): Remove.
5845 (~tui_gen_win_info): Update.
5846 (~tui_data_window, tui_free_all_source_wins_content)
5847 (tui_free_win_content, free_content, free_content_elements):
5848 Remove.
5849
5850 2019-06-25 Tom Tromey <tom@tromey.com>
5851
5852 * tui/tui-winsource.h (tui_clear_source_content)
5853 (tui_erase_source_content, tui_show_source_content): Change type
5854 of win_info.
5855 * tui/tui-winsource.c (tui_clear_source_content)
5856 (tui_erase_source_content, tui_show_source_content): Change type
5857 of win_info.
5858 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
5859 * tui/tui-source.h (tui_set_source_content_nil): Change type of
5860 win_info.
5861 * tui/tui-source.c (tui_set_source_content_nil): Change type of
5862 win_info.
5863 * tui/tui-layout.c (show_source_or_disasm_and_command): Update.
5864
5865 2019-06-25 Tom Tromey <tom@tromey.com>
5866
5867 * tui/tui-winsource.c (tui_clear_source_content)
5868 (tui_source_window_base::set_is_exec_point_at): Update.
5869 * tui/tui-source.c (tui_set_source_content_nil): Update.
5870 * tui/tui-data.h (struct tui_source_element) <is_exec_point>: Now
5871 a bool.
5872 * tui/tui-data.c (init_content_element): Update.
5873
5874 2019-06-25 Tom Tromey <tom@tromey.com>
5875
5876 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Update.
5877 * tui/tui-win.c (make_invisible_and_set_new_height): Update.
5878 * tui/tui-layout.c (init_and_make_win): Update.
5879 * tui/tui.h (enum tui_win_type): Update.
5880 * tui/tui-data.h (tui_win_is_auxiliary): Rename from
5881 tui_win_is_auxillary.
5882 * tui/tui-data.c (tui_win_is_auxiliary): Rename from
5883 tui_win_is_auxillary.
5884
5885 2019-06-25 Tom Tromey <tom@tromey.com>
5886
5887 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Update.
5888 * tui/tui-windata.c (tui_data_window::first_data_item_displayed)
5889 (tui_delete_data_content_windows, tui_display_all_data)
5890 (tui_data_window::do_scroll_vertical, tui_display_data_from):
5891 Update.
5892 * tui/tui-win.c (tui_data_window::set_new_height): Simplify.
5893 * tui/tui-regs.c (tui_last_regs_line_no)
5894 (tui_line_from_reg_element_no, tui_first_reg_element_no_inline)
5895 (tui_show_registers): Update.
5896 (tui_show_register_group): Return void. Update.
5897 (tui_display_registers_from, tui_display_reg_element_at_line)
5898 (tui_display_registers_from_line, tui_check_register_values):
5899 Update.
5900 * tui/tui-data.h (union tui_which_element) <data_window>: Remove
5901 member.
5902 (struct tui_data_window) <regs_content>: Now a std::vector.
5903 <regs_content_count>: Remove.
5904 (tui_add_content_elements, tui_free_data_content): Don't declare.
5905 * tui/tui-data.c (tui_data_window::clear_detail): Update.
5906 (init_content_element): Remove DATA_WIN case. Add assert.
5907 (tui_add_content_elements): Remove.
5908 (tui_data_window): Update.
5909 (tui_free_data_content): Remove.
5910 (free_content_elements): Remove DATA_WIN case.
5911
5912 2019-06-25 Tom Tromey <tom@tromey.com>
5913
5914 * tui/tui-data.c (tui_data_item_window): Update.
5915 * tui/tui-windata.h (tui_check_data_values): Don't declare.
5916 * tui/tui-windata.c (tui_display_all_data)
5917 (tui_display_data_from_line): Update.
5918 (tui_check_data_values): Remove.
5919 * tui/tui-regs.c (tui_show_register_group)
5920 (tui_display_reg_element_at_line): Update.
5921 * tui/tui-hooks.c (tui_register_changed)
5922 (tui_refresh_frame_and_register_information): Call
5923 tui_check_register_values.
5924 * tui/tui-data.h (struct tui_data_window) <data_content,
5925 data_content_count, data_type>: Remove.
5926 (enum tui_data_type): Remove.
5927
5928 * tui/tui-data.c (tui_data_window::clear_detail)
5929 (~tui_data_window): Update.
5930
5931 2019-06-25 Tom Tromey <tom@tromey.com>
5932
5933 * tui/tui-windata.h (tui_first_data_item_displayed): Don't
5934 declare.
5935 * tui/tui-windata.c (tui_data_window::first_data_item_displayed):
5936 Rename from tui_first_data_item_displayed. Update.
5937 (tui_data_window::refresh_all)
5938 (tui_data_window::do_scroll_vertical): Update.
5939 * tui/tui-data.h (struct tui_data_window)
5940 <first_data_item_displayed>: Declare new method.
5941
5942 2019-06-25 Tom Tromey <tom@tromey.com>
5943
5944 * tui/tui-data.h (tui_init_generic_part): Don't declare.
5945 * tui/tui-data.c (tui_init_generic_part): Remove, moving
5946 contents...
5947 (tui_initialize_static_data): ...here.
5948
5949 2019-06-25 Tom Tromey <tom@tromey.com>
5950
5951 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
5952 (tui_display_registers_from, tui_check_register_values): Update.
5953 (tui_display_register): Remove win_info parameter; update.
5954 (tui_get_register): Change type of parameters.
5955 * tui/tui-data.h (struct tui_data_element): Remove.
5956 (union tui_which_element) <data>: Remove.
5957 <data_window>: Change type.
5958 (struct tui_data_item_window): New.
5959 * tui/tui-data.c (init_content_element): Remove DATA_ITEM_WIN
5960 case. Add assert.
5961 (~tui_data_item_window): New destructor.
5962 (free_content_elements): Remove DATA_ITEM_WIN case.
5963
5964 2019-06-25 Tom Tromey <tom@tromey.com>
5965
5966 * tui/tui.h (enum tui_win_type) <MAX_WINDOWS, UNDEFINED_WIN>:
5967 Remove.
5968
5969 2019-06-25 Tom Tromey <tom@tromey.com>
5970
5971 * tui/tui-data.h (struct tui_command_element): Remove.
5972 (union tui_which_element) <command>: Remove.
5973 * tui/tui-data.c (init_content_element): Remove CMD_WIN case. Add
5974 assert.
5975 (free_content_elements): Remove CMD_WIN case.
5976
5977 2019-06-25 Tom Tromey <tom@tromey.com>
5978
5979 * tui/tui-layout.c (tui_set_layout): Update.
5980 * tui/tui-data.h (struct tui_layout_def) <split>: Remove.
5981 * tui/tui-data.c (layout_def): Update.
5982
5983 2019-06-25 Tom Tromey <tom@tromey.com>
5984
5985 * tui/tui-wingeneral.c (tui_refresh_all): Update.
5986 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
5987 (tui_source_window_base::set_new_height): Update.
5988 * tui/tui-stack.c (tui_make_status_line): Change parameter type.
5989 Update.
5990 (tui_set_locator_fullname, tui_set_locator_info)
5991 (tui_show_frame_info): Update.
5992 * tui/tui-source.c (tui_set_source_content)
5993 (tui_source_is_displayed): Update.
5994 * tui/tui-layout.c (show_source_disasm_command, show_data)
5995 (show_source_or_disasm_and_command): Update.
5996 * tui/tui-disasm.c (tui_set_disassem_content)
5997 (tui_get_begin_asm_address): Update.
5998 * tui/tui-data.h (struct tui_locator_element): Remove.
5999 (union tui_which_element) <locator>: Remove.
6000 (struct tui_locator_window): New.
6001 (tui_locator_win_info_ptr): Change return type.
6002 * tui/tui-data.c (_locator): Change type.
6003 (tui_locator_win_info_ptr): Change return type.
6004 (init_content_element): Remove LOCATOR_WIN case. Add assert.
6005 (tui_alloc_content): Add assert.
6006
6007 2019-06-25 Tom Tromey <tom@tromey.com>
6008
6009 * tui/tui-winsource.c
6010 (tui_exec_info_window::maybe_allocate_content): New method.
6011 (tui_set_exec_info_content, tui_show_exec_info_content): Update.
6012 * tui/tui-layout.c (init_and_make_win): Add EXEC_INFO_WIN case.
6013 (make_source_or_disasm_window): Add cast.
6014 * tui/tui-data.h (union tui_which_element) <simple_string>:
6015 Remove.
6016 (struct tui_source_info): New.
6017 (struct tui_source_window_base) <execution_info>: Change type.
6018 * tui/tui-data.c (init_content_element): Remove EXEC_INFO_WIN
6019 case, and add assert.
6020 (tui_alloc_content): Add assert.
6021
6022 2019-06-25 Tom Tromey <tom@tromey.com>
6023
6024 * tui/tui-data.h (tui_alloc_win_info): Don't declare.
6025 * tui/tui-layout.c (init_and_make_win): Use "new" directly.
6026 * tui/tui-data.c (tui_alloc_win_info): Remove.
6027
6028 2019-06-25 Tom Tromey <tom@tromey.com>
6029
6030 * tui/tui-win.c (tui_set_win_focus_to): Don't check window type.
6031 * tui/tui-wingeneral.c (tui_unhighlight_win): Check
6032 can_highlight.
6033
6034 2019-06-25 Tom Tromey <tom@tromey.com>
6035
6036 * tui/tui-win.c (tui_source_window_base::update_tab_width): Call
6037 make_visible_with_new_height method.
6038 (tui_win_info::make_visible_with_new_height): New method.
6039 (tui_source_window_base::do_make_visible_with_new_height)
6040 (tui_data_window::do_make_visible_with_new_height)
6041 (tui_cmd_window::do_make_visible_with_new_height): New methods.
6042 (make_visible_with_new_height): Remove.
6043 (tui_resize_all, tui_adjust_win_heights): Use
6044 make_visible_with_new_height method.
6045 * tui/tui-data.h (struct tui_win_info)
6046 <do_make_visible_with_new_height, make_visible_with_new_height>:
6047 New methods.
6048 (struct tui_source_window_base, struct tui_data_window)
6049 (struct tui_cmd_window) <do_make_visible_with_new_height>: New
6050 methods.
6051
6052 2019-06-25 Tom Tromey <tom@tromey.com>
6053
6054 * tui/tui-win.c (tui_source_window_base::update_tab_width): New
6055 method.
6056 (update_tab_width): Call update_tab_width method.
6057 * tui/tui-data.h (struct tui_win_info)
6058 (struct tui_source_window_base) <update_tab_width>: New methods.
6059
6060 2019-06-25 Tom Tromey <tom@tromey.com>
6061
6062 * tui/tui-wingeneral.h (tui_make_window): Change type of "box_it"
6063 parameter.
6064 * tui/tui-wingeneral.c (tui_make_window): Change type of "box_it"
6065 parameter.
6066 (tui_gen_win_info::make_visible): Update.
6067 * tui/tui-layout.c (init_and_make_win): Change type of "box_it"
6068 parameter.
6069 * tui/tui-data.h (enum tui_box): New enum.
6070 (BOX_WINDOW, DONT_BOX_WINDOW): Remove defines.
6071
6072 2019-06-25 Tom Tromey <tom@tromey.com>
6073
6074 * tui/tui-layout.c (make_source_or_disasm_window): Always use
6075 init_and_make_win for EXEC_INFO_WIN.
6076 * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>: No
6077 longer inline.
6078 (struct tui_win_info) <~tui_win_info>: Inline.
6079 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
6080 Don't declare.
6081 * tui/tui-data.c (source_win, disasm_win): Remove globals.
6082 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
6083 Remove.
6084 (tui_initialize_static_data): Update.
6085 (~tui_gen_win_info): Handle more cleanup here.
6086 (~tui_source_window_base): Delete "execution_info".
6087 (~tui_win_info): Move code to ~tui_gen_win_info; remove.
6088
6089 2019-06-25 Tom Tromey <tom@tromey.com>
6090
6091 * tui/tui-layout.c (make_command_window): Don't set
6092 can_highlight.
6093 (show_source_disasm_command): Call the reset method.
6094 (show_data): Don't set can_highlight. Call the reset method.
6095 (tui_gen_win_info::reset): Rename from init_gen_win_info
6096 (init_and_make_win): Simplify. Return tui_gen_win_info.
6097 (show_source_or_disasm_and_command): Call the reset method.
6098 * tui/tui-data.h (struct tui_gen_win_info) <reset>: New method.
6099 (struct tui_cmd_window): Set can_highlight.
6100
6101 2019-06-25 Tom Tromey <tom@tromey.com>
6102
6103 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Rename
6104 from make_visible.
6105 (tui_make_visible, tui_make_invisible): Rewrite.
6106 (tui_win_info::make_visible): Remove.
6107 (tui_source_window_base::make_visible): Update.
6108 * tui/tui-data.h (struct tui_gen_win_info) <make_visible>: New
6109 method. Moved from...
6110 (struct tui_win_info) <make_visible>: ...here.
6111
6112 2019-06-25 Tom Tromey <tom@tromey.com>
6113
6114 * tui/tui-winsource.c
6115 (tui_source_window_base::do_scroll_horizontal): Remove direction
6116 parameter.
6117 * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Remove
6118 direction parameter.
6119 * tui/tui-win.c (tui_win_info::forward_scroll)
6120 (tui_win_info::backward_scroll, tui_win_info::left_scroll)
6121 (tui_win_info::right_scroll): Update.
6122 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Remove
6123 direction parameter.
6124 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Remove
6125 direction parameter.
6126 * tui/tui-data.h (enum tui_scroll_direction): Remove.
6127 (struct tui_win_info) <do_scroll_vertical, do_scroll_horizontal>:
6128 Remove direction parameter.
6129 (struct tui_source_window_base, struct tui_source_window)
6130 (struct tui_disasm_window, struct tui_data_window)
6131 (struct tui_cmd_window): Update.
6132
6133 2019-06-25 Tom Tromey <tom@tromey.com>
6134
6135 * tui/tui-winsource.h (tui_set_exec_info_content)
6136 (tui_show_exec_info_content, tui_erase_exec_info_content)
6137 (tui_clear_exec_info_content, tui_update_exec_info): Change
6138 argument to tui_source_window_base.
6139 * tui/tui-winsource.c (tui_set_exec_info_content)
6140 (tui_show_exec_info_content, tui_erase_exec_info_content)
6141 (tui_clear_exec_info_content, tui_update_exec_info): Change
6142 argument to tui_source_window_base.
6143
6144 2019-06-25 Tom Tromey <tom@tromey.com>
6145
6146 * tui/tui-winsource.h (tui_set_exec_info_content): Return void.
6147 * tui/tui-winsource.c (tui_set_exec_info_content): Return void.
6148
6149 2019-06-25 Tom Tromey <tom@tromey.com>
6150
6151 * tui/tui-winsource.c (tui_set_exec_info_content): Remove NULL
6152 check.
6153
6154 2019-06-25 Tom Tromey <tom@tromey.com>
6155
6156 * tui/tui-winsource.h (tui_alloc_source_buffer): Change return
6157 type to void.
6158 * tui/tui-winsource.c (tui_alloc_source_buffer): Change return
6159 type to void.
6160 * tui/tui-source.c (tui_set_source_content): Update.
6161 * tui/tui-disasm.c (tui_set_disassem_content): Update.
6162
6163 2019-06-25 Tom Tromey <tom@tromey.com>
6164
6165 * tui/tui-win.c (window_name_completer, tui_set_focus)
6166 (tui_all_windows_info): Use name method.
6167 * tui/tui-data.h (struct tui_gen_win_info)
6168 (struct tui_source_window, struct tui_disasm_window)
6169 (struct tui_data_window, struct tui_cmd_window) <name>: New
6170 method.
6171 (tui_win_name): Don't declare.
6172 * tui/tui-data.c (tui_partial_win_by_name): Use name method.
6173 (tui_win_name): Remove.
6174
6175 2019-06-25 Tom Tromey <tom@tromey.com>
6176
6177 * tui/tui-winsource.h (tui_update_source_window)
6178 (tui_update_source_window_as_is): Change parameter type.
6179 * tui/tui-winsource.c (tui_update_source_window): Change win_info
6180 to be a tui_source_window_base.
6181 (tui_update_source_window_as_is): Likewise.
6182 * tui/tui-win.c (make_visible_with_new_height): Update.
6183
6184 2019-06-25 Tom Tromey <tom@tromey.com>
6185
6186 * tui/tui-winsource.c (tui_erase_source_content)
6187 (tui_show_source_content, tui_show_exec_info_content)
6188 (tui_erase_exec_info_content): Use refresh_window method.
6189 * tui/tui-wingeneral.h (tui_refresh_win): Don't declare.
6190 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Rename
6191 from tui_refresh_win.
6192 (tui_data_window::refresh_window): New method.
6193 (tui_win_info::refresh, tui_source_window_base::refresh)
6194 (tui_refresh_all): Use refresh_window method.
6195 * tui/tui-stack.c (tui_show_locator_content): Call refresh_window
6196 method.
6197 * tui/tui-regs.c (tui_display_register): Call refresh_window
6198 method.
6199 * tui/tui-layout.c (show_source_disasm_command)
6200 (show_source_or_disasm_and_command): Call refresh_window method.
6201 * tui/tui-data.h (struct tui_gen_win_info)
6202 (struct tui_data_window, struct tui_cmd_window) <refresh_window>:
6203 New method.
6204
6205 2019-06-25 Tom Tromey <tom@tromey.com>
6206
6207 * tui/tui.c (tui_rl_other_window, tui_enable)
6208 (tui_is_window_visible, tui_get_command_dimension): Update.
6209 * tui/tui-winsource.c (tui_update_source_window_as_is)
6210 (tui_clear_source_content, tui_erase_source_content)
6211 (tui_show_source_line, tui_source_window_base::refill)
6212 (tui_source_window_base::do_scroll_horizontal)
6213 (tui_source_window_base::set_is_exec_point_at)
6214 (tui_update_breakpoint_info, tui_set_exec_info_content)
6215 (tui_alloc_source_buffer, tui_line_is_displayed)
6216 (tui_addr_is_displayed): Update.
6217 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win)
6218 (tui_check_and_display_highlight_if_needed)
6219 (tui_win_info::make_visible, tui_win_info::refresh)
6220 (tui_refresh_all): Update.
6221 * tui/tui-windata.c (tui_first_data_item_displayed)
6222 (tui_delete_data_content_windows, tui_erase_data_content)
6223 (tui_display_all_data, tui_data_window::refresh_all)
6224 (tui_check_data_values): Update.
6225 * tui/tui-win.c (window_name_completer, tui_update_gdb_sizes)
6226 (tui_set_win_focus_to, tui_win_info::forward_scroll)
6227 (tui_win_info::backward_scroll, tui_refresh_all_win)
6228 (tui_resize_all, tui_set_focus, tui_all_windows_info)
6229 (update_tab_width, tui_set_win_height, tui_adjust_win_heights)
6230 (tui_source_window_base::set_new_height)
6231 (tui_data_window::set_new_height)
6232 (make_invisible_and_set_new_height)
6233 (make_visible_with_new_height, new_height_ok)
6234 (parse_scrolling_args): Update.
6235 * tui/tui-stack.c (tui_show_frame_info): Update.
6236 * tui/tui-source.c (tui_set_source_content)
6237 (tui_set_source_content_nil, tui_source_is_displayed)
6238 (tui_source_window::do_scroll_vertical): Update.
6239 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
6240 (tui_display_registers_from, tui_display_reg_element_at_line)
6241 (tui_check_register_values, tui_reg_command): Update.
6242 * tui/tui-layout.c (tui_default_win_height)
6243 (show_source_disasm_command, show_data, init_and_make_win)
6244 (show_source_or_disasm_and_command): Update.
6245 * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts)
6246 (tui_redisplay_readline, tui_mld_flush)
6247 (tui_mld_erase_entire_line, tui_mld_getc, tui_cont_sig)
6248 (tui_getc): Update.
6249 * tui/tui-disasm.c (tui_set_disassem_content)
6250 (tui_disasm_window::do_scroll_vertical): Update.
6251 * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>:
6252 Now virtual.
6253 (struct tui_win_info): Derive from tui_gen_win_info.
6254 <~tui_win_info>: Mark as override.
6255 <generic>: Remove member.
6256 * tui/tui-data.c (tui_cmd_window::clear_detail, tui_next_win)
6257 (tui_prev_win, tui_partial_win_by_name, tui_win_info)
6258 (~tui_data_window, ~tui_win_info)
6259 (tui_free_all_source_wins_content): Update.
6260 * tui/tui-command.c (tui_refresh_cmd_win): Update.
6261
6262 2019-06-25 Tom Tromey <tom@tromey.com>
6263
6264 * tui/tui-layout.c (init_and_make_win): Use new.
6265 * tui/tui-data.h (struct tui_gen_win_info): Add constructor,
6266 destructor, initializers.
6267 (tui_alloc_generic_win_info): Don't declare.
6268 * tui/tui-data.c (_locator): Add argument to constructor.
6269 (source_win, disasm_win): New globals.
6270 (exec_info): Remove.
6271 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
6272 Update.
6273 (tui_alloc_generic_win_info): Remove.
6274 (init_content_element): Use new.
6275 (tui_win_info::tui_win_info): Update.
6276 (free_content_elements) <case DATA_WIN>: Use delete.
6277
6278 2019-06-25 Tom Tromey <tom@tromey.com>
6279
6280 * tui/tui-wingeneral.c (tui_refresh_win): Update.
6281 * tui/tui-windata.c (tui_first_data_item_displayed)
6282 (tui_delete_data_content_windows): Update.
6283 * tui/tui-win.c (tui_data_window::set_new_height): Update.
6284 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
6285 (tui_display_registers_from, tui_check_register_values): Update.
6286 * tui/tui-data.h (union tui_which_element) <data_window>: Now a
6287 pointer.
6288 * tui/tui-data.c (init_content_element): Update. Allocate the new
6289 window.
6290 (tui_free_data_content): Update.
6291 (free_content_elements) <case DATA_WIN>: Free the window.
6292
6293 2019-06-25 Tom Tromey <tom@tromey.com>
6294
6295 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win):
6296 Update.
6297 * tui/tui-layout.c (make_command_window)
6298 (show_source_disasm_command, show_data, init_and_make_win)
6299 (show_source_or_disasm_and_command): Update.
6300 * tui/tui-data.h (struct tui_win_info) <set_highlight>: New
6301 method.
6302 <can_highight, is_highlighted>: Now bool.
6303 (tui_set_win_highlight): Don't declare.
6304 * tui/tui-data.c (tui_set_win_highlight): Remove.
6305
6306 2019-06-25 Tom Tromey <tom@tromey.com>
6307
6308 * tui/tui-wingeneral.c (make_visible): Remove check of window
6309 type.
6310
6311 2019-06-25 Tom Tromey <tom@tromey.com>
6312
6313 * tui/tui-win.c (tui_win_info::max_height)
6314 (tui_cmd_window::max_height): New methods.
6315 (new_height_ok): Call max_height.
6316 * tui/tui-data.h (struct tui_win_info, struct tui_cmd_window)
6317 <max_height>: New method.
6318
6319 2019-06-25 Tom Tromey <tom@tromey.com>
6320
6321 * tui/tui-win.c (tui_source_window_base::set_new_height)
6322 (tui_data_window::set_new_height): New methods.
6323 (make_invisible_and_set_new_height): Call set_new_height method.
6324 * tui/tui-data.h (struct tui_win_info)
6325 (struct tui_source_window_base, struct tui_data_window)
6326 <set_new_height>: New method.
6327
6328 2019-06-25 Tom Tromey <tom@tromey.com>
6329
6330 * tui/tui.c (tui_rl_other_window): Call the refresh_all method.
6331 * tui/tui-windata.c (tui_data_window::refresh_all): Rename from
6332 tui_refresh_data_win.
6333 * tui/tui-win.c (tui_source_window_base::refresh_all): New
6334 method.
6335 (tui_refresh_all_win): Call the refresh_all method.
6336 (tui_set_focus): Likewise.
6337 * tui/tui-data.h (struct tui_win_info) <refresh_all>: New method.
6338 (struct tui_source_window_base, struct tui_data_window) <refresh>:
6339 Likewise.
6340
6341 2019-06-25 Tom Tromey <tom@tromey.com>
6342
6343 * tui/tui-winsource.h (tui_refill_source_window)
6344 (tui_set_is_exec_point_at): Don't declare.
6345 * tui/tui-winsource.c (tui_update_source_windows_with_addr)
6346 (tui_source_window_base::refill): Rename from
6347 tui_refill_source_window.
6348 (tui_source_window_base::do_scroll_horizontal): Update.
6349 (tui_source_window_base::set_is_exec_point_at): Rename from
6350 tui_set_is_exec_point_at.
6351 (tui_update_all_breakpoint_info): Update.
6352 * tui/tui-stack.c (tui_show_frame_info): Update.
6353 * tui/tui-layout.c (show_data): Add cast.
6354 * tui/tui-hooks.c (tui_redisplay_source): Call refill method.
6355 * tui/tui-data.h (struct tui_source_window_base) <refill,
6356 set_is_exec_point_at>: New methods.
6357 (tui_source_windows, tui_add_to_source_windows): Update types.
6358 (tui_add_to_source_windows): Remove redundant declaration.
6359 * tui/tui-data.c (source_windows): Store tui_source_window_base.
6360 (tui_source_windows): Change return type.
6361 (tui_clear_source_windows_detail): Update.
6362 (tui_add_to_source_windows): Change type of parameter.
6363 (tui_free_all_source_wins_content): Update.
6364
6365 2019-06-25 Tom Tromey <tom@tromey.com>
6366
6367 * tui/tui-wingeneral.c (tui_win_info::refresh)
6368 (tui_source_window_base::refresh): New methods.
6369 (tui_refresh_all): Call the refresh method.
6370 * tui/tui-data.h (struct tui_win_info)
6371 (struct tui_source_window_base) <refresh>: New method.
6372
6373 2019-06-25 Tom Tromey <tom@tromey.com>
6374
6375 * tui/tui.h (tui_is_window_visible): Return bool.
6376 * tui/tui.c (tui_is_window_visible): Return bool.
6377 * tui/tui-wingeneral.c (tui_make_window, make_visible)
6378 (tui_make_visible, tui_make_invisible)
6379 (tui_win_info::make_visible)
6380 (tui_source_window_base::make_visible, make_all_visible)
6381 (tui_make_all_visible, tui_make_all_invisible): Update.
6382 * tui/tui-windata.c (tui_delete_data_content_windows): Update.
6383 * tui/tui-data.h (struct tui_gen_win_info) <is_visible>: Now
6384 bool.
6385 (struct tui_win_info, struct tui_source_window_base)
6386 (struct tui_cmd_window) <make_visible>: Change parameter to bool.
6387 * tui/tui-data.c (tui_init_generic_part): Update.
6388
6389 2019-06-25 Tom Tromey <tom@tromey.com>
6390
6391 * tui/tui-wingeneral.c (tui_win_info::make_visible)
6392 (tui_source_window_base::make_visible): New methods.
6393 (make_all_visible): Make method call.
6394 * tui/tui-data.h (struct tui_win_info) <make_visible>: New method.
6395 (struct tui_source_window_base, struct tui_cmd_window): Override
6396 make_visible.
6397 (tui_win_is_source_type): Don't declare.
6398 * tui/tui-data.c (tui_win_is_source_type): Remove.
6399
6400 2019-06-25 Tom Tromey <tom@tromey.com>
6401
6402 * tui/tui-layout.c (show_source_or_disasm_and_command): Remove
6403 NULL check.
6404
6405 2019-06-25 Tom Tromey <tom@tromey.com>
6406
6407 * tui/tui-data.h (struct tui_data_window, struct tui_cmd_window):
6408 Inline constructor. Add initializers for members.
6409 * tui/tui-data.c (tui_data_window, tui_cmd_window): Remove
6410 constructors; now inline in class.
6411
6412 2019-06-25 Tom Tromey <tom@tromey.com>
6413
6414 * tui/tui-regs.c (tui_show_registers): Update.
6415 * tui/tui-data.h (struct tui_data_window) <display_regs>: Now
6416 bool.
6417 * tui/tui-data.c (tui_data_window::clear_detail)
6418 (tui_data_window): Update.
6419
6420 2019-06-25 Tom Tromey <tom@tromey.com>
6421
6422 * tui/tui-windata.c (tui_display_all_data)
6423 (tui_display_data_from_line, tui_display_data_from)
6424 (tui_check_data_values, tui_data_window::do_scroll_vertical):
6425 Update.
6426 * tui/tui-regs.c (tui_last_regs_line_no)
6427 (tui_line_from_reg_element_no, tui_first_reg_element_no_inline)
6428 (tui_show_registers, tui_show_register_group)
6429 (tui_display_registers_from, tui_display_reg_element_at_line)
6430 (tui_display_registers_from_line, tui_check_register_values)
6431 (tui_reg_next, tui_reg_prev): Update.
6432 * tui/tui-layout.c (tui_set_layout, show_data): Update.
6433 * tui/tui-data.h (struct tui_data_info): Remove. Move contents to
6434 tui_data_window.
6435 (struct tui_win_info) <detail>: Remove. Add new fields from
6436 tui_data_info.
6437 (TUI_DATA_WIN): Add cast.
6438 * tui/tui-data.c (tui_data_window::clear_detail, tui_data_window)
6439 (~tui_data_window): Simplify.
6440
6441 2019-06-25 Tom Tromey <tom@tromey.com>
6442
6443 * tui/tui-layout.c (show_source_disasm_command)
6444 (show_source_or_disasm_and_command): Update.
6445 * tui/tui-io.c (update_cmdwin_start_line)
6446 (tui_redisplay_readline): Update.
6447 * tui/tui-data.h (struct tui_command_info): Remove.
6448 (struct tui_win_info) <detail>: Remove command_info member.
6449 (struct tui_data_window) <start_line>: New member, from
6450 tui_command_info.
6451 (TUI_CMD_WIN): Add casts.
6452
6453 2019-06-25 Tom Tromey <tom@tromey.com>
6454
6455 * tui/tui-winsource.c (tui_update_source_window)
6456 (tui_refill_source_window)
6457 (tui_source_window_base::do_scroll_horizontal)
6458 (tui_update_breakpoint_info, tui_set_exec_info_content)
6459 (tui_show_exec_info_content, tui_erase_exec_info_content)
6460 (tui_clear_exec_info_content): Update.
6461 * tui/tui-wingeneral.c (make_all_visible, tui_refresh_all):
6462 Update.
6463 * tui/tui-win.c (make_invisible_and_set_new_height)
6464 (make_visible_with_new_height): Update.
6465 * tui/tui-source.c (tui_set_source_content)
6466 (tui_show_symtab_source): Update.
6467 * tui/tui-layout.c (extract_display_start_addr)
6468 (show_source_disasm_command, show_data)
6469 (make_source_or_disasm_window)
6470 (show_source_or_disasm_and_command): Update.
6471 * tui/tui-disasm.c (tui_set_disassem_content): Simplify.
6472 (tui_disasm_window::do_scroll_vertical): Remove shadowing
6473 "gdbarch".
6474 * tui/tui-data.h (struct tui_source_info): Remove. Move contents
6475 to tui_source_window_base.
6476 (struct tui_win_info) <detail>: Remove source_info member.
6477 (struct tui_source_window_base) <has_locator>: Inline.
6478 Move contents from tui_source_info; rename has_locator member to
6479 m_has_locator.
6480 (TUI_SRC_WIN, TUI_DISASM_WIN): Add casts.
6481 * tui/tui-data.c (tui_source_window_base::has_locator): Move to
6482 header file.
6483 (tui_source_window_base::clear_detail, ~tui_source_window_base):
6484 Simplify.
6485 (tui_free_all_source_wins_content): Cast to
6486 tui_source_window_base.
6487
6488 2019-06-25 Tom Tromey <tom@tromey.com>
6489
6490 * tui/tui-win.c (make_invisible_and_set_new_height)
6491 (make_visible_with_new_height): Call has_locator method.
6492 * tui/tui-layout.c (show_source_disasm_command, show_data)
6493 (show_source_or_disasm_and_command): Update for bool change.
6494 * tui/tui-data.h (struct tui_source_info) <has_locator>: Now bool.
6495 (tui_win_info) <has_locator>: New method.
6496 (struct tui_source_window_base) <has_locator>: New method.
6497 (tui_win_has_locator): Don't declare.
6498 * tui/tui-data.c (tui_source_window_base::has_locator): Rename
6499 from tui_win_has_locator.
6500 (tui_source_window_base): Use false, not FALSE.
6501
6502 2019-06-25 Tom Tromey <tom@tromey.com>
6503
6504 * tui/tui-data.h (tui_clear_win_detail): Don't declare.
6505 * tui/tui-data.c (tui_clear_source_windows_detail): Call the
6506 clear_detail method directly.
6507 (tui_clear_win_detail): Remove.
6508
6509 2019-06-25 Tom Tromey <tom@tromey.com>
6510
6511 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Use
6512 "this", not TUI_DISASM_WIN.
6513
6514 2019-06-25 Tom Tromey <tom@tromey.com>
6515
6516 * tui/tui-winsource.h (tui_horizontal_source_scroll): Don't
6517 declare.
6518 * tui/tui-winsource.c
6519 (tui_source_window_base::do_scroll_horizontal): Rename from
6520 tui_horizontal_source_scroll.
6521 * tui/tui-windata.h (tui_vertical_data_scroll): Don't declare.
6522 * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Rename
6523 from tui_vertical_data_scroll.
6524 * tui/tui-win.h (tui_scroll): Don't declare.
6525 * tui/tui-win.c (tui_win_info::forward_scroll)
6526 (tui_win_info::backward_scroll, tui_win_info::left_scroll)
6527 (tui_win_info::right_scroll): Rename and update.
6528 (tui_scroll_forward_command, tui_scroll_backward_command)
6529 (tui_scroll_left_command, tui_scroll_right_command): Update.
6530 (tui_scroll): Remove.
6531 * tui/tui-source.h: Don't declare tui_vertical_source_scroll.
6532 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Rename
6533 from tui_vertical_source_scroll.
6534 * tui/tui-disasm.h (tui_vertical_disassem_scroll): Don't declare.
6535 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Rename
6536 from tui_vertical_disassem_scroll.
6537 * tui/tui-data.h (struct tui_win_info) <do_scroll_vertical,
6538 do_scroll_horizontal>: New methods.
6539 <forward_scroll, backward_scroll, left_scroll, right_scroll>:
6540 Likewise.
6541 (struct tui_source_window_base): Add do_scroll_horizontal.
6542 (struct tui_source_window, struct tui_disasm_window): Add
6543 do_scroll_vertical.
6544 (struct tui_data_window, struct tui_cmd_window): Add
6545 do_scroll_horizontal and do_scroll_vertical.
6546 * tui/tui-command.c (tui_dispatch_ctrl_char): Use method calls.
6547
6548 2019-06-25 Tom Tromey <tom@tromey.com>
6549
6550 * tui/tui-data.h (struct tui_source_window_base): New struct.
6551 (struct tui_source_window): Derive from tui_source_window_base.
6552 (struct tui_disasm_window): New struct.
6553 * tui/tui-data.c (tui_source_window_base::clear_detail): Rename
6554 from tui_source_window::clear_detail.
6555 (tui_source_window_base): Rename from tui_source_window.
6556 (~tui_source_window_base): Rename from ~tui_source_window.
6557 (tui_alloc_win_info): Create a tui_disasm_window.
6558
6559 2019-06-25 Tom Tromey <tom@tromey.com>
6560
6561 * tui/tui-data.h (struct tui_source_window)
6562 (struct tui_data_window): Declare destructors.
6563 * tui/tui-data.c (~tui_source_window, ~tui_data_window): New
6564 destructors.
6565 (tui_win_info): Simplify.
6566
6567 2019-06-25 Tom Tromey <tom@tromey.com>
6568
6569 * tui/tui-winsource.c (tui_display_main)
6570 (tui_update_source_windows_with_addr)
6571 (tui_update_all_breakpoint_info): Update.
6572 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
6573 (new_height_ok, parse_scrolling_args): Update.
6574 * tui/tui-stack.c (tui_show_frame_info): Update.
6575 * tui/tui-data.h (struct tui_list): Remove.
6576 (tui_source_windows): Return a reference to a std::vector.
6577 * tui/tui-data.c (source_windows): Now a std::vector.
6578 (tui_source_windows): Change return type.
6579 (tui_clear_source_windows): Rewrite.
6580 (tui_clear_source_windows_detail, tui_add_to_source_windows)
6581 (tui_free_all_source_wins_content): Rewrite.
6582
6583 2019-06-25 Tom Tromey <tom@tromey.com>
6584
6585 * tui/tui-data.h (struct tui_win_info, struct tui_source_window)
6586 (struct tui_data_window, struct tui_cmd_window): Declare
6587 clear_detail method.
6588 * tui/tui-data.c (tui_source_window::clear_detail)
6589 (tui_cmd_window::clear_detail, tui_data_window::clear_detail): New
6590 methods.
6591 (tui_clear_win_detail): Simplify.
6592
6593 2019-06-25 Tom Tromey <tom@tromey.com>
6594
6595 * tui/tui-layout.c (make_source_window, make_disasm_window)
6596 (make_source_or_disasm_window): Remove win_info_ptr parameter.
6597 Return the new window.
6598 (show_source_disasm_command, show_data)
6599 (show_source_or_disasm_and_command): Update.
6600
6601 2019-06-25 Tom Tromey <tom@tromey.com>
6602
6603 * tui/tui-layout.c (make_command_window): Remove win_info_ptr
6604 parameter. Return the new window.
6605 (show_source_disasm_command): Update and remove NULL check.
6606 (show_source_or_disasm_and_command): Update.
6607
6608 2019-06-25 Tom Tromey <tom@tromey.com>
6609
6610 * tui/tui-layout.c (init_and_make_win): Remove NULL check.
6611
6612 2019-06-25 Tom Tromey <tom@tromey.com>
6613
6614 * tui/tui-data.h (struct tui_win_info): Make constructor
6615 protected. Make destructor virtual. Add initializers.
6616 (tui_source_window, tui_data_window, tui_cmd_window): New
6617 classes.
6618 * tui/tui-data.c (tui_win_info): Rename from init_win_info. Now a
6619 constructor. Add "type" parameter.
6620 (tui_source_window, tui_data_window, tui_cmd_window): New
6621 constructors.
6622 (tui_alloc_win_info): Instantiate the appropriate subclass.
6623
6624 2019-06-25 Tom Tromey <tom@tromey.com>
6625
6626 * tui/tui-win.c (tui_resize_all): Use delete.
6627 * tui/tui-data.h (struct tui_win_info) <~tui_win_info>: Declare
6628 destructor.
6629 (tui_free_window): Don't declare.
6630 * tui/tui-data.c (~tui_win_info): Rename from tui_free_window.
6631 Update.
6632
6633 2019-06-25 Tom Tromey <tom@tromey.com>
6634
6635 * tui/tui-data.h (struct tui_win_info): Add constructor.
6636 * tui/tui-data.c (tui_alloc_win_info): Use new.
6637 (tui_free_window): Use delete.
6638
6639 2019-06-22 Tom Tromey <tom@tromey.com>
6640
6641 * tui/tui-windata.h (tui_first_data_element_no_in_line): Don't
6642 declare.
6643 * tui/tui-windata.c (tui_first_data_element_no_in_line): Remove.
6644
6645 2019-06-22 Tom Tromey <tom@tromey.com>
6646
6647 * tui/tui-data.h (tui_del_window, tui_del_data_windows): Don't
6648 declare.
6649 * tui/tui-data.c (tui_del_window, tui_del_data_windows): Remove.
6650
6651 2019-06-22 Tom de Vries <tdevries@suse.de>
6652
6653 * dwarf2read.c (create_addrmap_from_aranges)
6654 (read_debug_names_from_section): Print ptrdiff_t using '%s' and plongest
6655 instead of '%zu'.
6656
6657 2019-06-21 Simon Marchi <simon.marchi@efficios.com>
6658
6659 * dwarf2read.h (dwarf2_section_info_def): Remove.
6660 (DEF_VEC_O (dwarf2_section_info_def)): Remove.
6661 * dwarf2read.c (struct dwo_sections) <types>: Change type to
6662 std::vector<dwarf2_section_info>.
6663 (struct dwo_file) <~dwo_file>: Remove.
6664 (dwarf2_per_objfile::~dwarf2_per_objfile): Don't manually free
6665 types field.
6666 (dwarf2_per_objfile::locate_sections): Adjust to std::vector.
6667 (dwarf2_read_debug_names): Likewise.
6668 (create_debug_types_hash_table): Change parameter type to
6669 array_view, adjust code accordingly.
6670 (dwarf2_locate_dwo_sections): Adjust to std::vector.
6671 (partial_die_info::fixup): Likewise.
6672 (determine_prefix): Likewise.
6673 * dwarf-index-write.c (write_psymtabs_to_index): Adjust.
6674
6675 2019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
6676
6677 * dwarf2read.c (struct dwo_file) <dbfd>: Change type to
6678 gdb_bfd_ref_ptr.
6679 <~dwo_file>: Remove call to gdb_bfd_unref.
6680 (open_and_init_dwo_file): Move gdb_bfd_ref_ptr into dbfd field. Call
6681 gdb_bfd_ref_ptr::get.
6682
6683 2019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
6684
6685 * dwarf2read.h (struct dwarf2_per_objfile) <dwo_files>: Change
6686 type to htab_up.
6687 * dwarf2read.c (struct dwo_file): Initialize fields.
6688 <~dwo_file>: New.
6689 (free_dwo_file): Remove, move content to ~dwo_file.
6690 (struct dwo_file_deleter): Remove.
6691 (dwo_file_up>: Remove custom deleter.
6692 (free_dwo_files): Remove.
6693 (dwarf2_per_objfile::~dwarf2_per_objfile): Don't explicitly free
6694 dwo_files.
6695 (process_skeletonless_type_units): Call unique_ptr::get.
6696 (allocate_dwo_file_hash_table): Add deleter to created hash
6697 table. Change return type to htab_up.
6698 (lookup_dwo_file_slot): Don't memset dwo_file, call
6699 unique_ptr::get.
6700 (create_dwo_unit_in_dwp_v1): Allocate dwo_file with new.
6701 (create_dwo_unit_in_dwp_v2): Likewise.
6702 (open_and_init_dwo_file): Likewise.
6703 (free_dwo_file_from_slot): Remove.
6704
6705 2019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
6706
6707 * dwarf2read.h (struct dwarf2_section_info) <readin,
6708 is_virtual>: Change type to bool.
6709 * dwarf2read.c (dwarf2_read_section, create_dwp_v2_section): Use
6710 true instead of 1.
6711
6712 2019-06-19 Tom Tromey <tom@tromey.com>
6713
6714 * tui/tui-data.h (tui_init_content_element): Don't declare.
6715
6716 2019-06-19 Tom Tromey <tom@tromey.com>
6717
6718 * tui/tui-data.h (tui_init_win_info): Don't declare.
6719
6720 2019-06-19 Tom de Vries <tdevries@suse.de>
6721
6722 * dwarf2read.h (abstract_to_concrete): Change type to
6723 std::unordered_map<sect_offset, std::vector<sect_offset>,
6724 gdb::hash_enum<sect_offset>>.
6725
6726 2019-06-19 Tom Tromey <tromey@adacore.com>
6727
6728 * ada-lang.c (ada_evaluate_subexp) <case OP_ATR_FIRST>: Handle
6729 EVAL_AVOID_SIDE_EFFECTS specially.
6730
6731 2019-06-19 Tom Tromey <tromey@adacore.com>
6732
6733 * source-cache.c (highlighter): New global.
6734 (source_cache::get_source_lines): Create a highlighter on demand.
6735
6736 2019-06-18 Andrew Burgess <andrew.burgess@embecosm.com>
6737
6738 * defs.h (deprecated_interactive_hook): Delete declaration.
6739 * interps.c (clear_interpreter_hooks): Remove use of
6740 deprecated_interactive_hook.
6741 * top.c (deprecated_interactive_hook): Delete definition.
6742 * utils.c (maybe_quit): Remove use of deprecated_interactive_hook.
6743
6744 2019-06-18 Tom de Vries <tdevries@suse.de>
6745
6746 PR gdb/24515
6747 * dwarf2read.h (abstract_to_concrete): Change type from
6748 std::unordered_map<die_info_ptr, std::vector<die_info_ptr>> to
6749 std::unordered_map<sect_offset, std::vector<sect_offset>>.
6750 * dwarf2read.c (read_variable): Update.
6751 (dwarf2_fetch_die_loc_sect_off): Update.
6752
6753 2019-06-17 Tom de Vries <tdevries@suse.de>
6754
6755 PR gdb/24617
6756 * common/pathstuff.c (child_path): Make sure parent_len > 0 before
6757 accessing parent[parent_len - 1].
6758
6759 2019-06-17 Paul Pluzhnikov <ppluzhnikov@google.com>
6760
6761 PR gdb/24364
6762 * gdb/dtrace-probe.c (dtrace_static_probe_ops::get_probe): Don't
6763 call dtrace_process_dof with NULL dof.
6764
6765 2019-06-16 Tom de Vries <tdevries@suse.de>
6766
6767 PR gdb/24445
6768 * contrib/gdb-add-index.sh: Update to handle dwz-m-ed executable.
6769
6770 2019-06-16 Tom Tromey <tom@tromey.com>
6771
6772 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win)
6773 (make_all_visible): Use address of member.
6774
6775 2019-06-16 Tom Tromey <tom@tromey.com>
6776
6777 * tui/tui-data.c (tui_clear_win_detail, init_win_info)
6778 (tui_free_window, free_content, free_content_elements): Remove
6779 unnecessary cast.
6780 * tui/tui-windata.c (tui_display_all_data): Remove unnecessary
6781 cast.
6782 * tui/tui-regs.c (tui_show_register_group)
6783 (tui_display_registers_from, tui_display_reg_element_at_line):
6784 Remove unnecessary cast.
6785
6786 2019-06-16 Andrew Burgess <andrew.burgess@embecosm.com>
6787
6788 * linux-nat.c (normal_mask): Delete.
6789 (_initialize_linux_nat): Don't initialise normal_mask.
6790
6791 2019-06-16 Simon Marchi <simon.marchi@polymtl.ca>
6792
6793 PR gdb/24445
6794 * dwarf-index-write.h (write_psymtabs_to_index): Add
6795 dwz_basename parameter.
6796 * dwarf-index-write.c (write_gdbindex): Move file writing to
6797 write_gdbindex_1. Change return type void.
6798 (assert_file_size): Move up, remove filename parameter.
6799 (write_gdbindex_1): New function.
6800 (write_debug_names): Change return type to void, call
6801 assert_file_size.
6802 (struct index_wip_file): New struct.
6803 (write_psymtabs_to_index): Add dwz_basename parameter. Move
6804 file logic to index_wip_file. Write index for dwz file if
6805 needed.
6806 (save_gdb_index_command): Pass basename of dwz file, if present.
6807 * dwarf-index-cache.c (index_cache::store): Obtain and pass
6808 build-id of dwz file, if present.
6809 * dwarf2read.c (struct dwz_file): Move to dwarf2read.h.
6810 (dwarf2_get_dwz_file): Likewise.
6811 * dwarf2read.h (struct dwz_file): Move from dwarf2read.c.
6812 (dwarf2_get_dwz_file): Likewise.
6813
6814 2019-06-16 Tom Tromey <tom@tromey.com>
6815
6816 * coffread.c (process_coff_symbol): Use xstrdup.
6817 * value.c (create_internalvar): Use xstrdup.
6818
6819 2019-06-16 Tom Tromey <tom@tromey.com>
6820
6821 * valops.c (value_cast, value_slice): Remove unnecessary cast.
6822 * breakpoint.c (stopin_command, stopat_command)
6823 (until_break_command, decode_location_default): Remove unnecessary
6824 cast.
6825 * utils.c (subset_compare): Remove unnecessary cast.
6826 * ada-lang.c (ada_update_initial_language): Remove unnecessary
6827 cast.
6828 * linespec.c (decode_line_with_last_displayed): Remove unnecessary
6829 cast.
6830 * infcmd.c (path_command): Remove unnecessary cast.
6831 * coffread.c (decode_type): Remove unnecessary cast.
6832 * xcoffread.c (read_xcoff_symtab): Remove unnecessary cast.
6833 * mipsread.c (mipscoff_symfile_read): Remove unnecessary cast.
6834 * tui/tui-stack.c (tui_show_locator_content)
6835 (tui_show_frame_info): Remove unnecessary cast.
6836 * tui/tui-win.c (tui_scroll_forward_command)
6837 (tui_scroll_backward_command, tui_set_focus, tui_set_win_height)
6838 (parse_scrolling_args): Remove unnecessary cast.
6839 * tui/tui-data.c (init_win_info, tui_del_window)
6840 (tui_free_window, tui_del_data_windows, tui_free_data_content)
6841 (free_content_elements): Remove unnecessary cast.
6842 * tui/tui-windata.c (tui_first_data_item_displayed): Remove
6843 unnecessary cast.
6844 * tui/tui-source.c (tui_set_source_content)
6845 (tui_vertical_source_scroll): Remove unnecessary cast.
6846 * tui/tui-layout.c (tui_default_win_height): Remove unnecessary
6847 cast.
6848 * tui/tui-io.c (tui_initialize_io): Remove unnecessary cast.
6849 * tui/tui-regs.c (tui_display_registers_from)
6850 (tui_display_register): Remove unnecessary cast.
6851 * tui/tui-wingeneral.c (tui_refresh_win, tui_delete_win)
6852 (tui_unhighlight_win, tui_highlight_win, tui_make_window)
6853 (make_visible): Remove unnecessary cast.
6854 * tui/tui-winsource.c (tui_erase_source_content)
6855 (tui_update_breakpoint_info, tui_set_exec_info_content): Remove
6856 unnecessary cast.
6857 * ax-gdb.c (agent_command_1): Remove unnecessary cast.
6858 * cli/cli-setshow.c (cmd_show_list): Remove unnecessary cast.
6859 * stabsread.c (read_type, read_array_type, read_range_type):
6860 Remove unnecessary cast.
6861 * mdebugread.c (mdebug_build_psymtabs): Remove unnecessary cast.
6862 (parse_symbol, parse_type, upgrade_type, parse_external)
6863 (parse_partial_symbols, psymtab_to_symtab_1, cross_ref): Remove
6864 unnecessary cast.
6865 * gdb_bfd.c (gdb_bfd_map_section): Remove unnecessary cast.
6866
6867 2019-06-16 Tom Tromey <tom@tromey.com>
6868
6869 * tui/tui-data.c (tui_alloc_generic_win_info)
6870 (tui_alloc_win_info, tui_add_content_elements): Remove NULL
6871 checks.
6872
6873 2019-06-16 Bernhard Heckel <bernhard.heckel@intel.com>
6874 Andrew Burgess <andrew.burgess@embecosm.com>
6875
6876 * f-typeprint.c (f_print_type): Don't return early for not
6877 associated or not allocated types.
6878 (f_type_print_varspec_suffix): Add print_rank parameter and print
6879 ranks of array types in case they dangling.
6880 (f_type_print_base): Add print_rank parameter.
6881
6882 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
6883
6884 * NEWS: Mention new MI commands.
6885 * break-catch-throw.c (enum exception_event_kind): Move to
6886 breakpoint.h.
6887 (print_mention_exception_catchpoint): Output text as a single
6888 message.
6889 (catch_exception_command_1): Rename to...
6890 (catch_exception_event): ...this, make non-static, update header
6891 command, and change some parameter types.
6892 (catch_catch_command): Update for changes to
6893 catch_exception_command_1.
6894 (catch_throw_command): Likewise.
6895 (catch_rethrow_command): Likewise.
6896 * breakpoint.c (enum exception_event_kind): Delete.
6897 * breakpoint.h (enum exception_event_kind): Moved here from
6898 break-catch-throw.c.
6899 (catch_exception_event): Declare.
6900 * mi/mi-cmd-catch.c (mi_cmd_catch_exception_event): New function.
6901 (mi_cmd_catch_throw): New function.
6902 (mi_cmd_catch_rethrow): New function.
6903 (mi_cmd_catch_catch): New function.
6904 * mi/mi-cmds.c (mi_cmds): Add 'catch-throw', 'catch-rethrow', and
6905 'catch-catch' entries.
6906 * mi/mi-cmds.h (mi_cmd_catch_throw): Declare.
6907 (mi_cmd_catch_rethrow): Declare.
6908 (mi_cmd_catch_catch): Declare.
6909
6910 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
6911
6912 * annotate.c (annotate_source_line): Change return type to void,
6913 update implementation to match.
6914 * annotate.h (annotate_source_line): Change return type to void,
6915 update header comment.
6916 * stack.c (print_frame_info): Don't change what frame information
6917 is printed based on whether annotations are on or not.
6918
6919 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
6920
6921 * annotate.c: Add 'source.h' and 'objfiles.h' includes.
6922 (annotate_source): Make static.
6923 (annotate_source_line): Moved from source.c and renamed from
6924 identify_source_line. Update the return type.
6925 * annotate.h (annotate_source): Delete declaration.
6926 (annotate_source_line): Declaration moved from source.h, and
6927 renamed from identify_source_line. Return type updated.
6928 * source.c (identify_source_line): Moved to annotate.c and renamed
6929 to annotate_source_line.
6930 (info_line_command): Remove check of annotation_level.
6931 * source.h (identify_source_line): Move declaration to annotate.h
6932 and rename to annotate_source_line.
6933 * stack.c: Add 'annotate.h' include.
6934 (print_frame_info): Remove check of annotation_level before
6935 calling annotate_source_line.
6936
6937 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
6938
6939 * source-cache.c (source_cache::get_plain_source_lines): Use
6940 open_source_file_with_line_charpos instead of just
6941 open_source_file, remove call to find_source_lines.
6942 (source_cache::get_source_lines): Likewise.
6943 * source.c (find_source_lines): Make static.
6944 (get_filename_and_charpos): Renamed into...
6945 (open_source_file_with_line_charpos): ..this along with changes to
6946 return a scoped_fd, and some other minor clean ups.
6947 (identify_source_line): Use open_source_file_with_line_charpos.
6948 (search_command_helper): Use open_source_file_with_line_charpos
6949 instead of just open_source_file, remove call to
6950 find_source_lines.
6951 * source.h (open_source_file_with_line_charpos): Declare new
6952 function.
6953 (find_source_lines): Delete declaration.
6954
6955 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
6956
6957 * source.c (get_filename_and_charpos): Remove fullname
6958 parameter.
6959 (identify_source_line): Update call to get_filename_and_charpos.
6960
6961 2019-06-14 Tom Tromey <tromey@adacore.com>
6962
6963 PR gdb/24502:
6964 * ui-style.h (skip_ansi_escape): Update comment.
6965 * ui-file.h (class no_terminal_escape_file): New class.
6966 * ui-file.c (no_terminal_escape_file::write)
6967 (no_terminal_escape_file::puts): New methods.
6968 * cli/cli-logging.c (handle_redirections): Use
6969 no_terminal_escape_file.
6970
6971 2019-06-14 Tom Tromey <tromey@adacore.com>
6972
6973 * NEWS: Move convenience variable news above Python news.
6974
6975 2019-06-14 Tom Tromey <tom@tromey.com>
6976
6977 * gnulib: Move directory to top-level.
6978 * configure.ac: Don't configure gnulib.
6979 * configure: Rebuild.
6980 * common/common-defs.h: Use new path to gnulib.
6981 * Makefile.in (GNULIB_BUILDDIR): Now ../gnulib.
6982 (GNULIB_H): Remove.
6983 (INCGNU): Look in new gnulib location.
6984 (HFILES_NO_SRCDIR): Remove gnulib files.
6985 (SUBDIR, REQUIRED_SUBDIRS): Remove gnulib.
6986 (generated_files): Remove GNULIB_H.
6987 ($(LIBGNU), all-lib): Remove targets.
6988 (distclean): Don't mention GNULIB_BUILDDIR.
6989 ($(GNULIB_BUILDDIR)/Makefile): Remove target.
6990
6991 2019-06-14 Tom Tromey <tromey@adacore.com>
6992
6993 * symfile.c (add_symbol_file_command): Remove obsolete comment.
6994 Warn if symbol file does not provide any symbols.
6995
6996 2019-06-14 Tom Tromey <tromey@adacore.com>
6997
6998 * source.c (find_and_open_source): Respect basenames_may_differ.
6999
7000 2019-06-14 Andrew Burgess <andrew.burgess@embecosm.com>
7001
7002 * annotate.c (annotate_breakpoints_invalid): Make use of
7003 scoped_restore_terminal_state.
7004 (annotate_frames_invalid): Likewise.
7005
7006 2019-06-14 Tom Tromey <tromey@adacore.com>
7007
7008 * ada-lang.c (ada_evaluate_subexp) <case BINOP_ASSIGN>: Always
7009 allow assignment to an internalvar.
7010
7011 2019-06-14 Tom Tromey <tromey@adacore.com>
7012
7013 * ada-lex.l: Allow "_" in attribute names.
7014
7015 2019-06-14 Tom Tromey <tromey@adacore.com>
7016
7017 PR gdb/24653:
7018 * regcache.c (registers_changed): Don't call alloca.
7019 * top.c (execute_command): Don't call alloca.
7020
7021 2019-06-13 Pedro Alves <palves@redhat.com>
7022
7023 * cli/cli-setshow.c (cli/cli-setshow.c): New parameter
7024 'expression'. When parsing an expression, error out if there's
7025 junk after "unlimited".
7026 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
7027 (do_set_command): Adjust calls to is_unlimited_literal.
7028
7029 2019-06-13 Pedro Alves <palves@redhat.com>
7030
7031 * compile/compile.c (make_compile_options_def_group): Add braces
7032 around array_view initializer.
7033 * thread.c (make_thread_apply_all_options_def_group)
7034 (make_thread_apply_all_options_def_group): Likewise.
7035
7036 2019-06-13 Pedro Alves <palves@redhat.com>
7037
7038 * NEWS (New commands): Mention "maint test-options
7039 require-delimiter", "maint test-options unknown-is-error", "maint
7040 test-options unknown-is-operand" and "maint show
7041 test-options-completion-result".
7042 (New command options, command completion): New section.
7043 (Completion improvements): New section.
7044 Mention that you can abbreviate "unlimited".
7045
7046 2019-06-13 Pedro Alves <palves@redhat.com>
7047
7048 * cli/cli-utils.c (parse_flags, parse_flags_qcs): Delete.
7049 * cli/cli-utils.h (parse_flags, parse_flags_qcs): Delete.
7050 * unittests/cli-utils-selftests.c (test_parse_flags)
7051 (test_parse_flags_qcs): Delete.
7052 (test_cli_utils): Don't call deleted functions.
7053
7054 2019-06-13 Pedro Alves <palves@redhat.com>
7055
7056 * thread.c: Include "cli/cli-option.h".
7057 (tp_array_compar_ascending): Global.
7058 (tp_array_compar): Delete function.
7059 (tp_array_compar_ascending, tp_array_compar_descending): New
7060 functions.
7061 (ascending_option_def, qcs_flag_option_def)
7062 (thr_qcs_flags_option_defs)
7063 (make_thread_apply_all_options_def_group)
7064 (make_thread_apply_options_def_group): New.
7065 (thread_apply_all_command): Use gdb::option::process_options.
7066 (thread_apply_command_completer)
7067 (thread_apply_all_command_completer): New.
7068 (thread_apply_command): Use gdb::option::process_options.
7069 (_initialize_thread): Delete THREAD_APPLY_FLAGS_HELP, replace it
7070 with a new THREAD_APPLY_OPTION_HELP. Use gdb::option::build_help
7071 to generate help text of "thread apply". Adjust "taas"'s help.
7072 * tid-parse.c (tid_range_parser::in_thread_range): New method.
7073 * tid-parse.h (tid_range_parser::in_thread_range): New method.
7074
7075 2019-06-13 Pedro Alves <palves@redhat.com>
7076
7077 * thread.c (thread_apply_command): Check for invalid TID with
7078 isdigit instead of !isalpha.
7079
7080 2019-06-13 Pedro Alves <palves@redhat.com>
7081
7082 * cli/cli-utils.c (parse_flags_qcs): Use validate_flags_qcs.
7083 (validate_flags_qcs): New.
7084 * cli/cli-utils.h (struct qcs_flags): Change field types to int.
7085 (validate_flags_qcs): Declare.
7086 * stack.c (qcs_flag_option_def, fr_qcs_flags_option_defs): New.
7087 (make_frame_apply_options_def_group): New.
7088 (frame_apply_command_count): Process options with
7089 gdb::option::process_options.
7090 (frame_apply_completer): New.
7091 (frame_apply_level_completer, frame_apply_all_completer)
7092 (frame_apply_completer): New.
7093 (_initialize_stack): Update help of "frame apply", "frame apply
7094 level", "frame apply all" and "faas" to mention supported options
7095 and install command completers.
7096 * stack.h (frame_apply_all_completer): Declare.
7097 * thread.c: Include "stack.h".
7098 (tfaas_command): Add "--".
7099 (_initialize_thread): Update help "tfaas" to mention supported
7100 options and install command completer.
7101
7102 2019-06-13 Pedro Alves <palves@redhat.com>
7103
7104 * completer.c (complete_nested_command_line): New.
7105 (gdb_completion_word_break_characters_throw): Add assertion.
7106 * completer.h (complete_nested_command_line): Declare.
7107
7108 2019-06-13 Pedro Alves <palves@redhat.com>
7109
7110 * stack.c (parse_backtrace_qualifiers): New.
7111 (backtrace_command): Use it.
7112 (backtrace_command_completer): Complete on qualifiers.
7113
7114 2019-06-13 Pedro Alves <palves@redhat.com>
7115
7116 * frame.c: Include "cli/cli-option.h.
7117 (user_set_backtrace_options): New.
7118 (backtrace_past_main, backtrace_past_entry, backtrace_limit):
7119 Delete.
7120 (get_prev_frame): Adjust.
7121 (boolean_option_def, uinteger_option_def)
7122 (set_backtrace_option_defs): New.
7123 (_initialize_frame): Adjust and use
7124 gdb::option::add_setshow_cmds_for_options to install "set
7125 backtrace past-main" and "set backtrace past-entry".
7126 * frame.h: Include "cli/cli-option.h".
7127 (struct frame_print_options): Forward declare.
7128 (print_frame_arguments_all, print_frame_arguments_scalars)
7129 (print_frame_arguments_none): Declare.
7130 (print_entry_values): Delete declaration.
7131 (struct frame_print_options, user_frame_print_options): New.
7132 (struct set_backtrace_options): New.
7133 (set_backtrace_option_defs, user_set_backtrace_options): Declare.
7134 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
7135 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
7136 (mi_cmd_stack_list_variables): Pass down USER_FRAME_PRINT_OPTIONS.
7137 (list_args_or_locals): Add frame_print_options parameter.
7138 (mi_cmd_stack_info_frame): Pass down USER_FRAME_PRINT_OPTIONS.
7139 * python/py-framefilter.c (enumerate_args): Pass down
7140 USER_FRAME_PRINT_OPTIONS.
7141 * stack.c: Include "cli/cli-option.h".
7142 (print_frame_arguments_all, print_frame_arguments_scalars)
7143 (print_frame_arguments_none): Declare.
7144 (print_raw_frame_arguments, print_entry_values): Delete.
7145 (user_frame_print_options): New.
7146 (boolean_option_def, enum_option_def, frame_print_option_defs):
7147 New.
7148 (struct backtrace_cmd_options): New.
7149 (bt_flag_option_def): New.
7150 (backtrace_command_option_defs): New.
7151 (print_stack_frame): Pass down USER_FRAME_PRINT_OPTIONS.
7152 (print_frame_arg, read_frame_arg, print_frame_args)
7153 (print_frame_info, print_frame): Add frame_print_options parameter
7154 and use it.
7155 (info_frame_command_core): Pass down USER_FRAME_PRINT_OPTIONS.
7156 (backtrace_command_1): Add frame_print_options and
7157 backtrace_cmd_options parameters and use them.
7158 (make_backtrace_options_def_group): New.
7159 (backtrace_command): Process command options with
7160 gdb::option::process_options.
7161 (backtrace_command_completer): New.
7162 (_initialize_stack): Extend "backtrace"'s help to mention
7163 supported options. Install completer for "backtrace".
7164 Install some settings commands with add_setshow_cmds_for_options.
7165
7166 2019-06-13 Pedro Alves <palves@redhat.com>
7167
7168 * NEWS (Changed commands): Mention set/show print raw-frame-arguments,
7169 and that "set/show print raw frame-arguments" are now deprecated.
7170
7171 * cli/cli-decode.c (add_setshow_boolean_cmd): Now returns the
7172 command.
7173 * command.h (add_setshow_boolean_cmd): Return cmd_list_element *.
7174 * stack.c (_initialize_stack): Install "set/show print
7175 raw-frame-arguments", and deprecate "set/show print raw
7176 frame-arguments".
7177 * valprint.c (_initialize_valprint): Deprecate "set/show print
7178 raw".
7179
7180 2019-06-13 Pedro Alves <palves@redhat.com>
7181
7182 * compile/compile.c (struct compile_options): New.
7183 (compile_flag_option_def, compile_command_option_defs)
7184 (make_compile_options_def_group): New.
7185 (compile_file_command): Handle options with
7186 gdb::option::process_options.
7187 (compile_file_command_completer): New function.
7188 (compile_code_command): Handle options with
7189 gdb::option::process_options.
7190 (compile_code_command_completer): New function.
7191 (_initialize_compiler): Install completers for "compile code" and
7192 "compile file". Mention available options in "compile code" and
7193 "compile code"'s help.
7194 * completer.c (advance_to_completion_word): New, factored out from
7195 ...
7196 (advance_to_expression_complete_word_point): ... this.
7197 (advance_to_filename_complete_word_point): New.
7198 * completer.h (advance_to_filename_complete_word_point): New
7199 declaration.
7200
7201 2019-06-13 Pedro Alves <palves@redhat.com>
7202
7203 * compile/compile.c: Include "cli/cli-option.h".
7204 (compile_print_value): Scope data pointer is now a
7205 value_print_options pointer; adjust.
7206 (compile_print_command): Process options. Scope data pointer is
7207 now a value_print_options pointer; adjust.
7208 (_initialize_compile): Update "compile print"'s help to include
7209 supported options. Install a completer for "compile print".
7210 * cp-valprint.c (show_vtblprint, show_objectprint)
7211 (show_static_field_print): Delete.
7212 (_initialize_cp_valprint): Don't install "set print
7213 static-members", "set print vtbl", "set print object" here.
7214 * printcmd.c: Include "cli/cli-option.h" and
7215 "common/gdb_optional.h".
7216 (print_command_parse_format): Rework to fill in a
7217 value_print_options instead of a format_data.
7218 (print_value): Change parameter type from format_data pointer to
7219 value_print_options reference. Adjust.
7220 (print_command_1): Process options. Adjust to pass down a
7221 value_print_options.
7222 (print_command_completer): New.
7223 (_initialize_printcmd): Install print_command_completer as
7224 handle_brkchars completer for the "print" command. Update
7225 "print"'s help to include supported options.
7226 * valprint.c: Include "cli/cli-option.h".
7227 (show_vtblprint, show_objectprint, show_static_field_print): Moved
7228 here from cp-valprint.c.
7229 (boolean_option_def, uinteger_option_def)
7230 (value_print_option_defs, make_value_print_options_def_group):
7231 New. Use gdb::option::add_setshow_cmds_for_options to install
7232 "set print elements", "set print null-stop", "set print repeats",
7233 "set print pretty", "set print union", "set print array", "set
7234 print address", "set print symbol", "set print array-indexes".
7235 * valprint.h: Include <string> and "cli/cli-option.h".
7236 (make_value_print_options_def_group): Declare.
7237 (print_value): Change parameter type from format_data pointer to
7238 value_print_options reference.
7239 (print_command_completer): Declare.
7240
7241 2019-06-13 Pedro Alves <palves@redhat.com>
7242
7243 * Makefile.in (SUBDIR_CLI_SRCS): Add cli/cli-option.c.
7244 (COMMON_SFILES): Add maint-test-settings.c.
7245 * cli/cli-decode.c (boolean_enums): New global, factored out from
7246 ...
7247 (add_setshow_boolean_cmd): ... here.
7248 * cli/cli-decode.h (boolean_enums): Declare.
7249 * cli/cli-option.c: New file.
7250 * cli/cli-option.h: New file.
7251 * cli/cli-setshow.c (parse_cli_boolean_value(const char **)): New,
7252 factored out from ...
7253 (parse_cli_boolean_value(const char *)): ... this.
7254 (is_unlimited_literal): Change parameter type to pointer to
7255 pointer. Adjust and advance ARG pointer.
7256 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
7257 (parse_cli_var_enum): New, factored out from ...
7258 (do_set_command): ... this. Adjust.
7259 * cli/cli-setshow.h (parse_cli_boolean_value)
7260 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
7261 (parse_cli_var_enum): Declare.
7262 * cli/cli-utils.c: Include "cli/cli-option.h".
7263 (get_ulongest): New.
7264 * cli/cli-utils.h (get_ulongest): Declare.
7265 (check_for_argument): New overloads.
7266 * maint-test-options.c: New file.
7267
7268 2019-06-13 Pedro Alves <palves@redhat.com>
7269
7270 * cli/cli-utils.c (number_or_range_parser::get_number): Do not
7271 parse a range if "-" is at the end of the string.
7272
7273 2019-06-13 Pedro Alves <palves@redhat.com>
7274
7275 * cli/cli-setshow.c (parse_auto_binary_operation)
7276 (parse_cli_boolean_value): Don't allow "o".
7277
7278 2019-06-13 Pedro Alves <palves@redhat.com>
7279
7280 * Makefile.in (COMMON_SFILES): Add maint-test-settings.c.
7281 * NEWS: Mention maint test-settings KIND.
7282 * maint-test-settings.c: New file.
7283
7284 2019-06-13 Pedro Alves <palves@redhat.com>
7285
7286 * cli/cli-decode.c (add_setshow_cmd_full): Remove "show"
7287 completer.
7288 (add_setshow_string_cmd, add_setshow_string_noescape_cmd): Remove
7289 "set" completers.
7290
7291 2019-06-13 Pedro Alves <palves@redhat.com>
7292
7293 * cli/cli-setshow.c (do_set_command) <var_enum>: Detect junk
7294 after item.
7295
7296 2019-06-13 Pedro Alves <palves@redhat.com>
7297
7298 * cli/cli-setshow.c (is_unlimited_literal): Allow abbreviations.
7299
7300 2019-06-13 Pedro Alves <palves@redhat.com>
7301
7302 * ax-gdb.c (agent_command_1): Remove skip_spaces call.
7303 * breakpoint.c (watch_maybe_just_location): Remove skip_spaces
7304 call.
7305 * cli/cli-cmds.c (apropos_command): Remove skip_spaces call.
7306 * cli/cli-utils.c (extract_info_print_args): Remove skip_spaces
7307 calls.
7308 (check_for_argument): Skip spaces after argument.
7309
7310 2019-06-13 Pedro Alves <palves@redhat.com>
7311
7312 * thread.c (thread_apply_command): Adjust TID parsing.
7313 * tid-parse.c (tid_range_parser::finished): Ensure parsing end is
7314 detected before end of string.
7315 (tid_is_in_list): Error out if LIST is invalid.
7316
7317 2019-06-13 Pedro Alves <palves@redhat.com>
7318
7319 * completer.c (complete_line_internal_1): Rewind completion word
7320 point.
7321 (completion_tracker::advance_custom_word_point_by): Change
7322 parameter type to int.
7323 * completer.h (completion_tracker::advance_custom_word_point_by):
7324 Likewise.
7325
7326 2019-06-13 Pedro Alves <palves@redhat.com>
7327
7328 * completer.c (advance_to_completion_word): Handle delimiters.
7329
7330 2019-06-11 Bernhard Heckel <bernhard.heckel@intel.com>
7331
7332 * dwarf2read.c (add_partial_symbol): Skip nameless modules.
7333
7334 2019-06-11 Tom Tromey <tom@tromey.com>
7335
7336 * common/common-utils.c (xmalloc, xrealloc, xcalloc)
7337 (xmalloc_failed): Move to alloc.c.
7338 * alloc.c: New file.
7339 * Makefile.in (COMMON_SFILES): Add alloc.c.
7340
7341 2019-06-11 Tom Tromey <tom@tromey.com>
7342
7343 * nat/linux-waitpid.c: Don't include server.h.
7344 (linux_debug): Remove.
7345 (my_waitpid): Update.
7346
7347 2019-06-11 Tom Tromey <tromey@adacore.com>
7348
7349 * infcall.c (_initialize_infcall): Remove trailing newline from
7350 help.
7351 * user-regs.c (_initialize_user_regs): Remove trailing newline
7352 from help.
7353 * typeprint.c (_initialize_typeprint): Remove trailing newline
7354 from help.
7355 * reverse.c (_initialize_reverse): Remove trailing newlines from
7356 help.
7357 * tracepoint.c (_initialize_tracepoint): Remove trailing newlines
7358 from help.
7359 * language.c (add_set_language_command): Remove trailing newline
7360 from help.
7361 * infcmd.c (_initialize_infcmd): Remove trailing newlines from
7362 help.
7363 * disasm.c (_initialize_disasm): Remove trailing newline from
7364 help.
7365 * top.c (init_main): Remove trailing newline from help.
7366 * interps.c (_initialize_interpreter): Remove trailing newline
7367 from help.
7368 * btrace.c (_initialize_btrace): Remove trailing newlines from
7369 help.
7370 * breakpoint.c (_initialize_breakpoint): Remove trailing newline
7371 from help.
7372 * python/python.c (_initialize_python): Remove trailing newline
7373 from help.
7374 * spu-tdep.c (_initialize_spu_tdep): Remove trailing newlines from
7375 help.
7376 * tui/tui-win.c (_initialize_tui_win): Remove trailing newlines
7377 from help. Reformat some text.
7378 * tui/tui-stack.c (_initialize_tui_stack): Remove trailing newline
7379 from help.
7380 * tui/tui-layout.c (_initialize_tui_layout): Remove trailing
7381 newline from help.
7382
7383 2019-06-11 Tom Tromey <tromey@adacore.com>
7384
7385 * darwin-nat.c (darwin_decode_exception_message)
7386 (darwin_decode_message, darwin_nat_target::kill): Fix shadowing.
7387
7388 2019-06-10 Andrew Burgess <andrew.burgess@embecosm.com>
7389
7390 * valops.c (value_slice): Check for not allocated or not
7391 associated values.
7392
7393 2019-06-10 Tom de Vries <tdevries@suse.de>
7394
7395 PR gdb/24618
7396 * dwarf2read.c (struct mapped_index::symbol_name_slot_invalid): Make
7397 sure an empty slot (defined by a 32-bit zero pair) is recognized as
7398 invalid.
7399
7400 2019-06-10 Tom de Vries <tdevries@suse.de>
7401
7402 PR gdb/24611
7403 * linespec.c (linespec_lexer_lex_string): Remove incorrect
7404 "++(PARSER_STREAM (parser))" for "[abi"-prefixed colon. Add assert.
7405
7406 2019-06-10 Tom de Vries <tdevries@suse.de>
7407
7408 PR symtab/24545
7409 * symtab.c (struct demangled_name_entry): Add language field.
7410 (symbol_set_names): Revert "[gdb/symtab] Fix language of duplicate
7411 static minimal symbol". Set and use language field.
7412
7413 2019-06-10 Tom Tromey <tromey@adacore.com>
7414
7415 * ada-lang.c (_initialize_ada_language): Update help text.
7416
7417 2019-06-10 Tom Tromey <tromey@adacore.com>
7418
7419 * m32c-tdep.c (m32c_m16c_address_to_pointer): Don't end warning
7420 with a newline.
7421 * guile/guile.c (handle_boot_error): Don't end warning with a
7422 newline.
7423 * cli/cli-cmds.c (exit_status_set_internal_vars): Don't end
7424 warning with a newline.
7425 * s12z-tdep.c (s12z_skip_prologue): Don't end warning with a
7426 newline.
7427 (s12z_frame_cache): Likewise.
7428 * dwarf-index-cache.c (index_cache::store): Don't end warning with
7429 a newline.
7430 * solib-svr4.c (disable_probes_interface): Don't end warning with
7431 a newline.
7432 * nat/fork-inferior.c (fork_inferior): Don't end warning with a
7433 newline.
7434 * python/python.c (do_finish_initialization): Don't end warning
7435 with a newline.
7436
7437 2019-06-10 Tom Tromey <tom@tromey.com>
7438
7439 * python/py-breakpoint.c (gdbpy_breakpoint_created)
7440 (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
7441 gdbpy_enter.
7442
7443 2019-06-10 Tom Tromey <tromey@adacore.com>
7444
7445 * elfread.c (elf_read_minimal_symbols): Don't set the dbx objfile
7446 data.
7447 (elf_new_init): Don't call stabsread_new_init.
7448 * dbxread.c (coffstab_build_psymtabs): Set dbx objfile data.
7449 (elfstab_build_psymtabs): Likewise. Call stabsread_new_init.
7450 * coffread.c (coff_symfile_init): Don't set the dbx objfile data.
7451
7452 2019-06-10 Tom de Vries <tdevries@suse.de>
7453
7454 PR symtab/16264
7455 PR symtab/24517
7456 * dwarf2read.c (read_func_scope): Handle DW_AT_main_subprogram.
7457
7458 2019-06-06 Руслан Ижбулатов <lrn1986@gmail.com>
7459
7460 * source.c (find_and_open_source): Also rewrite relative file
7461 names.
7462
7463 2019-04-26 Amos Bird <amosbird@gmail.com>
7464
7465 * annotate.c (annotate_thread_exited): Add "thread-exited"
7466 annotation.
7467
7468 2019-06-06 Tom Tromey <tromey@adacore.com>
7469
7470 * maint.h (class scoped_command_stats): Use
7471 DISABLE_COPY_AND_ASSIGN.
7472 <print_time>: New method.
7473 * maint.c (scoped_command_stats, ~scoped_command_stats): Call
7474 print_time.
7475 (scoped_command_stats::print_time): New method.
7476
7477 2019-06-05 Andrew Burgess <andrew.burgess@embecosm.com>
7478
7479 * riscv-tdep.c (riscv_insn::decode): Gracefully ignore
7480 instructions of lengths 6 or 8 bytes.
7481
7482 2019-06-04 Pedro Alves <palves@redhat.com>
7483
7484 * common/gdb_unique_ptr.h (make_unique_xstrdup): New.
7485
7486 * ada-lang.c (catch_ada_completer): Use make_unique_xstrdup.
7487 * breakpoint.c (condition_completer): Likewise.
7488 * cli/cli-dump.c (scan_expression): Likewise.
7489 * common/filestuff.c (mkdir_recursive): Likewise.
7490 * common/gdb_tilde_expand.c (gdb_tilde_expand_up)
7491 * common/pathstuff.c (gdb_realpath, gdb_realpath_keepfile)
7492 (gdb_abspath): Likewise.
7493 * compile/compile-cplus-types.c
7494 (compile_cplus_instance::decl_name): Likewise.
7495 * completer.c (complete_explicit_location):
7496 (signal_completer, reg_or_group_completer_1): Likewise.
7497 * cp-support.c (cp_remove_params_if_any): Likewise.
7498 * fbsd-tdep.c (fbsd_core_vnode_path): Likewise.
7499 * guile/scm-safe-call.c (gdbscm_safe_eval_string): Likewise.
7500 * infcmd.c (strip_bg_char): Likewise.
7501 * linespec.c (copy_token_string): Likewise.
7502 * mi/mi-main.c (output_cores): Likewise.
7503 * psymtab.c (psymtab_search_name):
7504 * symfile.c (test_set_ext_lang_command): Likewise.
7505 * target.c (target_fileio_read_stralloc): Likewise.
7506 * tui/tui-regs.c (tui_reggroup_completer): Likewise.
7507 * value.c (complete_internalvar): Likewise.
7508
7509 2019-06-04 Christian Biesinger <cbiesinger@google.com>
7510
7511 Add objfile property to gdb.Type.
7512 * NEWS: Mention Python API addition.
7513 * python/py-type.c (typy_get_objfile): New method.
7514
7515 2019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7516
7517 * NEWS: Mention the new set|show style [title|highlight].
7518 Mention changes to "show style", "help" and "apropos".
7519
7520 2019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7521
7522 * cli/cli-decode.h (apropos_cmd): Add verbose argument.
7523 * cli/cli-decode.c (apropos_cmd): Likewise. Use print_doc_of_command
7524 instead of print_help_for_command.
7525 (print_doc_of_command): New function.
7526 (help_list): Add 'apropos -v word' suggestion.
7527 (print_help_for_command): Style the command name using title style.
7528 * cli/cli-cmds.c (apropos_command): Parse optional -v flag.
7529 (_initialize_cli_cmds): Describe -v in apropos_command help.
7530
7531 2019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7532
7533 * cli/cli-style.h (cli_style_option): Add name in constructor,
7534 add m_name class member, add constructor with intensity,
7535 add name class function.
7536 (cli_style_option::add_setshow_commands): Remove name argument.
7537 (highlight_style, title_style): New styles.
7538 * cli/cli-style.c (do_show): New function that shows a style
7539 characteristic styling the style name with itself.
7540 (set_style_name): New function.
7541 (STYLE_ADD_SETSHOW_COMMANDS): Remove NAME arguments.
7542 Update all callers according to the changes in cli/cli-style.h.
7543 * utils.h (fputs_highlighted): New function.
7544 * utils.c (fputs_highlighted): Likewise.
7545
7546 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7547
7548 * NEWS: Mention new pipe command and new convenience variables.
7549
7550 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7551
7552 * cli/cli-cmds.c (pipe_command): New function.
7553 (_initialize_cli_cmds): Call add_com for pipe_command.
7554 Define | as an alias for pipe.
7555 (exit_status_set_internal_vars): New function.
7556 (shell_escape): Call exit_status_set_internal_vars.
7557 cli/cli-decode.c (find_command_name_length): Recognize | as
7558 a single character command.
7559
7560 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7561
7562 * gdbcmd.h (execute_command_to_ui_file): New declaration.
7563 top.c (execute_command_to_ui_file): New function, mostly a copy
7564 of execute_command_to_string.
7565 (execute_command_to_string): Implement by calling
7566 execute_command_to_ui_file.
7567
7568 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7569
7570 * top.h (saved_command_line): Remove declaration.
7571 * top.c (previous_saved_command_line, previous_repeat_arguments):
7572 New variables.
7573 (saved_command_line): Make static, define together with other
7574 'repeat variables'.
7575 (dont_repeat): Clear repeat_arguments.
7576 (repeat_previous, get_saved_command_line, save_command_line):
7577 New functions.
7578 (gdb_init): Initialize saved_command_line
7579 and previous_saved_command_line.
7580 * main.c (captured_main_1): Remove saved_command_line initialization.
7581 * event-top.c (handle_line_of_input): Update to use
7582 the new 'repeat' related functions instead of direct access to
7583 saved_command_line.
7584 * command.h (repeat_previous, get_saved_command_line,
7585 save_command_line): New declarations.
7586 (dont_repeat): Add comment.
7587
7588 2019-05-30 Tom Tromey <tromey@adacore.com>
7589
7590 * gdbtypes.h (struct range_bounds) <flag_upper_bound_is_count>:
7591 Fix comment.
7592 (TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED): Rewrite comment.
7593
7594 2019-05-30 Jan Vrany <jan.vrany@fit.cvut.cz>
7595
7596 PR cli/24587
7597 * completer.c (complete): Initialize variable word.
7598
7599 2019-05-29 Sergio Durigan Junior <sergiodj@redhat.com>
7600
7601 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192
7602 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1715008
7603 * dwarf2read.c (dwarf_decode_macro_bytes): Move check to see if
7604 'body' is NULL to the outter 'if', protecting the '!is_define'
7605 situation as well.
7606
7607 2019-05-29 Tom Tromey <tromey@adacore.com>
7608
7609 * dwarf2read.c (partial_die_parent_scope): Call dwarf_tag_name.
7610 (dwarf_unknown): New function.
7611 (dwarf_tag_name, dwarf_attr_name, dwarf_form_name)
7612 (dwarf_type_encoding_name): Use dwarf_unknown.
7613
7614 2019-05-29 Tom Tromey <tromey@adacore.com>
7615
7616 PR c++/20020:
7617 * cp-valprint.c (cp_print_value_fields): Call
7618 cp_print_static_field inside "try".
7619
7620 2019-05-29 Tom Tromey <tromey@adacore.com>
7621
7622 * inflow.c (struct terminal_info): Add default operator=.
7623 * configure: Rebuild.
7624 * warning.m4 (AM_GDB_WARNINGS): Add -Wdeprecated-copy,
7625 -Wdeprecated-copy-dtor, -Wredundant-move.
7626
7627 2019-05-29 Tom Tromey <tromey@adacore.com>
7628
7629 * NEWS: Add entry.
7630 * infcmd.c (print_return_value_1): Handle finish_print
7631 option.
7632 (show_print_finish): New function.
7633 (_initialize_infcmd): Add "set/show print finish" commands.
7634 * valprint.c (user_print_options): Initialize new member.
7635 * valprint.h (struct value_print_options) <finish_print>: New
7636 member.
7637
7638 2019-05-28 Tom Tromey <tromey@adacore.com>
7639
7640 * ada-lang.c (ada_remove_Xbn_suffix)
7641 (find_old_style_renaming_symbol)
7642 (parse_old_style_renaming): Remove.
7643 (ada_find_renaming_symbol): Don't call
7644 find_old_style_renaming_symbol.
7645 (ada_is_renaming_symbol): Rename from
7646 ada_find_renaming_symbol. Remove "block" parameter. Return
7647 bool. Now static.
7648 (ada_read_var_value): Update and simplify.
7649 * ada-exp.y (write_var_or_type): Remove old code.
7650
7651 2019-05-28 Alan Hayward <alan.hayward@arm.com>
7652
7653 PR gdb/25010
7654 * event-top.c: Remove include comment.
7655 * inflow.c (class scoped_ignore_sigttou): Move from here...
7656 * inflow.h (class scoped_ignore_sigttou): ...to here.
7657 * ser-unix.c (hardwire_drain_output): Block SIGTTOU during drain.
7658 * top.c: Remove include comment.
7659
7660 2019-05-27 Tom Tromey <tom@tromey.com>
7661
7662 * NEWS: Fix typo.
7663
7664 2019-05-22 Tom Tromey <tromey@adacore.com>
7665
7666 * target.c (target_follow_exec): Constify parameter.
7667 * target-delegates.c: Rebuild.
7668 * remote.c (remote_target::follow_exec): Constify parameter.
7669 * infrun.c (follow_exec): Constify parameter.
7670 * target.h (struct target_ops) <follow_exec>: Constify parameter.
7671 (target_follow_exec): Likewise.
7672
7673 2019-05-22 Alan Hayward <alan.hayward@arm.com>
7674
7675 * aarch64-tdep.c (aarch64_execute_dwarf_cfa_vendor_op): Treat
7676 DW_CFA_AARCH64_negate_ra_state as nop on non pauth targets.
7677
7678 2019-05-22 Alan Hayward <alan.hayward@arm.com>
7679
7680 * NEWS: Add debugredirect and testsuite sections.
7681
7682 2019-05-22 Simon Cook <simon.cook@embecosm.com>
7683
7684 * riscv-tdep.c (riscv_gdbarch_init): Support determining flen from
7685 target descriptions using exclusively floating point register name
7686 aliases.
7687
7688 2019-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
7689
7690 PR gdb/18644:
7691 * f-lang.c (build_fortran_types): Handle the case where
7692 gdbarch_floatformat_for_type returns a nullptr.
7693
7694 2019-05-21 Tom de Vries <tdevries@suse.de>
7695
7696 PR cli/24587
7697 * cli/cli-cmds.c (complete_command): Fix use of unitialized variable.
7698
7699 2019-05-18 Andrew Burgess <andrew.burgess@embecosm.com>
7700
7701 PR gdb/18644:
7702 * f-lang.c (build_fortran_types): Use floatformats_ia64_quad for
7703 16-byte floats.
7704 * i386-tdep.c (i386_floatformat_for_type): Use
7705 floatformats_ia64_quad for the 16-byte floating point component
7706 within a fortran 32-byte complex number.
7707
7708 2019-05-18 Andrew Burgess <andrew.burgess@embecosm.com>
7709
7710 * dwarf2read.c (struct cu_partial_die_info): Add constructor,
7711 delete default constructor.
7712 (find_partial_die): Update to return const struct.
7713 (partial_die_parent_scope): Move variable declaration into scope
7714 of its use and change its type to auto.
7715 (guess_partial_die_structure_name): Likewise.
7716 (partial_die_info::fixup): Likewise.
7717
7718 2019-05-17 Tom Tromey <tromey@adacore.com>
7719
7720 * source.c (find_and_open_source): Remove cast.
7721
7722 2019-05-17 Tom Tromey <tromey@adacore.com>
7723
7724 * annotate.c (annotate_source): Make "filename" const.
7725 * annotate.h (annotate_source): Use const.
7726
7727 2019-05-17 Alan Hayward <alan.hayward@arm.com>
7728
7729 * disasm.c (set_disassembler_options): Send errors to stderr.
7730
7731 2019-05-17 Alan Hayward <alan.hayward@arm.com>
7732
7733 * cli/cli-interp.c (struct saved_output_files): Add saved entry.
7734 (cli_interp_base::set_logging): Check debug_redirect.
7735 * cli/cli-interp.h (set_logging): Add debug_redirect parameter.
7736 * cli/cli-logging.c (debug_redirect): Add static variable.
7737 (pop_output_files): Add default param.
7738 (handle_redirections): Print debug setting.
7739 (show_logging_command): Likewise.
7740 (_initialize_cli_logging): Add debugredirect command.
7741 * interps.c (current_interp_set_logging): Add debug_redirect
7742 parameter.
7743 * interps.h (set_logging): Add debug_redirect parameter.
7744 (current_interp_set_logging): Likewise.
7745 * mi/mi-common.h: Likewise.
7746 * mi/mi-interp.c (mi_interp::set_logging): Likewise.
7747
7748 2019-05-17 Alan Hayward <alan.hayward@arm.com>
7749 Tom Tromey <tromey@adacore.com>
7750
7751 * cli/cli-interp.c (cli_interp_base::set_logging): Create tee_file
7752 directly.
7753 * cli/cli-interp.h (make_logging_output): Remove declaration.
7754 * cli/cli-logging.c (make_logging_output): Remove function.
7755 * mi/mi-interp.c (mi_interp::set_logging): Create tee_file
7756 directly.
7757 * ui-file.c (tee_file::tee_file): Remove bools.
7758 (tee_file::~tee_file): Remove deletes.
7759 * ui-file.h (tee_file): Remove bools.
7760
7761 2019-01-28 Jan Vrany <jan.vrany@fit.cvut.cz>
7762
7763 * mi/mi-cmds.h (mi_cmd_complete): New function.
7764 * mi/mi-main.c (mi_cmd_complete): Likewise.
7765 * mi/mi-cmds.c: Define new MI command -complete.
7766 * NEWS: Mention new -complete command.
7767
7768 2019-01-24 Jan Vrany <jan.vrany@fit.cvut.cz>
7769
7770 * completer.h (complete): New function.
7771 * completer.c (complete): Likewise.
7772 * cli/cli-cmds.c: (complete_command): Update to use new complete()
7773 function defined in completer.h.
7774
7775 2019-05-17 Jan Vrany <jan.vrany@fit.cvut.cz>
7776
7777 * MAINTAINERS (Write After Approval): Add myself.
7778
7779 2019-05-17 Tom de Vries <tdevries@suse.de>
7780
7781 PR gdb/24094
7782 * dwarf2read.c (struct cu_partial_die_info): New struct.
7783 (find_partial_die): Return cu_partial_die_info.
7784 (partial_die_parent_scope, guess_partial_die_structure_name)
7785 (partial_die_info::fixup): Handle new return type of find_partial_die.
7786
7787 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
7788
7789 PR breakpoints/24541
7790 * stap-probe.c (stap_parse_register_operand): Make "regname" an
7791 "std::string", simplifying the algorithm.
7792
7793 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
7794
7795 * stap-probe.c (handle_stap_probe): Fix complaint formatting.
7796 (stap_static_probe_ops::get_probes): Likewise.
7797
7798 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
7799
7800 * stap-probe.c (stap_parse_register_operand): Make "if (*p->arg ==
7801 '-')" and "else if".
7802 (stap_parse_single_operand): Join checks for
7803 "gdbarch_stap_parse_special_token_p" and
7804 "gdbarch_stap_parse_special_token" in the same "if" statement.
7805 Invert check when verifying for operation on register
7806 displacement.
7807
7808 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
7809
7810 * stap-probe.c (stap_get_opcode): Update comment.
7811 (stap_get_expected_argument_type): Likewise.
7812 (handle_stap_probe): Likewise.
7813
7814 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
7815
7816 * i386-tdep.c (i386_stap_parse_special_token_triplet): Change
7817 return type to 'bool'. Adjust comment. Use 'bool' when
7818 appropriate.
7819 (i386_stap_parse_special_token_three_arg_disp): Likewise.
7820 * stap-probe.c (stap_parse_argument_1): Likewise.
7821 (stap_is_operator): Likewise.
7822 (stap_is_generic_prefix): Likewise.
7823 (stap_is_register_prefix): Likewise.
7824 (stap_is_register_indirection_prefix): Likewise.
7825 (stap_is_integer_prefix): Likewise.
7826 (stap_generic_check_suffix): Likewise.
7827 (stap_check_integer_suffix): Likewise.
7828 (stap_check_register_suffix): Likewise.
7829 (stap_check_register_indirection_suffix): Likewise.
7830 (stap_parse_register_operand): Likewise.
7831 (stap_parse_single_operand): Likewise.
7832 (stap_parse_argument_1): Likewise.
7833 (stap_probe::get_argument_count): Likewise.
7834 (stap_is_operator): Likewise.
7835
7836 2019-05-16 Tom Tromey <tromey@adacore.com>
7837
7838 * darwin-nat.c (thread_info_from_private_thread_info): Add struct
7839 keyword to foreach.
7840
7841 2019-05-15 Simon Marchi <simon.marchi@efficios.com>
7842
7843 * linux-thread-db.c (try_thread_db_load_1): Change return type
7844 to bool.
7845 (try_thread_db_load): Likewise.
7846 (try_thread_db_load_from_pdir_1): Likewise.
7847 (try_thread_db_load_from_pdir): Likewise.
7848 (try_thread_db_load_from_sdir): Likewise.
7849 (try_thread_db_load_from_dir): Likewise.
7850 (thread_db_load_search): Likewise.
7851 (has_libpthread): Likewise.
7852 (thread_db_load): Likewise.
7853
7854 2019-05-15 Sergio Durigan Junior <sergiodj@redhat.com>
7855
7856 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192
7857 * dwarf2read.c (parse_macro_definition): Check whether 'body' is
7858 NULL, and complain/return if that's the case.
7859
7860 2019-05-15 John Darrington <john@darrington.wattle.id.au>
7861
7862 * s12z-tdep.c (push_pull_get_stack_adjustment): New function.
7863 (advance, posn, abstract_read_memory): New functions.
7864 [struct mem_read_abstraction]: New struct.
7865 (s12z_frame_cache): Use opcodes API to interpret stack frame code.
7866
7867 2019-05-14 Tom Tromey <tromey@adacore.com>
7868
7869 * ada-lang.c (coerce_unspec_val_to_type): Only set address when
7870 value is not lval_memory.
7871
7872 2019-05-14 Tom Tromey <tromey@adacore.com>
7873
7874 * solib.c (info_sharedlibrary_command): Style the file name.
7875
7876 2019-05-14 Alan Hayward <alan.hayward@arm.com>
7877
7878 * aarch64-tdep.c (aarch64_vnh_type): Add half view.
7879 (aarch64_vnv_type): Likewise.
7880 * target-descriptions.c (make_gdb_type): Add TDESC_TYPE_IEEE_HALF.
7881 * common/tdesc.c: Likewise.
7882 * common/tdesc.h (enum tdesc_type_kind): Likewise.
7883 * features/aarch64-fpu.c (create_feature_aarch64_fpu): Regenerate.
7884 * features/aarch64-fpu.xml: Add ieee half view.
7885 * features/aarch64-sve.c (create_feature_aarch64_fpu): Likewise.
7886 * gdbtypes.c (gdbtypes_post_init): Add builtin_half
7887 * gdbtypes.h (struct builtin_type): Likewise.
7888 (struct objfile_type): Likewise.
7889
7890 2019-05-12 Paul Naert <paul.naert@polymtl.ca>
7891
7892 * language.c (language_sniff_from_mangled_name): Fix "langauge"
7893 typo.
7894 * location.h (string_to_event_location): Likewise.
7895
7896 2019-05-11 Joel Brobecker <brobecker@adacore.com>
7897
7898 GDB 8.3 released.
7899
7900 2019-05-10 Simon Marchi <simon.marchi@efficios.com>
7901
7902 * breakpoint.h (fix_multi_location_breakpoint_output_globally):
7903 New variable declaration.
7904 * breakpoint.c (fix_multi_location_breakpoint_output_globally):
7905 New variable.
7906 (print_one_breakpoint): Use ui_out::test_flags and new global
7907 variable to compute use_fixed_output.
7908 * mi/mi-main.h (mi_multi_location_breakpoint_output_fixed):
7909 Remove.
7910 * mi/mi-main.c (fix_multi_location_breakpoint_output): Remove.
7911 (mi_multi_location_breakpoint_output_fixed): Remove.
7912 (mi_cmd_fix_multi_location_breakpoint_output): Adjust to set the
7913 new variable.
7914 * mi/mi-out.c (mi_ui_out::mi_ui_out): Set
7915 fix_multi_location_breakpoint_output flag if version >= 3.
7916 * ui-out.h (enum ui_out_flag)
7917 <fix_multi_location_breakpoint_output>: New enumerator.
7918
7919 2019-05-10 Simon Marchi <simon.marchi@efficios.com>
7920
7921 * contrib/cc-with-tweaks.sh: Validate dwz's work.
7922
7923 2019-05-10 Tom Tromey <tromey@adacore.com>
7924
7925 * ada-lang.c (catch_ada_completer): New function.
7926 (_initialize_ada_language): Use it.
7927
7928 2019-05-10 Tom Tromey <tromey@adacore.com>
7929
7930 * thread.c (print_thread_info): Make "requested_threads" const.
7931 * gdbthread.h (print_thread_info): Make "requested_threads"
7932 const.
7933 * ada-tasks.c (print_ada_task_info): Make "taskno_str" const.
7934 * ada-lang.h (print_ada_task_info): Make "taskno_str" const.
7935
7936 2019-05-08 Tom Tromey <tom@tromey.com>
7937
7938 * gdbtypes.c (objfile_type_data): Change type.
7939 (objfile_type, _initialize_gdbtypes): Update.
7940
7941 2019-05-08 Tom Tromey <tom@tromey.com>
7942
7943 * dwarf2-frame.c (dwarf2_frame_objfile_data): Change type.
7944 (dwarf2_frame_find_fde, dwarf2_build_frame_info)
7945 (_initialize_dwarf2_frame): Update.
7946
7947 2019-05-08 Tom Tromey <tom@tromey.com>
7948
7949 * objc-lang.c (objc_objfile_data): Change type.
7950 (find_methods): Update.
7951 (_initialize_objc_lang): Remove.
7952
7953 2019-05-08 Tom Tromey <tom@tromey.com>
7954
7955 * stabsread.c (rs6000_builtin_type_data): Change type.
7956 (rs6000_builtin_type, _initialize_stabsread): Update.
7957
7958 2019-05-08 Tom Tromey <tom@tromey.com>
7959
7960 * mips-tdep.c (mips_pdr_data): Remove.
7961 (_initialize_mips_tdep): Update.
7962
7963 2019-05-08 Tom Tromey <tom@tromey.com>
7964
7965 * hppa-tdep.c (hppa_objfile_priv_data): Change type.
7966 (hppa_init_objfile_priv_data, read_unwind_info)
7967 (find_unwind_entry, _initialize_hppa_tdep): Update.
7968
7969 2019-05-08 Tom Tromey <tom@tromey.com>
7970
7971 * elfread.c (elf_objfile_gnu_ifunc_cache_data): Change type.
7972 (elf_gnu_ifunc_record_cache): Update. Don't allocate hash table
7973 on obstack.
7974 (elf_gnu_ifunc_resolve_by_cache, _initialize_elfread): Update.
7975
7976 2019-05-08 Tom Tromey <tom@tromey.com>
7977
7978 * mdebugread.c (basic_type_data): Change type.
7979 (basic_type, _initialize_mdebugread): Update.
7980
7981 2019-05-08 Tom Tromey <tom@tromey.com>
7982
7983 * common/gdb_unique_ptr.h (struct noop_deleter): New.
7984
7985 2019-05-08 Tom Tromey <tom@tromey.com>
7986
7987 * nto-tdep.c (nto_inferior_data_reg): Change type.
7988 (nto_inferior_data): Update.
7989 (nto_inferior_data_cleanup, nto_new_inferior_data)
7990 (_initialize_nto_tdep): Remove.
7991 * nto-tdep.h (struct nto_inferior_data): Add initializers.
7992
7993 2019-05-08 Tom Tromey <tom@tromey.com>
7994
7995 * ada-lang.c (struct ada_inferior_data): Add initializers.
7996 (ada_inferior_data): Change type.
7997 (ada_inferior_data_cleanup): Remove.
7998 (get_ada_inferior_data, ada_inferior_exit)
7999 (struct ada_pspace_data): Add initializers, destructor.
8000 (ada_pspace_data_handle): Change type.
8001 (get_ada_pspace_data): Update.
8002 (ada_pspace_data_cleanup): Remove.
8003
8004 2019-05-08 Tom Tromey <tom@tromey.com>
8005
8006 * coffread.c (struct coff_symfile_info): Add initializers.
8007 (coff_objfile_data_key): Move lower. Change type.
8008 (coff_symfile_init, coff_symfile_read, _initialize_coffread):
8009 Update.
8010 (coff_free_info): Remove.
8011
8012 2019-05-08 Tom Tromey <tom@tromey.com>
8013
8014 * fbsd-tdep.c (struct fbsd_pspace_data): Add initializers.
8015 (fbsd_pspace_data_handle): Move lower. Change type.
8016 (get_fbsd_pspace_data): Update.
8017 (fbsd_pspace_data_cleanup): Remove.
8018 (_initialize_fbsd_tdep): Update.
8019
8020 2019-05-08 Tom Tromey <tom@tromey.com>
8021
8022 * ada-tasks.c (ada_tasks_pspace_data_handle): Change type.
8023 (get_ada_tasks_pspace_data): Update.
8024 (ada_tasks_pspace_data_cleanup): Remove.
8025 (_initialize_tasks): Update.
8026 (ada_tasks_inferior_data_handle): Change type.
8027 (get_ada_tasks_inferior_data): Update.
8028 (ada_tasks_inferior_data_cleanup): Remove.
8029 (struct ada_tasks_pspace_data): Add initializers.
8030
8031 2019-05-08 Tom Tromey <tom@tromey.com>
8032
8033 * symfile.h (struct sym_probe_fns) <sym_get_probes>: Change type.
8034 * symfile-debug.c (debug_sym_get_probes): Change type.
8035 * stap-probe.c (handle_stap_probe):
8036 (stap_static_probe_ops::get_probes): Change type.
8037 * probe.h (class static_probe_ops) <get_probes>: Change type.
8038 * probe.c (class any_static_probe_ops) <get_probes>: Change type.
8039 (parse_probes_in_pspace): Update.
8040 (find_probes_in_objfile, find_probe_by_pc, collect_probes):
8041 Update.
8042 (any_static_probe_ops::get_probes): Change type.
8043 * elfread.c (elfread_data): New typedef.
8044 (probe_key): Change type.
8045 (elf_get_probes): Likewise. Update.
8046 (probe_key_free): Remove.
8047 (_initialize_elfread): Update.
8048 * dtrace-probe.c (class dtrace_static_probe_ops) <get_probes>:
8049 Change type.
8050 (dtrace_process_dof_probe, dtrace_process_dof)
8051 (dtrace_static_probe_ops::get_probe): Change type.
8052
8053 2019-05-08 Tom Tromey <tom@tromey.com>
8054
8055 * xcoffread.c (struct xcoff_symfile_info): Rename from
8056 coff_symfile_info. Add initializers.
8057 (xcoff_objfile_data_key): Move lower. Change type.
8058 (XCOFF_DATA): Rewrite.
8059 (xcoff_free_info): Remove.
8060 (xcoff_symfile_init, _initialize_xcoffread, read_xcoff_symtab)
8061 (read_symbol, read_symbol_lineno, find_linenos, init_stringtab)
8062 (xcoff_initial_scan): Update.
8063
8064 2019-05-08 Tom Tromey <tom@tromey.com>
8065
8066 * solib-svr4.c (struct svr4_info): Add initializers and
8067 destructor.
8068 <probes_table>: Now an htab_up.
8069 (solib_svr4_pspace_data): Change type.
8070 (free_probes_table): Simplify.
8071 (~svr4_info): Rename from svr4_pspace_data_cleanup.
8072 (get_svr4_info, probes_table_htab_remove_objfile_probes)
8073 (probes_table_remove_objfile_probes, register_solib_event_probe)
8074 (solib_event_probe_at, svr4_update_solib_event_breakpoint)
8075 (_initialize_svr4_solib): Update.
8076
8077 2019-05-08 Tom Tromey <tom@tromey.com>
8078
8079 * remote.c (remote_pspace_data): Change type.
8080 (remote_pspace_data_cleanup): Remove.
8081 (get_remote_exec_file, set_pspace_remote_exec_file)
8082 (_initialize_remote): Update.
8083
8084 2019-05-08 Tom Tromey <tom@tromey.com>
8085
8086 * breakpoint.c (breakpoint_objfile_key): Change type.
8087 (get_breakpoint_objfile_data): Update.
8088 (free_breakpoint_objfile_data): Remove.
8089 (_initialize_breakpoint): Update.
8090
8091 2019-05-08 Tom Tromey <tom@tromey.com>
8092
8093 * linux-tdep.c (struct linux_info): Add initializers.
8094 (linux_inferior_data): Move. Change type.
8095 (invalidate_linux_cache_inf): Update.
8096 (linux_inferior_data_cleanup): Remove.
8097 (get_linux_inferior_data, _initialize_linux_tdep): Update.
8098
8099 2019-05-08 Tom Tromey <tom@tromey.com>
8100
8101 * auxv.c (auxv_inferior_data): Move. Change type.
8102 (auxv_inferior_data_cleanup): Remove.
8103 (invalidate_auxv_cache_inf): Rewrite.
8104 (get_auxv_inferior_data, _initialize_auxv): Update.
8105
8106 2019-05-08 Tom Tromey <tom@tromey.com>
8107
8108 * symfile-debug.c (struct debug_sym_fns_data): Add initializers.
8109 (symfile_debug_objfile_data_key): Change type.
8110 (symfile_debug_installed, debug_qf_has_symbols)
8111 (debug_qf_find_last_source_symtab)
8112 (debug_qf_forget_cached_source_info)
8113 (debug_qf_map_symtabs_matching_filename, debug_qf_lookup_symbol)
8114 (debug_qf_print_stats, debug_qf_dump)
8115 (debug_qf_expand_symtabs_for_function)
8116 (debug_qf_expand_all_symtabs)
8117 (debug_qf_expand_symtabs_with_fullname)
8118 (debug_qf_map_matching_symbols)
8119 (debug_qf_expand_symtabs_matching)
8120 (debug_qf_find_pc_sect_compunit_symtab)
8121 (debug_qf_map_symbol_filenames)
8122 (debug_qf_find_compunit_symtab_by_address, debug_sym_get_probes)
8123 (debug_sym_new_init, debug_sym_init, debug_sym_read)
8124 (debug_sym_read_psymbols, debug_sym_finish, debug_sym_offsets)
8125 (debug_sym_read_linetable, debug_sym_relocate): Update.
8126 (symfile_debug_free_objfile): Remove.
8127 (install_symfile_debug_logging, _initialize_symfile_debug):
8128 Update.
8129
8130 2019-05-08 Tom Tromey <tom@tromey.com>
8131
8132 * dwarf2read.h (struct dwarf2_per_objfile): Don't inherit from
8133 allocate_on_obstack.
8134 * dwarf2read.c (dwarf2_objfile_data_key): Change type.
8135 (get_dwarf2_per_objfile): Update.
8136 (set_dwarf2_per_objfile): Remove.
8137 (dwarf2_has_info, dwarf2_get_section_info): Update.
8138 (dwarf2_free_objfile): Remove.
8139 (_initialize_dwarf2_read): Update.
8140
8141 2019-05-08 Tom Tromey <tom@tromey.com>
8142
8143 * auto-load.c (struct auto_load_pspace_info): Add destructor and
8144 initializers.
8145 <unsupported_script_warning_printed,
8146 script_not_found_warning_printed>: Now bool.
8147 (auto_load_pspace_data): Change type.
8148 (~auto_load_pspace_info): Rename from
8149 auto_load_pspace_data_cleanup.
8150 (get_auto_load_pspace_data, init_loaded_scripts_info)
8151 (clear_section_scripts, maybe_print_unsupported_script_warning)
8152 (maybe_print_script_not_found_warning, _initialize_auto_load):
8153 Update.
8154
8155 2019-05-08 Tom Tromey <tom@tromey.com>
8156
8157 * objfiles.c (objfile_pspace_info): Add destructor and
8158 initializers.
8159 (objfiles_pspace_data): Change type.
8160 (~objfile_pspace_info): Rename from objfiles_pspace_data_cleanup.
8161 (get_objfile_pspace_data): Update.
8162 (objfiles_bfd_data): Change type.
8163 (get_objfile_bfd_data): Update.
8164 (objfile_bfd_data_free, _initialize_objfiles): Remove.
8165
8166 2019-05-08 Tom Tromey <tom@tromey.com>
8167
8168 * break-catch-syscall.c (catch_syscall_inferior_data): Move.
8169 Change type.
8170 (get_catch_syscall_inferior_data): Update.
8171 (catch_syscall_inferior_data_cleanup): Remove.
8172 (_initialize_break_catch_syscall): Update.
8173
8174 2019-05-08 Tom Tromey <tom@tromey.com>
8175
8176 * inflow.c (struct terminal_info): Add destructor and
8177 initializers.
8178 (inflow_inferior_data): Change type.
8179 (~terminal_info): Rename from inflow_inferior_data_cleanup.
8180 (get_inflow_inferior_data, inflow_inferior_exit)
8181 (swap_terminal_info, _initialize_inflow): Update.
8182
8183 2019-05-08 Tom Tromey <tom@tromey.com>
8184
8185 * target-dcache.c (target_dcache_cleanup): Remove.
8186 (target_dcache_aspace_key): Change type.
8187 (target_dcache_init_p, target_dcache_invalidate)
8188 (target_dcache_get, target_dcache_get_or_init)
8189 (_initialize_target_dcache): Update.
8190 * dcache.h (struct dcache_deleter): New.
8191
8192 2019-05-08 Tom Tromey <tom@tromey.com>
8193
8194 * symtab.c (struct symbol_cache): Add destructor and
8195 initializers.
8196 (symbol_cache_key): Move. Change type.
8197 (make_symbol_cache, free_symbol_cache): Remove.
8198 (get_symbol_cache): Update.
8199 (symbol_cache_cleanup): Remove.
8200 (ALL_PSPACES, symbol_cache_flush)
8201 (maintenance_print_symbol_cache)
8202 (maintenance_print_symbol_cache_statistics, _initialize_symtab):
8203 Update.
8204
8205 2019-05-08 Tom Tromey <tom@tromey.com>
8206
8207 * symtab.c (struct main_info): Add destructor and initializers.
8208 (main_progspace_key): Move. Change type.
8209 (get_main_info): Update.
8210 (main_info_cleanup): Remove.
8211 (_initialize_symtab): Update.
8212
8213 2019-05-08 Tom Tromey <tom@tromey.com>
8214
8215 * registry.h (DECLARE_REGISTRY): Define the _key class.
8216
8217 2019-05-08 Andrew Burgess <andrew.burgess@embecosm.com>
8218
8219 * NEWS: Merge two 'New commands' sections.
8220
8221 2019-05-08 Joel Brobecker <brobecker@adacore.com>
8222
8223 * ada-valprint.c (ada_val_print_gnat_array): Remove language
8224 parameter and use Ada language definition instead.
8225 (ada_val_print_ptr): Remove unused language parameter.
8226 (ada_val_print_num): Remove language parameter and use Ada language
8227 definition instead.
8228 (ada_val_print_enum, ada_val_print_flt): Remove unused language
8229 parameter.
8230 (ada_val_print_struct_union, ada_val_print_ref): Remove language
8231 parameter and use Ada language definition instead.
8232 (ada_val_print_1): Update all ada_val_print_xxx calls.
8233 Remove language parameter.
8234 (ada_val_print): Update ada_val_print_1 call.
8235
8236 2019-05-08 Tom Tromey <tromey@adacore.com>
8237
8238 * remote.c (remote_hw_watchpoint_limit)
8239 (remote_hw_watchpoint_length_limit, remote_hw_breakpoint_limit):
8240 Now static.
8241
8242 2019-05-08 Tom Tromey <tromey@adacore.com>
8243
8244 * maint.c (_initialize_maint_cmds): Move initialization code to
8245 remote.c.
8246 (watchdog, show_watchdog): Move to remote.c.
8247 * remote.c (watchdog, show_watchdog): Move from maint.c. Make
8248 "watchdog" static.
8249 (_initialize_remote): Move initialization code from maint.c.
8250 * defs.h (watchdog): Don't declare.
8251
8252 2019-05-08 Tom Tromey <tromey@adacore.com>
8253
8254 * tui/tui-interp.c: Include main.h.
8255 * interps.c: Include main.h.
8256 * main.h (interpreter_p): Declare.
8257 * defs.h (interpreter_p): Don't declare.
8258
8259 2019-05-08 Tom Tromey <tromey@adacore.com>
8260
8261 * dwarf2loc.c: Include dwarf2read.h.
8262 * defs.h (read_unsigned_leb128): Don't declare.
8263 * dwarf2read.h (read_unsigned_leb128): Declare.
8264
8265 2019-05-08 Tom Tromey <tromey@adacore.com>
8266
8267 * utils.c (fputs_maybe_filtered): Call can_emit_style_escape as a
8268 method.
8269
8270 2019-05-08 Tom Tromey <tromey@adacore.com>
8271
8272 * utils.c (fputs_maybe_filtered): Reset style after paging, even
8273 when no wrap column is set.
8274
8275 2019-05-08 Tom Tromey <tromey@adacore.com>
8276
8277 * c-lang.c (c_get_string): Handle non-C-style arrays.
8278
8279 2019-05-08 Tom Tromey <tromey@adacore.com>
8280
8281 * typeprint.c (print_offset_data::update): Print the bit offset,
8282 not the number of bits remaining.
8283
8284 2019-05-08 Tom Tromey <tromey@adacore.com>
8285
8286 * typeprint.c (print_offset_data::maybe_print_hole): Add extra
8287 padding at end of comment.
8288
8289 2019-05-08 Tom Tromey <tromey@adacore.com>
8290
8291 * dwarf2loc.c (dwarf2_evaluate_property) <PROP_ADDR_OFFSET>:
8292 Compare main types.
8293
8294 2019-05-06 Tom Tromey <tom@tromey.com>
8295
8296 * common/scoped_mmap.c: Include common-defs.h.
8297 * common/scoped_mmap.h: Don't include config.h.
8298
8299 2019-05-04 Tom Tromey <tom@tromey.com>
8300
8301 * aarch64-tdep.c (stack_item_t): Remove typedef and DEF_VEC.
8302 (struct aarch64_call_info): Add initializers.
8303 <si>: Now a std::vector.
8304 (pass_on_stack, aarch64_push_dummy_call): Update.
8305
8306 2019-05-04 Simon Marchi <simon.marchi@efficios.com>
8307 Tom Tromey <tom@tromey.com>
8308
8309 * ppc-linux-nat.c (thread_points_p): Remove typedef and DEF_VEC.
8310 (ppc_threads): Now a std::vector. Now static.
8311 (hwdebug_find_thread_points_by_tid)
8312 (ppc_linux_nat_target::low_new_thread, ppc_linux_thread_exit):
8313 Update.
8314
8315 2019-05-04 Tom Tromey <tom@tromey.com>
8316
8317 * arc-tdep.c (arc_tdesc_init): Return bool.
8318
8319 2019-05-04 Tom Tromey <tom@tromey.com>
8320
8321 * arm-linux-nat.c (arm_linux_nat_target::can_use_hw_breakpoint):
8322 Use gdb_assert_not_reached.
8323
8324 2019-05-04 Tom Tromey <tom@tromey.com>
8325
8326 * compile/compile-cplus-types.c (compile_cplus_convert_enum): Use
8327 "false".
8328
8329 2019-05-04 Tom Tromey <tom@tromey.com>
8330
8331 * arc-tdep.c (arc_tdesc_init): Use bool.
8332
8333 2019-05-04 Tom Tromey <tom@tromey.com>
8334
8335 * stack.c (select_frame_for_mi): Use "false", not "FALSE".
8336
8337 2019-05-04 Tom Tromey <tom@tromey.com>
8338
8339 * cli/cli-cmds.c (valid_command_p): Return bool.
8340
8341 2019-05-04 Tom Tromey <tom@tromey.com>
8342
8343 * cli/cli-decode.c (valid_user_defined_cmd_name_p): Return bool.
8344 * command.h (valid_user_defined_cmd_name_p): Channge return type.
8345
8346 2019-05-04 Raul Tambre <raul@tambre.ee>
8347
8348 * python/lib/gdb/prompt.py (_ExtendedPrompt)
8349 <before_prompt_hook, get_show_string>: Fix incorrect use of 'is'
8350 operator for comparison.
8351
8352 2019-05-04 Tom Tromey <tom@tromey.com>
8353
8354 * psymtab.c (psymbol_name_matches, match_partial_symbol)
8355 (lookup_partial_symbol, print_partial_symbols)
8356 (recursively_search_psymtabs, sort_pst_symbols, psymbol_hash)
8357 (psymbol_compare): Update.
8358 (add_psymbol_to_bcache): Clear the entire psymbol.
8359 (maintenance_check_psymtabs): Update.
8360 * psympriv.h (struct partial_symbol): Don't derive from
8361 general_symbol_info.
8362 <obj_section, unrelocated_address, address,
8363 set_unrelocated_address>: Update.
8364 <ginfo>: New member.
8365 * dwarf-index-write.c (write_psymbols, debug_names::insert)
8366 (debug_names::write_psymbols): Update.
8367
8368 2019-05-04 Tom de Vries <tdevries@suse.de>
8369
8370 * contrib/cc-with-tweaks.sh: Support -n arg.
8371
8372 2019-05-04 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8373
8374 * corelow.c (core_target::detach): Ensure frame cache and
8375 register caches are cleared.
8376 inferior.c (exit_inferior_1): Likewise.
8377
8378 2019-05-03 Sandra Loosemore <sandra@codesourcery.com>
8379 Tom Tromey <tom@tromey.com>
8380
8381 * dictionary.c (collate_pending_symbols_by_language): Remove
8382 "struct" from foreach.
8383 * symtab.c (lookup_global_symbol_from_objfile)
8384 (lookup_symbol_in_objfile_from_linkage_name): Remove "struct" from
8385 foreach.
8386 * ser-tcp.c (net_open): Remove "struct" from foreach.
8387 * objfiles.c (objfile_relocate, objfile_rebase)
8388 (objfile_has_symbols): Remove "struct" from foreach.
8389 * minsyms.c (lookup_minimal_symbol_by_pc_section): Remove "struct"
8390 from foreach.
8391 * dwarf2read.c (handle_struct_member_die): Remove "struct" from
8392 foreach.
8393 * darwin-nat.c (thread_info_from_private_thread_info): Remove
8394 "struct" from foreach.
8395 * ada-lang.c (create_excep_cond_exprs)
8396 (ada_exception_catchpoint_cond_string): Remove "struct" from
8397 foreach.
8398
8399 2019-05-03 Tom Tromey <tromey@adacore.com>
8400
8401 * ada-exp.y (convert_char_literal): Check suffix of each
8402 enumerator.
8403
8404 2019-05-03 Dilyan Palauzov <dilyan.palauzov@aegee.org>
8405
8406 PR ada/21406:
8407 * ada-exp.y (yywrap): Don't define.
8408 * ada-lex.l (%option): Add noyywrap
8409 (yywrap): Remove.
8410
8411 2019-05-03 Eli Zaretskii <eliz@gnu.org>
8412
8413 * common/common-defs.h [__MINGW32__ || __CYGWIN__]: Define
8414 _WIN32_WINNT to the XP level, unless already defined to a higher
8415 level.
8416
8417 * unittests/parse-connection-spec-selftests.c:
8418 * ser-tcp.c:
8419 * common/netstuff.c [USE_WIN32API]: Remove the _WIN32_WINNT
8420 override.
8421
8422 * symfile.c (find_separate_debug_file): Remove colon from the
8423 drive spec of DOS/Windows file names of the target, so that the
8424 file name produced from DEBUGDIR and the target's directory will
8425 be valid on DOS/Windows systems.
8426
8427 2019-05-02 Andrew Burgess <andrew.burgess@embecosm.com>
8428
8429 * rust-lang.c (val_print_struct): Handle printing structures
8430 containing strings.
8431
8432 2019-05-02 Tom Tromey <tromey@adacore.com>
8433
8434 * valarith.c (_initialize_valarith): Remove.
8435
8436 2019-05-01 Tom Tromey <tromey@adacore.com>
8437
8438 * ada-lang.c (ada_value_primitive_field): Treat more fields as
8439 bitfields.
8440
8441 2019-05-01 Tom Tromey <tromey@adacore.com>
8442
8443 * ada-lang.c (ada_value_assign): Correctly compute starting offset
8444 for big-endian copies.
8445
8446 2019-04-30 Ali Tamur <tamur@google.com>
8447 * gdb/dwarf2read.c (read_3_bytes): New declaration.
8448 (read_attribute_value): Added DW_FORM_strx1-4 cases.
8449 (read_3_bytes): New function.
8450
8451 2019-04-30 Joel Brobecker <brobecker@adacore.com>
8452
8453 * windows-nat.c (main_thread_id): Delete.
8454 (handle_output_debug_string): Replace main_thread_id by
8455 current_event.dwThreadId.
8456 (fake_create_process): Likewise.
8457 (get_windows_debug_event) <CREATE_PROCESS_DEBUG_EVENT>:
8458 Do not set main_thread_id.
8459 <LOAD_DLL_DEBUG_EVENT>: Replace main_thread_id by
8460 current_event.dwThreadId.
8461 <UNLOAD_DLL_DEBUG_EVENT>: Likewise.
8462
8463 2019-04-30 Joel Brobecker <brobecker@adacore.com>
8464
8465 * windows-nat.c (get_windows_debug_event) <EXIT_PROCESS_DEBUG_EVENT>:
8466 Use current_event.dwThreadId instead of main_thread_id.
8467
8468 2019-04-30 Tom Tromey <tromey@adacore.com>
8469
8470 * ada-lang.c (ada_lookup_simple_minsyms): New function.
8471 (create_excep_cond_exprs): Iterate over program spaces.
8472 (ada_exception_catchpoint_cond_string): Examine all minimal
8473 symbols for exception types.
8474
8475 2019-04-30 Tom Tromey <tromey@adacore.com>
8476
8477 PR c++/24470:
8478 * dwarf2read.c (process_structure_scope): Handle case where type
8479 has template parameters but no symbol was created.
8480
8481 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8482 Chris January <chris.january@arm.com>
8483
8484 * f-typeprint.c (f_type_print_base): Print 'allocatable' type
8485 qualifier.
8486 * gdbtypes.h (TYPE_IS_ALLOCATABLE): Define.
8487
8488 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8489
8490 * f-typeprint.c (f_print_type): Update rules for printing
8491 whitespace.
8492 (f_type_print_varspec_suffix): Likewise.
8493
8494 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8495 Chris January <chris.january@arm.com>
8496
8497 * f-typeprint.c (f_type_print_varspec_suffix): Handle printing
8498 function arguments.
8499
8500 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8501
8502 * f-lang.c (build_fortran_types): Change name of void type to
8503 lower case.
8504 * f-typeprint.c (f_type_print_base): Print the name of the void
8505 type, rather than a fixed string.
8506 * f-valprint.c (f_decorations): Use lower case void string.
8507
8508 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8509 Chris January <chris.january@arm.com>
8510
8511 * dwarf2read.c (dwarf2_init_complex_target_type): Use different
8512 types for Fortran.
8513
8514 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8515 Chris January <chris.january@arm.com>
8516 David Lecomber <david.lecomber@arm.com>
8517
8518 * f-exp.y (BINOP_INTRINSIC): New token.
8519 (exp): New parser rule handling BINOP_INTRINSIC.
8520 (f77_keywords): Add new builtin procedures.
8521 * f-lang.c (evaluate_subexp_f): Handle BINOP_MOD, UNOP_FORTRAN_CEILING,
8522 UNOP_FORTRAN_FLOOR, BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
8523 (operator_length_f): Handle UNOP_FORTRAN_CEILING,
8524 UNOP_FORTRAN_FLOOR, BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
8525 (print_unop_subexp_f): New function.
8526 (print_binop_subexp_f): New function.
8527 (print_subexp_f): Handle UNOP_FORTRAN_CEILING, UNOP_FORTRAN_FLOOR,
8528 BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
8529 (dump_subexp_body_f): Likewise.
8530 (operator_check_f): Likewise.
8531 * fortran-operator.def: Add UNOP_FORTRAN_CEILING, UNOP_FORTRAN_FLOOR,
8532 BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX
8533
8534 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8535
8536 * gdb/expprint.c (dump_subexp_body_standard): Remove use of
8537 UNOP_KIND.
8538 * gdb/expression.h (exp_opcode): Include 'fortran-operator.def'.
8539 * gdb/f-exp.y (exp): Rename UNOP_KIND to UNOP_FORTRAN_KIND.
8540 * gdb/f-lang.c (evaluate_subexp_f): Likewise.
8541 (operator_length_f): New fuction.
8542 (print_subexp_f): New function.
8543 (op_name_f): New function.
8544 (dump_subexp_body_f): New function.
8545 (operator_check_f): New function.
8546 (exp_descriptor_f): Replace standard expression handling functions
8547 with new functions.
8548 * gdb/fortran-operator.def: New file.
8549 * gdb/parse.c (operator_length_standard): Remove use of UNOP_KIND.
8550 * gdb/std-operator.def: Remove UNOP_KIND.
8551
8552 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8553
8554 * std-operator.def: Remove unbalanced, stray double quote
8555 character.
8556
8557 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8558 Chris January <chris.january@arm.com>
8559 Daniel Everett <daniel.everett@arm.com>
8560 Nick Forrington <nick.forrington@arm.com>
8561 Richard Bunt <richard.bunt@arm.com>
8562
8563 * cp-valprint.c (cp_print_value_fields): Allow an additional level
8564 of depth when printing anonymous structs or unions.
8565 * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer):
8566 Don't print either the top-level value, or the children if the
8567 max-depth is exceeded.
8568 (ppscm_print_children): When printing the key of a map, allow one
8569 extra level of depth.
8570 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Don't
8571 print either the top-level value, or the children if the max-depth
8572 is exceeded.
8573 (print_children): When printing the key of a map, allow one extra
8574 level of depth.
8575 * python/py-value.c (valpy_format_string): Add max_depth keyword.
8576 * valprint.c: (PRINT_MAX_DEPTH_DEFAULT): Define.
8577 (user_print_options): Initialise max_depth field.
8578 (val_print_scalar_or_string_type_p): New function.
8579 (val_print): Check to see if the max depth has been reached.
8580 (val_print_check_max_depth): Define new function.
8581 (show_print_max_depth): New function.
8582 (_initialize_valprint): Add 'print max-depth' option.
8583 * valprint.h (struct value_print_options) <max_depth>: New field.
8584 (val_print_check_max_depth): Declare new function.
8585 * NEWS: Document new feature.
8586
8587 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8588
8589 * ada-lang.c (ada_language_defn): Initialise new field.
8590 * c-lang.c (c_is_string_type_p): New function.
8591 (c_language_defn): Initialise new field.
8592 (cplus_language_defn): Initialise new field.
8593 (asm_language_defn): Initialise new field.
8594 (minimal_language_defn): Initialise new field.
8595 * c-lang.h (c_is_string_type_p): Declare new function.
8596 * d-lang.c (d_language_defn): Initialise new field.
8597 * f-lang.c (f_is_string_type_p): New function.
8598 (f_language_defn): Initialise new field.
8599 * go-lang.c (go_is_string_type_p): New function.
8600 (go_language_defn): Initialise new field.
8601 * language.c (default_is_string_type_p): New function.
8602 (unknown_language_defn): Initialise new field.
8603 (auto_language_defn): Initialise new field.
8604 * language.h (struct language_defn) <la_is_string_type_p>: New
8605 member variable.
8606 (default_is_string_type_p): Declare new function.
8607 * m2-lang.c (m2_language_defn): Initialise new field.
8608 * objc-lang.c (objc_language_defn): Initialise new field.
8609 * opencl-lang.c (opencl_language_defn): Initialise new field.
8610 * p-lang.c (pascal_is_string_type_p): New function.
8611 (pascal_language_defn): Initialise new field.
8612 * rust-lang.c (rust_is_string_type_p): New function.
8613 (rust_language_defn): Initialise new field.
8614
8615 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8616
8617 * language.h (struct language_defn) <la_struct_too_deep_ellipsis>:
8618 New field.
8619 * ada-lang.c (ada_language_defn): Initialise new field.
8620 * c-lang.c (c_language_defn): Likewise.
8621 (cplus_language_defn): Likewise.
8622 (asm_language_defn): Likewise.
8623 (minimal_language_defn): Likewise.
8624 * d-lang.c (d_language_defn): Likewise.
8625 * f-lang.c (f_language_defn): Likewise.
8626 * go-lang.c (go_language_defn): Likewise.
8627 * language.c (unknown_language_defn): Likewise.
8628 (auto_language_defn): Likewise.
8629 * m2-lang.c (m2_language_defn): Likewise.
8630 * objc-lang.c (objc_language_defn): Likewise.
8631 * opencl-lang.c (opencl_language_defn): Likewise.
8632 * p-lang.c (pascal_language_defn): Likewise.
8633 * rust-lang.c (rust_language_defn): Likewise.
8634
8635 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8636
8637 * ada-lang.c (ada_is_character_type): Change return type to bool.
8638 (ada_is_string_type): Likewise.
8639 * ada-lang.h (ada_is_character_type): Update declaration
8640 (ada_is_string_type): Likewise.
8641
8642 2019-04-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8643
8644 Support style in 'frame|thread apply'
8645
8646 * gdbcmd.h (execute_command_to_string): New term_out parameter.
8647 * record.c (record_start, record_stop): Update callers of
8648 execute_command_to_string with false.
8649 * guile/guile.c (gdbscm_execute_gdb_command): Likewise.
8650 * ui-file.h (class ui_file): New term_out and can_emit_style_escape
8651 methods.
8652 (class string_file): New constructor with term_out parameter.
8653 Override methods term_out and can_emit_style_escape. New member
8654 term_out.
8655 (class stdio_file): Override can_emit_style_escape.
8656 (class tee_file): Override term_out and can_emit_style_escape.
8657 * utils.h (can_emit_style_escape): Remove.
8658 * utils.c (can_emit_style_escape): Likewise.
8659 Update all callers of can_emit_style_escape (SOMESTREAM) to
8660 SOMESTREAM->can_emit_style_escape.
8661 * source-cache.c (source_cache::get_source_lines): Likewise.
8662 * stack.c (frame_apply_command_count): Call execute_command_to_string
8663 passing the term_out characteristic of the current gdb_stdout.
8664 * thread.c (thr_try_catch_cmd): Likewise.
8665 * top.c (execute_command_to_string): pass term_out parameter
8666 to construct the string_file for the command output.
8667 * ui-file.c (term_cli_styling): New function (most code moved
8668 from utils.c can_emit_style_escape).
8669 (string_file::string_file, string_file::can_emit_style_escape,
8670 stdio_file::can_emit_style_escape, tee_file::term_out,
8671 tee_file::can_emit_style_escape): New functions.
8672
8673 2019-04-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8674
8675 * NEWS: Mention the new set|show may-call-functions.
8676 * infcall.c (may_call_functions_p): New variable.
8677 (show_may_call_functions_p): New function.
8678 (call_function_by_hand_dummy): Throws an error if not
8679 may-call-functions.
8680 (_initialize_infcall): Call add_setshow_boolean_cmd for
8681 may-call-functions.
8682
8683 2019-04-25 Keith Seitz <keiths@redhat.com>
8684
8685 PR c++/24367
8686 * cp-support.c (inspect_type): Don't attempt substitutions
8687 of symbol with the same name.
8688
8689 2019-04-25 Tom Tromey <tromey@adacore.com>
8690
8691 PR gdb/24475:
8692 * event-top.c (gdb_rl_callback_handler): Make "gdb_rl_expt"
8693 static.
8694
8695 2019-04-25 Tom Tromey <tromey@adacore.com>
8696
8697 * xml-support.c (struct gdb_xml_parser) <set_error>: Take an
8698 rvalue reference.
8699 (gdb_xml_start_element_wrapper, gdb_xml_end_element_wrapper)
8700 (gdb_xml_parser::parse): Use std::move.
8701 * python/python-internal.h (gdbpy_convert_exception): Take a const
8702 reference.
8703 * python/py-value.c (valpy_getitem, valpy_nonzero): Use
8704 std::move.
8705 * python/py-utils.c (gdbpy_convert_exception): Take a const
8706 reference.
8707 * python/py-inferior.c (infpy_write_memory, infpy_search_memory):
8708 Use std::move.
8709 * python/py-breakpoint.c (bppy_set_condition, bppy_set_commands):
8710 Use std::move.
8711 * mi/mi-main.c (mi_print_exception): Take a const reference.
8712 * main.c (handle_command_errors): Take a const reference.
8713 * linespec.c (parse_linespec): Use std::move.
8714 * infcall.c (run_inferior_call): Use std::move.
8715 (call_function_by_hand_dummy): Use std::move.
8716 * exec.c (try_open_exec_file): Use std::move.
8717 * exceptions.h (exception_print, exception_fprintf)
8718 (exception_print_same): Update.
8719 * exceptions.c (print_exception, exception_print)
8720 (exception_fprintf, exception_print_same): Change parameters to
8721 const reference.
8722 * event-top.c (gdb_rl_callback_read_char_wrapper): Update.
8723 * common/new-op.c: Use std::move.
8724 * common/common-exceptions.h (struct gdb_exception): Add move
8725 constructor.
8726 (struct gdb_exception_error, struct gdb_exception_quit, struct
8727 gdb_quit_bad_alloc): Change constructor to move constructor.
8728 (throw_exception): Change parameter to rvalue reference.
8729 * common/common-exceptions.c (throw_exception): Take rvalue
8730 reference.
8731 * cli/cli-interp.c (safe_execute_command): Use std::move.
8732 * breakpoint.c (insert_bp_location, location_to_sals): Use
8733 std::move.
8734
8735 2019-04-25 Tom Tromey <tromey@adacore.com>
8736
8737 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception)
8738 (gdbscm_throw_gdb_exception): Take a gdbscm_gdb_exception.
8739 * guile/scm-block.c, guile/scm-breakpoint.c, guile/scm-cmd.c,
8740 guile/scm-disasm.c, guile/scm-frame.c, guile/scm-lazy-string.c,
8741 guile/scm-math.c, guile/scm-param.c, guile/scm-ports.c,
8742 guile/scm-symbol.c, guile/scm-symtab.c, guile/scm-type.c,
8743 guile/scm-value.c: Use unpack.
8744 * guile/guile-internal.h (gdbscm_scm_from_gdb_exception): Take a
8745 gdbscm_gdb_exception.
8746 (gdbscm_throw_gdb_exception): Likewise.
8747 (struct gdbscm_gdb_exception): New.
8748 (unpack): New function.
8749 (gdbscm_wrap): Use unpack.
8750
8751 2019-04-25 Tom Tromey <tromey@adacore.com>
8752
8753 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept)
8754 (gdb_rl_callback_handler): Use std::move.
8755 * common/common-exceptions.h (struct gdb_exception): Add move
8756 assignment operator.
8757 (throw_exception_sjlj): Change "exception" to const reference.
8758 * common/common-exceptions.c (exceptions_state_mc_catch): Update.
8759 (throw_exception_sjlj): Change "exception" to const reference.
8760
8761 2019-04-25 Tom Tromey <tromey@adacore.com>
8762
8763 * xml-support.c (gdb_xml_parser::gdb_xml_parser): Update.
8764 * python/py-value.c (valpy_getitem, valpy_nonzero): Update.
8765 * python/py-inferior.c (infpy_write_memory, infpy_search_memory):
8766 Update.
8767 * python/py-breakpoint.c (bppy_set_condition, bppy_set_commands):
8768 Update.
8769 * mi/mi-interp.c (mi_interp::exec): Update.
8770 * linespec.c (parse_linespec): Update.
8771 * infcall.c (run_inferior_call): Update.
8772 * guile/scm-value.c (gdbscm_value_to_lazy_string): Update.
8773 * guile/scm-symbol.c (gdbscm_lookup_symbol)
8774 (gdbscm_lookup_global_symbol): Update.
8775 * guile/scm-param.c (gdbscm_parameter_value): Update.
8776 * guile/scm-frame.c (gdbscm_frame_read_register)
8777 (gdbscm_frame_read_var): Update.
8778 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Update.
8779 * exec.c (try_open_exec_file): Update.
8780 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept)
8781 (gdb_rl_callback_handler): Update.
8782 * common/common-exceptions.h (exception_none): Don't declare.
8783 * common/common-exceptions.c (exception_none): Don't define.
8784 (struct catcher) <exception>: Update.
8785 * cli/cli-interp.c (safe_execute_command): Update.
8786 * breakpoint.c (insert_bp_location, location_to_sals): Update.
8787
8788 2019-04-25 Ali Tamur <tamur@google.com>
8789
8790 * dwarf2read.c (skip_one_die): Add DW_FORM_strx.
8791 (read_attribute_value): Likewise.
8792 (dwarf2_read_addr_index): Update comment.
8793 (read_str_index): Add DW_FORM_strx.
8794 (dwarf2_string_attr): Likewise.
8795 (dwarf2_const_value_attr): Likewise.
8796 (dump_die_shallow): Likewise.
8797 (dwarf2_fetch_constant_bytes): Likewise.
8798 (skip_form_bytes): Likewise.
8799 * testsuite/lib/dwarf.exp (_handle_DW_FORM): Add DW_FORM_strx.
8800
8801 2019-04-25 Sergio Durigan Junior <sergiodj@redhat.com>
8802
8803 PR corefiles/11608
8804 PR corefiles/18187
8805 * linux-tdep.c (dump_mapping_p): Add new parameters ADDR and
8806 OFFSET. Verify if current mapping contains an ELF header.
8807 (linux_find_memory_regions_full): Adjust call to
8808 dump_mapping_p.
8809
8810 2019-04-25 Sandra Loosemore <sandra@codesourcery.com>
8811 Kang Li <kanglictf@gmail.com>
8812
8813 PR gdb/21600
8814
8815 * dwarf2-frame.c (read_initial_length): Be consistent about using
8816 unsigned representation of length.
8817 (decode_frame_entry_1): Likewise. Check for wraparound of
8818 end pointer as well as buffer overflow.
8819
8820 2019-04-24 Sergio Durigan Junior <sergiodj@redhat.com>
8821
8822 * aarch64-tdep.c (aarch64_gdbarch_init): Use "pulongest" to print
8823 "vq".
8824
8825 2019-04-24 Tom Tromey <tromey@adacore.com>
8826
8827 * amd64-tdep.c (amd64_has_unaligned_fields): Ignore bitfields.
8828
8829 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8830
8831 * s12z-tdep.c (s12z_unwind_pc): Delete.
8832 (s12z_unwind_sp): Delete.
8833 (s12z_gdbarch_init): Don't register deleted functions with
8834 gdbarch.
8835
8836 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8837
8838 * rl78-tdep.c (rl78_unwind_sp): Delete.
8839 (rl78_gdbarch_init): Don't register deleted function with gdbarch.
8840
8841 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8842
8843 * xstormy16-tdep.c (xstormy16_unwind_sp): Delete.
8844 (xstormy16_unwind_pc): Delete.
8845 (xstormy16_dummy_id): Delete.
8846 (xstormy16_gdbarch_init): Don't register deleted functions with
8847 gdbarch.
8848
8849 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8850
8851 * vax-tdep.c (vax_unwind_pc): Delete.
8852 (vax_gdbarch_init): Don't register deleted function with gdbarch.
8853
8854 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8855
8856 * v850-tdep.c (v850_unwind_sp): Delete.
8857 (v850_unwind_pc): Delete.
8858 (v850_dummy_id): Delete.
8859 (v850_gdbarch_init): Don't register deleted functions with
8860 gdbarch.
8861
8862 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8863
8864 * tilegx-tdep.c (tilegx_unwind_sp): Delete.
8865 (tilegx_unwind_pc): Delete.
8866 (tilegx_unwind_dummy_id): Delete.
8867 (tilegx_gdbarch_init): Don't register deleted functions with
8868 gdbarch.
8869
8870 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8871
8872 * tic6x-tdep.c (tic6x_unwind_sp): Delete.
8873 (tic6x_dummy_id): Delete.
8874 (tic6x_gdbarch_init): Don't register deleted functions with
8875 gdbarch.
8876
8877 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8878
8879 * sparc-tdep.c (sparc_unwind_pc): Delete.
8880 (sparc32_gdbarch_init): Don't register deleted function with
8881 gdbarch.
8882
8883 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8884
8885 * sh-tdep.c (sh_unwind_sp): Delete.
8886 (sh_unwind_pc): Delete.
8887 (sh_dummy_id): Delete.
8888 (sh_gdbarch_init): Don't register deleted functions with
8889 gdbarch.
8890
8891 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8892
8893 * score-tdep.c (score_unwind_sp): Delete.
8894 (score_unwind_pc): Delete.
8895 (score_dummy_id): Delete.
8896 (score_gdbarch_init): Don't register deleted functions with
8897 gdbarch.
8898
8899 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8900
8901 * rx-tdep.c (rx_unwind_pc): Delete.
8902 (rx_unwind_sp): Delete.
8903 (rx_dummy_id): Delete.
8904 (rx_gdbarch_init): Don't register deleted functions with
8905 gdbarch. Update comment.
8906
8907 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8908
8909 * rs6000-tdep.c (rs6000_unwind_pc): Delete.
8910 (rs6000_dummy_id): Delete.
8911 (rs6000_gdbarch_init): Don't register deleted functions with
8912 gdbarch.
8913
8914 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8915
8916 * or1k-tdep.c (or1k_dummy_id): Delete.
8917 (or1k_gdbarch_init): Don't register deleted function with gdbarch.
8918
8919 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8920
8921 * nios2-tdep.c (nios2_dummy_id): Delete.
8922 (nios2_unwind_sp): Delete.
8923 (nios2_gdbarch_init): Don't register deleted functions with
8924 gdbarch.
8925
8926 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8927
8928 * nds32-tdep.c (nds32_dummy_id): Delete.
8929 (nds32_unwind_pc): Delete.
8930 (nds32_unwind_sp): Delete.
8931 (nds32_gdbarch_init): Don't register deleted functions with
8932 gdbarch.
8933
8934 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8935
8936 * msp430-tdep.c (msp430_unwind_pc): Delete.
8937 (msp430_unwind_sp): Delete.
8938 (msp430_dummy_id): Delete.
8939 (msp430_gdbarch_init): Don't register deleted functions with
8940 gdbarch.
8941
8942 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8943
8944 * moxie-tdep.c (moxie_unwind_sp): Delete.
8945 (moxie_unwind_pc): Delete.
8946 (moxie_dummy_id): Delete.
8947 (moxie_gdbarch_init): Don't register deleted functions with
8948 gdbarch.
8949
8950 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8951
8952 * mn10300-tdep.c (mn10300_dummy_id): Delete.
8953 (mn10300_unwind_pc): Delete.
8954 (mn10300_unwind_sp): Delete.
8955 (mn10300_push_dummy_call): Use gdbarch_unwind_sp not
8956 mn10300_unwind_sp.
8957 (mn10300_frame_unwind_init): Don't register deleted functions with
8958 gdbarch.
8959
8960 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8961
8962 * mep-tdep.c (mep_unwind_pc): Delete.
8963 (mep_unwind_sp): Delete.
8964 (mep_dummy_id): Delete.
8965 (mep_gdbarch_init): Don't register deleted functions with
8966 gdbarch.
8967
8968 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8969
8970 * m68hc11-tdep.c (m68hc11_unwind_pc): Delete.
8971 (m68hc11_unwind_sp): Delete.
8972 (m68hc11_gdbarch_init): Don't register deleted functions with
8973 gdbarch.
8974
8975 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8976
8977 * m32r-tdep.c (m32r_unwind_sp): Delete.
8978 (m32r_unwind_pc): Delete.
8979 (m32r_dummy_id): Delete.
8980 (m32r_gdbarch_init): Don't register deleted functions with
8981 gdbarch.
8982
8983 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8984
8985 * m32c-tdep.c (m32c_unwind_pc): Delete.
8986 (m32c_unwind_sp): Delete.
8987 (m32c_dummy_id): Delete.
8988 (m32c_gdbarch_init): Don't register deleted functions with
8989 gdbarch.
8990
8991 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8992
8993 * gdb/lm32-tdep.c (lm32_unwind_sp): Delete.
8994 (lm32_unwind_pc): Delete.
8995 (lm32_dummy_id): Delete.
8996 (lm32_gdbarch_init): Don't register deleted functions with
8997 gdbarch.
8998
8999 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9000
9001 * gdb/iq2000-tdep.c (iq2000_unwind_sp): Delete.
9002 (iq2000_unwind_pc): Delete.
9003 (iq2000_dummy_id): Delete.
9004 (iq2000_gdbarch_init): Don't register deleted functions with
9005 gdbarch.
9006
9007 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9008
9009 * nds32-tdep.c (nds32_type_align): Delete.
9010 (nds32_push_dummy_call): Use type_align instead.
9011
9012 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9013
9014 * arm-tdep.c (arm_type_align): Only handle vector override case.
9015 (arm_push_dummy_call): Use type_align.
9016 (arm_gdbarch_init): Register arm_type_align gdbarch function.
9017
9018 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
9019
9020 * aarch64-tdep.c (aarch64_type_align): Only handle vector override
9021 case.
9022 (pass_on_stack): Use type_align.
9023 (aarch64_gdbarch_init): Register aarch64_type_align gdbarch
9024 function.
9025
9026 2019-04-23 Tom Tromey <tromey@adacore.com>
9027
9028 * dwarf2read.c (line_header::file_name_at): Remove unused
9029 overload.
9030
9031 2019-04-23 Tom de Vries <tdevries@suse.de>
9032
9033 PR gdb/24438
9034 * contrib/cc-with-tweaks.sh: Remove superfluous .alt file after dwz
9035 invocation.
9036
9037
9038 2019-03-27 Ali Tamur <tamur@google.com>
9039
9040 * dwarf2-frame.c(dwarf_expr_executor::get_addr_index): Update comment
9041 * dwarf2expr.c(dwarf_expr_context::execute_stack_op): Add DW_OP_addrx
9042 * dwarf2expr.h(dwarf_expr_context::offset): Update comment
9043 (dwarf_expr_context::get_addr_index): Likewise
9044 * dwarf2loc.c(dwarf_evaluate_loc_desc::get_addr_index): Likewise
9045 (symbol_needs_eval_context::get_addr_index): Likewise
9046 (disassemble_dwarf_expression): Add DW_OP_addrx
9047 * dwarf2read.c(attr_value_as_address): Add DW_FORM_addrx
9048 (read_cutu_die_from_dwo): Update comment
9049 (skip_one_die): Add DW_FORM_addrx
9050 (read_attribute_value): Likewise
9051 (var_decode_location): Add DW_OP_addrx
9052 (dwarf2_const_value_attr): Add DW_FORM_addrx
9053 (dump_die_shallow): Likewise
9054 (dwarf2_fetch_constant_bytes): Likewise
9055 (decode_locdesc): Add DW_OP_addrx
9056 (skip_form_bytes): Add DW_FORM_addrx
9057
9058 2019-04-22 Ali Tamur <tamur@google.com>
9059
9060 * MAINTAINERS (Write After Approval): Add self.
9061
9062 2019-04-22 Simon Marchi <simon.marchi@efficios.com>
9063
9064 * solib-svr4.c (get_svr4_info): Add pspace parameter.
9065 (svr4_keep_data_in_core): Pass current_program_space to get_svr4_info.
9066 (open_symbol_file_object): Likewise.
9067 (svr4_default_sos): Add info parameter.
9068 (svr4_read_so_list): Likewise.
9069 (svr4_current_sos_direct): Adjust functions calls to pass down
9070 info.
9071 (svr4_current_sos_1): Add info parameter.
9072 (svr4_current_sos): Call get_svr4_info, pass info down to
9073 svr4_current_sos_1.
9074 (svr4_fetch_objfile_link_map): Pass objfile->pspace to
9075 get_svr4_info.
9076 (svr4_in_dynsym_resolve_code): Pass current_program_space to
9077 get_svr4_info.
9078 (probes_table_htab_remove_objfile_probes): Pass objfile->pspace
9079 to get_svr4_info.
9080 (probes_table_remove_objfile_probes): Likewise.
9081 (register_solib_event_probe): Add info parameter.
9082 (solist_update_incremental): Pass info parameter down to
9083 svr4_read_so_list.
9084 (disable_probes_interface): Add info parameter.
9085 (svr4_handle_solib_event): Pass current_program_space to
9086 get_svr4_info. Adjust disable_probes_interface cleanup.
9087 (svr4_create_probe_breakpoints): Add info parameter, pass it
9088 down to register_solib_event_probe.
9089 (svr4_create_solib_event_breakpoints): Add info parameter,
9090 pass it down to svr4_create_probe_breakpoints.
9091 (enable_break): Pass info down to
9092 svr4_create_solib_event_breakpoints.
9093 (svr4_solib_create_inferior_hook): Pass current_program_space to
9094 get_svr4_info.
9095 (svr4_clear_solib): Likewise.
9096
9097 2019-04-22 Pedro Alves <palves@redhat.com>
9098
9099 * solib-svr4.c (svr4_free_objfile_observer): New.
9100 (probe_and_action::objfile): New field.
9101 (probes_table_htab_remove_objfile_probes)
9102 (probes_table_remove_objfile_probes): New functions.
9103 (register_solib_event_probe): Add 'objfile' parameter. Store it
9104 in the new probe_and_action. Don't store the probe in 'lookup'.
9105 (svr4_create_probe_breakpoints): Pass objfile to
9106 register_solib_event_probe.
9107 (_initialize_svr4_solib): Register a free_objfile observer.
9108
9109 2019-04-19 Tom Tromey <tom@tromey.com>
9110
9111 * common/queue.h: Remove.
9112
9113 2019-04-19 Tom Tromey <tom@tromey.com>
9114
9115 * event-loop.c: Don't include "common/queue.h".
9116
9117 2019-04-19 Tom Tromey <tom@tromey.com>
9118
9119 * remote.c (remote_target): Use delete.
9120 * remote-notif.h: Include <list>, not "common/queue.h".
9121 (notif_client_p): Remove typedef.
9122 (remote_notif_state): Add constructor, destructor, initializer.
9123 <notif_queue>: Now a std::list.
9124 (remote_notif_state_xfree): Don't declare.
9125 * remote-notif.c (remote_notif_process, handle_notification)
9126 (remote_notif_state_allocate): Update.
9127 (~remote_notif_state): Rename from remote_notif_state_xfree.
9128
9129 2019-04-19 Tom Tromey <tom@tromey.com>
9130
9131 * symfile.c (reread_symbols): Update.
9132 * objfiles.c (objfile_register_static_link)
9133 (objfile_lookup_static_link): Update
9134 (~objfile) Don't delete static_links.
9135 * objfiles.h (struct objfile) <static_links>: Now an htab_up.
9136
9137 2019-04-19 Tom Tromey <tom@tromey.com>
9138
9139 * type-stack.h (struct type_stack) <insert>: Constify string.
9140 * type-stack.c (type_stack::insert): Constify string.
9141 * gdbtypes.h (lookup_template_type): Update.
9142 (address_space_name_to_int): Update.
9143 * gdbtypes.c (address_space_name_to_int): Make space_identifier
9144 const.
9145 (lookup_template_type): Make name const.
9146 * c-exp.y: Update rules.
9147 (lex_one_token, classify_name, classify_inner_name)
9148 (c_print_token): Update.
9149 * p-exp.y: Update rules.
9150 (yylex): Update.
9151 * f-exp.y: Update rules.
9152 (yylex): Update.
9153 * d-exp.y: Update rules.
9154 (lex_one_token, classify_name, classify_inner_name): Update.
9155 * parse.c (write_dollar_variable, copy_name): Return std::string.
9156 * parser-defs.h (copy_name): Change return type.
9157 * m2-exp.y: Update rules.
9158 (yylex): Update.
9159 * go-exp.y (lex_one_token): Update.
9160 Update rules.
9161 (classify_unsafe_function, classify_packaged_name)
9162 (classify_name, yylex): Update.
9163
9164 2019-04-19 Sergei Trofimovich <siarheit@google.com>
9165
9166 * configure.ac: add --enable-source-highlight switch.
9167 * configure: Regenerate.
9168 * top.c (print_gdb_version): plumb --enable-source-highlight
9169 status to "show configuration".
9170
9171 2019-04-19 Tom Tromey <tromey@adacore.com>
9172
9173 * ada-lang.c (ada_is_variant_part, ada_to_fixed_type_1):
9174 Check ADA_TYPE_P.
9175 (empty_record, ada_template_to_fixed_record_type_1)
9176 (template_to_static_fixed_type)
9177 (to_record_with_fixed_variant_part): Use INIT_NONE_SPECIFIC.
9178 * cp-abi.c (value_rtti_type): Check HAVE_CPLUS_STRUCT.
9179 * gdbtypes.h (INIT_NONE_SPECIFIC, ADA_TYPE_P): New
9180 macros.
9181
9182 2019-04-19 Ilya Yu. Malakhov <malakhov@mcst.ru>
9183
9184 PR symtab/24423:
9185 * source.c (print_source_lines_base): Advance "iter" when a
9186 control character is seen.
9187
9188 2019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9189
9190 * inferior.h (struct infcall_suspend_state_deleter):
9191 Catch exception in destructor to avoid crash.
9192
9193 2019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9194
9195 * cli/cli-cmds.c (_initialize_cli_cmds): Move "shell" "!" alias
9196 close to the add_com "shell".
9197
9198 2019-04-18 Tom Tromey <tromey@adacore.com>
9199
9200 * process-stratum-target.h (class process_stratum_target)
9201 <stratum>: Add "final".
9202
9203 2019-04-17 Tom Tromey <tromey@adacore.com>
9204
9205 * dwarf2read.c (dwarf2_init_complex_target_type): Check "tt"
9206 against nullptr before use.
9207
9208 2019-04-17 Alan Hayward <alan.hayward@arm.com>
9209
9210 * nat/linux-waitpid.c (linux_debug): Call debug_vprintf.
9211
9212 2019-04-17 Jim Wilson <jimw@sifive.com>
9213 Andrew Burgess <andrew.burgess@embecosm.com>
9214
9215 * riscv-tdep.c (riscv_breakpoint_kind_from_pc): Hanndle case where
9216 code read might fail, assume 4-byte breakpoint in that case.
9217
9218 2019-04-15 Leszek Swirski <leszeks@google.com>
9219
9220 * amd64-tdep.c (amd64_classify_aggregate): Use cp_pass_by_reference
9221 rather than a hand-rolled POD check when checking for forced MEMORY
9222 classification.
9223
9224 2019-04-15 Alan Hayward <alan.hayward@arm.com>
9225
9226 * aarch64-linux-nat.c (store_sveregs_to_thread): Set vector length.
9227 * nat/aarch64-sve-linux-ptrace.c (aarch64_sve_set_vq): New
9228 function.
9229 (aarch64_sve_regs_copy_to_reg_buf): Remove VG checks.
9230 (aarch64_sve_regs_copy_from_reg_buf): Likewise.
9231 * nat/aarch64-sve-linux-ptrace.h (aarch64_sve_set_vq): New
9232 declaration.
9233
9234 2019-04-15 Alan Hayward <alan.hayward@arm.com>
9235
9236 * aarch64-linux-nat.c
9237 (aarch64_linux_nat_target::thread_architecture): Add override.
9238 * aarch64-tdep.c (aarch64_gdbarch_init): Ensure different tdesc for
9239 each VQ.
9240
9241 2019-04-15 Alan Hayward <alan.hayward@arm.com>
9242
9243 * aarch64-tdep.c (aarch64_gdbarch_init): Move gdbarch lookup.
9244
9245 2019-04-13 Andrew Burgess <andrew.burgess@embecosm.com>
9246
9247 * dwarf2read.c (dwarf2_init_complex_target_type): Handle complex
9248 target types of size 96-bits, add some additional comments, and
9249 check that the builtin type we found was the correct size.
9250
9251 2019-04-12 Eli Zaretskii <eliz@gnu.org>
9252
9253 * utils.c (prompt_for_continue): Don't restore the styling at the
9254 end, as applied_style has the wrong value. This fixes styling in
9255 long lists of file names that are interrupted by the "Continue?"
9256 prompt.
9257
9258 2019-04-12 Andrew Burgess <andrew.burgess@embecosm.com>
9259
9260 * ada-lang.c (ada_language_defn): Remove use of LANG_MAGIC.
9261 * c-lang.c (c_language_defn): Likewise.
9262 (cplus_language_defn): Likewise.
9263 (asm_language_defn): Likewise.
9264 (minimal_language_defn): Likewise.
9265 * d-lang.c (d_language_defn): Likewise.
9266 * f-lang.c (f_language_defn): Likewise.
9267 * go-lang.c (go_language_defn): Likewise.
9268 * language.c (unknown_language_defn): Likewise.
9269 (auto_language_defn): Likewise.
9270 * language.h (struct language_defn): Remove la_magic field.
9271 (LANG_MAGIC): Delete.
9272 * m2-lang.c (m2_language_defn): Remove use of LANG_MAGIC.
9273 * objc-lang.c (objc_language_defn): Likewise.
9274 * opencl-lang.c (opencl_language_defn): Likewise.
9275 * p-lang.c (pascal_language_defn): Likewise.
9276 * rust-lang.c (rust_language_defn): Likewise.
9277
9278 2019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
9279
9280 * riscv-tdep.c (riscv_type_align): New function.
9281 (riscv_type_alignment): Delete.
9282 (riscv_arg_location): Use 'type_align'.
9283 (riscv_gdbarch_init): Register riscv_type_align gdbarch function.
9284
9285 2019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
9286
9287 * gdbtypes.c (type_align): A struct with no non-static fields also
9288 has alignment of 1.
9289
9290 2019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
9291
9292 * riscv-tdep.c (riscv_call_arg_complex_float): Fix offset of first
9293 component to 0.
9294 (riscv_struct_info::riscv_struct_info): Initialise m_offsets
9295 member.
9296 (riscv_struct_info::analyse): New implementation using new
9297 analyse_inner member function.
9298 (riscv_struct_info::field_offset): New member function.
9299 (riscv_struct_info::m_offsets): New member variable.
9300 (riscv_struct_info::analyse_inner): New private member function,
9301 takes the old implementation of riscv_struct_info::analyse but
9302 extended to track field offsets.
9303 (riscv_call_arg_struct): Update the struct folding special cases
9304 to handle cases where empty C++ structs, which are non-zero
9305 length, are found.
9306 (riscv_arg_location): Initialise the length of each location, a
9307 non-zero length now indicates the location is in use.
9308 (riscv_push_dummy_call): Allow for the first location having a
9309 non-zero offset when setting up arguments.
9310 (riscv_return_value): Likewise, but for return values.
9311
9312 2019-04-11 Tom Tromey <tromey@adacore.com>
9313
9314 * utils.c (internal_vproblem): Make "msg" const.
9315
9316 2019-04-11 Alan Hayward <alan.hayward@arm.com>
9317
9318 * aarch64-tdep.c (aarch64_analyze_prologue_test): Reset saved regs.
9319 * trad-frame.c (trad_frame_reset_saved_regs): New function.
9320 (trad_frame_alloc_saved_regs): Call trad_frame_reset_saved_regs.
9321 * trad-frame.h (trad_frame_reset_saved_regs): New declaration.
9322
9323 2019-04-10 Kevin Buettner <kevinb@redhat.com>
9324
9325 * amd64-linux-nat.c (amd64_linux_collect_native_gregset): New
9326 function.
9327 (fill_gregset): Call amd64_linux_collect_native_gregset instead
9328 of amd64_collect_native_gregset.
9329 (amd64_linux_nat_target::store_registers): Likewise.
9330
9331 2019-04-10 Tom Tromey <tom@tromey.com>
9332
9333 * symtab.c (lookup_global_symbol_from_objfile)
9334 (lookup_symbol_in_objfile_from_linkage_name): Use the iterator.
9335 * objfiles.h (class separate_debug_iterator): New.
9336 (class separate_debug_range): New.
9337 (struct objfile) <separate_debug_objfiles>: New method.
9338 (objfile_separate_debug_iterate): Don't declare.
9339 * objfiles.c (separate_debug_iterator::operator++): Rename from
9340 objfile_separate_debug_iterate.
9341 (objfile_relocate, objfile_rebase, objfile_has_symbols): Use the
9342 iterator.
9343 * minsyms.c (lookup_minimal_symbol_by_pc_section): Use the
9344 iterator.
9345
9346 2019-04-10 Tom Tromey <tom@tromey.com>
9347
9348 * symfile.c (reread_symbols): Remove old comment.
9349 * objfiles.c (free_all_objfiles): Fix a typo.
9350
9351 2019-04-10 Tom Tromey <tom@tromey.com>
9352
9353 * ia64-tdep.c (ia64_get_dyn_info_list): Use foreach.
9354 * minsyms.c (lookup_minimal_symbol): Use foreach.
9355 (lookup_minimal_symbol_text, lookup_minimal_symbol_by_pc_name)
9356 (lookup_minimal_symbol_solib_trampoline): Likewise.
9357 * symfile.c (reread_symbols): Use foreach.
9358
9359 2019-04-09 Ivan Begert <ivanbegert@gmail.com>
9360 Tom Tromey <tromey@adacore.com>
9361
9362 PR rust/24414:
9363 * rust-exp.y (rust_parser::lex_number): Use strtoulst.
9364 (rust_lex_int_test): Change "value" to be LONGEST.
9365 (rust_lex_tests): Add test for long integer literal.
9366
9367 2019-04-09 Tom Tromey <tromey@adacore.com>
9368
9369 * remote.c (remote_target::remote_add_inferior): Change fake_pid_p
9370 to bool.
9371 (extended_remote_target::attach): Update.
9372 (remote_target::remote_notice_new_inferior): Update.
9373 (remote_target::add_current_inferior_and_thread): Update.
9374 * inferior.c (exit_inferior_1): Use "false".
9375 * corelow.c (add_to_thread_list): Make fake_pid_p bool.
9376
9377 2019-04-09 Simon Marchi <simon.marchi@efficios.com>
9378
9379 * infcmd.c (run_command_1): Pass -qualified to tbreak when using
9380 the "start" command.
9381
9382 2019-04-08 Kevin Buettner <kevinb@redhat.com>
9383
9384 * python/py-inferior.c (infpy_thread_from_thread_handle):
9385 Adjust comments to reflect renaming of thread_from_thread_handle
9386 to thread_from_handle. Adjust keywords. Fix type error message.
9387 (inferior_object_methods): Add thread_from_handle. Retain
9388 thread_from_thread_handle, but mark it as deprecated.
9389
9390 2019-04-08 Kevin Buettner <kevinb@redhat.com>
9391
9392 * gdbthread.h (find_thread_by_handle): Revise declaration.
9393 * thread.c (find_thread_by_handle): Likewise. Adjust
9394 implementation too.
9395 * python/py-inferior.c (infpy_thread_from_thread_handle): Add
9396 support for buffer objects as handles.
9397
9398 2019-04-08 Kevin Buettner <kevinb@redhat.com>
9399
9400 * python/py-infthread.c (thpy_thread_handle): New function.
9401 (thread_object_methods): Register thpy_thread_handle.
9402
9403 2019-04-08 Kevin Buettner <kevinb@redhat.com>
9404
9405 * gdbthread.h (thread_to_thread_handle): Declare.
9406 * thread.c (gdbtypes.h): Include.
9407 (thread_to_thread_handle): New function.
9408
9409 * target.h (struct target_ops): Add thread_info_to_thread_handle.
9410 (target_thread_info_to_thread_handle): Declare.
9411 * target.c (target_thread_info_to_thread_handle): New function.
9412 * target-debug.h (target_debug_print_gdb_byte_vector): Define.
9413 * target-delegates.c: Regenerate.
9414
9415 * linux-thread-db.c (class thread_db_target): Add method
9416 thread_info_to_thread_handle.
9417 (thread_db_target::thread_info_to_thread_handle): Define.
9418 * remote.c (class remote_target): Add new method
9419 thread_info_to_thread_handle.
9420 (remote_target::thread_info_to_thread_handle): Define.
9421
9422 2019-04-08 Pedro Alves <palves@redhat.com>
9423
9424 * common/common-exceptions.c (throw_exception): Don't create
9425 named object to throw; throw directly.
9426 (throw_it): Likewise. Don't initialize gdb_exception::message
9427 here, with new; pass FMT and AP to the ctor instead.
9428 * common/common-exceptions.h: Include <string>.
9429 (gdb_exception::gdb_exception(enum return_reason, enum errors,
9430 const char *, va_list)): New ctor. Use std::make_shared.
9431 (gdb_exception_error::gdb_exception_error(enum return_reason, enum
9432 errors)): Delete.
9433 (gdb_exception_error::gdb_exception_error(enum errors, const char
9434 *, va_list)): New.
9435 (gdb_exception_error::gdb_exception_error(const gdb_exception &)):
9436 Add assertion.
9437 (gdb_exception_quit::gdb_exception_quit(enum return_reason, enum
9438 errors)): Delete.
9439 (gdb_exception_quit::gdb_exception_quit(const char *, va_list)): New.
9440 (gdb_exception_quit::gdb_exception_quit(const gdb_exception &)):
9441 Add assertion.
9442
9443 2019-04-08 Tom Tromey <tom@tromey.com>
9444
9445 * valops.c (value_rtti_indirect_type): Replace throw_exception
9446 with throw.
9447 * tracefile-tfile.c (tfile_target_open): Replace throw_exception
9448 with throw.
9449 * thread.c (thr_try_catch_cmd): Replace throw_exception with
9450 throw.
9451 * target.c (target_translate_tls_address): Replace throw_exception
9452 with throw.
9453 * stack.c (frame_apply_command_count): Replace throw_exception
9454 with throw.
9455 * solib-spu.c (append_ocl_sos): Replace throw_exception with
9456 throw.
9457 * s390-tdep.c (s390_frame_unwind_cache): Replace throw_exception
9458 with throw.
9459 * rs6000-tdep.c (rs6000_frame_cache)
9460 (rs6000_epilogue_frame_cache): Replace throw_exception with throw.
9461 * remote.c: Replace throw_exception with throw.
9462 * record-full.c (record_full_message, record_full_wait_1)
9463 (record_full_restore): Replace throw_exception with throw.
9464 * record-btrace.c:
9465 (get_thread_current_frame_id, record_btrace_start_replaying)
9466 (cmd_record_btrace_bts_start, cmd_record_btrace_pt_start)
9467 (cmd_record_btrace_start): Replace throw_exception with throw.
9468 * parse.c (parse_exp_in_context_1): Replace throw_exception with
9469 throw.
9470 * linux-nat.c (detach_one_lwp, linux_resume_one_lwp)
9471 (resume_stopped_resumed_lwps): Replace throw_exception with throw.
9472 * linespec.c:
9473 (find_linespec_symbols): Replace throw_exception with throw.
9474 * infrun.c (displaced_step_prepare, resume): Replace
9475 throw_exception with throw.
9476 * infcmd.c (post_create_inferior): Replace throw_exception with
9477 throw.
9478 * inf-loop.c (inferior_event_handler): Replace throw_exception
9479 with throw.
9480 * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache)
9481 (i386_sigtramp_frame_cache): Replace throw_exception with throw.
9482 * frame.c (frame_unwind_pc, get_prev_frame_if_no_cycle)
9483 (get_prev_frame_always, get_frame_pc_if_available)
9484 (get_frame_address_in_block_if_available, get_frame_language):
9485 Replace throw_exception with throw.
9486 * frame-unwind.c (frame_unwind_try_unwinder): Replace
9487 throw_exception with throw.
9488 * eval.c (fetch_subexp_value, evaluate_var_value)
9489 (evaluate_funcall, evaluate_subexp_standard): Replace
9490 throw_exception with throw.
9491 * dwarf2loc.c (call_site_find_chain)
9492 (dwarf2_evaluate_loc_desc_full, dwarf2_locexpr_baton_eval):
9493 Replace throw_exception with throw.
9494 * dwarf2-frame.c (dwarf2_frame_cache): Replace throw_exception
9495 with throw.
9496 * darwin-nat.c (darwin_attach_pid): Replace throw_exception with
9497 throw.
9498 * cp-abi.c (baseclass_offset): Replace throw_exception with throw.
9499 * completer.c (complete_line_internal): Replace throw_exception
9500 with throw.
9501 * compile/compile-object-run.c (compile_object_run): Replace
9502 throw_exception with throw.
9503 * cli/cli-script.c (process_next_line): Replace throw_exception
9504 with throw.
9505 * btrace.c (btrace_compute_ftrace_pt, btrace_compute_ftrace)
9506 (btrace_enable, btrace_maint_update_pt_packets): Replace
9507 throw_exception with throw.
9508 * breakpoint.c (create_breakpoint, save_breakpoints): Replace
9509 throw_exception with throw.
9510 * break-catch-throw.c (re_set_exception_catchpoint): Replace
9511 throw_exception with throw.
9512 * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache)
9513 (amd64_epilogue_frame_cache): Replace throw_exception with throw.
9514 * aarch64-tdep.c (aarch64_make_prologue_cache)
9515 (aarch64_make_stub_cache): Replace throw_exception with throw.
9516
9517 2019-04-08 Tom Tromey <tom@tromey.com>
9518
9519 * common/common-exceptions.c (throw_exception): Rename from
9520 throw_exception_cxx. Remove old copy. Make argument const.
9521 (throw_it): Create and throw exception objects directly.
9522 * common/common-exceptions.h (throw_exception): Make argument
9523 const.
9524 (struct gdb_exception_error): Add constructor.
9525 (struct gdb_exception_quit): Add constructor.
9526
9527 2019-04-08 Tom Tromey <tom@tromey.com>
9528
9529 * common/common-exceptions.h (exception_rethrow): Don't declare.
9530 (TRY_SJLJ): Update comment.
9531 (TRY, CATCH, END_CATCH): Remove.
9532 * common/common-exceptions.c (exception_rethrow): Remove.
9533
9534 2019-04-08 Tom Tromey <tom@tromey.com>
9535
9536 * common/common-exceptions.h (gdb_exception_RETURN_MASK_ALL):
9537 Remove.
9538 (gdb_exception_error): Rename from
9539 gdb_exception_RETURN_MASK_ERROR.
9540 (gdb_exception_quit): Rename from gdb_exception_RETURN_MASK_QUIT.
9541 (gdb_quit_bad_alloc): Update.
9542 * aarch64-tdep.c: Update.
9543 * ada-lang.c: Update.
9544 * ada-typeprint.c: Update.
9545 * ada-valprint.c: Update.
9546 * amd64-tdep.c: Update.
9547 * arch-utils.c: Update.
9548 * break-catch-throw.c: Update.
9549 * breakpoint.c: Update.
9550 * btrace.c: Update.
9551 * c-varobj.c: Update.
9552 * cli/cli-cmds.c: Update.
9553 * cli/cli-interp.c: Update.
9554 * cli/cli-script.c: Update.
9555 * common/common-exceptions.c: Update.
9556 * common/new-op.c: Update.
9557 * common/selftest.c: Update.
9558 * compile/compile-c-symbols.c: Update.
9559 * compile/compile-cplus-symbols.c: Update.
9560 * compile/compile-object-load.c: Update.
9561 * compile/compile-object-run.c: Update.
9562 * completer.c: Update.
9563 * corelow.c: Update.
9564 * cp-abi.c: Update.
9565 * cp-support.c: Update.
9566 * cp-valprint.c: Update.
9567 * darwin-nat.c: Update.
9568 * disasm-selftests.c: Update.
9569 * dtrace-probe.c: Update.
9570 * dwarf-index-cache.c: Update.
9571 * dwarf-index-write.c: Update.
9572 * dwarf2-frame-tailcall.c: Update.
9573 * dwarf2-frame.c: Update.
9574 * dwarf2loc.c: Update.
9575 * dwarf2read.c: Update.
9576 * eval.c: Update.
9577 * event-loop.c: Update.
9578 * event-top.c: Update.
9579 * exec.c: Update.
9580 * f-valprint.c: Update.
9581 * fbsd-tdep.c: Update.
9582 * frame-unwind.c: Update.
9583 * frame.c: Update.
9584 * gdbtypes.c: Update.
9585 * gnu-v3-abi.c: Update.
9586 * guile/guile-internal.h: Update.
9587 * guile/scm-block.c: Update.
9588 * guile/scm-breakpoint.c: Update.
9589 * guile/scm-cmd.c: Update.
9590 * guile/scm-disasm.c: Update.
9591 * guile/scm-frame.c: Update.
9592 * guile/scm-lazy-string.c: Update.
9593 * guile/scm-math.c: Update.
9594 * guile/scm-param.c: Update.
9595 * guile/scm-ports.c: Update.
9596 * guile/scm-pretty-print.c: Update.
9597 * guile/scm-symbol.c: Update.
9598 * guile/scm-symtab.c: Update.
9599 * guile/scm-type.c: Update.
9600 * guile/scm-value.c: Update.
9601 * i386-linux-tdep.c: Update.
9602 * i386-tdep.c: Update.
9603 * inf-loop.c: Update.
9604 * infcall.c: Update.
9605 * infcmd.c: Update.
9606 * infrun.c: Update.
9607 * jit.c: Update.
9608 * language.c: Update.
9609 * linespec.c: Update.
9610 * linux-fork.c: Update.
9611 * linux-nat.c: Update.
9612 * linux-tdep.c: Update.
9613 * linux-thread-db.c: Update.
9614 * main.c: Update.
9615 * mi/mi-cmd-break.c: Update.
9616 * mi/mi-cmd-stack.c: Update.
9617 * mi/mi-interp.c: Update.
9618 * mi/mi-main.c: Update.
9619 * objc-lang.c: Update.
9620 * p-valprint.c: Update.
9621 * parse.c: Update.
9622 * ppc-linux-tdep.c: Update.
9623 * printcmd.c: Update.
9624 * python/py-arch.c: Update.
9625 * python/py-breakpoint.c: Update.
9626 * python/py-cmd.c: Update.
9627 * python/py-finishbreakpoint.c: Update.
9628 * python/py-frame.c: Update.
9629 * python/py-framefilter.c: Update.
9630 * python/py-gdb-readline.c: Update.
9631 * python/py-inferior.c: Update.
9632 * python/py-infthread.c: Update.
9633 * python/py-lazy-string.c: Update.
9634 * python/py-linetable.c: Update.
9635 * python/py-objfile.c: Update.
9636 * python/py-param.c: Update.
9637 * python/py-prettyprint.c: Update.
9638 * python/py-progspace.c: Update.
9639 * python/py-record-btrace.c: Update.
9640 * python/py-record.c: Update.
9641 * python/py-symbol.c: Update.
9642 * python/py-type.c: Update.
9643 * python/py-unwind.c: Update.
9644 * python/py-utils.c: Update.
9645 * python/py-value.c: Update.
9646 * python/python.c: Update.
9647 * record-btrace.c: Update.
9648 * record-full.c: Update.
9649 * remote-fileio.c: Update.
9650 * remote.c: Update.
9651 * riscv-tdep.c: Update.
9652 * rs6000-aix-tdep.c: Update.
9653 * rs6000-tdep.c: Update.
9654 * rust-exp.y: Update.
9655 * rust-lang.c: Update.
9656 * s390-tdep.c: Update.
9657 * selftest-arch.c: Update.
9658 * solib-dsbt.c: Update.
9659 * solib-frv.c: Update.
9660 * solib-spu.c: Update.
9661 * solib-svr4.c: Update.
9662 * solib.c: Update.
9663 * sparc64-linux-tdep.c: Update.
9664 * stack.c: Update.
9665 * symfile-mem.c: Update.
9666 * symmisc.c: Update.
9667 * target.c: Update.
9668 * thread.c: Update.
9669 * top.c: Update.
9670 * tracefile-tfile.c: Update.
9671 * tui/tui.c: Update.
9672 * typeprint.c: Update.
9673 * unittests/cli-utils-selftests.c: Update.
9674 * unittests/parse-connection-spec-selftests.c: Update.
9675 * valops.c: Update.
9676 * valprint.c: Update.
9677 * value.c: Update.
9678 * varobj.c: Update.
9679 * windows-nat.c: Update.
9680 * x86-linux-nat.c: Update.
9681 * xml-support.c: Update.
9682
9683 2019-04-08 Tom Tromey <tom@tromey.com>
9684
9685 * xml-support.c: Use C++ exception handling.
9686 * x86-linux-nat.c: Use C++ exception handling.
9687 * windows-nat.c: Use C++ exception handling.
9688 * varobj.c: Use C++ exception handling.
9689 * value.c: Use C++ exception handling.
9690 * valprint.c: Use C++ exception handling.
9691 * valops.c: Use C++ exception handling.
9692 * unittests/parse-connection-spec-selftests.c: Use C++ exception
9693 handling.
9694 * unittests/cli-utils-selftests.c: Use C++ exception handling.
9695 * typeprint.c: Use C++ exception handling.
9696 * tui/tui.c: Use C++ exception handling.
9697 * tracefile-tfile.c: Use C++ exception handling.
9698 * top.c: Use C++ exception handling.
9699 * thread.c: Use C++ exception handling.
9700 * target.c: Use C++ exception handling.
9701 * symmisc.c: Use C++ exception handling.
9702 * symfile-mem.c: Use C++ exception handling.
9703 * stack.c: Use C++ exception handling.
9704 * sparc64-linux-tdep.c: Use C++ exception handling.
9705 * solib.c: Use C++ exception handling.
9706 * solib-svr4.c: Use C++ exception handling.
9707 * solib-spu.c: Use C++ exception handling.
9708 * solib-frv.c: Use C++ exception handling.
9709 * solib-dsbt.c: Use C++ exception handling.
9710 * selftest-arch.c: Use C++ exception handling.
9711 * s390-tdep.c: Use C++ exception handling.
9712 * rust-lang.c: Use C++ exception handling.
9713 * rust-exp.y: Use C++ exception handling.
9714 * rs6000-tdep.c: Use C++ exception handling.
9715 * rs6000-aix-tdep.c: Use C++ exception handling.
9716 * riscv-tdep.c: Use C++ exception handling.
9717 * remote.c: Use C++ exception handling.
9718 * remote-fileio.c: Use C++ exception handling.
9719 * record-full.c: Use C++ exception handling.
9720 * record-btrace.c: Use C++ exception handling.
9721 * python/python.c: Use C++ exception handling.
9722 * python/py-value.c: Use C++ exception handling.
9723 * python/py-utils.c: Use C++ exception handling.
9724 * python/py-unwind.c: Use C++ exception handling.
9725 * python/py-type.c: Use C++ exception handling.
9726 * python/py-symbol.c: Use C++ exception handling.
9727 * python/py-record.c: Use C++ exception handling.
9728 * python/py-record-btrace.c: Use C++ exception handling.
9729 * python/py-progspace.c: Use C++ exception handling.
9730 * python/py-prettyprint.c: Use C++ exception handling.
9731 * python/py-param.c: Use C++ exception handling.
9732 * python/py-objfile.c: Use C++ exception handling.
9733 * python/py-linetable.c: Use C++ exception handling.
9734 * python/py-lazy-string.c: Use C++ exception handling.
9735 * python/py-infthread.c: Use C++ exception handling.
9736 * python/py-inferior.c: Use C++ exception handling.
9737 * python/py-gdb-readline.c: Use C++ exception handling.
9738 * python/py-framefilter.c: Use C++ exception handling.
9739 * python/py-frame.c: Use C++ exception handling.
9740 * python/py-finishbreakpoint.c: Use C++ exception handling.
9741 * python/py-cmd.c: Use C++ exception handling.
9742 * python/py-breakpoint.c: Use C++ exception handling.
9743 * python/py-arch.c: Use C++ exception handling.
9744 * printcmd.c: Use C++ exception handling.
9745 * ppc-linux-tdep.c: Use C++ exception handling.
9746 * parse.c: Use C++ exception handling.
9747 * p-valprint.c: Use C++ exception handling.
9748 * objc-lang.c: Use C++ exception handling.
9749 * mi/mi-main.c: Use C++ exception handling.
9750 * mi/mi-interp.c: Use C++ exception handling.
9751 * mi/mi-cmd-stack.c: Use C++ exception handling.
9752 * mi/mi-cmd-break.c: Use C++ exception handling.
9753 * main.c: Use C++ exception handling.
9754 * linux-thread-db.c: Use C++ exception handling.
9755 * linux-tdep.c: Use C++ exception handling.
9756 * linux-nat.c: Use C++ exception handling.
9757 * linux-fork.c: Use C++ exception handling.
9758 * linespec.c: Use C++ exception handling.
9759 * language.c: Use C++ exception handling.
9760 * jit.c: Use C++ exception handling.
9761 * infrun.c: Use C++ exception handling.
9762 * infcmd.c: Use C++ exception handling.
9763 * infcall.c: Use C++ exception handling.
9764 * inf-loop.c: Use C++ exception handling.
9765 * i386-tdep.c: Use C++ exception handling.
9766 * i386-linux-tdep.c: Use C++ exception handling.
9767 * guile/scm-value.c: Use C++ exception handling.
9768 * guile/scm-type.c: Use C++ exception handling.
9769 * guile/scm-symtab.c: Use C++ exception handling.
9770 * guile/scm-symbol.c: Use C++ exception handling.
9771 * guile/scm-pretty-print.c: Use C++ exception handling.
9772 * guile/scm-ports.c: Use C++ exception handling.
9773 * guile/scm-param.c: Use C++ exception handling.
9774 * guile/scm-math.c: Use C++ exception handling.
9775 * guile/scm-lazy-string.c: Use C++ exception handling.
9776 * guile/scm-frame.c: Use C++ exception handling.
9777 * guile/scm-disasm.c: Use C++ exception handling.
9778 * guile/scm-cmd.c: Use C++ exception handling.
9779 * guile/scm-breakpoint.c: Use C++ exception handling.
9780 * guile/scm-block.c: Use C++ exception handling.
9781 * guile/guile-internal.h: Use C++ exception handling.
9782 * gnu-v3-abi.c: Use C++ exception handling.
9783 * gdbtypes.c: Use C++ exception handling.
9784 * frame.c: Use C++ exception handling.
9785 * frame-unwind.c: Use C++ exception handling.
9786 * fbsd-tdep.c: Use C++ exception handling.
9787 * f-valprint.c: Use C++ exception handling.
9788 * exec.c: Use C++ exception handling.
9789 * event-top.c: Use C++ exception handling.
9790 * event-loop.c: Use C++ exception handling.
9791 * eval.c: Use C++ exception handling.
9792 * dwarf2read.c: Use C++ exception handling.
9793 * dwarf2loc.c: Use C++ exception handling.
9794 * dwarf2-frame.c: Use C++ exception handling.
9795 * dwarf2-frame-tailcall.c: Use C++ exception handling.
9796 * dwarf-index-write.c: Use C++ exception handling.
9797 * dwarf-index-cache.c: Use C++ exception handling.
9798 * dtrace-probe.c: Use C++ exception handling.
9799 * disasm-selftests.c: Use C++ exception handling.
9800 * darwin-nat.c: Use C++ exception handling.
9801 * cp-valprint.c: Use C++ exception handling.
9802 * cp-support.c: Use C++ exception handling.
9803 * cp-abi.c: Use C++ exception handling.
9804 * corelow.c: Use C++ exception handling.
9805 * completer.c: Use C++ exception handling.
9806 * compile/compile-object-run.c: Use C++ exception handling.
9807 * compile/compile-object-load.c: Use C++ exception handling.
9808 * compile/compile-cplus-symbols.c: Use C++ exception handling.
9809 * compile/compile-c-symbols.c: Use C++ exception handling.
9810 * common/selftest.c: Use C++ exception handling.
9811 * common/new-op.c: Use C++ exception handling.
9812 * cli/cli-script.c: Use C++ exception handling.
9813 * cli/cli-interp.c: Use C++ exception handling.
9814 * cli/cli-cmds.c: Use C++ exception handling.
9815 * c-varobj.c: Use C++ exception handling.
9816 * btrace.c: Use C++ exception handling.
9817 * breakpoint.c: Use C++ exception handling.
9818 * break-catch-throw.c: Use C++ exception handling.
9819 * arch-utils.c: Use C++ exception handling.
9820 * amd64-tdep.c: Use C++ exception handling.
9821 * ada-valprint.c: Use C++ exception handling.
9822 * ada-typeprint.c: Use C++ exception handling.
9823 * ada-lang.c: Use C++ exception handling.
9824 * aarch64-tdep.c: Use C++ exception handling.
9825
9826 2019-04-08 Tom Tromey <tom@tromey.com>
9827
9828 * xml-support.c (gdb_xml_parser::parse): Update.
9829 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
9830 * value.c (show_convenience): Update.
9831 * unittests/cli-utils-selftests.c (test_number_or_range_parser)
9832 (test_parse_flags_qcs): Update.
9833 * thread.c (thr_try_catch_cmd): Update.
9834 * target.c (target_translate_tls_address): Update.
9835 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
9836 (info_frame_command_core, frame_apply_command_count): Update.
9837 * rust-exp.y (rust_lex_exception_test): Update.
9838 * riscv-tdep.c (riscv_print_one_register_info): Update.
9839 * remote.c (remote_target::enable_btrace): Update.
9840 * record-btrace.c (record_btrace_enable_warn): Update.
9841 * python/py-utils.c (gdbpy_convert_exception): Update.
9842 * printcmd.c (do_one_display, print_variable_and_value): Update.
9843 * mi/mi-main.c (mi_print_exception): Update.
9844 * mi/mi-interp.c (mi_cmd_interpreter_exec): Use SCOPE_EXIT.
9845 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
9846 * linux-nat.c (linux_nat_target::attach): Update.
9847 * linux-fork.c (class scoped_switch_fork_info): Update.
9848 * infrun.c (displaced_step_prepare): Update.
9849 * infcall.c (call_function_by_hand_dummy): Update.
9850 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception): Update.
9851 * gnu-v3-abi.c (print_one_vtable): Update.
9852 * frame.c (get_prev_frame_always): Update.
9853 * f-valprint.c (info_common_command_for_block): Update.
9854 * exec.c (try_open_exec_file): Update.
9855 * exceptions.c (print_exception, exception_print)
9856 (exception_fprintf, exception_print_same): Update.
9857 * dwarf2-frame.c (dwarf2_build_frame_info): Update.
9858 * dwarf-index-cache.c (index_cache::store)
9859 (index_cache::lookup_gdb_index): Update.
9860 * darwin-nat.c (maybe_cache_shell): Update.
9861 * cp-valprint.c (cp_print_value_fields): Update.
9862 * compile/compile-cplus-symbols.c (gcc_cplus_convert_symbol)
9863 (gcc_cplus_symbol_address): Update.
9864 * compile/compile-c-symbols.c (gcc_convert_symbol)
9865 (gcc_symbol_address, generate_c_for_for_one_variable): Update.
9866 * common/selftest.c: Update.
9867 * common/common-exceptions.h (struct gdb_exception) <message>: Now
9868 a std::string.
9869 (exception_try_scope_entry, exception_try_scope_exit): Don't
9870 declare.
9871 (struct exception_try_scope): Remove.
9872 (TRY): Don't use exception_try_scope.
9873 (struct gdb_exception): Add constructor, operator=.
9874 <what>: New method.
9875 (struct gdb_exception_RETURN_MASK_ALL)
9876 (struct gdb_exception_RETURN_MASK_ERROR)
9877 (struct gdb_exception_RETURN_MASK_QUIT): Add constructor.
9878 (struct gdb_quit_bad_alloc): Update.
9879 * common/common-exceptions.c (exception_none): Change
9880 initializer.
9881 (struct catcher) <state, exception>: Initialize inline.
9882 <prev>: Remove member.
9883 (current_catcher): Remove.
9884 (catchers): New global.
9885 (exceptions_state_mc_init): Simplify.
9886 (catcher_pop): Remove.
9887 (exceptions_state_mc, exceptions_state_mc_catch): Update.
9888 (try_scope_depth, exception_try_scope_entry)
9889 (exception_try_scope_exit): Remove.
9890 (throw_exception_sjlj): Update.
9891 (exception_messages, exception_messages_size): Remove.
9892 (throw_it): Simplify.
9893 (gdb_exception_sliced_copy): Remove.
9894 (throw_exception_cxx): Update.
9895 * cli/cli-script.c (script_from_file): Update.
9896 * breakpoint.c (insert_bp_location, update_breakpoint_locations):
9897 Update.
9898 * ada-valprint.c (ada_val_print): Update.
9899 * ada-lang.c (ada_to_fixed_type_1, ada_exception_name_addr)
9900 (create_excep_cond_exprs): Update.
9901
9902 2019-04-08 Tom Tromey <tom@tromey.com>
9903
9904 * common/common-exceptions.h (GDB_XCPT_SJMP, GDB_XCPT_TRY)
9905 (GDB_XCPT_RAW_TRY, GDB_XCPT): Remove.
9906 (TRY, CATCH, END_CATCH): Remove some definitions.
9907 * common/common-exceptions.c: Don't use GDB_XCPT.
9908 (catcher_list_size): Remove.
9909 (throw_exception, throw_it): Simplify.
9910
9911 2019-04-05 Tom Tromey <tom@tromey.com>
9912
9913 Revert the header-sorting patch.
9914 * ft32-tdep.c: Revert.
9915 * frv-tdep.c: Revert.
9916 * frv-linux-tdep.c: Revert.
9917 * frame.c: Revert.
9918 * frame-unwind.c: Revert.
9919 * frame-base.c: Revert.
9920 * fork-child.c: Revert.
9921 * findvar.c: Revert.
9922 * findcmd.c: Revert.
9923 * filesystem.c: Revert.
9924 * filename-seen-cache.h: Revert.
9925 * filename-seen-cache.c: Revert.
9926 * fbsd-tdep.c: Revert.
9927 * fbsd-nat.h: Revert.
9928 * fbsd-nat.c: Revert.
9929 * f-valprint.c: Revert.
9930 * f-typeprint.c: Revert.
9931 * f-lang.c: Revert.
9932 * extension.h: Revert.
9933 * extension.c: Revert.
9934 * extension-priv.h: Revert.
9935 * expprint.c: Revert.
9936 * exec.h: Revert.
9937 * exec.c: Revert.
9938 * exceptions.c: Revert.
9939 * event-top.c: Revert.
9940 * event-loop.c: Revert.
9941 * eval.c: Revert.
9942 * elfread.c: Revert.
9943 * dwarf2read.h: Revert.
9944 * dwarf2read.c: Revert.
9945 * dwarf2loc.c: Revert.
9946 * dwarf2expr.h: Revert.
9947 * dwarf2expr.c: Revert.
9948 * dwarf2-frame.c: Revert.
9949 * dwarf2-frame-tailcall.c: Revert.
9950 * dwarf-index-write.h: Revert.
9951 * dwarf-index-write.c: Revert.
9952 * dwarf-index-common.c: Revert.
9953 * dwarf-index-cache.h: Revert.
9954 * dwarf-index-cache.c: Revert.
9955 * dummy-frame.c: Revert.
9956 * dtrace-probe.c: Revert.
9957 * disasm.h: Revert.
9958 * disasm.c: Revert.
9959 * disasm-selftests.c: Revert.
9960 * dictionary.c: Revert.
9961 * dicos-tdep.c: Revert.
9962 * demangle.c: Revert.
9963 * dcache.h: Revert.
9964 * dcache.c: Revert.
9965 * darwin-nat.h: Revert.
9966 * darwin-nat.c: Revert.
9967 * darwin-nat-info.c: Revert.
9968 * d-valprint.c: Revert.
9969 * d-namespace.c: Revert.
9970 * d-lang.c: Revert.
9971 * ctf.c: Revert.
9972 * csky-tdep.c: Revert.
9973 * csky-linux-tdep.c: Revert.
9974 * cris-tdep.c: Revert.
9975 * cris-linux-tdep.c: Revert.
9976 * cp-valprint.c: Revert.
9977 * cp-support.c: Revert.
9978 * cp-namespace.c: Revert.
9979 * cp-abi.c: Revert.
9980 * corelow.c: Revert.
9981 * corefile.c: Revert.
9982 * continuations.c: Revert.
9983 * completer.h: Revert.
9984 * completer.c: Revert.
9985 * complaints.c: Revert.
9986 * coffread.c: Revert.
9987 * coff-pe-read.c: Revert.
9988 * cli-out.h: Revert.
9989 * cli-out.c: Revert.
9990 * charset.c: Revert.
9991 * c-varobj.c: Revert.
9992 * c-valprint.c: Revert.
9993 * c-typeprint.c: Revert.
9994 * c-lang.c: Revert.
9995 * buildsym.c: Revert.
9996 * buildsym-legacy.c: Revert.
9997 * build-id.h: Revert.
9998 * build-id.c: Revert.
9999 * btrace.c: Revert.
10000 * bsd-uthread.c: Revert.
10001 * breakpoint.h: Revert.
10002 * breakpoint.c: Revert.
10003 * break-catch-throw.c: Revert.
10004 * break-catch-syscall.c: Revert.
10005 * break-catch-sig.c: Revert.
10006 * blockframe.c: Revert.
10007 * block.c: Revert.
10008 * bfin-tdep.c: Revert.
10009 * bfin-linux-tdep.c: Revert.
10010 * bfd-target.c: Revert.
10011 * bcache.c: Revert.
10012 * ax-general.c: Revert.
10013 * ax-gdb.h: Revert.
10014 * ax-gdb.c: Revert.
10015 * avr-tdep.c: Revert.
10016 * auxv.c: Revert.
10017 * auto-load.c: Revert.
10018 * arm-wince-tdep.c: Revert.
10019 * arm-tdep.c: Revert.
10020 * arm-symbian-tdep.c: Revert.
10021 * arm-pikeos-tdep.c: Revert.
10022 * arm-obsd-tdep.c: Revert.
10023 * arm-nbsd-tdep.c: Revert.
10024 * arm-nbsd-nat.c: Revert.
10025 * arm-linux-tdep.c: Revert.
10026 * arm-linux-nat.c: Revert.
10027 * arm-fbsd-tdep.c: Revert.
10028 * arm-fbsd-nat.c: Revert.
10029 * arm-bsd-tdep.c: Revert.
10030 * arch-utils.c: Revert.
10031 * arc-tdep.c: Revert.
10032 * arc-newlib-tdep.c: Revert.
10033 * annotate.h: Revert.
10034 * annotate.c: Revert.
10035 * amd64-windows-tdep.c: Revert.
10036 * amd64-windows-nat.c: Revert.
10037 * amd64-tdep.c: Revert.
10038 * amd64-sol2-tdep.c: Revert.
10039 * amd64-obsd-tdep.c: Revert.
10040 * amd64-obsd-nat.c: Revert.
10041 * amd64-nbsd-tdep.c: Revert.
10042 * amd64-nbsd-nat.c: Revert.
10043 * amd64-nat.c: Revert.
10044 * amd64-linux-tdep.c: Revert.
10045 * amd64-linux-nat.c: Revert.
10046 * amd64-fbsd-tdep.c: Revert.
10047 * amd64-fbsd-nat.c: Revert.
10048 * amd64-dicos-tdep.c: Revert.
10049 * amd64-darwin-tdep.c: Revert.
10050 * amd64-bsd-nat.c: Revert.
10051 * alpha-tdep.c: Revert.
10052 * alpha-obsd-tdep.c: Revert.
10053 * alpha-nbsd-tdep.c: Revert.
10054 * alpha-mdebug-tdep.c: Revert.
10055 * alpha-linux-tdep.c: Revert.
10056 * alpha-linux-nat.c: Revert.
10057 * alpha-bsd-tdep.c: Revert.
10058 * alpha-bsd-nat.c: Revert.
10059 * aix-thread.c: Revert.
10060 * agent.c: Revert.
10061 * addrmap.c: Revert.
10062 * ada-varobj.c: Revert.
10063 * ada-valprint.c: Revert.
10064 * ada-typeprint.c: Revert.
10065 * ada-tasks.c: Revert.
10066 * ada-lang.c: Revert.
10067 * aarch64-tdep.c: Revert.
10068 * aarch64-ravenscar-thread.c: Revert.
10069 * aarch64-newlib-tdep.c: Revert.
10070 * aarch64-linux-tdep.c: Revert.
10071 * aarch64-linux-nat.c: Revert.
10072 * aarch64-fbsd-tdep.c: Revert.
10073 * aarch64-fbsd-nat.c: Revert.
10074 * aarch32-linux-nat.c: Revert.
10075
10076 2019-04-05 Tom Tromey <tom@tromey.com>
10077
10078 * ft32-tdep.c: Sort headers.
10079 * frv-tdep.c: Sort headers.
10080 * frv-linux-tdep.c: Sort headers.
10081 * frame.c: Sort headers.
10082 * frame-unwind.c: Sort headers.
10083 * frame-base.c: Sort headers.
10084 * fork-child.c: Sort headers.
10085 * findvar.c: Sort headers.
10086 * findcmd.c: Sort headers.
10087 * filesystem.c: Sort headers.
10088 * filename-seen-cache.h: Sort headers.
10089 * filename-seen-cache.c: Sort headers.
10090 * fbsd-tdep.c: Sort headers.
10091 * fbsd-nat.h: Sort headers.
10092 * fbsd-nat.c: Sort headers.
10093 * f-valprint.c: Sort headers.
10094 * f-typeprint.c: Sort headers.
10095 * f-lang.c: Sort headers.
10096 * extension.h: Sort headers.
10097 * extension.c: Sort headers.
10098 * extension-priv.h: Sort headers.
10099 * expprint.c: Sort headers.
10100 * exec.h: Sort headers.
10101 * exec.c: Sort headers.
10102 * exceptions.c: Sort headers.
10103 * event-top.c: Sort headers.
10104 * event-loop.c: Sort headers.
10105 * eval.c: Sort headers.
10106 * elfread.c: Sort headers.
10107 * dwarf2read.h: Sort headers.
10108 * dwarf2read.c: Sort headers.
10109 * dwarf2loc.c: Sort headers.
10110 * dwarf2expr.h: Sort headers.
10111 * dwarf2expr.c: Sort headers.
10112 * dwarf2-frame.c: Sort headers.
10113 * dwarf2-frame-tailcall.c: Sort headers.
10114 * dwarf-index-write.h: Sort headers.
10115 * dwarf-index-write.c: Sort headers.
10116 * dwarf-index-common.c: Sort headers.
10117 * dwarf-index-cache.h: Sort headers.
10118 * dwarf-index-cache.c: Sort headers.
10119 * dummy-frame.c: Sort headers.
10120 * dtrace-probe.c: Sort headers.
10121 * disasm.h: Sort headers.
10122 * disasm.c: Sort headers.
10123 * disasm-selftests.c: Sort headers.
10124 * dictionary.c: Sort headers.
10125 * dicos-tdep.c: Sort headers.
10126 * demangle.c: Sort headers.
10127 * dcache.h: Sort headers.
10128 * dcache.c: Sort headers.
10129 * darwin-nat.h: Sort headers.
10130 * darwin-nat.c: Sort headers.
10131 * darwin-nat-info.c: Sort headers.
10132 * d-valprint.c: Sort headers.
10133 * d-namespace.c: Sort headers.
10134 * d-lang.c: Sort headers.
10135 * ctf.c: Sort headers.
10136 * csky-tdep.c: Sort headers.
10137 * csky-linux-tdep.c: Sort headers.
10138 * cris-tdep.c: Sort headers.
10139 * cris-linux-tdep.c: Sort headers.
10140 * cp-valprint.c: Sort headers.
10141 * cp-support.c: Sort headers.
10142 * cp-namespace.c: Sort headers.
10143 * cp-abi.c: Sort headers.
10144 * corelow.c: Sort headers.
10145 * corefile.c: Sort headers.
10146 * continuations.c: Sort headers.
10147 * completer.h: Sort headers.
10148 * completer.c: Sort headers.
10149 * complaints.c: Sort headers.
10150 * coffread.c: Sort headers.
10151 * coff-pe-read.c: Sort headers.
10152 * cli-out.h: Sort headers.
10153 * cli-out.c: Sort headers.
10154 * charset.c: Sort headers.
10155 * c-varobj.c: Sort headers.
10156 * c-valprint.c: Sort headers.
10157 * c-typeprint.c: Sort headers.
10158 * c-lang.c: Sort headers.
10159 * buildsym.c: Sort headers.
10160 * buildsym-legacy.c: Sort headers.
10161 * build-id.h: Sort headers.
10162 * build-id.c: Sort headers.
10163 * btrace.c: Sort headers.
10164 * bsd-uthread.c: Sort headers.
10165 * breakpoint.h: Sort headers.
10166 * breakpoint.c: Sort headers.
10167 * break-catch-throw.c: Sort headers.
10168 * break-catch-syscall.c: Sort headers.
10169 * break-catch-sig.c: Sort headers.
10170 * blockframe.c: Sort headers.
10171 * block.c: Sort headers.
10172 * bfin-tdep.c: Sort headers.
10173 * bfin-linux-tdep.c: Sort headers.
10174 * bfd-target.c: Sort headers.
10175 * bcache.c: Sort headers.
10176 * ax-general.c: Sort headers.
10177 * ax-gdb.h: Sort headers.
10178 * ax-gdb.c: Sort headers.
10179 * avr-tdep.c: Sort headers.
10180 * auxv.c: Sort headers.
10181 * auto-load.c: Sort headers.
10182 * arm-wince-tdep.c: Sort headers.
10183 * arm-tdep.c: Sort headers.
10184 * arm-symbian-tdep.c: Sort headers.
10185 * arm-pikeos-tdep.c: Sort headers.
10186 * arm-obsd-tdep.c: Sort headers.
10187 * arm-nbsd-tdep.c: Sort headers.
10188 * arm-nbsd-nat.c: Sort headers.
10189 * arm-linux-tdep.c: Sort headers.
10190 * arm-linux-nat.c: Sort headers.
10191 * arm-fbsd-tdep.c: Sort headers.
10192 * arm-fbsd-nat.c: Sort headers.
10193 * arm-bsd-tdep.c: Sort headers.
10194 * arch-utils.c: Sort headers.
10195 * arc-tdep.c: Sort headers.
10196 * arc-newlib-tdep.c: Sort headers.
10197 * annotate.h: Sort headers.
10198 * annotate.c: Sort headers.
10199 * amd64-windows-tdep.c: Sort headers.
10200 * amd64-windows-nat.c: Sort headers.
10201 * amd64-tdep.c: Sort headers.
10202 * amd64-sol2-tdep.c: Sort headers.
10203 * amd64-obsd-tdep.c: Sort headers.
10204 * amd64-obsd-nat.c: Sort headers.
10205 * amd64-nbsd-tdep.c: Sort headers.
10206 * amd64-nbsd-nat.c: Sort headers.
10207 * amd64-nat.c: Sort headers.
10208 * amd64-linux-tdep.c: Sort headers.
10209 * amd64-linux-nat.c: Sort headers.
10210 * amd64-fbsd-tdep.c: Sort headers.
10211 * amd64-fbsd-nat.c: Sort headers.
10212 * amd64-dicos-tdep.c: Sort headers.
10213 * amd64-darwin-tdep.c: Sort headers.
10214 * amd64-bsd-nat.c: Sort headers.
10215 * alpha-tdep.c: Sort headers.
10216 * alpha-obsd-tdep.c: Sort headers.
10217 * alpha-nbsd-tdep.c: Sort headers.
10218 * alpha-mdebug-tdep.c: Sort headers.
10219 * alpha-linux-tdep.c: Sort headers.
10220 * alpha-linux-nat.c: Sort headers.
10221 * alpha-bsd-tdep.c: Sort headers.
10222 * alpha-bsd-nat.c: Sort headers.
10223 * aix-thread.c: Sort headers.
10224 * agent.c: Sort headers.
10225 * addrmap.c: Sort headers.
10226 * ada-varobj.c: Sort headers.
10227 * ada-valprint.c: Sort headers.
10228 * ada-typeprint.c: Sort headers.
10229 * ada-tasks.c: Sort headers.
10230 * ada-lang.c: Sort headers.
10231 * aarch64-tdep.c: Sort headers.
10232 * aarch64-ravenscar-thread.c: Sort headers.
10233 * aarch64-newlib-tdep.c: Sort headers.
10234 * aarch64-linux-tdep.c: Sort headers.
10235 * aarch64-linux-nat.c: Sort headers.
10236 * aarch64-fbsd-tdep.c: Sort headers.
10237 * aarch64-fbsd-nat.c: Sort headers.
10238 * aarch32-linux-nat.c: Sort headers.
10239
10240 2019-04-04 Tom Tromey <tom@tromey.com>
10241
10242 * varobj.c (varobj_create): Update.
10243 * rust-exp.y (struct rust_parser) <update_innermost_block,
10244 lookup_symbol>: New methods.
10245 (rust_parser::update_innermost_block, rust_parser::lookup_symbol):
10246 Rename.
10247 (rust_parser::rust_lookup_type)
10248 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
10249 * printcmd.c (display_command, do_one_display): Update.
10250 * parser-defs.h (struct parser_state) <parser_state>: Add
10251 "tracker" parameter.
10252 (block_tracker): New member.
10253 (class innermost_block_tracker) <innermost_block_tracker>: Add
10254 "types" parameter.
10255 <reset>: Remove method.
10256 (innermost_block): Don't declare.
10257 (null_post_parser): Update.
10258 * parse.c (innermost_block): Remove global.
10259 (write_dollar_variable): Update.
10260 (parse_exp_1, parse_exp_in_context): Add "tracker" parameter.
10261 Remove "tracker_types" parameter.
10262 (parse_expression): Add "tracker" parameter.
10263 (parse_expression_for_completion): Update.
10264 (null_post_parser): Add "tracker" parameter.
10265 * p-exp.y: Update rules.
10266 * m2-exp.y: Update rules.
10267 * language.h (struct language_defn) <la_post_parser>: Add
10268 "tracker" parameter.
10269 * go-exp.y: Update rules.
10270 * f-exp.y: Update rules.
10271 * expression.h (parse_expression, parse_exp_1): Add "tracker"
10272 parameter.
10273 * d-exp.y: Update rules.
10274 * c-exp.y: Update rules.
10275 * breakpoint.c (set_breakpoint_condition): Create an
10276 innermost_block_tracker.
10277 (watch_command_1): Likewise.
10278 * ada-lang.c (resolve): Add "tracker" parameter.
10279 (resolve_subexp): Likewise.
10280 * ada-exp.y (write_var_from_sym): Update.
10281
10282 2019-04-04 Tom Tromey <tom@tromey.com>
10283
10284 * type-stack.h: New file.
10285 * type-stack.c: New file.
10286 * parser-defs.h (enum type_pieces, union type_stack_elt): Move to
10287 type-stack.h.
10288 (insert_into_type_stack, insert_type, push_type, push_type_int)
10289 (insert_type_address_space, pop_type, pop_type_int)
10290 (pop_typelist, pop_type_stack, append_type_stack)
10291 (push_type_stack, get_type_stack, push_typelist)
10292 (follow_type_instance_flags, follow_types): Don't declare.
10293 * parse.c (type_stack): Remove global.
10294 (parse_exp_in_context): Update.
10295 (insert_into_type_stack, insert_type, push_type, push_type_int)
10296 (insert_type_address_space, pop_type, pop_type_int)
10297 (pop_typelist, pop_type_stack, append_type_stack)
10298 (push_type_stack, get_type_stack, push_typelist)
10299 (follow_type_instance_flags, follow_types): Remove (moved to
10300 type-stack.c).
10301 * f-exp.y (type_stack): New global.
10302 Update rules.
10303 (push_kind_type, f_parse): Update.
10304 * d-exp.y (type_stack): New global.
10305 Update rules.
10306 (d_parse): Update.
10307 * c-exp.y (struct c_parse_state) <type_stack>: New member.
10308 Update rules.
10309 * Makefile.in (COMMON_SFILES): Add type-stack.c.
10310 (HFILES_NO_SRCDIR): Add type-stack.h.
10311
10312 2019-04-04 Tom Tromey <tom@tromey.com>
10313
10314 * rust-exp.y (rust_parser::lex_identifier, rustyylex)
10315 (rust_parser::convert_ast_to_expression, rust_parse)
10316 (rust_lex_test_completion, rust_lex_tests): Update.
10317 * parser-defs.h (struct expr_completion_state): New.
10318 (struct parser_state) <parser_state>: Add completion parameter.
10319 <mark_struct_expression, mark_completion_tag>: New methods.
10320 <parse_completion, m_completion_state>: New members.
10321 (prefixify_expression, null_post_parser): Update.
10322 (mark_struct_expression, mark_completion_tag): Don't declare.
10323 * parse.c (parse_completion, expout_last_struct)
10324 (expout_tag_completion_type, expout_completion_name): Remove
10325 globals.
10326 (parser_state::mark_struct_expression)
10327 (parser_state::mark_completion_tag): Now methods.
10328 (prefixify_expression): Add last_struct parameter.
10329 (prefixify_subexp): Likewise.
10330 (parse_exp_1): Update.
10331 (parse_exp_in_context): Add cstate parameter. Update.
10332 (parse_expression_for_completion): Create an
10333 expr_completion_state.
10334 (null_post_parser): Add "completion" parameter.
10335 * p-exp.y: Update rules.
10336 (yylex): Update.
10337 * language.h (struct language_defn) <la_post_parser>: Add
10338 "completing" parameter.
10339 * go-exp.y: Update rules.
10340 (lex_one_token): Update.
10341 * expression.h (parse_completion): Don't declare.
10342 * d-exp.y: Update rules.
10343 (lex_one_token): Update rules.
10344 * c-exp.y: Update rules.
10345 (lex_one_token): Update.
10346 * ada-lang.c (resolve): Add "parse_completion" parameter.
10347 (resolve_subexp): Likewise.
10348 (ada_resolve_function): Likewise.
10349
10350 2019-04-04 Tom Tromey <tom@tromey.com>
10351
10352 * parser-defs.h (struct parser_state) <start_arglist,
10353 end_arglist>: New methods.
10354 <arglist_len, m_funcall_chain>: New members.
10355 (arglist_len, start_arglist, end_arglist): Don't declare.
10356 * parse.c (arglist_len, funcall_chain): Remove global.
10357 (start_arglist, end_arglist): Remove functions.
10358 (parse_exp_in_context): Update.
10359 * p-exp.y: Update rules.
10360 * m2-exp.y: Update rules.
10361 * go-exp.y: Update rules.
10362 * f-exp.y: Update rules.
10363 * d-exp.y: Update rules.
10364 * c-exp.y: Update rules.
10365
10366 2019-04-04 Tom Tromey <tom@tromey.com>
10367
10368 * rust-exp.y (struct rust_parser) <lex_hex, lex_escape,
10369 lex_operator, push_back>: New methods.
10370 Update all rules.
10371 (rust_parser::lex_hex, lex_escape): Rename and update.
10372 (rust_parser::lex_string, rust_parser::lex_identifier): Update.
10373 (rust_parser::lex_operator): Rename and update.
10374 (rust_parser::lex_number, rustyylex, rustyyerror)
10375 (rust_lex_test_init, rust_lex_test_sequence)
10376 (rust_lex_test_push_back, rust_lex_tests): Update.
10377 * parser-defs.h (struct parser_state) <parser_state>: Add "input"
10378 parameter.
10379 <lexptr, prev_lexptr>: New members.
10380 (lexptr, prev_lexptr): Don't declare.
10381 * parse.c (lexptr, prev_lexptr): Remove globals.
10382 (parse_exp_in_context): Update.
10383 * p-exp.y (yylex, yyerror): Update.
10384 * m2-exp.y (parse_number, yylex, yyerror): Update.
10385 * go-exp.y (lex_one_token, yyerror): Update.
10386 * f-exp.y (match_string_literal, yylex, yyerror): Update.
10387 * d-exp.y (lex_one_token, yyerror): Update.
10388 * c-exp.y (scan_macro_expansion, finished_macro_expansion)
10389 (lex_one_token, yyerror): Update.
10390 * ada-lex.l (YY_INPUT): Update.
10391 (rewind_to_char): Update.
10392 * ada-exp.y (yyerror): Update.
10393
10394 2019-04-04 Tom Tromey <tom@tromey.com>
10395
10396 * rust-exp.y (rustyylex, rust_lex_tests): Update.
10397 * parser-defs.h (struct parser_state) <parser_state>: Add new
10398 parameter.
10399 <comma_terminates>: New member.
10400 (comma_terminates): Don't declare global.
10401 * parse.c (comma_terminates): Remove global.
10402 (parse_exp_in_context): Update.
10403 * p-exp.y (yylex): Update.
10404 * m2-exp.y (yylex): Update.
10405 * go-exp.y (lex_one_token): Update.
10406 * f-exp.y (yylex): Update.
10407 * d-exp.y (lex_one_token): Update.
10408 * c-exp.y (lex_one_token): Update.
10409 * ada-lex.l: Update.
10410
10411 2019-04-04 Tom Tromey <tom@tromey.com>
10412
10413 * rust-exp.y (struct rust_parser) <paren_depth>: New member.
10414 (rustyylex, rust_lex_test_init, rust_lex_test_one)
10415 (rust_lex_test_sequence, rust_lex_test_push_back): Update.
10416 * parser-defs.h (paren_depth): Don't declare.
10417 * parse.c (paren_depth): Remove global.
10418 (parse_exp_in_context): Update.
10419 * p-exp.y (paren_depth): New global.
10420 (pascal_parse): Initialize it.
10421 * m2-exp.y (paren_depth): New global.
10422 (m2_parse): Initialize it.
10423 * go-exp.y (paren_depth): New global.
10424 (go_parse): Initialize it.
10425 * f-exp.y (paren_depth): New global.
10426 (f_parse): Initialize it.
10427 * d-exp.y (paren_depth): New global.
10428 (d_parse): Initialize it.
10429 * c-exp.y (paren_depth): New global.
10430 (c_parse): Initialize it.
10431 * ada-lex.l (paren_depth): New global.
10432 (lexer_init): Initialize it.
10433
10434 2019-04-04 Tom Tromey <tom@tromey.com>
10435
10436 * rust-exp.y (rust_parser::crate_name, rust_parser::super_name)
10437 (rust_parser::convert_ast_to_type)
10438 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
10439 * parser-defs.h (struct parser_state) <parser_state>: Add
10440 parameters. Initialize new members.
10441 <expression_context_block, expression_context_pc>: New members.
10442 * parse.c (expression_context_block, expression_context_pc):
10443 Remove globals.
10444 (parse_exp_in_context): Update.
10445 * p-exp.y: Update all rules.
10446 (yylex): Update.
10447 * m2-exp.y: Update all rules.
10448 (yylex): Update.
10449 * go-exp.y (yylex): Update.
10450 * f-exp.y (yylex): Update.
10451 * d-exp.y: Update all rules.
10452 (yylex): Update.
10453 * c-exp.y: Update all rules.
10454 (lex_one_token, classify_name, yylex, c_parse): Update.
10455 * ada-exp.y (write_var_or_type, write_name_assoc): Update.
10456
10457 2019-04-04 Tom Tromey <tom@tromey.com>
10458
10459 * gdbarch.h, gdbarch.c: Rebuild.
10460 * gdbarch.sh (dtrace_parse_probe_argument): Change type.
10461 * stap-probe.h:
10462 (struct stap_parse_info): Replace "parser_state" with
10463 "expr_builder".
10464 * parser-defs.h (struct expr_builder): Rename from "parser_state".
10465 (parser_state): New class.
10466 * parse.c (expr_builder): Rename.
10467 (expr_builder::release): Rename.
10468 (write_exp_elt, write_exp_elt_opcode, write_exp_elt_sym)
10469 (write_exp_elt_msym, write_exp_elt_block, write_exp_elt_objfile)
10470 (write_exp_elt_longcst, write_exp_elt_floatcst)
10471 (write_exp_elt_type, write_exp_elt_intern, write_exp_string)
10472 (write_exp_string_vector, write_exp_bitstring)
10473 (write_exp_msymbol, mark_struct_expression)
10474 (write_dollar_variable)
10475 (insert_type_address_space, increase_expout_size): Replace
10476 "parser_state" with "expr_builder".
10477 * dtrace-probe.c: Replace "parser_state" with "expr_builder".
10478 * amd64-linux-tdep.c (amd64_dtrace_parse_probe_argument): Replace
10479 "parser_state" with "expr_builder".
10480
10481 2019-04-04 Tom Tromey <tom@tromey.com>
10482
10483 * rust-exp.y: Replace "parse_language" with method call.
10484 * p-exp.y:
10485 (yylex): Replace "parse_language" with method call.
10486 * m2-exp.y:
10487 (yylex): Replace "parse_language" with method call.
10488 * go-exp.y (classify_name): Replace "parse_language" with method
10489 call.
10490 * f-exp.y (yylex): Replace "parse_language" with method call.
10491 * d-exp.y (lex_one_token): Replace "parse_language" with method
10492 call.
10493 * c-exp.y:
10494 (lex_one_token, classify_name, yylex): Replace "parse_language"
10495 with method call.
10496 * ada-exp.y (find_primitive_type, type_char)
10497 (type_system_address): Replace "parse_language" with method call.
10498
10499 2019-04-04 Tom Tromey <tom@tromey.com>
10500
10501 * rust-exp.y: Replace "parse_gdbarch" with method call.
10502 * parse.c (write_dollar_variable, insert_type_address_space):
10503 Replace "parse_gdbarch" with method call.
10504 * p-exp.y (parse_type, yylex): Replace "parse_gdbarch" with method
10505 call.
10506 * objc-lang.c (end_msglist): Replace "parse_gdbarch" with method
10507 call.
10508 * m2-exp.y (parse_type, parse_m2_type, yylex): Replace
10509 "parse_gdbarch" with method call.
10510 * go-exp.y (parse_type, classify_name): Replace "parse_gdbarch"
10511 with method call.
10512 * f-exp.y (parse_type, parse_f_type, yylex): Replace
10513 "parse_gdbarch" with method call.
10514 * d-exp.y (parse_type, parse_d_type, lex_one_token): Replace
10515 "parse_gdbarch" with method call.
10516 * c-exp.y (parse_type, parse_number, classify_name): Replace
10517 "parse_gdbarch" with method call.
10518 * ada-lex.l: Replace "parse_gdbarch" with method call.
10519 * ada-exp.y (parse_type, find_primitive_type, type_char)
10520 (type_system_address): Replace "parse_gdbarch" with method call.
10521
10522 2019-04-04 Tom Tromey <tom@tromey.com>
10523
10524 * dtrace-probe.c (dtrace_probe::build_arg_exprs): Update.
10525 * stap-probe.c (stap_parse_argument): Update.
10526 * stap-probe.h (struct stap_parse_info) <stap_parse_info>: Remove
10527 initial_size parameter.
10528 * rust-exp.y (rust_lex_tests): Update.
10529 * parse.c (parser_state): Update.
10530 (parse_exp_in_context): Update.
10531 * parser-defs.h (struct parser_state) <parser_state>: Remove
10532 "initial_size" parameter.
10533
10534 2019-04-04 Tom Tromey <tom@tromey.com>
10535
10536 * parser-defs.h (increase_expout_size): Don't declare.
10537 * parse.c (increase_expout_size): Now static.
10538
10539 2019-04-04 Thomas Schwinge <thomas@codesourcery.com>
10540
10541 * gnu-nat.c (gnu_nat_target::wait): Fix
10542 target_waitstatus_to_string call.
10543
10544 2019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
10545
10546 * eval.c (evaluate_subexp_standard): Handle internal functions
10547 during Fortran function call handling.
10548
10549 2019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
10550
10551 * NEWS: Mention new internal functions.
10552 * dwarf2read.c (dwarf2_init_complex_target_type): New function.
10553 (read_base_type): Use dwarf2_init_complex_target_type.
10554 * value.c (creal_internal_fn): New function.
10555 (cimag_internal_fn): New function.
10556 (_initialize_values): Register new internal functions.
10557
10558 2019-04-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10559
10560 * infrun.c (stop_all_threads): If debug_infrun, always
10561 trace the wait status after wait_one, using
10562 target_waitstatus_to_string and target_pid_to_str.
10563 (handle_inferior_event): Replace various trace of
10564 wait status kind by a single trace.
10565 * gdb/gnu-nat.c (gnu_nat_target::wait): Replace local
10566 wait status kind image by target_waitstatus_to_string.
10567 * target/waitstatus.c (target_waitstatus_to_string): Fix
10568 obsolete comment.
10569
10570 2019-04-01 Tom Tromey <tromey@adacore.com>
10571
10572 PR symtab/23331:
10573 * dwarf2read.c (partial_die_info::read): Handle DW_AT_ranges.
10574
10575 2019-04-01 Sergio Durigan Junior <sergiodj@redhat.com>
10576 Pedro Alves <palves@redhat.com>
10577
10578 * top.c (quit_force): Call 'finalize_values'.
10579 * value.c (finalize_values): New function.
10580 * value.h (finalize_values): Declare.
10581
10582 2019-03-30 Eli Zaretskii <eliz@gnu.org>
10583
10584 * NEWS: Announce $_gdb_major and $_gdb_minor.
10585
10586 * top.c (init_gdb_version_vars): New function.
10587 (gdb_init): Call init_gdb_version_vars.
10588
10589 2019-03-29 Tom Tromey <tromey@adacore.com>
10590
10591 * printcmd.c (_initialize_printcmd): Add usage lines. Update some
10592 help text. Remove dead code.
10593
10594 2019-03-29 Keith Seitz <keiths@redhat.com>
10595
10596 From Siddhesh Poyarekar:
10597 * f-lang.h (f77_get_upperbound): Return LONGEST.
10598 (f77_get_lowerbound): Likewise.
10599 * f-typeprint.c (f_type_print_varspec_suffix): Expand
10600 UPPER_BOUND and LOWER_BOUND to LONGEST. Use plongest to format
10601 print them.
10602 (f_type_print_base): Expand UPPER_BOUND to LONGEST. Use
10603 plongest to format print it.
10604 * f-valprint.c (f77_get_lowerbound): Return LONGEST.
10605 (f77_get_upperbound): Likewise.
10606 (f77_get_dynamic_length_of_aggregate): Expand UPPER_BOUND,
10607 LOWER_BOUND to LONGEST.
10608 (f77_create_arrayprint_offset_tbl): Likewise.
10609
10610 2019-03-29 Keith Seitz <keiths@redhat.com>
10611
10612 * ada-lang.c (ada_template_to_fixed_record_type_1): Use
10613 %s/pulongest for TYPE_LENGTH instead of %d in format
10614 strings.
10615 * ada-typerint.c (ada_print_type): Likewise.
10616 * amd64-windows-tdep.c (amd64_windows_store_arg_in_reg): Likewise.
10617 * compile/compile-c-support.c (generate_register_struct): Likewise.
10618 * gdbtypes.c (recursive_dump_type): Likewise.
10619 * gdbtypes.h (struct type) <length>: Change type to ULONGEST.
10620 * m2-typeprint.c (m2_array): Use %s/pulongest for TYPE_LENGTH
10621 instead of %d in format strings.
10622 * riscv-tdep.c (riscv_type_alignment): Cast second argument
10623 to std::min to ULONGEST.
10624 * symmisc.c (print_symbol): Use %s/pulongest for TYPE_LENGTH
10625 instead of %d in format strings.
10626 * tracepoint.c (info_scope_command): Likewise.
10627 * typeprint.c (print_offset_data::update)
10628 (print_offset_data::finish): Likewise.
10629 * xtensa-tdep.c (xtensa_store_return_value)
10630 (xtensa_push_dummy_call): Likewise.
10631
10632 2019-03-28 Jon Turney <jon.turney@dronecode.org.uk>
10633
10634 * windows-nat.c (display_selector): Fixed format specifications
10635 for 64-bit Cygwin.
10636
10637 2019-03-28 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10638
10639 * infrun.c (follow_exec): Call target_terminal::ours_for_output.
10640
10641 2019-03-28 Sandra Loosemore <sandra@codesourcery.com>
10642
10643 * nios2-tdep.h (struct gdbarch_tdep): Add is_kernel_helper.
10644 * nios2-tdep.c (nios2_get_next_pc): Skip over kernel helpers.
10645 * nios2-linux-tdep.c (nios2_linux_is_kernel_helper): New.
10646 (nios2_linux_init_abi): Install it.
10647
10648 2019-03-28 Alan Hayward <alan.hayward@arm.com>
10649
10650 * aarch64-tdep.c (aarch64_vnv_type): Use vector types.
10651
10652 2019-03-28 Alan Hayward <alan.hayward@arm.com>
10653
10654 * features/aarch64-sve.c (create_feature_aarch64_sve): Add q view.
10655
10656 2019-03-24 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10657 Tom Tromey <tromey@adacore.com>
10658
10659 * minsyms.c (minimal_symbol_upper_bound): Fix buffer overflow.
10660
10661 2019-03-26 Joel Brobecker <brobecker@adacore.com>
10662
10663 * gdb-gdb.py.in (StructMainTypePrettyPrinter.bound_img): New method.
10664 (StructMainTypePrettyPrinter.bounds_img): Use new "bound_img"
10665 method to compute the bounds of range types. Also print "[evaluated]"
10666 if the bounds' values come from a dynamic evaluation.
10667
10668 2019-03-26 Andrew Burgess <andrew.burgess@embecosm.com>
10669
10670 * cp-valprint.c (cp_print_value_fields): Don't print trailing
10671 whitespace when pretty printing is on.
10672
10673 2019-03-26 Alan Hayward <alan.hayward@arm.com>
10674
10675 * ppc-linux-nat.c: Add include.
10676
10677 2019-03-26 Alan Hayward <alan.hayward@arm.com>
10678
10679 * NEWS: Mention AArch64 Pointer Authentication.
10680
10681 2019-03-26 Alan Hayward <alan.hayward@arm.com>
10682
10683 * arm-linux-nat.c: Add include.
10684
10685 2019-03-25 Simon Marchi <simon.marchi@polymtl.ca>
10686
10687 * source-cache.c (source_cache::get_source_lines): Re-read
10688 fullname after calling open_source_file.
10689
10690 2019-03-25 John Baldwin <jhb@FreeBSD.org>
10691
10692 * NEWS: Mention TLS support for FreeBSD.
10693
10694 2019-03-25 Tom Tromey <tromey@adacore.com>
10695
10696 * minsyms.c (BUNCH_SIZE): Update comment.
10697 (~minimal_symbol_reader): Remove old comment.
10698 (compact_minimal_symbols): Update comment.
10699 (minimal_symbol_reader::install): Remove old comment. Update
10700 other comments.
10701
10702 2019-03-25 Alan Hayward <alan.hayward@arm.com>
10703
10704 * s390-linux-nat.c: Add include.
10705
10706 2019-03-25 Alan Hayward <alan.hayward@arm.com>
10707
10708 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
10709 Call linux_get_hwcap.
10710 * aarch64-linux-tdep.c (aarch64_linux_core_read_description):
10711 Likewise.
10712 (aarch64_linux_get_hwcap): Remove function.
10713 * aarch64-linux-tdep.h (aarch64_linux_get_hwcap): Remove
10714 declaration.
10715 * arm-linux-nat.c (arm_linux_nat_target::read_description):Call
10716 linux_get_hwcap.
10717 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
10718 * linux-tdep.c (linux_get_hwcap): Add function.
10719 (linux_get_hwcap2): Likewise.
10720 * linux-tdep.h (linux_get_hwcap): Add declaration.
10721 (linux_get_hwcap2): Likewise.
10722 * ppc-linux-nat.c (ppc_linux_get_hwcap): Remove function.
10723 (ppc_linux_get_hwcap2): Likewise.
10724 (ppc_linux_nat_target::region_ok_for_hw_watchpoint): Call
10725 linux_get_hwcap.
10726 (ppc_linux_nat_target::insert_watchpoint): Likewise.
10727 (ppc_linux_nat_target::watchpoint_addr_within_range): Likewise.
10728 (ppc_linux_nat_target::read_description): Likewise.
10729 * ppc-linux-tdep.c (ppc_linux_core_read_description): Likewise.
10730 * s390-linux-nat.c: Likewise.
10731 * s390-linux-tdep.c (s390_core_read_description): Likewise.
10732
10733 2019-03-24 Tom Tromey <tom@tromey.com>
10734
10735 * ada-lang.c (standard_lookup): Simplify initialization.
10736 (ada_lookup_symbol_nonlocal): Simplify return.
10737 * solib-spu.c (spu_lookup_lib_symbol): Simplify return.
10738 * solib-darwin.c (darwin_lookup_lib_symbol): Simplify return.
10739 * solib-svr4.c (elf_lookup_lib_symbol): Simplify return.
10740 * rust-lang.c (rust_lookup_symbol_nonlocal): Simplify
10741 initialization.
10742 * solib.c (solib_global_lookup): Simplify.
10743 * symtab.c (null_block_symbol): Remove.
10744 (symbol_cache_lookup): Simplify returns.
10745 (lookup_language_this): Simplify returns.
10746 (lookup_symbol_aux): Simplify return.
10747 (lookup_local_symbol): Simplify returns.
10748 (lookup_global_symbol_from_objfile): Simplify return.
10749 (lookup_symbol_in_objfile_symtabs)
10750 (lookup_symbol_in_objfile_from_linkage_name): Simplify return.
10751 (lookup_symbol_via_quick_fns, lookup_symbol_in_static_block)
10752 (lookup_static_symbol, lookup_global_symbol): Simplify return.
10753 * cp-namespace.c (cp_lookup_bare_symbol)
10754 (cp_search_static_and_baseclasses, cp_lookup_symbol_via_imports)
10755 (cp_lookup_symbol_via_all_imports, cp_lookup_nested_symbol_1)
10756 (cp_lookup_nested_symbol): Don't use null_block_symbol.
10757 (cp_lookup_symbol_via_imports): Simplify initialization.
10758 (find_symbol_in_baseclass): Likewise.
10759 * symtab.h (null_block_symbol): Remove.
10760 * d-namespace.c (d_lookup_symbol): Don't use null_block_symbol.
10761 (d_lookup_nested_symbol, d_lookup_symbol_imports)
10762 (d_lookup_symbol_module): Likewise.
10763 (find_symbol_in_baseclass): Simplify initialization.
10764
10765 2019-03-24 Tom Tromey <tom@tromey.com>
10766
10767 * expression.h: Don't include symtab.h.
10768 (struct block): Forward declare.
10769
10770 2019-03-24 Tom Tromey <tom@tromey.com>
10771
10772 * c-exp.y (typebase): Remove casts.
10773 * gdbtypes.c (lookup_unsigned_typename, )
10774 (lookup_signed_typename): Remove cast.
10775 * eval.c (parse_to_comma_and_eval): Remove cast.
10776 * parse.c (write_dollar_variable): Remove cast.
10777 * block.h (struct block) <superblock>: Now const.
10778 * symfile-debug.c (debug_qf_map_matching_symbols): Update.
10779 * psymtab.c (psym_map_matching_symbols): Make "block" const.
10780 (map_block): Make "block" const.
10781 * symfile.h (struct quick_symbol_functions)
10782 <map_matching_symbols>: Constify block argument to "callback".
10783 * symtab.c (basic_lookup_transparent_type_quick): Make "block"
10784 const.
10785 (find_pc_sect_compunit_symtab): Make "b" const.
10786 (find_symbol_at_address): Likewise.
10787 (search_symbols): Likewise.
10788 * dwarf2read.c (dw2_lookup_symbol): Make "block" const.
10789 (dw2_debug_names_lookup_symbol): Likewise.
10790 (dw2_map_matching_symbols): Update.
10791 * p-valprint.c (pascal_val_print): Remove "block".
10792 * ada-lang.c (ada_add_global_exceptions): Make "b" const.
10793 (aux_add_nonlocal_symbols): Make "block" const.
10794 (resolve_subexp): Remove cast.
10795 * linespec.c (iterate_over_all_matching_symtabs): Make "block"
10796 const.
10797 (iterate_over_file_blocks): Likewise.
10798 * f-exp.y (%union) <bval>: Remove.
10799 * coffread.c (patch_opaque_types): Make "b" const.
10800 * spu-tdep.c (spu_catch_start): Make "block" const.
10801 * c-valprint.c (print_unpacked_pointer): Remove "block".
10802 * symmisc.c (dump_symtab_1): Make "b" const.
10803 (block_depth): Make "block" const.
10804 * d-exp.y (%union) <bval>: Remove.
10805 * cp-support.h (cp_lookup_rtti_type): Update.
10806 * cp-support.c (cp_lookup_rtti_type): Make "block" const.
10807 * psymtab.c (psym_lookup_symbol): Make "block" const.
10808 (maintenance_check_psymtabs): Make "b" const.
10809 * python/py-framefilter.c (extract_sym): Make "sym_block" const.
10810 (enumerate_locals, enumerate_args): Update.
10811 * python/py-symtab.c (stpy_global_block): Make "block" const.
10812 (stpy_static_block): Likewise.
10813 * inline-frame.c (block_starting_point_at): Make "new_block"
10814 const.
10815 * block.c (find_block_in_blockvector): Make return type const.
10816 (blockvector_for_pc_sect): Make "b" const.
10817 (find_block_in_blockvector): Make "b" const.
10818
10819 2019-03-23 Tom Tromey <tom@tromey.com>
10820
10821 * varobj.c (varobj_create): Update.
10822 * symfile.c (clear_symtab_users): Don't reset innermost_block.
10823 * printcmd.c (display_command, do_one_display): Don't reset
10824 innermost_block.
10825 * parser-defs.h (enum innermost_block_tracker_type): Move to
10826 expression.h.
10827 (innermost_block): Update comment.
10828 * parse.c (parse_exp_1): Add tracker_types parameter.
10829 (parse_exp_in_context): Rename from parse_exp_in_context_1. Add
10830 tracker_types parameter. Reset innermost_block.
10831 (parse_exp_in_context): Remove.
10832 (parse_expression_for_completion): Update.
10833 * objfiles.c (~objfile): Don't reset expression_context_block or
10834 innermost_block.
10835 * expression.h (enum innermost_block_tracker_type): Move from
10836 parser-defs.h.
10837 (parse_exp_1): Add tracker_types parameter.
10838 * breakpoint.c (set_breakpoint_condition, watch_command_1): Don't
10839 reset innermost_block.
10840
10841 2019-03-23 Tom Tromey <tom@tromey.com>
10842
10843 * objfiles.h: Include bcache.h.
10844
10845 2019-03-23 Tom Tromey <tom@tromey.com>
10846
10847 * linespec.c (get_current_search_block): Use
10848 scoped_restore_current_language.
10849 * symmisc.c (dump_symtab): Use scoped_restore_current_language.
10850
10851 2019-03-22 Alan Hayward <alan.hayward@arm.com>
10852 Jiong Wang <jiong.wang@arm.com>
10853
10854 * aarch64-linux-tdep.c
10855 (aarch64_linux_iterate_over_regset_sections): Check for pauth
10856 section.
10857 * aarch64-linux-tdep.h (AARCH64_LINUX_SIZEOF_PAUTH): New define.
10858
10859 2019-03-22 Alan Hayward <alan.hayward@arm.com>
10860 Jiong Wang <jiong.wang@arm.com>
10861
10862 * aarch64-tdep.c (aarch64_analyze_prologue): Check for pauth
10863 instructions.
10864 (aarch64_analyze_prologue_test): Add PACIASP test.
10865 (aarch64_prologue_prev_register): Unmask PC value.
10866
10867 2019-03-22 Alan Hayward <alan.hayward@arm.com>
10868 Jiong Wang <jiong.wang@arm.com>
10869
10870 * aarch64-tdep.c (aarch64_frame_unmask_address): New function.
10871 (aarch64_dwarf2_prev_register): Unmask PC value.
10872 (aarch64_dwarf2_frame_init_reg): Init pauth registers.
10873 (aarch64_execute_dwarf_cfa_vendor_op): Check for
10874 DW_CFA_AARCH64_negate_ra_state.
10875 (aarch64_gdbarch_init): Add aarch64_execute_dwarf_cfa_vendor_op.
10876
10877 2019-03-22 Alan Hayward <alan.hayward@arm.com>
10878 Jiong Wang <jiong.wang@arm.com>
10879
10880 * aarch64-tdep.c (aarch64_dwarf_reg_to_regnum): Check for pauth
10881 registers.
10882 (aarch64_pseudo_register_name): Likewise.
10883 (aarch64_pseudo_register_type): Likewise.
10884 (aarch64_pseudo_register_reggroup_p): Likewise.
10885 (aarch64_gdbarch_init): Add pauth registers.
10886 * aarch64-tdep.h (AARCH64_DWARF_PAUTH_RA_STATE): New define.
10887 (AARCH64_DWARF_PAUTH_DMASK): Likewise.
10888 (AARCH64_DWARF_PAUTH_CMASK): Likewise.
10889 (struct gdbarch_tdep): Add regnum for ra_state.
10890
10891 2019-03-22 Alan Hayward <alan.hayward@arm.com>
10892 Jiong Wang <jiong.wang@arm.com>
10893
10894 * arch/aarch64.h (AARCH64_PAUTH_REGS_SIZE): New define.
10895
10896 2019-03-22 Alan Hayward <alan.hayward@arm.com>
10897 Jiong Wang <jiong.wang@arm.com>
10898
10899 * aarch64-linux-nat.c (fetch_pauth_masks_from_thread): New
10900 function.
10901 (aarch64_linux_nat_target::fetch_registers): Read pauth registers.
10902 * aarch64-tdep.c (aarch64_cannot_store_register): New function.
10903 (aarch64_gdbarch_init): Add puth registers.
10904 * aarch64-tdep.h (struct gdbarch_tdep): Add pauth features.
10905 * arch/aarch64.h (AARCH64_PAUTH_DMASK_REGNUM): New define.
10906 (AARCH64_PAUTH_CMASK_REGNUM): Likewise.
10907
10908 2019-03-22 Alan Hayward <alan.hayward@arm.com>
10909 Jiong Wang <jiong.wang@arm.com>
10910
10911 * aarch64-linux-nat.c
10912 (aarch64_linux_nat_target::read_description): Read PACA hwcap.
10913 * aarch64-linux-tdep.c
10914 (aarch64_linux_core_read_description): Likewise.
10915 (aarch64_linux_get_hwcap): New function.
10916 * aarch64-linux-tdep.h (AARCH64_HWCAP_PACA): New define.
10917 (aarch64_linux_get_hwcap): New declaration.
10918
10919 2019-03-22 Alan Hayward <alan.hayward@arm.com>
10920 Jiong Wang <jiong.wang@arm.com>
10921
10922 * aarch64-linux-nat.c
10923 (aarch64_linux_nat_target::read_description): Add pauth param.
10924 * aarch64-linux-tdep.c
10925 (aarch64_linux_core_read_description): Likewise.
10926 * aarch64-tdep.c (struct target_desc): Add in pauth.
10927 (aarch64_read_description): Add pauth param.
10928 (aarch64_gdbarch_init): Likewise.
10929 * aarch64-tdep.h (aarch64_read_description): Likewise.
10930 * arch/aarch64.c (aarch64_create_target_description): Likewise.
10931 * arch/aarch64.h (aarch64_create_target_description): Likewise.
10932 * features/Makefile: Add new files.
10933 * features/aarch64-pauth.c: New file.
10934 * features/aarch64-pauth.xml: New file.
10935
10936 2019-03-20 Tom Tromey <tromey@adacore.com>
10937
10938 * infrun.c (handle_inferior_event): Rename from
10939 handle_inferior_event_1. Create a scoped_value_mark.
10940 (handle_inferior_event): Remove.
10941
10942 2019-03-19 Tom Tromey <tromey@adacore.com>
10943
10944 * mi/mi-interp.c (mi_on_normal_stop_1): Only show displays once.
10945 * infrun.h (print_stop_event): Add "displays" parameter.
10946 * infrun.c (print_stop_event): Add "displays" parameter.
10947
10948 2019-03-19 Pedro Alves <palves@redhat.com>
10949
10950 * tui/tui-out.c (tui_ui_out::do_field_string): Simplify.
10951 (tui_ui_out::do_text): Add comments. Reset M_LINE to 0 instead of
10952 to -1. Fix TABs vs spaces.
10953 (tui_ui_out::tui_ui_out): Don't initialize fields here.
10954 * tui/tui-out.h (tui_ui_out) Add intro comments.
10955 <m_line, m_start_of_line>: In-class initialize, and add describing
10956 comment.
10957
10958 2019-03-18 Alan Hayward <alan.hayward@arm.com>
10959
10960 * arm-linux-nat.c (arm_linux_insert_hw_breakpoint1): Fix
10961 variable names.
10962 (arm_linux_remove_hw_breakpoint1): Use a gdb::function_view.
10963
10964 2019-03-18 Pedro Alves <palves@redhat.com>
10965 Eli Zaretskii <eliz@gnu.org>
10966
10967 * tui/tui-out.c (tui_ui_out::tui_ui_out): Fix initialization of
10968 m_line and m_start_of_line.
10969
10970 2019-03-18 Eli Zaretskii <eliz@gnu.org>
10971
10972 * tui/tui-io.c (gdb_wgetch): Don't echo CR.
10973 (tui_getc): When gdb_wgetch returns a CR, behave the same as when
10974 it returns a newline. This fixes a regression in TU mode, whereby
10975 the next line is output on the same screen line as the user input.
10976
10977 2019-03-18 Tom Tromey <tromey@adacore.com>
10978
10979 * minsyms.c (minimal_symbol_reader::install): Remove call to
10980 obstack_blank.
10981
10982 2019-03-18 Pedro Alves <palves@redhat.com>
10983
10984 * tui/tui-io.c (reverse_mode_p, reverse_save_bg, reverse_save_fg):
10985 New globals.
10986 (apply_style): New, factored out from ...
10987 (apply_ansi_escape): ... this. Handle reverse video mode.
10988 (tui_set_reverse_mode): New function.
10989 * tui/tui-io.h (tui_set_reverse_mode): New declaration.
10990 * tui/tui-winsource.c (tui_show_source_line): Use
10991 tui_set_reverse_mode instead of setting A_STANDOUT.
10992 * ui-style.h (struct ui_file_style) <set_reverse, set_fg, set_bg>:
10993 New setter methods.
10994
10995 2019-03-18 Hannes Domani <ssbssa@yahoo.de>
10996
10997 * tui/tui-source.c (copy_source_line): Fix handling of 'column'.
10998 Handle tabs.
10999
11000 2019-03-18 Tom Tromey <tromey@adacore.com>
11001
11002 * ada-lang.c (empty_array): Add "high" parameter.
11003 (ada_evaluate_subexp): Update.
11004
11005 2019-03-17 Sergei Trofimovich <siarheit@google.com>
11006
11007 * unittests/string_view-selftests.c: Define
11008 _initialize_string_view_selftests unconditionally.
11009
11010 2019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
11011
11012 PR gdb/24350
11013 * windows-nat.c (windows_make_so): Remove unused text_vma variable.
11014
11015 2019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
11016
11017 PR gdb/24351
11018 * windows-nat.c (display_selector): Fix format specifiers.
11019
11020 2019-03-17 Eli Zaretskii <eliz@gnu.org>
11021
11022 * tui/tui-winsource.c (tui_set_is_exec_point_at): Call
11023 tui_refill_source_window instead of tui_refresh_win, to update the
11024 current execution line. This fixes redisplay of the current line
11025 when stepping through the code with "next" or "step".
11026
11027 2019-03-16 Eli Zaretskii <eliz@gnu.org>
11028
11029 * source-cache.c (source_cache::get_source_lines): Call
11030 find_source_lines to initialize s->nlines. This fixes vertical
11031 scrolling of TUI source window when the DOWN arrow is pressed.
11032
11033 2019-03-16 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11034
11035 * auto-load.c (_initialize_auto_load): Fix 'This options has'.
11036 linux-thread-db.c (_initialize_thread_db): Likewise.
11037
11038 2019-03-16 Eli Zaretskii <eliz@gnu.org>
11039
11040 * tui/tui-winsource.c (tui_show_source_line): Revert "Use
11041 wclrtoeol in tui_show_source_line". This reverts changes made in
11042 commit 4a3045920bbe4e50a0f4920b0fdc4e88ef23015c.
11043
11044 2019-03-15 Tom Tromey <tom@tromey.com>
11045
11046 * symtab.h (struct minimal_symbol): Derive from
11047 general_symbol_info.
11048 (MSYMBOL_VALUE, MSYMBOL_VALUE_RAW_ADDRESS)
11049 (MSYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_BYTES)
11050 (MSYMBOL_BLOCK_VALUE, MSYMBOL_VALUE_CHAIN, MSYMBOL_LANGUAGE)
11051 (MSYMBOL_SECTION, MSYMBOL_OBJ_SECTION, MSYMBOL_NATURAL_NAME)
11052 (MSYMBOL_LINKAGE_NAME, MSYMBOL_DEMANGLED_NAME)
11053 (MSYMBOL_SEARCH_NAME): Update.
11054 (MSYMBOL_SET_LANGUAGE, MSYMBOL_SET_NAMES): Remove.
11055 * solib.c (gdb_bfd_lookup_symbol_from_symtab): Don't use memset.
11056 * minsyms.c (minimal_symbol_reader::record_full): Update.
11057
11058 2019-03-15 Tom Tromey <tom@tromey.com>
11059
11060 * minsyms.c (minimal_symbol_reader::install): Use memcpy.
11061
11062 2019-03-15 Tom Tromey <tom@tromey.com>
11063
11064 * objfiles.h (struct objfile_per_bfd_storage) <msymbols>: Now a
11065 unique_xmalloc_ptr.
11066 (objfile::msymbols_range::begin, objfile::msymbols_range::end):
11067 Update.
11068 * minsyms.c (lookup_minimal_symbol_by_pc_section)
11069 (build_minimal_symbol_hash_tables)
11070 (minimal_symbol_reader::install): Update.
11071
11072 2019-03-15 Tom Tromey <tom@tromey.com>
11073
11074 * symtab.c (create_demangled_names_hash): Update.
11075 (symbol_set_names): Update.
11076 * objfiles.h (struct objfile_per_bfd_storage)
11077 <demangled_names_hash>: Now an htab_up.
11078 * objfiles.c (objfile_per_bfd_storage): Simplify.
11079
11080 2019-03-15 Tom Tromey <tom@tromey.com>
11081
11082 * objfiles.h (struct objfile_per_bfd_storage): Declare
11083 destructor.
11084 * objfiles.c (objfile_per_bfd_storage::~objfile_per_bfd_storage):
11085 New.
11086 (get_objfile_bfd_data): Use new. Don't initialize
11087 language_of_main.
11088 (free_objfile_per_bfd_storage): Remove.
11089 (objfile_bfd_data_free, objfile::~objfile): Use delete.
11090
11091 2019-03-15 Tom Tromey <tom@tromey.com>
11092
11093 * symfile.c (reread_symbols): Update.
11094 * objfiles.c (objfile::objfile): Update.
11095 * minsyms.h (terminate_minimal_symbol_table): Don't declare.
11096 * minsyms.c (lookup_minimal_symbol_by_pc_section): Update
11097 comment.
11098 (minimal_symbol_reader::install): Update.
11099 (terminate_minimal_symbol_table): Remove.
11100 * jit.c (jit_object_close_impl): Update.
11101
11102 2019-03-15 Tom Tromey <tom@tromey.com>
11103
11104 * minsyms.c (minimal_symbol_reader::record_full): Remove some
11105 initializations.
11106
11107 2019-03-15 Tom Tromey <tom@tromey.com>
11108
11109 * objfiles.h (struct objfile_per_bfd_storage)
11110 <demangled_hash_languages>: Now a bitset.
11111 * minsyms.c (add_minsym_to_demangled_hash_table): Update.
11112 (lookup_minimal_symbol): Update.
11113
11114 2019-03-15 Tom Tromey <tom@tromey.com>
11115
11116 * minsyms.h (class minimal_symbol_reader) <record_with_info>:
11117 Don't return the symbol.
11118 * coffread.c (record_minimal_symbol): Use record_full.
11119
11120 2019-03-14 Eli Zaretskii <eliz@gnu.org>
11121
11122 The MS-Windows port of ncurses fails to switch to a color pair if
11123 one or both of the colors are the implicit default colors. This
11124 change records the default colors when TUI is initialized, and
11125 then specifies them explicitly when a color pair uses the default
11126 colors. This allows color styling in TUI mode on MS-Windows.
11127
11128 * tui/tui-io.c [__MINGW32__]: Include windows.h. Declare
11129 ncurses_norm_attr.
11130 (tui_initialize_io) [__MINGW32__]: Record the default terminal
11131 colors in ncurses_norm_attr.
11132 (apply_ansi_escape) [__MINGW32__]: If a color in a color pair is
11133 "none", replace it with the default color recorded in
11134 ncurses_norm_attr.
11135
11136 2019-03-14 Tom Tromey <tromey@adacore.com>
11137
11138 * source-cache.h (class source_cache) <get_source_lines>: Return
11139 std::string.
11140 * source-cache.c (source_cache::extract_lines): Handle case where
11141 first_pos==npos. Return std::string.
11142 (source_cache::get_source_lines): Update.
11143
11144 2019-03-14 Tom Tromey <tromey@adacore.com>
11145
11146 * NEWS: Add item for "style sources" commands.
11147 * source-cache.c (source_cache::get_source_lines): Check
11148 source_styling.
11149 * cli/cli-style.c (source_styling): New global.
11150 (_initialize_cli_style): Add "style sources" commands.
11151 (show_style_sources): New function.
11152 * cli/cli-style.h (source_styling): Declare.
11153
11154 2019-03-14 Pedro Alves <palves@redhat.com>
11155 Tom Tromey <tromey@adacore.com>
11156
11157 * tui/tui-winsource.h (tui_refill_source_window): Declare.
11158 * tui/tui-winsource.c (tui_refill_source_window): New function,
11159 from...
11160 (tui_horizontal_source_scroll): ... here. Move some logic.
11161 * cli/cli-style.c (set_style_enabled): Notify new observable.
11162 * tui/tui-hooks.c (tui_redisplay_source): New function.
11163 (tui_attach_detach_observers): Attach or detach
11164 tui_redisplay_source.
11165 * observable.h (source_styling_changed): New observable.
11166 * observable.c: Define source_styling_changed observable.
11167
11168 2019-03-13 Tom Tromey <tromey@adacore.com>
11169
11170 * i386-gnu-nat.c (i386_gnu_nat_target::fetch_registers)
11171 (i386_gnu_nat_target::store_registers): Update.
11172 * target-debug.h (target_debug_print_std_string): New macro.
11173 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
11174 * windows-tdep.c (display_one_tib): Update.
11175 * tui/tui-stack.c (tui_make_status_line): Update.
11176 * top.c (print_inferior_quit_action): Update.
11177 * thread.c (thr_try_catch_cmd): Update.
11178 (add_thread_with_info): Update.
11179 (thread_target_id_str): Update.
11180 (thr_try_catch_cmd): Update.
11181 (thread_command): Update.
11182 (thread_find_command): Update.
11183 * record-btrace.c (record_btrace_target::info_record)
11184 (record_btrace_resume_thread, record_btrace_target::resume)
11185 (record_btrace_cancel_resume, record_btrace_step_thread)
11186 (record_btrace_target::wait, record_btrace_target::wait)
11187 (record_btrace_target::wait, record_btrace_target::stop): Update.
11188 * progspace.c (print_program_space): Update.
11189 * process-stratum-target.c
11190 (process_stratum_target::thread_address_space): Update.
11191 * linux-fork.c (linux_fork_mourn_inferior)
11192 (detach_checkpoint_command, info_checkpoints_command)
11193 (linux_fork_context): Update.
11194 (linux_fork_detach): Update.
11195 (class scoped_switch_fork_info): Update.
11196 (delete_checkpoint_command): Update.
11197 * infrun.c (follow_fork_inferior): Update.
11198 (follow_fork_inferior): Update.
11199 (proceed_after_vfork_done): Update.
11200 (handle_vfork_child_exec_or_exit): Update.
11201 (follow_exec): Update.
11202 (displaced_step_prepare_throw): Update.
11203 (displaced_step_restore): Update.
11204 (start_step_over): Update.
11205 (resume_1): Update.
11206 (clear_proceed_status_thread): Update.
11207 (proceed): Update.
11208 (print_target_wait_results): Update.
11209 (do_target_wait): Update.
11210 (context_switch): Update.
11211 (stop_all_threads): Update.
11212 (restart_threads): Update.
11213 (finish_step_over): Update.
11214 (handle_signal_stop): Update.
11215 (switch_back_to_stepped_thread): Update.
11216 (keep_going_pass_signal): Update.
11217 (print_exited_reason): Update.
11218 (normal_stop): Update.
11219 * inferior.c (inferior_pid_to_str): Change return type.
11220 (print_selected_inferior): Update.
11221 (add_inferior): Update.
11222 (detach_inferior): Update.
11223 * dummy-frame.c (fprint_dummy_frames): Update.
11224 * dcache.c (dcache_info_1): Update.
11225 * btrace.c (btrace_enable, btrace_disable, btrace_teardown)
11226 (btrace_fetch, btrace_clear): Update.
11227 * linux-tdep.c (linux_core_pid_to_str): Change return type.
11228 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): Change return
11229 type.
11230 * fbsd-tdep.c (fbsd_core_pid_to_str): Change return type.
11231 * sol2-tdep.h (sol2_core_pid_to_str): Change return type.
11232 * sol2-tdep.c (sol2_core_pid_to_str): Change return type.
11233 * gdbarch.c, gdbarch.h: Rebuild.
11234 * gdbarch.sh (core_pid_to_str): Change return type.
11235 * windows-nat.c (struct windows_nat_target) <pid_to_str>: Change
11236 return type.
11237 (windows_nat_target::pid_to_str): Change return type.
11238 (windows_delete_thread): Update.
11239 (windows_nat_target::attach): Update.
11240 (windows_nat_target::files_info): Update.
11241 * target-delegates.c: Rebuild.
11242 * sol-thread.c (class sol_thread_target) <pid_to_str>: Change
11243 return type.
11244 (sol_thread_target::pid_to_str): Change return type.
11245 * remote.c (class remote_target) <pid_to_str>: Change return
11246 type.
11247 (remote_target::pid_to_str): Change return type.
11248 (extended_remote_target::attach, remote_target::remote_stop_ns)
11249 (remote_target::remote_notif_remove_queued_reply)
11250 (remote_target::push_stop_reply, remote_target::disable_btrace):
11251 Update.
11252 (extended_remote_target::attach): Update.
11253 * remote-sim.c (struct gdbsim_target) <pid_to_str>: Change return
11254 type.
11255 (gdbsim_target::pid_to_str): Change return type.
11256 * ravenscar-thread.c (struct ravenscar_thread_target)
11257 <pid_to_str>: Change return type.
11258 (ravenscar_thread_target::pid_to_str): Change return type.
11259 * procfs.c (class procfs_target) <pid_to_str>: Change return
11260 type.
11261 (procfs_target::pid_to_str): Change return type.
11262 (procfs_target::attach): Update.
11263 (procfs_target::detach): Update.
11264 (procfs_target::fetch_registers): Update.
11265 (procfs_target::store_registers): Update.
11266 (procfs_target::wait): Update.
11267 (procfs_target::files_info): Update.
11268 * obsd-nat.c (obsd_nat_target::pid_to_str): Change return type.
11269 * nto-procfs.c (struct nto_procfs_target) <pid_to_str>: Change
11270 return type.
11271 (nto_procfs_target::pid_to_str): Change return type.
11272 (nto_procfs_target::files_info, nto_procfs_target::attach): Update.
11273 * linux-thread-db.c (class thread_db_target) <pid_to_str>: Change
11274 return type.
11275 * linux-nat.c (linux_nat_target::pid_to_str): Change return type.
11276 (exit_lwp): Update.
11277 (attach_proc_task_lwp_callback, get_detach_signal)
11278 (detach_one_lwp, resume_lwp, linux_nat_target::resume)
11279 (linux_nat_target::resume, wait_lwp, stop_callback)
11280 (maybe_clear_ignore_sigint, stop_wait_callback, status_callback)
11281 (save_stop_reason, select_event_lwp, linux_nat_filter_event)
11282 (linux_nat_wait_1, resume_stopped_resumed_lwps)
11283 (linux_nat_target::wait, linux_nat_stop_lwp): Update.
11284 * inf-ptrace.c (inf_ptrace_target::pid_to_str): Change return
11285 type.
11286 (inf_ptrace_target::attach): Update.
11287 (inf_ptrace_target::files_info): Update.
11288 * go32-nat.c (struct go32_nat_target) <pid_to_str>: Change return
11289 type.
11290 (go32_nat_target::pid_to_str): Change return type.
11291 * gnu-nat.c (gnu_nat_target::pid_to_str): Change return type.
11292 (gnu_nat_target::wait): Update.
11293 (gnu_nat_target::wait): Update.
11294 (gnu_nat_target::resume): Update.
11295 * fbsd-nat.c (fbsd_nat_target::pid_to_str): Change return type.
11296 (fbsd_nat_target::wait): Update.
11297 * darwin-nat.c (darwin_nat_target::pid_to_str): Change return
11298 type.
11299 (darwin_nat_target::attach): Update.
11300 * corelow.c (class core_target) <pid_to_str>: Change return type.
11301 (core_target::pid_to_str): Change return type.
11302 * target.c (normal_pid_to_str): Change return type.
11303 (default_pid_to_str): Likewise.
11304 (target_pid_to_str): Change return type.
11305 (target_translate_tls_address): Update.
11306 (target_announce_detach): Update.
11307 * bsd-uthread.c (struct bsd_uthread_target) <pid_to_str>: Change
11308 return type.
11309 (bsd_uthread_target::pid_to_str): Change return type.
11310 * bsd-kvm.c (class bsd_kvm_target) <pid_to_str>: Change return
11311 type.
11312 (bsd_kvm_target::pid_to_str): Change return type.
11313 * aix-thread.c (class aix_thread_target) <pid_to_str>: Change
11314 return type.
11315 (aix_thread_target::pid_to_str): Change return type.
11316 * target.h (struct target_ops) <pid_to_str>: Change return type.
11317 (target_pid_to_str, normal_pid_to_str): Likewise.
11318 * obsd-nat.h (class obsd_nat_target) <pid_to_str>: Change return
11319 type.
11320 * linux-nat.h (class linux_nat_target) <pid_to_str>: Change return
11321 type.
11322 * inf-ptrace.h (struct inf_ptrace_target) <pid_to_str>: Change
11323 return type.
11324 * gnu-nat.h (struct gnu_nat_target) <pid_to_str>: Change return
11325 type.
11326 * fbsd-nat.h (class fbsd_nat_target) <pid_to_str>: Change return
11327 type.
11328 * darwin-nat.h (class darwin_nat_target) <pid_to_str>: Change
11329 return type.
11330
11331 2019-03-13 Simon Marchi <simon.marchi@ericsson.com>
11332
11333 * NEWS: Mention that the new default MI version is 3. Mention
11334 changes to the output of commands and events that deal with
11335 multi-location breakpoints.
11336 * breakpoint.c: Include "mi/mi-out.h".
11337 (print_one_breakpoint): Change output syntax if using MI version
11338 >= 3.
11339 * mi/mi-main.h (mi_cmd_fix_multi_location_breakpoint_output):
11340 New.
11341 (mi_multi_location_breakpoint_output_fixed): New.
11342 * mi/mi-main.c (fix_multi_location_breakpoint_output): New.
11343 (mi_cmd_fix_multi_location_breakpoint_output): New.
11344 (mi_multi_location_breakpoint_output_fixed): New.
11345 * mi/mi-cmds.c (mi_cmds): Register command
11346 -fix-multi-location-breakpoint-output.
11347 * mi/mi-out.c (mi_out_new): Instantiate version 3 when using
11348 interpreter "mi".
11349
11350 2019-03-13 Simon Marchi <simon.marchi@polymtl.ca>
11351
11352 * mi/mi-out.h (mi_out_new): Change parameter to const char *.
11353 * mi/mi-out.c (mi_out_new): Change parameter to const char *,
11354 instantiate mi_ui_out based on interpreter name.
11355 * mi/mi-interp.c (mi_interp::init): Use the new mi_out_new.
11356 * mi/mi-main.c (mi_load_progress): Likewise.
11357
11358 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11359
11360 * NEWS: Combine separate "New targets" sections for 8.3.
11361
11362 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11363
11364 * ppc-fbsd-tdep.c (ppcfbsd_get_thread_local_address): New.
11365 (ppcfbsd_init_abi): Install gdbarch
11366 "fetch_tls_load_module_address" and "get_thread_local_address"
11367 methods.
11368
11369 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11370
11371 * riscv-fbsd-tdep.c (riscv_fbsd_get_thread_local_address): New.
11372 (riscv_fbsd_init_abi): Install gdbarch
11373 "fetch_tls_load_module_address" and "get_thread_local_address"
11374 methods.
11375
11376 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11377
11378 * i386-fbsd-tdep.c (i386fbsd_get_thread_local_address): New.
11379 (i386fbsd_init_abi): Install gdbarch
11380 "fetch_tls_load_module_address" and "get_thread_local_address"
11381 methods.
11382
11383 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11384
11385 * amd64-fbsd-tdep.c (amd64fbsd_get_thread_local_address): New.
11386 (amd64fbsd_init_abi): Install gdbarch
11387 "fetch_tls_load_module_address" and "get_thread_local_address"
11388 methods.
11389
11390 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11391
11392 * fbsd-tdep.c (fbsd_pspace_data_handle): New variable.
11393 (struct fbsd_pspace_data): New type.
11394 (get_fbsd_pspace_data, fbsd_pspace_data_cleanup)
11395 (fbsd_read_integer_by_name, fbsd_fetch_rtld_offsets)
11396 (fbsd_get_tls_index, fbsd_get_thread_local_address): New function.
11397 (_initialize_fbsd_tdep): Initialize 'fbsd_pspace_data_handle'.
11398 * fbsd-tdep.c (fbsd_get_thread_local_address): New prototype.
11399
11400 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11401
11402 * gdbtypes.c (lookup_struct_elt): New function.
11403 (lookup_struct_elt_type): Reimplement via lookup_struct_elt.
11404 * gdbtypes.h (struct struct_elt): New type.
11405 (lookup_struct_elt): New prototype.
11406
11407 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11408
11409 * gdbtypes.c (lookup_struct_elt_type): Update comment and
11410 remove disabled code block.
11411
11412 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11413
11414 * gdbarch.sh (get_thread_local_address): New method.
11415 * gdbarch.h, gdbarch.c: Regenerate.
11416 * target.c (target_translate_tls_address): Use
11417 gdbarch_get_thread_local_address if present instead of
11418 target::get_thread_local_address.
11419
11420 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11421
11422 * target.h (target::get_thread_local_address): Update comment.
11423
11424 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11425
11426 * solib-svr4.c (svr4_fetch_objfile_link_map): Look for
11427 objfile->separate_debug_objfile_backlink if not NULL.
11428
11429 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11430
11431 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
11432 tdep->fsbase_regnum instead of constants for fs_base and gs_base.
11433 (amd64bsd_store_inferior_registers): Likewise.
11434 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
11435 Enable segment base registers.
11436 * i386-bsd-nat.c (i386bsd_fetch_inferior_registers): Use
11437 PT_GETFSBASE and PT_GETGSBASE.
11438 (i386bsd_store_inferior_registers): Use PT_SETFSBASE and
11439 PT_SETGSBASE.
11440 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Enable
11441 segment base registers.
11442 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
11443
11444 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11445
11446 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
11447 Update calls to i386_target_description to add 'segments'
11448 parameter.
11449 * amd64-tdep.c (amd64_init_abi): Set tdep->fsbase_regnum. Don't
11450 add segment base registers.
11451 * arch/i386.c (i386_create_target_description): Add 'segments'
11452 parameter to enable segment base registers.
11453 * arch/i386.h (i386_create_target_description): Likewise.
11454 * features/i386/32bit-segments.xml: New file.
11455 * features/i386/32bit-segments.c: Generate.
11456 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Update
11457 call to i386_target_description to add 'segments' parameter.
11458 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
11459 * i386-go32-tdep.c (i386_go32_init_abi): Likewise.
11460 * i386-linux-tdep.c (i386_linux_read_description): Likewise.
11461 * i386-tdep.c (i386_validate_tdesc_p): Add segment base registers
11462 if feature is present.
11463 (i386_gdbarch_init): Pass I386_NUM_REGS to set_gdbarch_num_regs.
11464 Add 'segments' parameter to call to i386_target_description.
11465 (i386_target_description): Add 'segments' parameter to enable
11466 segment base registers.
11467 (_initialize_i386_tdep) [GDB_SELF_TEST]: Add 'segments' parameter
11468 to call to i386_target_description.
11469 * i386-tdep.h (struct gdbarch_tdep): Add 'fsbase_regnum'.
11470 (enum i386_regnum): Add I386_FSBASE_REGNUM and I386_GSBASE_REGNUM.
11471 Define I386_NUM_REGS.
11472 (i386_target_description): Add 'segments' parameter to enable
11473 segment base registers.
11474
11475 2019-03-12 Eli Zaretskii <eliz@gnu.org>
11476
11477 PR/24325
11478 * source-cache.c: #undef open and close, to avoid unresolved
11479 externals during linking.
11480
11481 2019-03-12 Tom Tromey <tromey@adacore.com>
11482
11483 * remote.c (magic_null_ptid, not_sent_ptid, any_thread_ptid): Now
11484 const. Add initializers.
11485 (_initialize_remote): Don't initialize ptid globals.
11486
11487 2019-03-12 Pedro Alves <palves@redhat.com>
11488
11489 * yy-remap.h [TEST_CPNAMES] (YYFPRINTF): Don't define.
11490
11491 2019-03-12 Pedro Alves <palves@redhat.com>
11492
11493 * cp-name-parser.y (main): Remove unused 'len' variable.
11494
11495 2019-03-12 Tom Tromey <tromey@adacore.com>
11496
11497 * common/ptid.c (null_ptid, minus_one_ptid): Now const.
11498 * common/ptid.h (null_ptid, minus_one_ptid): Now const.
11499
11500 2019-03-12 Tom Tromey <tromey@adacore.com>
11501
11502 * linux-nat.c (iterate_over_lwps): Update.
11503 (stop_callback): Remove parameter.
11504 (stop_wait_callback, detach_callback, resume_set_callback)
11505 (select_singlestep_lwp_callback, set_ignore_sigint)
11506 (status_callback, resumed_callback, resume_clear_callback)
11507 (kill_callback, kill_wait_callback, linux_nat_stop_lwp): Remove
11508 data parameter.
11509 (linux_nat_target::detach, linux_nat_target::resume)
11510 (linux_stop_and_wait_all_lwps, select_event_lwp)
11511 (linux_nat_filter_event, linux_nat_wait_1)
11512 (linux_nat_target::kill, linux_nat_target::stop)
11513 (linux_nat_target::stop): Update.
11514 (linux_nat_resume_callback): Change type.
11515 (resume_stopped_resumed_lwps, count_events_callback)
11516 (select_event_lwp_callback): Likewise.
11517 (linux_stop_lwp, linux_nat_stop_lwp): Update.
11518 * arm-linux-nat.c (struct update_registers_data): Remove.
11519 (update_registers_callback): Change type.
11520 (arm_linux_insert_hw_breakpoint1): Update.
11521 * nat/x86-linux-dregs.c (update_debug_registers_callback): Remove
11522 parameter.
11523 (x86_linux_dr_set_addr): Update.
11524 (x86_linux_dr_set_control): Update.
11525 * nat/linux-nat.h (iterate_over_lwps_ftype): Remove parameter.
11526 (iterate_over_lwps): Use gdb::function_view.
11527 * nat/aarch64-linux-hw-point.c (struct
11528 aarch64_dr_update_callback_param): Remove.
11529 (debug_reg_change_callback): Change type.
11530 (aarch64_notify_debug_reg_change): Update.
11531 * s390-linux-nat.c (s390_refresh_per_info): Update.
11532
11533 2019-03-11 Tom Tromey <tromey@adacore.com>
11534
11535 * dwarf2read.c (dwarf2_find_containing_comp_unit): Remove
11536 redundant assignment to "this_cu".
11537
11538 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11539
11540 * gdbtypes.c (rank_one_type): Remove unnecessary cases from switch.
11541
11542 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11543
11544 * gdbtypes.c (rank_one_type_parm_set): New function extracted
11545 from...
11546 (rank_one_type): ... this.
11547
11548 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11549
11550 * gdbtypes.c (rank_one_type_parm_struct): New function extracted
11551 from...
11552 (rank_one_type): ... this.
11553
11554 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11555
11556 * gdbtypes.c (rank_one_type_parm_complex): New function extracted
11557 from...
11558 (rank_one_type): ... this.
11559
11560 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11561
11562 * gdbtypes.c (rank_one_type_parm_float): New function extracted
11563 from...
11564 (rank_one_type): ... this.
11565
11566 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11567
11568 * gdbtypes.c (rank_one_type_parm_bool): New function extracted
11569 from...
11570 (rank_one_type): ... this.
11571
11572 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11573
11574 * gdbtypes.c (rank_one_type_parm_range): New function extracted
11575 from...
11576 (rank_one_type): ... this.
11577
11578 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11579
11580 * gdbtypes.c (rank_one_type_parm_char): New function extracted
11581 from...
11582 (rank_one_type): ... this.
11583
11584 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11585
11586 * gdbtypes.c (rank_one_type_parm_enum): New function extracted
11587 from...
11588 (rank_one_type): ... this.
11589
11590 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11591
11592 * gdbtypes.c (rank_one_type_parm_int): New function extracted
11593 from...
11594 (rank_one_type): ... this.
11595
11596 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11597
11598 * gdbtypes.c (rank_one_type_parm_func): New function extracted
11599 from...
11600 (rank_one_type): ... this.
11601
11602 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11603
11604 * gdbtypes.c (rank_one_type_parm_array): New function extracted
11605 from...
11606 (rank_one_type): ... this.
11607
11608 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11609
11610 * gdbtypes.c (rank_one_type_parm_ptr): New function extracted
11611 from...
11612 (rank_one_type): ... this.
11613
11614 2019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11615
11616 * inferior.c (initialize_inferiors): Ensure 'help set/show print
11617 inferior-events' shows the example events.
11618
11619 2019-03-08 Eli Zaretskii <eliz@gnu.org>
11620
11621 Support styling on native MS-Windows console
11622
11623 PR/24315
11624 * utils.c (can_emit_style_escape) [_WIN32]: Don't disable styling
11625 on MS-Windows if $TERM is not defined.
11626
11627 * cli/cli-style.c: Set cli_styling to 1 in the MinGW build.
11628
11629 * posix-hdep.c (gdb_console_fputs):
11630 * mingw-hdep.c (rgb_to_16colors, gdb_console_fputs): New
11631 functions.
11632 * ui-file.h (gdb_console_fputs): Add prototype.
11633
11634 * ui-file.c (stdio_file::puts): Call gdb_console_fputs, and fall
11635 back to fputs only if the former returns zero.
11636
11637 2019-03-07 Tom Tromey <tom@tromey.com>
11638
11639 * symmisc.c (print_symbol_bcache_statistics): Update.
11640 (print_objfile_statistics): Update.
11641 * symfile.c (allocate_symtab): Update.
11642 * stabsread.c: Don't include bcache.h.
11643 * psymtab.h (struct psymbol_bcache): Don't declare.
11644 (class psymtab_storage) <psymbol_cache>: Now a bcache.
11645 (psymbol_bcache_init, psymbol_bcache_free)
11646 (psymbol_bcache_get_bcache): Don't declare.
11647 * psymtab.c (struct psymbol_bcache): Remove.
11648 (psymtab_storage::psymtab_storage): Update.
11649 (psymtab_storage::~psymtab_storage): Update.
11650 (psymbol_bcache_init, psymbol_bcache_free)
11651 (psymbol_bcache_get_bcache, psymbol_bcache_full): Remove.
11652 (add_psymbol_to_bcache): Update.
11653 (allocate_psymtab): Update.
11654 * objfiles.h (struct objfile_per_bfd_storage) <filename_cache,
11655 macro_cache>: No longer pointers.
11656 * objfiles.c (get_objfile_bfd_data): Don't call bcache_xmalloc.
11657 (free_objfile_per_bfd_storage): Don't call bcache_xfree.
11658 * macrotab.c (macro_bcache): Update.
11659 * macroexp.c: Don't include bcache.h.
11660 * gdbtypes.c (check_types_worklist): Update.
11661 (types_deeply_equal): Remove TRY/CATCH. Update.
11662 * elfread.c (elf_symtab_read): Update.
11663 * dwarf2read.c: Don't include bcache.h.
11664 * buildsym.c (buildsym_compunit::get_macro_table): Update.
11665 * bcache.h (bcache, bcache_full, bcache_xffree, bcache_xmalloc)
11666 (print_bcache_statistics, bcache_memory_used): Don't declare.
11667 (struct bcache): Move from bcache.c. Add constructor, destructor,
11668 methods. Rename all data members.
11669 * bcache.c (struct bcache): Move to bcache.h.
11670 (bcache::expand_hash_table): Rename from expand_hash_table.
11671 (bcache): Remove.
11672 (bcache::insert): Rename from bcache_full.
11673 (bcache::compare): Rename from bcache_compare.
11674 (bcache_xmalloc): Remove.
11675 (bcache::~bcache): Rename from bcache_xfree.
11676 (bcache::print_statistics): Rename from print_bcache_statistics.
11677 (bcache::memory_used): Rename from bcache_memory_used.
11678
11679 2019-03-07 Pedro Alves <palves@redhat.com>
11680
11681 * infrun.c (normal_stop): Also check for
11682 TARGET_WAITKIND_NO_RESUMED before referring to inferior_thread().
11683
11684 2019-03-07 Andrew Burgess <andrew.burgess@embecosm.com>
11685
11686 * f-lang.c (value_from_host_double): Moved to...
11687 * value.c (value_from_host_double): ...here.
11688 * value.h (value_from_host_double): Declare.
11689 * guile/scm-math.c (vlscm_convert_typed_number): Use
11690 value_from_host_double.
11691 (vlscm_convert_number): Likewise.
11692 * guile/scm-value.c (gdbscm_value_to_real): Likewise.
11693 * python/py-value.c (convert_value_from_python): Likewise.
11694
11695 2019-03-06 Tom Tromey <tom@tromey.com>
11696
11697 * gcore.c (write_gcore_file): Use SCOPE_EXIT.
11698
11699 2019-03-06 Tom Tromey <tom@tromey.com>
11700
11701 * utils.h (free_current_contents): Don't declare.
11702 * utils.c (free_current_contents): Remove.
11703
11704 2019-03-06 Tom Tromey <tom@tromey.com>
11705
11706 * top.c (quit_force): Update.
11707 * main.c (captured_command_loop): Update.
11708 * common/new-op.c (operator new): Update.
11709 * common/common-exceptions.c (struct catcher)
11710 <save_cleanup_chain>: Remove member.
11711 (exceptions_state_mc_init): Update.
11712 (exception_try_scope_entry): Return nullptr.
11713 (exception_try_scope_exit, exception_rethrow)
11714 (throw_exception_sjlj, throw_exception_cxx): Update.
11715 * common/cleanups.h (make_cleanup, make_cleanup_dtor)
11716 (all_cleanups, do_cleanups, discard_cleanups)
11717 (discard_final_cleanups, save_cleanups, save_final_cleanups)
11718 (restore_cleanups, restore_final_cleanups): Don't declare.
11719 (do_final_cleanups): Remove parameter.
11720 * common/cleanups.c (cleanup_chain, make_cleanup)
11721 (make_cleanup_dtor, all_cleanups, do_cleanups)
11722 (discard_my_cleanups, discard_cleanups)
11723 (discard_final_cleanups, save_my_cleanups, save_cleanups)
11724 (save_final_cleanups, restore_my_cleanups, restore_cleanups)
11725 (null_cleanup): Remove.
11726 (do_final_cleanups): Remove parameter.
11727
11728 2019-03-06 Tom Tromey <tom@tromey.com>
11729
11730 * remote.c (remote_target::remote_parse_stop_reply): Use
11731 unique_xmalloc_ptr.
11732
11733 2019-03-06 Tom Tromey <tom@tromey.com>
11734
11735 * stabsread.c (struct stabs_field_info): Rename from field_info.
11736 <list, fnlist>: Add initializers.
11737 <obstack>: New member.
11738 (read_member_functions, read_struct_fields, read_baseclasses):
11739 Allocate on obstack. Don't use cleanups.
11740 (read_one_struct_field, read_member_functions, read_struct_fields)
11741 (read_baseclasses, read_tilde_fields, attach_fn_fields_to_type)
11742 (attach_fields_to_type, read_cpp_abbrev, read_member_functions)
11743 (read_struct_type): Update.
11744
11745 2019-03-06 Tom Tromey <tom@tromey.com>
11746
11747 * nat/linux-namespaces.c (linux_mntns_access_fs): Use SCOPE_EXIT.
11748 * common/filestuff.h (make_cleanup_close): Don't declare.
11749 * common/filestuff.c (do_close_cleanup, make_cleanup_close):
11750 Remove.
11751
11752 2019-03-06 Tom Tromey <tom@tromey.com>
11753
11754 * solib-aix.c: Use make_scope_exit.
11755
11756 2019-03-06 Tom Tromey <tom@tromey.com>
11757
11758 * solib-svr4.c (svr4_parse_libraries, svr4_current_sos_direct):
11759 Use make_scope_exit.
11760
11761 2019-03-06 Tom Tromey <tom@tromey.com>
11762
11763 * solib-svr4.c (disable_probes_interface): Remove parameter.
11764 (svr4_handle_solib_event): Use make_scope_exit.
11765
11766 2019-03-06 Tom Tromey <tom@tromey.com>
11767
11768 * remote.c (struct stop_reply_deleter): Remove.
11769 (stop_reply_up): Update.
11770 (struct stop_reply): Derive from notif_event. Don't typedef.
11771 <regcache>: Now a std::vector.
11772 (stop_reply_xfree): Remove.
11773 (stop_reply::~stop_reply): Rename from stop_reply_dtr.
11774 (remote_notif_stop_alloc_reply): Return a unique_ptr. Use new.
11775 (remote_target::discard_pending_stop_replies): Use delete.
11776 (remote_target::remote_parse_stop_reply): Update.
11777 (remote_target::process_stop_reply): Update.
11778 * remote-notif.h (struct notif_event): Add virtual destructor.
11779 Remove "dtr" member.
11780 (struct notif_client) <alloc_event>: Return a unique_ptr.
11781 (notif_event_xfree): Don't declare.
11782 (notif_event_up): New typedef.
11783 * remote-notif.c (remote_notif_ack, remote_notif_parse): Update.
11784 (notif_event_xfree, do_notif_event_xfree): Remove.
11785 (remote_notif_state_xfree): Update.
11786
11787 2019-03-06 Tom Tromey <tom@tromey.com>
11788
11789 * infrun.c (displaced_step_clear_cleanup): Now a
11790 forward_scope_exit type.
11791 (displaced_step_prepare_throw): Update.
11792 (displaced_step_fixup): Update.
11793
11794 2019-03-06 Tom Tromey <tom@tromey.com>
11795
11796 * inferior.h (class inferior): Update comment.
11797 * gdbthread.h (class thread_info): Update comment.
11798
11799 2019-03-06 Joel Brobecker <brobecker@adacore.com>
11800 Tom Tromey <tom@tromey.com>
11801
11802 * stabsread.h (struct stab_section_list): Remove.
11803 (coffstab_build_psymtabs): Update.
11804 * dbxread.c (symbuf_sections): Now a std::vector.
11805 (sect_idx): New global.
11806 (fill_symbuf): Update.
11807 (coffstab_build_psymtabs): Change type of stabsects parameter.
11808 Update.
11809 * coffread.c (struct coff_symfile_info) <stabsects>: Now a
11810 std::vector.
11811 (linetab, linetab_offset, linetab_size, stringtab): Move earlier.
11812 (coff_locate_sections): Update.
11813 (coff_symfile_read): Remove cleanups. Update.
11814 (init_stringtab): Add storage parameter.
11815 (free_stringtab, free_stringtab_cleanup): Remove.
11816 (init_lineno): Add storage parameter.
11817 (free_linetab, free_linetab_cleanup): Remove.
11818
11819 2019-03-06 Pedro Alves <palves@redhat.com>
11820
11821 * linux-fork.c (fork_info::clobber_regs): Delete.
11822 (fork_load_infrun_state): Remove reference to 'clobber_regs'.
11823 (fork_save_infrun_state): Remove 'clobber_regs' parameter. Update
11824 comment. Adjust.
11825 (scoped_switch_fork_info::scoped_switch_fork_info)
11826 (checkpoint_command, linux_fork_context): Adjust
11827 fork_save_infrun_state calls.
11828
11829 2019-03-06 Pedro Alves <palves@redhat.com>
11830
11831 * linux-fork.c (inf_has_multiple_thread_cb): Delete.
11832 (inf_has_multiple_threads): Return 'bool' and rewrite using
11833 inferior_info::threads().
11834
11835 2019-03-06 Pedro Alves <palves@redhat.com>
11836
11837 * linux-fork.c: Include <list>.
11838 (fork_list): Now a std::list instance.
11839 (fork_info): Add ctor, dtor, and in-class initialize all fields.
11840 (forks_exist_p, find_last_fork): Adjust.
11841 (new_fork): Delete.
11842 (one_fork_p): New.
11843 (add_fork): Adjust.
11844 (free_fork): Delete, folded into fork_info::~fork_info().
11845 (delete_fork, find_fork_ptid, find_fork_id, find_fork_pid):
11846 Adjust.
11847 (init_fork_list): Delete.
11848 (linux_fork_killall, linux_fork_mourn_inferior)
11849 (linux_fork_detach, info_checkpoints_command): Adjust.
11850 (_initialize_linux_fork): No longer call init_fork_list.
11851
11852 2019-03-06 Pedro Alves <palves@redhat.com>
11853
11854 * linux-fork.c (new_fork): New, split out of ...
11855 (add_fork): ... this. Return void. Move "first fork" special
11856 case from here, to ...
11857 (checkpoint_command): ... here.
11858 * linux-linux.h (add_fork): Return void.
11859
11860 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11861
11862 * f-exp.y (direct_abs_decl): Handle TYPE*SIZE type names.
11863
11864 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11865 Chris January <chris.january@arm.com>
11866 David Lecomber <david.lecomber@arm.com>
11867
11868 * f-exp.y: New token, UNOP_INTRINSIC.
11869 (exp): New pattern using UNOP_INTRINSIC token.
11870 (f77_keywords): Add 'abs' keyword.
11871 * f-lang.c: Add 'target-float.h' and 'math.h' includes.
11872 (value_from_host_double): New function.
11873 (evaluate_subexp_f): Support UNOP_ABS.
11874
11875 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11876
11877 * f-lang.c (build_fortran_types): Use TYPE_CODE_CHAR for character
11878 types.
11879
11880 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11881
11882 * f-exp.y (convert_to_kind_type): Handle integer (kind=8).
11883 * f-lang.c (build_fortran_types): Setup builtin_integer_s8.
11884 * f-lang.h (struct builtin_f_type): Add builtin_integer_s8 field.
11885
11886 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11887
11888 * f-exp.y (convert_to_kind_type): Handle more type kinds.
11889
11890 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11891 Chris January <chris.january@arm.com>
11892
11893 * expprint.c (dump_subexp_body_standard): Support UNOP_KIND.
11894 * f-exp.y: Define 'KIND' token.
11895 (exp): New pattern for KIND expressions.
11896 (ptype): Handle types with a kind extension.
11897 (direct_abs_decl): Extend to spot kind extensions.
11898 (f77_keywords): Add 'kind' to the list.
11899 (push_kind_type): New function.
11900 (convert_to_kind_type): New function.
11901 * f-lang.c (evaluate_subexp_f): Support UNOP_KIND.
11902 * parse.c (operator_length_standard): Likewise.
11903 * parser-defs.h (enum type_pieces): Add tp_kind.
11904 * std-operator.def: Add UNOP_KIND.
11905
11906 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11907
11908 * f-exp.y (f_parse): Set yydebug.
11909
11910 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11911
11912 * f-lang.c (evaluate_subexp_f): New function.
11913 (exp_descriptor_f): New global.
11914 (f_language_defn): Use exp_descriptor_f instead of
11915 exp_descriptor_standard.
11916
11917 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11918
11919 * f-exp.y (struct token): Add comments.
11920 (dot_ops): Remove uppercase versions and the end marker.
11921 (f77_keywords): Likewise.
11922 (yylex): Use ARRAY_SIZE to iterate over dot_ops, assert all
11923 entries in the dot_ops array are case insensitive, and use
11924 strncasecmp to compare strings. Also some whitespace cleanup in
11925 this area. Similar for the f77_keywords array, except entries in
11926 this list might be case sensitive.
11927
11928 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11929
11930 * f-exp.y (struct f77_boolean_val): Add comments.
11931 (boolean_values): Remove uppercase versions, and end marker.
11932 (yylex): Use ARRAY_SIZE for iterating over boolean_values array,
11933 and use strncasecmp to achieve case insensitivity. Additionally,
11934 perform whitespace cleanup around this code.
11935
11936 2019-03-06 Tom Tromey <tromey@adacore.com>
11937
11938 * remote-sim.c (gdbsim_target_open): Use result of
11939 gdb_argv::release.
11940
11941 2019-03-06 Richard Bunt <richard.bunt@arm.com>
11942 Dirk Schubert <dirk.schubert@arm.com>
11943 Chris January <chris.january@arm.com>
11944
11945 * eval.c (evaluate_subexp_standard): Call Fortran argument
11946 wrapping logic.
11947 * f-lang.c (struct value): A value which can be passed into a
11948 Fortran function call.
11949 (fortran_argument_convert): Wrap Fortran arguments in a pointer
11950 where appropriate.
11951 (struct type): Value ready for a Fortran function call.
11952 (fortran_preserve_arg_pointer): Undo check_typedef, the pointer
11953 is needed.
11954 * f-lang.h (fortran_argument_convert): Declaration.
11955 (fortran_preserve_arg_pointer): Declaration.
11956 * infcall.c (value_arg_coerce): Call Fortran argument logic.
11957
11958 2019-03-05 Tom Tromey <tromey@adacore.com>
11959
11960 * python/py-prettyprint.c (print_string_repr): Remove #if.
11961 * python/py-utils.c (unicode_to_encoded_string): Remove #if.
11962
11963 2019-03-05 Tom Tromey <tromey@adacore.com>
11964
11965 * target.c (the_dummy_target): Move later. Change type to
11966 "dummy_target".
11967 (initialize_targets): Don't initialize the_dummy_target.
11968
11969 2019-03-05 Tom Tromey <tromey@adacore.com>
11970
11971 * gdb_bfd.c (gdb_bfd_fdopenr): Remove.
11972 * gdb_bfd.h (gdb_bfd_fdopenr): Don't declare.
11973
11974 2019-03-05 Tom Tromey <tromey@adacore.com>
11975
11976 * windows-nat.c (windows_nat_target::attach)
11977 (windows_nat_target::detach): Don't call gdb_flush.
11978 * valprint.c (generic_val_print, val_print, val_print_string):
11979 Don't call gdb_flush.
11980 * utils.c (defaulted_query): Don't call gdb_flush.
11981 * typeprint.c (print_type_scalar): Don't call gdb_flush.
11982 * target.c (target_announce_detach): Don't call gdb_flush.
11983 * sparc64-tdep.c (adi_print_versions): Don't call gdb_flush.
11984 * remote.c (extended_remote_target::attach): Don't call
11985 gdb_flush.
11986 * procfs.c (procfs_target::detach): Don't call gdb_flush.
11987 * printcmd.c (do_examine): Don't call gdb_flush.
11988 (info_display_command): Don't call gdb_flush.
11989 * p-valprint.c (pascal_val_print): Don't call gdb_flush.
11990 * nto-procfs.c (nto_procfs_target::attach): Don't call gdb_flush.
11991 * memattr.c (info_mem_command): Don't call gdb_flush.
11992 * mdebugread.c (mdebug_build_psymtabs): Don't call gdb_flush.
11993 * m2-valprint.c (m2_val_print): Don't call gdb_flush.
11994 * infrun.c (follow_exec, handle_command): Don't call gdb_flush.
11995 * inf-ptrace.c (inf_ptrace_target::attach): Don't call gdb_flush.
11996 * hppa-tdep.c (unwind_command): Don't call gdb_flush.
11997 * gnu-nat.c (gnu_nat_target::attach): Don't call gdb_flush.
11998 (gnu_nat_target::detach): Don't call gdb_flush.
11999 * f-valprint.c (f_val_print): Don't call gdb_flush.
12000 * darwin-nat.c (darwin_nat_target::attach): Don't call gdb_flush.
12001 * cli/cli-script.c (read_command_lines): Don't call gdb_flush.
12002 * cli/cli-cmds.c (shell_escape, print_disassembly): Don't call
12003 gdb_flush.
12004 * c-valprint.c (c_val_print): Don't call gdb_flush.
12005 * ada-valprint.c (ada_print_scalar): Don't call gdb_flush.
12006
12007 2019-03-05 Tom Tromey <tromey@adacore.com>
12008
12009 * varobj.c (update_dynamic_varobj_children): Update.
12010 (install_default_visualizer): Use reset, not release.
12011 * value.c (set_internalvar): Update.
12012 * dwarf2loc.c (value_of_dwarf_reg_entry): Update.
12013 * common/gdb_ref_ptr.h (class ref_ptr) <release>: Add
12014 ATTRIBUTE_UNUSED_RESULT.
12015
12016 2019-03-05 Tom Tromey <tromey@adacore.com>
12017
12018 * remote.c (class scoped_remote_fd) <release>: Add
12019 ATTRIBUTE_UNUSED_RESULT.
12020
12021 2019-03-05 Tom Tromey <tromey@adacore.com>
12022
12023 * macroexp.c (struct macro_buffer) <release>: Add
12024 ATTRIBUTE_UNUSED_RESULT.
12025
12026 2019-03-05 Tom Tromey <tromey@adacore.com>
12027
12028 * nat/linux-btrace.c (linux_enable_bts, linux_enable_pt): Update.
12029 * common/scoped_mmap.h (class scoped_mmap) <release>: Add
12030 ATTRIBUTE_UNUSED_RESULT.
12031
12032 2019-03-05 Tom Tromey <tromey@adacore.com>
12033
12034 * common/scoped_fd.h (class scoped_fd) <release>: Add
12035 ATTRIBUTE_UNUSED_RESULT.
12036
12037 2019-03-05 Tom Tromey <tromey@adacore.com>
12038
12039 * parser-defs.h (struct parser_state) <release>: Add
12040 ATTRIBUTE_UNUSED_RESULT.
12041
12042 2019-03-05 Tom Tromey <tromey@adacore.com>
12043
12044 * utils.h (class gdb_argv) <release>: Add
12045 ATTRIBUTE_UNUSED_RESULT.
12046 * common/common-defs.h (ATTRIBUTE_UNUSED_RESULT): Define.
12047
12048 2019-03-02 Eli Zaretskii <eliz@gnu.org>
12049
12050 * xml-syscall.c (xml_list_syscalls_by_group): Drop 'struct' from
12051 for-loop range, to avoid compiler warnings.
12052
12053 * tui/tui.c (tui_enable) [__MINGW32__]: Don't declare 'cap', to
12054 avoid compiler warnings about unused variables.
12055
12056 * NEWS: Mention end of support for native debugging on MS-Windows
12057 before XP.
12058
12059 PR gdb/24292
12060 * common/netstuff.c:
12061 * gdbserver/gdbreplay.c
12062 * gdbserver/remote-utils.c:
12063 * ser-tcp.c:
12064 * unittests/parse-connection-spec-selftests.c [USE_WIN32API]:
12065 Include ws2tcpip.h instead of wsiapi.h and winsock2.h. Redefine
12066 _WIN32_WINNT to 0x0501 if defined to a smaller value, as
12067 'getaddrinfo' and 'freeaddrinfo' were not available before
12068 Windows XP, and mingw.org's MinGW headers by default define
12069 _WIN32_WINNT to 0x500.
12070
12071 2019-03-01 Gary Benson <gbenson@redhat.com>
12072
12073 * coffread.c (coff_start_symtab): Remove unnecessary xstrdup.
12074
12075 2019-02-28 Brian Vandenberg <phantall@gmail.com>
12076 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
12077
12078 PR gdb/8527
12079 * procfs.c (proc_wait_for_stop): Wrap write of PCWSTOP in
12080 set_sigint_trap, clear_sigint_trap.
12081
12082 2019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12083
12084 * target.c (target_detach): Clear the regcache and the
12085 frame cache.
12086
12087 2019-02-27 Pedro Alves <palves@redhat.com>
12088
12089 * utils.c (set_screen_size): When we cap the height/width sizes,
12090 tweak the corresponding command variable to show "unlimited":
12091
12092 2019-02-27 Saagar Jha <saagar@saagarjha.com>
12093 Pedro Alves <palves@redhat.com>
12094
12095 * utils.c (set_screen_size): Reduce "infinite" rows and columns
12096 before calling rl_set_screen_size.
12097
12098 2019-02-27 Tom Tromey <tromey@adacore.com>
12099
12100 * configure.ac (HAVE_LIBPYTHON2_4, HAVE_LIBPYTHON2_5): Never
12101 define.
12102 * python/py-value.c: Remove Python 2.4 workaround.
12103 * python/py-utils.c (gdb_pymodule_addobject): Remove Python 2.4
12104 workaround.
12105 * python/py-type.c (convert_field, gdbpy_initialize_types): Remove
12106 Python 2.4 workaround.
12107 * python/python-internal.h: Remove Python 2.4 comment.
12108 (Py_ssize_t): Don't define.
12109 (PyVarObject_HEAD_INIT, Py_TYPE): Don't define.
12110 (gdb_Py_DECREF): Remove Python 2.4 workaround.
12111 (gdb_PyObject_GetAttrString, PyObject_GetAttrString): Remove.
12112 (gdb_PyObject_HasAttrString, PyObject_HasAttrString): Remove.
12113 * python/python.c (do_start_initialization): Remove Python 2.4
12114 workaround.
12115 * python/py-prettyprint.c (class dummy_python_frame): Remove.
12116 (print_children): Remove Python 2.4 workaround.
12117 * python/py-inferior.c (buffer_procs): Remove Python 2.4
12118 workaround.
12119 (CHARBUFFERPROC_NAME): Remove.
12120 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Remove
12121 Python 2.4 workaround.
12122
12123 2019-02-27 Kevin Buettner <kevinb@redhat.com>
12124
12125 * NEWS: Note minimum Python version.
12126
12127 2019-02-27 Kevin Buettner <kevinb@redhat.com>
12128
12129 * python/py-inferior.c (infpy_write_memory): Remove non-IS_PY3K
12130 code from these functions. Remove corresponding ifdefs. Use
12131 Py_buffer_up instead of explicit calls to PyBuffer_Release.
12132 Remove gotos and target of gotos.
12133 (infpy_search_memory): Likewise.
12134
12135 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12136
12137 * gdb/hppa-tdep.c (hppa_dummy_id): Delete.
12138 (hppa_gdbarch_init): Don't register deleted functions with
12139 gdbarch.
12140
12141 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12142
12143 * gdb/h8300-tdep.c (h8300_unwind_pc): Delete.
12144 (h8300_unwind_sp): Delete.
12145 (h8300_dummy_id): Delete.
12146 (h8300_gdbarch_init): Don't register deleted functions with
12147 gdbarch.
12148
12149 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12150
12151 * gdb/ft32-tdep.c (ft32_dummy_id): Delete.
12152 (ft32_unwind_pc): Delete.
12153 (ft32_unwind_sp): Delete.
12154 (ft32_gdbarch_init): Don't register deleted functions with
12155 gdbarch.
12156
12157 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12158
12159 * gdb/frv-tdep.c (frv_dummy_id): Delete.
12160 (frv_unwind_pc): Delete.
12161 (frv_unwind_sp): Delete.
12162 (frv_gdbarch_init): Don't register deleted functions with
12163 gdbarch.
12164
12165 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12166
12167 * gdb/riscv-tdep.c (riscv_dummy_id): Delete.
12168 (riscv_unwind_pc): Delete.
12169 (riscv_unwind_sp): Delete.
12170 (riscv_gdbarch_init): Don't register deleted functions with
12171 gdbarch.
12172
12173 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12174
12175 * gdb/csky-tdep.c (csky_dummy_id): Delete.
12176 (csky_unwind_pc): Delete.
12177 (csky_unwind_sp): Delete.
12178 (csky_gdbarch_init): Don't register deleted functions with
12179 gdbarch.
12180
12181 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12182
12183 * gdb/cris-tdep.c (cris_dummy_id): Delete.
12184 (cris_unwind_pc): Delete.
12185 (cris_unwind_sp): Delete.
12186 (cris_gdbarch_init): Don't register deleted functions with
12187 gdbarch.
12188
12189 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12190
12191 * gdb/bfin-tdep.c (bfin_dummy_id): Delete.
12192 (bfin_unwind_pc): Delete.
12193 (bfin_gdbarch_init): Don't register deleted functions with gdbarch.
12194
12195 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12196
12197 * gdb/arm-tdep.c (arm_dummy_id): Delete.
12198 (arm_unwind_pc): Delete.
12199 (arm_unwind_sp): Delete.
12200 (arm_gdbarch_init): Don't register deleted functions with gdbarch.
12201
12202 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12203
12204 * gdb/arc-tdep.c (arc_dummy_id): Delete.
12205 (arc_unwind_pc): Delete.
12206 (arc_unwind_sp): Delete.
12207 (arc_gdbarch_init): Don't register deleted functions with gdbarch.
12208
12209 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12210
12211 * gdb/alpha-tdep.c (alpha_dummy_id): Delete.
12212 (alpha_unwind_pc): Delete.
12213 (alpha_gdbarch_init): Don't register deleted functions with
12214 gdbarch.
12215
12216 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12217
12218 * gdb/aarch64-tdep.c (aarch64_dummy_id): Delete.
12219 (aarch64_unwind_pc): Delete.
12220 (aarch64_unwind_sp): Delete.
12221 (aarch64_gdbarch_init): Don't register deleted functions with
12222 gdbarch.
12223
12224 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12225
12226 * gdbtypes.c (type_align): Don't consider static members when
12227 computing structure alignment.
12228
12229 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
12230
12231 * arc-tdep.c (arc_type_align): Provide alignment for basic types,
12232 return 0 for other types.
12233 * arch-utils.c (default_type_align): Always return 0.
12234 * gdbarch.h: Regenerate.
12235 * gdbarch.sh (type_align): Extend comment.
12236 * gdbtypes.c (type_align): Add additional comments, always call
12237 gdbarch_type_align before applying the default rules.
12238 * i386-tdep.c (i386_type_align): Return 0 as the default rule,
12239 generic code will then apply a suitable default.
12240 * nios2-tdep.c (nios2_type_align): Provide alignment for basic
12241 types, return 0 for other types.
12242
12243 2019-02-27 Joel Brobecker <brobecker@adacore.com>
12244
12245 * NEWS: Create a new section for the next release branch.
12246 Rename the section of the current branch, now that it has
12247 been cut.
12248
12249 2019-02-27 Joel Brobecker <brobecker@adacore.com>
12250
12251 GDB 8.3 branch created (143420fb0d5ae54323ba9953f0818c194635228d):
12252 * version.in: Bump version to 8.3.50.DATE-git.
12253
12254 2019-02-26 Simon Marchi <simon.marchi@efficios.com>
12255
12256 * aix-thread.c (ptid_cmp): Remove unused variable.
12257 (get_signaled_thread): Likewise.
12258 (store_regs_user_thread): Likewise.
12259 (store_regs_kernel_thread): Likewise.
12260 (fetch_regs_kernel_thread): Remove shadowed variable.
12261
12262 2019-02-26 Andrew Burgess <andrew.burgess@embecosm.com>
12263
12264 * features/riscv/32bit-cpu.xml: Add register numbers.
12265 * features/riscv/32bit-fpu.c: Regenerate.
12266 * features/riscv/32bit-fpu.xml: Add register numbers.
12267 * features/riscv/64bit-cpu.xml: Add register numbers.
12268 * features/riscv/64bit-fpu.c: Regenerate.
12269 * features/riscv/64bit-fpu.xml: Add register numbers.
12270
12271 2019-02-26 Kevin Buettner <kevinb@redhat.com>
12272
12273 * NEWS: Mention two argument form of gdb.Value constructor.
12274 * python/py-value.c (convert_buffer_and_type_to_value): New
12275 function.
12276 (valpy_new): Parse arguments via gdb_PyArg_ParseTupleAndKeywords.
12277 Add support for handling an optional second argument. Call
12278 convert_buffer_and_type_to_value as appropriate.
12279 * python/python-internal.h (Py_buffer_deleter): New struct.
12280 (Py_buffer_up): New typedef.
12281
12282 2019-02-25 John Baldwin <jhb@FreeBSD.org>
12283
12284 * dwarf2read.c (dwarf2_get_dwz_file): Reset dwz_bfd to nullptr
12285 instead of releasing ownership.
12286
12287 2019-02-25 Jordan Rupprecht <rupprecht@google.com>
12288
12289 * dwarf2read.c (open_and_init_dwp_file): Call
12290 elf_numsections instead of bfd_count_sections to initialize
12291 dwp_file->num_sections.
12292
12293 2019-02-25 Tom Tromey <tromey@adacore.com>
12294
12295 * solib-darwin.c (darwin_get_dyld_bfd): Don't release dyld_bfd.
12296
12297 2019-02-23 Sergio Durigan Junior <sergiodj@redhat.com>
12298
12299 * gcore.in: Add '--readnever' option when invoking GDB.
12300
12301 2019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
12302
12303 * MAINTAINERS: Update my email address.
12304
12305 2019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
12306
12307 * build-id.c (build_id_to_debug_bfd_1): New function.
12308 (build_id_to_debug_bfd): Look for separate debug file in
12309 sysroot.
12310
12311 2019-02-22 Andrew Burgess <andrew.burgess@embecosm.com>
12312
12313 * gdbarch.sh: Update the copyright year range that is placed into
12314 generated files.
12315
12316 2019-02-22 Keith Seitz <keiths@redhat.com>
12317
12318 PR symtab/23853
12319 * linespec.c (create_sals_line_offset): Search for the default
12320 symtab's filename instead of its fullname.
12321
12322 2019-02-21 Alan Hayward <alan.hayward@arm.com>
12323
12324 * NEWS: Update style defaults.
12325
12326 2019-02-21 Alan Hayward <alan.hayward@arm.com>
12327
12328 * main.c (captured_main_1): Disable styling in batch mode.
12329
12330 2019-02-20 Tom Tromey <tom@tromey.com>
12331
12332 * symtab.c (symtab_symbol_info): Fix typos.
12333
12334 2019-02-20 Tom Tromey <tromey@adacore.com>
12335
12336 * findcmd.c (_initialize_mem_search): Use upper case for
12337 metasyntactic variables.
12338
12339 2019-02-20 Alan Hayward <alan.hayward@arm.com>
12340
12341 * aarch64-tdep.c (aarch64_add_reggroups): New function.
12342 (aarch64_gdbarch_init): Call aarch64_add_reggroups.
12343
12344 2019-02-19 Simon Marchi <simon.marchi@polymtl.ca>
12345
12346 * top.h (source_file_name): Change to std::string.
12347 * top.c (source_file_name): Likewise.
12348 (command_line_input): Adjust.
12349 * cli/cli-script.c (script_from_file): Adjust.
12350
12351 2019-02-19 Tom Tromey <tromey@adacore.com>
12352
12353 * ravenscar-thread.c
12354 (ravenscar_thread_target::update_thread_list): Don't call
12355 ada_build_task_list.
12356 * ada-lang.h (ada_build_task_list): Don't declare.
12357 * ada-tasks.c (struct ada_tasks_inferior_data)
12358 <task_list_valid_p>: Now bool.
12359 (read_known_tasks, ada_task_list_changed)
12360 (ada_tasks_invalidate_inferior_data): Update.
12361 (read_known_tasks_array): Return bool.
12362 (read_known_tasks_list): Likewise.
12363 (read_known_tasks): Return void.
12364 (ada_build_task_list): Now static.
12365
12366 2019-02-18 Andrew Burgess <andrew.burgess@embecosm.com>
12367
12368 * gdbtypes.c (type_align): Allow alignment of TYPE_CODE_METHODPTR
12369 and TYPE_CODE_MEMBERPTR to be overridden by the gdbarch.
12370
12371 2019-02-18 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12372
12373 * ada-task.c (_initialize_tasks): Use 'with_cleanup' register
12374 variant for ada_tasks_pspace_data_handle and
12375 ada_tasks_inferior_data_handle.
12376 (ada_tasks_pspace_data_cleanup): New function.
12377 (ada_tasks_inferior_data_cleanup): New function.
12378
12379 2019-02-17 Tom Tromey <tom@tromey.com>
12380
12381 * macrotab.h (macro_source_fullname): Return a std::string.
12382 * macrotab.c (macro_include, check_for_redefinition)
12383 (macro_undef, macro_lookup_definition, foreach_macro)
12384 (foreach_macro_in_scope): Update.
12385 (macro_source_fullname): Return a std::string.
12386 * macrocmd.c (show_pp_source_pos): Update.
12387
12388 2019-02-17 Tom Tromey <tom@tromey.com>
12389
12390 * macrocmd.c (show_pp_source_pos): Style the file names.
12391
12392 2019-02-17 Tom Tromey <tom@tromey.com>
12393
12394 PR tui/24197:
12395 * tui/tui-source.c (tui_set_source_content_nil): Rewrite.
12396
12397 2019-02-17 Tom Tromey <tom@tromey.com>
12398
12399 * ada-lang.c (user_select_syms): Use filtered printing.
12400 * utils.c (wrap_style): New global.
12401 (desired_style): Remove.
12402 (emit_style_escape): Add stream parameter.
12403 (set_output_style, reset_terminal_style, prompt_for_continue):
12404 Update.
12405 (flush_wrap_buffer): Only flush gdb_stdout.
12406 (wrap_here): Set wrap_style.
12407 (fputs_maybe_filtered): Clear the wrap buffer on exception. Don't
12408 treat escape sequences as a character. Change when wrap buffer is
12409 flushed.
12410 (fputs_styled): Do not set the output style when the default is
12411 requested.
12412 * ui-style.h (struct ui_file_style) <is_default>: New method.
12413 * source.c (print_source_lines_base): Emit escape sequences in one
12414 piece.
12415
12416 2019-02-17 Joel Brobecker <brobecker@adacore.com>
12417
12418 * gdbtypes.c (type_align): Handle TYPE_CODE_RANGE the same as
12419 integers and enumeration types.
12420
12421 2019-02-17 Joel Brobecker <brobecker@adacore.com>
12422
12423 * ada-lang.c (standard_lookup): Use ada_lookup_encoded_symbol
12424 instead of lookup_symbol_in_language
12425 (do_exact_match): New function.
12426 (ada_get_symbol_name_matcher): Return do_exact_match when
12427 doing a verbatim match.
12428
12429 2019-02-15 Tom Tromey <tromey@adacore.com>
12430
12431 * ravenscar-thread.c (ravenscar_thread_target::resume)
12432 (ravenscar_thread_target::wait): Special case wildcard requests.
12433
12434 2019-02-15 Tom Tromey <tromey@adacore.com>
12435
12436 * ravenscar-thread.c (base_ptid): Remove.
12437 (struct ravenscar_thread_target) <close>: New method.
12438 <m_base_ptid>: New member.
12439 <update_inferior_ptid, active_task, task_is_currently_active,
12440 runtime_initialized>: Declare methods.
12441 <ravenscar_thread_target>: Add constructor.
12442 (ravenscar_thread_target::task_is_currently_active)
12443 (ravenscar_thread_target::update_inferior_ptid)
12444 (ravenscar_runtime_initialized): Rename. Now methods.
12445 (ravenscar_thread_target::resume, ravenscar_thread_target::wait)
12446 (ravenscar_thread_target::update_thread_list): Update.
12447 (ravenscar_thread_target::active_task): Now method.
12448 (ravenscar_thread_target::store_registers)
12449 (ravenscar_thread_target::prepare_to_store)
12450 (ravenscar_thread_target::prepare_to_store)
12451 (ravenscar_thread_target::mourn_inferior): Update.
12452 (ravenscar_inferior_created): Use "new" to create target.
12453 (ravenscar_thread_target::get_ada_task_ptid): Update.
12454 (_initialize_ravenscar): Don't initialize base_ptid.
12455 (ravenscar_ops): Remove global.
12456
12457 2019-02-15 Tom Tromey <tromey@adacore.com>
12458
12459 * target.h (push_target): Declare new overload.
12460 * target.c (push_target): New overload, taking an rvalue reference.
12461 * remote.c (remote_target::open_1): Use push_target overload.
12462 * corelow.c (core_target_open): Use push_target overload.
12463
12464 2019-02-15 Tom Tromey <tromey@adacore.com>
12465
12466 * ravenscar-thread.c (is_ravenscar_task)
12467 (ravenscar_task_is_currently_active): Return bool.
12468 (ravenscar_update_inferior_ptid, get_running_thread_msymbol)
12469 (_initialize_ravenscar): Remove "(void)".
12470 (has_ravenscar_runtime, ravenscar_runtime_initialized): Likewise.
12471 Return bool.
12472
12473 2019-02-15 Tom Tromey <tromey@adacore.com>
12474
12475 * ravenscar-thread.c (ravenscar_runtime_initializer)
12476 (has_ravenscar_runtime, get_running_thread_id)
12477 (ravenscar_thread_target::resume): Fix indentation.
12478
12479 2019-02-15 Tom Tromey <tromey@adacore.com>
12480
12481 * sparc-ravenscar-thread.c (struct sparc_ravenscar_ops): Derive
12482 from ravenscar_arch_ops.
12483 (sparc_ravenscar_ops::fetch_registers)
12484 (sparc_ravenscar_ops::store_registers): Now methods.
12485 (sparc_ravenscar_prepare_to_store): Remove.
12486 (sparc_ravenscar_ops): Redefine.
12487 * ravenscar-thread.h (struct ravenscar_arch_ops): Add virtual
12488 methods and destructor. Remove members.
12489 * ravenscar-thread.c (ravenscar_thread_target::fetch_registers)
12490 (ravenscar_thread_target::store_registers)
12491 (ravenscar_thread_target::prepare_to_store): Update.
12492 * ppc-ravenscar-thread.c (ppc_ravenscar_generic_prepare_to_store):
12493 Remove.
12494 (struct ppc_ravenscar_powerpc_ops): Derive from
12495 ravenscar_arch_ops.
12496 (ppc_ravenscar_powerpc_ops::fetch_registers)
12497 (ppc_ravenscar_powerpc_ops::store_registers): Now methods.
12498 (ppc_ravenscar_powerpc_ops): Redefine.
12499 (struct ppc_ravenscar_e500_ops): Derive from ravenscar_arch_ops.
12500 (ppc_ravenscar_e500_ops::fetch_registers)
12501 (ppc_ravenscar_e500_ops::store_registers): Now methods.
12502 (ppc_ravenscar_e500_ops): Redefine.
12503 * aarch64-ravenscar-thread.c
12504 (aarch64_ravenscar_generic_prepare_to_store): Remove.
12505 (struct aarch64_ravenscar_ops): Derive from ravenscar_arch_ops.
12506 (aarch64_ravenscar_fetch_registers)
12507 (aarch64_ravenscar_store_registers): Now methods.
12508 (aarch64_ravenscar_ops): Redefine.
12509
12510 2019-02-15 Tom Tromey <tromey@adacore.com>
12511
12512 * ravenscar-thread.c (ravenscar_thread_target::stopped_by_sw_breakpoint)
12513 (ravenscar_thread_target::stopped_by_hw_breakpoint)
12514 (ravenscar_thread_target::stopped_by_watchpoint)
12515 (ravenscar_thread_target::stopped_data_address)
12516 (ravenscar_thread_target::core_of_thread): Use scoped_restore.
12517
12518 2019-02-15 Tom Tromey <tromey@adacore.com>
12519
12520 * ravenscar-thread.c: Fix some typos.
12521
12522 2019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12523 Tom Tromey <tromey@adacore.com>
12524
12525 * ada-lang.c (ada_exception_sal): Change addr_string to a
12526 std::string.
12527 (create_ada_exception_catchpoint): Update.
12528
12529 2019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12530 Tom Tromey <tromey@adacore.com>
12531
12532 * breakpoint.c (~bp_location): Rename from bp_location_dtor.
12533 (bp_location_ops): Remove.
12534 (base_breakpoint_allocate_location): Update.
12535 (free_bp_location): Update.
12536 * ada-lang.c (class ada_catchpoint_location)
12537 <ada_catchpoint_location>: Remove ops parameter.
12538 (ada_catchpoint_location_dtor): Remove.
12539 (ada_catchpoint_location_ops): Remove.
12540 (allocate_location_exception): Update.
12541 * breakpoint.h (struct bp_location_ops): Remove.
12542 (class bp_location) <bp_location>: Remove bp_location_ops
12543 parameter.
12544 <~bp_location>: Add destructor.
12545 <ops>: Remove.
12546
12547 2019-02-14 Thomas Schwinge <thomas@codesourcery.com>
12548 Pedro Alves <palves@redhat.com>
12549
12550 * remote.c (remote_target::remote_parse_stop_reply): Avoid using
12551 'PATH_MAX'.
12552
12553 2019-02-14 David Michael <fedora.dm0@gmail.com>
12554 Samuel Thibault <samuel.thibault@gnu.org>
12555 Thomas Schwinge <thomas@codesourcery.com>
12556
12557 * gnu-nat.c (S_proc_getmsgport_reply, S_proc_task2proc_reply)
12558 (S_proc_pid2proc_reply): Adjust to Hurd "proc" interface changes.
12559
12560 2019-02-14 Thomas Schwinge <thomas@codesourcery.com>
12561
12562 * gnu-nat.c (gnu_write_inferior, parse_int_arg, _parse_bool_arg)
12563 (check_empty): Use "const char *".
12564
12565 * gnu-nat.c (gnu_nat_target::detach): Instead of
12566 'detach_inferior (pid)' call
12567 'detach_inferior (find_inferior_pid (pid))'.
12568
12569 * configure.nat [gdb_host == i386gnu] (NATDEPFILES): Add
12570 'nat/fork-inferior.o'.
12571 * gnu-nat.c: #include "nat/fork-inferior.h".
12572
12573 * gnu-nat.c (gnu_nat_target::detach): Instead of
12574 'inf_child_maybe_unpush_target (ops)' call 'maybe_unpush_target'.
12575 * gnu-nat.h: #include "inf-child.h".
12576 * i386-gnu-nat.c (gnu_fetch_registers): Rename/move to
12577 'i386_gnu_nat_target::fetch_registers'.
12578 (gnu_store_registers): Rename/move to
12579 'i386_gnu_nat_target::store_registers'.
12580
12581 * config/i386/nm-i386gnu.h: Don't "#include" any files.
12582 * gnu-nat.h (mach_thread_info): New function.
12583 * gnu-nat.c (thread_takeover_sc_cmd): Use it.
12584
12585 * config/i386/nm-i386gnu.h (gnu_target_pid_to_str): Remove.
12586
12587 2019-02-14 Frederic Konrad <konrad@adacore.com>
12588
12589 * riscv-rdep.c (riscv_type_alignment): Handle TYPE_CODE_RANGE.
12590
12591 2019-02-14 Joel Brobecker <brobecker@adacore.com>
12592
12593 * windows-nat.c (windows_add_thread): Add new parameter
12594 "main_thread_p" with default value set to false. Update
12595 function documentation as well as all callers.
12596 (windows_delete_thread): Likewise.
12597 (fake_create_process): Update call to windows_add_thread.
12598 (get_windows_debug_event) <CREATE_THREAD_DEBUG_EVENT>
12599 <CREATE_PROCESS_DEBUG_EVENT>: Likewise.
12600 <EXIT_THREAD_DEBUG_EVENT, EXIT_PROCESS_DEBUG_EVENT>: Update
12601 call to windows_delete_thread.
12602
12603 2019-02-13 Simon Marchi <simon.marchi@ericsson.com>
12604
12605 * MAINTAINERS: Add Andrew Burgess as global maintainer.
12606
12607 2019-02-12 John Baldwin <jhb@FreeBSD.org>
12608
12609 * symfile.c (find_separate_debug_file): Use canonical path of
12610 sysroot with child_path instead of gdb_sysroot if it is valid.
12611
12612 2019-02-12 John Baldwin <jhb@FreeBSD.org>
12613
12614 * symfile.c (find_separate_debug_file): Use child_path to
12615 determine if an object file is under a sysroot.
12616
12617 2019-02-12 John Baldwin <jhb@FreeBSD.org>
12618
12619 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
12620 unittests/child-path-selftests.c.
12621 * common/pathstuff.c (child_path): New function.
12622 * common/pathstuff.h (child_path): New prototype.
12623 * unittests/child-path-selftests.c: New file.
12624
12625 2019-02-12 John Baldwin <jhb@FreeBSD.org>
12626
12627 * symfile.c (find_separate_debug_file): Look for separate debug
12628 files in debug directories under the sysroot.
12629
12630 2019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12631
12632 * symtab.h (struct minimal_symbol data_p): New const method.
12633 (struct minimal_symbol text_p): Likewise.
12634 * symtab.c (output_source_filename): Use file name style
12635 to print file name.
12636 (print_symbol_info): Likewise.
12637 (print_msymbol_info): Use address style to print addresses.
12638 Use function name style to print executable text symbols.
12639 (expand_symtab_containing_pc): Use data_p.
12640 (find_pc_sect_compunit_symtab): Likewise.
12641
12642 2019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12643
12644 * breakpoint.c (describe_other_breakpoints): Use address style
12645 to print addresses.
12646 (say_where): Likewise.
12647
12648 2019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12649
12650 * ada-typeprint.c (print_func_type): Print function name
12651 style to print function name.
12652 * c-typeprint.c (c_print_type_1): Likewise.
12653
12654 2019-02-11 Alan Hayward <alan.hayward@arm.com>
12655
12656 * aarch64-linux-tdep.c (aarch64_linux_get_syscall_number): Check
12657 for execve.
12658
12659 2019-02-10 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12660
12661 * c-exp.y (direct_abs_decl): Use emplace_back to record the
12662 type_stack.
12663
12664 2019-02-10 Joel Brobecker <brobecker@adacore.com>
12665
12666 * ada-varobj.c (ada_value_is_changeable_p): Add handling of
12667 TYPE_CODE_REF types.
12668
12669 2019-02-08 Jim Wilson <jimw@sifive.com>
12670
12671 * riscv-linux-tdep.c (riscv_linux_fregmap): New.
12672 (riscv_linux_fregset): New.
12673 (riscv_linux_iterate_over_regset_sections): Call cb for .reg2 section.
12674
12675 2019-02-07 Tom Tromey <tom@tromey.com>
12676
12677 * thread.c (thread_cancel_execution_command): Update.
12678 * thread-fsm.h (struct thread_fsm): Add constructor, destructor,
12679 methods.
12680 (struct thread_fsm_ops): Remove.
12681 (thread_fsm_ctor, thread_fsm_delete, thread_fsm_clean_up)
12682 (thread_fsm_should_stop, thread_fsm_return_value)
12683 (thread_fsm_set_finished, thread_fsm_finished_p)
12684 (thread_fsm_async_reply_reason, thread_fsm_should_notify_stop):
12685 Don't declare.
12686 * mi/mi-interp.c (mi_on_normal_stop_1): Update.
12687 * infrun.c (clear_proceed_status_thread)
12688 (clean_up_just_stopped_threads_fsms, fetch_inferior_event)
12689 (print_stop_event): Update.
12690 * infcmd.c (struct step_command_fsm): Inherit from thread_fsm.
12691 Add constructor.
12692 (step_command_fsm_ops): Remove.
12693 (new_step_command_fsm): Remove.
12694 (step_1): Update.
12695 (step_command_fsm::should_stop): Rename from
12696 step_command_fsm_should_stop.
12697 (step_command_fsm::clean_up): Rename from
12698 step_command_fsm_clean_up.
12699 (step_command_fsm::do_async_reply_reason): Rename from
12700 step_command_fsm_async_reply_reason.
12701 (struct until_next_fsm): Inherit from thread_fsm. Add
12702 constructor.
12703 (until_next_fsm_ops): Remove.
12704 (new_until_next_fsm): Remove.
12705 (until_next_fsm::should_stop): Rename from
12706 until_next_fsm_should_stop.
12707 (until_next_fsm::clean_up): Rename from until_next_fsm_clean_up.
12708 (until_next_fsm::do_async_reply_reason): Rename from
12709 until_next_fsm_async_reply_reason.
12710 (struct finish_command_fsm): Inherit from thread_fsm. Add
12711 constructor. Change type of breakpoint.
12712 (finish_command_fsm_ops): Remove.
12713 (new_finish_command_fsm): Remove.
12714 (finish_command_fsm::should_stop): Rename from
12715 finish_command_fsm_should_stop.
12716 (finish_command_fsm::clean_up): Rename from
12717 finish_command_fsm_clean_up.
12718 (finish_command_fsm::return_value): Rename from
12719 finish_command_fsm_return_value.
12720 (finish_command_fsm::do_async_reply_reason): Rename from
12721 finish_command_fsm_async_reply_reason.
12722 (finish_command): Update.
12723 * infcall.c (struct call_thread_fsm): Inherit from thread_fsm.
12724 Add constructor.
12725 (call_thread_fsm_ops): Remove.
12726 (call_thread_fsm::call_thread_fsm): Rename from
12727 new_call_thread_fsm.
12728 (call_thread_fsm::should_stop): Rename from
12729 call_thread_fsm_should_stop.
12730 (call_thread_fsm::should_notify_stop): Rename from
12731 call_thread_fsm_should_notify_stop.
12732 (run_inferior_call, call_function_by_hand_dummy): Update.
12733 * cli/cli-interp.c (should_print_stop_to_console): Update.
12734 * breakpoint.c (struct until_break_fsm): Inherit from thread_fsm.
12735 Add constructor. Change type of location_breakpoint,
12736 caller_breakpoint.
12737 (until_break_fsm_ops): Remove.
12738 (new_until_break_fsm): Remove.
12739 (until_break_fsm::should_stop): Rename from
12740 until_break_fsm_should_stop.
12741 (until_break_fsm::clean_up): Rename from
12742 until_break_fsm_clean_up.
12743 (until_break_fsm::do_async_reply_reason): Rename from
12744 until_break_fsm_async_reply_reason.
12745 (until_break_command): Update.
12746 * thread-fsm.c: Remove.
12747 * Makefile.in (COMMON_SFILES): Remove thread-fsm.c.
12748
12749 2019-02-07 Tom Tromey <tom@tromey.com>
12750
12751 * yy-remap.h: Add include guard.
12752 * xtensa-tdep.h: Add include guard.
12753 * xcoffread.h: Rename include guard.
12754 * varobj-iter.h: Add include guard.
12755 * tui/tui.h: Rename include guard.
12756 * tui/tui-winsource.h: Rename include guard.
12757 * tui/tui-wingeneral.h: Rename include guard.
12758 * tui/tui-windata.h: Rename include guard.
12759 * tui/tui-win.h: Rename include guard.
12760 * tui/tui-stack.h: Rename include guard.
12761 * tui/tui-source.h: Rename include guard.
12762 * tui/tui-regs.h: Rename include guard.
12763 * tui/tui-out.h: Rename include guard.
12764 * tui/tui-layout.h: Rename include guard.
12765 * tui/tui-io.h: Rename include guard.
12766 * tui/tui-hooks.h: Rename include guard.
12767 * tui/tui-file.h: Rename include guard.
12768 * tui/tui-disasm.h: Rename include guard.
12769 * tui/tui-data.h: Rename include guard.
12770 * tui/tui-command.h: Rename include guard.
12771 * tic6x-tdep.h: Add include guard.
12772 * target/waitstatus.h: Rename include guard.
12773 * target/wait.h: Rename include guard.
12774 * target/target.h: Rename include guard.
12775 * target/resume.h: Rename include guard.
12776 * target-float.h: Rename include guard.
12777 * stabsread.h: Add include guard.
12778 * rs6000-tdep.h: Add include guard.
12779 * riscv-fbsd-tdep.h: Add include guard.
12780 * regformats/regdef.h: Rename include guard.
12781 * record.h: Rename include guard.
12782 * python/python.h: Rename include guard.
12783 * python/python-internal.h: Rename include guard.
12784 * python/py-stopevent.h: Rename include guard.
12785 * python/py-ref.h: Rename include guard.
12786 * python/py-record.h: Rename include guard.
12787 * python/py-record-full.h: Rename include guard.
12788 * python/py-record-btrace.h: Rename include guard.
12789 * python/py-instruction.h: Rename include guard.
12790 * python/py-events.h: Rename include guard.
12791 * python/py-event.h: Rename include guard.
12792 * procfs.h: Add include guard.
12793 * proc-utils.h: Add include guard.
12794 * p-lang.h: Add include guard.
12795 * or1k-tdep.h: Rename include guard.
12796 * observable.h: Rename include guard.
12797 * nto-tdep.h: Rename include guard.
12798 * nat/x86-linux.h: Rename include guard.
12799 * nat/x86-linux-dregs.h: Rename include guard.
12800 * nat/x86-gcc-cpuid.h: Add include guard.
12801 * nat/x86-dregs.h: Rename include guard.
12802 * nat/x86-cpuid.h: Rename include guard.
12803 * nat/ppc-linux.h: Rename include guard.
12804 * nat/mips-linux-watch.h: Rename include guard.
12805 * nat/linux-waitpid.h: Rename include guard.
12806 * nat/linux-ptrace.h: Rename include guard.
12807 * nat/linux-procfs.h: Rename include guard.
12808 * nat/linux-osdata.h: Rename include guard.
12809 * nat/linux-nat.h: Rename include guard.
12810 * nat/linux-namespaces.h: Rename include guard.
12811 * nat/linux-btrace.h: Rename include guard.
12812 * nat/glibc_thread_db.h: Rename include guard.
12813 * nat/gdb_thread_db.h: Rename include guard.
12814 * nat/gdb_ptrace.h: Rename include guard.
12815 * nat/fork-inferior.h: Rename include guard.
12816 * nat/amd64-linux-siginfo.h: Rename include guard.
12817 * nat/aarch64-sve-linux-sigcontext.h: Rename include guard.
12818 * nat/aarch64-sve-linux-ptrace.h: Rename include guard.
12819 * nat/aarch64-linux.h: Rename include guard.
12820 * nat/aarch64-linux-hw-point.h: Rename include guard.
12821 * mn10300-tdep.h: Add include guard.
12822 * mips-linux-tdep.h: Add include guard.
12823 * mi/mi-parse.h: Rename include guard.
12824 * mi/mi-out.h: Rename include guard.
12825 * mi/mi-main.h: Rename include guard.
12826 * mi/mi-interp.h: Rename include guard.
12827 * mi/mi-getopt.h: Rename include guard.
12828 * mi/mi-console.h: Rename include guard.
12829 * mi/mi-common.h: Rename include guard.
12830 * mi/mi-cmds.h: Rename include guard.
12831 * mi/mi-cmd-break.h: Rename include guard.
12832 * m2-lang.h: Add include guard.
12833 * location.h: Rename include guard.
12834 * linux-record.h: Rename include guard.
12835 * linux-nat.h: Add include guard.
12836 * linux-fork.h: Add include guard.
12837 * i386-darwin-tdep.h: Rename include guard.
12838 * hppa-linux-offsets.h: Add include guard.
12839 * guile/guile.h: Rename include guard.
12840 * guile/guile-internal.h: Rename include guard.
12841 * gnu-nat.h: Rename include guard.
12842 * gdb-stabs.h: Rename include guard.
12843 * frv-tdep.h: Add include guard.
12844 * f-lang.h: Add include guard.
12845 * event-loop.h: Add include guard.
12846 * darwin-nat.h: Rename include guard.
12847 * cp-abi.h: Rename include guard.
12848 * config/sparc/nm-sol2.h: Rename include guard.
12849 * config/nm-nto.h: Rename include guard.
12850 * config/nm-linux.h: Add include guard.
12851 * config/i386/nm-i386gnu.h: Rename include guard.
12852 * config/djgpp/nl_types.h: Rename include guard.
12853 * config/djgpp/langinfo.h: Rename include guard.
12854 * compile/gcc-cp-plugin.h: Add include guard.
12855 * compile/gcc-c-plugin.h: Add include guard.
12856 * compile/compile.h: Rename include guard.
12857 * compile/compile-object-run.h: Rename include guard.
12858 * compile/compile-object-load.h: Rename include guard.
12859 * compile/compile-internal.h: Rename include guard.
12860 * compile/compile-cplus.h: Rename include guard.
12861 * compile/compile-c.h: Rename include guard.
12862 * common/xml-utils.h: Rename include guard.
12863 * common/x86-xstate.h: Rename include guard.
12864 * common/version.h: Rename include guard.
12865 * common/vec.h: Rename include guard.
12866 * common/tdesc.h: Rename include guard.
12867 * common/selftest.h: Rename include guard.
12868 * common/scoped_restore.h: Rename include guard.
12869 * common/scoped_mmap.h: Rename include guard.
12870 * common/scoped_fd.h: Rename include guard.
12871 * common/safe-iterator.h: Rename include guard.
12872 * common/run-time-clock.h: Rename include guard.
12873 * common/refcounted-object.h: Rename include guard.
12874 * common/queue.h: Rename include guard.
12875 * common/ptid.h: Rename include guard.
12876 * common/print-utils.h: Rename include guard.
12877 * common/preprocessor.h: Rename include guard.
12878 * common/pathstuff.h: Rename include guard.
12879 * common/observable.h: Rename include guard.
12880 * common/netstuff.h: Rename include guard.
12881 * common/job-control.h: Rename include guard.
12882 * common/host-defs.h: Rename include guard.
12883 * common/gdb_wait.h: Rename include guard.
12884 * common/gdb_vecs.h: Rename include guard.
12885 * common/gdb_unlinker.h: Rename include guard.
12886 * common/gdb_unique_ptr.h: Rename include guard.
12887 * common/gdb_tilde_expand.h: Rename include guard.
12888 * common/gdb_sys_time.h: Rename include guard.
12889 * common/gdb_string_view.h: Rename include guard.
12890 * common/gdb_splay_tree.h: Rename include guard.
12891 * common/gdb_setjmp.h: Rename include guard.
12892 * common/gdb_ref_ptr.h: Rename include guard.
12893 * common/gdb_optional.h: Rename include guard.
12894 * common/gdb_locale.h: Rename include guard.
12895 * common/gdb_assert.h: Rename include guard.
12896 * common/filtered-iterator.h: Rename include guard.
12897 * common/filestuff.h: Rename include guard.
12898 * common/fileio.h: Rename include guard.
12899 * common/environ.h: Rename include guard.
12900 * common/common-utils.h: Rename include guard.
12901 * common/common-types.h: Rename include guard.
12902 * common/common-regcache.h: Rename include guard.
12903 * common/common-inferior.h: Rename include guard.
12904 * common/common-gdbthread.h: Rename include guard.
12905 * common/common-exceptions.h: Rename include guard.
12906 * common/common-defs.h: Rename include guard.
12907 * common/common-debug.h: Rename include guard.
12908 * common/cleanups.h: Rename include guard.
12909 * common/buffer.h: Rename include guard.
12910 * common/btrace-common.h: Rename include guard.
12911 * common/break-common.h: Rename include guard.
12912 * cli/cli-utils.h: Rename include guard.
12913 * cli/cli-style.h: Rename include guard.
12914 * cli/cli-setshow.h: Rename include guard.
12915 * cli/cli-script.h: Rename include guard.
12916 * cli/cli-interp.h: Rename include guard.
12917 * cli/cli-decode.h: Rename include guard.
12918 * cli/cli-cmds.h: Rename include guard.
12919 * charset-list.h: Add include guard.
12920 * buildsym-legacy.h: Rename include guard.
12921 * bfin-tdep.h: Add include guard.
12922 * ax.h: Rename include guard.
12923 * arm-linux-tdep.h: Add include guard.
12924 * arm-fbsd-tdep.h: Add include guard.
12925 * arch/xtensa.h: Rename include guard.
12926 * arch/tic6x.h: Add include guard.
12927 * arch/i386.h: Add include guard.
12928 * arch/arm.h: Rename include guard.
12929 * arch/arm-linux.h: Rename include guard.
12930 * arch/arm-get-next-pcs.h: Rename include guard.
12931 * arch/amd64.h: Add include guard.
12932 * arch/aarch64-insn.h: Rename include guard.
12933 * arch-utils.h: Rename include guard.
12934 * annotate.h: Add include guard.
12935 * amd64-darwin-tdep.h: Rename include guard.
12936 * aarch64-linux-tdep.h: Add include guard.
12937 * aarch64-fbsd-tdep.h: Add include guard.
12938 * aarch32-linux-nat.h: Add include guard.
12939
12940 2019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12941
12942 * macrotab.c (macro_define_internal): New function that
12943 factorizes macro_define_object_internal and macro_define_function
12944 code.
12945 (macro_define_object_internal): Use macro_define_internal.
12946 (macro_define_function): Likewise.
12947
12948 2019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12949
12950 * macrocmd.c (extract_identifier): Return
12951 a gdb::unique_xmalloc_ptr<char> instead of a char *, and update
12952 callers.
12953
12954 2019-02-06 John Baldwin <jhb@FreeBSD.org>
12955
12956 * fbsd-nat.c (fbsd_fetch_cmdline): Join arguments with spaces.
12957
12958 2019-02-05 Tom Tromey <tom@tromey.com>
12959
12960 * target.c (target_stack::unpush): Move assertion earlier.
12961
12962 2019-01-30 Tom Tromey <tom@tromey.com>
12963
12964 PR python/23615:
12965 * python/python.c (execute_gdb_command): Use gdbpy_allow_threads.
12966 (gdbpy_parse_and_eval): Likewise.
12967 * python/python-internal.h (gdbpy_allow_threads): New class.
12968
12969 2019-01-28 John Baldwin <jhb@FreeBSD.org>
12970
12971 * aarch64-fbsd-tdep.c (aarch64_fbsd_gregmap)
12972 (aarch64_fbsd_fpregmap): Move earlier.
12973 (AARCH64_MCONTEXT_REG_SIZE, AARCH64_MCONTEXT_FPREG_SIZE): Delete.
12974 (aarch64_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
12975 instead of individual calls to trad_frame_set_reg_addr.
12976 * arm-fbsd-tdep.c (arm_fbsd_gregmap, arm_fbsd_vfpregmap): Move
12977 earlier.
12978 (ARM_MCONTEXT_REG_SIZE, ARM_MCONTEXT_VFP_REG_SIZE): Delete.
12979 (arm_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
12980 instead of individual calls to trad_frame_set_reg_addr.
12981
12982 2019-01-28 Alan Hayward <alan.hayward@arm.com>
12983
12984 * CONTRIBUTE: Replace contribution list with wiki link.
12985
12986 2019-01-25 Tom Tromey <tom@tromey.com>
12987
12988 * Makefile.in (GDB_CFLAGS): Don't add -I for common.
12989
12990 2019-01-25 Tom Tromey <tom@tromey.com>
12991
12992 * xtensa-linux-nat.c: Fix common/ includes.
12993 * xml-support.h: Fix common/ includes.
12994 * xml-support.c: Fix common/ includes.
12995 * x86-linux-nat.c: Fix common/ includes.
12996 * windows-nat.c: Fix common/ includes.
12997 * varobj.h: Fix common/ includes.
12998 * varobj.c: Fix common/ includes.
12999 * value.c: Fix common/ includes.
13000 * valops.c: Fix common/ includes.
13001 * utils.c: Fix common/ includes.
13002 * unittests/xml-utils-selftests.c: Fix common/ includes.
13003 * unittests/utils-selftests.c: Fix common/ includes.
13004 * unittests/unpack-selftests.c: Fix common/ includes.
13005 * unittests/tracepoint-selftests.c: Fix common/ includes.
13006 * unittests/style-selftests.c: Fix common/ includes.
13007 * unittests/string_view-selftests.c: Fix common/ includes.
13008 * unittests/scoped_restore-selftests.c: Fix common/ includes.
13009 * unittests/scoped_mmap-selftests.c: Fix common/ includes.
13010 * unittests/scoped_fd-selftests.c: Fix common/ includes.
13011 * unittests/rsp-low-selftests.c: Fix common/ includes.
13012 * unittests/parse-connection-spec-selftests.c: Fix common/
13013 includes.
13014 * unittests/optional-selftests.c: Fix common/ includes.
13015 * unittests/offset-type-selftests.c: Fix common/ includes.
13016 * unittests/observable-selftests.c: Fix common/ includes.
13017 * unittests/mkdir-recursive-selftests.c: Fix common/ includes.
13018 * unittests/memrange-selftests.c: Fix common/ includes.
13019 * unittests/memory-map-selftests.c: Fix common/ includes.
13020 * unittests/lookup_name_info-selftests.c: Fix common/ includes.
13021 * unittests/function-view-selftests.c: Fix common/ includes.
13022 * unittests/environ-selftests.c: Fix common/ includes.
13023 * unittests/copy_bitwise-selftests.c: Fix common/ includes.
13024 * unittests/common-utils-selftests.c: Fix common/ includes.
13025 * unittests/cli-utils-selftests.c: Fix common/ includes.
13026 * unittests/array-view-selftests.c: Fix common/ includes.
13027 * ui-file.c: Fix common/ includes.
13028 * tui/tui-io.c: Fix common/ includes.
13029 * tracepoint.h: Fix common/ includes.
13030 * tracepoint.c: Fix common/ includes.
13031 * tracefile-tfile.c: Fix common/ includes.
13032 * top.h: Fix common/ includes.
13033 * top.c: Fix common/ includes.
13034 * thread.c: Fix common/ includes.
13035 * target/waitstatus.h: Fix common/ includes.
13036 * target/waitstatus.c: Fix common/ includes.
13037 * target.h: Fix common/ includes.
13038 * target.c: Fix common/ includes.
13039 * target-memory.c: Fix common/ includes.
13040 * target-descriptions.c: Fix common/ includes.
13041 * symtab.h: Fix common/ includes.
13042 * symfile.c: Fix common/ includes.
13043 * stap-probe.c: Fix common/ includes.
13044 * spu-linux-nat.c: Fix common/ includes.
13045 * sparc-nat.c: Fix common/ includes.
13046 * source.c: Fix common/ includes.
13047 * solib.c: Fix common/ includes.
13048 * solib-target.c: Fix common/ includes.
13049 * ser-unix.c: Fix common/ includes.
13050 * ser-tcp.c: Fix common/ includes.
13051 * ser-pipe.c: Fix common/ includes.
13052 * ser-base.c: Fix common/ includes.
13053 * selftest-arch.c: Fix common/ includes.
13054 * s12z-tdep.c: Fix common/ includes.
13055 * rust-exp.y: Fix common/ includes.
13056 * rs6000-aix-tdep.c: Fix common/ includes.
13057 * riscv-tdep.c: Fix common/ includes.
13058 * remote.c: Fix common/ includes.
13059 * remote-notif.h: Fix common/ includes.
13060 * remote-fileio.h: Fix common/ includes.
13061 * remote-fileio.c: Fix common/ includes.
13062 * regcache.h: Fix common/ includes.
13063 * regcache.c: Fix common/ includes.
13064 * record-btrace.c: Fix common/ includes.
13065 * python/python.c: Fix common/ includes.
13066 * python/py-type.c: Fix common/ includes.
13067 * python/py-inferior.c: Fix common/ includes.
13068 * progspace.h: Fix common/ includes.
13069 * producer.c: Fix common/ includes.
13070 * procfs.c: Fix common/ includes.
13071 * proc-api.c: Fix common/ includes.
13072 * printcmd.c: Fix common/ includes.
13073 * ppc-linux-nat.c: Fix common/ includes.
13074 * parser-defs.h: Fix common/ includes.
13075 * osdata.c: Fix common/ includes.
13076 * obsd-nat.c: Fix common/ includes.
13077 * nat/x86-linux.c: Fix common/ includes.
13078 * nat/x86-linux-dregs.c: Fix common/ includes.
13079 * nat/x86-dregs.h: Fix common/ includes.
13080 * nat/x86-dregs.c: Fix common/ includes.
13081 * nat/ppc-linux.c: Fix common/ includes.
13082 * nat/mips-linux-watch.h: Fix common/ includes.
13083 * nat/mips-linux-watch.c: Fix common/ includes.
13084 * nat/linux-waitpid.c: Fix common/ includes.
13085 * nat/linux-ptrace.h: Fix common/ includes.
13086 * nat/linux-ptrace.c: Fix common/ includes.
13087 * nat/linux-procfs.c: Fix common/ includes.
13088 * nat/linux-personality.c: Fix common/ includes.
13089 * nat/linux-osdata.c: Fix common/ includes.
13090 * nat/linux-namespaces.c: Fix common/ includes.
13091 * nat/linux-btrace.h: Fix common/ includes.
13092 * nat/linux-btrace.c: Fix common/ includes.
13093 * nat/fork-inferior.c: Fix common/ includes.
13094 * nat/amd64-linux-siginfo.c: Fix common/ includes.
13095 * nat/aarch64-sve-linux-ptrace.c: Fix common/ includes.
13096 * nat/aarch64-linux.c: Fix common/ includes.
13097 * nat/aarch64-linux-hw-point.h: Fix common/ includes.
13098 * nat/aarch64-linux-hw-point.c: Fix common/ includes.
13099 * namespace.h: Fix common/ includes.
13100 * mips-linux-tdep.c: Fix common/ includes.
13101 * minsyms.c: Fix common/ includes.
13102 * mi/mi-parse.h: Fix common/ includes.
13103 * mi/mi-main.c: Fix common/ includes.
13104 * mi/mi-cmd-env.c: Fix common/ includes.
13105 * memrange.h: Fix common/ includes.
13106 * memattr.c: Fix common/ includes.
13107 * maint.h: Fix common/ includes.
13108 * maint.c: Fix common/ includes.
13109 * main.c: Fix common/ includes.
13110 * machoread.c: Fix common/ includes.
13111 * location.c: Fix common/ includes.
13112 * linux-thread-db.c: Fix common/ includes.
13113 * linux-nat.c: Fix common/ includes.
13114 * linux-fork.c: Fix common/ includes.
13115 * inline-frame.c: Fix common/ includes.
13116 * infrun.c: Fix common/ includes.
13117 * inflow.c: Fix common/ includes.
13118 * inferior.h: Fix common/ includes.
13119 * inferior.c: Fix common/ includes.
13120 * infcmd.c: Fix common/ includes.
13121 * inf-ptrace.c: Fix common/ includes.
13122 * inf-child.c: Fix common/ includes.
13123 * ia64-linux-nat.c: Fix common/ includes.
13124 * i387-tdep.c: Fix common/ includes.
13125 * i386-tdep.c: Fix common/ includes.
13126 * i386-linux-tdep.c: Fix common/ includes.
13127 * i386-linux-nat.c: Fix common/ includes.
13128 * i386-go32-tdep.c: Fix common/ includes.
13129 * i386-fbsd-tdep.c: Fix common/ includes.
13130 * i386-fbsd-nat.c: Fix common/ includes.
13131 * guile/scm-type.c: Fix common/ includes.
13132 * guile/guile.c: Fix common/ includes.
13133 * go32-nat.c: Fix common/ includes.
13134 * gnu-nat.c: Fix common/ includes.
13135 * gdbthread.h: Fix common/ includes.
13136 * gdbarch-selftests.c: Fix common/ includes.
13137 * gdb_usleep.c: Fix common/ includes.
13138 * gdb_select.h: Fix common/ includes.
13139 * gdb_bfd.c: Fix common/ includes.
13140 * gcore.c: Fix common/ includes.
13141 * fork-child.c: Fix common/ includes.
13142 * findvar.c: Fix common/ includes.
13143 * fbsd-nat.c: Fix common/ includes.
13144 * event-top.c: Fix common/ includes.
13145 * event-loop.c: Fix common/ includes.
13146 * dwarf2read.c: Fix common/ includes.
13147 * dwarf2loc.c: Fix common/ includes.
13148 * dwarf2-frame.c: Fix common/ includes.
13149 * dwarf-index-cache.c: Fix common/ includes.
13150 * dtrace-probe.c: Fix common/ includes.
13151 * disasm-selftests.c: Fix common/ includes.
13152 * defs.h: Fix common/ includes.
13153 * csky-tdep.c: Fix common/ includes.
13154 * cp-valprint.c: Fix common/ includes.
13155 * cp-support.h: Fix common/ includes.
13156 * cp-support.c: Fix common/ includes.
13157 * corelow.c: Fix common/ includes.
13158 * completer.h: Fix common/ includes.
13159 * completer.c: Fix common/ includes.
13160 * compile/compile.c: Fix common/ includes.
13161 * compile/compile-loc2c.c: Fix common/ includes.
13162 * compile/compile-cplus-types.c: Fix common/ includes.
13163 * compile/compile-cplus-symbols.c: Fix common/ includes.
13164 * command.h: Fix common/ includes.
13165 * cli/cli-dump.c: Fix common/ includes.
13166 * cli/cli-cmds.c: Fix common/ includes.
13167 * charset.c: Fix common/ includes.
13168 * build-id.c: Fix common/ includes.
13169 * btrace.h: Fix common/ includes.
13170 * btrace.c: Fix common/ includes.
13171 * breakpoint.h: Fix common/ includes.
13172 * breakpoint.c: Fix common/ includes.
13173 * ax.h:
13174 (enum agent_op): Fix common/ includes.
13175 * ax-general.c (struct aop_map): Fix common/ includes.
13176 * ax-gdb.c: Fix common/ includes.
13177 * auxv.c: Fix common/ includes.
13178 * auto-load.c: Fix common/ includes.
13179 * arm-tdep.c: Fix common/ includes.
13180 * arch/riscv.c: Fix common/ includes.
13181 * arch/ppc-linux-common.c: Fix common/ includes.
13182 * arch/i386.c: Fix common/ includes.
13183 * arch/arm.c: Fix common/ includes.
13184 * arch/arm-linux.c: Fix common/ includes.
13185 * arch/arm-get-next-pcs.c: Fix common/ includes.
13186 * arch/amd64.c: Fix common/ includes.
13187 * arch/aarch64.c: Fix common/ includes.
13188 * arch/aarch64-insn.c: Fix common/ includes.
13189 * arch-utils.c: Fix common/ includes.
13190 * amd64-windows-tdep.c: Fix common/ includes.
13191 * amd64-tdep.c: Fix common/ includes.
13192 * amd64-sol2-tdep.c: Fix common/ includes.
13193 * amd64-obsd-tdep.c: Fix common/ includes.
13194 * amd64-nbsd-tdep.c: Fix common/ includes.
13195 * amd64-linux-tdep.c: Fix common/ includes.
13196 * amd64-linux-nat.c: Fix common/ includes.
13197 * amd64-fbsd-tdep.c: Fix common/ includes.
13198 * amd64-fbsd-nat.c: Fix common/ includes.
13199 * amd64-dicos-tdep.c: Fix common/ includes.
13200 * amd64-darwin-tdep.c: Fix common/ includes.
13201 * agent.c: Fix common/ includes.
13202 * ada-lang.h: Fix common/ includes.
13203 * ada-lang.c: Fix common/ includes.
13204 * aarch64-tdep.c: Fix common/ includes.
13205
13206 2019-01-25 Tom Tromey <tom@tromey.com>
13207
13208 * common/create-version.sh: Use common/version.h.
13209
13210 2019-01-24 Pedro Alves <palves@redhat.com>
13211
13212 * infrun.c (signal_stop, signal_print, signal_program)
13213 (signal_catch, signal_pass): Now arrays instead of pointers.
13214 (update_signals_program_target, do_target_resume)
13215 (signal_catch_update, handle_command, _initialize_infrun): Adjust.
13216 * linux-nat.c (linux_nat_target::pass_signals)
13217 (linux_nat_target::create_inferior, linux_nat_target::attach):
13218 Adjust.
13219 * linux-nat.h (linux_nat_target::pass_signals): Adjust.
13220 * nto-procfs.c (nto_procfs_target::pass_signals): Adjust.
13221 * procfs.c (procfs_target::pass_signals): Adjust.
13222 * record-full.c (record_full_target::resume): Adjust.
13223 * remote.c (remote_target::pass_signals)
13224 (remote_target::program_signals): Adjust.
13225 * target-debug.h (target_debug_print_signals): Now takes a
13226 gdb::array_view as parameter. Adjust.
13227 * target.h (target_ops) <pass_signals, program_signals>: Replace
13228 pointer and length parameters with gdb::array_view.
13229 (target_pass_signals, target_program_signals): Likewise.
13230 * target-delegates.c: Regenerate.
13231
13232 2019-01-24 Pedro Alves <palves@redhat.com>
13233
13234 * common/forward-scope-exit.h
13235 (forward_scope_exit::forward_scope_exit): Pass arguments to
13236 m_bind_function directly, instead of creating a std::bind and
13237 copying that.
13238
13239 2019-01-24 Alan Hayward <alan.hayward@arm.com>
13240
13241 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
13242 for static members.
13243 (pass_in_v_vfp_candidate): Likewise.
13244
13245 2019-01-23 Tom Tromey <tom@tromey.com>
13246 Pedro Alves <palves@redhat.com>
13247
13248 * regcache.c (class regcache_invalidator): Remove.
13249 (regcache::raw_write): Use make_scope_exit.
13250
13251 2019-01-23 Tom Tromey <tom@tromey.com>
13252
13253 * ui-out.h (class ui_out_emit_type): Update comment.
13254
13255 2019-01-23 Tom Tromey <tom@tromey.com>
13256
13257 * infrun.c (fetch_inferior_event): Update comment.
13258
13259 2019-01-23 Tom Tromey <tom@tromey.com>
13260 Pedro Alves <palves@redhat.com>
13261
13262 * infrun.c (reinstall_readline_callback_handler_cleanup): Remove
13263 parameter.
13264 (fetch_inferior_event): Use SCOPE_EXIT.
13265
13266
13267 2019-01-23 Tom Tromey <tom@tromey.com>
13268 Pedro Alves <palves@redhat.com>
13269
13270 * infrun.c (disable_thread_events): Delete.
13271 (stop_all_threads): Use SCOPE_EXIT.
13272
13273 2019-01-23 Tom Tromey <tom@tromey.com>
13274 Pedro Alves <palves@redhat.com>
13275
13276 * symfile.c: Include forward-scope-exit.h.
13277 (clear_symtab_users_cleanup): Replace forward declaration with
13278 a FORWARD_SCOPE_EXIT.
13279 (syms_from_objfile_1): Use the forward_scope_exit and
13280 gdb::optional instead of cleanup_function.
13281 (reread_symbols): Use the forward_scope_exit instead of
13282 cleanup_function.
13283 (clear_symtab_users_cleanup): Remove function.
13284
13285 2019-01-23 Tom Tromey <tom@tromey.com>
13286 Pedro Alves <palves@redhat.com>
13287
13288 * linux-nat.c: Include scope-exit.h.
13289 (cleanup_target_stop): Remove.
13290 (linux_nat_target::static_tracepoint_markers_by_strid): Use
13291 SCOPE_EXIT.
13292
13293 2019-01-23 Tom Tromey <tom@tromey.com>
13294 Pedro Alves <palves@redhat.com>
13295
13296 * infcall.c (cleanup_delete_std_terminate_breakpoint): Remove.
13297 (call_function_by_hand_dummy): Use SCOPE_EXIT.
13298
13299 2019-01-23 Tom Tromey <tom@tromey.com>
13300 Andrew Burgess <andrew.burgess@embecosm.com>
13301 Pedro Alves <palves@redhat.com>
13302
13303 * infrun.c (fetch_inferior_event): Use scope_exit.
13304 * utils.h (make_bpstat_clear_actions_cleanup): Don't declare.
13305 * top.c (execute_command): Use scope_exit.
13306 * breakpoint.c (bpstat_do_actions): Use scope_exit.
13307 * utils.c (do_bpstat_clear_actions_cleanup)
13308 (make_bpstat_clear_actions_cleanup): Remove.
13309
13310 2019-01-23 Tom Tromey <tom@tromey.com>
13311 Pedro Alves <palves@redhat.com>
13312
13313 * infrun.c: Include "common/scope-exit.h"
13314 (delete_just_stopped_threads_infrun_breakpoints_cleanup): Remove.
13315 (wait_for_inferior): Use SCOPE_EXIT.
13316 (fetch_inferior_event): Use scope_exit.
13317
13318 2019-01-23 Tom Tromey <tom@tromey.com>
13319 Pedro Alves <palves@redhat.com>
13320
13321 * breakpoint.c (create_breakpoint): Remove cleanup.
13322
13323 2019-01-23 Tom Tromey <tom@tromey.com>
13324 Andrew Burgess <andrew.burgess@embecosm.com>
13325 Pedro Alves <palves@redhat.com>
13326
13327 2019-01-23 Pedro Alves <palves@redhat.com>
13328
13329 * gdbarch-selftests.c (struct on_exit): Use SCOPE_EXIT.
13330
13331 2019-01-23 Pedro Alves <palves@redhat.com>
13332 Andrew Burgess <andrew.burgess@embecosm.com>
13333
13334 * gdbthread.h: Include "common/forward-scope-exit.h".
13335 (scoped_finish_thread_state): Redefine custom class in terms of
13336 forward_scope_exit.
13337
13338 2019-01-23 Pedro Alves <palves@redhat.com>
13339 Andrew Burgess <andrew.burgess@embecosm.com>
13340
13341 * common/forward-scope-exit.h: New file.
13342
13343 2019-01-23 Pedro Alves <palves@redhat.com>
13344 Andrew Burgess <andrew.burgess@embecosm.com>
13345 Tom Tromey <tom@tromey.com>
13346
13347 * common/scope-exit.h: New file.
13348
13349 2019-01-23 Pedro Alves <palves@redhat.com>
13350
13351 * common/preprocessor.h (ESC): Rename to ...
13352 (ESC_PARENS): ... this.
13353 * common/valid-expr.h (CHECK_VALID_EXPR_1, CHECK_VALID_EXPR_2)
13354 (CHECK_VALID_EXPR_3, CHECK_VALID_EXPR_4): Adjust.
13355
13356 2019-01-23 Tom Tromey <tom@tromey.com>
13357
13358 * language.h (class scoped_switch_to_sym_language_if_auto):
13359 Initialize m_lang in both cases.
13360
13361 2019-01-23 Alan Hayward <alan.hayward@arm.com>
13362
13363 * nat/aarch64-linux.c (aarch64_linux_new_thread): Replace XNEW
13364 with XCNEW.
13365
13366 2019-01-22 Tom Tromey <tom@tromey.com>
13367
13368 * corelow.c: Do not include sys/file.h.
13369
13370 2019-01-22 Tom Tromey <tom@tromey.com>
13371
13372 * tui/tui-wingeneral.h: Include gdb_curses.h.
13373
13374 2019-01-22 Tom Tromey <tom@tromey.com>
13375
13376 * source-cache.h (class source_cache) <get_source_lines,
13377 get_plain_source_lines, extract_lines>: Rename "lines" parameter.
13378
13379 2019-01-22 Tom Tromey <tom@tromey.com>
13380
13381 * remote-fileio.h (struct remote_target): Declare.
13382
13383 2019-01-22 Tom Tromey <tom@tromey.com>
13384
13385 * python/py-arch.c: Do not include py-ref.h.
13386 * python/py-bpevent.c: Do not include py-ref.h.
13387 * python/py-cmd.c: Do not include py-ref.h.
13388 * python/py-continueevent.c: Do not include py-ref.h.
13389 * python/py-event.h: Do not include py-ref.h.
13390 * python/py-evtregistry.c: Do not include py-ref.h.
13391 * python/py-finishbreakpoint.c: Do not include py-ref.h.
13392 * python/py-frame.c: Do not include py-ref.h.
13393 * python/py-framefilter.c: Do not include py-ref.h.
13394 * python/py-function.c: Do not include py-ref.h.
13395 * python/py-infevents.c: Do not include py-ref.h.
13396 * python/py-linetable.c: Do not include py-ref.h.
13397 * python/py-objfile.c: Do not include py-ref.h.
13398 * python/py-param.c: Do not include py-ref.h.
13399 * python/py-prettyprint.c: Do not include py-ref.h.
13400 * python/py-progspace.c: Do not include py-ref.h.
13401 * python/py-symbol.c: Do not include py-ref.h.
13402 * python/py-symtab.c: Do not include py-ref.h.
13403 * python/py-type.c: Do not include py-ref.h.
13404 * python/py-unwind.c: Do not include py-ref.h.
13405 * python/py-utils.c: Do not include py-ref.h.
13406 * python/py-value.c: Do not include py-ref.h.
13407 * python/py-varobj.c: Do not include py-ref.h.
13408 * python/py-xmethods.c: Do not include py-ref.h.
13409 * python/python.c: Do not include py-ref.h.
13410 * varobj.c: Do not include py-ref.h.
13411
13412 2019-01-22 Tom Tromey <tom@tromey.com>
13413
13414 * objfiles.h (struct objfile_per_bfd_storage): Use "struct"
13415 keyword for bcache.
13416
13417 2019-01-22 Tom Tromey <tom@tromey.com>
13418
13419 * compile/compile-cplus-types.c: Remove a comment by #include.
13420
13421 2019-01-22 Tom Tromey <tom@tromey.com>
13422
13423 * compile/gcc-c-plugin.h: Include compile-internal.h.
13424
13425 2019-01-22 Tom Tromey <tom@tromey.com>
13426
13427 * stabsread.c (EXTERN): Do not define.
13428 (symnum, next_symbol_text_func, processing_gcc_compilation)
13429 (within_function, global_sym_chain, global_stabs)
13430 (previous_stab_code, this_object_header_files)
13431 (n_this_object_header_files)
13432 (n_allocated_this_object_header_files): Define.
13433 * stabsread.h (EXTERN): Never define. Use "extern".
13434
13435 2019-01-22 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13436
13437 * event-top.c (handle_line_of_input): use unique_xmalloc_ptr for
13438 history_value.
13439
13440 2019-01-21 Tom Tromey <tom@tromey.com>
13441
13442 * ui-out.c: Fix includes.
13443 * tui/tui-source.c: Fix includes.
13444 * target.c: Fix includes.
13445 * remote.c: Fix includes.
13446 * regcache.c: Fix includes.
13447 * python/py-block.c: Fix includes.
13448 * printcmd.c: Fix includes.
13449 * or1k-tdep.c: Fix includes.
13450 * mi/mi-main.c: Fix includes.
13451 * m32r-tdep.c: Fix includes.
13452 * csky-tdep.c: Fix includes.
13453 * compile/compile-cplus-types.c: Fix includes.
13454 * cli/cli-interp.c: Fix includes.
13455
13456 2019-01-21 Alan Hayward <alan.hayward@arm.com>
13457
13458 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
13459 for padding.
13460
13461 2019-01-16 Tom Tromey <tom@tromey.com>
13462
13463 * objfiles.h (struct minimal_symbol_iterator): Rename. Move
13464 earlier.
13465 (struct objfile) <msymbols_range>: Move from top level.
13466 <msymbols>: New method.
13467 (class objfile_msymbols): Remove.
13468 * symtab.c (default_collect_symbol_completion_matches_break_on):
13469 Update.
13470 * symmisc.c (dump_msymbols): Update.
13471 * stabsread.c (scan_file_globals): Update.
13472 * objc-lang.c (info_selectors_command, info_classes_command)
13473 (find_methods): Update.
13474 * minsyms.c (find_solib_trampoline_target): Update.
13475 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Update.
13476 * coffread.c (coff_symfile_read): Update.
13477 * ada-lang.c (ada_lookup_simple_minsym)
13478 (ada_collect_symbol_completion_matches): Update.
13479
13480 2019-01-16 Tom Tromey <tom@tromey.com>
13481
13482 * objfiles.h (class objfile_msymbols) <iterator>: Change argument
13483 type. Remove no-argument constructor.
13484 <iterator::operator++>: Simplify.
13485 <begin>: Update.
13486 <end>: Use minimal_symbol_count.
13487
13488 2019-01-16 Tom Tromey <tom@tromey.com>
13489
13490 * objfiles.h (struct objfile) <psymtabs>: New method.
13491 (class objfile_psymtabs): Remove.
13492 * psymtab.h (class psymtab_storage) <partial_symtab_range>: New
13493 typedef.
13494 <range>: New method.
13495 (require_partial_symbols): Change return type.
13496 * psymtab.c (require_partial_symbols)
13497 (psym_expand_symtabs_matching): Update.
13498 * mdebugread.c (parse_partial_symbols): Update.
13499 * dbxread.c (dbx_end_psymtab): Update.
13500
13501 2019-01-15 Tom Tromey <tom@tromey.com>
13502
13503 * symtab.c (lookup_objfile_from_block)
13504 (lookup_symbol_in_objfile_symtabs)
13505 (basic_lookup_transparent_type_1, find_pc_sect_compunit_symtab)
13506 (find_line_symtab, info_sources_command)
13507 (default_collect_symbol_completion_matches_break_on)
13508 (make_source_files_completion_list): Update.
13509 * symmisc.c (print_objfile_statistics, dump_objfile)
13510 (maintenance_print_symbols, maintenance_info_symtabs)
13511 (maintenance_check_symtabs, maintenance_info_line_tables):
13512 Update.
13513 * source.c (select_source_symtab)
13514 (forget_cached_source_info_for_objfile): Update.
13515 * objfiles.h (class objfile_compunits): Remove.
13516 (struct objfile) <compunits_range>: New typedef.
13517 (compunits): New method.
13518 * objfiles.c (objfile_relocate1): Update.
13519 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
13520 * maint.c (count_symtabs_and_blocks): Update.
13521 * linespec.c (iterate_over_all_matching_symtabs): Update.
13522 * cp-support.c (add_symbol_overload_list_qualified): Update.
13523 * coffread.c (coff_symtab_read): Update.
13524 * ada-lang.c (add_nonlocal_symbols)
13525 (ada_collect_symbol_completion_matches)
13526 (ada_add_global_exceptions): Update.
13527
13528 2019-01-15 Tom Tromey <tom@tromey.com>
13529
13530 * progspace.h (program_space) <objfiles_safe_range>: New
13531 typedef.
13532 <objfiles_safe>: New method.
13533 * objfiles.h (class all_objfiles_safe): Remove.
13534 * objfiles.c (free_all_objfiles, objfile_purge_solibs): Update.
13535 * jit.c (jit_inferior_exit_hook): Update.
13536
13537 2019-01-17 Tom Tromey <tom@tromey.com>
13538
13539 * progspace.h (program_space) <objfiles_range>: New typedef.
13540 <objfiles>: New method.
13541 <objfiles_head>: Rename from objfiles.
13542 (object_files): Update.
13543 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Update.
13544 * guile/scm-pretty-print.c
13545 (ppscm_find_pretty_printer_from_objfiles): Update.
13546 * guile/scm-objfile.c (gdbscm_objfiles): Update.
13547 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers):
13548 Update.
13549 * python/py-progspace.c (pspy_get_objfiles): Update.
13550 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
13551 Update.
13552 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
13553 (objfpy_lookup_objfile_by_build_id): Update.
13554 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
13555 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
13556 Update.
13557 * symtab.c (iterate_over_symtabs, matching_obj_sections)
13558 (expand_symtab_containing_pc, lookup_objfile_from_block)
13559 (lookup_static_symbol, basic_lookup_transparent_type)
13560 (find_pc_sect_compunit_symtab, find_symbol_at_address)
13561 (find_line_symtab, info_sources_command)
13562 (default_collect_symbol_completion_matches_break_on)
13563 (make_source_files_completion_list, find_main_name): Update.
13564 * symmisc.c (print_symbol_bcache_statistics)
13565 (print_objfile_statistics, maintenance_print_symbols)
13566 (maintenance_print_msymbols, maintenance_print_objfiles)
13567 (maintenance_info_symtabs, maintenance_check_symtabs)
13568 (maintenance_expand_symtabs, maintenance_info_line_tables):
13569 Update.
13570 * symfile.c (remove_symbol_file_command, overlay_invalidate_all)
13571 (find_pc_overlay, find_pc_mapped_section, list_overlays_command)
13572 (map_overlay_command, unmap_overlay_command)
13573 (simple_overlay_update, expand_symtabs_matching)
13574 (map_symbol_filenames): Update.
13575 * symfile-debug.c (set_debug_symfile): Update.
13576 * spu-tdep.c (spu_overlay_update, spu_objfile_from_frame):
13577 Update.
13578 * source.c (select_source_symtab, forget_cached_source_info):
13579 Update.
13580 * solib.c (solib_read_symbols): Update.
13581 * solib-spu.c (append_ocl_sos): Update.
13582 * psymtab.c (maintenance_print_psymbols)
13583 (maintenance_info_psymtabs, maintenance_check_psymtabs): Update.
13584 * probe.c (parse_probes_in_pspace, find_probe_by_pc): Update.
13585 * printcmd.c (info_symbol_command): Update.
13586 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created):
13587 Update.
13588 * objfiles.h (class all_objfiles): Remove.
13589 * objfiles.c (have_partial_symbols, have_full_symbols)
13590 (have_minimal_symbols, qsort_cmp, update_section_map)
13591 (shared_objfile_contains_address_p)
13592 (default_iterate_over_objfiles_in_search_order): Update.
13593 * objc-lang.c (info_selectors_command, info_classes_command)
13594 (find_methods): Update.
13595 * minsyms.c (find_solib_trampoline_target): Update.
13596 * maint.c (maintenance_info_sections)
13597 (maintenance_translate_address, count_symtabs_and_blocks):
13598 Update.
13599 * main.c (captured_main_1): Update.
13600 * linux-thread-db.c (try_thread_db_load_from_pdir)
13601 (has_libpthread): Update.
13602 * linespec.c (iterate_over_all_matching_symtabs)
13603 (search_minsyms_for_name): Update.
13604 * jit.c (jit_find_objf_with_entry_addr): Update.
13605 * hppa-tdep.c (find_unwind_entry)
13606 (hppa_lookup_stub_minimal_symbol): Update.
13607 * gcore.c (gcore_create_callback, objfile_find_memory_regions):
13608 Update.
13609 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
13610 (elf_gnu_ifunc_resolve_by_got): Update.
13611 * dwarf2-frame.c (dwarf2_frame_find_fde): Update.
13612 * dwarf-index-write.c (save_gdb_index_command): Update.
13613 * cp-support.c (add_symbol_overload_list_qualified): Update.
13614 * breakpoint.c (create_overlay_event_breakpoint)
13615 (create_longjmp_master_breakpoint)
13616 (create_std_terminate_master_breakpoint)
13617 (create_exception_master_breakpoint): Update.
13618 * blockframe.c (find_pc_partial_function): Update.
13619 * ada-lang.c (ada_lookup_simple_minsym, add_nonlocal_symbols)
13620 (ada_collect_symbol_completion_matches)
13621 (ada_add_global_exceptions): Update.
13622
13623 2019-01-17 Tom Tromey <tom@tromey.com>
13624
13625 * solib-target.c (lm_info_target_p): Remove typedef. Don't
13626 declare VEC.
13627 (solib_target_parse_libraries): Change return type.
13628 (library_list_start_segment, library_list_start_section)
13629 (library_list_end_library, library_list_start_library); Update.
13630 (solib_target_free_library_list): Remove.
13631 (solib_target_parse_libraries): Remove cleanup. Change return
13632 type.
13633 (solib_target_current_sos): Update.
13634
13635 2019-01-17 Tom Tromey <tromey@bapiya>
13636
13637 * valprint.c: Replace "the the" with "the".
13638 * symtab.c: Replace "the the" with "the".
13639 * solib.c: Replace "the the" with "the".
13640 * solib-dsbt.c: Replace "the the" with "the".
13641 * linespec.c: Replace "the the" with "the".
13642 * dwarf2loc.h: Replace "the the" with "the".
13643 * amd64-windows-tdep.c: Replace "the the" with "the".
13644 * aarch64-tdep.c: Replace "the the" with "the".
13645
13646 2019-01-16 Keith Seitz <keiths@redhat.com>
13647
13648 PR gdb/23773
13649 * dwarf2read.c (dwarf2_cu) <ancestor>: New field.
13650 <builder>: Rename to ..
13651 <m_builder>: ... this and make private.
13652 (dwarf2_cu::get_builder): New method. Change all users of
13653 `builder' to use this method.
13654 (dwarf2_start_symtab): Move to ...
13655 (dwarf2_cu::start_symtab): ... here. Update all callers
13656 (setup_type_unit_groups): Move to ...
13657 (dwarf2_cu::setup_type_unit_groups): ... here. Update all
13658 callers.
13659 (dwarf2_cu::reset_builder): New method.
13660 (process_full_compunit, process_full_type_unit): Use
13661 dwarf2_cu::reset_builder.
13662 (follow_die_offset): Record the ancestor CU if it is different
13663 from the followed DIE's CU.
13664 (follow_die_sig_1): Likewise.
13665
13666 2019-01-15 Tom Tromey <tom@tromey.com>
13667
13668 * remote.c (class remote_state) <buf>: Now a char_vector.
13669 <buf_size>: Remove.
13670 (remote_target::getpkt): Change type of buf. Remove sizeof_buf
13671 parameter.
13672 (remote_target::getpkt_or_notif_sane_1)
13673 (remote_target::getpkt_sane)
13674 (remote_target::getpkt_or_notif_sane): Likewise.
13675 (class remote_target) <putpkt>: New overload.
13676 (remote_target::read_frame): Change type of "buf_p". Remove
13677 sizeof_p parameter.
13678 (packet_ok): New overload.
13679 (packet_check_result): New overload.
13680 Update all uses.
13681
13682 2019-01-14 Tom Tromey <tom@tromey.com>
13683
13684 * remote-notif.c (handle_notification, remote_notif_ack)
13685 (remote_notif_parse): Make "buf" const.
13686 * remote-notif.h (struct notif_client) <parse, ack>: Make "buf"
13687 const.
13688 (remote_notif_parse, remote_notif_ack, handle_notification):
13689 Likewise.
13690 * remote.c (remote_notif_stop_parse): Make "buf" const.
13691 (remote_target::remote_parse_stop_reply): Make "buf" const.
13692 (remote_notif_stop_ack): Make "buf" const.
13693
13694 2019-01-14 Tom Tromey <tom@tromey.com>
13695
13696 * remote.c (remote_console_output): Make parameter const.
13697
13698 2019-01-14 Tom Tromey <tom@tromey.com>
13699
13700 * target-debug.h (target_debug_print_signals): Constify.
13701 * nto-procfs.c (nto_procfs_target::pass_signals): Update.
13702 * procfs.c (procfs_target::pass_signals): Update.
13703 * linux-nat.c (linux_nat_target::pass_signals): Update.
13704 * linux-nat.h (class linux_nat_target) <pass_signals>: Update.
13705 * target-delegates.c: Rebuild.
13706 * remote.c (remote_target::program_signals): Update.
13707 (remote_target::pass_signals): Update.
13708 * target.c (target_pass_signals): Constify argument.
13709 (target_program_signals): Likewise.
13710 * target.h (struct target_ops) <pass_signals, program_signals>:
13711 Constify argument.
13712 (target_pass_signals, target_program_signals): Constify argument.
13713
13714 2019-01-14 Tom Tromey <tom@tromey.com>
13715
13716 PR tui/28819:
13717 * tui/tui-io.c (gdb_wgetch): Print \r when needed.
13718
13719 2019-01-14 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
13720
13721 * ppc-tdep.h (struct gdbarch_tdep) <ppc_v0_alias_regnum>: New
13722 field.
13723 * rs6000-tdep.c: Include reggroups.h.
13724 (IS_V_ALIAS_PSEUDOREG): Define.
13725 (rs6000_register_name): Return names for the "vX" aliases.
13726 (rs6000_pseudo_register_type): Return type for the "vX" aliases.
13727 (rs6000_pseudo_register_reggroup_p): Restore. Handle "vX"
13728 aliases. Call default_register_reggroup_p for all other
13729 pseudo-registers.
13730 (v_alias_pseudo_register_read, v_alias_pseudo_register_write):
13731 New functions.
13732 (rs6000_pseudo_register_read, rs6000_pseudo_register_write):
13733 Handle "vX" aliases.
13734 (v_alias_pseudo_register_collect): New function.
13735 (rs6000_ax_pseudo_register_collect): Handle "vX" aliases.
13736 (rs6000_gdbarch_init): Initialize "vX" aliases as
13737 pseudo-registers. Restore registration of
13738 rs6000_pseudo_register_reggroup_p with
13739 set_tdesc_pseudo_register_reggroup_p.
13740
13741 2019-01-13 Max Filippov <jcmvbkbc@gmail.com>
13742
13743 * xtensa-linux-tdep.c (xtensa_linux_init_abi): Update
13744 tdep->num_pseudo_regs. Add calls to set_gdbarch_num_regs and
13745 set_gdbarch_num_pseudo_regs.
13746
13747 2019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13748
13749 * cli/cli-style.h (class cli_style_option): <add_setshow_commands>
13750 Remove arg prefixname, add do_set and do_show.
13751 Add member functions set_list and show_list.
13752 * cli/cli-style.c (class cli_style_option): Update accordingly.
13753 (style_set_list): Move to file scope.
13754 (style_show_list): Likewise.
13755 (set_style): Call help_list.
13756 (show_style): Call cmd_show_list.
13757 (_initialize_cli_style): New macro STYLE_ADD_SETSHOW_COMMANDS.
13758 Update to use the new macro.
13759
13760 2019-10-12 Joel Brobecker <brobecker@adacore.com>
13761
13762 * ada-lang.c (_initialize_ada_language): Expand the help text
13763 for the "catch exception" command.
13764
13765 2019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13766
13767 * symtab.c (matching_obj_sections): Initialize obj,
13768 declare it closer to its usage.
13769
13770 2019-01-10 Tom Tromey <tom@tromey.com>
13771
13772 * thread-iter.h (inf_threads_iterator): Use next_iterator.
13773 (basic_inf_threads_range): Remove.
13774 (inf_threads_range, inf_non_exited_threads_range)
13775 (safe_inf_threads_range): Use next_adapter.
13776
13777 2019-01-10 Keith Seitz <keiths@redhat.com>
13778
13779 PR gdb/23712
13780 PR symtab/23010
13781 * dwarf2read.c (dw2_add_symbol_to_list): Remove.
13782 (fixup_go_packaging, new_symbol): Use add_symbol_to_list.
13783
13784 2019-01-10 Keith Seitz <keiths@redhat.com>
13785
13786 PR gdb/23712
13787 PR symtab/23010
13788 * dictionary.c (pending_to_vector): Remove.
13789 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
13790 Remove _1 suffix, replacing functions of the same name. Update
13791 all callers.
13792 (dict_create_hashed, dict_create_hashed_expandable)
13793 (dict_create_linear, dict_create_linear_expandable, dict_free)
13794 (dict_add_symbol, dict_add_pending, dict_size, dict_empty):
13795 Make functions static.
13796
13797 2019-01-10 Keith Seitz <keiths@redhat.com>
13798
13799 PR gdb/23712
13800 PR symtab/23010
13801 * dictionary.h (struct dictionary): Replace declaration with
13802 multidictionary.
13803 (dict_create_hashed, dict_create_hashed_expandable)
13804 (dict_create_linear, dict_create_linear_expandable)
13805 (dict_free, dict_add_symbol, dict_add_pending, dict_empty)
13806 (dict_iterator_first, dict_iterator_next, dict_iter_match_first)
13807 (dict_iter_match_next, dict_size): Rename to "mdict_" versions
13808 taking multidictionary argument.
13809 [ALL_DICT_SYMBOLS]: Update for multidictionary.
13810 * block.h (struct block) <dict>: Change to multidictionary
13811 and rename `multidict'.
13812 * block.c, buildsym.c, jit.c, mdebugread.c, objfiles.c,
13813 symmisc.c: Update all dictionary references to multidictionary.
13814
13815 2019-01-10 Keith Seitz <keiths@redhat.com>
13816
13817 PR gdb/23712
13818 PR symtab/23010
13819 * dictionary.c: Include unordered_map.
13820 (pending_to_vector): New function.
13821 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
13822 Rewrite the non-"_1" functions to take vector instead
13823 of linked list.
13824 (dict_create_hashed, dict_create_linear, dict_add_pending): Use the
13825 "new" _1 versions of the same name.
13826 (multidictionary): Define.
13827 (std::hash<enum language): New definition.
13828 (collate_pending_symbols_by_language, mdict_create_hashed)
13829 (mdict_create_hashed_expandable, mdict_create_linear)
13830 (mdict_create_linear_expandable, mdict_free)
13831 (find_language_dictionary, create_new_language_dictionary)
13832 (mdict_add_symbol, mdict_add_pending, mdict_iterator_first)
13833 (mdict_iterator_next, mdict_iter_match_first, mdict_iter_match_next)
13834 (mdict_size, mdict_empty): New functions.
13835 * dictionary.h (mdict_iterator): Define.
13836
13837 2019-01-10 Pedro Alves <palves@redhat.com>
13838
13839 * breakpoint.c (read_uploaded_action)
13840 (create_tracepoint_from_upload): Adjust to use
13841 gdb::unique_xmalloc_ptr.
13842 * ctf.c (ctf_write_uploaded_tp):
13843 (SET_ARRAY_FIELD): Use emplace_back.
13844 (SET_STRING_FIELD): Adjust to use gdb::unique_xmalloc_ptr.
13845 * tracefile-tfile.c (tfile_write_uploaded_tp):
13846 * tracepoint.c (parse_tracepoint_definition): Adjust to use
13847 gdb::unique_xmalloc_ptr.
13848 * tracepoint.h (struct uploaded_tp) <cond, actions, step_actions,
13849 at_string, cond_string, cmd_strings>: Replace char pointers
13850 with gdb::unique_xmalloc_ptr.
13851
13852 2019-01-10 Pedro Alves <palves@redhat.com>
13853
13854 * solib-target.c (library_list_start_library): Don't xstrdup name.
13855
13856 2019-01-10 Pedro Alves <palves@redhat.com>
13857
13858 * mdebugread.c (parse_partial_symbols): Use
13859 gdb::unique_xmalloc_ptr to manage heap-allocated 'stabsstring'.
13860
13861 2019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
13862
13863 * linux-fork.c (scoped_switch_fork_info)
13864 <~scoped_switch_fork_info>: Fix incorrect variable name.
13865
13866 2019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
13867
13868 * linux-fork.c (scoped_switch_fork_info)
13869 <scoped_switch_fork_info>: Make explicit.
13870 <~scoped_switch_fork_info>: Wrap core in TRY/CATCH.
13871
13872 2019-01-10 Tom Tromey <tom@tromey.com>
13873
13874 * objfiles.h (objfile::reset_psymtabs): Update.
13875 * objfiles.c (objfile::objfile): Update.
13876 * psymtab.h (psymtab_storage::obstack): Update.
13877 (psymtab_storage::m_obstack): Use gdb::optional.
13878 (class psymtab_storage): Update comment. Remove objfile
13879 parameter.
13880 * psymtab.c (psymtab_storage::psymtab_storage): Update.
13881
13882 2019-01-10 Tom Tromey <tom@tromey.com>
13883
13884 * psymtab.h (psymtab_storage::allocate_psymtab): New method.
13885 <free_psymtabs>: Now private.
13886 * psymtab.c (psymtab_storage::allocate_psymtab): Implement.
13887 (allocate_psymtab): Use new method.
13888
13889 2019-01-10 Tom Tromey <tom@tromey.com>
13890
13891 * xcoffread.c (xcoff_end_psymtab): Use allocate_dependencies.
13892 * psymtab.h (psymtab_storage::allocate_dependencies): New method.
13893 * mdebugread.c (parse_partial_symbols): Use
13894 allocate_dependencies.
13895 * dwarf2read.c (dwarf2_create_include_psymtab): Use
13896 allocate_dependencies.
13897 (process_psymtab_comp_unit_reader)
13898 (build_type_psymtab_dependencies): Likewise.
13899 * dbxread.c (dbx_end_psymtab): Use allocate_dependencies.
13900
13901 2019-01-10 Tom Tromey <tom@tromey.com>
13902
13903 * psymtab.c (add_psymbol_to_bcache): Pass psymtab obstack to
13904 PSYMBOL_SET_LANGUAGE.
13905 (allocate_psymtab): Allocate psymtab on the psymtab obstack.
13906
13907 2019-01-10 Tom Tromey <tom@tromey.com>
13908
13909 * psymtab.h (psymtab_storage::obstack): New method.
13910 <m_obstack>: Rename from obstack; now private.
13911 * psymtab.c (psymtab_storage): Update.
13912 * dwarf2read.c (create_addrmap_from_index)
13913 (create_addrmap_from_aranges, dwarf2_build_psymtabs_hard):
13914 Update.
13915
13916 2019-01-10 Tom Tromey <tom@tromey.com>
13917
13918 * symfile.c (reread_symbols): Call objfile->reset_psymtabs.
13919 * objfiles.h (objfile::reset_psymtabs): New method.
13920
13921 2019-01-10 Tom Tromey <tom@tromey.com>
13922
13923 * symmisc.c (print_symbol_bcache_statistics): Update.
13924 (print_objfile_statistics): Update.
13925 * symfile.c (reread_symbols): Update.
13926 * psymtab.h (class psymtab_storage): New.
13927 * psymtab.c (psymtab_storage): New constructor.
13928 (~psymtab_storage): New destructor.
13929 (require_partial_symbols): Update.
13930 (ALL_OBJFILE_PSYMTABS_REQUIRED): Rewrite.
13931 (find_pc_sect_psymtab, find_pc_sect_psymbol)
13932 (match_partial_symbol, lookup_partial_symbol, dump_psymtab)
13933 (psym_dump, recursively_search_psymtabs, psym_has_symbols)
13934 (psym_find_compunit_symtab_by_address, sort_pst_symbols)
13935 (start_psymtab_common, end_psymtab_common)
13936 (add_psymbol_to_bcache, add_psymbol_to_list, init_psymbol_list)
13937 (allocate_psymtab): Update.
13938 (psymtab_storage::discard_psymtab): Rename from discard_psymtab.
13939 Update.
13940 (dump_psymtab_addrmap, maintenance_print_psymbols)
13941 (maintenance_check_psymtabs): Update.
13942 (class objfile_psymtabs): Move to objfiles.h.
13943 * psympriv.h (discard_psymtab): Now inline.
13944 (psymtab_discarder::psymtab_discarder): Update.
13945 (psymtab_discarder::~psymtab_discarder): Update.
13946 (ALL_OBJFILE_PSYMTABS): Rewrite.
13947 * objfiles.h (struct objfile) <psymtabs, psymtabs_addrmap,
13948 free_psymtabs, psymbol_cache, global_psymbols, static_psymbols>:
13949 Remove fields.
13950 <partial_symtabs>: New field.
13951 (class objfile_psymtabs): Move from psymtab.h. Update.
13952 * objfiles.c (objfile::objfile): Initialize partial_symtabs, not
13953 psymbol_cache.
13954 (objfile::~objfile): Don't destroy psymbol_cache.
13955 * mdebugread.c (parse_partial_symbols): Update.
13956 * dwarf2read.c (create_addrmap_from_index)
13957 (create_addrmap_from_aranges, dw2_find_pc_sect_compunit_symtab)
13958 (process_psymtab_comp_unit_reader, dwarf2_build_psymtabs_hard)
13959 (add_partial_subprogram, dwarf2_ranges_read): Update.
13960 * dwarf-index-write.c (write_address_map)
13961 (write_one_signatured_type, recursively_write_psymbols)
13962 (class debug_names, class debug_names, write_psymtabs_to_index):
13963 Update.
13964
13965 2019-01-10 Tom Tromey <tom@tromey.com>
13966
13967 * symtab.h (SYMBOL_SET_NAMES): Update.
13968 (symbol_set_names): Update.
13969 (MSYMBOL_SET_NAMES): Update.
13970 * symtab.c (symbol_set_names): Change argument to be an
13971 objfile_per_bfd_storage.
13972 * psymtab.c (add_psymbol_to_bcache): Update.
13973 * psympriv.h (PSYMBOL_SET_NAMES): Take per_bfd argument.
13974
13975 2019-01-10 Tom Tromey <tom@tromey.com>
13976
13977 * symtab.c (create_demangled_names_hash): Change argument to be an
13978 objfile_per_bfd_storage.
13979 (symbol_set_names): Update.
13980
13981 2019-01-10 Tom Tromey <tom@tromey.com>
13982
13983 * xcoffread.c (xcoff_initial_scan): Unconditionally call
13984 init_psymbol_list.
13985 * psymtab.c (init_psymbol_list): Do nothing if already called.
13986 * psympriv.h (init_psymbol_list): Add comment.
13987 * dwarf2read.c (dwarf2_build_psymtabs): Unconditionally call
13988 init_psymbol_list.
13989 * dbxread.c (dbx_symfile_read): Unconditionally call
13990 init_psymbol_list.
13991
13992 2019-01-10 Tom Tromey <tom@tromey.com>
13993
13994 * xcoffread.c (scan_xcoff_symtab): Update.
13995 * psymtab.c (add_psymbol_to_list): Replace "list" parameter with
13996 "where".
13997 * mdebugread.c (parse_partial_symbols)
13998 (handle_psymbol_enumerators): Update.
13999 * dwarf2read.c (add_partial_symbol, load_partial_dies): Update.
14000 * dbxread.c (read_dbx_symtab): Update.
14001 * psympriv.h (psymbol_placement): New enum.
14002 (add_psymbol_to_list): Update.
14003
14004 2019-01-10 Tom Tromey <tom@tromey.com>
14005
14006 * xcoffread.c (xcoff_start_psymtab): Remove global_psymbols and
14007 static_psymbols parameters.
14008 (scan_xcoff_symtab): Update.
14009 * psymtab.c (start_psymtab_common): Remove global_psymbols and
14010 static_psymbols parameters.
14011 * psympriv.h (start_psymtab_common): Update.
14012 * mdebugread.c (parse_partial_symbols): Update.
14013 * dwarf2read.c (create_partial_symtab): Update.
14014 * dbxread.c (read_dbx_symtab): Update.
14015 (start_psymtab): Remove global_psymbols and static_psymbols
14016 parameters.
14017
14018 2019-01-10 Tom Tromey <tom@tromey.com>
14019
14020 * xcoffread.c (xcoff_end_psymtab): Remove some initializations.
14021 * psymtab.c (allocate_psymtab): Add comment.
14022 * psympriv.h (allocate_psymtab): Add comment.
14023 * dwarf2read.c (dwarf2_create_include_psymtab): Remove some
14024 initializations.
14025 * dbxread.c (dbx_end_psymtab): Remove some initializations.
14026
14027 2019-01-10 Tom Tromey <tom@tromey.com>
14028
14029 * symfile.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
14030 Don't declare.
14031 * mipsread.c: Include mdebugread.h.
14032 * mdebugread.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
14033 Declare.
14034 * elfread.c: Include mdebugread.h.
14035
14036 2019-01-09 Tom Tromey <tom@tromey.com>
14037
14038 * dbxread.c (dbx_end_psymtab): Use objfile_psymtabs.
14039 * mdebugread.c (parse_partial_symbols): Use objfile_psymtabs.
14040 * psymtab.c (ALL_OBJFILE_PSYMTABS_REQUIRED): Remove.
14041 (psym_map_symtabs_matching_filename, find_pc_sect_psymtab)
14042 (psym_lookup_symbol, psym_find_last_source_symtab)
14043 (psym_forget_cached_source_info, psym_print_stats)
14044 (psym_expand_symtabs_for_function, psym_expand_all_symtabs)
14045 (psym_expand_symtabs_with_fullname, psym_map_symbol_filenames)
14046 (psym_map_matching_symbols, psym_expand_symtabs_matching)
14047 (psym_find_compunit_symtab_by_address)
14048 (maintenance_print_psymbols, maintenance_info_psymtabs)
14049 (maintenance_check_psymtabs): Use ranged for.
14050 * psymtab.h (class objfile_psymtabs): New.
14051 (require_partial_symbols): Return objfile_psymtabs.
14052 * psympriv.h (ALL_OBJFILE_PSYMTABS): Remove.
14053
14054 2019-01-09 Tom Tromey <tom@tromey.com>
14055
14056 * symfile.c (overlay_invalidate_all, find_pc_overlay)
14057 (find_pc_mapped_section, list_overlays_command)
14058 (map_overlay_command, unmap_overlay_command)
14059 (simple_overlay_update): Use all_objfiles.
14060 * spu-tdep.c (spu_overlay_update): Use all_objfiles.
14061 * printcmd.c (info_symbol_command): Use all_objfiles.
14062 * objfiles.h (ALL_OBJSECTIONS): Remove.
14063 * maint.c (maintenance_translate_address): Use all_objfiles.
14064 * gcore.c (gcore_create_callback): Use all_objfiles.
14065 (objfile_find_memory_regions): Likewise.
14066
14067 2019-01-09 Tom Tromey <tom@tromey.com>
14068
14069 * symtab.c (find_line_symtab, info_sources_command)
14070 (make_source_files_completion_list): Use objfile_compunits.
14071 * source.c (select_source_symtab): Use objfile_compunits.
14072 * objfiles.h (struct objfile): Update comment.
14073 (ALL_OBJFILES): Remove.
14074 (ALL_FILETABS): Remove.
14075 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Use
14076 objfile_compunits.
14077
14078 2019-01-09 Tom Tromey <tom@tromey.com>
14079
14080 * symmisc.c (print_objfile_statistics, dump_objfile)
14081 (maintenance_print_symbols): Use compunit_filetabs.
14082 * source.c (forget_cached_source_info_for_objfile): Use
14083 compunit_filetabs.
14084 * objfiles.h (ALL_OBJFILE_FILETABS): Remove.
14085 (ALL_FILETABS): Use compunit_filetabs.
14086 * objfiles.c (objfile_relocate1): Use compunit_filetabs.
14087 * coffread.c (coff_symtab_read): Use compunit_filetabs.
14088
14089 2019-01-09 Tom Tromey <tom@tromey.com>
14090
14091 * symtab.h (ALL_COMPUNIT_FILETABS): Remove.
14092 (compunit_filetabs): New.
14093 * symtab.c (iterate_over_some_symtabs, find_pc_sect_line): Use
14094 compunit_filetabs.
14095 (info_sources_command, make_source_files_completion_list): Remove
14096 declaration.
14097 * symmisc.c (print_objfile_statistics, dump_objfile)
14098 (maintenance_print_symbols): Remove declaration.
14099 (maintenance_info_symtabs): Use compunit_filetabs.
14100 (maintenance_info_line_tables): Likewise.
14101 * source.c (select_source_symtab): Change local variable name.
14102 (forget_cached_source_info_for_objfile): Remove declaration.
14103 * objfiles.h (ALL_OBJFILE_FILETABS): Use compunit_filetabs.
14104 * objfiles.c (objfile_relocate1): Remove declaration.
14105 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
14106 declaration.
14107 * maint.c (count_symtabs_and_blocks): Use compunit_filetabs.
14108 * coffread.c (coff_symtab_read): Remove declaration.
14109 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
14110 compunit_filetabs.
14111
14112 2019-01-09 Tom Tromey <tom@tromey.com>
14113
14114 * symtab.c (lookup_objfile_from_block)
14115 (find_pc_sect_compunit_symtab, search_symbols)
14116 (default_collect_symbol_completion_matches_break_on): Use
14117 objfile_compunits.
14118 * objfiles.h (ALL_COMPUNITS): Remove.
14119 * maint.c (count_symtabs_and_blocks): Use objfile_compunits.
14120 * cp-support.c (add_symbol_overload_list_qualified): Use
14121 objfile_compunits.
14122 * ada-lang.c (ada_collect_symbol_completion_matches)
14123 (ada_add_global_exceptions): Use objfile_compunits.
14124
14125 2019-01-09 Tom Tromey <tom@tromey.com>
14126
14127 * source.c (select_source_symtab)
14128 (forget_cached_source_info_for_objfile): Remove declaration.
14129 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
14130 declaration.
14131 * maint.c (count_symtabs_and_blocks): Remove declaration.
14132 * cp-support.c (add_symbol_overload_list_qualified): Remove
14133 declaration.
14134 * coffread.c (coff_symtab_read): Remove declaration.
14135 * symtab.c (lookup_symbol_in_objfile_symtabs)
14136 (basic_lookup_transparent_type_1): Use objfile_compunits.
14137 (lookup_objfile_from_block, find_pc_sect_compunit_symtab)
14138 (info_sources_command, search_symbols)
14139 (default_collect_symbol_completion_matches_break_on)
14140 (make_source_files_completion_list): Remove declaration.
14141 * ada-lang.c (add_nonlocal_symbols): Use objfile_compunits.
14142 (ada_collect_symbol_completion_matches)
14143 (ada_add_global_exceptions): Remove declaration.
14144 * linespec.c (iterate_over_all_matching_symtabs): Use
14145 objfile_compunits.
14146 * objfiles.h (ALL_OBJFILE_COMPUNITS): Remove.
14147 (class objfile_compunits): New.
14148 (ALL_COMPUNITS): Use objfile_compunits.
14149 * symmisc.c (print_objfile_statistics, maintenance_info_symtabs)
14150 (maintenance_check_symtabs, maintenance_info_line_tables): Use
14151 objfile_compunits.
14152 * objfiles.c (objfile_relocate1): Use objfile_compunits.
14153
14154 2019-01-09 Tom Tromey <tom@tromey.com>
14155
14156 * symtab.c (search_symbols)
14157 (default_collect_symbol_completion_matches_break_on): Use
14158 objfile_msymbols.
14159 * ada-lang.c (ada_lookup_simple_minsym)
14160 (ada_collect_symbol_completion_matches): Use objfile_msymbols.
14161 * minsyms.c (find_solib_trampoline_target): Use objfile_msymbols.
14162 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Use
14163 objfile_msymbols.
14164 * coffread.c (coff_symfile_read): Use objfile_msymbols.
14165 * symmisc.c (dump_msymbols): Use objfile_msymbols.
14166 * objc-lang.c (find_methods): Use objfile_msymbols.
14167 (info_selectors_command, info_classes_command): Likewise.
14168 * stabsread.c (scan_file_globals): Use objfile_msymbols.
14169 * objfiles.h (class objfile_msymbols): New.
14170 (ALL_OBJFILE_MSYMBOLS): Remove.
14171 (ALL_MSYMBOLS): Remove.
14172
14173 2019-01-09 Tom Tromey <tom@tromey.com>
14174
14175 * common/next-iterator.h (next_adapter): Add Iterator template
14176 parameter.
14177 * objfiles.h (ALL_OBJFILES_SAFE): Remove.
14178 (class all_objfiles_safe): New.
14179 * jit.c (jit_inferior_exit_hook): Use all_objfiles_safe.
14180 * objfiles.c (put_objfile_before): Update comment.
14181 (add_separate_debug_objfile): Likewise.
14182 (free_all_objfiles): Use all_objfiles_safe.
14183 (objfile_purge_solibs): Likewise.
14184
14185 2019-01-09 Tom Tromey <tom@tromey.com>
14186
14187 * symtab.c (iterate_over_symtabs, matching_obj_sections)
14188 (expand_symtab_containing_pc, lookup_static_symbol)
14189 (basic_lookup_transparent_type, find_pc_sect_compunit_symtab)
14190 (find_symbol_at_address, find_line_symtab, find_main_name): Use
14191 all_objfiles.
14192 * probe.c (find_probe_by_pc, collect_probes): Use all_objfiles.
14193 * breakpoint.c (create_overlay_event_breakpoint)
14194 (create_longjmp_master_breakpoint)
14195 (create_std_terminate_master_breakpoint)
14196 (create_exception_master_breakpoint): Use all_objfiles.
14197 * linux-thread-db.c (try_thread_db_load_from_pdir)
14198 (has_libpthread): Use all_objfiles.
14199 * ada-lang.c (add_nonlocal_symbols): Use all_objfiles.
14200 * linespec.c (iterate_over_all_matching_symtabs)
14201 (search_minsyms_for_name): Use all_objfiles.
14202 * maint.c (maintenance_info_sections): Use all_objfiles.
14203 * main.c (captured_main_1): Use all_objfiles.
14204 * spu-tdep.c (spu_objfile_from_frame): Use all_objfiles.
14205 * guile/scm-objfile.c (gdbscm_objfiles): Use all_objfiles.
14206 * guile/scm-pretty-print.c
14207 (ppscm_find_pretty_printer_from_objfiles): Use all_objfiles.
14208 * solib-spu.c (append_ocl_sos): Use all_objfiles.
14209 * symmisc.c (maintenance_print_symbols): Use all_objfiles.
14210 (maintenance_print_msymbols): Use all_objfiles.
14211 * source.c (select_source_symtab): Use all_objfiles.
14212 * jit.c (jit_find_objf_with_entry_addr): Use all_objfiles.
14213 * symfile.c (remove_symbol_file_command)
14214 (expand_symtabs_matching, map_symbol_filenames): Use
14215 all_objfiles.
14216 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created): Use
14217 all_objfiles.
14218 * dwarf2-frame.c (dwarf2_frame_find_fde): Use all_objfiles.
14219 * objc-lang.c (find_methods): Use all_objfiles.
14220 * objfiles.c (have_partial_symbols, have_full_symbols)
14221 (have_minimal_symbols, qsort_cmp)
14222 (default_iterate_over_objfiles_in_search_order): Use
14223 all_objfiles.
14224 * hppa-tdep.c (find_unwind_entry): Use all_objfiles.
14225 * psymtab.c (maintenance_print_psymbols): Use all_objfiles.
14226 (maintenance_check_psymtabs): Use all_objfiles.
14227 (ALL_PSYMTABS): Remove.
14228 * compile/compile-object-run.c (do_module_cleanup): Use
14229 all_objfiles.
14230 * blockframe.c (find_pc_partial_function): Use all_objfiles.
14231 * cp-support.c (add_symbol_overload_list_qualified): Use
14232 all_objfiles.
14233 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
14234 Use all_objfiles.
14235 * dwarf-index-write.c (save_gdb_index_command): Use all_objfiles.
14236 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): Use
14237 all_objfiles.
14238 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
14239 (objfpy_lookup_objfile_by_build_id): Use all_objfiles.
14240 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
14241 Uses all_objfiles.
14242 * solib.c (solib_read_symbols): Use all_objfiles
14243
14244 2019-01-09 Tom Tromey <tom@tromey.com>
14245
14246 * probe.c (parse_probes_in_pspace): Use all_objfiles.
14247 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Use
14248 all_objfiles.
14249 * objfiles.h (ALL_PSPACE_OBJFILES): Remove.
14250 * symmisc.c (print_symbol_bcache_statistics)
14251 (print_objfile_statistics, maintenance_print_objfiles)
14252 (maintenance_info_symtabs, maintenance_check_symtabs)
14253 (maintenance_expand_symtabs, maintenance_info_line_tables): Use
14254 all_objfiles.
14255 * source.c (forget_cached_source_info): Use all_objfiles.
14256 * symfile-debug.c (set_debug_symfile): Use all_objfiles.
14257 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
14258 (elf_gnu_ifunc_resolve_by_got): Use all_objfiles.
14259 * objfiles.c (update_section_map): Use all_objfiles.
14260 (shared_objfile_contains_address_p): Likewise.
14261 * psymtab.c (maintenance_info_psymtabs): Use all_objfiles.
14262 * python/py-progspace.c (pspy_get_objfiles): Use all_objfiles.
14263
14264 2019-01-09 Tom Tromey <tom@tromey.com>
14265
14266 * common/next-iterator.h: New file.
14267 * objfiles.h (class all_objfiles): New.
14268 (struct objfile_iterator): New.
14269
14270 2019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14271
14272 * NEWS: Move the description of the changed "frame", "select-frame",
14273 and "info frame" commands to the Changed commands section.
14274
14275 2019-01-09 Simon Marchi <simon.marchi@ericsson.com>
14276
14277 * gdbtypes.c (check_stub_method_group): Remove handling of old
14278 mangling schemes.
14279 * linespec.c (find_methods): Likewise.
14280 * stabsread.c (read_member_functions): Likewise.
14281 * valops.c (search_struct_method): Likewise.
14282 (value_struct_elt_for_reference): Likewise.
14283 * NEWS: Mention this change.
14284
14285 2019-01-09 Andrew Burgess <andrew.burgess@embecosm.com>
14286
14287 * cli/cli-cmds.c (list_command): Pass a source_lines_range to
14288 print_source_lines.
14289 * source.c (print_source_lines_base): Update line number check.
14290 (print_source_lines): New function.
14291 (source_lines_range::source_lines_range): New function.
14292 * source.h (class source_lines_range): New class.
14293 (print_source_lines): New declaration.
14294
14295 2019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14296
14297 * linespec.c (linespec_state_destructor): Free self->canonical_names.
14298
14299 2019-01-08 Tom Tromey <tom@tromey.com>
14300 Simon Marchi <simon.marchi@ericsson.com>
14301
14302 PR gdb/24060
14303 * ada-exp.y (DOLLAR_VARIABLE): Rename from SPECIAL_VARIABLE.
14304 * ada-lex.l (DOLLAR_VARIABLE): Likewise.
14305 * c-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
14306 * f-exp.y (DOLLAR_VARIABLE): Likewise.
14307 * m2-exp.y (DOLLAR_VARIABLE): Rename from INTERNAL_VAR.
14308 * p-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
14309
14310 2019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
14311
14312 * source.c (select_source_symtab): Move header comment to
14313 declaration in source.h.
14314 (forget_cached_source_info_for_objfile): Likewise.
14315 (forget_cached_source_info): Likewise.
14316 (identify_source_line): Likewise.
14317 * source.h (identify_source_line): Move declaration from symtab.h
14318 and add comment from source.c
14319 (print_source_lines): Likewise.
14320 (forget_cached_source_info_for_objfile): Likewise.
14321 (forget_cached_source_info): Likewise.
14322 (select_source_symtab): Likewise.
14323 (enum print_source_lines_flag): Move definition from symtab.h.
14324 * symtab.h (identify_source_line): Move declaration to source.h.
14325 (print_source_lines): Likewise.
14326 (forget_cached_source_info_for_objfile): Likewise.
14327 (forget_cached_source_info): Likewise.
14328 (select_source_symtab): Likewise.
14329 (enum print_source_lines_flag): Move definition to source.h.
14330 * tui/tui-hooks.c: Add 'source.h' include.
14331
14332 2019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
14333
14334 * source.c (print_source_lines_base): Handle requests to print
14335 reverse line number sequences, and guard against empty lines
14336 string.
14337
14338 2019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
14339
14340 * source.c (print_source_lines_base): Fix skip of '\r' if next
14341 character is '\n'.
14342
14343 2019-01-06 Tom Tromey <tom@tromey.com>
14344
14345 * c-exp.y (struct c_parse_state) <macro_original_text,
14346 expansion_obstack>: New member.
14347 (macro_original_text, expansion_obstack): Remove globals.
14348 (scan_macro_expansion, scanning_macro_expansion)
14349 (finished_macro_expansion): Update.
14350 (scan_macro_cleanup): Remove.
14351 (yylex, c_parse): Update.
14352
14353 2019-01-06 Tom Tromey <tom@tromey.com>
14354
14355 * c-exp.y (struct c_parse_state) <strings>: New member.
14356 (operator_stoken): Update.
14357
14358 2019-01-06 Tom Tromey <tom@tromey.com>
14359
14360 * parser-defs.h (type_ptr): Remove typedef. Don't declare VEC.
14361 (union type_stack_elt) <typelist_val>: Now a pointer to
14362 std::vector.
14363 (type_stack_cleanup): Don't declare.
14364 (push_typelist): Update.
14365 * parse.c (pop_typelist): Return a std::vector.
14366 (push_typelist): Take a std::vector.
14367 (follow_types): Update. Do not free args.
14368 (type_stack_cleanup): Remove.
14369 * c-exp.y (struct c_parse_state): New.
14370 (cpstate): New global.
14371 (type_aggregate_p, exp, ptr_operator, parameter_typelist)
14372 (nonempty_typelist): Update.
14373 (func_mod): Create a new vector.
14374 (c_parse): Create a c_parse_state.
14375 (check_parameter_typelist): Do not delete params.
14376 (function_method): Update. Do not delete type_list.
14377
14378 2019-01-06 Tom Tromey <tom@tromey.com>
14379
14380 PR gdb/28155:
14381 * python/py-finishbreakpoint.c (bpfinishpy_init): Use
14382 check_typedef.
14383 * infcmd.c (finish_command_fsm_should_stop): Use check_typedef.
14384 (print_return_value): Likewise.
14385
14386 2019-01-05 Tom Tromey <tom@tromey.com>
14387
14388 * contrib/cleanup_check.py: Remove.
14389 * contrib/gcc-with-excheck: Remove.
14390 * contrib/exsummary.py: Remove.
14391 * contrib/excheck.py: Remove.
14392
14393 2019-01-05 Joel Brobecker <brobecker@adacore.com>
14394
14395 * thread.c (delete_thread_1): Add gdb_assert that THR is not
14396 NULL. Initialize tpprev to NULL instead of assigning it
14397 to NULL on the next statement.
14398 * windows-nat.c (windows_delete_thread): Remove check for
14399 main_thread_id before printing thread exit notifications.
14400 (get_windows_debug_event) <EXIT_THREAD_DEBUG_EVENT>:
14401 Remove thread ID check against main_thread_id.
14402 <CREATE_PROCESS_DEBUG_EVENT>: Remove call to
14403 windows_delete_thread.
14404 <EXIT_PROCESS_DEBUG_EVENT>: Add call to windows_delete_thread.
14405
14406 2019-01-04 Tom Tromey <tom@tromey.com>
14407
14408 * compile/compile.c (_initialize_compile): Use upper case for
14409 metasyntactic variables.
14410 * symmisc.c (_initialize_symmisc): Use upper case for
14411 metasyntactic variables.
14412 * psymtab.c (_initialize_psymtab): Use upper case for
14413 metasyntactic variables.
14414 * demangle.c (demangle_command): Use upper case for metasyntactic
14415 variables.
14416 (_initialize_demangler): Likewise.
14417 * ax-gdb.c (_initialize_ax_gdb): Use upper case for metasyntactic
14418 variables.
14419
14420 2019-01-03 Tom Tromey <tom@tromey.com>
14421
14422 * tui/tui-source.c (tui_set_source_content): Use xstrdup.
14423
14424 2019-01-03 Tom Tromey <tom@tromey.com>
14425
14426 * python/py-symtab.c (salpy_str): Update.
14427 (struct salpy_sal_object) <symtab>: Now a PyObject.
14428 (salpy_dealloc): Update.
14429 (del_objfile_sal): Use gdbpy_ref.
14430
14431 2019-01-03 Tom Tromey <tom@tromey.com>
14432
14433 * python/py-type.c (convert_field): Use new_reference. Return
14434 gdbpy_ref.
14435 (make_fielditem): Return gdbpy_ref.
14436 (typy_fields): Update.
14437 (typy_getitem): Update.
14438 (field_name): Return gdbpy_ref. Use new_reference.
14439 (typy_iterator_iternext): Update.
14440
14441 2019-01-03 Tom Tromey <tom@tromey.com>
14442
14443 * python/py-record.c (gdbpy_stop_recording): Use Py_RETURN_NONE.
14444
14445 2019-01-03 Tom Tromey <tom@tromey.com>
14446
14447 * python/py-value.c (valpy_dealloc): Use Py_XDECREF.
14448 * python/py-type.c (typy_fields_items): Use gdbpy_ref.
14449 * python/py-progspace.c (pspy_set_printers): Use gdbpy_ref.
14450 (pspy_set_frame_filters, pspy_set_frame_unwinders)
14451 (pspy_set_type_printers): Likewise.
14452 * python/py-function.c (fnpy_init): Use gdbpy_ref.
14453 * python/py-cmd.c (cmdpy_init): Use gdbpy_ref.
14454 * python/py-objfile.c (objfpy_set_printers): Use gdbpy_ref.
14455 (objfpy_set_frame_filters, objfpy_set_frame_unwinders)
14456 (objfpy_set_type_printers): Likewise.
14457
14458 2019-01-03 Tom Tromey <tom@tromey.com>
14459
14460 * python/python.c (gdbpy_enter, ~gdbpy_enter): Update.
14461 (gdbpy_print_stack): Use gdbpy_err_fetch.
14462 * python/python-internal.h (class gdbpy_err_fetch): New class.
14463 (class gdbpy_enter) <m_error_type, m_error_value,
14464 m_error_traceback>: Remove.
14465 <m_error>: New member.
14466 (gdbpy_exception_to_string): Don't declare.
14467 * python/py-varobj.c (py_varobj_iter_next): Use gdbpy_err_fetch.
14468 * python/py-value.c (convert_value_from_python): Use
14469 gdbpy_err_fetch.
14470 * python/py-utils.c (gdbpy_err_fetch::to_string): Rename from
14471 gdbpy_exception_to_string.
14472 (gdbpy_handle_exception): Use gdbpy_err_fetch.
14473 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
14474 gdbpy_err_fetch.
14475
14476 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14477
14478 * linux-nat.c (delete_lwp_cleanup): Delete.
14479 (struct lwp_deleter): New struct.
14480 (lwp_info_up): New typedef.
14481 (linux_nat_target::follow_fork): Delete cleanup, and make use of
14482 lwp_info_up.
14483
14484 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14485
14486 * linux-fork.c (class scoped_switch_fork_info): New class.
14487 (inferior_call_waitpid): Update to use scoped_switch_fork_info.
14488
14489 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14490
14491 * valops.c (find_overload_match): Remove use of null_cleanup, and
14492 calls to do_cleanups.
14493
14494 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14495
14496 * compile/compile-cplus-types.c
14497 (compile_cplus_instance::decl_name): Handle changes to
14498 cp_func_name.
14499 * cp-support.c (cp_func_name): Update header comment, update
14500 return type.
14501 * cp-support.h (cp_func_name): Update return type in declaration.
14502 * valops.c (find_overload_match): Move temp_func local to top
14503 level of function and change its type. Use temp_func to hold and
14504 delete temporary string obtained from cp_func_name.
14505
14506 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14507
14508 * remote.c (remote_target::remote_check_symbols): Convert `msg` to
14509 gdb::char_vector, remove cleanup, and update uses of `msg`.
14510
14511 2019-01-03 Jim Wilson <jimw@sifive.com>
14512
14513 * riscv-tdep.c (riscv_freg_feature): Drop s0 name from f8.
14514
14515 2019-01-02 Tom Tromey <tom@tromey.com>
14516
14517 * xml-tdesc.c (xml_cache): Hold a target_desc_up.
14518 (tdesc_parse_xml): Remove cleanups.
14519 * target-descriptions.h (make_cleanup_free_target_description):
14520 Don't declare.
14521 (target_desc_deleter): New struct.
14522 (target_desc_up): New typedef.
14523 * target-descriptions.c (target_desc_deleter::operator()): Rename
14524 from free_target_description.
14525 (make_cleanup_free_target_description): Remove.
14526
14527 2019-01-02 Tom Tromey <tom@tromey.com>
14528
14529 * linespec.c (struct linespec_parser): Rename from ls_parser. Add
14530 constructor, destructor.
14531 (linespec_parser): Remove typedef.
14532 (~linespec_parser): Rename from linespec_parser_delete.
14533 (linespec_lex_to_end, linespec_complete_label)
14534 (linespec_complete): Update.
14535 (decode_line_full): Remove cleanups.
14536 (decode_line_1): Update.
14537
14538 2019-01-02 Tom Tromey <tom@tromey.com>
14539
14540 * python/python-internal.h (inferior_to_inferior_object): Change
14541 return type.
14542 * python/py-exitedevent.c (create_exited_event_object): Update.
14543 * python/py-inferior.c (inferior_to_inferior_object): Return
14544 gdbpy_ref.
14545 (python_new_inferior, python_inferior_deleted)
14546 (thread_to_thread_object, delete_thread_object)
14547 (build_inferior_list, gdbpy_selected_inferior): Update.
14548 * python/py-infthread.c (create_thread_object): Update. Also fail
14549 if inferior_to_inferior_object fails.
14550
14551 2019-01-02 Simon Marchi <simon.marchi@ericsson.com>
14552
14553 * inferior.h (class inferior) <displaced_step_state>: New field.
14554 * infrun.h (struct displaced_step_state): Move here from
14555 infrun.c. Initialize fields, add constructor.
14556 <inf>: Remove field.
14557 <reset>: New method.
14558 * infrun.c (struct displaced_step_inferior_state): Move to
14559 infrun.h.
14560 (displaced_step_inferior_states): Remove.
14561 (get_displaced_stepping_state): Adust.
14562 (displaced_step_in_progress_any_inferior): Adjust.
14563 (displaced_step_in_progress_thread): Adjust.
14564 (displaced_step_in_progress): Adjust.
14565 (add_displaced_stepping_state): Remove.
14566 (get_displaced_step_closure_by_addr): Adjust.
14567 (remove_displaced_stepping_state): Remove.
14568 (infrun_inferior_exit): Call displaced_step_state.reset.
14569 (use_displaced_stepping): Don't check for NULL.
14570 (displaced_step_prepare_throw): Call
14571 get_displaced_stepping_state.
14572 (displaced_step_fixup): Don't check for NULL.
14573 (prepare_for_detach): Don't check for NULL.
14574
14575 2019-01-02 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14576
14577 * infcall.c (call_function_by_hand_dummy): cleanup/destroy sm
14578 in case of call that did not complete.
14579
14580 2019-01-02 Andrey Utkin <autkin@undo.io>
14581
14582 * symfile.c (find_separate_debug_file): Fix search of debug files for
14583 remote debuggee.
14584
14585 2019-01-02 Tom Tromey <tom@tromey.com>
14586
14587 * python/py-inferior.c (gdbpy_initialize_inferior): Fix
14588 indentation.
14589 * python/py-frame.c (frapy_older): Remove cast.
14590 (frapy_newer): Likewise.
14591 * python/py-breakpoint.c (local_setattro): Remove cast.
14592 * python/py-arch.c (archpy_name): Remove local variable.
14593 * python/py-type.c (gdbpy_lookup_type): Remove cast.
14594
14595 2019-01-02 Joel Brobecker <brobecker@adacore.com>
14596
14597 * unittests/basic_string_view/element_access/char/empty.cc:
14598 Fix year range in copyright header.
14599
14600 2019-01-01 Andrew Burgess <andrew.burgess@embecosm.com>
14601
14602 * arch/riscv.h (struct riscv_gdbarch_features) <hw_float_abi>:
14603 Delete.
14604 <operator==>: Update with for removed field.
14605 <hash>: Likewise.
14606 * riscv-tdep.h (struct gdbarch_tdep) <features>: Renamed to...
14607 <isa_features>: ...this.
14608 <abi_features>: New field.
14609 (riscv_isa_flen): Update comment.
14610 (riscv_abi_xlen): New declaration.
14611 (riscv_abi_flen): New declaration.
14612 * riscv-tdep.c (riscv_isa_xlen): Update to get answer from
14613 isa_features.
14614 (riscv_abi_xlen): New function.
14615 (riscv_isa_flen): Update to get answer from isa_features.
14616 (riscv_abi_flen): New function.
14617 (riscv_has_fp_abi): Update to get answer from abi_features.
14618 (riscv_call_info::riscv_call_info): Use abi xlen and flen, not isa
14619 xlen and flen.
14620 (riscv_call_info) <xlen, flen>: Update comment.
14621 (riscv_call_arg_struct): Remove invalid assertions
14622 (riscv_features_from_gdbarch_info): Update now hw_float_abi field
14623 is removed.
14624 (riscv_gdbarch_init): Gather isa features and abi features
14625 separately, ensure both match on the gdbarch when reusing an old
14626 gdbarch. Relax an error check to allow 32-bit abi float to run on
14627 a target with 64-bit float hardware.
14628
14629 2019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14630
14631 * source.c (search_command_helper): Stop reverse search
14632 when line 1 has been searched.
14633
14634 2019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14635
14636 * record-full.c (record_full_base_target::close): Rewrite
14637 record_full_core_buf_list free logic.
14638
14639 2019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14640
14641 * break-catch-syscall.c (print_one_catch_syscall): xfree
14642 the last text.
14643
14644 2019-01-01 Joel Brobecker <brobecker@adacore.com>
14645
14646 * top.c (print_gdb_version): Update Copyright year in version
14647 message.
14648
14649 2019-01-01 Joel Brobecker <brobecker@adacore.com>
14650
14651 Update copyright year range in all GDB files.
14652
14653 2019-01-01, 19 Joel Brobecker <brobecker@adacore.com>
14654
14655 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2018.
14656
14657 For older changes see ChangeLog-2018.
14658 \f
14659 Local Variables:
14660 mode: change-log
14661 left-margin: 8
14662 fill-column: 74
14663 version-control: never
14664 coding: utf-8
14665 End:
14666
This page took 0.432423 seconds and 4 git commands to generate.